  /* --- GLOBAL VARIABLES --- */
        :root {
            --bg: #050505;
            --text: #ffffff;
            --text-muted: #888888;
            --border: #333333;
            --input-bg: #0f0f0f;
            --btn-bg: #ffffff;
            --btn-text: #000000;
            --grid-color: rgba(255, 255, 255, 0.04);
            --pill-bg: rgba(255, 255, 255, 0.1);
            --glass-bg: rgba(20, 20, 20, 0.6);
            --glow: rgba(255, 255, 255, 0.05);
            --img-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
            --img-shadow-hover: 0 30px 60px rgba(0, 0, 0, 0.5);
            --logo-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
        }
        
        /* Milestone Trending Badge */
.milestone-badge {
    background: rgba(255, 149, 0, 0.15); /* Soft amber background */
    color: #ff9f0a; /* Bright amber text */
    border: 1px solid rgba(255, 159, 10, 0.3);
    display: inline-flex;
    align-items: center;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    box-shadow: 0 0 10px rgba(255, 149, 0, 0.1);
}

/* Subtle pulse animation to catch the eye */
@keyframes softPulse {
    0% { box-shadow: 0 0 0 0 rgba(255, 149, 0, 0.4); }
    70% { box-shadow: 0 0 0 6px rgba(255, 149, 0, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 149, 0, 0); }
}

