        :root {
            /* Additional colors for landing page */
            --color-warm-gray: #2d2926;
            --color-stone: #4a4543;
            --color-pearl: #f0ebe4;
            --color-amber-dark: #b8923f;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            background: var(--color-charcoal);
            color: var(--color-cream);
            line-height: 1.6;
        }

        /* Grain overlay for texture */
        body::before {
            content: '';
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            opacity: 0.03;
            z-index: 1000;
            background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
        }

        /* Navigation */
        nav {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 100;
            padding: 1.5rem 3rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: background 0.3s ease, backdrop-filter 0.3s ease;
        }

        nav.scrolled {
            background: rgba(26, 23, 20, 0.95);
            backdrop-filter: blur(20px);
            border-bottom: 1px solid rgba(212, 168, 83, 0.1);
        }

        .nav-logo {
            font-family: var(--font-display);
            font-size: 1.75rem;
            font-weight: 600;
            color: var(--color-cream);
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }

        .nav-logo-icon {
            width: 40px;
            height: 40px;
            background: linear-gradient(135deg, var(--color-amber) 0%, var(--color-amber-dark) 100%);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.25rem;
        }

        .nav-links {
            display: flex;
            gap: 2.5rem;
            align-items: center;
        }

        .nav-links a {
            color: var(--color-pearl);
            text-decoration: none;
            font-size: 0.95rem;
            font-weight: 400;
            opacity: 0.8;
            transition: opacity 0.2s ease, color 0.2s ease;
        }

        .nav-links a:hover {
            opacity: 1;
            color: var(--color-amber);
        }

        .nav-cta {
            background: var(--color-amber);
            color: var(--color-night) !important;
            padding: 0.75rem 1.5rem;
            border-radius: 8px;
            font-weight: 600 !important;
            opacity: 1 !important;
            transition: transform 0.2s ease, box-shadow 0.2s ease !important;
        }

        .nav-cta:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(212, 168, 83, 0.3);
            color: var(--color-night) !important;
        }

        /* Hero Section */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            position: relative;
            padding: 11rem 3rem 4rem;
            overflow: hidden;
        }

        /* Geometric background pattern */
        .hero-pattern {
            position: absolute;
            top: 0;
            right: 0;
            width: 60%;
            height: 100%;
            opacity: 0.06;
            background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23d4a853' fill-opacity='1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
            mask-image: linear-gradient(to left, black 0%, transparent 100%);
        }

        /* Animated gradient orb */
        .hero-orb {
            position: absolute;
            width: 800px;
            height: 800px;
            border-radius: 50%;
            background: radial-gradient(circle at center, rgba(212, 168, 83, 0.15) 0%, transparent 70%);
            top: -200px;
            right: -200px;
            animation: orbFloat 20s ease-in-out infinite;
        }

        @keyframes orbFloat {
            0%, 100% { transform: translate(0, 0) scale(1); }
            33% { transform: translate(-50px, 30px) scale(1.05); }
            66% { transform: translate(30px, -20px) scale(0.95); }
        }

        .hero-content {
            max-width: 1400px;
            margin: 0 auto;
            width: 100%;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 6rem;
            align-items: center;
            position: relative;
            z-index: 1;
        }

        .hero-text {
            animation: fadeSlideUp 1s ease-out;
        }

        @keyframes fadeSlideUp {
            from {
                opacity: 0;
                transform: translateY(40px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: rgba(212, 168, 83, 0.1);
            border: 1px solid rgba(212, 168, 83, 0.3);
            padding: 0.5rem 1rem;
            border-radius: 100px;
            font-size: 0.85rem;
            color: var(--color-amber);
            margin-bottom: 2rem;
        }

        .hero-badge::before {
            content: '';
            width: 8px;
            height: 8px;
            background: var(--color-amber);
            border-radius: 50%;
            animation: pulse 2s ease-in-out infinite;
        }

        @keyframes pulse {
            0%, 100% { opacity: 1; transform: scale(1); }
            50% { opacity: 0.5; transform: scale(1.2); }
        }

        .hero h1 {
            font-family: var(--font-display);
            font-size: clamp(3rem, 6vw, 5rem);
            font-weight: 600;
            line-height: 1.1;
            margin-bottom: 1.5rem;
            color: var(--color-cream);
        }

        .hero h1 .highlight {
            color: var(--color-amber);
            font-style: italic;
        }

        .hero-description {
            font-size: 1.25rem;
            color: var(--color-pearl);
            opacity: 0.8;
            max-width: 520px;
            margin-bottom: 2.5rem;
            line-height: 1.8;
        }

        .hero-actions {
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
        }

        .waitlist-form {
            width: 100%;
            max-width: 480px;
        }

        .waitlist-input-group {
            display: flex;
            gap: 0;
            background: rgba(255, 255, 255, 0.08);
            border: 1px solid rgba(212, 168, 83, 0.3);
            border-radius: 12px;
            padding: 6px;
            transition: border-color 0.2s ease, box-shadow 0.2s ease;
        }

        .waitlist-input-group:focus-within {
            border-color: var(--color-amber);
            box-shadow: 0 0 0 3px rgba(212, 168, 83, 0.15);
        }

        .waitlist-input-group input {
            flex: 1;
            background: transparent;
            border: none;
            padding: 0.875rem 1rem;
            font-size: 1rem;
            color: var(--color-cream);
            font-family: var(--font-body);
            outline: none;
            min-width: 0;
        }

        .waitlist-input-group input::placeholder {
            color: rgba(250, 248, 245, 0.4);
        }

        .waitlist-input-group .btn {
            flex-shrink: 0;
            padding: 0.875rem 1.5rem;
            border-radius: 8px;
        }

        .waitlist-hint {
            margin-top: 0.75rem;
            font-size: 0.875rem;
            color: rgba(250, 248, 245, 0.5);
        }

        .waitlist-success {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            padding: 1rem 1.5rem;
            background: rgba(122, 139, 110, 0.15);
            border: 1px solid rgba(122, 139, 110, 0.3);
            border-radius: 12px;
            color: var(--color-cream);
            font-weight: 500;
        }

        /* Dark variant for light backgrounds */
        .waitlist-form-dark {
            margin: 0 auto;
        }

        .waitlist-form-dark .waitlist-input-group {
            background: rgba(0, 0, 0, 0.05);
            border-color: rgba(26, 23, 20, 0.2);
        }

        .waitlist-form-dark .waitlist-input-group:focus-within {
            border-color: var(--color-charcoal);
            box-shadow: 0 0 0 3px rgba(26, 23, 20, 0.1);
        }

        .waitlist-form-dark input {
            color: var(--color-charcoal);
        }

        .waitlist-form-dark input::placeholder {
            color: rgba(26, 23, 20, 0.4);
        }

        .waitlist-success-dark {
            background: rgba(122, 139, 110, 0.15);
            border-color: rgba(122, 139, 110, 0.4);
            color: var(--color-charcoal);
        }

        .btn {
            display: inline-flex;
            align-items: center;
            gap: 0.75rem;
            padding: 1rem 2rem;
            border-radius: 10px;
            font-size: 1rem;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
            cursor: pointer;
            border: none;
        }

        .btn-primary {
            background: linear-gradient(135deg, var(--color-amber) 0%, var(--color-amber-dark) 100%);
            color: var(--color-night);
            box-shadow: 0 4px 20px rgba(212, 168, 83, 0.3);
        }

        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 30px rgba(212, 168, 83, 0.4);
        }

        .btn-secondary {
            background: transparent;
            color: var(--color-cream);
            border: 1px solid rgba(250, 248, 245, 0.2);
        }

        .btn-secondary:hover {
            background: rgba(250, 248, 245, 0.05);
            border-color: rgba(250, 248, 245, 0.4);
        }

        /* Live Demo Visualization */
        .hero-visual {
            position: relative;
            height: 500px;
            animation: fadeSlideUp 1s ease-out 0.3s both;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .demo-container {
            display: flex;
            align-items: center;
            gap: 3rem;
            width: 100%;
        }

        /* Source speech bubble */
        .source-bubble {
            flex: 1;
            max-width: 280px;
        }

        .bubble-header {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            margin-bottom: 1rem;
        }

        .mic-icon {
            width: 48px;
            height: 48px;
            background: linear-gradient(135deg, var(--color-amber) 0%, var(--color-amber-dark) 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 0 30px rgba(212, 168, 83, 0.4);
            animation: pulse-glow 2s ease-in-out infinite;
        }

        @keyframes pulse-glow {
            0%, 100% { box-shadow: 0 0 20px rgba(212, 168, 83, 0.4); }
            50% { box-shadow: 0 0 35px rgba(212, 168, 83, 0.6); }
        }

        .audio-bars {
            display: flex;
            align-items: center;
            gap: 3px;
            height: 24px;
        }

        .audio-bar {
            width: 4px;
            background: linear-gradient(to top, var(--color-amber-dark), var(--color-amber));
            border-radius: 2px;
            animation: audio-wave 1s ease-in-out infinite;
        }

        .audio-bar:nth-child(1) { height: 40%; animation-delay: 0s; }
        .audio-bar:nth-child(2) { height: 70%; animation-delay: 0.1s; }
        .audio-bar:nth-child(3) { height: 100%; animation-delay: 0.2s; }
        .audio-bar:nth-child(4) { height: 60%; animation-delay: 0.3s; }
        .audio-bar:nth-child(5) { height: 80%; animation-delay: 0.15s; }

        @keyframes audio-wave {
            0%, 100% { transform: scaleY(0.5); opacity: 0.7; }
            50% { transform: scaleY(1); opacity: 1; }
        }

        @keyframes micPulse {
            0%, 100% { box-shadow: 0 0 30px rgba(212, 168, 83, 0.4); }
            50% { box-shadow: 0 0 50px rgba(212, 168, 83, 0.6); }
        }

        .mic-icon svg {
            width: 24px;
            height: 24px;
            color: var(--color-night);
        }

        .source-label {
            font-size: 0.85rem;
            color: var(--color-amber);
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }

        .source-text {
            background: var(--color-warm-gray);
            border: 1px solid rgba(212, 168, 83, 0.3);
            border-radius: 16px;
            padding: 1.5rem;
            font-size: 1.15rem;
            color: var(--color-cream);
            line-height: 1.6;
            min-height: 100px;
            display: flex;
            align-items: center;
        }

        .typing-cursor {
            display: inline-block;
            width: 2px;
            height: 1.2em;
            background: var(--color-amber);
            margin-left: 2px;
            animation: blink 1s step-end infinite;
            vertical-align: text-bottom;
        }

        @keyframes blink {
            0%, 100% { opacity: 1; }
            50% { opacity: 0; }
        }

        /* Flow arrow */
        .flow-arrow {
            color: var(--color-amber);
            opacity: 0.5;
        }

        .flow-arrow svg {
            width: 60px;
            height: 24px;
        }

        /* Target translation bubbles */
        .target-bubbles {
            flex: 1.2;
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .target-bubble {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            opacity: 0;
            transform: translateX(20px);
            animation: bubbleAppear 0.5s ease-out forwards;
        }

        .target-bubble:nth-child(1) { animation-delay: 1s; }
        .target-bubble:nth-child(2) { animation-delay: 1.3s; }
        .target-bubble:nth-child(3) { animation-delay: 1.6s; }

        @keyframes bubbleAppear {
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        .target-flag {
            font-size: 1.75rem;
            line-height: 1;
            flex-shrink: 0;
            width: 40px;
            text-align: center;
        }

        .target-content {
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 12px;
            padding: 0.875rem 1rem;
            flex: 1;
        }

        .target-lang {
            font-size: 0.65rem;
            color: var(--color-amber);
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.08em;
            margin-bottom: 0.35rem;
            opacity: 0.9;
        }

        .target-text {
            font-size: 0.9rem;
            color: var(--color-pearl);
            line-height: 1.4;
            min-height: 1.4em;
        }

        .target-text .translating {
            color: var(--color-stone);
            font-style: italic;
        }

        /* Stats Section */
        .stats-bar {
            background: var(--color-night);
            padding: 3rem;
            border-top: 1px solid rgba(212, 168, 83, 0.1);
            border-bottom: 1px solid rgba(212, 168, 83, 0.1);
        }

        .stats-container {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 2rem;
        }

        .stat-item {
            text-align: center;
        }

        .stat-value {
            font-family: var(--font-display);
            font-size: 3rem;
            font-weight: 600;
            color: var(--color-amber);
            line-height: 1;
            margin-bottom: 0.5rem;
        }

        .stat-label {
            font-size: 0.9rem;
            color: var(--color-pearl);
            opacity: 0.7;
        }

        /* Features Section */
        .features {
            padding: 8rem 3rem;
            background: var(--color-cream);
            color: var(--color-charcoal);
            position: relative;
        }

        .features::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 120px;
            background: linear-gradient(to bottom, var(--color-charcoal), transparent);
            pointer-events: none;
        }

        .section-header {
            text-align: center;
            max-width: 700px;
            margin: 0 auto 5rem;
            position: relative;
            z-index: 1;
        }

        .section-label {
            font-size: 0.85rem;
            text-transform: uppercase;
            letter-spacing: 0.15em;
            color: var(--color-amber-dark);
            margin-bottom: 1rem;
            font-weight: 600;
        }

        .section-title {
            font-family: var(--font-display);
            font-size: clamp(2.5rem, 4vw, 3.5rem);
            font-weight: 600;
            line-height: 1.2;
            margin-bottom: 1.5rem;
            color: var(--color-charcoal);
        }

        .section-description {
            font-size: 1.1rem;
            color: #3a3735;
            line-height: 1.8;
        }

        .features-grid {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
            position: relative;
            z-index: 1;
        }

        .feature-card {
            background: white;
            border-radius: 20px;
            padding: 2.5rem;
            position: relative;
            overflow: hidden;
            transition: all 0.4s ease;
            border: 1px solid rgba(0, 0, 0, 0.05);
        }

        .feature-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
        }

        .feature-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, var(--color-amber) 0%, var(--color-rust) 100%);
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.4s ease;
        }

        .feature-card:hover::before {
            transform: scaleX(1);
        }

        .feature-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, rgba(212, 168, 83, 0.1) 0%, rgba(212, 168, 83, 0.05) 100%);
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.75rem;
            margin-bottom: 1.5rem;
        }

        .feature-title {
            font-family: var(--font-display);
            font-size: 1.5rem;
            font-weight: 600;
            margin-bottom: 1rem;
            color: var(--color-charcoal);
        }

        .feature-text {
            color: #3a3735;
            line-height: 1.7;
        }

        /* How It Works */
        .how-it-works {
            padding: 8rem 3rem;
            background: var(--color-charcoal);
            position: relative;
        }

        .steps-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 1rem;
            position: relative;
        }

        .steps-container::before {
            content: '';
            position: absolute;
            top: 50px;
            left: 12.5%;
            right: 12.5%;
            height: 2px;
            background: linear-gradient(90deg, var(--color-amber), var(--color-rust), var(--color-sage), var(--color-amber));
            opacity: 0.3;
        }

        .step-card {
            text-align: center;
            position: relative;
            padding: 0 1rem;
        }

        .step-number {
            width: 100px;
            height: 100px;
            margin: 0 auto 2rem;
            background: var(--color-warm-gray);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            border: 2px solid rgba(212, 168, 83, 0.2);
        }

        .step-number span {
            font-family: var(--font-display);
            font-size: 2.5rem;
            font-weight: 600;
            color: var(--color-amber);
        }

        .step-title {
            font-family: var(--font-display);
            font-size: 1.4rem;
            font-weight: 600;
            margin-bottom: 1rem;
            color: var(--color-cream);
        }

        .step-text {
            color: var(--color-pearl);
            opacity: 0.7;
            line-height: 1.7;
        }

        /* Languages Section */
        .languages-section {
            padding: 8rem 3rem;
            background: linear-gradient(180deg, var(--color-night) 0%, var(--color-charcoal) 100%);
            text-align: center;
        }

        .languages-grid {
            max-width: 1000px;
            margin: 4rem auto 0;
            display: flex;
            justify-content: center;
            gap: 4rem;
            flex-wrap: wrap;
        }

        .language-card {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 1.25rem;
            padding: 2rem;
            background: rgba(255, 255, 255, 0.06);
            border: 1px solid rgba(212, 168, 83, 0.4);
            border-radius: 20px;
            min-width: 180px;
            transition: all 0.3s ease;
        }

        .language-card:hover {
            background: rgba(212, 168, 83, 0.05);
            border-color: rgba(212, 168, 83, 0.3);
            transform: translateY(-4px);
        }

        .language-flag {
            font-size: 4rem;
            line-height: 1;
        }

        .language-name {
            font-family: var(--font-display);
            font-size: 1.25rem;
            font-weight: 600;
            color: var(--color-cream);
        }

        .language-type {
            font-size: 0.8rem;
            color: var(--color-amber);
            text-transform: uppercase;
            letter-spacing: 0.1em;
        }

        /* CTA Section */
        .cta-section {
            padding: 10rem 3rem;
            background: var(--color-cream);
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .cta-section::before {
            content: '';
            position: absolute;
            top: -50%;
            left: 50%;
            transform: translateX(-50%);
            width: 1000px;
            height: 1000px;
            background: radial-gradient(circle, rgba(212, 168, 83, 0.1) 0%, transparent 70%);
            pointer-events: none;
        }

        .cta-content {
            max-width: 800px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }

        .cta-title {
            font-family: var(--font-display);
            font-size: clamp(2.5rem, 5vw, 4rem);
            font-weight: 600;
            color: var(--color-charcoal);
            margin-bottom: 1.5rem;
            line-height: 1.2;
        }

        .cta-text {
            font-size: 1.2rem;
            color: var(--color-stone);
            margin-bottom: 3rem;
            line-height: 1.8;
        }

        .cta-buttons {
            display: flex;
            gap: 1.5rem;
            justify-content: center;
            flex-wrap: wrap;
        }

        .btn-dark {
            background: var(--color-charcoal);
            color: var(--color-cream);
        }

        .btn-dark:hover {
            background: var(--color-night);
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        }

        /* Footer */
        footer {
            background: var(--color-night);
            padding: 4rem 3rem 2rem;
            border-top: 1px solid rgba(212, 168, 83, 0.1);
        }

        .footer-content {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 2fr 1fr;
            gap: 4rem;
        }

        .footer-brand {
            max-width: 300px;
        }

        .footer-logo {
            font-family: var(--font-display);
            font-size: 1.5rem;
            font-weight: 600;
            color: var(--color-cream);
            margin-bottom: 1rem;
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }

        .footer-tagline {
            color: var(--color-pearl);
            opacity: 0.6;
            line-height: 1.7;
        }

        .footer-column h4 {
            font-family: var(--font-display);
            font-size: 1.1rem;
            font-weight: 600;
            color: var(--color-cream);
            margin-bottom: 1.5rem;
        }

        .footer-column a {
            display: block;
            color: var(--color-pearl);
            opacity: 0.6;
            text-decoration: none;
            margin-bottom: 0.75rem;
            transition: opacity 0.2s ease, color 0.2s ease;
        }

        .footer-column a:hover {
            opacity: 1;
            color: var(--color-amber);
        }

        .footer-bottom {
            max-width: 1400px;
            margin: 4rem auto 0;
            padding-top: 2rem;
            border-top: 1px solid rgba(250, 248, 245, 0.1);
            display: flex;
            justify-content: space-between;
            align-items: center;
            color: var(--color-pearl);
            opacity: 0.5;
            font-size: 0.9rem;
        }

        /* Responsive */
        @media (max-width: 1024px) {
            .hero-content {
                grid-template-columns: 1fr;
                text-align: center;
            }

            .hero-description {
                margin-left: auto;
                margin-right: auto;
            }

            .hero-actions {
                justify-content: center;
            }

            .hero-visual {
                display: none;
            }

            .features-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .steps-container {
                grid-template-columns: repeat(2, 1fr);
                gap: 3rem;
            }

            .steps-container::before {
                display: none;
            }

            .footer-content {
                grid-template-columns: 1fr;
                gap: 2rem;
            }
        }

        @media (max-width: 768px) {
            nav {
                padding: 1rem 1.5rem;
            }

            .nav-links {
                display: none;
            }

            .hero {
                padding: 9rem 1.5rem 3rem;
            }

            .stats-container {
                grid-template-columns: repeat(2, 1fr);
            }

            .features-grid {
                grid-template-columns: 1fr;
            }

            .steps-container {
                grid-template-columns: 1fr;
            }

            .footer-content {
                grid-template-columns: 1fr;
                text-align: center;
            }

            .footer-brand {
                max-width: none;
            }

            .footer-bottom {
                flex-direction: column;
                gap: 1rem;
            }
        }

        /* Mobile menu toggle */
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: var(--color-cream);
            font-size: 1.5rem;
            cursor: pointer;
        }

        @media (max-width: 768px) {
            .mobile-menu-btn {
                display: block;
                z-index: 1001;
            }

            .nav-links.active {
                display: flex;
                flex-direction: column;
                position: fixed;
                top: 0;
                left: 0;
                right: 0;
                bottom: 0;
                background: rgba(26, 24, 21, 0.98);
                backdrop-filter: blur(20px);
                justify-content: center;
                align-items: center;
                gap: 2rem;
                z-index: 1000;
                animation: fadeIn 0.2s ease;
            }

            .nav-links.active a {
                font-size: 1.5rem;
                opacity: 1;
            }

            .nav-links.active .nav-cta {
                margin-top: 1rem;
            }

            .mobile-menu-btn.active svg path {
                stroke: var(--color-amber);
            }
        }

        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }
