/* ========================================
   GaYo - Life Platform Styles
   Modern, Responsive, SEO-Optimized
======================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Brand Colors */
    --primary: #667eea;
    --secondary: #764ba2;
    --accent: #f093fb;
    --gold: #fbbf24;
    --success: #10b981;
    --error: #ef4444;
    --warning: #f59e0b;
    
    /* Neutral Colors */
    --text: #1f2937;
    --text-light: #6b7280;
    --text-lighter: #9ca3af;
    --bg: #ffffff;
    --bg-alt: #f9fafb;
    --bg-dark: #111827;
    --border: #e5e7eb;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-secondary: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --gradient-success: linear-gradient(135deg, #10b981 0%, #059669 100%);
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;
    
    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 30px;
    --radius-full: 50px;
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.15);
    --shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.2);
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Helvetica Neue', sans-serif;
    line-height: 1.6;
    color: var(--text);
    overflow-x: hidden;
    background: var(--bg);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

/* ========================================
   NAVIGATION
======================================== */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    padding: 1rem 0;
    z-index: 1000;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
}

.logo h1 {
    font-size: 2rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo-dot {
    color: var(--gold);
    font-size: 2rem;
}

.logo-tagline {
    font-size: 0.7rem;
    color: var(--text-light);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    color: var(--text);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
    font-size: 0.95rem;
}

.nav-links a:hover {
    color: var(--primary);
}

.nav-cta {
    background: var(--gradient-primary);
    color: white !important;
    padding: 0.6rem 1.5rem;
    border-radius: var(--radius-full);
    transition: transform 0.3s, box-shadow 0.3s;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.4);
}

/* ========================================
   HERO SECTION
======================================== */

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 120px 20px 80px;
    background: var(--gradient-primary);
    color: white;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
}

.hero-animation {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(240, 147, 251, 0.2) 0%, transparent 60%);
    animation: heroFloat 20s ease-in-out infinite;
}

@keyframes heroFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(30px, -30px) scale(1.1); }
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 0.5rem 1.5rem;
    border-radius: var(--radius-full);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    animation: fadeInUp 0.8s ease;
}

.hero-title {
    font-size: 5rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    animation: fadeInUp 0.8s ease 0.2s backwards;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.hero-subtitle {
    font-size: 1.4rem;
    margin-bottom: 3rem;
    opacity: 0.95;
    line-height: 1.6;
    animation: fadeInUp 0.8s ease 0.4s backwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ========================================
   BOOKING CARD
======================================== */

.hero-booking-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 3rem;
    box-shadow: var(--shadow-xl);
    animation: fadeInUp 0.8s ease 0.6s backwards;
    color: var(--text);
    margin-bottom: 3rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.booking-header h2 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: var(--text);
}

.booking-header p {
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.hero-check-form {
    width: 100%;
}

.hero-input-wrapper {
    display: flex;
    align-items: center;
    background: var(--bg-alt);
    border: 3px solid var(--border);
    border-radius: var(--radius-full);
    padding: 0.5rem 0.5rem 0.5rem 1.5rem;
    transition: border-color 0.3s, box-shadow 0.3s;
    margin-bottom: 1.5rem;
}

.hero-input-wrapper:focus-within {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.1);
}

.input-icon {
    font-size: 1.5rem;
    color: var(--text-light);
    font-weight: 700;
    margin-right: 0.5rem;
}

.hero-input-wrapper input {
    flex: 1;
    border: none;
    background: transparent;
    font-size: 1.3rem;
    outline: none;
    padding: 1rem 0.5rem;
    color: var(--text);
    font-weight: 600;
}

.hero-input-wrapper input::placeholder {
    color: var(--text-lighter);
}

.hero-input-wrapper .domain {
    color: var(--text-light);
    font-size: 1.3rem;
    font-weight: 600;
    margin-right: 0.8rem;
}

.hero-check-btn {
    background: var(--gradient-primary);
    color: white;
    border: none;
    border-radius: var(--radius-full);
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: transform 0.3s, box-shadow 0.3s;
    white-space: nowrap;
}

.hero-check-btn:hover:not(:disabled) {
    transform: translateX(5px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

.hero-check-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.btn-icon {
    font-size: 1.3rem;
}

/* Availability Result */
.availability-result {
    padding: 1.2rem;
    border-radius: var(--radius-md);
    text-align: center;
    font-weight: 600;
    font-size: 1.1rem;
    display: none;
    animation: slideIn 0.4s ease;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-15px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.availability-result.available {
    background: #d1fae5;
    color: #065f46;
    border: 2px solid var(--success);
    display: block;
}

.availability-result.taken {
    background: #fee2e2;
    color: #991b1b;
    border: 2px solid var(--error);
    display: block;
}

.availability-result.error {
    background: #fef3c7;
    color: #92400e;
    border: 2px solid var(--warning);
    display: block;
}

.hidden {
    display: none !important;
}

/* Booking Form */
.booking-form {
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.form-group {
    margin-bottom: 1.5rem;
    text-align: left;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text);
    font-size: 0.95rem;
}

.form-group input {
    width: 100%;
    padding: 1rem 1.2rem;
    border: 2px solid var(--border);
    border-radius: var(--radius-md);
    font-size: 1rem;
    transition: border-color 0.3s, box-shadow 0.3s;
    background: var(--bg-alt);
}

.form-group input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.1);
}

.input-display {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--bg-alt);
    border: 2px solid var(--border);
    border-radius: var(--radius-md);
    padding: 1rem 1.2rem;
}

.input-display .at-symbol {
    color: var(--text-light);
    font-weight: 700;
    font-size: 1.1rem;
}

.input-display input {
    flex: 1;
    border: none;
    padding: 0;
    background: transparent;
    font-weight: 600;
}

.input-display .domain-display {
    color: var(--text-light);
    font-weight: 600;
}

.form-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}