.milestone-badge {
    animation: softPulse 2.5s infinite;
}

        [data-theme="light"] {
            --bg: #ffffff;
            --text: #000000;
            --text-muted: #666666;
            --border: #e0e0e0;
            --input-bg: #f7f7f7;
            --btn-bg: #000000;
            --btn-text: #ffffff;
            --grid-color: rgba(0, 0, 0, 0.03);
            --pill-bg: rgba(0, 0, 0, 0.05);
            --glass-bg: rgba(255, 255, 255, 0.6);
            --glow: rgba(0, 0, 0, 0.05);
            --img-shadow: none;
            --img-shadow-hover: none;
            --logo-shadow: none;
        }

        /* --- BASE STYLES --- */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            transition: background 0.4s ease, color 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
        }

        html, body {
            width: 100%;
            min-height: 100vh;
            overflow-x: hidden; 
            scroll-behavior: smooth;
        }

        body {
            background-color: var(--bg);
            color: var(--text);
            font-family: 'Inter', sans-serif;
            display: flex;
            flex-direction: column;
            opacity: 0;
            animation: pageReveal 1s ease forwards;
        }

        @keyframes pageReveal { to { opacity: 1; } }

        .bg-grid {
            position: fixed;
            top: 0; left: 0; width: 100%; height: 100%;
            background-image: 
                linear-gradient(var(--grid-color) 1px, transparent 1px),
                linear-gradient(90deg, var(--grid-color) 1px, transparent 1px);
            background-size: 40px 40px;
            z-index: -1;
            pointer-events: none;
        }

        /* --- NAVIGATION --- */
        nav {
            width: 100%;
            padding: 15px 30px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: fixed;
            top: 0;
            z-index: 100;
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            border-bottom: 1px solid transparent;
        }
        
        nav.scrolled {
            border-bottom: 1px solid var(--border);
            background: var(--glass-bg);
        }

        .brand {
            font-family: 'Space Grotesk', sans-serif;
            font-weight: 700;
            font-size: 1.2rem;
        }

        .theme-toggle {
            background: transparent;
            border: 1px solid var(--border);
            color: var(--text);
            padding: 8px 16px;
            border-radius: 50px;
            font-size: 0.75rem;
            font-weight: 600;
            cursor: pointer;
        }

        /* --- HERO SECTION --- */
        .hero-section {
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            padding: 140px 24px 80px 24px; 
        }

        .hero {
            width: 100%;
            max-width: 1100px;
            text-align: center;
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .hero-text {
            max-width: 680px;
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .app-logo { 
            width: 84px; 
            height: 84px; 
            border-radius: 20px; 
            margin-bottom: 24px; 
            border: 1px solid var(--border); 
            box-shadow: var(--logo-shadow); 
            opacity: 0; 
            animation: slideUp 0.8s ease 0.1s forwards; 
        }
        
        .badge { 
            display: inline-block; 
            background: var(--pill-bg); 
            padding: 6px 14px; 
            border-radius: 30px; 
            font-size: 0.65rem; 
            font-weight: 600; 
            text-transform: uppercase; 
            letter-spacing: 1.2px; 
            border: 1px solid var(--border); 
            margin-bottom: 16px; 
            opacity: 0; 
            animation: slideUp 0.8s ease 0.2s forwards; 
        }

        h1 { 
            font-family: 'Space Grotesk', sans-serif; 
            font-size: clamp(2rem, 5vw, 3.2rem); 
            font-weight: 700; 
            line-height: 1.1; 
            margin-bottom: 16px; 
            letter-spacing: -1px; 
            opacity: 0; 
            animation: slideUp 0.8s ease 0.3s forwards; 
        }

        p.subtext { 
            color: var(--text-muted); 
            font-size: 1rem; 
            line-height: 1.5; 
            margin-bottom: 32px; 
            max-width: 540px; 
            opacity: 0; 
            animation: slideUp 0.8s ease 0.4s forwards; 
        }
        
        /* Form */
        .form-container { 
            width: 100%; 
            display: flex; 
            justify-content: center; 
            opacity: 0; 
            animation: slideUp 0.8s ease 0.5s forwards; 
        }
        form { display: flex; gap: 10px; width: 100%; max-width: 460px; }
        input { 
            flex: 1; 
            padding: 14px 20px; 
            border-radius: 12px; 
            border: 1px solid var(--border); 
            background: var(--input-bg); 
            color: var(--text); 
            font-size: 0.95rem; 
            outline: none; 
        }
        button.submit-btn { 
            position: relative; 
            padding: 0 24px; 
            height: 50px; 
            border-radius: 12px; 
            background: transparent; 
            border: 1px solid var(--text); 
            color: var(--text); 
            font-weight: 600; 
            font-size: 0.95rem; 
            cursor: pointer; 
            overflow: hidden; 
            z-index: 1; 
            display: flex; 
            align-items: center; 
            justify-content: center; 
            gap: 8px; 
            transform-style: preserve-3d; 
        }
        button.submit-btn::before { 
            content: ''; 
            position: absolute; 
            top: 0; left: 0; width: 100%; height: 100%; 
            background: var(--text); 
            transform: translateY(102%); 
            transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1); 
            z-index: -1; 
        }
        button.submit-btn:hover { color: var(--bg); }
        button.submit-btn:hover::before { transform: translateY(0); }
        button.submit-btn.sending { color: transparent !important; pointer-events: none; }
        button.submit-btn.sending::after { content: ""; position: absolute; width: 20px; height: 20px; border: 2px solid var(--text); border-top-color: transparent; border-radius: 50%; animation: spin 0.8s linear infinite; }
        @keyframes spin { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } }
        button.submit-btn.sent { background: var(--text) !important; color: var(--bg) !important; border-color: var(--text) !important; pointer-events: none; animation: awesomeSpin 0.7s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards; }
        button.submit-btn.sent::before, button.submit-btn.sent::after { display: none; }
        @keyframes awesomeSpin { 0% { transform: perspective(400px) rotateY(180deg) scale(0.8); opacity: 0; } 100% { transform: perspective(400px) rotateY(0deg) scale(1); opacity: 1; } }
        button.submit-btn.error { background: #dc3545 !important; color: #ffffff !important; border-color: #dc3545 !important; animation: shake 0.4s ease-in-out; }
        button.submit-btn.error::before { display: none; }
        @keyframes shake { 0%, 100% { transform: translateX(0); } 25% { transform: translateX(-6px); } 50% { transform: translateX(6px); } 75% { transform: translateX(-6px); } }

        /* --- COMPATIBILITY BADGES --- */
        .compatibility-info {
            display: flex;
            gap: 12px;
            justify-content: center;
            flex-wrap: wrap;
            margin-top: 24px;
            opacity: 0;
            animation: slideUp 0.8s ease 0.6s forwards;
        }
        .comp-badge {
            background: transparent;
            border: 1px solid var(--border);
            padding: 8px 16px;
            border-radius: 30px;
            font-size: 0.8rem;
            font-weight: 500;
            color: var(--text-muted);
            display: flex;
            align-items: center;
            gap: 8px;
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
        }
        .comp-badge i {
            color: var(--text);
            font-size: 0.95rem;
        }

        /* --- SLIDESHOW STYLES --- */
        .hero-image-wrapper {
            width: 100%;
            max-width: 1000px;
            margin: 60px 0 20px 0;
            opacity: 0;
            animation: slideUp 0.8s ease 0.7s forwards;
            position: relative;
        }

        /* The actual laptop image */
        .macbook-frame-img {
            width: 100%;
            height: auto;
            display: block;
            pointer-events: none;
            z-index: 1;
            position: relative;
        }

        /* The invisible box positioned exactly over the laptop's screen */
        .macbook-screen-area {
            position: absolute;
            top: 4.8%; 
            left: 9.8%; 
            width: 80.4%; 
            height: 84%; 
            z-index: 2;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }

        .showcase-image-wrapper {
            flex: 1.4; 
            position: relative;
            width: 100%;
        }

        /* Wrapper background glow effect */
        .hero-image-wrapper::before, .showcase-image-wrapper::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 90%;
            height: 90%;
            background: var(--text);
            filter: blur(100px);
            opacity: 0.1;
            z-index: 0;
            border-radius: 50%;
        }

        .slides, .hero-slides {
            display: grid; 
            width: 100%;
            position: relative;
            z-index: 3;
        }

        .hero-slides {
            width: 85%; /* Inner screen width */
        }

        /* --- REGULAR SLIDES (Bottom Sections) --- */
        .slide {
            grid-area: 1 / 1; 
            width: 100%;
            height: auto;
            border-radius: 12px;
            box-shadow: var(--img-shadow);
            border: 1px solid var(--border);
            opacity: 0;
            transform: scale(0.98); 
            transition: opacity 1s ease, transform 1s ease, box-shadow 0.4s ease;
            pointer-events: none; 
        }

        .slide.active {
            opacity: 1;
            transform: scale(1) translateY(0);
            pointer-events: auto;
            z-index: 2;
        }

        .slide.active:hover {
            transform: translateY(-8px); 
            box-shadow: var(--img-shadow-hover);
        }

        /* --- HERO SLIDES (Inside Macbook Screen) --- */
        .hero-slide {
            grid-area: 1 / 1; 
            width: 100%;
            height: auto;
            max-height: 100%;
            object-fit: contain; 
            border-radius: 6px; 
            opacity: 0;
            transform: scale(0.98); 
            transition: opacity 1s ease, transform 1s ease;
            pointer-events: none;
            box-shadow: none;
            border: none;
        }

        .hero-slide.active {
            opacity: 1;
            transform: scale(1) translateY(0);
            pointer-events: auto;
            z-index: 2;
        }

        /* No jump or shadow on hover inside laptop */
        .hero-slide.active:hover {
            transform: scale(1) translateY(0);
            box-shadow: none;
        }

        .showcase-image {
            width: 100%;
            height: auto;
            border-radius: 12px;
            box-shadow: var(--img-shadow);
            border: 1px solid var(--border);
            position: relative;
            z-index: 1;
            transform: translateY(0); 
            transition: transform 0.4s ease, box-shadow 0.4s ease;
        }
        
        .showcase-image:hover {
            transform: translateY(-8px); 
            box-shadow: var(--img-shadow-hover);
        }

        /* DOT CONTROLS */
        .dot-controls {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 14px; 
            margin-top: 30px;
            width: 100%;
            position: relative;
            z-index: 10;
        }

        .dot-btn {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: var(--border);
            border: none;
            cursor: pointer;
            transition: all 0.3s ease;
            padding: 0;
        }

        .dot-btn:hover {
            background: var(--text-muted);
            transform: scale(1.2);
        }

        .dot-btn.active {
            background: var(--text);
            transform: scale(1.4);
            box-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
        }

        /* --- HERO FEATURE CARDS --- */
        .features { 
            display: flex; 
            gap: 16px; 
            width: 100%; 
            max-width: 950px; 
            margin-top: 20px;
            opacity: 0; 
            animation: slideUp 0.8s ease 0.9s forwards; 
        }
        .feature-card { 
            flex: 1; 
            padding: 20px; 
            border-radius: 12px; 
            background: var(--input-bg); 
            border: 1px solid var(--border); 
            text-align: left; 
            transition: transform 0.3s ease, border-color 0.3s ease; 
        }
        .feature-card:hover { transform: translateY(-4px); border-color: var(--text-muted); }
        .feature-card h3 { font-family: 'Space Grotesk', sans-serif; font-size: 1rem; margin-bottom: 8px; }
        .feature-card p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.5; }
        .card-icon {
            background: var(--pill-bg);
            color: var(--text);
            width: 36px;
            height: 36px;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1rem;
            margin-bottom: 16px;
            border: 1px solid var(--border);
        }

        /* --- DASHBOARD SHOWCASE SECTIONS --- */
        .showcase-section {
            padding: 100px 30px;
            max-width: 1200px; 
            margin: 0 auto;
            display: flex;
            align-items: center;
            gap: 80px;
            opacity: 0;
            transform: translateY(40px);
            transition: opacity 1s ease-out, transform 1s ease-out;
        }

        .showcase-section.reverse {
            flex-direction: row-reverse;
        }

        .showcase-section.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .showcase-text {
            flex: 1;
        }

        .showcase-text h2 {
            font-family: 'Space Grotesk', sans-serif;
            font-size: clamp(2.2rem, 4vw, 3rem);
            margin-bottom: 20px;
            line-height: 1.2;
        }

        .showcase-text > p {
            color: var(--text-muted);
            font-size: 1.1rem;
            line-height: 1.6;
            margin-bottom: 40px;
        }

        .feature-list {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 24px;
        }

        .feature-item {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            gap: 14px;
            background: var(--input-bg);
            padding: 24px 28px;
            border-radius: 16px;
            border: 1px solid var(--border);
            transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
        }

        .feature-item:hover {
            transform: translateX(8px);
            border-color: var(--text-muted);
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }

        .feature-item-header {
            display: flex;
            align-items: center;
            gap: 16px;
            width: 100%;
        }

        .feature-icon {
            background: var(--text);
            color: var(--bg);
            width: 44px; 
            height: 44px; 
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem; 
            flex-shrink: 0;
            box-shadow: inset 0 -2px 0 rgba(0,0,0,0.2);
        }

        /* --- MULTI-DEVICE MOCKUP (MacBook + iPhone) --- */
        .multi-device-wrapper {
            position: relative;
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .macbook-mockup-container {
            position: relative;
            width: 100%;
            z-index: 1;
        }

        /* iPhone positioned absolutely over the bottom right of the MacBook */
        .iphone-overlap-img {
            position: absolute;
            bottom: -2%;
            right: -10%;
            width: 28%; /* Adjust this percentage to make the iPhone bigger or smaller */
            height: auto;
            z-index: 2;
            /* Drop shadow to make it pop off the laptop */
            filter: drop-shadow(0 20px 40px rgba(0,0,0,0.5));
            transition: transform 0.4s ease, filter 0.4s ease;
        }

        /* Float effect on hover for the iPhone */
        .iphone-overlap-img:hover {
            transform: translateY(-10px);
            filter: drop-shadow(0 30px 60px rgba(0,0,0,0.6));
        }

        /* Mobile adjustments to keep the iPhone visible on small screens */
        @media (max-width: 768px) {
            .iphone-overlap-img {
                width: 20%;
                right: 0;
                bottom: -5%;
            }
        }

        .feature-item h4 {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 1.2rem;
            margin-bottom: 0; 
        }

        .feature-item p {
            font-size: 0.95rem;
            margin-bottom: 0;
            color: var(--text-muted);
            line-height: 1.6;
        }

        /* --- SPEED TEST SECTION --- */
        .speed-test-section {
            flex-direction: column;
            align-items: center;
            text-align: center;
            gap: 40px;
        }

        .speed-test-section h2 {
            font-family: 'Space Grotesk', sans-serif;
            font-size: clamp(2.2rem, 4vw, 3rem);
            margin-bottom: 20px;
            line-height: 1.2;
        }

        .speed-test-section > p {
            color: var(--text-muted);
            font-size: 1.1rem;
            max-width: 600px;
            margin: 0 auto 40px auto;
            line-height: 1.6;
        }

        .comparison-container {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 30px;
            width: 100%;
            position: relative;
        }

        .video-card {
            flex: 1;
            background: var(--input-bg);
            border: 1px solid var(--border);
            border-radius: 16px;
            padding: 16px;
            box-shadow: var(--img-shadow);
            display: flex;
            flex-direction: column;
            gap: 12px;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .video-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--img-shadow-hover);
        }

        .video-card h3 {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 1.2rem;
            margin: 0;
            text-align: center;
            padding-bottom: 12px;
            border-bottom: 1px solid var(--grid-color);
        }

        .video-card video {
            width: 100%;
            height: auto;
            border-radius: 8px;
            border: 1px solid var(--border);
        }

        .vs-badge {
            background: var(--text);
            color: var(--bg);
            width: 44px;
            height: 44px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-family: 'Space Grotesk', sans-serif;
            font-size: 1rem;
            z-index: 2;
            flex-shrink: 0;
            box-shadow: 0 4px 15px rgba(0,0,0,0.3);
        }
        /* --- PRICING SECTION --- */
        .pricing-section {
            flex-direction: column;
            align-items: center;
            padding: 100px 30px;
            max-width: 1000px;
        }

        .pricing-header {
            text-align: center;
            margin-bottom: 50px;
        }

        .pricing-header h2 {
            font-family: 'Space Grotesk', sans-serif;
            font-size: clamp(2.2rem, 4vw, 3rem);
            margin-bottom: 16px;
        }

        .pricing-header p {
            color: var(--text-muted);
            font-size: 1.1rem;
        }

        .pricing-cards {
            display: flex;
            gap: 30px;
            width: 100%;
            justify-content: center;
            flex-wrap: wrap;
        }

        .pricing-card {
            flex: 1;
            min-width: 300px;
            background: var(--input-bg);
            border: 1px solid var(--border);
            border-radius: 20px;
            padding: 40px 30px;
            display: flex;
            flex-direction: column;
            transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
        }

        .pricing-card:hover {
            transform: translateY(-8px);
            box-shadow: var(--img-shadow-hover);
            border-color: var(--text-muted);
        }

        .pricing-card.featured {
            border-color: var(--text);
            position: relative;
        }

        .pricing-card.featured .badge {
            position: absolute;
            top: -15px;
            left: 50%;
            transform: translateX(-50%);
            background: var(--text);
            color: var(--bg);
            margin: 0;
            opacity: 1; 
            animation: none;
            white-space: nowrap;
        }

        .pricing-card h3 {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 1.5rem;
            margin-bottom: 10px;
        }

        .price {
            font-size: 2.8rem;
            font-weight: 700;
            font-family: 'Space Grotesk', sans-serif;
            margin-bottom: 10px;
        }

        .price span {
            font-size: 1rem;
            color: var(--text-muted);
            font-weight: 400;
        }

        .pricing-card p.desc {
            color: var(--text-muted);
            font-size: 0.95rem;
            margin-bottom: 30px;
            line-height: 1.5;
        }

        .pricing-features {
            list-style: none;
            margin-bottom: 40px;
            flex-grow: 1;
        }

        .pricing-features li {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 16px;
            font-size: 0.95rem;
            color: var(--text);
        }

        .pricing-features li i {
            color: var(--bg);
            background: var(--text);
            width: 20px;
            height: 20px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.6rem;
            flex-shrink: 0;
        }

        .pricing-btn {
            width: 100%;
            padding: 16px;
            border-radius: 12px;
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            text-align: center;
            transition: all 0.3s ease;
            font-family: 'Inter', sans-serif;
        }

        .btn-outline {
            background: transparent;
            border: 1px solid var(--border);
            color: var(--text);
        }
