/* --- Page-specific overrides --- */
        html,
        body {
            background: #020408 !important;
            min-height: 100vh;
            /* Ensure NO scrollbars during splash */
            overflow: auto !important;
        }

        /* Allow scrolling ONLY after splash is done */
        html.splash-done,
        body.splash-done {
            overflow: auto !important;
            overflow-x: hidden !important;
            /* Prevent horizontal scroll always */
        }

        /* --- Ambient White Edge Glow (Scroll Animated) --- */
        .page-content::before {
            content: '';
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 0;
            opacity: var(--glow-intensity, 0.15);
            transition: opacity 0.6s ease;
            background:
                linear-gradient(to bottom, rgba(255, 255, 255, 0.50) 0%, transparent 5%),
                linear-gradient(to top, rgba(255, 255, 255, 0.50) 0%, transparent 5%),
                linear-gradient(to right, rgba(255, 255, 255, 0.50) 0%, transparent 5%),
                linear-gradient(to left, rgba(255, 255, 255, 0.50) 0%, transparent 5%);
        }

        /* Content fades in after splash */
        .page-content {
            opacity: 1;
            background: #020408;
            min-height: 100vh;
        }

        .page-content.visible {
            opacity: 1;
        }

        .splash-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: #020408;
            z-index: 9999;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: opacity 1s ease;
        }

        .splash-overlay.fade-out {
            opacity: 0;
            pointer-events: none;
        }

        .splash-overlay img {
            width: 150px;
            animation: pulse-logo 2s infinite;
        }

        @keyframes pulse-logo {
            0% {
                transform: scale(1);
                opacity: 0.8;
            }

            50% {
                transform: scale(1.1);
                opacity: 1;
            }

            100% {
                transform: scale(1);
                opacity: 0.8;
            }
        }

        body {
            background: #020408;
            margin: 0;
            padding: 0;
            min-height: 100vh;
            display: block;
            overflow-x: hidden;
            opacity: 1;
            color: #F0F4F8;
            font-family: 'Inter', 'Outfit', sans-serif;
        }



        .social-page {
            width: 100%;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            padding: 60px 20px;
            /* animation: page-enter 1.5s cubic-bezier(0.4, 0, 0.2, 1) forwards; REMOVED */
        }



        .social-logo {
            width: 120px;
            height: 120px;
            object-fit: contain;
            margin-bottom: 24px;
            filter: drop-shadow(0 0 30px rgba(168, 85, 247, 0.2));
        }

        .social-title {
            font-family: 'Outfit', sans-serif;
            font-size: 3.5rem;
            font-weight: 700;
            color: #F0F4F8;
            text-transform: uppercase;
            letter-spacing: 12px;
            margin: 0;
            text-align: center;
        }

        .social-subtitle {
            font-family: 'Outfit', sans-serif;
            font-size: 1.4rem;
            font-weight: 400;
            color: #94A3B8;
            text-transform: uppercase;
            letter-spacing: 8px;
            margin-top: 8px;
            text-align: center;
        }

        .social-divider {
            width: 60px;
            height: 1px;
            background: linear-gradient(90deg, transparent, rgba(168, 85, 247, 0.6), transparent);
            margin: 40px 0;
        }

        .social-description {
            font-family: 'Inter', sans-serif;
            font-size: 1.1rem;
            font-weight: 300;
            color: #94A3B8;
            text-align: center;
            max-width: 600px;
            line-height: 1.8;
            margin: 0;
        }

        .social-features {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
            margin-top: 50px;
            max-width: 900px;
            width: 100%;
        }

        .social-feature {
            background: rgba(10, 15, 24, 0.6);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border: 1px solid rgba(240, 244, 248, 0.08);
            border-radius: 12px;
            padding: 32px 24px;
            text-align: center;
            transition: all 0.4s ease;
            box-shadow: inset 0 1px 0 0 rgba(255, 255, 255, 0.05);
        }

        .social-feature:hover {
            background: rgba(21, 27, 38, 0.8);
            border-color: rgba(139, 92, 246, 0.3);
            transform: translateY(-4px);
            box-shadow: inset 0 1px 0 0 rgba(255, 255, 255, 0.05), 0 0 20px -5px rgba(139, 92, 246, 0.3);
        }

        .social-feature i {
            font-size: 2rem;
            color: rgba(168, 85, 247, 0.8);
            margin-bottom: 16px;
        }

        .social-feature h3 {
            font-family: 'Outfit', sans-serif;
            font-size: 1rem;
            font-weight: 600;
            color: #F0F4F8;
            margin: 0 0 8px 0;
        }

        .social-feature p {
            font-family: 'Inter', sans-serif;
            font-size: 0.85rem;
            font-weight: 300;
            color: #94A3B8;
            margin: 0;
            line-height: 1.5;
        }

        .social-badge {
            display: inline-block;
            margin-top: 50px;
            padding: 10px 28px;
            border: 1px solid rgba(139, 92, 246, 0.3);
            border-radius: 4px;
            font-family: 'Inter', sans-serif;
            font-size: 0.75rem;
            font-weight: 700;
            color: rgba(139, 92, 246, 0.9);
            letter-spacing: 0.1em;
            text-transform: uppercase;
            background: rgba(139, 92, 246, 0.05);
        }

        .social-back {
            margin-top: 40px;
            font-family: 'Inter', sans-serif;
            font-size: 0.85rem;
            color: rgba(255, 255, 255, 0.3);
            text-decoration: none;
            transition: color 0.3s ease;
            letter-spacing: 1px;
        }

        .social-back:hover {
            color: rgba(255, 255, 255, 0.6);
        }

        @media (max-width: 768px) {
            .social-title {
                font-size: 2.2rem;
                letter-spacing: 8px;
            }

            .social-features {
                grid-template-columns: 1fr;
            }
        }

        .splash-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: #020408;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            z-index: 9999;
            animation: splash-fade 2s ease 1.5s forwards;
        }

        .splash-overlay img {
            width: 120px;
            height: 120px;
            object-fit: contain;
            margin-bottom: 16px;
        }

        .splash-overlay .splash-text {
            font-family: 'Outfit', sans-serif;
            font-size: 2rem;
            font-weight: 600;
            color: #ffffff;
            letter-spacing: 8px;
            text-transform: uppercase;
        }

        .splash-overlay .splash-sub {
            font-family: 'Outfit', sans-serif;
            font-size: 1.2rem;
            font-weight: 400;
            color: rgba(255, 255, 255, 0.5);
            letter-spacing: 6px;
            text-transform: uppercase;
            margin-top: 4px;
        }

        @keyframes splash-fade {
            0% {
                opacity: 1;
            }

            100% {
                opacity: 0;
                pointer-events: none;
            }
        }

        /* ===== NAV (Sticky CTA Bar Style) ===== */
        /* ===== NAV (Sticky CTA Bar Style) - UPDATED ===== */
        .sticky-cta-wrap {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 9999;
            padding: 10px 24px;
            background: transparent;
            pointer-events: none;
            opacity: 1;
            visibility: visible;
            transition: opacity 1s ease, visibility 1s;
        }

        .bp-cta-bar {
            pointer-events: auto;
            max-width: 1100px;
            margin: 0 auto;
            padding: 14px 20px 14px 24px;
            background: rgba(10, 10, 20, 0.75);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 60px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 16px;
            box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.05);
        }

        .bar-left {
            display: flex;
            align-items: center;
            gap: 12px;
            flex-shrink: 0;
        }

        .bar-countdown-block {
            color: rgba(255, 255, 255, 0.85);
            font-size: 0.82rem;
            font-weight: 500;
            white-space: nowrap;
        }

        .bar-countdown-block strong {
            color: var(--accent-light, #7B9EF8);
            font-family: 'Outfit', monospace;
            font-weight: 800;
            font-size: 0.88rem;
            letter-spacing: 0.5px;
        }

        .bar-promo {
            color: #F0F4F8;
            font-size: 0.85rem;
            font-weight: 600;
            white-space: nowrap;
        }

        .bar-promo strong {
            font-weight: 800;
        }

        .nav-cta {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 12px 24px;
            background: var(--gradient-primary, linear-gradient(135deg, #4F7DF3, #7C3AED));
            color: #fff !important;
            font-weight: 700 !important;
            font-size: 0.9rem !important;
            border-radius: 50px;
            transition: all 0.3s ease;
            white-space: nowrap;
            text-decoration: none;
            flex-shrink: 0;
            box-shadow: 0 2px 12px rgba(124, 58, 237, 0.3);
        }

        .nav-cta:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 24px rgba(124, 58, 237, 0.5);
            filter: brightness(1.1);
        }

        .nav-cta .btn-arrow {
            width: 28px;
            height: 28px;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-size: 0.7rem;
        }

        /* --- CTA Pulse Animation --- */
        @keyframes cta-pulse-glow {
            0% {
                filter: brightness(1);
                transform: scale(1);
                box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
            }

            50% {
                filter: brightness(1.25);
                transform: scale(1.03);
                box-shadow: 0 0 25px rgba(255, 215, 0, 0.5);
            }

            100% {
                filter: brightness(1);
                transform: scale(1);
                box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
            }
        }

        .nav-cta,
        .bottom-popup-cta {
            animation: cta-pulse-glow 2.5s infinite ease-in-out;
        }

        /* Pause on hover to let the user interact comfortably */
        .nav-cta:hover,
        .bottom-popup-cta:hover {
            animation: none;
            filter: brightness(1.1);
            transform: translateY(-2px);
        }

        /* --- Splash Overlay --- */
        .splash-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100vw;
            height: 100vh;
            background: #020408;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            z-index: 9999999;
            transition: opacity 1.5s ease;
        }

        .splash-overlay.fade-out {
            opacity: 0;
            pointer-events: none;
        }

        .splash-overlay .splash-logo {
            width: 120px;
            height: 120px;
            object-fit: contain;
            margin-bottom: 16px;
            opacity: 0;
            transform: scale(0.7);
        }

        .splash-overlay.ready .splash-logo {
            animation: splash-logo-in 1s ease 0.1s forwards;
        }

        @keyframes splash-logo-in {
            to {
                opacity: 1;
                transform: scale(1);
            }
        }

        /* --- Mouse glow effect --- */
        .mouse-glow {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 1;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .mouse-glow.active {
            opacity: 1;
        }

        /* --- Click ripple effect --- */
        .click-ripple {
            position: fixed;
            border-radius: 50%;
            pointer-events: none;
            z-index: 1;
            background: radial-gradient(circle, rgba(168, 85, 247, 0.2), transparent 70%);
            transform: scale(0);
            animation: ripple-expand 0.6s ease-out forwards;
        }

        @keyframes ripple-expand {
            0% {
                transform: scale(0);
                opacity: 1;
            }

            100% {
                transform: scale(1);
                opacity: 0;
            }
        }

        /* Ensure content is above the glow */
        .social-page-wrapper,
        section,
        .splash-overlay {
            position: relative;
            z-index: 2;
        }

        /* --- Page-specific overrides --- */
        html,
        body {
            background: #020408 !important;
            min-height: 100vh;
            overflow: auto !important;
        }

        html.splash-done,
        body.splash-done {
            overflow: auto !important;
            overflow-x: hidden !important;
        }

        .page-content {
            opacity: 1;
            background: #020408;
            min-height: 100vh;
        }

        .page-content.visible {
            opacity: 1;
        }

/* --- NEW SOCIAL HUB CSS --- */
        .social-page-wrapper {
            width: 100%;
            background: #020408;
            color: #fff;
            overflow: hidden;
        }

        .section-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 24px;
        }

        .social-section {
            padding: 100px 0;
            position: relative;
        }

        .text-gradient {
            background: linear-gradient(135deg, #A855F7, #FFD700);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .section-title {
            font-family: 'Outfit', sans-serif;
            font-size: 3rem;
            font-weight: 700;
            margin-bottom: 16px;
            text-align: center;
        }

        .section-subtitle {
            font-family: 'Outfit', sans-serif;
            font-size: 1.2rem;
            color: rgba(255, 255, 255, 0.6);
            text-align: center;
            margin-bottom: 60px;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }

        /* HERO */
        .social-hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            background: radial-gradient(circle at 50% 30%, rgba(168, 85, 247, 0.15), transparent 60%);
            padding: 120px 24px 80px;
        }

        .hero-logo {
            width: 100px;
            margin-bottom: 30px;
            filter: drop-shadow(0 0 20px rgba(168, 85, 247, 0.3));
        }

        .hero-title {
            font-family: 'Outfit', sans-serif;
            font-size: 4.5rem;
            font-weight: 800;
            line-height: 1.1;
            margin-bottom: 24px;
        }

        .hero-subtitle {
            font-size: 1.3rem;
            color: rgba(255, 255, 255, 0.7);
            margin-bottom: 40px;
            line-height: 1.6;
        }

        .hero-platforms {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-bottom: 16px;
            flex-wrap: wrap;
        }

        .platform-icon {
            width: 50px;
            height: 50px;
            border-radius: 12px;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            color: #fff;
            transition: all 0.3s ease;
        }

        .platform-icon:hover {
            transform: translateY(-5px);
            background: rgba(168, 85, 247, 0.2);
            border-color: #A855F7;
            box-shadow: 0 5px 15px rgba(168, 85, 247, 0.2);
        }

        .hero-tagline {
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 2px;
            color: rgba(255, 255, 255, 0.4);
            margin-bottom: 50px;
        }

        .hero-stats-mockup {
            display: flex;
            justify-content: center;
            gap: 16px;
            flex-wrap: wrap;
        }

        /* PROBLEM */
        .pain-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 24px;
        }

        .pain-card {
            background: rgba(255, 50, 50, 0.03);
            /* Subtle red tint for pain */
            border: 1px solid rgba(255, 255, 255, 0.05);
            padding: 30px;
            border-radius: 12px;
            transition: all 0.3s ease;
        }

        .pain-card:hover {
            background: rgba(255, 50, 50, 0.06);
            transform: translateY(-3px);
        }

        .pain-icon {
            width: 50px;
            height: 50px;
            border-radius: 12px;
            background: rgba(255, 255, 255, 0.05);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.4rem;
            color: rgba(255, 255, 255, 0.6);
            margin-bottom: 20px;
        }

        .pain-card h3 {
            font-family: 'Outfit', sans-serif;
            font-size: 1.2rem;
            margin-bottom: 10px;
        }

        .pain-card p {
            font-size: 0.95rem;
            color: rgba(255, 255, 255, 0.5);
            line-height: 1.5;
        }

        .pain-card strong {
            color: #ff6b6b;
            /* Red accent for pain highlight */
        }

        .pain-footer {
            text-align: center;
            margin-top: 40px;
            font-size: 1.1rem;
            color: rgba(255, 255, 255, 0.8);
            font-weight: 500;
            padding: 20px;
            background: rgba(255, 255, 255, 0.03);
            border-radius: 100px;
            display: inline-block;
            left: 50%;
            position: relative;
            transform: translateX(-50%);
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        /* SOLUTION */
        .pillar-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }

        .pillar-card {
            background: linear-gradient(145deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01));
            border: 1px solid rgba(168, 85, 247, 0.2);
            padding: 40px 30px;
            border-radius: 24px;
            text-align: center;
            transition: all 0.4s ease;
        }

        .pillar-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(168, 85, 247, 0.1);
            border-color: rgba(168, 85, 247, 0.5);
        }

        .pillar-icon {
            font-size: 3rem;
            margin-bottom: 24px;
            background: linear-gradient(135deg, #A855F7, #FFD700);
            -webkit-background-clip: text;
            background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .pillar-card h3 {
            font-family: 'Outfit', sans-serif;
            font-size: 1.5rem;
            margin-bottom: 16px;
        }

        .pillar-card p {
            font-size: 1rem;
            color: rgba(255, 255, 255, 0.6);
            line-height: 1.6;
        }

        /* Responsive */
        @media (max-width: 900px) {
            .hero-title {
                font-size: 3rem;
            }

            .pillar-grid {
                grid-template-columns: 1fr;
            }
        }

        /* CSS Extension for Slides 4-15 (Restored & New) */

        /* Slides 4-6 */

        /* Slides 4-6 */
        .feature-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .feature-row.reverse .feature-text {
            order: 2;
        }

        .feature-row.reverse .feature-visual {
            order: 1;
        }

        .feature-item {
            display: flex;
            gap: 20px;
            margin-bottom: 30px;
        }

        .feature-icon {
            font-size: 1.5rem;
            color: #A855F7;
            background: rgba(168, 85, 247, 0.1);
            width: 50px;
            height: 50px;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .feature-item h3 {
            font-family: 'Outfit', sans-serif;
            font-size: 1.1rem;
            margin-bottom: 6px;
        }

        .feature-item p {
            font-size: 0.9rem;
            color: rgba(255, 255, 255, 0.6);
            line-height: 1.4;
        }

        .feature-item.highlight {
            background: linear-gradient(90deg, rgba(168, 85, 247, 0.1), transparent);
            border-left: 4px solid #A855F7;
            padding: 16px;
            border-radius: 0 12px 12px 0;
            margin-left: -20px;
        }

        .comparison-box {
            display: flex;
            flex-direction: column;
            gap: 20px;
            align-items: center;
        }

        .compare-card {
            background: #0A0F18;
            padding: 24px;
            border-radius: 12px;
            width: 100%;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .compare-card.before {
            border-color: rgba(255, 50, 50, 0.3);
            opacity: 0.7;
        }

        .compare-card.after {
            border-color: rgba(255, 215, 0, 0.5);
            background: linear-gradient(145deg, rgba(20, 20, 20, 1), rgba(30, 30, 10, 1));
            box-shadow: 0 10px 40px rgba(255, 215, 0, 0.05);
        }

        .badge-red {
            background: rgba(255, 50, 50, 0.2);
            color: #ff6b6b;
            font-size: 0.7rem;
            padding: 4px 10px;
            border-radius: 50px;
            text-transform: uppercase;
            font-weight: 700;
            display: inline-block;
            margin-bottom: 10px;
        }

        .badge-gold {
            background: rgba(255, 215, 0, 0.2);
            color: #FFD700;
            font-size: 0.7rem;
            padding: 4px 10px;
            border-radius: 50px;
            text-transform: uppercase;
            font-weight: 700;
            display: inline-block;
            margin-bottom: 10px;
        }

        .artistic-text {
            font-family: 'Georgia', serif;
            font-style: italic;
            color: rgba(255, 255, 255, 0.9);
        }

        .arrow-down {
            color: rgba(255, 255, 255, 0.2);
            font-size: 1.5rem;
        }

        .design-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
            margin-bottom: 40px;
        }

        .design-card {
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 12px;
            padding: 24px;
            text-align: center;
            transition: all 0.3s ease;
        }

        .design-card:hover {
            background: rgba(255, 255, 255, 0.08);
            transform: translateY(-5px);
        }

        .design-card i {
            font-size: 1.8rem;
            margin-bottom: 16px;
            color: #A855F7;
        }

        .design-card h4 {
            font-family: 'Outfit', sans-serif;
            font-size: 1rem;
            margin-bottom: 8px;
        }

        .design-card span {
            font-size: 0.8rem;
            color: rgba(255, 255, 255, 0.5);
        }

        .check-list {
            list-style: none;
            padding: 0;
        }

        .check-list li {
            font-size: 1rem;
            margin-bottom: 16px;
            display: flex;
            gap: 12px;
            align-items: flex-start;
            color: rgba(255, 255, 255, 0.8);
        }

        .check-list li i {
            color: #4ade80;
            margin-top: 4px;
        }

        .calendar-mockup {
            background: #0A0F18;
            border-radius: 12px;
            padding: 24px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
        }

        .cal-header {
            display: flex;
            justify-content: space-between;
            margin-bottom: 20px;
            font-family: 'Outfit', sans-serif;
            font-weight: 700;
        }

        .cal-grid {
            display: grid;
            grid-template-columns: repeat(7, 1fr);
            gap: 8px;
            text-align: center;
            font-size: 0.9rem;
        }

        .cal-day-name {
            color: rgba(255, 255, 255, 0.3);
            font-size: 0.8rem;
            margin-bottom: 10px;
        }

        .cal-day {
            aspect-ratio: 1;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            border-radius: 8px;
            background: rgba(255, 255, 255, 0.03);
            position: relative;
        }

        .cal-day.dimmed {
            opacity: 0.3;
        }

        .cal-day.active {
            background: rgba(168, 85, 247, 0.2);
            color: #fff;
            border: 1px solid rgba(168, 85, 247, 0.4);
        }

        .dot {
            width: 4px;
            height: 4px;
            background: #A855F7;
            border-radius: 50%;
            margin-top: 4px;
        }

        .dot.blue {
            background: #3b82f6;
        }

        .dot.purple {
            background: #d946ef;
        }

        /* Slides 7-10 */
        .analytics-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
            margin-bottom: 40px;
        }

        .stat-card {
            background: rgba(255, 255, 255, 0.02);
            border: 1px solid rgba(255, 255, 255, 0.08);
            padding: 24px;
            border-radius: 12px;
        }

        .stat-label {
            font-size: 0.9rem;
            color: rgba(255, 255, 255, 0.5);
            margin-bottom: 8px;
        }

        .stat-value {
            font-family: 'Outfit', sans-serif;
            font-size: 1.8rem;
            font-weight: 700;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .trend {
            font-size: 0.8rem;
            padding: 2px 6px;
            border-radius: 4px;
        }

        .trend.up {
            background: rgba(74, 222, 128, 0.1);
            color: #4ade80;
        }

        .stat-graph-line {
            height: 4px;
            width: 100%;
            background: linear-gradient(90deg, #A855F7, transparent);
            margin-top: 16px;
            border-radius: 2px;
            opacity: 0.5;
        }

        .analytics-features-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 16px;
            max-width: 900px;
            margin: 0 auto;
        }

        .af-item {
            background: rgba(255, 255, 255, 0.03);
            padding: 12px 20px;
            border-radius: 50px;
            font-size: 0.9rem;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .af-item i {
            color: #A855F7;
        }

        .chat-mockup-frame {
            background: #0A0F18;
            border-radius: 12px;
            padding: 24px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            max-height: 400px;
            overflow-y: auto;
            display: flex;
            flex-direction: column;
            gap: 16px;
        }

        .chat-msg {
            padding: 12px 18px;
            border-radius: 12px;
            font-size: 0.9rem;
            line-height: 1.5;
            max-width: 85%;
        }

        .chat-msg.user {
            background: rgba(255, 255, 255, 0.1);
            color: #fff;
            align-self: flex-end;
            border-bottom-right-radius: 2px;
        }

        .chat-msg.ai {
            background: rgba(168, 85, 247, 0.15);
            color: #fff;
            align-self: flex-start;
            border-bottom-left-radius: 2px;
            border: 1px solid rgba(168, 85, 247, 0.3);
        }

        .chat-input-bar {
            margin-top: auto;
            background: rgba(255, 255, 255, 0.05);
            padding: 12px;
            border-radius: 12px;
            color: rgba(255, 255, 255, 0.4);
            font-size: 0.9rem;
        }

        .agent-caps {
            list-style: none;
            padding: 0;
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .agent-caps li {
            display: flex;
            align-items: center;
            gap: 16px;
            font-size: 1.1rem;
            padding: 16px;
            background: rgba(255, 255, 255, 0.02);
            border-radius: 12px;
            transition: all 0.3s;
        }

        .agent-caps li:hover {
            background: rgba(255, 255, 255, 0.05);
            transform: translateX(5px);
        }

        .agent-caps li i {
            font-size: 1.2rem;
            color: #A855F7;
        }

        .split-visual-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 30px;
        }

        .split-card {
            background: #0a0a0a;
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 24px;
            padding: 30px;
        }

        .split-card h3 {
            font-family: 'Outfit', sans-serif;
            font-size: 1.3rem;
            margin-bottom: 24px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .split-card h3 i {
            color: #A855F7;
        }

        .inbox-list {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .inbox-item {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 12px;
            background: rgba(255, 255, 255, 0.03);
            border-radius: 12px;
        }

        .platform-dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
        }

        .platform-dot.inst {
            background: #E1306C;
        }

        .platform-dot.fb {
            background: #1877F2;
        }

        .platform-dot.li {
            background: #0077b5;
        }

        .inbox-content {
            flex: 1;
        }

        .inbox-content strong {
            display: block;
            font-size: 0.9rem;
        }

        .inbox-content p {
            font-size: 0.8rem;
            color: rgba(255, 255, 255, 0.5);
            margin: 0;
        }

        .inbox-time {
            font-size: 0.7rem;
            color: rgba(255, 255, 255, 0.3);
        }

        .crm-stats {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 12px;
        }

        .crm-stat {
            background: rgba(255, 255, 255, 0.03);
            padding: 16px;
            border-radius: 12px;
            text-align: center;
        }

        .crm-stat span {
            display: block;
            font-size: 0.8rem;
            color: rgba(255, 255, 255, 0.5);
        }

        .crm-stat strong {
            display: block;
            font-size: 1.2rem;
            margin-top: 4px;
        }

        .inbox-meta,
        .crm-meta {
            margin-top: 20px;
            font-size: 0.8rem;
            color: rgba(255, 255, 255, 0.4);
            text-align: center;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .comp-table-wrapper {
            overflow-x: auto;
            margin-bottom: 40px;
        }

        .comp-table {
            width: 100%;
            border-collapse: collapse;
            font-size: 1rem;
        }

        .comp-table th,
        .comp-table td {
            padding: 16px;
            text-align: center;
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        }

        .comp-table th {
            font-family: 'Outfit', sans-serif;
            color: rgba(255, 255, 255, 0.4);
            text-transform: uppercase;
            font-size: 0.8rem;
            letter-spacing: 1px;
        }

        .comp-table .highlight-col {
            background: rgba(168, 85, 247, 0.05);
            border-left: 1px solid rgba(168, 85, 247, 0.1);
            border-right: 1px solid rgba(168, 85, 247, 0.1);
            color: #fff;
            font-weight: 500;
        }

        .comp-table td:first-child {
            text-align: left;
            color: rgba(255, 255, 255, 0.6);
        }

        .ai-insight-box {
            background: linear-gradient(90deg, rgba(168, 85, 247, 0.1), rgba(255, 215, 0, 0.05));
            border: 1px solid rgba(168, 85, 247, 0.2);
            padding: 20px;
            border-radius: 12px;
            display: flex;
            gap: 16px;
            align-items: flex-start;
        }

        .aib-icon {
            font-size: 1.5rem;
        }

        .aib-content {
            font-size: 0.95rem;
            line-height: 1.6;
            color: rgba(255, 255, 255, 0.9);
        }

        /* Slides 11-15 */
        .summary-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 16px;
            max-width: 1000px;
            margin: 0 auto;
        }

        .summary-pilly {
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.1);
            padding: 16px;
            border-radius: 12px;
            text-align: center;
            font-size: 0.95rem;
            color: rgba(255, 255, 255, 0.8);
            transition: all 0.3s;
        }

        .summary-pilly:hover {
            background: rgba(168, 85, 247, 0.1);
            border-color: rgba(168, 85, 247, 0.3);
            transform: translateY(-2px);
        }

        .social-pricing-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
            align-items: start;
            margin-top: 50px;
        }

        .sp-card {
            background: #0A0F18;
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 12px;
            padding: 30px;
            text-align: center;
            transition: all 0.3s;
            position: relative;
        }

        .sp-card:hover {
            transform: translateY(-5px);
        }

        .sp-card.popular {
            background: rgba(20, 20, 20, 1);
            border-color: #A855F7;
            box-shadow: 0 10px 40px rgba(168, 85, 247, 0.15);
            transform: scale(1.05);
            z-index: 1;
        }

        .sp-card.popular:hover {
            transform: scale(1.08);
        }

        .pop-badge {
            position: absolute;
            top: -12px;
            left: 50%;
            transform: translateX(-50%);
            background: #A855F7;
            color: #fff;
            padding: 4px 12px;
            border-radius: 12px;
            font-size: 0.7rem;
            font-weight: 700;
            letter-spacing: 1px;
        }

        .sp-name {
            font-size: 1.1rem;
            color: rgba(255, 255, 255, 0.6);
            margin-bottom: 10px;
        }

        .sp-price {
            font-family: 'Outfit', sans-serif;
            font-size: 2rem;
            font-weight: 700;
            color: #fff;
            margin-bottom: 24px;
        }

        .sp-price span {
            font-size: 0.9rem;
            color: rgba(255, 255, 255, 0.4);
            font-weight: 400;
        }

        .sp-features {
            list-style: none;
            padding: 0;
            margin-bottom: 30px;
            text-align: left;
        }

        .sp-features li {
            padding: 8px 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
            font-size: 0.9rem;
            color: rgba(255, 255, 255, 0.7);
        }

        .sp-features li:last-child {
            border: none;
        }

        .sp-btn {
            display: block;
            width: 100%;
            padding: 14px;
            border-radius: 12px;
            background: #fff;
            color: #000;
            font-weight: 700;
            text-decoration: none;
            transition: all 0.3s;
        }

        .sp-btn:hover {
            background: #eee;
        }

        .sp-btn.outline {
            background: transparent;
            border: 1px solid rgba(255, 255, 255, 0.2);
            color: #fff;
        }

        .sp-btn.outline:hover {
            border-color: #fff;
        }

        .sp-btn.glow {
            background: linear-gradient(135deg, #A855F7, #7C3AED);
            color: #fff;
            box-shadow: 0 4px 15px rgba(168, 85, 247, 0.4);
        }

        .sp-btn.glow:hover {
            box-shadow: 0 6px 20px rgba(168, 85, 247, 0.6);
        }

        .results-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
            margin-bottom: 60px;
        }

        .res-card {
            background: rgba(255, 255, 255, 0.02);
            padding: 30px;
            border-radius: 12px;
            text-align: center;
            border: 1px solid rgba(255, 255, 255, 0.05);
        }

        .res-val {
            font-family: 'Outfit', sans-serif;
            font-size: 3rem;
            font-weight: 800;
            background: linear-gradient(135deg, #FFD700, #F59E0B);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            margin-bottom: 8px;
        }

        .res-lbl {
            font-size: 1.1rem;
            color: #fff;
            font-weight: 600;
            margin-bottom: 4px;
        }

        .res-sub {
            font-size: 0.9rem;
            color: rgba(255, 255, 255, 0.5);
        }

        .testimonial-box {
            max-width: 800px;
            margin: 0 auto;
            text-align: center;
            font-size: 1.2rem;
            line-height: 1.6;
            color: rgba(255, 255, 255, 0.9);
            font-style: italic;
        }

        .test-author {
            margin-top: 20px;
            font-size: 1rem;
            color: rgba(255, 255, 255, 0.5);
            font-style: normal;
        }

        .steps-row {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 30px;
            max-width: 1000px;
            margin: 0 auto;
        }

        .step-item {
            flex: 1;
            text-align: center;
            background: rgba(255, 255, 255, 0.02);
            padding: 30px 20px;
            border-radius: 12px;
            border: 1px solid rgba(255, 255, 255, 0.05);
        }

        .step-num {
            font-family: 'Outfit', sans-serif;
            font-size: 3rem;
            font-weight: 800;
            color: rgba(255, 255, 255, 0.1);
            margin-bottom: 10px;
        }

        .step-item h3 {
            font-size: 1.2rem;
            margin-bottom: 10px;
        }

        .step-item p {
            font-size: 0.9rem;
            color: rgba(255, 255, 255, 0.6);
        }

        .step-arrow {
            color: rgba(255, 255, 255, 0.2);
            font-size: 1.5rem;
        }

        .final-cta-section {
            text-align: center;
            padding-bottom: 150px;
        }

        .final-btn {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            padding: 20px 50px;
            background: #fff;
            color: #000;
            font-size: 1.2rem;
            font-weight: 700;
            border-radius: 100px;
            text-decoration: none;
            transition: all 0.3s;
            margin-bottom: 60px;
            box-shadow: 0 10px 40px rgba(255, 255, 255, 0.2);
        }

        .final-btn:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 50px rgba(255, 255, 255, 0.3);
        }

        .final-links {
            display: flex;
            justify-content: center;
            gap: 30px;
            margin-bottom: 40px;
            opacity: 0.6;
        }

        .final-links a,
        .final-links span {
            color: #fff;
            text-decoration: none;
            font-size: 0.9rem;
        }

        .final-links a:hover {
            text-decoration: underline;
        }

        .final-tagline {
            font-family: 'Outfit', sans-serif;
            font-size: 1.5rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 4px;
            color: rgba(255, 255, 255, 0.1);
            line-height: 1.4;
            margin-bottom: 40px;
        }

        .final-copyright {
            font-size: 0.8rem;
            color: rgba(255, 255, 255, 0.2);
        }

        @media (max-width: 900px) {
            .feature-row {
                grid-template-columns: 1fr;
            }

            .content-gen-section .feature-row {
                display: flex;
                flex-direction: column;
            }

            .design-grid {
                grid-template-columns: 1fr 1fr;
            }

            .analytics-grid,
            .analytics-features-grid,
            .split-visual-grid {
                grid-template-columns: 1fr;
            }

            .summary-grid {
                grid-template-columns: 1fr 1fr;
            }

            .social-pricing-grid,
            .results-grid {
                grid-template-columns: 1fr;
            }

            .steps-row {
                flex-direction: column;
                gap: 20px;
            }

            .step-arrow {
                transform: rotate(90deg);
            }
        }

.social-sidebar {
    position: fixed;
    right: 24px;
    top: 50%;
    transform: translateY(-50%) translateX(100px);
    display: flex;
    flex-direction: column;
    gap: 16px;
    z-index: 10001;
    background: rgba(10, 14, 23, 0.6);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 20px 10px;
    border-radius: 40px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 1s cubic-bezier(0.23, 1, 0.32, 1);
    opacity: 0;
}

.social-sidebar.visible {
    transform: translateY(-50%) translateX(0);
    opacity: 1;
}

.social-sidebar a,
.lang-globe-btn {
    width: 38px !important;
    height: 38px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    color: rgba(240, 244, 248, 0.5) !important;
    font-size: 1.1rem !important;
    text-decoration: none !important;
    transition: all 0.3s ease !important;
    border-radius: 50% !important;
    position: relative !important;
    background: transparent !important;
    border: none !important;
    cursor: pointer !important;
    padding: 0 !important;
    margin: 0 !important;
    box-shadow: none !important;
}

.social-sidebar a:hover,
.lang-globe-btn:hover {
    color: var(--gold, #A855F7) !important;
    background: rgba(168, 85, 247, 0.1) !important;
    transform: scale(1.1) !important;
}

.lang-globe-btn {
    color: var(--gold, #A855F7) !important;
    margin-bottom: 4px !important;
    box-shadow: none !important;
}

@media (max-width: 768px) {
    .social-sidebar {
        display: none;
    }
}

.scarcity-overlay {
            position: fixed;
            inset: 0;
            background: rgba(0, 0, 0, 0.78);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            z-index: 99999;
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.4s ease, visibility 0.4s ease;
        }

        .scarcity-overlay.active {
            opacity: 1;
            visibility: visible;
        }

        .scarcity-box {
            background: linear-gradient(145deg, #111, #000);
            border: 1px solid rgba(168, 85, 247, 0.2);
            border-radius: 12px;
            padding: 36px 32px;
            max-width: 420px;
            width: 92%;
            text-align: center;
            position: relative;
            transform: translateY(20px) scale(0.97);
            transition: transform 0.4s ease;
            box-shadow: 0 24px 64px rgba(0, 0, 0, 0.6), 0 0 40px rgba(168, 85, 247, 0.05);
        }

        .scarcity-overlay.active .scarcity-box {
            transform: translateY(0) scale(1);
        }

        .scarcity-close {
            position: absolute;
            top: 12px;
            right: 12px;
            width: 28px;
            height: 28px;
            border-radius: 50%;
            border: 1px solid rgba(255, 255, 255, 0.1);
            background: rgba(255, 255, 255, 0.04);
            color: rgba(255, 255, 255, 0.4);
            font-size: 0.8rem;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
        }

        .scarcity-close:hover {
            background: rgba(255, 255, 255, 0.1);
            color: #fff;
        }

        .scarcity-icon {
            margin-bottom: 12px;
        }

        .scarcity-badge {
            display: inline-block;
            padding: 5px 14px;
            background: rgba(168, 85, 247, 0.1);
            border: 1px solid rgba(168, 85, 247, 0.25);
            border-radius: 100px;
            color: #A855F7;
            font-size: 0.65rem;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 0.12em;
            margin-bottom: 14px;
        }

        .scarcity-title {
            font-family: 'Outfit', sans-serif;
            font-size: 1.25rem;
            font-weight: 700;
            color: #f0f4f8;
            margin-bottom: 8px;
        }

        .scarcity-subtitle {
            color: rgba(255, 255, 255, 0.5);
            font-size: 0.85rem;
            line-height: 1.5;
            margin-bottom: 22px;
        }

        .scarcity-countdown {
            display: flex;
            justify-content: center;
            gap: 12px;
            margin-bottom: 20px;
        }

        .scarcity-countdown-item {
            text-align: center;
        }

        .scarcity-countdown-num {
            font-family: 'JetBrains Mono', monospace;
            font-size: 1.5rem;
            font-weight: 700;
            color: #C084FC;
            background: rgba(168, 85, 247, 0.08);
            border: 1px solid rgba(168, 85, 247, 0.15);
            border-radius: 8px;
            padding: 8px 14px;
            min-width: 52px;
        }

        .scarcity-countdown-label {
            font-size: 0.6rem;
            color: rgba(255, 255, 255, 0.4);
            text-transform: uppercase;
            letter-spacing: 0.12em;
            margin-top: 4px;
            display: block;
        }

        .scarcity-spots {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            font-size: 0.8rem;
            color: rgba(255, 255, 255, 0.5);
            margin-bottom: 20px;
        }

        .scarcity-spots-dot {
            width: 6px;
            height: 6px;
            border-radius: 50%;
            background: #22c55e;
            animation: pulse-dot-social 2s infinite;
        }

        @keyframes pulse-dot-social {

            0%,
            100% {
                opacity: 1;
            }

            50% {
                opacity: 0.3;
            }
        }

        .scarcity-cta {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 14px 32px;
            background: linear-gradient(135deg, #A855F7, #7C3AED);
            color: #fff;
            font-weight: 700;
            font-size: 0.95rem;
            border-radius: 2px;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .scarcity-cta:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(168, 85, 247, 0.4);
            color: #fff;
        }

        .scarcity-disclaimer {
            color: rgba(255, 255, 255, 0.25);
            font-size: 0.7rem;
            margin-top: 12px;
        }

.protected-popup {
            position: fixed;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%) scale(0.8);
            background: rgba(10, 10, 10, 0.95);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            border: 1px solid rgba(255, 50, 50, 0.3);
            border-radius: 12px;
            padding: 40px 48px;
            text-align: center;
            z-index: 999999;
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.3s ease, transform 0.3s ease;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6), 0 0 40px rgba(255, 50, 50, 0.1);
        }

        .protected-popup.visible {
            opacity: 1;
            pointer-events: auto;
            transform: translate(-50%, -50%) scale(1);
        }

        .protected-popup .pp-icon {
            font-size: 2.5rem;
            margin-bottom: 16px;
            display: block;
        }

        .protected-popup .pp-title {
            font-family: 'Outfit', sans-serif;
            font-size: 1.3rem;
            font-weight: 800;
            color: #e63946;
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 8px;
        }

        .protected-popup .pp-sub {
            font-family: 'Inter', sans-serif;
            font-size: 0.9rem;
            color: rgba(255, 255, 255, 0.5);
            line-height: 1.5;
        }

.scarcity-overlay {
            position: fixed;
            inset: 0;
            background: rgba(2, 4, 8, 0.75);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            z-index: 99999;
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.4s ease, visibility 0.4s ease;
        }

        .scarcity-overlay.active {
            opacity: 1;
            visibility: visible;
        }

        .scarcity-box {
            background: linear-gradient(145deg, #0A0F18, #020408);
            border: 1px solid rgba(139, 92, 246, 0.2);
            border-radius: 12px;
            padding: 44px 36px;
            max-width: 480px;
            width: 90%;
            text-align: center;
            position: relative;
            transform: translateY(30px) scale(0.95);
            transition: transform 0.4s ease;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6), 0 0 40px rgba(139, 92, 246, 0.06);
        }

        .scarcity-overlay.active .scarcity-box {
            transform: translateY(0) scale(1);
        }

        .scarcity-close {
            position: absolute;
            top: 14px;
            right: 14px;
            width: 30px;
            height: 30px;
            border-radius: 50%;
            border: 1px solid rgba(240, 244, 248, 0.1);
            background: rgba(240, 244, 248, 0.04);
            color: rgba(240, 244, 248, 0.4);
            font-size: 0.85rem;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
        }

        .scarcity-close:hover {
            background: rgba(240, 244, 248, 0.1);
            color: #F0F4F8;
        }

        .scarcity-icon {
            font-size: 2.2rem;
            margin-bottom: 16px;
            color: #8B5CF6;
        }

        .scarcity-badge {
            display: inline-block;
            padding: 5px 14px;
            background: rgba(139, 92, 246, 0.1);
            border: 1px solid rgba(139, 92, 246, 0.25);
            border-radius: 4px;
            color: #A78BFA;
            font-size: 0.7rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            margin-bottom: 16px;
        }

        .scarcity-title {
            font-family: 'Outfit', sans-serif;
            font-size: 1.4rem;
            font-weight: 700;
            color: #F0F4F8;
            margin-bottom: 10px;
            line-height: 1.3;
        }

        .scarcity-subtitle {
            color: #94A3B8;
            font-size: 0.9rem;
            line-height: 1.6;
            margin-bottom: 24px;
        }

        .scarcity-countdown {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin-bottom: 24px;
        }

        .scarcity-countdown-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 4px;
        }

        .scarcity-countdown-num {
            font-family: 'Outfit', sans-serif;
            font-size: 1.8rem;
            font-weight: 800;
            color: #F0F4F8;
            background: rgba(240, 244, 248, 0.04);
            border: 1px solid rgba(139, 92, 246, 0.15);
            border-radius: 8px;
            width: 58px;
            height: 58px;
            display: flex;
            align-items: center;
            justify-content: center;
            line-height: 1;
        }

        .scarcity-countdown-label {
            font-size: 0.6rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: #94A3B8;
        }

        .scarcity-spots {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            margin-bottom: 20px;
            font-size: 0.85rem;
            color: #94A3B8;
        }

        .scarcity-spots-dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: #ef4444;
            animation: scarcity-pulse 1.5s ease-in-out infinite;
        }

        .scarcity-spots strong {
            color: #F0F4F8;
            font-weight: 700;
        }

        @keyframes scarcity-pulse {

            0%,
            100% {
                opacity: 1;
            }

            50% {
                opacity: 0.3;
            }
        }

        .scarcity-cta {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 14px 32px;
            background: linear-gradient(135deg, #8B5CF6, #7C3AED);
            color: #fff;
            font-weight: 700;
            font-size: 0.95rem;
            border-radius: 2px;
            border: none;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            font-family: 'Inter', sans-serif;
        }

        .scarcity-cta:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 28px rgba(139, 92, 246, 0.35);
            color: #fff;
        }

        .scarcity-disclaimer {
            margin-top: 14px;
            font-size: 0.7rem;
            color: rgba(148, 163, 184, 0.5);
        }

        @media (max-width: 768px) {
            .scarcity-box {
                padding: 32px 20px;
            }

            .scarcity-countdown-num {
                width: 48px;
                height: 48px;
                font-size: 1.4rem;
            }
        }


/* ============================================
   LANG GLOBE & DROPDOWN (Copied from CRM)
   ============================================ */
.lang-dropdown {
    position: absolute;
    right: 50px;
    top: 50%;
    transform: translateY(-50%);
    background: #0d1117;
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 8px;
    padding: 8px;
    display: none;
    flex-direction: column;
    gap: 4px;
    min-width: 120px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    z-index: 10002;
}

.lang-dropdown.open {
    display: flex;
}

.lang-option {
    padding: 8px 12px;
    font-size: 0.8rem;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s;
    white-space: nowrap;
    text-align: left;
}

.lang-option:hover {
    background: rgba(212, 175, 55, 0.1);
}

body {
            -webkit-user-select: none;
            -moz-user-select: none;
            -ms-user-select: none;
            user-select: none
        }

        img {
            -webkit-user-drag: none;
            -khtml-user-drag: none;
            -moz-user-drag: none;
            -o-user-drag: none;
            user-drag: none;
            pointer-events: none
        }