* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --primary-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            --primary-purple: #667eea;
            --dark-purple: #5a67d8;
            --light-purple: #eef2ff;
            --dark-text: #1f2937;
            --gray-text: #6b7280;
            --light-bg: #f9fafb;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
            color: var(--dark-text);
            line-height: 1.6;
            overflow-x: hidden;
        }
        /* Prevent image stretching while keeping dimensions for SEO */
        img {
            max-width: 100%;
            height: auto;
            object-fit: contain;
        }

        /* ===== IMPROVED NAVIGATION ===== */
       nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: #F7F8FD;
    z-index: 1000;
    border-bottom: 1px solid #E5E7EB;
    transition: transform 0.3s ease;
}

nav.nav-hidden {
    transform: translateY(-100%);
}

        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 1.25rem 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo img {
            height: 60px;
            width: auto;
        }

        .nav-links {
            display: flex;
            gap: 2.5rem;
            align-items: center;
        }

        .nav-links a {
            text-decoration: none;
            color: var(--dark-text);
            font-weight: 500;
            font-size: 15px;
            transition: color 0.3s;
        }

        .nav-links a:hover {
            color: var(--primary-purple);
        }

        /* Social Icons in Nav */
        .social-icons {
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }

        .social-link {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 36px;
            height: 36px;
            border-radius: 50%;
            background: var(--light-purple);
            color: var(--primary-purple);
            transition: all 0.3s ease;
        }

        .social-link:hover {
            background: var(--primary-gradient);
            color: white !important;
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
        }

        .social-link svg {
            width: 18px;
            height: 18px;
        }

        /* Login button visibility */
        .nav-login-mobile { display: none; }
        .nav-login-desktop { display: inline; }

        /* ===== HAMBURGER MENU ===== */
        .hamburger {
            display: none;
            flex-direction: column;
            gap: 5px;
            background: none;
            border: none;
            cursor: pointer;
            padding: 10px;
            z-index: 1001;
        }

        .hamburger span {
            width: 25px;
            height: 3px;
            background: var(--primary-purple);
            transition: all 0.3s ease;
            border-radius: 3px;
        }

        .hamburger.active span:nth-child(1) {
            transform: rotate(45deg) translate(8px, 8px);
        }

        .hamburger.active span:nth-child(2) {
            opacity: 0;
        }

        .hamburger.active span:nth-child(3) {
            transform: rotate(-45deg) translate(7px, -7px);
        }

        body.menu-open::before {
            content: '';
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
            z-index: 999;
        }

        /* ===== SCROLL ANIMATIONS ===== */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(40px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
            }
            to {
                opacity: 1;
            }
        }

        @keyframes scaleIn {
            from {
                opacity: 0;
                transform: scale(0.95);
            }
            to {
                opacity: 1;
                transform: scale(1);
            }
        }

        /* Animation classes */
        .animate-on-scroll {
            opacity: 0;
        }

        .animate-on-scroll.animated {
            animation-duration: 0.8s;
            animation-fill-mode: both;
            animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
        }

        .fade-in-up.animated {
            animation-name: fadeInUp;
        }

        .fade-in.animated {
            animation-name: fadeIn;
        }

        .scale-in.animated {
            animation-name: scaleIn;
        }

        /* Staggered animation delays for feature cards */
        .features-grid .animate-on-scroll:nth-child(1).animated { animation-delay: 0s; }
        .features-grid .animate-on-scroll:nth-child(2).animated { animation-delay: 0.1s; }
        .features-grid .animate-on-scroll:nth-child(3).animated { animation-delay: 0.2s; }
        .features-grid .animate-on-scroll:nth-child(4).animated { animation-delay: 0.3s; }
        .features-grid .animate-on-scroll:nth-child(5).animated { animation-delay: 0.4s; }
        .features-grid .animate-on-scroll:nth-child(6).animated { animation-delay: 0.5s; }

        /* Staggered delays for trust bar items */
        .trust-bar-content .animate-on-scroll:nth-child(1).animated { animation-delay: 0s; }
        .trust-bar-content .animate-on-scroll:nth-child(2).animated { animation-delay: 0.15s; }
        .trust-bar-content .animate-on-scroll:nth-child(3).animated { animation-delay: 0.3s; }

        /* Reduce motion for users who prefer it */
        @media (prefers-reduced-motion: reduce) {
            .animate-on-scroll {
                animation: none !important;
                opacity: 1 !important;
            }
            .pulse-dot,
            .urgency-tag {
                animation: none !important;
            }
        }

        .btn-primary {
            background: var(--primary-gradient);
            color: white;
            padding: 0.875rem 1.75rem;
            border-radius: 10px;
            text-decoration: none;
            font-weight: 600;
            font-size: 15px;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
            box-shadow: 0 4px 14px rgba(102, 126, 234, 0.3);
        }

        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
        }

        .btn-secondary {
            background: transparent;
            color: white;
            padding: 0.875rem 1.75rem;
            border-radius: 10px;
            text-decoration: none;
            font-weight: 600;
            font-size: 15px;
            transition: all 0.3s ease;
            border: 2px solid rgba(255, 255, 255, 0.9);
        }

        .btn-secondary:hover {
            background: rgba(255, 255, 255, 0.15);
            border-color: white;
            transform: translateY(-1px);
        }

        /* ===== REFINED FOUNDER'S OFFER BANNER ===== */
        .early-adopter-banner {
            margin-top: 85px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            position: relative;
            overflow: hidden;
            border-bottom: 1px solid rgba(255, 255, 255, 0.15);
            animation: fadeIn 0.6s ease;
        }

        .early-adopter-banner::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -10%;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
            border-radius: 50%;
        }

        .early-adopter-banner::after {
            content: '';
            position: absolute;
            bottom: -30%;
            left: -5%;
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, rgba(168, 85, 247, 0.12) 0%, transparent 70%);
            border-radius: 50%;
        }

        .banner-inner {
            max-width: 1200px;
            margin: 0 auto;
            padding: 2.75rem 2rem;
            position: relative;
            z-index: 1;
        }

        .banner-top {
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 4rem;
            margin-bottom: 2.5rem;
        }

        .banner-content {
            flex: 1;
        }

        .launch-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(16, 185, 129, 0.2);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(16, 185, 129, 0.4);
            padding: 7px 16px;
            border-radius: 50px;
            margin-bottom: 1.25rem;
        }

        .pulse-dot {
            width: 8px;
            height: 8px;
            background: #10b981;
            border-radius: 50%;
            box-shadow: 0 0 12px rgba(16, 185, 129, 0.9);
            animation: pulse 2s ease-in-out infinite;
        }

        @keyframes pulse {
            0%, 100% { opacity: 1; transform: scale(1); }
            50% { opacity: 0.6; transform: scale(1.3); }
        }

        .launch-badge span {
            color: #d1fae5;
            font-weight: 700;
            font-size: 11px;
            letter-spacing: 1px;
            text-transform: uppercase;
        }

        .banner-content h2 {
            color: white;
            font-size: 2.5rem;
            font-weight: 800;
            margin-bottom: 1rem;
            line-height: 1.2;
            letter-spacing: -0.5px;
        }

        .banner-content p {
            color: rgba(255, 255, 255, 0.92);
            font-size: 1.05rem;
            font-weight: 400;
            line-height: 1.6;
            margin-bottom: 0;
        }

        .price-highlight {
            display: inline-block;
            color: #fbbf24;
            font-size: 2rem;
            font-weight: 800;
            text-shadow: 0 2px 12px rgba(251, 191, 36, 0.5);
            margin: 0 6px;
        }

        .banner-right {
            display: flex;
            flex-direction: column;
            align-items: flex-end;
            gap: 1.25rem;
        }

        .spots-badge {
            background: rgba(255, 255, 255, 0.13);
            backdrop-filter: blur(12px);
            border: 2px solid rgba(255, 255, 255, 0.25);
            border-radius: 18px;
            padding: 1.75rem 2.25rem;
            text-align: center;
            min-width: 210px;
            box-shadow: 0 12px 35px rgba(0, 0, 0, 0.25);
        }

        .spots-number {
            font-size: 4rem;
            font-weight: 900;
            color: white;
            line-height: 1;
            text-shadow: 0 4px 24px rgba(0, 0, 0, 0.35);
            margin-bottom: 0.5rem;
        }

        .spots-label {
            color: rgba(255, 255, 255, 0.95);
            font-size: 0.95rem;
            font-weight: 600;
            margin-bottom: 0.35rem;
        }

        .spots-sublabel {
            color: rgba(255, 255, 255, 0.75);
            font-size: 0.8rem;
        }

        .urgency-tag {
            display: inline-flex;
            align-items: center;
            gap: 7px;
            background: rgba(239, 68, 68, 0.22);
            border: 1px solid rgba(239, 68, 68, 0.45);
            padding: 7px 14px;
            border-radius: 24px;
            animation: glow 2s ease-in-out infinite;
        }

        @keyframes glow {
            0%, 100% { box-shadow: 0 0 0 rgba(239, 68, 68, 0); }
            50% { box-shadow: 0 0 22px rgba(239, 68, 68, 0.6); }
        }

        .urgency-tag svg {
            width: 15px;
            height: 15px;
            color: #fca5a5;
        }

        .urgency-tag span {
            color: #fecaca;
            font-weight: 700;
            font-size: 11px;
            text-transform: uppercase;
            letter-spacing: 0.6px;
        }

        .banner-cta-row {
            display: flex;
            align-items: center;
            gap: 1.25rem;
        }

        .email-input-wrapper {
            display: flex;
            gap: 12px;
            flex: 1;
            max-width: 520px;
        }

        .email-input-wrapper input {
            flex: 1;
            padding: 15px 20px;
            border: 2px solid rgba(255, 255, 255, 0.25);
            border-radius: 12px;
            font-size: 15px;
            background: rgba(255, 255, 255, 0.96);
            color: #1f2937;
            transition: all 0.3s ease;
            font-weight: 500;
        }

        .email-input-wrapper input:focus {
            outline: none;
            border-color: white;
            background: white;
            box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.2);
        }

        .email-input-wrapper input::placeholder {
            color: #9ca3af;
        }

        .cta-button {
            padding: 15px 32px;
            background: white;
            color: #667eea;
            border: none;
            border-radius: 12px;
            font-size: 15px;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s ease;
            white-space: nowrap;
            box-shadow: 0 4px 18px rgba(0, 0, 0, 0.18);
        }

        .cta-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 28px rgba(0, 0, 0, 0.28);
            background: #fbbf24;
            color: #1f2937;
        }

        .cta-button:active {
            transform: translateY(0);
        }

        .trust-indicators {
            display: flex;
            gap: 2.5rem;
            margin-top: 2rem;
            padding-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.18);
        }

        .trust-item {
            display: flex;
            align-items: center;
            gap: 9px;
            color: rgba(255, 255, 255, 0.92);
            font-size: 0.85rem;
            font-weight: 600;
        }

        .trust-item svg {
            width: 19px;
            height: 19px;
            color: #fbbf24;
            flex-shrink: 0;
        }

        .success-message {
            display: none;
            background: rgba(16, 185, 129, 0.22);
            border: 2px solid rgba(16, 185, 129, 0.45);
            border-radius: 14px;
            padding: 1.125rem 1.75rem;
            color: white;
            font-weight: 600;
            margin-top: 1.25rem;
            animation: slideDown 0.4s ease;
        }

        .success-message.show {
            display: block;
        }

        @keyframes slideDown {
            from {
                opacity: 0;
                transform: translateY(-12px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* ===== PREMIUM HERO SECTION ===== */
        .hero {
            margin-top: 85px;
            padding: 4rem 2rem 5rem;
            background: linear-gradient(180deg, #667eea 0%, #764ba2 85%, rgba(118, 75, 162, 0.95) 100%);
            text-align: center;
            position: relative;
            overflow: hidden;
            color: white;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: -40%;
            right: -15%;
            width: 700px;
            height: 700px;
            background: radial-gradient(circle, rgba(255, 255, 255, 0.12) 0%, transparent 70%);
            border-radius: 50%;
        }

        .hero::after {
            content: '';
            position: absolute;
            bottom: -25%;
            left: -10%;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
            border-radius: 50%;
        }

        .hero-content {
            max-width: 880px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
            animation: fadeInUp 0.8s ease;
        }

        .hero-badge {
            display: inline-block;
            background: rgba(255, 255, 255, 0.18);
            backdrop-filter: blur(10px);
            padding: 0.625rem 1.5rem;
            border-radius: 50px;
            margin-bottom: 2rem;
            font-size: 0.95rem;
            font-weight: 600;
            border: 1px solid rgba(255, 255, 255, 0.25);
            animation: fadeInUp 0.8s ease 0.2s both;
        }

        .hero h1 {
            font-size: 4rem;
            font-weight: 800;
            margin-bottom: 1.75rem;
            line-height: 1.15;
            letter-spacing: -1.5px;
            animation: fadeInUp 0.8s ease 0.3s both;
        }

        .hero h1 .highlight {
            background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hero p {
            font-size: 1.25rem;
            font-weight: 400;
            margin-bottom: 2.25rem;
            opacity: 0.92;
            line-height: 1.7;
            max-width: 680px;
            margin-left: auto;
            margin-right: auto;
            animation: fadeInUp 0.8s ease 0.4s both;
        }

        .hero-buttons {
            display: flex;
            gap: 1.25rem;
            justify-content: center;
            flex-wrap: wrap;
            animation: fadeInUp 0.8s ease 0.5s both;
        }

        .hero .btn-primary {
            background: white;
            color: var(--primary-purple);
            font-size: 17px;
            font-weight: 700;
            padding: 1.15rem 2.75rem;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
        }

        .hero .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 14px 40px rgba(0, 0, 0, 0.35);
        }

        .hero .btn-secondary {
            font-size: 14px;
            padding: 0.8rem 1.75rem;
            font-weight: 500;
        }

        .hero-demo {
            display: flex;
            justify-content: center;
            margin-top: 3.5rem;
            position: relative;
            z-index: 1;
            animation: fadeInUp 0.8s ease 0.6s both;
        }

        .phone-frame {
            position: relative;
            max-width: 420px;
            width: 100%;
            background: #1a1a1a;
            border-radius: 52px;
            padding: 12px;
            box-shadow: 0 25px 60px rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(255, 255, 255, 0.1), inset 0 0 0 2px rgba(255, 255, 255, 0.05);
        }

        .phone-notch {
            position: absolute;
            top: 22px;
            left: 50%;
            transform: translateX(-50%);
            width: 126px;
            height: 36px;
            background: #1a1a1a;
            border-radius: 20px;
            z-index: 2;
        }

        .hero-video {
            width: 100%;
            display: block;
            border-radius: 40px;
            object-fit: cover;
        }

        /* ===== NEW MICRO TRUST BAR ===== */
        .trust-bar {
            background: white;
            border-top: 1px solid #e5e7eb;
            border-bottom: 1px solid #e5e7eb;
            padding: 1.5rem 2rem;
            position: relative;
            z-index: 10;
        }

        .trust-bar-content {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 3.5rem;
            flex-wrap: wrap;
        }

        .trust-bar-item {
            display: flex;
            align-items: center;
            gap: 10px;
            color: var(--dark-text);
            font-size: 0.95rem;
            font-weight: 600;
        }

        .trust-bar-item svg {
            width: 22px;
            height: 22px;
            fill: #10b981;
            flex-shrink: 0;
        }

        /* ===== FEATURES SECTION ===== */
        .features {
            padding: 6rem 2rem;
            background: white;
        }

        .section-header {
            text-align: center;
            max-width: 700px;
            margin: 0 auto 4rem;
        }

        .section-header h2 {
            font-size: 2.5rem;
            font-weight: 800;
            margin-bottom: 1rem;
            color: var(--dark-text);
        }

        .section-header p {
            font-size: 1.2rem;
            color: var(--gray-text);
        }

        .features-grid {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }

        .feature-card {
            background: white;
            padding: 1.75rem 1.5rem;
            border-radius: 16px;
            border: 2px solid #E5E7EB;
            transition: all 0.3s;
            position: relative;
            overflow: hidden;
        }

        .feature-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: var(--primary-gradient);
            transform: scaleX(0);
            transition: transform 0.3s;
        }

        .feature-card:hover::before {
            transform: scaleX(1);
        }

        .feature-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 40px rgba(102, 126, 234, 0.15);
            border-color: var(--primary-purple);
        }

        .feature-icon {
            width: 60px;
            height: 60px;
            background: var(--primary-gradient);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            margin-bottom: 1.5rem;
        }

        .feature-icon svg {
            width: 32px;
            height: 32px;
            stroke: white;
            fill: none;
            stroke-width: 2;
            stroke-linecap: round;
            stroke-linejoin: round;
        }

        .feature-card h3 {
            font-size: 1.5rem;
            margin-bottom: 1rem;
            color: var(--dark-text);
        }

        .feature-card p {
            color: var(--gray-text);
            line-height: 1.7;
        }

        /* ===== SHOWCASE SECTION ===== */
        .showcase {
            padding: 6rem 2rem;
            background: var(--light-bg);
        }

        .showcase-item {
            max-width: 1200px;
            margin: 0 auto 6rem;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }

        .showcase-item:nth-child(even) .showcase-content {
            order: 2;
        }

        .showcase-item:nth-child(even) .showcase-image {
            order: 1;
        }

        .showcase-content h3 {
            font-size: 2rem;
            margin-bottom: 1rem;
            color: var(--dark-text);
        }

        .showcase-content p {
            color: var(--gray-text);
            font-size: 1.1rem;
            margin-bottom: 1.5rem;
            line-height: 1.8;
        }

        .showcase-features {
            list-style: none;
            margin-bottom: 2rem;
        }

        .showcase-features li {
            padding: 0.75rem 0;
            color: var(--gray-text);
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }

        .showcase-features li::before {
            content: '\2713';
            color: var(--primary-purple);
            font-weight: bold;
            font-size: 1.2rem;
            background: var(--light-purple);
            width: 24px;
            height: 24px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .showcase-image {
            background: white;
            padding: 1.5rem;
            border-radius: 16px;
            box-shadow: 0 10px 30px rgba(102, 126, 234, 0.15);
            border: 2px solid #E5E7EB;
        }

        .showcase-image img {
            width: 100%;
            border-radius: 12px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        }

        .showcase-image-mobile {
            display: none;
        }

        /* ===== PRICING SECTION ===== */
        .pricing {
            padding: 6rem 2rem;
            background: white;
        }

        .pricing-grid {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 2rem;
        }

        .pricing-card {
            background: white;
            padding: 3rem 2rem;
            border-radius: 16px;
            border: 2px solid #E5E7EB;
            text-align: center;
            transition: all 0.3s;
            position: relative;
        }

        .pricing-card.featured {
            border: 3px solid var(--primary-purple);
            transform: scale(1.05);
            box-shadow: 0 20px 40px rgba(102, 126, 234, 0.2);
        }

        .pricing-card:hover {
            transform: translateY(-8px) scale(1.02);
            box-shadow: 0 20px 40px rgba(102, 126, 234, 0.2);
        }

        .pricing-card.featured:hover {
            transform: translateY(-8px) scale(1.07);
        }

        .pricing-tag {
            display: inline-block;
            background: var(--primary-gradient);
            color: white;
            padding: 0.5rem 1rem;
            border-radius: 20px;
            font-size: 0.9rem;
            font-weight: 600;
            margin-bottom: 1rem;
        }

        .pricing-card h3 {
            font-size: 1.8rem;
            margin-bottom: 1rem;
        }

        .price {
            font-size: 3rem;
            font-weight: 800;
            background: var(--primary-gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 0.5rem;
        }

        .price-period {
            color: var(--gray-text);
            margin-bottom: 2rem;
        }

        .pricing-features {
            list-style: none;
            margin-bottom: 2rem;
            text-align: left;
        }

        .pricing-features li {
            padding: 0.75rem 0;
            color: var(--gray-text);
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }

        .pricing-features li::before {
            content: '\2713';
            color: var(--primary-purple);
            font-weight: bold;
            background: var(--light-purple);
            width: 20px;
            height: 20px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            font-size: 0.9rem;
        }

        /* ===== CTA SECTION ===== */
        .cta {
            padding: 6rem 2rem;
            background: var(--primary-gradient);
            text-align: center;
            color: white;
            position: relative;
            overflow: hidden;
        }

        .cta::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -20%;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
            border-radius: 50%;
        }

        .cta-content {
            position: relative;
            z-index: 1;
        }

        .cta h2 {
            font-size: 3rem;
            font-weight: 800;
            margin-bottom: 1rem;
        }

        .cta p {
            font-size: 1.3rem;
            margin-bottom: 2rem;
            opacity: 0.95;
        }

        .cta .btn-primary {
            background: white;
            color: var(--primary-purple);
            font-size: 1.1rem;
            padding: 1rem 2.5rem;
        }

        /* ===== FOOTER ===== */
        footer {
            padding: 4rem 2rem 2rem;
            background: #1F2937;
            color: white;
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 3rem;
            margin-bottom: 3rem;
        }

        .footer-section h4 {
            margin-bottom: 1rem;
            font-size: 1.2rem;
        }

        .footer-section ul {
            list-style: none;
        }

        .footer-section ul li {
            margin-bottom: 0.75rem;
        }

        .footer-section a {
            color: #9CA3AF;
            text-decoration: none;
            transition: color 0.3s;
        }

        .footer-section a:hover {
            color: white;
        }

        .footer-bottom {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid #374151;
            color: #9CA3AF;
        }

        /* ===== COMPARISON TABLE ===== */
        .mobile-comparison {
            display: none;
        }

        /* ===== TABLET BREAKPOINT ===== */
        @media (max-width: 1024px) and (min-width: 769px) {
            .hero h1 {
                font-size: 3rem;
            }

            .hero p {
                font-size: 1.15rem;
            }

            .banner-top {
                gap: 2rem;
            }

            .banner-content h2 {
                font-size: 2rem;
            }

            .showcase-item {
                gap: 2rem;
            }

            .pricing-card.featured {
                transform: scale(1.02);
            }

            .section-header h2 {
                font-size: 2rem;
            }

            .cta h2 {
                font-size: 2.25rem;
            }
        }

        /* ===== MOBILE BREAKPOINT ===== */
        @media (max-width: 768px) {
            .nav-login-mobile { display: inline !important; }
            .nav-login-desktop { display: none !important; }

            .nav-container {
                padding: 1rem 1.5rem;
            }

            .hide-mobile {
                display: none !important;
            }

            .why-matters-box {
                padding: 1.75rem 1.5rem !important;
            }

            .why-matters-box h3 {
                font-size: 1.5rem !important;
                margin-bottom: 0.75rem !important;
            }

            .why-matters-box p {
                font-size: 0.95rem !important;
                line-height: 1.6 !important;
            }

            .why-matters-box > div:first-child {
                width: 50px !important;
                height: 50px !important;
                margin-bottom: 1rem !important;
            }

            .why-matters-box svg {
                width: 28px !important;
                height: 28px !important;
            }

            .logo img {
                height: 50px !important;
            }

            /* Mobile Hamburger Menu */
            .hamburger {
                display: flex !important;
            }

            nav {
                position: fixed !important;
            }

            .nav-links {
                display: none;
                position: fixed;
                top: 0;
                right: -100%;
                width: 280px;
                height: 100vh;
                background: white;
                flex-direction: column;
                padding: 100px 2rem 2rem;
                box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
                z-index: 1000;
                transition: right 0.3s ease;
            }

            .nav-links.active {
                display: flex;
                right: 0;
            }

            .nav-links a:not(.social-link) {
                font-size: 1.1rem;
                width: 100%;
                padding: 0.75rem 0;
                display: block;
            }

            .nav-links .social-link {
                display: flex;
                align-items: center;
                justify-content: center;
                width: 44px;
                height: 44px;
                border-radius: 50%;
                background: #667eea;
                padding: 0;
            }

            .nav-links .social-link svg {
                width: 20px;
                height: 20px;
                fill: white;
                display: block;
            }

            .nav-links .btn-primary {
                width: 100%;
                text-align: center;
                margin-top: 1rem;
            }

            /* Mobile Social Icons */
            .nav-links .social-icons {
                display: flex;
                justify-content: center;
                width: 100%;
                margin: 1rem 0;
                gap: 1.5rem;
            }


            .early-adopter-banner {
                margin-top: 75px !important;
            }

            .banner-inner {
                padding: 2rem 1.5rem !important;
            }

            .banner-top {
                flex-direction: column !important;
                align-items: stretch !important;
                gap: 2rem !important;
            }

            .banner-content h2 {
                font-size: 1.75rem !important;
                line-height: 1.25 !important;
            }

            .banner-content p {
                font-size: 0.95rem !important;
            }

            .price-highlight {
                font-size: 1.6rem !important;
                display: inline-block !important;
            }

            .banner-right {
                width: 100% !important;
                align-items: stretch !important;
            }

            .spots-badge {
                min-width: 0 !important;
                padding: 1.5rem !important;
            }

            .spots-number {
                font-size: 3rem !important;
            }

            .banner-cta-row {
                flex-direction: column !important;
                gap: 1rem !important;
            }

            .email-input-wrapper {
                flex-direction: column !important;
                width: 100% !important;
                max-width: 100% !important;
                gap: 0.875rem !important;
            }

            .email-input-wrapper input,
            .cta-button {
                width: 100% !important;
                padding: 13px 18px !important;
                font-size: 14px !important;
            }

            .trust-indicators {
                flex-direction: column !important;
                gap: 1rem !important;
                margin-top: 1.5rem !important;
                padding-top: 1.5rem !important;
            }

            .hero {
                padding: 2.5rem 1.5rem 4rem !important;
                margin-top: 70px !important;
            }

            .hero-badge {
                font-size: 0.85rem !important;
                padding: 0.5rem 1.25rem !important;
                margin-bottom: 1.5rem !important;
            }

            .hero h1 {
                font-size: 2.25rem !important;
                line-height: 1.2 !important;
                letter-spacing: -0.5px !important;
                margin-bottom: 1.5rem !important;
            }

            .hero p {
                font-size: 1.05rem !important;
                line-height: 1.6 !important;
                margin-bottom: 1.75rem !important;
            }

            .hero-buttons {
                flex-direction: column !important;
                width: 100% !important;
                gap: 1rem !important;
            }

            .hero .btn-primary,
            .hero .btn-secondary {
                width: 100% !important;
                font-size: 15px !important;
                padding: 0.875rem 1.5rem !important;
            }

            .hero-demo {
                margin-top: 2rem !important;
                padding: 0 2rem !important;
            }

            .phone-frame {
                max-width: 300px !important;
                border-radius: 42px !important;
                padding: 10px !important;
            }

            .phone-notch {
                width: 95px !important;
                height: 28px !important;
                top: 17px !important;
                border-radius: 16px !important;
            }

            .hero-video {
                border-radius: 34px !important;
            }

            .hero-video {
                border-radius: 28px !important;
            }

            .trust-bar {
                padding: 1.25rem 1.5rem !important;
            }

            .trust-bar-content {
                flex-direction: column !important;
                gap: 1.25rem !important;
            }

            .trust-bar-item {
                font-size: 0.875rem !important;
            }

            /* Features Section Mobile */
            .features {
                padding: 4rem 1.5rem !important;
            }

            .features-grid {
                grid-template-columns: 1fr !important;
            }

            /* Showcase Section Mobile */
            .showcase {
                padding: 4rem 1.5rem !important;
            }

            .showcase-item {
                grid-template-columns: 1fr !important;
                margin-bottom: 3rem !important;
            }

            .showcase-item:nth-child(even) .showcase-content {
                order: 0 !important;
            }

            .showcase-item:nth-child(even) .showcase-image {
                order: 0 !important;
            }

            .showcase-image {
                padding: 0 !important;
                border: none !important;
                background: none !important;
                box-shadow: none !important;
                max-width: 280px !important;
                margin: 0 auto !important;
            }

            .showcase-image img {
                border-radius: 20px !important;
                max-width: 280px !important;
                box-shadow: 0 10px 40px rgba(0,0,0,0.15) !important;
                border: none !important;
            }

            .showcase-image-desktop {
                display: none !important;
            }

            .showcase-image-mobile {
                display: block !important;
                max-width: 100% !important;
                margin: 0 auto !important;
            }

            .showcase-image video {
                border-radius: 20px !important;
                max-width: 280px !important;
                box-shadow: 0 10px 40px rgba(0,0,0,0.15) !important;
                border: none !important;
            }

            /* Pricing Section Mobile */
            .pricing {
                padding: 4rem 1.5rem !important;
            }

            .pricing-grid {
                grid-template-columns: 1fr !important;
            }

            .pricing-card.featured {
                transform: scale(1) !important;
            }

            /* CTA Section Mobile */
            .cta {
                padding: 4rem 1.5rem !important;
            }

            .cta h2 {
                font-size: 1.8rem !important;
            }

            /* Footer Mobile */
            .footer-content {
                grid-template-columns: 1fr !important;
            }

            /* Comparison Table Mobile */
            .comparison-table-wrapper {
                display: none !important;
            }

            .mobile-comparison {
                display: block;
                padding: 0 1rem;
            }

            .mobile-comparison h3 {
                font-size: 1.8rem;
                font-weight: 800;
                color: #1f2937;
                margin-bottom: 1rem;
            }

            .mobile-comparison h4 {
                font-size: 1.5rem;
                font-weight: 800;
                margin-bottom: 1rem;
            }

            /* How It Works - stack on mobile */
            .how-it-works-grid {
                grid-template-columns: 1fr !important;
                gap: 2rem !important;
            }

            /* Who It's For - stack on mobile */
            .who-its-for-grid {
                grid-template-columns: 1fr !important;
                gap: 1.5rem !important;
            }

            /* Features grid - stacked cards instead of carousel */
            .features-grid {
                display: flex !important;
                flex-direction: column !important;
                overflow-x: visible !important;
                scroll-snap-type: none !important;
                gap: 1.25rem !important;
                padding: 0 !important;
            }

            .features-grid .feature-card {
                flex: none !important;
                max-width: none !important;
                scroll-snap-align: none !important;
            }

            /* Hide carousel dots since we're stacking */
            .features-dots {
                display: none !important;
            }

            /* Testimonials - horizontal swipe carousel on mobile */
            .testimonials-grid {
                display: flex !important;
                flex-direction: row !important;
                flex-wrap: nowrap !important;
                overflow-x: auto !important;
                overflow-y: hidden !important;
                scroll-snap-type: x mandatory !important;
                -webkit-overflow-scrolling: touch !important;
                gap: 1rem !important;
                margin: 0 -1.25rem !important;
                padding: 0 1.25rem !important;
                scrollbar-width: none !important;
                -ms-overflow-style: none !important;
                grid-template-columns: none !important;
            }

            .testimonials-grid::-webkit-scrollbar {
                display: none !important;
            }

            .testimonials-grid > div {
                flex: 0 0 85% !important;
                min-width: 85% !important;
                max-width: 85% !important;
                scroll-snap-align: center !important;
            }

            /* Feature cards (pricing model) - stacked on mobile */
            .feature-cards-container {
                display: flex !important;
                flex-direction: column !important;
                overflow-x: visible !important;
                scroll-snap-type: none !important;
                gap: 1.5rem !important;
                padding: 0 !important;
            }

            .feature-cards-container > div {
                flex: none !important;
                max-width: none !important;
                scroll-snap-align: none !important;
            }

            .feature-dots,
            .feature-swipe-indicator,
            .swipe-hint {
                display: none !important;
            }

            /* Outcomes strip - wrap on mobile */
            .outcomes-strip {
                flex-direction: column !important;
                gap: 0.75rem !important;
            }

            /* Global mobile spacing reduction (20-30% less padding) */
            .features {
                padding: 3rem 1.25rem !important;
            }

            .showcase {
                padding: 3rem 1.25rem !important;
            }

            .showcase-item {
                gap: 2rem !important;
                margin-bottom: 3rem !important;
            }

            /* Testimonials carousel dots */
            .testimonials-dots {
                display: flex !important;
                justify-content: center;
                gap: 8px;
                margin-top: 1.25rem;
            }

            .testimonials-dots .dot {
                width: 8px;
                height: 8px;
                border-radius: 50%;
                background: #d1d5db;
                border: none;
                padding: 0;
                cursor: pointer;
                transition: all 0.3s ease;
            }

            .testimonials-dots .dot.active {
                background: #667eea;
                width: 24px;
                border-radius: 4px;
            }

            /* Features on mobile - show only first 4, hide rest */
            .features-grid > .feature-card:nth-child(n+5) {
                display: none !important;
            }

            .features-grid.expanded > .feature-card:nth-child(n+5) {
                display: flex !important;
            }

            /* Show expand toggles on mobile */
            .features-expand-toggle {
                display: block !important;
            }

            /* Hide expand toggle when expanded */
            .features-expand-toggle.hidden {
                display: none !important;
            }

            /* Hide old testimonials expand toggle */
            .testimonials-expand-toggle {
                display: none !important;
            }

            /* Hide testimonials dots on desktop (shown via default display:flex above) */

            /* Reduce section padding on mobile (20-30% less) */
            #how-it-works {
                padding: 3.5rem 1.25rem !important;
            }

            #how-it-works > div > div:first-child {
                margin-bottom: 2.5rem !important;
            }

            #testimonials-section {
                padding: 3.5rem 1.25rem !important;
            }

            /* Why Detailers Choose - compressed */
            section[style*="background: linear-gradient(135deg, #667eea"] {
                padding: 3rem 1.25rem !important;
            }

            /* Who It's For - compressed */
            section:has(.who-its-for-grid) {
                padding: 3.5rem 1.25rem !important;
            }

            /* Pricing Model section - compressed */
            section[style*="background: linear-gradient(180deg, #1a1a2e"] {
                padding: 4rem 1.25rem !important;
            }

            /* Comparison section - compressed */
            section:has(.comparison-table-wrapper) {
                padding: 3.5rem 1.25rem !important;
            }

            /* FAQ section - compressed */
            section:has(.faq-container) {
                padding: 3.5rem 1.25rem !important;
            }

            section:has(.faq-container) > div > div:first-child {
                margin-bottom: 2.5rem !important;
            }

            /* Outcomes strip - tighter on mobile */
            .outcomes-strip-container {
                margin-bottom: 2rem !important;
            }

            /* Reduce showcase section spacing */
            .showcase .section-header {
                margin-bottom: 2rem !important;
            }

            .showcase-item {
                padding: 0 !important;
                margin-bottom: 2.5rem !important;
            }

            /* QR banner - compressed */
            section:has(svg[viewBox="0 0 100 100"]) {
                padding: 2rem 1.25rem !important;
            }
        }