/* Base Desktop Grid for Pricing */
.pricing-cards {
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); 
    gap: 30px; 
    max-width: 1100px; 
    margin: 0 auto; 
    align-items: stretch;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .pricing-cards {
        grid-template-columns: 1fr; /* Force a single column */
        gap: 50px; /* Increase gap so the "Most Popular" badge has room to breathe */
    }
    
    .pricing-section {
        padding: 60px 20px;
    }
    
    .pricing-header h2 {
        font-size: 2rem;
    }
    
    /* Give the featured card a bit of top margin so the absolute badge doesn't get clipped */
    .pricing-card.featured {
        margin-top: 15px; 
    }
}
        .btn-outline:hover {
            border-color: var(--text);
            background: var(--pill-bg);
        }

        .btn-solid {
            background: var(--text);
            border: 1px solid var(--text);
            color: var(--bg);
        }

        .btn-solid:hover {
            transform: scale(1.02);
            box-shadow: 0 10px 20px rgba(0,0,0,0.2);
        }

        /* --- TOAST --- */
        .toast { position: fixed; top: -100px; left: 50%; transform: translateX(-50%); background: var(--input-bg); color: var(--text); padding: 14px 28px; border-radius: 50px; border: 1px solid var(--border); box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3); font-size: 0.95rem; font-weight: 500; display: flex; align-items: center; gap: 12px; z-index: 1000; transition: top 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55), opacity 0.4s ease; opacity: 0; pointer-events: none; white-space: nowrap; }
        .toast i { color: #28a745; font-size: 1.2rem; }
        .toast.show { top: 40px; opacity: 1; }

        /* --- FOOTER --- */
        footer { 
            padding: 30px 24px 20px 24px; 
            text-align: center; 
            font-size: 0.85rem; 
            color: var(--text-muted); 
            opacity: 0; 
            animation: fadeIn 1s ease 1.5s forwards; 
            border-top: 1px solid var(--border); 
            margin-top: 40px; 
            display: flex; 
            flex-direction: column; 
            align-items: center; 
            gap: 6px; 
        }


        /* Add this to your existing CSS */
.badge-container {
    overflow: hidden; /* Clips the text as it slides up/down */
    height: 28px;     /* Match this to your badge line-height */
    display: flex;
    align-items: center;
}

#hero-dynamic-badge {
    display: inline-block;
    will-change: transform, opacity;
    /* This cubic-bezier creates a 'soft landing' effect */
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1), 
                opacity 0.6s cubic-bezier(0.23, 1, 0.32, 1),
                filter 0.6s ease;
}