.submit-button {
    width: 100%;
    padding: 1.2rem;
    background: var(--gradient-primary);
    color: white;
    border: none;
    border-radius: var(--radius-md);
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
}

.submit-button:hover:not(:disabled) {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(102, 126, 234, 0.4);
}

.submit-button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.back-button {
    width: 100%;
    padding: 1rem;
    background: transparent;
    color: var(--text-light);
    border: 2px solid var(--border);
    border-radius: var(--radius-md);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.back-button:hover {
    background: var(--bg-alt);
    border-color: var(--primary);
    color: var(--primary);
}

/* Success Message */
.success-message {
    text-align: center;
    padding: 2rem;
    animation: scaleIn 0.6s ease;
}

@keyframes scaleIn {
    from {
        transform: scale(0.9);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.success-icon {
    width: 90px;
    height: 90px;
    background: var(--gradient-success);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3.5rem;
    margin: 0 auto 2rem;
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.3);
}

.success-message h3 {
    color: var(--success);
    margin-bottom: 1rem;
    font-size: 2rem;
}

.success-message p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.success-handle {
    background: var(--bg-alt);
    padding: 2rem;
    border-radius: var(--radius-md);
    margin: 2rem 0;
    font-size: 1.8rem;
    color: var(--primary);
    font-weight: 800;
}

.success-benefits {
    background: rgba(102, 126, 234, 0.05);
    padding: 1.5rem;
    border-radius: var(--radius-md);
    margin: 2rem 0;
    text-align: left;
    border: 2px solid rgba(102, 126, 234, 0.1);
}

.success-benefits p {
    font-weight: 700;
    margin-bottom: 1rem;
}

.success-benefits ul {
    list-style: none;
    padding: 0;
}

.success-benefits li {
    padding: 0.5rem 0;
    color: var(--text);
    font-size: 1rem;
}

.cta-button {
    display: inline-block;
    background: var(--gradient-primary);
    color: white;
    padding: 1rem 2.5rem;
    border-radius: var(--radius-full);
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    border: none;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(102, 126, 234, 0.4);
}

/* Hero Stats */
.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    animation: fadeInUp 0.8s ease 0.8s backwards;
}

.stat {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-number {
    font-size: 3rem;
    font-weight: 900;
    color: var(--gold);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    opacity: 0.95;
}

/* Spinner Animation */
.spinner {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: white;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* ========================================
   PLATFORM SECTION
======================================== */

.platform-section {
    padding: var(--spacing-xl) 0;
    background: var(--bg-alt);
}

.section-header {
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

.section-title {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 1rem;
    color: var(--text);
}

.section-subtitle {
    font-size: 1.3rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
}

.platform-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.platform-card {
    background: white;
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    border: 2px solid var(--border);
    transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
    position: relative;
}

.platform-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.platform-card.featured {
    background: var(--gradient-primary);
    color: white;
    border-color: transparent;
}

.platform-card.featured h3,
.platform-card.featured p {
    color: white;
}

.platform-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    display: block;
}

.platform-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--text);
}

.platform-card p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.platform-tag {
    display: inline-block;
    background: rgba(102, 126, 234, 0.1);
    color: var(--primary);
    padding: 0.4rem 1rem;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 600;
}

.platform-card.featured .platform-tag {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

/* ========================================
   FEATURES SECTION
======================================== */

.features-section {
    padding: var(--spacing-xl) 0;
    background: white;
}

.features-layout {
    margin-top: var(--spacing-lg);
}

.feature-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: var(--spacing-lg);
    padding: var(--spacing-md) 0;
}

.feature-row.reverse {
    direction: rtl;
}

.feature-row.reverse > * {
    direction: ltr;
}

.feature-content {
    position: relative;
}

.feature-number {
    font-size: 5rem;
    font-weight: 900;
    color: rgba(102, 126, 234, 0.1);
    position: absolute;
    top: -2rem;
    left: -1rem;
    z-index: 0;
}

.feature-content h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--text);
    position: relative;
    z-index: 1;
}

