        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
            background-color: #0F172A;
        }

        body {
            font-family: 'Plus Jakarta Sans', sans-serif;
            background: linear-gradient(135deg, #0F172A 0%, #1E1B4B 50%, #0F172A 100%);
            color: #E5E7EB;
            line-height: 1.6;
            overflow-x: hidden;
            min-height: 100vh;
        }

        /* ===== UTILITY CLASSES ===== */
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .gradient-text {
            background: linear-gradient(135deg, #3B82F6 0%, #8B5CF6 40%, #EC4899 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .gradient-button {
            background: linear-gradient(135deg, #3B82F6 0%, #8B5CF6 50%, #EC4899 100%);
            color: white;
            border: none;
            padding: 12px 32px;
            border-radius: 8px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            font-size: 16px;
            font-family: 'Plus Jakarta Sans', sans-serif;
        }

        .gradient-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 20px 40px rgba(59, 130, 246, 0.4);
        }

        .glass-card {
            background: rgba(30, 27, 75, 0.5);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(139, 92, 246, 0.2);
            border-radius: 16px;
            padding: 24px;
        }

        .fade-in {
            opacity: 1;
            transform: translateY(0);
        }

        @media (prefers-reduced-motion: no-preference) {
            .fade-in {
                opacity: 0;
                transform: translateY(20px);
                transition: opacity 0.6s ease-out, transform 0.6s ease-out;
            }

            .fade-in.visible {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* ===== NAVIGATION ===== */
        nav {
            background: rgba(15, 23, 42, 0.8);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid rgba(139, 92, 246, 0.1);
            position: fixed;
            top: 0;
            width: 100%;
            z-index: 1000;
            padding: 16px 0;
        }

        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo-section {
            display: flex;
            align-items: center;
            gap: 12px;
            text-decoration: none;
            color: white;
            font-size: 22px;
            font-weight: 700;
        }

        .logo-svg { width: 60px; height: 60px; }

        .nav-links {
            display: flex;
            gap: 40px;
            list-style: none;
        }

        .nav-links a {
            color: #D1D5DB;
            text-decoration: none;
            font-size: 15px;
            font-weight: 500;
            transition: color 0.3s ease;
        }

        .nav-links a:hover {
            color: #EC4899;
        }

        .nav-cta {
            margin-left: 20px;
        }

        .hamburger {
            display: none;
            flex-direction: column;
            gap: 5px;
            background: none;
            border: none;
            cursor: pointer;
            padding: 5px;
            z-index: 1001;
        }

        .hamburger span {
            display: block;
            width: 25px;
            height: 3px;
            background: currentColor;
            border-radius: 2px;
            transition: all 0.3s ease;
        }

        @media (max-width: 768px) {
            .hamburger {
                display: flex;
                color: inherit;
            }

            .nav-links {
                display: none;
                position: fixed;
                top: 70px;
                left: 0;
                right: 0;
                background: #0F172A;
                flex-direction: column;
                padding: 20px;
                gap: 15px;
                border-bottom: 1px solid rgba(139, 92, 246, 0.3);
                z-index: 1000;
                list-style: none;
                box-shadow: 0 8px 20px rgba(0,0,0,0.3);
            }

            .nav-links.active {
                display: flex;
            }

            .nav-cta {
                margin-left: 0;
                padding: 8px 14px !important;
                font-size: 13px !important;
                white-space: nowrap;
            }
        }

        @media (max-width: 480px) {
            .nav-cta {
                padding: 6px 10px !important;
                font-size: 11px !important;
                margin-left: 4px !important;
            }
            .logo-section { font-size: 15px; }
            .logo-svg { width: 32px !important; height: 32px !important; }
        }

        /* ===== HERO SECTION ===== */
        .hero {
            padding: 120px 0 80px;
            margin-top: 80px;
        }

        .hero-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .hero-text h1 {
            font-size: 56px;
            font-weight: 800;
            line-height: 1.2;
            margin-bottom: 20px;
        }

        .hero-text h1 span {
            display: block;
        }

        .hero-text p {
            font-size: 18px;
            color: #9CA3AF;
            margin-bottom: 30px;
            line-height: 1.8;
        }

        .hero-buttons {
            display: flex;
            gap: 16px;
            flex-wrap: wrap;
        }

        .hero-mockup {
            position: relative;
            height: 400px;
        }

        .mockup-card {
            background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(236, 72, 153, 0.1) 100%);
            border: 1px solid rgba(139, 92, 246, 0.3);
            border-radius: 20px;
            padding: 30px;
            height: 100%;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            backdrop-filter: blur(10px);
            animation: float 3s ease-in-out infinite;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-10px); }
        }

        .mockup-header {
            display: flex;
            gap: 8px;
            margin-bottom: 20px;
        }

        .dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(139, 92, 246, 0.5);
        }

        .dot:nth-child(2) {
            background: rgba(245, 158, 11, 0.5);
        }

        .dot:nth-child(3) {
            background: rgba(236, 72, 153, 0.5);
        }

        .mockup-lines {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .line {
            height: 8px;
            background: linear-gradient(90deg, rgba(59, 130, 246, 0.3), transparent);
            border-radius: 4px;
        }

        .line:nth-child(2) {
            width: 80%;
        }

        .line:nth-child(3) {
            width: 90%;
        }

        /* Realistic Agent App preview inside hero mockup */
        .app-preview { padding: 0; overflow: hidden; }
        .app-preview .mockup-header {
            padding: 12px 16px;
            margin-bottom: 0;
            background: rgba(15, 23, 42, 0.55);
            border-bottom: 1px solid rgba(139, 92, 246, 0.25);
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .mockup-url {
            margin-left: 12px;
            font-size: 11px;
            color: rgba(226, 232, 240, 0.65);
            font-family: ui-monospace, SFMono-Regular, monospace;
        }
        .app-shell {
            display: grid;
            grid-template-columns: 150px 1fr;
            height: calc(100% - 44px);
            min-height: 320px;
        }
        .app-sidebar {
            background: rgba(15, 23, 42, 0.45);
            border-right: 1px solid rgba(139, 92, 246, 0.2);
            padding: 12px 10px;
            display: flex;
            flex-direction: column;
            gap: 4px;
            font-size: 12px;
            color: rgba(226, 232, 240, 0.85);
        }
        .app-brand {
            font-size: 13px;
            font-weight: 700;
            margin-bottom: 10px;
            background: linear-gradient(90deg, #3b82f6, #ec4899);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .app-nav {
            padding: 6px 8px;
            border-radius: 6px;
            color: rgba(226, 232, 240, 0.7);
        }
        .app-nav.active {
            background: rgba(139, 92, 246, 0.25);
            color: #fff;
            border: 1px solid rgba(139, 92, 246, 0.45);
        }
        .app-provider {
            margin-top: auto;
            font-size: 10px;
            color: rgba(226, 232, 240, 0.6);
            padding: 6px 0;
            border-top: 1px dashed rgba(139, 92, 246, 0.2);
        }
        .pill-ok {
            display: inline-block;
            padding: 2px 6px;
            border-radius: 999px;
            font-size: 9px;
            background: rgba(34, 197, 94, 0.18);
            color: #4ade80;
            border: 1px solid rgba(34, 197, 94, 0.35);
            margin-left: 4px;
        }
        .app-main {
            padding: 14px 18px;
            display: flex;
            flex-direction: column;
            gap: 12px;
            overflow: hidden;
        }
        .app-tabs {
            display: flex;
            gap: 6px;
            border-bottom: 1px solid rgba(139, 92, 246, 0.2);
            padding-bottom: 8px;
        }
        .app-tab {
            padding: 5px 10px;
            font-size: 11px;
            border-radius: 6px 6px 0 0;
            color: rgba(226, 232, 240, 0.65);
        }
        .app-tab.active {
            background: rgba(139, 92, 246, 0.2);
            color: #fff;
            border: 1px solid rgba(139, 92, 246, 0.35);
            border-bottom: none;
        }
        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 10px;
        }
        .form-field label {
            font-size: 10px;
            color: rgba(226, 232, 240, 0.6);
            text-transform: uppercase;
            letter-spacing: 0.5px;
            margin-bottom: 4px;
            display: block;
        }
        .field {
            background: rgba(15, 23, 42, 0.6);
            border: 1px solid rgba(139, 92, 246, 0.25);
            border-radius: 6px;
            padding: 7px 10px;
            font-size: 12px;
            color: rgba(226, 232, 240, 0.9);
        }
        .form-actions {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-top: 4px;
        }
        .btn-gen {
            background: linear-gradient(90deg, #3b82f6, #8b5cf6);
            border: none;
            color: #fff;
            padding: 8px 14px;
            border-radius: 8px;
            font-size: 12px;
            font-weight: 600;
            cursor: default;
        }
        .output-row {
            display: flex;
            align-items: center;
            gap: 8px;
            background: rgba(34, 197, 94, 0.08);
            border: 1px solid rgba(34, 197, 94, 0.25);
            border-radius: 6px;
            padding: 8px 10px;
        }
        .output-dot {
            width: 8px; height: 8px; border-radius: 50%;
            background: #4ade80;
            box-shadow: 0 0 8px #4ade80;
        }
        .output-text {
            font-size: 11px;
            color: rgba(226, 232, 240, 0.85);
            font-family: ui-monospace, SFMono-Regular, monospace;
        }

        @media (max-width: 1024px) {
            .hero-content {
                grid-template-columns: 1fr;
            }
            .hero-text h1 {
                font-size: 42px;
            }
            .hero-mockup {
                height: 360px;
            }
        }
        @media (max-width: 640px) {
            .hero-mockup { height: 340px; }
            .app-shell { grid-template-columns: 110px 1fr; }
            .app-sidebar { padding: 10px 8px; font-size: 11px; }
            .app-main { padding: 12px; }
            .form-row { grid-template-columns: 1fr; }
        }

        /* ===== SOCIAL PROOF ===== */
        .social-proof {
            background: linear-gradient(90deg, rgba(59, 130, 246, 0.05) 0%, rgba(236, 72, 153, 0.05) 100%);
            border-top: 1px solid rgba(139, 92, 246, 0.1);
            border-bottom: 1px solid rgba(139, 92, 246, 0.1);
            padding: 40px 0;
            margin: 60px 0;
        }

        .proof-content {
            display: grid;
            grid-template-columns: auto 1fr;
            gap: 60px;
            align-items: center;
        }

        .proof-text {
            font-size: 16px;
            font-weight: 600;
            color: #D1D5DB;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 40px;
        }

        .stat {
            text-align: center;
        }

        .stat-number {
            font-size: 28px;
            font-weight: 800;
            background: linear-gradient(135deg, #3B82F6 0%, #EC4899 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .stat-label {
            font-size: 13px;
            color: #9CA3AF;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-top: 8px;
        }

        @media (max-width: 768px) {
            .proof-content {
                grid-template-columns: 1fr;
            }
            .stats-grid {
                grid-template-columns: 1fr;
            }
        }

        /* ===== FEATURES SECTION ===== */
        .features {
            padding: 80px 0;
        }

        .section-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .section-header h2 {
            font-size: 44px;
            font-weight: 800;
            margin-bottom: 16px;
            line-height: 1.2;
        }

        .section-header p {
            font-size: 18px;
            color: #9CA3AF;
            max-width: 500px;
            margin: 0 auto;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 32px;
        }

        .feature-card {
            padding: 36px;
            border-radius: 16px;
            background: rgba(30, 27, 75, 0.4);
            border: 1px solid rgba(139, 92, 246, 0.2);
            backdrop-filter: blur(10px);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .feature-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(139, 92, 246, 0.1), transparent);
            transition: left 0.5s ease;
        }

        .feature-card:hover::before {
            left: 100%;
        }

        .feature-card:hover {
            border-color: rgba(236, 72, 153, 0.4);
            transform: translateY(-8px);
        }

        .feature-icon {
            width: 56px;
            height: 56px;
            background: linear-gradient(135deg, #3B82F6 0%, #8B5CF6 100%);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 28px;
            margin-bottom: 16px;
        }

        .feature-card h3 {
            font-size: 20px;
            font-weight: 700;
            margin-bottom: 12px;
            color: #FFF;
        }

        .feature-card p {
            font-size: 15px;
            color: #9CA3AF;
            line-height: 1.7;
        }

        /* ===== HOW IT WORKS ===== */
        .how-it-works {
            padding: 80px 0;
            background: linear-gradient(180deg, rgba(59, 130, 246, 0.05) 0%, rgba(236, 72, 153, 0.05) 100%);
            border-top: 1px solid rgba(139, 92, 246, 0.1);
            border-bottom: 1px solid rgba(139, 92, 246, 0.1);
        }

        .steps-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 40px;
            margin-top: 60px;
        }

        .step {
            text-align: center;
            position: relative;
        }

        .step-number {
            width: 64px;
            height: 64px;
            background: linear-gradient(135deg, #3B82F6 0%, #8B5CF6 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 28px;
            font-weight: 800;
            margin: 0 auto 24px;
            color: white;
        }

        .step h3 {
            font-size: 20px;
            font-weight: 700;
            margin-bottom: 12px;
            color: #FFF;
        }

        .step p {
            font-size: 15px;
            color: #9CA3AF;
            line-height: 1.7;
        }

        .step::after {
            content: '→';
            position: absolute;
            right: -40px;
            top: 30px;
            font-size: 28px;
            color: rgba(139, 92, 246, 0.3);
        }

        .step:last-child::after {
            display: none;
        }

        @media (max-width: 1024px) {
            .step::after {
                display: none;
            }
        }

        /* ===== PRICING SECTION ===== */
        .pricing {
            padding: 80px 0;
        }

        .pricing-grid {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 20px;
            margin-top: 60px;
        }

        @media (max-width: 1200px) {
            .pricing-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }

        @media (max-width: 768px) {
            .pricing-grid {
                grid-template-columns: 1fr !important;
            }
        }

        .pricing-card {
            padding: 40px;
            border-radius: 16px;
            background: rgba(30, 27, 75, 0.4);
            border: 1px solid rgba(139, 92, 246, 0.2);
            backdrop-filter: blur(10px);
            display: flex;
            flex-direction: column;
            transition: all 0.3s ease;
            position: relative;
        }

        .pricing-card.featured {
            border-color: rgba(236, 72, 153, 0.5);
            background: rgba(236, 72, 153, 0.08);
            transform: scale(1.05);
        }

        .pricing-card.featured::before {
            content: 'MOST POPULAR';
            position: absolute;
            top: -12px;
            left: 50%;
            transform: translateX(-50%);
            background: linear-gradient(135deg, #3B82F6 0%, #EC4899 100%);
            color: white;
            padding: 4px 16px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: 700;
            letter-spacing: 1px;
        }

        .pricing-card:hover {
            transform: translateY(-8px) scale(1.05);
        }

        .pricing-card.featured:hover {
            transform: translateY(-8px) scale(1.1);
        }

        .pricing-tier {
            font-size: 20px;
            font-weight: 700;
            margin-bottom: 12px;
            color: #FFF;
        }

        .pricing-price {
            font-size: 44px;
            font-weight: 800;
            margin-bottom: 8px;
            background: linear-gradient(135deg, #3B82F6 0%, #EC4899 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .pricing-period {
            font-size: 14px;
            color: #9CA3AF;
            margin-bottom: 32px;
        }

        .pricing-features {
            flex: 1;
            margin-bottom: 32px;
        }

        .pricing-features li {
            list-style: none;
            padding: 10px 0;
            padding-left: 28px;
            position: relative;
            font-size: 14px;
            color: #D1D5DB;
            border-bottom: 1px solid rgba(139, 92, 246, 0.1);
        }

        .pricing-features li:last-child {
            border-bottom: none;
        }

        .pricing-features li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: #8B5CF6;
            font-weight: 700;
            font-size: 16px;
        }

        .pricing-button {
            width: 100%;
            padding: 14px;
            border-radius: 8px;
            border: 1px solid rgba(139, 92, 246, 0.3);
            background: transparent;
            color: #FFF;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-size: 15px;
        }

        .pricing-card.featured .pricing-button {
            background: linear-gradient(135deg, #3B82F6 0%, #EC4899 100%);
            border: none;
        }

        .pricing-button:hover {
            background: rgba(139, 92, 246, 0.2);
        }

        .pricing-card.featured .pricing-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 15px 30px rgba(236, 72, 153, 0.3);
        }

        /* ===== TESTIMONIALS ===== */
        .testimonials {
            padding: 80px 0;
            background: linear-gradient(180deg, rgba(59, 130, 246, 0.05) 0%, rgba(236, 72, 153, 0.05) 100%);
            border-top: 1px solid rgba(139, 92, 246, 0.1);
            border-bottom: 1px solid rgba(139, 92, 246, 0.1);
        }

        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 32px;
            margin-top: 60px;
        }

        .testimonial-card {
            padding: 32px;
            border-radius: 16px;
            background: rgba(30, 27, 75, 0.4);
            border: 1px solid rgba(139, 92, 246, 0.2);
            backdrop-filter: blur(10px);
        }

        .stars {
            color: #F59E0B;
            font-size: 16px;
            margin-bottom: 16px;
        }

        .testimonial-text {
            font-size: 16px;
            color: #D1D5DB;
            margin-bottom: 24px;
            line-height: 1.8;
            font-style: italic;
        }

        .testimonial-author {
            display: flex;
            flex-direction: column;
        }

        .author-name {
            font-weight: 700;
            color: #FFF;
            font-size: 16px;
        }

        .author-title {
            font-size: 13px;
            color: #9CA3AF;
            margin-top: 4px;
        }

        /* ===== FAQ SECTION ===== */
        .faq {
            padding: 80px 0;
        }

        .faq-container {
            max-width: 700px;
            margin: 0 auto;
        }

        .faq-item {
            margin-bottom: 16px;
            border-radius: 12px;
            border: 1px solid rgba(139, 92, 246, 0.2);
            overflow: hidden;
            background: rgba(30, 27, 75, 0.4);
            backdrop-filter: blur(10px);
        }

        .faq-question {
            padding: 20px;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-weight: 600;
            color: #FFF;
            user-select: none;
            transition: background 0.3s ease;
        }

        .faq-question:hover {
            background: rgba(139, 92, 246, 0.1);
        }

        .faq-icon {
            font-size: 20px;
            transition: transform 0.3s ease;
        }

        .faq-item.active .faq-icon {
            transform: rotate(180deg);
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
            padding: 0 20px;
        }

        .faq-item.active .faq-answer {
            max-height: 300px;
            padding: 0 20px 20px 20px;
        }

        .faq-answer-text {
            color: #9CA3AF;
            line-height: 1.8;
        }

        /* ===== CTA SECTION ===== */
        .cta-section {
            padding: 80px 0;
            background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(236, 72, 153, 0.1) 100%);
            border-top: 1px solid rgba(139, 92, 246, 0.2);
            border-bottom: 1px solid rgba(139, 92, 246, 0.2);
            border-radius: 20px;
            text-align: center;
        }

        .cta-section h2 {
            font-size: 44px;
            font-weight: 800;
            margin-bottom: 24px;
            line-height: 1.2;
        }

        .cta-form {
            max-width: 500px;
            margin: 40px auto 0;
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
            justify-content: center;
        }

        .cta-input {
            flex: 1;
            min-width: 250px;
            padding: 14px 20px;
            border: 1px solid rgba(139, 92, 246, 0.3);
            background: rgba(15, 23, 42, 0.8);
            border-radius: 8px;
            color: #FFF;
            font-size: 15px;
            font-family: 'Plus Jakarta Sans', sans-serif;
        }

        .cta-input::placeholder {
            color: #6B7280;
        }

        .cta-input:focus {
            outline: none;
            border-color: rgba(139, 92, 246, 0.6);
            background: rgba(15, 23, 42, 0.95);
        }

        /* ===== PRODUCT DEMO EMBED ===== */
        .product-demo {
            padding: 80px 0;
            background: linear-gradient(180deg, rgba(15,23,42,0) 0%, rgba(30,27,75,0.3) 50%, rgba(15,23,42,0) 100%);
        }
        .demo-embed-wrapper {
            max-width: 960px;
            margin: 0 auto;
        }
        .demo-embed-frame {
            width: 100%;
            aspect-ratio: 16 / 9;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 20px 60px rgba(0,0,0,0.5), 0 0 40px rgba(124,58,237,0.1);
            border: 1px solid rgba(124,58,237,0.15);
            background: #0F172A;
        }
        .demo-embed-actions {
            display: flex;
            gap: 16px;
            justify-content: center;
            margin-top: 24px;
        }
        @media (max-width: 640px) {
            .product-demo { padding: 48px 0; }
            .demo-embed-actions { flex-direction: column; align-items: center; }
        }

        /* ===== DEMO MODAL ===== */
        .demo-modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.8);
            z-index: 2000;
            justify-content: center;
            align-items: center;
            padding: 20px;
        }

        .demo-modal.show {
            display: flex;
        }

        .demo-modal-content {
            position: relative;
            width: 100%;
            max-width: 800px;
            aspect-ratio: 16 / 9;
            background: #000;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.9);
        }

        .demo-modal-close {
            position: absolute;
            top: 16px;
            right: 16px;
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.2);
            border: none;
            color: white;
            font-size: 28px;
            border-radius: 50%;
            cursor: pointer;
            z-index: 2001;
            transition: background 0.3s ease;
        }

        .demo-modal-close:hover {
            background: rgba(255, 255, 255, 0.3);
        }

        .video-container {
            width: 100%;
            height: 100%;
        }

        .video-container iframe {
            width: 100%;
            height: 100%;
        }


        /* ===== TOAST NOTIFICATIONS ===== */
        .toast {
            position: fixed;
            top: -60px;
            left: 50%;
            transform: translateX(-50%);
            padding: 12px 24px;
            border-radius: 8px;
            font-weight: 600;
            z-index: 10000;
            transition: top 0.4s ease;
            min-width: 300px;
            text-align: center;
        }

        .toast.success {
            background: linear-gradient(135deg, #10B981, #059669);
            color: white;
        }

        .toast.error {
            background: linear-gradient(135deg, #EF4444, #DC2626);
            color: white;
        }

        .toast.show {
            top: 20px;
        }

        /* ===== BUTTON LOADING STATE ===== */
        .btn-loading {
            position: relative;
            color: transparent;
        }

        .btn-loading::after {
            content: '';
            position: absolute;
            width: 16px;
            height: 16px;
            top: 50%;
            left: 50%;
            margin-left: -8px;
            margin-top: -8px;
            border: 2px solid rgba(255, 255, 255, 0.3);
            border-radius: 50%;
            border-top-color: white;
            animation: spinner 0.6s linear infinite;
        }

        @keyframes spinner {
            to {
                transform: rotate(360deg);
            }
        }

        /* ===== TRUSTED BY SECTION ===== */
        .trusted-by-section {
            padding: 40px 0;
            text-align: center;
        }

        .trusted-by-label {
            font-size: 14px;
            color: #9CA3AF;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 24px;
            font-weight: 600;
        }

        .logo-row {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 24px;
            flex-wrap: wrap;
            overflow-x: auto;
            padding: 16px 0;
        }

        .logo-card {
            display: flex;
            align-items: center;
            justify-content: center;
            min-width: 140px;
            padding: 16px;
            background: rgba(30, 27, 75, 0.4);
            border: 1px solid rgba(139, 92, 246, 0.2);
            border-radius: 12px;
            font-size: 13px;
            color: #D1D5DB;
            font-weight: 500;
            text-align: center;
            transition: all 0.3s ease;
            white-space: nowrap;
        }

        .logo-card:hover {
            background: rgba(139, 92, 246, 0.1);
            border-color: rgba(139, 92, 246, 0.4);
        }

        @media (max-width: 768px) {
            .logo-row {
                gap: 12px;
            }
            .logo-card {
                min-width: 120px;
                padding: 12px;
                font-size: 12px;
            }
        }

        /* ===== VERIFIED BADGE ===== */
        .verified-badge {
            display: inline-flex;
            align-items: center;
            gap: 4px;
            font-size: 12px;
            color: #10B981;
            margin-left: 8px;
        }

        .verified-badge::before {
            content: '✓';
            font-weight: bold;
        }

        /* ===== FOOTER ===== */
        footer {
            background: rgba(15, 23, 42, 0.95);
            border-top: 1px solid rgba(139, 92, 246, 0.1);
            padding: 60px 0 20px;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }

        .footer-section h4 {
            font-size: 16px;
            font-weight: 700;
            margin-bottom: 16px;
            color: #FFF;
        }

        .footer-section ul {
            list-style: none;
        }

        .footer-section ul li {
            margin-bottom: 12px;
        }

        .footer-section a {
            color: #9CA3AF;
            text-decoration: none;
            font-size: 14px;
            transition: color 0.3s ease;
        }

        .footer-section a:hover {
            color: #EC4899;
        }

        .footer-social {
            display: flex;
            gap: 16px;
            margin-top: 16px;
        }

        .social-icon {
            width: 40px;
            height: 40px;
            border: 1px solid rgba(139, 92, 246, 0.3);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #D1D5DB;
            cursor: pointer;
            transition: all 0.3s ease;
            font-size: 18px;
        }

        .social-icon:hover {
            background: rgba(139, 92, 246, 0.2);
            border-color: rgba(139, 92, 246, 0.6);
            color: #EC4899;
        }

        .footer-bottom {
            border-top: 1px solid rgba(139, 92, 246, 0.1);
            padding-top: 30px;
            text-align: center;
            color: #6B7280;
            font-size: 14px;
        }

        /* ===== SCROLLBAR ===== */
        ::-webkit-scrollbar {
            width: 10px;
        }

        ::-webkit-scrollbar-track {
            background: #0F172A;
        }

        ::-webkit-scrollbar-thumb {
            background: linear-gradient(180deg, #3B82F6 0%, #EC4899 100%);
            border-radius: 5px;
        }

        ::-webkit-scrollbar-thumb:hover {
            background: linear-gradient(180deg, #8B5CF6 0%, #3B82F6 100%);
        }

        /* ===== RESPONSIVE ===== */
        @media (max-width: 640px) {
            .hero-text h1 {
                font-size: 36px;
            }

            .section-header h2 {
                font-size: 32px;
            }

            .cta-section h2 {
                font-size: 32px;
            }

            .pricing-card.featured {
                transform: scale(1);
            }

            .pricing-card:hover {
                transform: translateY(-8px);
            }

            .pricing-card.featured:hover {
                transform: translateY(-8px);
            }
        }

        /* Tablet: reset featured-card scale so it doesn't overflow grid (was causing 10px horizontal overflow on iPad portrait) */
        @media (max-width: 1024px) {
            .pricing-card.featured {
                transform: scale(1);
            }
            .pricing-card.featured:hover {
                transform: translateY(-8px);
            }

            .cta-form {
                flex-direction: column;
            }

            .cta-input {
                width: 100%;
            }
        }

        /* ===== THEME TOGGLE BUTTON ===== */
        .theme-toggle-btn {
            background: none;
            border: none;
            color: #E5E7EB;
            font-size: 1.3rem;
            cursor: pointer;
            transition: transform 0.3s ease;
            padding: 4px 8px;
            margin-right: 8px;
        }

        .theme-toggle-btn:hover {
            transform: rotate(20deg);
        }

        /* ===== LIGHT THEME OVERRIDES ===== */
        html[data-theme="light"] {
            background-color: #F5F3FF;
        }

        html[data-theme="light"] body {
            background: linear-gradient(135deg, #F5F3FF 0%, #FFFFFF 50%, #F5F3FF 100%);
            color: #1E1B4B;
        }

        html[data-theme="light"] .theme-toggle-btn {
            color: #1E1B4B;
        }

        html[data-theme="light"] .logo-section {
            color: #1E1B4B;
        }

        html[data-theme="light"] nav {
            background: rgba(245, 243, 255, 0.95);
            border-bottom: 1px solid rgba(139, 92, 246, 0.2);
        }

        html[data-theme="light"] .nav-content a,
        html[data-theme="light"] .nav-links a {
            color: #1E1B4B;
        }

        html[data-theme="light"] .nav-links a:hover {
            color: #7C3AED;
        }

        html[data-theme="light"] .hero p,
        html[data-theme="light"] .section-subtitle {
            color: #6B7280;
        }

        html[data-theme="light"] .hero h1 span:first-child {
            color: #1E1B4B;
        }

        html[data-theme="light"] .glass-card {
            background: rgba(255, 255, 255, 0.7);
            border: 1px solid rgba(139, 92, 246, 0.25);
            box-shadow: 0 4px 24px rgba(0,0,0,0.06);
        }

        .demo-btn {
            background: transparent !important;
            border: 1px solid rgba(139, 92, 246, 0.5) !important;
        }

        html[data-theme="light"] .demo-btn {
            background: transparent !important;
            border: 2px solid #7C3AED !important;
            color: #7C3AED !important;
            -webkit-text-fill-color: #7C3AED !important;
        }

        @media (max-width: 768px) {
            html[data-theme="light"] .nav-links {
                background: #FFFFFF;
                box-shadow: 0 8px 20px rgba(0,0,0,0.1);
            }
        }

        html[data-theme="light"] .stat-number,
        html[data-theme="light"] .section-title,
        html[data-theme="light"] h2,
        html[data-theme="light"] h3 {
            color: #1E1B4B;
        }

        html[data-theme="light"] .stat-label,
        html[data-theme="light"] .feature-desc,
        html[data-theme="light"] .step-desc,
        html[data-theme="light"] .faq-answer,
        html[data-theme="light"] .pricing-feature,
        html[data-theme="light"] .testimonial-text,
        html[data-theme="light"] .proof-text,
        html[data-theme="light"] .trusted-by-label,
        html[data-theme="light"] .logo-card,
        html[data-theme="light"] .step p {
            color: #4B5563;
        }

        html[data-theme="light"] .feature-card,
        html[data-theme="light"] .step-card,
        html[data-theme="light"] .testimonial-card {
            background: rgba(255, 255, 255, 0.8);
            border: 1px solid rgba(139, 92, 246, 0.2);
        }

        html[data-theme="light"] .pricing-card {
            background: rgba(255, 255, 255, 0.8);
            border: 1px solid rgba(139, 92, 246, 0.2);
        }

        html[data-theme="light"] .pricing-card.featured {
            background: rgba(255, 255, 255, 0.95);
            border: 2px solid #8B5CF6;
        }

        html[data-theme="light"] .pricing-price {
            color: #1E1B4B;
        }

        html[data-theme="light"] .faq-item {
            background: rgba(255, 255, 255, 0.6);
            border: 1px solid rgba(139, 92, 246, 0.2);
        }

        html[data-theme="light"] .faq-question {
            color: #1E1B4B;
        }

        html[data-theme="light"] .cta-section {
            background: rgba(255, 255, 255, 0.5);
        }

        html[data-theme="light"] .cta-section h2 {
            color: #1E1B4B;
        }

        html[data-theme="light"] .cta-section p {
            color: #4B5563;
        }

        html[data-theme="light"] .cta-input {
            background: rgba(245, 243, 255, 0.9);
            border: 1px solid rgba(139, 92, 246, 0.3);
            color: #1E1B4B;
        }

        html[data-theme="light"] .cta-input::placeholder {
            color: #6B7280;
        }

        html[data-theme="light"] footer {
            background: #1E1B4B;
            color: #E5E7EB;
        }

        html[data-theme="light"] footer h4 {
            color: #FFFFFF;
        }

        html[data-theme="light"] footer a {
            color: #E5E7EB;
        }

        html[data-theme="light"] .hero-visual .glass-card {
            background: rgba(255, 255, 255, 0.6);
        }

        html[data-theme="light"] .social-proof {
            background: rgba(255, 255, 255, 0.3);
            border-top-color: rgba(139, 92, 246, 0.3);
            border-bottom-color: rgba(139, 92, 246, 0.3);
        }

        html[data-theme="light"] .proof-content {
            color: #1E1B4B;
        }

        html[data-theme="light"] .how-it-works {
            background: rgba(255, 255, 255, 0.3);
            border-top-color: rgba(139, 92, 246, 0.3);
            border-bottom-color: rgba(139, 92, 246, 0.3);
        }

        html[data-theme="light"] .step h3 {
            color: #1E1B4B;
        }

        html[data-theme="light"] .logo-card {
            background: rgba(255, 255, 255, 0.6);
            border-color: rgba(139, 92, 246, 0.3);
        }

        html[data-theme="light"] .trusted-by-section {
            background: transparent;
        }

        html[data-theme="light"] .mockup-card {
            background: linear-gradient(135deg, rgba(59, 130, 246, 0.08) 0%, rgba(236, 72, 153, 0.08) 100%);
            border-color: rgba(139, 92, 246, 0.4);
        }

        html[data-theme="light"] .mockup-card > div {
            color: #6B7280;
        }

        html[data-theme="light"] .section-header h2,
        html[data-theme="light"] .section-header h3 {
            color: #1E1B4B;
        }

        html[data-theme="light"] .section-header p {
            color: #4B5563;
        }

        html[data-theme="light"] .testimonial-card {
            background: rgba(255, 255, 255, 0.85);
            border-color: rgba(139, 92, 246, 0.3);
        }

        html[data-theme="light"] .testimonial-card h4,
        html[data-theme="light"] .testimonial-card .testimonial-role {
            color: #1E1B4B;
        }

        html[data-theme="light"] .step-card {
            background: rgba(255, 255, 255, 0.85);
            border-color: rgba(139, 92, 246, 0.3);
        }

        html[data-theme="light"] .pricing-card {
            background: rgba(255, 255, 255, 0.9);
            border-color: rgba(139, 92, 246, 0.3);
        }

        html[data-theme="light"] .pricing-card.featured {
            background: #FFFFFF;
            border-color: #7C3AED;
            box-shadow: 0 10px 30px rgba(124, 58, 237, 0.15);
        }

        html[data-theme="light"] .pricing-tier,
        html[data-theme="light"] .pricing-tier h3 {
            color: #1E1B4B;
        }

        html[data-theme="light"] .pricing-price {
            color: #1E1B4B;
        }

        html[data-theme="light"] .pricing-features li {
            color: #4B5563;
        }

        html[data-theme="light"] .faq-container {
            background: transparent;
        }

        html[data-theme="light"] .faq-item {
            background: rgba(255, 255, 255, 0.7);
            border-color: rgba(139, 92, 246, 0.25);
        }

        html[data-theme="light"] .faq-item.active {
            background: rgba(255, 255, 255, 0.9);
            border-color: rgba(139, 92, 246, 0.4);
        }

        html[data-theme="light"] .faq-question {
            color: #1E1B4B;
        }

        html[data-theme="light"] .faq-answer-text {
            color: #4B5563;
        }

        html[data-theme="light"] .faq-icon {
            color: #7C3AED;
        }

        /* Cookie Consent Banner */
        .cookie-banner {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background: #1E1B4B;
            border-top: 1px solid rgba(139, 92, 246, 0.3);
            padding: 16px 24px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 16px;
            z-index: 9999;
            font-size: 14px;
            color: #E5E7EB;
            box-shadow: 0 -4px 20px rgba(0,0,0,0.3);
        }

        .cookie-banner.hidden { display: none; }

        .cookie-banner p { margin: 0; flex: 1; line-height: 1.5; }

        .cookie-banner a { color: #8B5CF6; text-decoration: underline; }

        .cookie-banner-buttons { display: flex; gap: 10px; flex-shrink: 0; }

        .cookie-btn {
            padding: 8px 20px;
            border-radius: 6px;
            border: none;
            cursor: pointer;
            font-size: 14px;
            font-weight: 600;
            font-family: inherit;
            transition: all 0.2s ease;
        }

        .cookie-btn-accept {
            background: linear-gradient(135deg, #3B82F6, #8B5CF6);
            color: white;
        }

        .cookie-btn-decline {
            background: transparent;
            border: 1px solid rgba(139, 92, 246, 0.4);
            color: #E5E7EB;
        }

        .cookie-btn:hover { transform: translateY(-1px); }

        html[data-theme="light"] .cookie-banner {
            background: #FFFFFF;
            border-top: 1px solid rgba(139, 92, 246, 0.2);
            color: #1E1B4B;
            box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
        }

        html[data-theme="light"] .cookie-btn-decline {
            color: #1E1B4B;
            border-color: rgba(139, 92, 246, 0.3);
        }

        @media (max-width: 768px) {
            .features,
            .how-it-works,
            .pricing,
            .testimonials,
            .faq {
                padding: 40px 0;
            }

            .social-proof {
                padding: 24px 0;
                margin: 40px 0;
            }

            .cookie-banner {
                flex-direction: column;
                text-align: center;
                padding: 16px;
            }
            .cookie-banner-buttons { width: 100%; justify-content: center; }
        }