/* State when the badge is "leaving" or "entering" */
.badge-hidden {
    opacity: 0;
    transform: translateY(10px); /* Slides down */
    filter: blur(4px);           /* Adds a professional motion blur feel */
}
        @keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
        @keyframes slideUp { from { opacity: 0; transform: translateY(15px); } to { opacity: 1; transform: translateY(0); } }

        /* --- PRIVACY POLICY MODAL --- */
        .privacy-btn { background: none; border: none; color: var(--text-muted); font-size: 0.85rem; cursor: pointer; margin-top: 0; text-decoration: underline; transition: color 0.3s ease; }
        .privacy-btn:hover { color: var(--text); }
        .modal-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0, 0, 0, 0.7); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); display: flex; align-items: center; justify-content: center; z-index: 9999; opacity: 0; pointer-events: none; transition: opacity 0.4s ease; }
        .modal-overlay.active { opacity: 1; pointer-events: auto; }
        .modal-content { background: var(--bg); border: 1px solid var(--border); border-radius: 20px; padding: 40px; max-width: 550px; width: 90%; color: var(--text); box-shadow: 0 20px 60px rgba(0,0,0,0.6); transform: translateY(30px) scale(0.95); transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); }
        .modal-overlay.active .modal-content { transform: translateY(0) scale(1); }
        .modal-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 24px; border-bottom: 1px solid var(--border); padding-bottom: 20px; }
        .modal-header h3 { font-family: 'Space Grotesk', sans-serif; font-size: 1.4rem; }
        .close-modal { background: var(--pill-bg); border: 1px solid var(--border); color: var(--text); width: 36px; height: 36px; border-radius: 50%; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: all 0.3s ease; }
        .close-modal:hover { background: var(--text); color: var(--bg); }
        .modal-body p { color: var(--text-muted); line-height: 1.7; font-size: 1rem; margin-bottom: 20px; }
        .modal-body p:last-child { margin-bottom: 0; }

        /* --- MOBILE RESPONSIVE --- */
        @media (max-width: 1024px) {
            .showcase-section, .showcase-section.reverse { flex-direction: column; gap: 60px; padding: 80px 30px; }
            .showcase-image-wrapper { width: 100%; margin: 0 auto; }
            .showcase-image:hover, .slide.active:hover { transform: translateY(-4px); }
        }

        @media (max-width: 768px) {
            .comparison-container {
                flex-direction: column;
                gap: 20px;
            }
            .vs-badge {
                margin: 10px 0;
            }
        }

        @media (max-width: 650px) {
            .hero-section { padding: 120px 20px 60px 20px; align-items: center; }
            .app-logo { width: 72px; height: 72px; margin-bottom: 20px; animation: slideUp 0.8s ease 0.1s forwards, float 3s ease-in-out 0.9s infinite; }
            @keyframes float { 0%, 100% { transform: translateY(0px); } 50% { transform: translateY(-8px); } }
            .badge { font-size: 0.62rem; padding: 6px 14px; margin-bottom: 16px; letter-spacing: 0.8px; }
            h1 { font-size: 1.75rem; margin-bottom: 12px; line-height: 1.2; letter-spacing: -0.5px; }
            p.subtext { font-size: 0.95rem; margin-bottom: 24px; line-height: 1.5; }
            
            .form-container { width: 100%; padding: 0; margin-top: 10px; }
            form { flex-direction: column; gap: 0; }
            input { width: 100%; height: 56px; border-radius: 16px 16px 0 0; border-bottom: 2px solid var(--border); }
            button.submit-btn { width: 100%; height: 56px; border-radius: 0 0 16px 16px; border-top: none; background: var(--text); color: var(--bg); }
            
            .compatibility-info { margin-top: 20px; gap: 8px; }
            .comp-badge { font-size: 0.75rem; padding: 6px 12px; }

            .hero-image-wrapper { margin: 40px 0 20px 0; }
            .features { flex-direction: column; gap: 16px; margin-top: 30px; }
            
            .showcase-section { padding: 70px 20px; gap: 50px; }
            .showcase-text h2 { font-size: 2rem; }
            .feature-item { padding: 24px; }
            .dot-controls { margin-top: 20px; gap: 10px; }
            .dot-btn { width: 8px; height: 8px; }
        }

        /* =========================================
    Section Styles
========================================= */
/* =========================================
    FAQ Section Styles (Light & Dark Support)
========================================= */
.faq-section {
    max-width: 800px;
    margin: 80px auto;
    padding: 0 20px;
    color: var(--text); /* Uses variable */
    font-family: 'Inter', sans-serif;
}