.feature-content p {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.feature-list {
    list-style: none;
    padding: 0;
}

.feature-list li {
    padding: 0.7rem 0;
    color: var(--text);
    font-size: 1rem;
    border-bottom: 1px solid var(--border);
}

.feature-list li:last-child {
    border-bottom: none;
}

.feature-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.visual-box {
    width: 100%;
    aspect-ratio: 1;
    border-radius: var(--radius-lg);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 3rem;
    position: relative;
    overflow: hidden;
}

.visual-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.1;
    z-index: 0;
}

.visual-box.privacy {
    background: var(--gradient-primary);
}

.visual-box.algorithm {
    background: var(--gradient-secondary);
}

.visual-box.modular {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
}

.visual-box.ai {
    background: linear-gradient(135deg, #8b5cf6 0%, #6366f1 100%);
}

.visual-box.wellness {
    background: var(--gradient-success);
}

.visual-box.ownership {
    background: linear-gradient(135deg, #ec4899 0%, #f43f5e 100%);
}

.visual-icon {
    font-size: 5rem;
    margin-bottom: 1rem;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
}

.visual-box p {
    color: white;
    font-size: 1.3rem;
    font-weight: 700;
    position: relative;
    z-index: 1;
}

/* ========================================
   FUTURE SECTION
======================================== */

.future-section {
    padding: var(--spacing-xl) 0;
    background: var(--bg-dark);
    color: white;
    position: relative;
    overflow: hidden;
}

.future-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(102, 126, 234, 0.3) 0%, transparent 70%);
    pointer-events: none;
}

.future-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.future-badge {
    display: inline-block;
    background: rgba(251, 191, 36, 0.2);
    color: var(--gold);
    padding: 0.5rem 1.5rem;
    border-radius: var(--radius-full);
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 2rem;
    border: 1px solid rgba(251, 191, 36, 0.3);
}

.future-content h2 {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
}

.future-intro {
    font-size: 1.3rem;
    opacity: 0.9;
    margin-bottom: 4rem;
}

.future-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 4rem 0;
}

.future-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s, background 0.3s;
}

.future-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
}

.future-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.future-card p {
    opacity: 0.9;
    line-height: 1.7;
}

.future-quote {
    margin-top: 4rem;
    padding: 3rem;
    background: rgba(255, 255, 255, 0.05);
    border-left: 4px solid var(--gold);
    border-radius: var(--radius-md);
}

.future-quote blockquote {
    font-size: 1.5rem;
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.future-quote cite {
    font-size: 1rem;
    opacity: 0.8;
}

/* ========================================
   PROBLEMS SECTION
======================================== */

.problems-section {
    padding: var(--spacing-xl) 0;
    background: var(--bg-alt);
}

.problems-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: var(--spacing-lg);
}

.problem-card {
    background: white;
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 2px solid var(--border);
    transition: transform 0.3s, box-shadow 0.3s;
}

.problem-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.problem-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.problem-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--text);
}

