﻿        /* ========== DESIGN SYSTEM TOKENS ========== */
        :root {
            /* Brand Colors */
            --color-navy:     #1A1A3E;
            --color-electric: #4F46E5;
            --color-violet:   #7C3AED;
            --color-teal:     #0EA5E9;
            --color-gold:     #F59E0B;
            --color-green:    #10B981;
            --color-rose:     #E11D48;
            --color-ink:      #0D0D1A;
            --color-muted:    #6B7280;
            --color-bg:       #F8F8FF;
            --color-white:    #FFFFFF;

            /* Typography */
            --font-display: 'Plus Jakarta Sans', system-ui, sans-serif;
            --font-body:    'Plus Jakarta Sans', system-ui, sans-serif;

            /* Spacing */
            --space-xs: 0.5rem;
            --space-sm: 1rem;
            --space-md: 1.5rem;
            --space-lg: 2.5rem;
            --space-xl: 4rem;

            /* Radius */
            --radius-sm: 8px;
            --radius-md: 14px;
            --radius-lg: 24px;

            /* Shadows */
            --shadow-electric: 0 0 32px rgba(79,70,229,0.35);
            --shadow-card:     0 4px 24px rgba(0,0,0,0.08);
        }

        * {
            box-sizing: border-box;
        }

        body {
            font-family: var(--font-body);
            background: #050505;
            color: #ffffff;
            overflow-x: hidden;
        }

        /* ========== ANIMATED BACKGROUND ORBS ========== */
        .bg-orbs {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 0;
            overflow: hidden;
        }

        .orb {
            position: absolute;
            border-radius: 50%;
            filter: blur(80px);
            opacity: 0.5;
            animation: float 20s infinite ease-in-out;
        }

        .orb-1 {
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(168, 85, 247, 0.4) 0%, transparent 70%);
            top: -10%;
            left: -10%;
            animation-delay: 0s;
        }

        .orb-2 {
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(236, 72, 153, 0.3) 0%, transparent 70%);
            top: 50%;
            right: -15%;
            animation-delay: -7s;
        }

        .orb-3 {
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, rgba(59, 130, 246, 0.3) 0%, transparent 70%);
            bottom: -10%;
            left: 30%;
            animation-delay: -14s;
        }

        @keyframes float {

            0%,
            100% {
                transform: translate(0, 0) scale(1);
            }

            25% {
                transform: translate(50px, -30px) scale(1.1);
            }

            50% {
                transform: translate(-30px, 50px) scale(0.95);
            }

            75% {
                transform: translate(-50px, -20px) scale(1.05);
            }
        }

        @keyframes float-chat {

            0%,
            100% {
                transform: translateY(0);
                box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(168, 85, 247, 0.2);
            }

            50% {
                transform: translateY(-12px);
                box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6), 0 0 20px rgba(168, 85, 247, 0.4), 0 0 0 1px rgba(168, 85, 247, 0.5);
            }
        }

        /* ========== CUSTOM CURSOR ========== */
        .cursor-follower {
            position: fixed;
            top: 0;
            left: 0;
            width: 28px;
            height: 28px;
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(168, 85, 247, 0.5));
            border-radius: 50%;
            pointer-events: none;
            z-index: 99999;
            mix-blend-mode: difference;
            border: 2px solid rgba(255, 255, 255, 0.3);
        }

        .cursor-glow {
            position: fixed;
            top: 0;
            left: 0;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(168, 85, 247, 0.25) 0%, rgba(236, 72, 153, 0.08) 40%, transparent 70%);
            border-radius: 50%;
            pointer-events: none;
            z-index: 1;
            transform: translate(-50%, -50%);
            filter: blur(40px);
        }

        /* ========== LIQUID GLASS EFFECTS ========== */
        .liquid-glass {
            background: linear-gradient(135deg,
                    rgba(255, 255, 255, 0.1) 0%,
                    rgba(255, 255, 255, 0.05) 50%,
                    rgba(255, 255, 255, 0.02) 100%);
            backdrop-filter: blur(20px) saturate(180%);
            -webkit-backdrop-filter: blur(20px) saturate(180%);
            border: 1px solid rgba(255, 255, 255, 0.18);
            box-shadow:
                0 8px 32px rgba(0, 0, 0, 0.3),
                inset 0 1px 0 rgba(255, 255, 255, 0.1),
                inset 0 -1px 0 rgba(0, 0, 0, 0.1);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .liquid-glass:hover {
            background: linear-gradient(135deg,
                    rgba(255, 255, 255, 0.15) 0%,
                    rgba(255, 255, 255, 0.08) 50%,
                    rgba(255, 255, 255, 0.03) 100%);
            border-color: rgba(168, 85, 247, 0.3);
            box-shadow:
                0 12px 40px rgba(168, 85, 247, 0.2),
                inset 0 1px 0 rgba(255, 255, 255, 0.15),
                inset 0 -1px 0 rgba(0, 0, 0, 0.1);
            transform: translateY(-4px);
        }

        .liquid-glass-intense {
            background: rgba(10, 5, 25, 0.6);
            backdrop-filter: blur(25px) saturate(200%);
            -webkit-backdrop-filter: blur(25px) saturate(200%);
            border: 1px solid rgba(255, 255, 255, 0.1);
            box-shadow:
                0 8px 32px rgba(0, 0, 0, 0.5),
                inset 0 1px 2px rgba(255, 255, 255, 0.05);
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        }

        .liquid-glass-intense:hover {
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.6), 0 0 30px rgba(168, 85, 247, 0.4), 0 0 0 2px rgba(168, 85, 247, 0.6);
            border-color: transparent;
        }

        /* ========== TYPOGRAPHY ========== */
        .font-arabic {
            font-family: 'Reem Kufi', sans-serif;
        }

        .gradient-text {
            background: linear-gradient(135deg, #a855f7 0%, #ec4899 50%, #f472b6 100%);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            animation: shimmer 3s ease-in-out infinite;
        }

        @keyframes shimmer {

            0%,
            100% {
                filter: brightness(1);
            }

            50% {
                filter: brightness(1.2);
            }
        }

        .neon-border {
            box-shadow: 0 0 20px rgba(168, 85, 247, 0.4), 0 0 40px rgba(168, 85, 247, 0.1);
        }

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

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

        ::-webkit-scrollbar-thumb {
            background: linear-gradient(180deg, #a855f7, #ec4899);
            border-radius: 4px;
        }

        ::-webkit-scrollbar-thumb:hover {
            background: linear-gradient(180deg, #9333ea, #db2777);
        }

        /* ========== GLISSE (SHINE) EFFECT ========== */
        .glisse-effect {
            position: relative;
            overflow: hidden;
            /* Ensure shine doesn't go outside */
        }

        /* The sliding shine */
        .glisse-effect::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg,
                    transparent 0%,
                    rgba(255, 255, 255, 0.2) 50%,
                    transparent 100%);
            transform: skewX(-25deg);
            transition: none;
            /* No transition on reset */
            pointer-events: none;
            z-index: 5;
        }

        .glisse-effect:hover::before {
            left: 100%;
            transition: left 0.7s ease-in-out;
        }

        /* ========== AI TOOLS MARQUEE ANIMATION ========== */
        .marquee-container {
            overflow: hidden;
            width: 100%;
            position: relative;
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
            /* Add fade masks on left/right for smooth appearance */
            -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
            mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
        }

        .marquee-track {
            display: flex;
            gap: 1.5rem;
            width: max-content;
            animation: marquee 30s linear infinite;
        }

        .marquee-track.reverse {
            animation: marquee-reverse 35s linear infinite;
        }

        .marquee-track:hover {
            animation-play-state: paused;
        }

        @keyframes marquee {
            0% {
                transform: translateX(0);
            }

            100% {
                transform: translateX(-50%);
            }

            /* Scrolls exactly half its duplicated width */
        }

        @keyframes marquee-reverse {
            0% {
                transform: translateX(-50%);
            }

            100% {
                transform: translateX(0);
            }
        }

        /* ========== PREMIUM REVEAL ANIMATIONS ========== */
        .reveal {
            opacity: 0;
            transform: translateY(40px);
            transition: all 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
            will-change: opacity, transform;
        }

        .reveal.active {
            opacity: 1;
            transform: translateY(0);
        }

        .reveal-delay-1 {
            transition-delay: 0.1s;
        }

        .reveal-delay-2 {
            transition-delay: 0.2s;
        }

        .reveal-delay-3 {
            transition-delay: 0.3s;
        }

        /* Enhanced Hover State for Automation Level */
        .glisse-effect:hover {
            opacity: 1 !important;
            transform: translateY(-5px) scale(1.02);
            border-color: rgba(249, 115, 22, 0.6);
            /* Orange border */
            box-shadow:
                0 15px 40px rgba(249, 115, 22, 0.3),
                /* Orange glow */
                inset 0 0 20px rgba(249, 115, 22, 0.1);
        }

        /* LOOPED GLISSE FOR MINDSET SECTION */
        .glisse-loop {
            position: relative;
            overflow: hidden;
        }

        .glisse-loop::after {
            content: '';
            position: absolute;
            top: 0;
            left: -150%;
            width: 150%;
            height: 100%;
            background: linear-gradient(90deg,
                    transparent 0%,
                    rgba(168, 85, 247, 0.1) 40%,
                    rgba(255, 255, 255, 0.3) 50%,
                    rgba(168, 85, 247, 0.1) 60%,
                    transparent 100%);
            transform: skewX(-25deg);
            pointer-events: none;
            z-index: 5;
        }

        .glisse-loop:hover::after {
            animation: glisse-anim 2s infinite linear;
        }

        @keyframes glisse-anim {
            0% {
                left: -150%;
            }

            100% {
                left: 150%;
            }
        }

        /* Constant Pulse for Chat Button */
        @keyframes glow-pulse {

            0%,
            100% {
                box-shadow: 0 0 10px rgba(168, 85, 247, 0.3), inset 0 0 10px rgba(168, 85, 247, 0.1);
                border-color: rgba(168, 85, 247, 0.3);
            }

            50% {
                box-shadow: 0 0 25px rgba(168, 85, 247, 0.6), inset 0 0 15px rgba(168, 85, 247, 0.2);
                border-color: rgba(168, 85, 247, 0.6);
                transform: scale(1.03);
                /* Subtle scale up */
            }
        }

        .btn-attention {
            animation: glow-pulse 3s infinite ease-in-out;
        }

        /* ========== IMAGE COMPARISON SLIDER ========== */
        .comparison-slider {
            position: relative;
            width: 100%;
            height: 350px;
            border-radius: 1.5rem;
            overflow: hidden;
            border: 2px solid rgba(255, 255, 255, 0.15);
            box-shadow:
                0 8px 32px rgba(0, 0, 0, 0.4),
                0 0 20px rgba(168, 85, 247, 0.15);
            cursor: ew-resize;
            user-select: none;
            transition: all 0.3s ease;
        }

        .comparison-slider:hover {
            border-color: rgba(168, 85, 247, 0.4);
            box-shadow:
                0 12px 40px rgba(0, 0, 0, 0.5),
                0 0 30px rgba(168, 85, 247, 0.25);
        }

        .comparison-slider img {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .comparison-slider .img-before {
            z-index: 2;
            clip-path: polygon(0 0, 50% 0, 50% 100%, 0 100%);
        }

        .comparison-slider .img-after {
            z-index: 1;
        }

        .comparison-slider .slider-line {
            position: absolute;
            top: 0;
            bottom: 0;
            left: 50%;
            width: 3px;
            background: linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(168, 85, 247, 0.8));
            z-index: 3;
            transform: translateX(-50%);
            box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
        }

        .comparison-slider .slider-handle {
            position: absolute;
            top: 50%;
            left: 50%;
            width: 48px;
            height: 48px;
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(168, 85, 247, 0.3));
            backdrop-filter: blur(10px);
            border-radius: 50%;
            z-index: 4;
            transform: translate(-50%, -50%);
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.5);
            border: 2px solid rgba(255, 255, 255, 0.3);
        }

        .comparison-slider .label {
            position: absolute;
            top: 1rem;
            padding: 0.4rem 1rem;
            border-radius: 9999px;
            font-size: 0.65rem;
            font-weight: bold;
            z-index: 5;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            backdrop-filter: blur(10px);
        }

        .comparison-slider .label-before {
            left: 1rem;
            background: rgba(0, 0, 0, 0.7);
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        .comparison-slider .label-after {
            right: 1rem;
            background: linear-gradient(135deg, rgba(168, 85, 247, 0.8), rgba(236, 72, 153, 0.8));
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        /* ========== BUTTON EFFECTS ========== */
        .btn-liquid {
            position: relative;
            overflow: hidden;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .btn-liquid::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: left 0.5s ease;
        }

        .btn-liquid:hover::before {
            left: 100%;
        }

        /* ========== MENTOR CARDS ========== */
        .mentor-card {
            position: relative;
            overflow: hidden;
        }

        .mentor-card::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: conic-gradient(from 0deg, transparent, rgba(168, 85, 247, 0.1), transparent 30%);
            animation: rotate-glow 8s linear infinite;
            opacity: 0;
            transition: opacity 0.5s ease;
        }

        .mentor-card:hover::before {
            opacity: 1;
        }

        @keyframes rotate-glow {
            100% {
                transform: rotate(360deg);
            }
        }

        /* ========== HERO BACKGROUND ========== */
        .hero-bg-container {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            overflow: hidden;
            z-index: 0;
            pointer-events: none;
            opacity: 0.25;
            /* Subtle background that fades into black at the bottom */
            -webkit-mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 1) 60%, rgba(0, 0, 0, 0) 100%);
            mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 1) 60%, rgba(0, 0, 0, 0) 100%);
        }

        .hero-bg-container img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
            /*filter: invert(1) grayscale(1) brightness(1.2);*/
            /* Make it look like white chalk */
            mix-blend-mode: screen;
            /* Blend with dark bg */
        }

        /* ========== SCROLL TO TOP BUTTON ========== */
        .scroll-to-top {
            position: fixed;
            bottom: 5rem;
            left: 2rem;
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, rgba(168, 85, 247, 0.9), rgba(236, 72, 153, 0.9));
            border: 2px solid rgba(255, 255, 255, 0.2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            opacity: 0;
            visibility: hidden;
            transform: translateY(20px);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            z-index: 9998;
            box-shadow: 0 8px 32px rgba(168, 85, 247, 0.4);
        }

        .scroll-to-top.visible {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .scroll-to-top:hover {
            transform: translateY(-5px) scale(1.1);
            box-shadow: 0 12px 40px rgba(168, 85, 247, 0.6);
        }

        .scroll-to-top svg {
            color: white;
            width: 24px;
            height: 24px;
        }

        /* ========== FORM STYLES ========== */
        .form-input {
            width: 100%;
            padding: 1rem 1.25rem;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.15);
            border-radius: 1rem;
            color: white;
            font-size: 1rem;
            transition: all 0.3s ease;
            backdrop-filter: blur(10px);
        }

        .form-input:focus {
            outline: none;
            border-color: rgba(168, 85, 247, 0.6);
            box-shadow: 0 0 20px rgba(168, 85, 247, 0.2);
            background: rgba(255, 255, 255, 0.08);
        }

        .form-input::placeholder {
            color: rgba(255, 255, 255, 0.4);
        }

        /* Style the select dropdown options to fix the native white browser styling */
        .form-input option {
            background-color: #1a1025;
            /* Sleek dark purple to match theme */
            color: #ffffff;
            padding: 10px;
        }

        .form-label {
            display: block;
            margin-bottom: 0.5rem;
            color: rgba(255, 255, 255, 0.8);
            font-size: 0.875rem;
            font-weight: 500;
        }

        /* ========== MAP CONTAINER ========== */
        .map-container {
            border-radius: 1.5rem;
            overflow: hidden;
            border: 2px solid rgba(255, 255, 255, 0.1);
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
            position: relative;
        }

        /* Premium overlay for the map */
        .map-container::after {
            content: '';
            position: absolute;
            inset: 0;
            pointer-events: none;
            box-shadow: inset 0 0 40px rgba(0, 0, 0, 0.8);
            border-radius: 1.5rem;
            z-index: 10;
        }

        .map-container iframe {
            display: block;
            /* Turn standard map into a beautiful dark mode map matching our theme */
            filter: invert(95%) hue-rotate(180deg) sepia(20%) saturate(150%) hue-rotate(200deg);
            transition: filter 0.5s ease, transform 0.5s ease;
        }

        .map-container:hover iframe {
            filter: invert(90%) hue-rotate(180deg) sepia(10%) saturate(200%) hue-rotate(200deg);
            transform: scale(1.02);
        }

        /* ========== HERO LAYOUT (2-COLUMN) ========== */
        .hero-layout {
            display: grid;
            grid-template-columns: 1fr 420px;
            gap: 2.5rem;
            align-items: center;
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
        }

        .hero-text-col {
            text-align: left;
        }

        /* ========== CHAT INTERACTIVE STATES ========== */
        .chat-focused-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100vw;
            height: 100vh;
            background: rgba(0, 0, 0, 0.5);
            backdrop-filter: blur(8px);
            z-index: 40;
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.4s ease;
        }

        .chat-focused-overlay.active {
            opacity: 1;
            pointer-events: auto;
        }

        .chat-widget-expanded {
            transform: scale(1.05) translateY(-20px) !important;
            z-index: 50 !important;
            box-shadow: 0 30px 60px rgba(0, 0, 0, 0.8), 0 0 40px rgba(168, 85, 247, 0.6), 0 0 0 2px rgba(168, 85, 247, 0.8) !important;
            animation: none !important;
        }

        /* ========== EMBEDDED CHAT CARD ========== */
        .hero-chat-card {
            width: 100%;
            height: 520px;
            border-radius: 1.5rem;
            display: flex;
            flex-direction: column;
            overflow: hidden;
            background: rgba(10, 5, 25, 0.6);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 255, 255, 0.1);
            animation: float-chat 6s ease-in-out infinite;
            position: relative;
            z-index: 10;
            transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        }

        .hero-chat-card:hover {
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6), 0 0 30px rgba(168, 85, 247, 0.4), 0 0 0 2px rgba(168, 85, 247, 0.6);
        }

        .chat-header {
            padding: 1rem;
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        @media (max-width: 900px) {
            .hero-layout {
                grid-template-columns: 1fr;
            }

            .hero-text-col {
                text-align: center;
            }

            .hero-chat-card {
                height: 440px;
            }
        }

        .chat-messages {
            flex: 1;
            padding: 1rem;
            overflow-y: auto;
            background: rgba(0, 0, 0, 0.6);
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .chat-input-area {
            padding: 1rem;
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(10px);
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            display: flex;
            gap: 0.5rem;
        }

        .chat-bubble {
            max-width: 80%;
            padding: 0.8rem 1rem;
            border-radius: 1rem;
            font-size: 0.9rem;
            line-height: 1.6;
            unicode-bidi: plaintext;
            text-align: start;
        }

        .chat-bubble.user {
            align-self: flex-end;
            background: linear-gradient(135deg, #a855f7, #ec4899);
            color: white;
            border-bottom-right-radius: 0.2rem;
        }

        .chat-bubble.agent {
            align-self: flex-start;
            background: rgba(255, 255, 255, 0.1);
            color: #e5e7eb;
            border-bottom-left-radius: 0.2rem;
            border: 1px solid rgba(255, 255, 255, 0.1);
            direction: auto;
            unicode-bidi: plaintext;
        }

        .typing-indicator {
            display: flex;
            gap: 4px;
            padding: 0.8rem 1rem;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 1rem;
            align-self: flex-start;
            border-bottom-left-radius: 0.2rem;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .typing-dot {
            width: 6px;
            height: 6px;
            background: rgba(255, 255, 255, 0.5);
            border-radius: 50%;
            animation: bounce 1.4s infinite ease-in-out;
        }

        .typing-dot:nth-child(1) {
            animation-delay: -0.32s;
        }

        .typing-dot:nth-child(2) {
            animation-delay: -0.16s;
        }

        @keyframes bounce {

            0%,
            80%,
            100% {
                transform: scale(0);
            }

            40% {
                transform: scale(1);
            }
        }

        /* ========== RESPONSIVE IMPROVEMENTS ========== */
        @media (max-width: 768px) {

            .comparison-slider {
                height: 280px;
            }

            .scroll-to-top {
                bottom: 6rem;
                left: auto;
                right: 1.5rem;
                width: 44px;
                height: 44px;
            }

            .hero-chat-card {
                height: 400px;
            }
        }

        @media (max-width: 640px) {

            h1 {
                font-size: 2.5rem !important;
            }

            h2 {
                font-size: 1.75rem !important;
            }
        }

        /* Mobile menu animation */
        .animate-slide-down {
            animation: slideDown 0.25s ease-out;
        }

        @keyframes slideDown {
            from {
                opacity: 0;
                transform: translateY(-8px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Sticky Navbar */
        html {
            scroll-behavior: smooth;
        }

        #mainNav {
            background: transparent;
        }

        #mainNav.nav-scrolled {
            background: linear-gradient(135deg, rgba(10, 5, 20, 0.82), rgba(15, 8, 30, 0.78));
            backdrop-filter: blur(24px) saturate(1.4);
            -webkit-backdrop-filter: blur(24px) saturate(1.4);
            border-top: 1px solid rgba(168, 85, 247, 0.15);
            border-bottom: 1px solid rgba(255, 255, 255, 0.08);
            box-shadow:
                0 4px 30px rgba(0, 0, 0, 0.5),
                0 1px 0 rgba(168, 85, 247, 0.1) inset,
                0 -1px 0 rgba(255, 255, 255, 0.03) inset;
            padding-top: 0.5rem;
            padding-bottom: 0.5rem;
        }

        .nav-link.active,
        .mobile-nav-link.active {
            color: #c084fc !important;
            background: rgba(168, 85, 247, 0.1) !important;
        }

        /* ========== TRACE & CRÉE TOOL ========== */
        /* Fullscreen Modal */
        .trace-modal {
            position: fixed; inset: 0; z-index: 10000;
            background: rgba(0,0,0,0.95);
            display: none; flex-direction: column;
            overflow: hidden;
        }
        .trace-modal.open {
            display: flex;
        }
        .trace-modal-header {
            display: flex; align-items: center; justify-content: space-between;
            padding: 0.75rem 1rem; background: rgba(10,5,25,0.9);
            backdrop-filter: blur(20px); border-bottom: 1px solid rgba(255,255,255,0.1);
            z-index: 10; flex-shrink: 0;
        }
        .trace-modal-header h3 {
            font-size: 1rem; font-weight: 700; color: white;
            display: flex; align-items: center; gap: 0.5rem;
        }
        .trace-close-btn {
            width: 40px; height: 40px; border-radius: 50%;
            background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2);
            color: white; font-size: 1.4rem; cursor: pointer;
            display: flex; align-items: center; justify-content: center;
            transition: all 0.3s ease;
        }
        .trace-close-btn:hover {
            background: rgba(236,72,153,0.6); transform: scale(1.1);
        }
        .trace-modal-body {
            flex: 1; display: flex; flex-direction: column;
            align-items: center; overflow-y: auto;
            padding: 0.5rem;
        }
        .trace-tool-container {
            position: relative;
            width: 100%; max-width: 600px;
            flex: 1; min-height: 0;
            border-radius: 1rem;
            overflow: hidden;
            background: #000;
            border: 2px solid rgba(255,255,255,0.15);
        }
        .trace-tool-container video {
            width: 100%; height: 100%; object-fit: cover;
            display: block;
        }
        .trace-overlay-img {
            position: absolute;
            top: 50%; left: 50%;
            pointer-events: none;
            transition: opacity 0.3s ease;
            object-fit: contain;
            z-index: 3;
        }
        .trace-grid-overlay {
            position: absolute; inset: 0;
            width: 100%; height: 100%;
            pointer-events: none; z-index: 5;
        }
        .trace-grid-overlay line { stroke: rgba(255,255,255,0.15); stroke-width: 1; }
        .trace-grid-overlay rect { fill: none; stroke: rgba(168,85,247,0.4); stroke-width: 2; }
        .trace-modal-bottom {
            flex-shrink: 0; width: 100%; max-width: 600px;
            padding: 0.5rem 0;
        }
        .trace-controls {
            display: flex; flex-direction: column; gap: 0.5rem;
            padding: 0.75rem; background: rgba(10,5,25,0.8);
            backdrop-filter: blur(20px); border-radius: 1rem;
            border: 1px solid rgba(255,255,255,0.1);
        }
        .trace-slider-row {
            display: flex; align-items: center; gap: 0.75rem;
        }
        .trace-slider-row label {
            font-size: 0.75rem; color: rgba(255,255,255,0.7);
            min-width: 80px; text-align: right;
        }
        .trace-slider-row input[type="range"] {
            flex: 1; accent-color: #a855f7; height: 6px;
        }
        .trace-slider-row .trace-val {
            font-size: 0.7rem; color: #a855f7; min-width: 36px;
            text-align: center; font-weight: 600;
        }
        .trace-gallery {
            display: flex; gap: 0.75rem; overflow-x: auto;
            padding: 0.5rem 0; scrollbar-width: none;
            justify-content: center;
        }
        .trace-gallery::-webkit-scrollbar { display: none; }
        .trace-gallery-item {
            flex-shrink: 0; width: 72px; height: 72px;
            border-radius: 1rem; border: 2px solid rgba(255,255,255,0.1);
            background: rgba(255,255,255,0.05); cursor: pointer;
            display: flex; flex-direction: column; align-items: center;
            justify-content: center; gap: 2px;
            transition: all 0.3s ease; padding: 4px;
            overflow: hidden;
        }
        .trace-gallery-item:hover,
        .trace-gallery-item.active {
            border-color: #a855f7;
            box-shadow: 0 0 15px rgba(168,85,247,0.4);
            transform: translateY(-2px);
        }
        .trace-gallery-item img {
            width: 44px; height: 44px; object-fit: cover;
            border-radius: 0.5rem;
        }
        .trace-gallery-item span {
            font-size: 0.55rem; color: rgba(255,255,255,0.7);
            text-align: center; line-height: 1.1;
        }
        .trace-btn {
            padding: 0.6rem 1.2rem; border-radius: 0.75rem;
            font-size: 0.8rem; font-weight: 600; border: none;
            cursor: pointer; transition: all 0.3s ease;
            display: inline-flex; align-items: center; gap: 0.4rem;
        }
        .trace-btn-primary {
            background: linear-gradient(135deg, #a855f7, #ec4899);
            color: white;
        }
        .trace-btn-primary:hover { transform: scale(1.05); box-shadow: 0 0 20px rgba(168,85,247,0.5); }
        .trace-btn-secondary {
            background: rgba(255,255,255,0.1); color: white;
            border: 1px solid rgba(255,255,255,0.2);
        }
        .trace-btn-secondary:hover { background: rgba(255,255,255,0.2); }
        .trace-btn-secondary.active {
            background: rgba(168,85,247,0.3); border-color: #a855f7;
        }
        .trace-splash {
            text-align: center; padding: 2rem;
        }
        .trace-splash-steps {
            display: grid; grid-template-columns: repeat(4, 1fr);
            gap: 1rem; margin: 2rem 0;
        }
        /* Gallery preview in splash */
        .trace-preview-gallery {
            display: flex; gap: 1rem; justify-content: center;
            flex-wrap: wrap; margin: 1.5rem 0;
        }
        .trace-preview-item {
            width: 100px; height: 100px; border-radius: 1.25rem;
            overflow: hidden; border: 2px solid rgba(255,255,255,0.1);
            background: rgba(255,255,255,0.05);
            transition: all 0.3s ease; position: relative;
        }
        .trace-preview-item:hover {
            border-color: #a855f7;
            box-shadow: 0 0 20px rgba(168,85,247,0.4);
            transform: scale(1.08);
        }
        .trace-preview-item img {
            width: 100%; height: 100%; object-fit: cover;
        }
        .trace-preview-item .trace-preview-label {
            position: absolute; bottom: 0; left: 0; right: 0;
            padding: 2px 4px; font-size: 0.55rem; font-weight: 600;
            text-align: center; color: white;
            background: linear-gradient(transparent, rgba(0,0,0,0.8));
        }
        @media (max-width: 640px) {
            .trace-splash-steps { grid-template-columns: repeat(2, 1fr); }
            .trace-preview-item { width: 80px; height: 80px; }
        }
        .trace-splash-step {
            display: flex; flex-direction: column; align-items: center;
            gap: 0.5rem; padding: 1rem; border-radius: 1rem;
            background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08);
        }
        .trace-splash-step .step-icon {
            width: 48px; height: 48px; border-radius: 50%;
            display: flex; align-items: center; justify-content: center;
            font-size: 1.5rem;
        }
        .trace-splash-step .step-text {
            font-size: 0.75rem; color: rgba(255,255,255,0.7);
            line-height: 1.3;
        }
        .trace-flash {
            position: absolute; inset: 0; background: white;
            opacity: 0; pointer-events: none; z-index: 20;
            transition: opacity 0.1s;
        }
        .trace-lang-toggle {
            display: inline-flex; border-radius: 9999px; overflow: hidden;
            border: 1px solid rgba(255,255,255,0.2);
        }
        .trace-lang-toggle button {
            padding: 0.4rem 1rem; font-size: 0.75rem; font-weight: 600;
            border: none; cursor: pointer; transition: all 0.3s;
            background: transparent; color: rgba(255,255,255,0.5);
        }
        .trace-lang-toggle button.active {
            background: linear-gradient(135deg, #a855f7, #ec4899);
            color: white;
        }
        /* Zoom lightbox for preview gallery */
        .trace-zoom-overlay {
            position: fixed; inset: 0; z-index: 10001;
            background: rgba(0,0,0,0.85);
            display: flex; align-items: center; justify-content: center;
            cursor: pointer; opacity: 0;
            transition: opacity 0.25s ease;
            backdrop-filter: blur(12px);
        }
        .trace-zoom-overlay.visible { opacity: 1; }
        .trace-zoom-overlay img {
            max-width: 85vw; max-height: 80vh;
            object-fit: contain; border-radius: 1.5rem;
            box-shadow: 0 0 40px rgba(168,85,247,0.5);
            border: 2px solid rgba(255,255,255,0.15);
            transform: scale(0.85); transition: transform 0.3s ease;
        }
        .trace-zoom-overlay.visible img { transform: scale(1); }
        .trace-zoom-overlay .trace-zoom-label {
            position: absolute; bottom: 2rem;
            background: rgba(10,5,25,0.8); backdrop-filter: blur(10px);
            padding: 0.5rem 1.5rem; border-radius: 9999px;
            color: white; font-size: 0.85rem; font-weight: 600;
            border: 1px solid rgba(255,255,255,0.15);
        }
        /* Conversion CTA inside modal */
        .trace-conversion-modal {
            text-align: center; padding: 0.75rem;
            background: rgba(168,85,247,0.08);
            border-radius: 1rem; margin-top: 0.5rem;
            border: 1px solid rgba(168,85,247,0.15);
        }
        .trace-conversion-modal p {
            font-size: 0.8rem; color: rgba(255,255,255,0.7);
            margin-bottom: 0.5rem;
        }
        /* Download / capture button highlight */
        .trace-btn-capture {
            background: linear-gradient(135deg, #10b981, #06b6d4) !important;
            color: white !important; border: none !important;
            animation: tracePulseCapture 2s infinite;
        }
        .trace-btn-capture:hover {
            transform: scale(1.08) !important;
            box-shadow: 0 0 25px rgba(16,185,129,0.5) !important;
        }
        @keyframes tracePulseCapture {
            0%, 100% { box-shadow: 0 0 0 0 rgba(16,185,129,0.4); }
            50% { box-shadow: 0 0 12px 4px rgba(16,185,129,0.25); }
        }
        /* Camera zoom toggle */
        .trace-tool-container.zoomed {
            max-width: 100% !important;
            width: 100% !important;
            height: 100% !important;
            border-radius: 0 !important;
            border: none !important;
        }
        .trace-tool-container.zoomed ~ .trace-modal-bottom {
            display: none !important;
        }
        .trace-zoom-toggle {
            position: absolute; top: 12px; right: 12px; z-index: 15;
            padding: 0.45rem 1rem; border-radius: 9999px;
            background: rgba(0,0,0,0.65); border: 1px solid rgba(168,85,247,0.4);
            color: white; font-size: 0.8rem; font-weight: 600; cursor: pointer;
            display: flex; align-items: center; gap: 0.4rem;
            transition: all 0.3s ease; backdrop-filter: blur(8px);
            animation: traceZoomPulse 2.5s infinite;
        }
        .trace-zoom-toggle:hover {
            background: rgba(168,85,247,0.6); transform: scale(1.05);
        }
        @keyframes traceZoomPulse {
            0%, 100% { box-shadow: 0 0 0 0 rgba(168,85,247,0.4); }
            50% { box-shadow: 0 0 16px 5px rgba(168,85,247,0.25); border-color: rgba(168,85,247,0.7); }
        }
        /* Reconfig button in fullscreen */
        .trace-reconfig-btn {
            position: absolute; bottom: 20px; right: 20px; z-index: 15;
            padding: 0.5rem 1.2rem; border-radius: 9999px;
            background: rgba(168,85,247,0.7); border: 1px solid rgba(255,255,255,0.25);
            color: white; font-size: 0.8rem; font-weight: 600; cursor: pointer;
            display: none; align-items: center; gap: 0.4rem;
            backdrop-filter: blur(8px); transition: all 0.3s ease;
            animation: traceZoomPulse 2.5s infinite;
        }
        .trace-reconfig-btn:hover {
            background: rgba(168,85,247,0.9); transform: scale(1.05);
        }
        .trace-tool-container.zoomed .trace-reconfig-btn {
            display: flex;
        }
        .trace-tool-container.zoomed .trace-zoom-toggle {
            animation: none;
        }
        /* Name prompt dialog */
        .trace-name-dialog {
            position: fixed; inset: 0; z-index: 10003;
            background: rgba(0,0,0,0.85);
            display: none; align-items: center; justify-content: center;
            padding: 1rem; backdrop-filter: blur(12px);
        }
        .trace-name-dialog.visible { display: flex; }
        .trace-name-dialog-box {
            background: linear-gradient(135deg, #1a0a2e, #0d041e);
            border: 1px solid rgba(168,85,247,0.3);
            border-radius: 1.5rem; padding: 2rem;
            max-width: 420px; width: 100%; text-align: center;
            box-shadow: 0 0 60px rgba(168,85,247,0.2);
        }
        .trace-name-dialog-box h4 {
            font-size: 1.3rem; font-weight: 700; color: white; margin-bottom: 0.5rem;
        }
        .trace-name-dialog-box p {
            font-size: 0.85rem; color: rgba(255,255,255,0.6); margin-bottom: 1.2rem;
        }
        .trace-name-input {
            width: 100%; padding: 0.75rem 1rem; border-radius: 0.75rem;
            background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15);
            color: white; font-size: 1rem; text-align: center;
            outline: none; margin-bottom: 1rem;
            transition: border-color 0.3s;
        }
        .trace-name-input::placeholder { color: rgba(255,255,255,0.3); }
        .trace-name-input:focus { border-color: #a855f7; }
        .trace-name-btns {
            display: flex; gap: 0.75rem; justify-content: center;
        }
        /* Certificate preview overlay */
        .trace-cert-overlay {
            position: fixed; inset: 0; z-index: 10002;
            background: rgba(0,0,0,0.9);
            display: none; flex-direction: column;
            align-items: center; justify-content: center;
            gap: 1rem; padding: 1rem;
            backdrop-filter: blur(12px);
        }
        .trace-cert-overlay.visible { display: flex; }
        .trace-cert-overlay canvas {
            max-width: 92vw; max-height: 70vh;
            border-radius: 1rem;
            box-shadow: 0 0 40px rgba(168,85,247,0.4);
        }
        .trace-cert-actions {
            display: flex; gap: 0.75rem; flex-wrap: wrap; justify-content: center;
        }
        .trace-btn-share {
            background: linear-gradient(135deg, #6366f1, #8b5cf6) !important;
            color: white !important; border: none !important;
        }
        .trace-btn-share:hover {
            transform: scale(1.08) !important;
            box-shadow: 0 0 25px rgba(99,102,241,0.5) !important;
        }

        /* ========== TRUST STRIP ========== */
        .trust-strip {
            background: var(--color-navy);
            padding: 0.75rem 0;
            overflow: hidden;
            -webkit-mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
            mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
        }
        .trust-strip__inner {
            display: flex;
            gap: 2.5rem;
            align-items: center;
            justify-content: center;
            flex-wrap: wrap;
        }
        .trust-item {
            display: flex;
            align-items: center;
            gap: 0.4rem;
            font-size: 0.8rem;
            color: rgba(255,255,255,0.7);
            white-space: nowrap;
        }
        .trust-icon { font-size: 1rem; }

        /* ========== TOOLS GRID ========== */
        .tools-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
            gap: 1rem;
            padding: var(--space-md) 0;
        }
        .tool-card {
            background: rgba(168,85,247,0.06);
            border: 1.5px solid rgba(168,85,247,0.15);
            border-radius: var(--radius-md);
            padding: 1rem 0.75rem;
            text-align: center;
            transition: all 0.2s ease;
        }
        .tool-card:hover {
            border-color: #a855f7;
            background: rgba(168,85,247,0.12);
            transform: translateY(-2px);
            box-shadow: 0 0 32px rgba(168,85,247,0.35);
        }
        .tool-card__icon { font-size: 2rem; display: block; margin-bottom: 0.4rem; }
        .tool-card__name { font-size: 0.8rem; font-weight: 700; color: var(--color-white); }
        .tool-card__level {
            display: inline-block;
            font-size: 0.65rem;
            background: #a855f7;
            color: white;
            border-radius: 20px;
            padding: 1px 8px;
            margin-top: 0.3rem;
            font-weight: 600;
        }

        /* ========== INSTRUCTOR CREDENTIALS ========== */
        .instructor-credentials {
            list-style: none;
            padding: 0;
            margin: 0.75rem 0 0;
            text-align: left;
        }
        .instructor-credentials li {
            font-size: 0.8rem;
            color: var(--color-muted);
            padding: 0.2rem 0;
            line-height: 1.4;
        }

        /* ========== TESTIMONIAL CARDS ========== */
        .testimonial-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
            gap: 1.25rem;
            margin-top: var(--space-md);
        }
        .testimonial-card {
            background: rgba(255,255,255,0.05);
            border: 1.5px solid rgba(168,85,247,0.12);
            border-radius: var(--radius-md);
            padding: var(--space-md);
            position: relative;
            box-shadow: var(--shadow-card);
        }
        .testimonial-card::before {
            content: '\201C';
            position: absolute;
            top: -0.5rem;
            left: 1rem;
            font-size: 3rem;
            color: #a855f7;
            opacity: 0.3;
            font-family: Georgia, serif;
            line-height: 1;
        }
        .testimonial-text { font-size: 0.9rem; color: rgba(255,255,255,0.85); line-height: 1.7; font-style: italic; }
        .testimonial-author { margin-top: 0.75rem; font-size: 0.8rem; font-weight: 700; color: #a855f7; }

        /* ========== FREE TOOL PROMO SECTION ========== */
        .free-tool-promo {
            background: linear-gradient(135deg, var(--color-navy) 0%, #0f1535 100%);
            color: white;
            padding: var(--space-xl) var(--space-md);
            text-align: center;
            border-radius: var(--radius-lg);
            margin: var(--space-lg) 0;
            position: relative;
            overflow: hidden;
        }
        .free-tool-promo::before {
            content: '';
            position: absolute;
            inset: 0;
            background: radial-gradient(circle at 70% 50%, rgba(168,85,247,0.2), transparent 60%);
        }
        .free-tool-promo__badge {
            display: inline-block;
            background: var(--color-green);
            color: white;
            font-size: 0.7rem;
            font-weight: 800;
            letter-spacing: 2px;
            padding: 4px 14px;
            border-radius: 20px;
            margin-bottom: 1rem;
        }
        .free-tool-steps {
            display: flex;
            gap: 1rem;
            justify-content: center;
            flex-wrap: wrap;
            margin: 1.5rem 0;
        }
        .free-tool-steps .step {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 0.4rem;
            font-size: 0.8rem;
            color: rgba(255,255,255,0.7);
            background: rgba(255,255,255,0.06);
            border: 1px solid rgba(255,255,255,0.1);
            border-radius: var(--radius-sm);
            padding: 0.75rem 1rem;
            min-width: 80px;
        }
        .free-tool-steps .step span { font-size: 1.5rem; }
        .free-tool-note { font-size: 0.75rem; color: rgba(255,255,255,0.45); margin-top: 1rem; }

        /* ========== FORM PROGRESS ========== */
        .form-progress {
            height: 4px;
            background: rgba(168,85,247,0.15);
            border-radius: 4px;
            margin-bottom: 1.25rem;
            overflow: hidden;
        }
        .form-progress__bar {
            height: 100%;
            background: linear-gradient(90deg, #a855f7, #7c3aed);
            border-radius: 4px;
            transition: width 0.4s ease;
        }
        .form-meta { font-size: 0.75rem; color: var(--color-muted); text-align: center; margin-bottom: 1.25rem; }

        /* ========== FAQ STYLES ========== */
        .faq-list { display: flex; flex-direction: column; gap: 0.75rem; margin-top: var(--space-md); }
        .faq-item {
            background: rgba(255,255,255,0.05);
            border: 1.5px solid rgba(168,85,247,0.12);
            border-radius: var(--radius-md);
            overflow: hidden;
            box-shadow: var(--shadow-card);
        }
        .faq-item summary {
            padding: 1rem 1.25rem;
            font-weight: 700;
            font-size: 0.9rem;
            cursor: pointer;
            list-style: none;
            display: flex;
            justify-content: space-between;
            align-items: center;
            color: var(--color-white);
        }
        .faq-item summary::after { content: '+'; font-size: 1.2rem; color: #a855f7; }
        .faq-item[open] summary::after { content: '\2212'; }
        .faq-item p { padding: 0 1.25rem 1rem; font-size: 0.875rem; color: var(--color-muted); line-height: 1.6; }

        /* ========== NAV BADGE ========== */
        .nav-link--tool { position: relative; display: inline-flex; align-items: center; gap: 4px; }
        .nav-badge {
            background: #10B981;
            color: white;
            font-size: 0.45rem;
            font-weight: 800;
            padding: 1px 4px;
            border-radius: 3px;
            vertical-align: middle;
            letter-spacing: 0.3px;
            line-height: 1.2;
        }

        /* ========== COMING SOON CARDS ========== */
        .workshop-card--coming-soon { opacity: 0.4; filter: grayscale(0.8); }

        /* ========== STICKY MOBILE CTA ========== */
        .sticky-cta {
            display: none;
            position: fixed;
            bottom: 0; left: 0; right: 0;
            background: var(--color-navy, #1A1A3E);
            border-top: 2px solid var(--color-electric, #4F46E5);
            padding: 0.75rem 1rem;
            z-index: 1000;
            align-items: center;
            justify-content: space-between;
            gap: 0.75rem;
        }
        .sticky-cta__text { font-size: 0.8rem; color: rgba(255,255,255,0.7); }
        .sticky-cta__btn {
            background: linear-gradient(135deg, #a855f7, #7c3aed);
            color: white;
            border: none;
            border-radius: 10px;
            padding: 0.6rem 1.25rem;
            font-weight: 700;
            font-size: 0.85rem;
            cursor: pointer;
            white-space: nowrap;
            box-shadow: 0 0 32px rgba(168,85,247,0.35);
            text-decoration: none;
        }
        @media (max-width: 768px) {
            .sticky-cta { display: flex; }
            body { padding-bottom: 70px; }
        }

        /* ========== WAITLIST INLINE FORM ========== */
        .waitlist-inline-form {
            display: none;
            margin-top: 0.75rem;
            padding: 0.75rem;
            background: rgba(168,85,247,0.1);
            border: 1px solid rgba(168,85,247,0.2);
            border-radius: 12px;
        }
        .waitlist-inline-form.show { display: block; }
        .waitlist-inline-form p {
            font-size: 0.8rem;
            color: rgba(255,255,255,0.7);
            margin-bottom: 0.5rem;
        }
        .waitlist-inline-form input[type="email"] {
            width: 100%;
            padding: 0.5rem 0.75rem;
            border-radius: 8px;
            border: 1px solid rgba(168,85,247,0.3);
            background: rgba(255,255,255,0.05);
            color: white;
            font-size: 0.85rem;
            margin-bottom: 0.5rem;
        }
        .waitlist-inline-form button {
            width: 100%;
            padding: 0.5rem;
            border-radius: 8px;
            border: none;
            background: #a855f7;
            color: white;
            font-weight: 700;
            font-size: 0.8rem;
            cursor: pointer;
        }
        /* ========== WHATSAPP COUPON POPUP ========== */
        .wa-popup-overlay {
            position: fixed;
            inset: 0;
            background: rgba(0, 0, 0, 0.6);
            backdrop-filter: blur(8px);
            -webkit-backdrop-filter: blur(8px);
            z-index: 10000;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 1rem;
            opacity: 0;
            visibility: hidden;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }
        .wa-popup-overlay.active {
            opacity: 1;
            visibility: visible;
        }
        .wa-popup {
            background: linear-gradient(145deg, rgba(20, 10, 40, 0.98), rgba(10, 5, 25, 0.98));
            border: 1px solid rgba(168, 85, 247, 0.3);
            border-radius: 2rem;
            padding: 2.5rem 2rem;
            max-width: 420px;
            width: 100%;
            text-align: center;
            position: relative;
            box-shadow: 0 25px 80px rgba(168, 85, 247, 0.25), 0 0 60px rgba(37, 211, 102, 0.1);
            transform: scale(0.85) translateY(20px);
            transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
        }
        .wa-popup-overlay.active .wa-popup {
            transform: scale(1) translateY(0);
        }
        .wa-popup__close {
            position: absolute;
            top: 1rem;
            right: 1rem;
            background: rgba(255,255,255,0.1);
            border: none;
            color: #9ca3af;
            width: 32px;
            height: 32px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            font-size: 1rem;
            transition: all 0.3s;
        }
        .wa-popup__close:hover {
            background: rgba(255,255,255,0.2);
            color: white;
        }
        .wa-popup__badge {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            background: rgba(37, 211, 102, 0.15);
            border: 1px solid rgba(37, 211, 102, 0.3);
            color: #25D366;
            font-size: 0.75rem;
            font-weight: 700;
            padding: 4px 14px;
            border-radius: 20px;
            margin-bottom: 1rem;
            letter-spacing: 1px;
        }
        .wa-popup__icon {
            width: 64px;
            height: 64px;
            margin: 0 auto 1rem;
            background: linear-gradient(135deg, #25D366, #128C7E);
            border-radius: 1rem;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4);
        }
        .wa-popup__title {
            font-size: 1.5rem;
            font-weight: 800;
            color: white;
            margin-bottom: 0.5rem;
        }
        .wa-popup__coupon {
            display: inline-block;
            background: linear-gradient(135deg, rgba(37, 211, 102, 0.15), rgba(16, 185, 129, 0.1));
            border: 2px dashed rgba(37, 211, 102, 0.5);
            border-radius: 12px;
            padding: 0.75rem 1.5rem;
            margin: 1rem 0;
            font-family: 'Courier New', monospace;
            font-size: 1.4rem;
            font-weight: 800;
            color: #25D366;
            letter-spacing: 4px;
        }
        .wa-popup__text {
            color: #9ca3af;
            font-size: 0.875rem;
            line-height: 1.6;
            margin-bottom: 1.25rem;
        }
        .wa-popup__cta {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            width: 100%;
            padding: 1rem;
            background: linear-gradient(135deg, #25D366, #128C7E);
            color: white;
            font-weight: 800;
            font-size: 1rem;
            border: none;
            border-radius: 1rem;
            cursor: pointer;
            text-decoration: none;
            transition: all 0.3s;
            box-shadow: 0 8px 30px rgba(37, 211, 102, 0.3);
        }
        .wa-popup__cta:hover {
            transform: translateY(-2px) scale(1.02);
            box-shadow: 0 12px 40px rgba(37, 211, 102, 0.5);
        }
        .wa-popup__cta svg {
            width: 22px;
            height: 22px;
            fill: white;
        }
        .wa-popup__skip {
            background: none;
            border: none;
            color: #6b7280;
            font-size: 0.75rem;
            cursor: pointer;
            margin-top: 0.75rem;
            transition: color 0.3s;
        }
        .wa-popup__skip:hover { color: #9ca3af; }
        @media (max-width: 640px) {
            .wa-popup {
                padding: 2rem 1.5rem;
                border-radius: 1.5rem;
            }
            .wa-popup__title { font-size: 1.25rem; }
            .wa-popup__coupon { font-size: 1.2rem; letter-spacing: 3px; padding: 0.6rem 1rem; }
            .wa-popup__icon { width: 52px; height: 52px; font-size: 1.5rem; }
        }