.faq-header {
    text-align: center;
    margin-bottom: 40px;
}

.faq-header h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.2rem;
    margin-bottom: 10px;
}

.faq-header p {
    color: var(--text-muted); /* Uses variable */
    font-size: 1.1rem;
}

.faq-container {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* Individual Dropdown Box */
.faq-item {
    background: var(--glow); /* Subtle background from your variables */
    border: 1px solid var(--border); /* Standard border variable */
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    background: var(--pill-bg); /* Slightly stronger background on hover */
    border-color: var(--text-muted);
}

/* The Clickable Question */
.faq-item summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    cursor: pointer;
    font-weight: 500;
    font-size: 1.1rem;
    list-style: none;
    user-select: none;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

/* Dropdown Icon Animation */
.faq-item summary .icon {
    color: var(--text-muted);
    transition: transform 0.3s ease;
}

/* Rotate icon when the details tag is open */
.faq-item[open] summary .icon {
    transform: rotate(180deg);
    color: var(--text);
}

/* The Answer Text */
.faq-content {
    padding: 0 20px 20px 20px;
    color: var(--text-muted);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Slight highlight to the open item */
.faq-item[open] {
    background: var(--pill-bg);
    border-color: var(--text-muted);
}

/* =========================================
   FAQ Animation (Relaxed Timing)
========================================= */

@keyframes slideDownFade {
    0% {
        opacity: 0;
        transform: translateY(-10px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Apply the animation only when the dropdown is open */
.faq-item[open] .faq-content {
    /* Changed from 0.35s to 0.5s */
    animation: slideDownFade 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

/* Smooth out the background color transition on open */
.faq-item {
    /* Changed from 0.3s to 0.5s to match the new speed */
    transition: background-color 0.5s ease, border-color 0.5s ease;
}