.problem-desc {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.solution {
    background: rgba(16, 185, 129, 0.05);
    padding: 1.5rem;
    border-radius: var(--radius-md);
    border-left: 4px solid var(--success);
}

.solution-icon {
    color: var(--success);
    font-size: 1.5rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
}

.solution p {
    color: var(--text);
    line-height: 1.6;
}

.solution strong {
    color: var(--success);
}

/* ========================================
   PRICING SECTION
======================================== */

.pricing-section {
    padding: var(--spacing-xl) 0;
    background: white;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: var(--spacing-lg);
}

.pricing-card {
    background: white;
    padding: 3rem 2rem;
    border-radius: var(--radius-lg);
    border: 2px solid var(--border);
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.pricing-card.premium {
    border-color: var(--primary);
    border-width: 3px;
    transform: scale(1.05);
}

.pricing-card.premium:hover {
    transform: scale(1.05) translateY(-10px);
}

.pricing-badge {
    display: inline-block;
    background: var(--bg-alt);
    color: var(--text);
    padding: 0.4rem 1rem;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.pricing-badge.popular {
    background: var(--gradient-primary);
    color: white;
}

.pricing-card h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--text);
}

.price {
    font-size: 4rem;
    font-weight: 900;
    color: var(--primary);
    margin-bottom: 2rem;
}

.price span {
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--text-light);
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.pricing-features li {
    padding: 0.8rem 0;
    color: var(--text);
    border-bottom: 1px solid var(--border);
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-btn {
    width: 100%;
    padding: 1rem;
    background: var(--gradient-primary);
    color: white;
    border: none;
    border-radius: var(--radius-md);
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
}

.pricing-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
}

.pricing-note {
    text-align: center;
    margin-top: 3rem;
    padding: 1.5rem;
    background: rgba(251, 191, 36, 0.1);
    border-radius: var(--radius-md);
    color: var(--text);
    border: 2px solid rgba(251, 191, 36, 0.2);
}

/* ========================================
   FINAL CTA
======================================== */

.cta-final {
    padding: var(--spacing-xl) 0;
    background: var(--gradient-primary);
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.3rem;
    margin-bottom: 3rem;
    opacity: 0.95;
}

.cta-button-large {
    display: inline-block;
    background: white;
    color: var(--primary);
    padding: 1.5rem 3rem;
    border-radius: var(--radius-full);
    text-decoration: none;
    font-weight: 800;
    font-size: 1.3rem;
    transition: transform 0.3s, box-shadow 0.3s;
}

.cta-button-large:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.cta-trust {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.cta-trust span {
    background: rgba(255, 255, 255, 0.2);
    padding: 0.7rem 1.5rem;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 0.95rem;
}

/* ========================================
   FOOTER
======================================== */

.footer {
    background: var(--bg-dark);
    color: white;
    padding: var(--spacing-lg) 0 var(--spacing-md);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand h3 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.footer-brand .logo-dot {
    color: var(--gold);
}

.footer-tagline {
    font-size: 0.9rem;
    color: var(--gold);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1rem;
    line-height: 1.7;
}

.footer-badge {
    display: inline-block;
    background: rgba(251, 191, 36, 0.2);
    color: var(--gold);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 600;
    margin-top: 1rem;
}

.footer-links h4 {
    margin-bottom: 1rem;
    color: var(--gold);
    font-size: 1.1rem;
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.7rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: white;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
}

.footer-social {
    display: flex;
    gap: 1.5rem;
}

.footer-social a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 1.3rem;
    transition: color 0.3s, transform 0.3s;
}

.footer-social a:hover {
    color: white;
    transform: translateY(-3px);
}

/* ========================================
   RESPONSIVE DESIGN
======================================== */

@media (max-width: 1024px) {
    .feature-row {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .feature-row.reverse {
        direction: ltr;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-booking-card {
        padding: 2rem 1.5rem;
    }
    
    .hero-input-wrapper {
        flex-direction: column;
        padding: 1rem;
        border-radius: var(--radius-md);
        gap: 1rem;
    }
    
    .hero-input-wrapper input,
    .hero-input-wrapper .domain {
        text-align: center;
    }
    
    .hero-check-btn {
        width: 100%;
        justify-content: center;
        border-radius: var(--radius-md);
    }
    
    .hero-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .nav-links {
        gap: 1rem;
        font-size: 0.85rem;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .platform-grid,
    .problems-grid,
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .future-content h2 {
        font-size: 2.5rem;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }
}

@media (max-width: 480px) {
    :root {
        font-size: 14px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .booking-header h2 {
        font-size: 1.5rem;
    }
    
    .nav-links a:not(.nav-cta) {
        display: none;
    }
    
    .stat-number {
        font-size: 2rem;
    }
}

/* ========================================
   SCROLL ANIMATIONS
======================================== */

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ========================================
   ACCESSIBILITY
======================================== */

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Focus visible for keyboard navigation */
:focus-visible {
    outline: 3px solid var(--primary);
    outline-offset: 2px;
}

/* ========================================
   PRINT STYLES
======================================== */

@media print {
    .navbar,
    .hero-booking-card,
    .cta-final,
    .footer {
        display: none;
    }
}
/* ========================================
   WALLET & CURRENCY SECTION
======================================== */

.wallet-section {
    padding: var(--spacing-xl) 0;
    background: linear-gradient(180deg, #f9fafb 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.wallet-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 500px;
    background: radial-gradient(circle at 50% 0%, rgba(251, 191, 36, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.wallet-hero {
    text-align: center;
    margin-bottom: var(--spacing-lg);
    position: relative;
    z-index: 1;
}

.wallet-badge {
    display: inline-block;
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: var(--radius-full);
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 2rem;
    box-shadow: 0 4px 15px rgba(251, 191, 36, 0.3);
}

/* Coin Display */
.wallet-main {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: var(--spacing-lg);
    position: relative;
    z-index: 1;
}

.wallet-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.coin-display {
    text-align: center;
}

.coin-animation {
    width: 250px;
    height: 250px;
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    box-shadow: 
        0 20px 60px rgba(251, 191, 36, 0.4),
        inset 0 -10px 30px rgba(0, 0, 0, 0.2),
        inset 0 10px 30px rgba(255, 255, 255, 0.3);
    animation: coinFloat 6s ease-in-out infinite, coinRotate 20s linear infinite;
    position: relative;
}

.coin-animation::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    bottom: 20px;
    border-radius: 50%;
    border: 3px solid rgba(255, 255, 255, 0.3);
}

@keyframes coinFloat {
    0%, 100% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-20px) scale(1.05);
    }
}

@keyframes coinRotate {
    0% {
        transform: rotateY(0deg);
    }
    100% {
        transform: rotateY(360deg);
    }
}

.coin-symbol {
    font-size: 8rem;
    font-weight: 900;
    color: white;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    font-family: Georgia, serif;
}

.coin-name {
    font-size: 2rem;
    font-weight: 800;
    color: var(--text);
    margin-bottom: 0.5rem;
}

.coin-tagline {
    font-size: 1.1rem;
    color: var(--text-light);
    font-weight: 600;
}

/* Wallet Intro */
.wallet-intro h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--text);
}

.wallet-intro > p {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.wallet-principles {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.principle-item {
    background: white;
    padding: 1.5rem;
    border-radius: var(--radius-md);
    border: 2px solid var(--border);
    transition: all 0.3s;
}

.principle-item:hover {
    border-color: var(--gold);
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.principle-icon {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.principle-item h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--text);
}

.principle-item p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Wallet Features */
.wallet-features {
    margin: var(--spacing-xl) 0;
}

.wallet-features h3 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: var(--spacing-md);
    color: var(--text);
}

.wallet-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.wallet-feature-card {
    background: white;
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    border: 2px solid var(--border);
    transition: all 0.3s;
}

.wallet-feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--gold);
}

.wallet-feature-card.featured {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    color: white;
    border: none;
}

.wallet-feature-card.featured h4,
.wallet-feature-card.featured p,
.wallet-feature-card.featured li {
    color: white;
}

.wallet-feature-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.wallet-feature-card h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text);
}

.wallet-feature-card > p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.wallet-feature-list {
    list-style: none;
    padding: 0;
}

.wallet-feature-list li {
    padding: 0.6rem 0;
    color: var(--text);
    border-bottom: 1px solid var(--border);
}

.wallet-feature-card.featured .wallet-feature-list li {
    border-bottom-color: rgba(255, 255, 255, 0.2);
}

.wallet-feature-list li:last-child {
    border-bottom: none;
}

/* Future Timeline */
.wallet-future {
    background: var(--bg-dark);
    color: white;
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    margin: var(--spacing-xl) 0;
    position: relative;
    overflow: hidden;
}

.wallet-future::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 80% 20%, rgba(251, 191, 36, 0.2) 0%, transparent 60%);
}

.wallet-future-content {
    position: relative;
    z-index: 1;
}

.wallet-future h3 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
}

.wallet-future > .wallet-future-content > p {
    text-align: center;
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 4rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.future-timeline {
    position: relative;
    padding: 2rem 0;
}

.future-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, var(--gold) 0%, rgba(251, 191, 36, 0.2) 100%);
    transform: translateX(-50%);
}

.timeline-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
    position: relative;
}

.timeline-item:nth-child(even) {
    direction: rtl;
}

.timeline-item:nth-child(even) > * {
    direction: ltr;
}

.timeline-year {
    text-align: right;
    font-size: 3rem;
    font-weight: 900;
    color: var(--gold);
    padding-right: 4rem;
    position: relative;
}

.timeline-item:nth-child(even) .timeline-year {
    text-align: left;
    padding-left: 4rem;
    padding-right: 0;
}

.timeline-year::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translate(50%, -50%);
    width: 20px;
    height: 20px;
    background: var(--gold);
    border-radius: 50%;
    box-shadow: 0 0 0 8px rgba(251, 191, 36, 0.2);
}

.timeline-item:nth-child(even) .timeline-year::after {
    left: 0;
    right: auto;
    transform: translate(-50%, -50%);
}

.timeline-content {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.timeline-content h4 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--gold);
}

.timeline-content p {
    opacity: 0.9;
    line-height: 1.7;
}

/* Comparison Table */
.wallet-comparison {
    margin: var(--spacing-xl) 0;
}

.wallet-comparison h3 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: var(--spacing-md);
    color: var(--text);
}

.comparison-table {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.comparison-row {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    border-bottom: 1px solid var(--border);
}

.comparison-row:last-child {
    border-bottom: none;
}

.comparison-row.header {
    background: var(--bg-dark);
    color: white;
    font-weight: 700;
}

.comparison-cell {
    padding: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.comparison-cell:not(:last-child) {
    border-right: 1px solid var(--border);
}

.comparison-row.header .comparison-cell:not(:last-child) {
    border-right-color: rgba(255, 255, 255, 0.2);
}

.comparison-cell.highlight {
    background: rgba(251, 191, 36, 0.1);
    font-weight: 600;
    color: var(--text);
}

.comparison-row.header .comparison-cell.highlight {
    background: var(--gold);
    color: var(--bg-dark);
}

/* Earning Section */
.wallet-earning {
    margin: var(--spacing-xl) 0;
}

.wallet-earning h3 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--text);
}

.earning-intro {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: var(--spacing-md);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.earning-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.earning-card {
    background: white;
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 2px solid var(--border);
    text-align: center;
    transition: all 0.3s;
}

.earning-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--gold);
}

.earning-card.premium {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    color: white;
    border: none;
}

.earning-card.premium h4,
.earning-card.premium p {
    color: white;
}

.earning-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.earning-card h4 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: var(--text);
}

.earning-card p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.earning-amount {
    background: rgba(102, 126, 234, 0.1);
    color: var(--primary);
    padding: 0.7rem 1.2rem;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 1rem;
}

.earning-card.premium .earning-amount {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.earning-note {
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.1) 0%, rgba(245, 158, 11, 0.1) 100%);
    padding: 2rem;
    border-radius: var(--radius-md);
    text-align: center;
    border: 2px solid rgba(251, 191, 36, 0.3);
    font-size: 1.1rem;
    color: var(--text);
}

/* Wallet CTA */
.wallet-cta {
    text-align: center;
    margin-top: var(--spacing-xl);
    padding: var(--spacing-lg);
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    border-radius: var(--radius-lg);
    color: white;
}

.wallet-cta h3 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.wallet-cta p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

/* Responsive Wallet Section */
@media (max-width: 1024px) {
    .wallet-main {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .wallet-principles {
        grid-template-columns: 1fr;
    }
    
    .future-timeline::before {
        left: 30px;
    }
    
    .timeline-item {
        grid-template-columns: 1fr;
        gap: 0;
        padding-left: 80px;
    }
    
    .timeline-item:nth-child(even) {
        direction: ltr;
    }
    
    .timeline-year {
        text-align: left;
        padding: 0;
        position: absolute;
        left: 0;
    }
    
    .timeline-item:nth-child(even) .timeline-year {
        text-align: left;
        padding: 0;
    }
    
    .timeline-year::after {
        left: 30px;
        right: auto;
        transform: translate(-50%, -50%);
    }
    
    .comparison-row {
        grid-template-columns: 1fr;
    }
    
    .comparison-cell:not(:last-child) {
        border-right: none;
        border-bottom: 1px solid var(--border);
    }
}

@media (max-width: 768px) {
    .coin-animation {
        width: 180px;
        height: 180px;
    }
    
    .coin-symbol {
        font-size: 5rem;
    }
    
    .wallet-features-grid,
    .earning-grid {
        grid-template-columns: 1fr;
    }
    
    .wallet-cta h3 {
        font-size: 2rem;
    }
}