        /* ========================================
           PRELOADER — prevents layout crush on load
        ======================================== */
        body.is-loading {
            overflow: hidden;
        }

        .preloader {
            position: fixed;
            inset: 0;
            z-index: 999999;
            background: #0f0f0f;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: opacity 0.4s ease;
        }

        .preloader-logo {
            font-family: 'Space Grotesk', 'Inter', system-ui, sans-serif;
            font-size: clamp(28px, 5vw, 42px);
            font-weight: 800;
            color: #ffffff;
            letter-spacing: -0.02em;
            animation: preloaderPulse 1.2s ease-in-out infinite;
        }

        .preloader-logo span {
            color: #FF5722;
        }

        @keyframes preloaderPulse {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.4; }
        }

        /* ========================================
           CSS CUSTOM PROPERTIES
        ======================================== */
        :root {
            --bg-primary: #0f0f0f;
            --bg-secondary: #1a1a1a;
            --bg-card: #1e1e1e;
            --bg-card-hover: #252525;
            --bg-elevated: #2a2a2a;

            --accent: #FF5722;
            --accent-light: #FF8C00;
            --accent-dark: #E64A19;
            --accent-glow: rgba(255, 87, 34, 0.25);
            --accent-subtle: rgba(255, 87, 34, 0.08);

            --text-primary: #FFFFFF;
            --text-secondary: #b0b0b0;
            --text-muted: #8a8a8a;
            --text-dim: #444444;

            --border: rgba(255, 255, 255, 0.06);
            --border-hover: rgba(255, 87, 34, 0.3);

            --radius-sm: 8px;
            --radius-md: 14px;
            --radius-lg: 20px;
            --radius-xl: 28px;
            --radius-full: 999px;

            --font-body: 'Inter', system-ui, -apple-system, sans-serif;
            --font-display: 'Space Grotesk', 'Inter', sans-serif;

            --ease-out: cubic-bezier(0.25, 1, 0.5, 1);
            --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
        }

        /* ========================================
           RESET & BASE
        ======================================== */
        *, *::before, *::after {
            margin: 0; padding: 0;
            box-sizing: border-box;
        }

        html.lenis, html.lenis body {
            height: auto;
        }

        .lenis.lenis-smooth {
            scroll-behavior: auto !important;
        }

        .lenis.lenis-smooth [data-lenis-prevent] {
            overscroll-behavior: contain;
        }

        html {
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        body {
            font-family: var(--font-body);
            background:
                radial-gradient(1200px 800px at 15% 20%, rgba(15,8,8,0.45), transparent 40%),
                radial-gradient(900px 700px at 80% 30%, rgba(255,195,0,0.35), transparent 70%),
                linear-gradient(120deg, rgba(15,0,0,1) 50%, rgba(255,69,0,1) 70%, rgba(255,195,0,1) 80%, rgba(255,255,255,1) 100%);
            background-attachment: fixed;
            color: var(--text-primary);
            overflow-x: hidden;
            line-height: 1.6;
        }

        body::before {
            content: '';
            position: fixed;
            inset: 0;
            background: rgba(0, 0, 0, 0.55);
            z-index: 0;
            pointer-events: none;
        }

        /* ========================================
           GLASSMORPHISM BASE
        ======================================== */
        .glass-section {
            background: rgba(15, 15, 15, 0.45);
            backdrop-filter: blur(100px);
            -webkit-backdrop-filter: blur(40px);
            border-top: 1px solid rgba(255,255,255,0.04);
            border-bottom: 1px solid rgba(255,255,255,0.03);
        }
        .glass-card {
            background: rgba(30, 30, 30, 0.4) !important;
            backdrop-filter: blur(24px) !important;
            -webkit-backdrop-filter: blur(24px) !important;
            border-color: rgba(255,255,255,0.08) !important;
        }
        .glass-card:hover {
            background: rgba(40, 40, 40, 0.5) !important;
            border-color: rgba(255,106,0,0.25) !important;
        }

        img {
            display: block;
            max-width: 100%;
        }

        a {
            text-decoration: none;
            color: inherit;
        }

        /* ========================================
           SELECTION & SCROLLBAR
        ======================================== */
        ::selection {
            background: var(--accent);
            color: white;
        }

        ::-webkit-scrollbar { width: 5px; }
        ::-webkit-scrollbar-track { background: var(--bg-primary); }
        ::-webkit-scrollbar-thumb { background: #333; border-radius: 4px; }
        ::-webkit-scrollbar-thumb:hover { background: var(--accent); }

        /* ========================================
           TYPOGRAPHY
        ======================================== */
        h1, h2, h3, h4, h5, h6 {
            font-family: var(--font-display);
            font-weight: 700;
            line-height: 1.05;
            letter-spacing: -0.03em;
        }

        .section-label {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            font-size: 12px;
            font-weight: 700;
            letter-spacing: 0.15em;
            text-transform: uppercase;
            color: var(--accent);
            margin-bottom: 20px;
        }

        .section-label::before {
            content: '';
            width: 32px; height: 2px;
            background: linear-gradient(90deg, var(--accent), var(--accent-light));
            border-radius: 2px;
        }

        .section-title {
            font-size: clamp(32px, 5vw, 60px);
            color: var(--text-primary);
            margin-bottom: 20px;
            text-transform: uppercase;
        }

        .section-subtitle {
            font-size: 17px;
            color: var(--text-secondary);
            max-width: 560px;
            line-height: 1.7;
        }

        .text-gradient {
            background: linear-gradient(135deg, var(--accent), var(--accent-light));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        /* ========================================
           LAYOUT
        ======================================== */
        .container {
            width: 100%;
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 24px;
        }

        @media (min-width: 768px) {
            .container { padding: 0 40px; }
        }

        @media (min-width: 1024px) {
            .container { padding: 0 64px; }
        }

        /* ========================================
           NAVIGATION
        ======================================== */
        .nav {
            position: fixed;
            top: 0; left: 0; right: 0;
            z-index: 1000;
            background: transparent;
            backdrop-filter: none;
            -webkit-backdrop-filter: none;
            border-bottom: 1px solid transparent;
            transition: background 0.45s var(--ease-smooth),
                        backdrop-filter 0.45s var(--ease-smooth),
                        border-color 0.45s var(--ease-smooth);
        }

        .nav.scrolled {
            background: rgba(12, 12, 12, 0.35);
            backdrop-filter: blur(40px);
            -webkit-backdrop-filter: blur(40px);
            border-bottom-color: rgba(255,255,255,0.08);
        }

        .nav-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 72px;
        }

        .nav-logo {
            font-family: var(--font-display);
            font-size: 22px;
            font-weight: 800;
            letter-spacing: -0.02em;
        }

        .nav-logo span { color: var(--accent); }

        .nav-links {
            display: none;
            align-items: center;
            gap: 36px;
            list-style: none;
        }

        @media (min-width: 1024px) {
            .nav-links { display: flex; }
        }

        .nav-links a {
            font-size: 13px;
            font-weight: 500;
            color: var(--text-secondary);
            letter-spacing: 0.04em;
            text-transform: uppercase;
            position: relative;
            transition: color 0.3s;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -4px; left: 0;
            width: 100%; height: 2px;
            background: var(--accent);
            border-radius: 2px;
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.3s var(--ease-out);
        }

        .nav-links a:hover { color: white; }
        .nav-links a:hover::after { transform: scaleX(1); }
        .nav-links a.active { color: var(--accent); }

        .nav-actions {
            display: flex;
            align-items: center;
            gap: 16px;
        }

        /* Hamburger / MENU button */
        .hamburger {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 6px;
            background: none;
            border: none;
            cursor: pointer;
            padding: 12px 10px;
            -webkit-tap-highlight-color: transparent;
        }

        @media (min-width: 1024px) {
            .hamburger { display: none; }
        }

        .hamburger-label {
            font-family: var(--font-display);
            font-size: 10px;
            font-weight: 700;
            letter-spacing: 0.18em;
            text-transform: uppercase;
            color: white;
            transition: opacity 0.3s;
            line-height: 1;
        }

        .hamburger-lines {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 5px;
            width: 32px;
        }

        .hamburger-lines span {
            display: block;
            height: 2.5px;
            background: white;
            border-radius: 2px;
            transition: all 0.4s var(--ease-out);
        }

        .hamburger-lines span:nth-child(1) { width: 100%; }
        .hamburger-lines span:nth-child(2) { width: 70%; }

        .hamburger.open .hamburger-label {
            opacity: 0;
        }

        .hamburger.open .hamburger-lines span:nth-child(1) {
            width: 100%;
            transform: translateY(3.75px) rotate(45deg);
        }

        .hamburger.open .hamburger-lines span:nth-child(2) {
            width: 100%;
            transform: translateY(-3.75px) rotate(-45deg);
        }

        /* Mobile Menu */
        .mobile-menu {
            position: fixed; inset: 0;
            background: rgba(12, 12, 12, 0.35);
            backdrop-filter: blur(40px);
            -webkit-backdrop-filter: blur(40px);
            border-bottom-color: rgba(255,255,255,0.08);
            z-index: 999;
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.4s;
        }

        .mobile-menu.open {
            opacity: 1;
            pointer-events: all;
        }

        .mobile-menu nav {
            text-align: center;
            display: flex;
            flex-direction: column;
            gap: 4px;
            width: 100%;
            padding: 0 32px;
        }

        .mobile-menu a {
            font-family: var(--font-display);
            font-size: 36px;
            font-weight: 700;
            color: white;
            padding: 8px 0;
            transition: color 0.3s;
        }

        .mobile-menu a:hover { color: var(--accent); }

        /* ========================================
           BUTTONS
        ======================================== */
        .btn {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-family: var(--font-body);
            font-size: 14px;
            font-weight: 600;
            letter-spacing: 0.02em;
            border: none;
            border-radius: var(--radius-full);
            cursor: pointer;
            transition: all 0.35s var(--ease-out);
            text-transform: uppercase;
            white-space: nowrap;
        }

        .btn-primary {
            padding: 15px 32px;
            background: linear-gradient(135deg, var(--accent), var(--accent-light));
            color: white;
            box-shadow: 0 4px 20px var(--accent-glow);
        }

        .btn-primary:hover {
            transform: translateY(-2px) scale(1.03);
            box-shadow: 0 8px 36px rgba(255, 87, 34, 0.4);
        }

        .btn-primary:active {
            transform: translateY(0) scale(1);
        }

        .btn-outline {
            padding: 14px 30px;
            background: transparent;
            color: white;
            border: 1.5px solid rgba(255,255,255,0.15);
        }

        .btn-outline:hover {
            border-color: var(--accent);
            background: var(--accent-subtle);
            color: var(--accent-light);
            transform: translateY(-2px);
        }

        .btn-sm {
            padding: 10px 22px;
            font-size: 12px;
        }

        .btn-icon {
            transition: transform 0.3s;
        }

        .btn:hover .btn-icon {
            transform: translateX(3px);
        }

        /* ========================================
           LANGUAGE SELECTOR
        ======================================== */
        .lang-selector {
            position: relative;
            margin-left: 12px;
        }
        .lang-btn {
            display: flex;
            align-items: center;
            gap: 6px;
            padding: 6px 12px;
            background: rgba(255,255,255,0.06);
            border: 1px solid rgba(255,255,255,0.1);
            border-radius: var(--radius-full);
            color: var(--text-secondary);
            font-family: var(--font-body);
            font-size: 12px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
            letter-spacing: 0.03em;
            text-transform: uppercase;
        }
        .lang-btn:hover {
            background: rgba(255,255,255,0.1);
            border-color: rgba(255,255,255,0.2);
            color: #fff;
        }
        .lang-btn .lang-flag {
            font-size: 16px;
            line-height: 1;
        }
        .lang-btn .lang-chevron {
            width: 12px;
            height: 12px;
            transition: transform 0.3s;
        }
        .lang-selector.open .lang-chevron {
            transform: rotate(180deg);
        }
        .lang-dropdown {
            position: absolute;
            top: calc(100% + 8px);
            right: 0;
            min-width: 160px;
            background: rgba(20, 20, 20, 0.95);
            backdrop-filter: blur(30px);
            -webkit-backdrop-filter: blur(30px);
            border: 1px solid rgba(255,255,255,0.1);
            border-radius: 12px;
            padding: 6px;
            opacity: 0;
            visibility: hidden;
            transform: translateY(-8px);
            transition: all 0.25s ease;
            z-index: 1001;
            box-shadow: 0 16px 48px rgba(0,0,0,0.5);
        }
        .lang-selector.open .lang-dropdown {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }
        .lang-option {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 10px 14px;
            border-radius: 8px;
            cursor: pointer;
            transition: background 0.2s;
            font-size: 13px;
            color: var(--text-secondary);
            font-family: var(--font-body);
            border: none;
            background: none;
            width: 100%;
            text-align: left;
        }
        .lang-option:hover {
            background: rgba(255,255,255,0.08);
            color: #fff;
        }
        .lang-option.active {
            color: var(--accent);
            font-weight: 600;
        }
        .lang-option .lang-flag {
            font-size: 18px;
        }
        @media (max-width: 768px) {
            .lang-selector { margin-left: 8px; }
            .lang-btn { padding: 5px 8px; font-size: 11px; }
            .lang-btn .lang-code-text { display: none; }
            .lang-dropdown { right: -8px; }
        }

        /* ========================================
           HERO
        ======================================== */
        .hero {
            position: relative;
            min-height: 100vh;
            display: flex;
            align-items: flex-start;
            justify-content: center;
            overflow: hidden;
            padding-top: 100px;
            background: #0a0a0a;
        }

        .hero-grid {
            display: flex;
            justify-content: center;
            width: 100%;
        }

        /* === Hero scene (Sellix-style, brand orange) ===
           Layer order (z): stars(0) < glow(1) < globe(2) < trails(3) < veil(4) < text(5) */
        .hero .social-proof-ticker { display: none; } /* free vertical space for the globe */

        /* Drifting starfield — spans the whole hero */
        .hero-stars {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            z-index: 0;
            pointer-events: none;
            display: block;
        }

        /* Dark veil so the headline stays readable over the scene */
        .hero::after {
            content: "";
            position: absolute;
            inset: 0;
            z-index: 4;
            pointer-events: none;
            background: radial-gradient(ellipse 78% 46% at 50% 30%,
                rgba(10,10,10,0.92) 0%,
                rgba(10,10,10,0.74) 38%,
                rgba(10,10,10,0.34) 56%,
                rgba(10,10,10,0) 72%);
        }

        .hero-globe-wrap {
            position: absolute;
            left: 50%;
            top: 54%;
            bottom: auto;
            transform: translate(-50%, -50%);
            width: min(720px, 96vw);
            aspect-ratio: 1;
            z-index: 2;
            pointer-events: none;
        }
        .hero-globe {
            position: relative;
            width: 100%;
            height: 100%;
            display: block;
            opacity: 0;
            transition: opacity 1.2s ease;
            z-index: 2;
            pointer-events: none;   /* never block the buttons underneath the text */
        }
        /* Node-network canvas (arrows between city nodes) — full-hero, above the veil */
        .hero-trails {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            z-index: 5;
            pointer-events: none;
        }
        @media (max-width: 1023px) { .hero-trails { display: none; } }

        /* ===== Movies carousel: drag-to-scroll affordance ===== */
        .hub-gallery { cursor: grab; }
        .hub-gallery.dragging { cursor: grabbing; scroll-behavior: auto; user-select: none; }
        .hub-gallery.dragging img { pointer-events: none; }
        .hub-gallery img { -webkit-user-drag: none; user-select: none; }

        /* ========================================
           LIVE & UPCOMING FOOTBALL STRIP
        ======================================== */
        .football-strip { padding: 64px 0 56px; position: relative; }
        .fb-rail {
            display: flex; gap: 16px; overflow-x: auto;
            padding: 26px 20px 14px; margin: 0 -20px;
            scroll-snap-type: x proximity; -webkit-overflow-scrolling: touch;
            scrollbar-width: none;
        }
        .fb-rail::-webkit-scrollbar { display: none; }
        .fb-card {
            flex: 0 0 280px; scroll-snap-align: start;
            background: rgba(18,18,22,0.72);
            -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px);
            border: 1px solid rgba(255,255,255,0.08); border-radius: 18px;
            padding: 18px; display: flex; flex-direction: column; gap: 16px;
            transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
        }
        .fb-card:hover { transform: translateY(-4px); border-color: rgba(255,87,34,0.4);
                         box-shadow: 0 18px 40px rgba(0,0,0,0.4); }
        .fb-card--live { border-color: rgba(255,87,34,0.35); box-shadow: 0 0 30px rgba(255,87,34,0.1); }
        .fb-card-top { display: flex; align-items: center; justify-content: space-between; }
        .fb-badge { font-size: 10px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase;
                    padding: 4px 10px; border-radius: 999px; background: rgba(255,255,255,0.07);
                    color: var(--text-secondary); }
        .fb-badge--live { background: rgba(255,59,48,0.15); color: #ff5b4d;
                          display: inline-flex; align-items: center; gap: 6px; }
        .fb-badge--live i { width: 6px; height: 6px; border-radius: 50%; background: #ff3b30;
                            box-shadow: 0 0 8px #ff3b30; animation: popinBlink 1s steps(2) infinite; }
        .fb-league { font-size: 11px; color: var(--text-muted); font-weight: 600; }
        .fb-match { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
        .fb-team { display: inline-flex; align-items: center; gap: 8px; font-weight: 700; color: #fff;
                   font-size: 15px; flex: 1; min-width: 0; }
        .fb-team--r { justify-content: flex-end; text-align: right; }
        .fb-flag { font-size: 22px; line-height: 1; }
        .fb-score { font-family: var(--font-display); font-weight: 800; font-size: 22px;
                    color: var(--accent); white-space: nowrap; }
        .fb-vs { font-size: 12px; font-weight: 700; color: var(--text-muted); }
        .fb-card-foot { display: flex; align-items: center; justify-content: space-between; }
        .fb-min { font-size: 13px; font-weight: 700; color: #ff5b4d; }
        .fb-count { font-family: var(--font-display); font-weight: 700; font-size: 15px; color: #fff;
                    font-variant-numeric: tabular-nums; }
        .fb-watch { font-size: 12px; font-weight: 700; color: var(--accent); text-decoration: none;
                    white-space: nowrap; }
        .fb-watch:hover { text-decoration: underline; }
        .fb-watch--soon { color: var(--text-secondary); }
        @media (max-width: 600px) { .fb-card { flex-basis: 260px; } }
        /* Vibrant orange atmospheric halo behind the globe */
        .hero-glow {
            position: absolute;
            left: 50%;
            top: 54%;
            bottom: auto;
            transform: translate(-50%, -50%);
            width: min(860px, 108vw);
            height: min(860px, 108vw);
            border-radius: 50%;
            background: radial-gradient(circle at center,
                rgba(255,107,40,0.38) 30%,
                rgba(255,87,34,0.18) 48%,
                rgba(255,87,34,0.06) 60%,
                transparent 68%);
            filter: blur(38px);
            z-index: 1;
            pointer-events: none;
        }
        @media (min-width: 1024px) {
            /* Detach the globe: full-bleed (wider than the viewport so its sphere
               edges fall off-screen — no side cutoffs), anchored to the bottom,
               top arc rising behind the headline (Sellix layout). */
            .hero-globe-wrap {
                top: auto !important;
                bottom: -88% !important;
                left: 50% !important;
                transform: translateX(-50%)!important;
                width: min(1600px, 120vw)!important;
                min-width: 100vw;
            }
            /* Orange atmospheric halo sits behind the headline */
            .hero-glow {
                top: 40%;
                bottom: auto;
                width: min(900px, 64vw)!important;
                height: min(900px, 64vw) !important;
            }
        }
   
        @media (max-width: 767px) {
            .hero-grid {
                width: 100%;
                
            }
        }

        /* ---- HERO CONTENT (centered over globe) ---- */
        .hero-content {
            position: relative;
            z-index: 6;
            padding: 0 20px;
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            max-width: 780px;
            margin: 0 auto;
        }

        @media (max-width: 1023px) {
            .hero-content {
                padding: 40px 20px;
                text-align: center;
                align-items: center;
            }
        }

        /* Trust line */
        .hero-trust-line {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-family: var(--font-body);
            font-size: 13px;
            color: rgba(255, 255, 255, 0.6);
            margin-bottom: 24px;
        }

        .hero-trust-line svg {
            flex-shrink: 0;
        }

        /* Headline */
        .hero-title {
            font-family: var(--font-display);
            font-size: clamp(32px, 3.6vw, 50px);
            font-weight: 800;
            line-height: 1.1;
            letter-spacing: -0.03em;
            color: #fff;
            margin-bottom: 16px;
            text-shadow: 0 2px 28px rgba(0, 0, 0, 0.55);
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            text-rendering: optimizeLegibility;
        }

        .hero-title-accent {
            color: #fff;
            position: relative;
            display: inline;
        }

        .hero-title-accent::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: 2px;
            width: 100%;
            height: 3px;
            background: var(--accent);
            border-radius: 2px;
            opacity: 0.9;
        }

        .hero-title-sub {
            display: block;
            margin-top: 12px;
            font-size: 0.35em;
            font-weight: 600;
            color: rgba(255, 255, 255, 0.35);
            letter-spacing: 0;
        }

        /* Description */
        .hero-desc {
            font-family: var(--font-body);
            font-size: 15px;
            font-weight: 400;
            color: rgba(255, 255, 255, 0.75);
            line-height: 1.6;
            max-width: 460px;
            margin: 0 auto 22px;
            text-shadow: 0 1px 12px rgba(0, 0, 0, 0.6);
        }

        @media (max-width: 1023px) {
            .hero-desc {
                margin-left: auto;
                margin-right: auto;
            }
        }

        /* CTA buttons */
        .hero-ctas {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
        }

        @media (max-width: 1023px) {
            .hero-ctas {
                justify-content: center;
            }
        }

        .hero-btn {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 16px 36px;
            border-radius: 999px;
            font-family: var(--font-display);
            font-size: 15px;
            font-weight: 700;
            letter-spacing: 0.02em;
            text-decoration: none;
            transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            cursor: pointer;
            border: none;
        }

        .hero-btn-primary {
            background: var(--accent);
            color: #fff;
            box-shadow: 0 4px 24px rgba(255, 87, 34, 0.35);
        }

        .hero-btn-primary:hover {
            transform: scale(1.03);
            box-shadow: 0 8px 40px rgba(255, 87, 34, 0.5);
        }

        .hero-btn-secondary {
            background: rgba(12, 12, 14, 0.55);
            -webkit-backdrop-filter: blur(8px);
            backdrop-filter: blur(8px);
            color: #fff;
            border: 1.5px solid rgba(255, 255, 255, 0.35);
        }

        .hero-btn-secondary:hover {
            background: rgba(20, 20, 24, 0.7);
            border-color: rgba(255, 255, 255, 0.55);
        }

        .hero-btn svg {
            width: 16px;
            height: 16px;
        }

        /* Stats row */
        .hero-stats {
            display: flex;
            align-items: flex-start;
            margin-top: 48px;
        }

        @media (max-width: 1023px) {
            .hero-stats {
                justify-content: center;
            }
        }

        .hero-stat {
            flex: 1;
            padding: 0 28px;
            display: flex;
            flex-direction: column;
        }

        .hero-stat:first-child {
            padding-left: 0;
        }

        .hero-stat:last-child {
            padding-right: 0;
        }

        .hero-stat-divider {
            width: 1px;
            align-self: stretch;
            background: rgba(255, 255, 255, 0.1);
            flex-shrink: 0;
        }

        .hero-stat-up {
            font-family: var(--font-body);
            font-size: 10px;
            font-weight: 600;
            letter-spacing: 0.15em;
            text-transform: uppercase;
            color: rgba(255, 255, 255, 0.35);
            margin-bottom: 4px;
        }

        .hero-stat-number {
            font-family: var(--font-display);
            font-size: 32px;
            font-weight: 800;
            color: #fff;
            line-height: 1.1;
        }

        .hero-stat-desc {
            font-family: var(--font-body);
            font-size: 12px;
            color: rgba(255, 255, 255, 0.45);
            margin-top: 4px;
        }

        /* ---- CAROUSEL COLUMNS (right side) ---- */
        .hero-carousels {
            display: grid;
            grid-template-columns: 1fr 1fr 1fr;
            gap: 10px;
            height: 100vh;
            overflow: hidden;
            position: relative;
            -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 10%, black 90%, transparent 100%);
            mask-image: linear-gradient(to bottom, transparent 0%, black 10%, black 90%, transparent 100%);
        }

        .hero-carousel-col {
            display: flex;
            flex-direction: column;
            gap: 12px;
            height: max-content;
            will-change: transform;
            transform: translateZ(0);
            backface-visibility: hidden;
        }

        /* Column A — scrolls UP, slow */
        .hero-carousel-col--A {
            animation: heroScrollUp 34s linear infinite;
        }

        /* Column B — scrolls DOWN, medium, offset */
        .hero-carousel-col--B {
            animation: heroScrollDown 28s linear infinite;
            margin-top: -120px;
        }

        /* Column C — scrolls UP, fast */
        .hero-carousel-col--C {
            animation: heroScrollUp 22s linear infinite;
            margin-top: -200px;
        }

        @keyframes heroScrollUp {
            0%   { transform: translateY(0); }
            100% { transform: translateY(-50%); }
        }

        @keyframes heroScrollDown {
            0%   { transform: translateY(-50%); }
            100% { transform: translateY(0); }
        }

        .hero-carousel-col:hover {
            animation-play-state: paused;
        }

        @media (max-width: 1023px) {
            .hero-carousels {
                grid-template-columns: 1fr 1fr;
                height: 480px;
                gap: 10px;
                padding: 0 16px;
            }
            .hero-carousel-col--C {
                display: none;
            }
        }

        @media (max-width: 480px) {
            .hero-carousels {
                grid-template-columns: 1fr 1fr;
                height: 450px !important;
                gap: 8px;
            }
        }

        /* ---- POSTER CARDS (legacy — kept for en/nl pages) ---- */
        .hero-poster {
            border-radius: 12px;
            overflow: hidden;
            flex-shrink: 0;
            width: 100%;
            position: relative;
            aspect-ratio: 2 / 3;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
            transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }

        .hero-poster:hover {
            transform: scale(1.03);
        }

        .hero-poster img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        .hero-poster::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(to top, rgba(0, 0, 0, 0.65) 0%, transparent 50%);
            pointer-events: none;
        }

        .hero-poster-title {
            position: absolute;
            bottom: 12px;
            left: 12px;
            right: 12px;
            font-family: var(--font-body);
            font-size: 12px;
            font-weight: 600;
            color: #fff;
            z-index: 2;
        }

        /* ---- NAV BUTTONS (redesigned) ---- */
        .nav-btn-white {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 10px 24px;
            background: #fff;
            color: #0a0a0a;
            border-radius: 999px;
            font-family: var(--font-display);
            font-size: 14px;
            font-weight: 700;
            text-decoration: none;
            transition: background 0.2s;
        }

        .nav-btn-white:hover {
            background: #f0f0f0;
        }

        .nav-btn-outline {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 10px 24px;
            background: transparent;
            color: #fff;
            border: 1.5px solid rgba(255, 255, 255, 0.4);
            border-radius: 999px;
            font-family: var(--font-display);
            font-size: 14px;
            font-weight: 700;
            text-decoration: none;
            transition: all 0.2s;
        }

        .nav-btn-outline:hover {
            background: rgba(255, 255, 255, 0.06);
            border-color: rgba(255, 255, 255, 0.6);
        }

        @media (max-width: 1023px) {
            .nav-btn-white,
            .nav-btn-outline {
                display: none;
            }
        }

        /* ---- MOBILE HERO ADJUSTMENTS (UX upgrade) ---- */
        @media (max-width: 1023px) {
            .hero {
                min-height: 100vh;
                padding-top: 84px;
                padding-bottom: 0;
                justify-content: flex-start;
            }
            .hero .social-proof-ticker { display: none; }
            /* Declutter: drop the redundant top label, tighten the vertical rhythm */
            .hero .hero-scroll-label { display: none; }
            .hero-title { font-size: clamp(28px, 7.2vw, 44px); margin-bottom: 12px; }
            .hero-desc { margin-bottom: 18px; }

            /* Compact the trust signals into one tidy centered row */
            .hero .trust-bar { gap: 8px; margin-top: 16px; justify-content: center; }
            .hero .trust-badge { padding: 6px 11px; font-size: 11px; }

            /* Earth sits low — a glowing dome rising from the bottom */
            .hero-globe-wrap { top: 88%; width: min(600px, 148vw); }
            .hero-glow { top: 90%; width: 150vw; height: 150vw; }

            /* Strong top-down scrim keeps all copy high-contrast over the scene (WCAG AA) */
            .hero::after {
                background: linear-gradient(to bottom,
                    rgba(10,10,10,0.94) 0%,
                    rgba(10,10,10,0.90) 46%,
                    rgba(10,10,10,0.52) 66%,
                    rgba(10,10,10,0) 82%);
            }
        }

        @media (max-width: 480px) {
            .hero-content {
                padding: 30px 16px;
            }
            .hero-title {
                font-size: clamp(28px, 7vw, 40px);
            }
            .hero-desc {
                font-size: 14px;
                margin-bottom: 28px;
            }
            .hero-stats {
                margin-top: 36px;
            }
            .hero-stat {
                padding: 0 16px;
            }
            .hero-stat-number {
                font-size: clamp(28px, 6vw, 36px);
            }
            .hero-btn {
                padding: 14px 28px;
                font-size: 13px;
                min-height: 48px;
                width: 100%;
                justify-content: center;
            }
            .hero-ctas {
                flex-direction: column;
            }
        }

        /* ========================================
           DIVIDER
        ======================================== */
        .divider {
            height: 1px;
            background: linear-gradient(90deg, transparent, var(--border), transparent);
        }

        .divider-accent {
            height: 2px;
            background: linear-gradient(90deg, transparent, var(--accent), var(--accent-light), transparent);
            opacity: 0.3;
        }

        .section-spacer {
            height: 1px;
            background: linear-gradient(90deg, transparent 5%, var(--border) 50%, transparent 95%);
            margin: 40px 0;
        }

        .section-spacer-lg {
            height: 1px;
            background: linear-gradient(90deg, transparent 5%, var(--border) 50%, transparent 95%);
            margin: 60px 0;
        }

        /* ========================================
           SECTION B: PAIN POINT
        ======================================== */
        .pain-section {
            padding: 120px 0;
            background: rgba(15, 15, 15, 0.35);
            backdrop-filter: blur(40px);
            -webkit-backdrop-filter: blur(40px);
            border-top: 1px solid rgba(255,255,255,0.04);
            border-bottom: 1px solid rgba(255,255,255,0.03);
            position: relative;
            overflow: hidden;
        }

        .pain-inner {
            display: grid;
            grid-template-columns: 1fr;
            gap: 60px;
            align-items: center;
        }

        @media (min-width: 1024px) {
            .pain-inner { grid-template-columns: 320px 1fr; gap: 80px; }
        }

        .pain-visual {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 20px;
        }

        .pain-icon-wrap {
            position: relative;
            width: 140px;
            height: 140px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .pain-buffer-icon {
            width: 140px;
            height: 140px;
            animation: painSpin 2s linear infinite;
        }

        @keyframes painSpin {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }

        .pain-cross {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 60px;
            height: 60px;
            animation: painPulse 2s ease-in-out infinite;
        }

        @keyframes painPulse {
            0%, 100% { opacity: 1; transform: translate(-50%, -50%) scale(1); }
            50% { opacity: 0.7; transform: translate(-50%, -50%) scale(1.1); }
        }

        .pain-visual-label {
            font-size: 12px;
            font-weight: 700;
            letter-spacing: 0.15em;
            text-transform: uppercase;
            color: #ff3b30;
        }

        .pain-stats {
            display: flex;
            gap: 32px;
            margin-top: 36px;
            flex-wrap: wrap;
        }

        .pain-stat {
            display: flex;
            flex-direction: column;
            gap: 4px;
        }

        .pain-stat-num {
            font-family: var(--font-display);
            font-size: 28px;
            font-weight: 800;
            color: var(--accent);
        }

        .pain-stat-label {
            font-size: 12px;
            color: var(--text-muted);
            letter-spacing: 0.04em;
        }

        /* ========================================
           SECTION C: LOGO MARQUEE
        ======================================== */
        /* ========================================
           UNIFIED CONTENT HUB
        ======================================== */
        .content-hub {
            padding: 60px 0 80px;
            background: rgba(12, 12, 12, 0.4);
            backdrop-filter: blur(40px);
            -webkit-backdrop-filter: blur(40px);
            border-top: 1px solid rgba(255,255,255,0.04);
            border-bottom: 1px solid rgba(255,255,255,0.03);
            overflow: hidden;
            position: relative;
        }

        .hub-marquee-wrap {
            margin-top: 32px;
            overflow: hidden;
            opacity: 0.8;
            -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 10%, #000 90%, transparent 100%);
            mask-image: linear-gradient(90deg, transparent 0%, #000 10%, #000 90%, transparent 100%);
        }

        .marquee-track {
            display: flex;
            gap: 48px;
            width: max-content;
            animation: marqueeScroll 30s linear infinite;
            will-change: transform;
            transform: translateZ(0);
        }

        @keyframes marqueeScroll {
            0%   { transform: translateX(0); }
            100% { transform: translateX(-50%); }
        }

        .marquee-track:hover {
            animation-play-state: paused;
        }

        .marquee-item {
            display: flex;
            align-items: center;
            gap: 12px;
            flex-shrink: 0;
            padding: 10px 24px;
            background: rgba(255,255,255,0.04);
            border: 1px solid rgba(255,255,255,0.06);
            border-radius: var(--radius-full);
            transition: all 0.3s ease;
        }

        .marquee-item:hover {
            background: rgba(255,255,255,0.08);
            border-color: rgba(255,106,0,0.25);
        }

        .marquee-item span {
            font-size: 13px;
            font-weight: 600;
            color: var(--text-secondary);
            white-space: nowrap;
        }

        .mq-logo {
            font-family: var(--font-display);
            font-size: 18px !important;
        }

        /* Bridge copy between marquee and gallery */
        .hub-bridge {
            text-align: center;
            font-size: 15px;
            color: var(--text-muted);
            margin: 28px auto 0;
            max-width: 520px;
            padding: 0 20px;
            line-height: 1.6;
        }

        /* Gallery title */
        .hub-gallery-title {
            text-align: center;
            font-size: clamp(18px, 2.5vw, 24px);
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.06em;
            margin: 36px 0 24px;
        }
        .hub-gallery-title .text-gradient {
            position: relative;
        }
        .hub-gallery-title .text-gradient::after {
            content: '';
            position: absolute;
            inset: -6px -16px;
            background: radial-gradient(ellipse, rgba(255,87,34,0.2) 0%, transparent 70%);
            border-radius: 50%;
            z-index: -1;
            pointer-events: none;
        }

        /* Netflix-style horizontal carousel */
        .carousel-wrap {
            position: relative;
            margin: 0 -20px;
            padding: 0 20px;
        }

        .hub-gallery {
            display: flex;
            gap: 14px;
            overflow-x: auto;
            overflow-y: hidden;
            scroll-snap-type: x mandatory;
            scroll-behavior: smooth;
            -webkit-overflow-scrolling: touch;
            scrollbar-width: none;
            padding: 10px 0 20px;
            -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 3%, #000 97%, transparent 100%);
            mask-image: linear-gradient(90deg, transparent 0%, #000 3%, #000 97%, transparent 100%);
        }
        .hub-gallery::-webkit-scrollbar { display: none; }

        /* Carousel arrow buttons */
        .carousel-arrow {
            display: none;
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            z-index: 10;
            width: 44px;
            height: 44px;
            border-radius: 50%;
            border: 1px solid rgba(255,255,255,0.15);
            background: rgba(12, 12, 12, 0.85);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            color: #fff;
            cursor: pointer;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            box-shadow: 0 4px 16px rgba(0,0,0,0.4);
        }
        .carousel-arrow:hover {
            background: rgba(255,87,34,0.25);
            border-color: rgba(255,87,34,0.5);
            box-shadow: 0 4px 24px rgba(255,87,34,0.3);
        }
        .carousel-arrow--left { left: 4px; }
        .carousel-arrow--right { right: 4px; }

        @media (min-width: 769px) {
            .carousel-arrow { display: flex; }
        }

        .hub-poster {
            position: relative;
            border-radius: var(--radius-lg);
            overflow: hidden;
            cursor: pointer;
            transition: transform 0.45s var(--ease-out), box-shadow 0.4s ease;
            contain: layout style paint;
            flex: 0 0 180px;
            scroll-snap-align: start;
        }
        @media (min-width: 769px) {
            .hub-poster { flex: 0 0 200px; }
        }
        @media (min-width: 1200px) {
            .hub-poster { flex: 0 0 220px; }
        }
        .hub-poster:hover {
            transform: scale(1.08);
            z-index: 3;
            box-shadow: 0 16px 48px rgba(0,0,0,0.6), 0 0 30px rgba(255,87,34,0.12);
        }
        .hub-poster img {
            width: 100%;
            aspect-ratio: 2/3;
            object-fit: cover;
            display: block;
            transition: transform 0.5s var(--ease-out);
        }
        .hub-poster:hover img {
            transform: scale(1.08);
        }

        .hub-poster-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(to top, rgba(10,10,10,0.92) 0%, rgba(10,10,10,0.15) 50%, transparent 100%);
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            padding: 14px;
            opacity: 0;
            transition: opacity 0.35s ease;
            will-change: opacity;
        }
        .hub-poster:hover .hub-poster-overlay {
            opacity: 1;
        }

        .hub-poster-badge {
            display: inline-block;
            font-size: 9px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            color: #fff;
            background: linear-gradient(135deg, var(--accent), var(--accent-light));
            padding: 3px 8px;
            border-radius: var(--radius-full);
            margin-bottom: 6px;
            width: fit-content;
        }
        .hub-poster-title {
            font-size: 14px;
            font-weight: 700;
            color: #fff;
        }

        @media (max-width: 480px) {
            .hub-poster-overlay { opacity: 1; }
            .hub-poster-badge { font-size: 8px; }
            .hub-poster-title { font-size: 12px; }
        }

        /* (Old PRICING 3-COL removed — replaced by VIP PRICING 3-card + tabs) */

        /* ========================================
           SECTION E: FAQ
        ======================================== */
        .faq-section {
            padding: 120px 0 80px;
            background: rgba(12, 12, 12, 0.35);
            backdrop-filter: blur(40px);
            -webkit-backdrop-filter: blur(40px);
            border-top: 1px solid rgba(255,255,255,0.04);
            border-bottom: 1px solid rgba(255,255,255,0.03);
            content-visibility: auto;
            contain-intrinsic-size: auto 800px;
        }

        .faq-grid {
            max-width: 720px;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .faq-item {
            background: rgba(30, 30, 30, 0.4);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border: 1px solid rgba(255,255,255,0.08);
            border-radius: var(--radius-md);
            overflow: hidden;
            transition: border-color 0.3s ease;
            contain: layout style paint;
        }

        .faq-item:hover {
            border-color: rgba(255,106,0,0.2);
        }

        .faq-item.open {
            border-color: rgba(255,106,0,0.35);
        }

        .faq-question {
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 16px;
            padding: 20px 24px;
            background: none;
            border: none;
            cursor: pointer;
            font-family: var(--font-display);
            font-size: 16px;
            font-weight: 600;
            color: var(--text-primary);
            text-align: left;
            transition: color 0.3s;
        }

        .faq-question:hover { color: var(--accent); }

        .faq-chevron {
            flex-shrink: 0;
            color: var(--text-muted);
            transition: transform 0.3s ease, color 0.3s;
        }

        .faq-item.open .faq-chevron {
            transform: rotate(180deg);
            color: var(--accent);
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.35s ease, padding 0.35s ease;
        }

        .faq-item.open .faq-answer {
            max-height: 300px;
        }

        .faq-answer p {
            padding: 0 24px 20px;
            font-size: 14px;
            line-height: 1.75;
            color: var(--text-secondary);
        }

        /* Guarantee Banner */
        .guarantee-banner {
            max-width: 720px;
            margin: 60px auto 0;
            display: flex;
            align-items: center;
            gap: 24px;
            padding: 32px 36px;
            background: rgba(255,106,0,0.06);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border: 1.5px solid rgba(255,106,0,0.2);
            border-radius: var(--radius-lg);
        }

        .guarantee-icon {
            flex-shrink: 0;
            width: 64px;
            height: 64px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, var(--accent), var(--accent-light));
            border-radius: 50%;
            color: #fff;
        }

        .guarantee-icon svg {
            width: 28px;
            height: 28px;
        }

        .guarantee-text h3 {
            font-size: 18px;
            font-weight: 700;
            color: var(--text-primary);
            margin-bottom: 4px;
        }

        .guarantee-text p {
            font-size: 14px;
            color: var(--text-secondary);
            line-height: 1.6;
        }

        @media (max-width: 600px) {
            .guarantee-banner {
                flex-direction: column;
                text-align: center;
                padding: 28px 24px;
            }
            .pain-stats { justify-content: center; }
        }


        /* Pricing badge (kept) */
        .pricing-badge {
            display: inline-block;
            font-size: 10px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            padding: 5px 14px;
            background: var(--accent-subtle);
            color: var(--accent);
            border-radius: var(--radius-full);
            margin-bottom: 20px;
        }


        /* ========================================
           TRUST BADGES & MARKETING ELEMENTS
        ======================================== */
        .trust-bar {
            display: flex;
            flex-wrap: wrap;
            gap: 16px;
            margin-top: 28px;
            align-items: center;
        }
        .trust-badge {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 6px 14px;
            background: rgba(12, 12, 14, 0.5);
            -webkit-backdrop-filter: blur(8px);
            backdrop-filter: blur(8px);
            border: 1px solid rgba(255,255,255,0.12);
            border-radius: var(--radius-full);
            font-size: 12px;
            font-weight: 600;
            color: var(--text-secondary);
            transition: all 0.3s;
        }
        .trust-badge:hover {
            border-color: rgba(255,106,0,0.25);
            background: rgba(255,255,255,0.06);
        }
        .trust-badge svg {
            width: 14px;
            height: 14px;
            flex-shrink: 0;
        }
        .trust-badge .trust-icon-green {
            color: #4caf50;
        }
        .trust-badge .trust-icon-gold {
            color: #FFD700;
        }
        .trust-badge .trust-icon-orange {
            color: var(--accent);
        }
        .trust-badge .trust-icon-blue {
            color: #00a8e1;
        }

        /* Green accent for trust/success elements */
        .text-green { color: #4caf50; }
        .text-gold { color: #FFD700; }

        /* Social proof counter bar */
        .social-proof-bar {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 28px;
            margin: 32px auto 0;
            padding: 20px 28px;
            background: rgba(202, 0, 0, 0.03);
            border: 1px solid rgba(255,255,255,0.06);
            border-radius: var(--radius-lg);
            max-width: 700px;
        }
        .social-proof-item {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 14px;
            font-weight: 600;
            color: var(--text-secondary);
        }
        .social-proof-item svg {
            width: 16px;
            height: 16px;
            color: #4caf50;
        }

        /* CTA glow animation */
        .hero-btn-primary,
        .vip-card--featured .vip-card-btn {
            animation: ctaGlow 2.5s ease-in-out infinite;
        }
        @keyframes ctaGlow {
            0%, 100% { opacity: 0.6; }
            50% { opacity: 1; }
        }

        /* Save badge on pricing */
        .save-badge {
            display: inline-block;
            padding: 6px 16px;
            background: linear-gradient(135deg, #4caf50, #66bb6a);
            color: #fff;
            font-size: 11px;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 0.08em;
            border-radius: var(--radius-full);
            margin-bottom: 16px;
        }

        /* Money-back guarantee badge */
        .guarantee-seal {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 8px 16px;
            background: rgba(76,175,80,0.08);
            border: 1px solid rgba(76,175,80,0.2);
            border-radius: var(--radius-full);
            font-size: 11px;
            font-weight: 700;
            color: #4caf50;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            margin-top: 12px;
        }
        .guarantee-seal svg {
            width: 14px;
            height: 14px;
        }

        /* Urgency text styling */
        .urgency-text {
            font-size: 14px;
            color: var(--accent);
            font-weight: 600;
            margin-top: 8px;
        }

        /* Hub device compatibility badge */
        .device-compat-badge {
            display: flex;
            justify-content: center;
            gap: 20px;
            flex-wrap: wrap;
            margin-top: 16px;
            padding: 0 20px;
        }
        .device-compat-badge span {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            font-size: 12px;
            color: var(--text-muted);
            font-weight: 500;
        }
        .device-compat-badge svg {
            width: 14px;
            height: 14px;
            color: #4caf50;
        }

        /* Pricing metrics row */
        .pricing-metrics {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 24px;
            margin-top: 20px;
        }
        .pricing-metric {
            display: flex;
            align-items: center;
            gap: 6px;
            font-size: 13px;
            font-weight: 600;
            color: var(--text-secondary);
        }
        .pricing-metric svg {
            width: 16px;
            height: 16px;
            color: #4caf50;
        }

        /* FAQ trust header */
        .faq-trust-header {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 8px;
            margin-bottom: 12px;
            font-size: 12px;
            font-weight: 700;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            color: #4caf50;
        }
        .faq-trust-header svg {
            width: 16px;
            height: 16px;
        }

        @media (max-width: 600px) {
            .trust-bar { justify-content: center; }
            .social-proof-bar { flex-direction: column; align-items: center; gap: 14px; }
        }

        /* ========================================
           REVEAL ANIMATIONS
           Visible by default — hidden only when
           reveals-ready is set on <body>
        ======================================== */
        .reveal, .reveal-left, .reveal-right {
            opacity: 1;
            transform: none;
            transition: opacity 0.6s ease, transform 0.6s ease;
        }

        /* When IO reveals are ready, hide elements for scroll-triggered reveal */
        .reveals-ready .reveal { opacity: 0; transform: translateY(50px); }
        .reveals-ready .reveal-left { opacity: 0; transform: translateX(-50px); }
        .reveals-ready .reveal-right { opacity: 0; transform: translateX(50px); }

        /* IO-based reveal */
        .revealed {
            opacity: 1 !important;
            transform: none !important;
        }

        /* ========================================
           REDUCED MOTION
        ======================================== */
        @media (prefers-reduced-motion: reduce) {
            *, *::before, *::after {
                animation-duration: 0.01ms !important;
                transition-duration: 0.01ms !important;
                scroll-behavior: auto !important;
            }
            .reveal, .reveal-left, .reveal-right,
            .reveals-ready .reveal, .reveals-ready .reveal-left, .reveals-ready .reveal-right {
                opacity: 1 !important;
                transform: none !important;
            }
        }

        /* ========================================
           PERFORMANCE
           • content-visibility skips layout/paint of off-screen sections,
             cutting initial render work (faster FCP/LCP, smoother scroll).
           • scroll-padding offsets in-page anchors so they clear the sticky nav.
        ======================================== */
        html { scroll-padding-top: 84px; }
        @media (max-width: 768px) { html { scroll-padding-top: 70px; } }

        .pain-section,
        .content-hub,
        .reviews-section,
        .live-sports-section,
        .faq-section,
        .blog-section,
        .contact-section {
            content-visibility: auto;
            contain-intrinsic-size: 1px 1000px;
        }

        /* ========================================
           HERO POP-INS — content "broadcasting" from the globe.
           Movie/“watching”/live-football cards that emerge from glowing
           connection nodes around the earth. Hidden on mobile to keep it clean.
        ======================================== */
        .hero-popins { position: absolute; inset: 0; z-index: 5; pointer-events: none; overflow: hidden; }
        .popin {
            position: absolute;
            transform: translate(-50%, 14px) scale(0.92);
            opacity: 0;
            transition: opacity .5s ease, transform .55s cubic-bezier(.2,.8,.2,1);
            display: flex; align-items: center; gap: 10px;
            padding: 8px 13px 8px 8px; border-radius: 14px;
            background: rgba(14,14,18,0.74);
            -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px);
            border: 1px solid rgba(255,140,60,0.28);
            box-shadow: 0 12px 34px rgba(0,0,0,0.5), 0 0 20px rgba(255,87,34,0.18);
            white-space: nowrap; will-change: transform, opacity;
        }
        .popin.show { opacity: 1; transform: translate(-50%, 0) scale(1); }
        /* glowing connection node the card rises from */
        .popin-node {
            position: absolute; left: 50%; bottom: -26px; width: 9px; height: 9px;
            border-radius: 50%; background: #FF8A3C; transform: translateX(-50%);
            box-shadow: 0 0 14px 3px rgba(255,87,34,0.75);
        }
        .popin-node::after {
            content: ""; position: absolute; inset: -5px; border-radius: 50%;
            border: 1px solid rgba(255,138,60,0.6); animation: popinPulse 1.5s ease-out infinite;
        }
        @keyframes popinPulse { 0%{transform:scale(.5);opacity:1} 100%{transform:scale(2.6);opacity:0} }
        .popin-thumb { width: 40px; height: 56px; border-radius: 8px; object-fit: cover; flex-shrink: 0;
                       background: #1a1a1f; }
        .popin-meta { display: flex; flex-direction: column; gap: 2px; }
        .popin-live { display: inline-flex; align-items: center; gap: 5px; font-size: 10px; font-weight: 800;
                      letter-spacing: .06em; color: #ff5b4d; text-transform: uppercase; }
        .popin-live .dot { width: 6px; height: 6px; border-radius: 50%; background: #ff3b30;
                           box-shadow: 0 0 8px #ff3b30; animation: popinBlink 1s steps(2) infinite; }
        @keyframes popinBlink { 50% { opacity: .3; } }
        .popin-title { font-size: 13px; font-weight: 700; color: #fff; }
        .popin-sub   { font-size: 11px; color: rgba(255,255,255,0.62); }
        .popin-flag  { font-size: 20px; line-height: 1; }
        .popin-teams { font-size: 13px; font-weight: 700; color: #fff; }
        .popin-teams .sc { color: #FF8A3C; margin: 0 2px; }
        .popin-league{ font-size: 10px; color: rgba(255,255,255,0.5); }
        @media (max-width: 1023px) { .hero-popins { display: none; } }

        /* ========================================
           TRUSTPILOT RATING (reviews section)
        ======================================== */
        .trustpilot-badge {
            display: inline-flex; align-items: center; gap: 14px; flex-wrap: wrap;
            justify-content: center; margin-top: 18px;
            padding: 12px 20px; border-radius: 14px;
            background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08);
            -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
        }
        .tp-excellent { font-weight: 800; color: #fff; font-size: 15px; letter-spacing: -0.01em; }
        .tp-stars { display: flex; gap: 3px; }
        .tp-star { width: 26px; height: 26px; background: #00b67a; border-radius: 3px;
                   display: flex; align-items: center; justify-content: center; }
        .tp-star svg { width: 17px; height: 17px; }
        .tp-logo { display: inline-flex; align-items: center; gap: 5px; font-weight: 800; color: #fff; font-size: 15px; }
        .tp-logo svg { width: 18px; height: 18px; }
        .tp-count { font-size: 13px; color: var(--text-secondary); }
        .tp-count strong { color: #fff; }
        @media (max-width: 600px) { .trustpilot-badge { gap: 10px; padding: 10px 14px; } .tp-star { width: 22px; height: 22px; } }


        /* ========================================
           LIVE SPORTS SECTION
        ======================================== */
        .live-sports-section {
            padding: 120px 0;
            background: rgba(12, 12, 12, 0.4);
            backdrop-filter: blur(40px);
            -webkit-backdrop-filter: blur(40px);
            border-top: 1px solid rgba(255,255,255,0.04);
            border-bottom: 1px solid rgba(255,255,255,0.03);
            position: relative;
            overflow: hidden;
        }

        .live-sports-section::before {
            content: '';
            position: absolute;
            top: -150px;
            left: 50%;
            transform: translateX(-50%);
            width: 800px;
            height: 500px;
            background: radial-gradient(ellipse, rgba(255,87,34,0.06) 0%, transparent 70%);
            pointer-events: none;
        }

        .live-sports-header {
            text-align: center;
            margin-bottom: 56px;
            position: relative;
            z-index: 1;
        }

        .live-sports-header h2 {
            font-size: clamp(28px, 4.5vw, 52px);
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: -0.02em;
            margin-bottom: 16px;
        }

        .live-sports-header p {
            font-size: 16px;
            color: var(--text-secondary);
            max-width: 480px;
            margin: 0 auto;
            line-height: 1.7;
        }

        .live-sports-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 20px;
            position: relative;
            z-index: 1;
        }

        @media (min-width: 768px) {
            .live-sports-grid { grid-template-columns: repeat(3, 1fr); }
        }

        .sports-card {
            position: relative;
            border-radius: var(--radius-lg);
            overflow: hidden;
            aspect-ratio: 3 / 4;
            cursor: pointer;
            border: 1px solid rgba(255,255,255,0.08);
            transition: transform 0.5s var(--ease-out), box-shadow 0.5s var(--ease-out);
            contain: layout style paint;
        }

        @media (min-width: 768px) {
            .sports-card { aspect-ratio: 4 / 5; }
        }

        .sports-card:hover {
            transform: scale(1.03) translateY(-6px);
            box-shadow: 0 24px 60px rgba(0,0,0,0.5), 0 0 40px rgba(255,87,34,0.08);
            border-color: rgba(255,106,0,0.3);
        }

        .sports-card-bg {
            position: absolute;
            inset: 0;
            background-size: cover;
            background-position: center;
            transition: transform 0.6s var(--ease-out), filter 0.5s ease;
        }

        .sports-card:hover .sports-card-bg {
            transform: scale(1.08);
            filter: brightness(0.35);
        }

        .sports-card-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg, rgba(0,0,0,0.15) 0%, rgba(0,0,0,0.25) 40%, rgba(0,0,0,0.8) 100%);
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            padding: 28px;
            transition: background 0.5s ease;
        }

        .sports-card:hover .sports-card-overlay {
            background: linear-gradient(180deg, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.5) 40%, rgba(0,0,0,0.9) 100%);
        }

        /* LIVE badge */
        .sports-live-badge {
            position: absolute;
            top: 20px;
            left: 20px;
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 6px 14px;
            background: rgba(220, 38, 38, 0.9);
            backdrop-filter: blur(8px);
            border-radius: var(--radius-full);
            font-size: 11px;
            font-weight: 800;
            letter-spacing: 0.12em;
            text-transform: uppercase;
            color: #fff;
            z-index: 2;
        }

        .sports-live-dot {
            width: 7px;
            height: 7px;
            border-radius: 50%;
            background: #fff;
            animation: livePulse 1.5s ease-in-out infinite;
        }

        @keyframes livePulse {
            0%, 100% { opacity: 1; transform: scale(1); }
            50% { opacity: 0.6; transform: scale(1.8); }
        }

        /* Event badge (Main Event) */
        .sports-event-badge {
            position: absolute;
            top: 20px;
            left: 20px;
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 6px 14px;
            background: rgba(255,87,34,0.9);
            backdrop-filter: blur(8px);
            border-radius: var(--radius-full);
            font-size: 11px;
            font-weight: 800;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            color: #fff;
            z-index: 2;
        }

        .sports-card-category {
            font-size: 11px;
            font-weight: 700;
            letter-spacing: 0.15em;
            text-transform: uppercase;
            color: var(--accent);
            margin-bottom: 8px;
        }

        .sports-card-title {
            font-family: var(--font-display);
            font-size: clamp(22px, 2.5vw, 30px);
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: -0.01em;
            color: #fff;
            line-height: 1.15;
            margin-bottom: 8px;
        }

        .sports-card-desc {
            font-size: 13px;
            color: rgba(255,255,255,0.6);
            line-height: 1.5;
            margin-bottom: 16px;
        }

        /* League logos row */
        .sports-league-logos {
            display: flex;
            gap: 10px;
            margin-bottom: 16px;
        }

        .sports-league-logo {
            width: 36px;
            height: 36px;
            border-radius: 8px;
            background: rgba(255,255,255,0.1);
            backdrop-filter: blur(8px);
            border: 1px solid rgba(255,255,255,0.15);
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }

        .sports-league-logo img {
            width: 24px;
            height: 24px;
            object-fit: contain;
        }

        /* Watch Now button (hidden, revealed on hover) */
        .sports-card-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            padding: 12px 28px;
            background: linear-gradient(135deg, var(--accent), var(--accent-light));
            color: #fff;
            border: none;
            border-radius: var(--radius-full);
            font-family: var(--font-display);
            font-size: 13px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.06em;
            cursor: pointer;
            text-decoration: none;
            box-shadow: 0 6px 20px rgba(255,87,34,0.35);
            opacity: 0;
            transform: translateY(12px);
            transition: opacity 0.4s ease, transform 0.4s var(--ease-out);
            width: fit-content;
        }

        .sports-card:hover .sports-card-btn {
            opacity: 1;
            transform: translateY(0);
        }

        .sports-card-btn svg {
            width: 14px;
            height: 14px;
        }

        /* Mobile: always show button */
        @media (hover: none) and (pointer: coarse) {
            .sports-card-btn {
                opacity: 1;
                transform: translateY(0);
            }
            .sports-card-bg {
                filter: brightness(0.5);
            }
            .sports-card:hover {
                transform: none;
            }
        }

        @media (max-width: 768px) {
            .live-sports-section { padding: 72px 0; }
            .live-sports-header { margin-bottom: 36px; }
            .sports-card { aspect-ratio: 16 / 10; }
        }

        @media (max-width: 480px) {
            .live-sports-section { padding: 56px 0; }
            .sports-card { aspect-ratio: 16 / 11; }
            .sports-card-overlay { padding: 20px; }
            .sports-card-title { font-size: 20px; }
        }

        /* ========================================
           REVIEWS / TESTIMONIALS
        ======================================== */
        .reviews-section {
            padding: 100px 0;
            background: rgba(18, 18, 18, 0.35);
            backdrop-filter: blur(40px);
            -webkit-backdrop-filter: blur(40px);
            border-top: 1px solid rgba(255,255,255,0.04);
            border-bottom: 1px solid rgba(255,255,255,0.03);
        }

        .reviews-header {
            text-align: center;
            margin-bottom: 48px;
        }

        .reviews-header h2 {
            font-size: clamp(24px, 3.5vw, 40px);
            text-transform: uppercase;
            letter-spacing: -0.02em;
        }

        .rating-badge {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 20px;
            padding: 12px 24px;
            background: rgba(30, 30, 30, 0.4);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border-radius: var(--radius-full);
            border: 1px solid rgba(255,255,255,0.08);
        }

        .rating-number {
            font-family: var(--font-display);
            font-size: 28px;
            font-weight: 800;
        }

        .rating-stars {
            display: flex;
            gap: 4px;
        }

        .rating-stars i {
            color: #FFD700;
            width: 20px;
            height: 20px;
        }

        .chat-bubbles {
            max-width: 420px;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        .chat-bubble {
            background: rgba(30, 30, 30, 0.4);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            border: 1px solid rgba(255,255,255,0.08);
            border-radius: 18px 18px 18px 4px;
            padding: 12px 18px;
            font-size: 14px;
            color: var(--text-secondary);
            max-width: 85%;
            line-height: 1.5;
            transition: all 0.3s;
        }

        .chat-bubble:hover {
            border-color: var(--border-hover);
        }

        .chat-bubble.sent {
            align-self: flex-end;
            border-radius: 18px 18px 4px 18px;
            background: var(--accent-subtle);
            border-color: rgba(255,87,34,0.15);
        }

        .chat-time {
            font-size: 11px;
            color: var(--text-dim);
            margin-bottom: 8px;
            text-align: right;
        }

        /* ========================================
           VIP PRICING (3-card + tabs + modal)
        ======================================== */
        .pricing-section {
            padding: 140px 0;
            background: rgba(15, 15, 15, 0.3);
            backdrop-filter: blur(40px);
            -webkit-backdrop-filter: blur(40px);
            border-top: 1px solid rgba(255,255,255,0.04);
            border-bottom: 1px solid rgba(255,255,255,0.03);
            position: relative;
            overflow: hidden;
            
        }

        /* Ambient glow behind featured card */
        .pricing-ambient-glow {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -40%);
            width: 600px;
            height: 400px;
            background: radial-gradient(ellipse at center, rgba(255,87,34,0.12), transparent 70%);
            pointer-events: none;
            z-index: 0;
        }

        .pricing-section .container {
            position: relative;
            z-index: 1;
        }

        /* Trust row under subtitle */
        .pricing-trust-row {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 16px 24px;
            margin-top: 20px;
            font-size: 13px;
            color: var(--text-secondary);
        }

        /* Duration tabs */
        .pricing-tabs {
            display: flex;
            justify-content: center;
            gap: 6px;
            margin-bottom: 48px;
            background: rgba(255,255,255,0.04);
            border: 1px solid rgba(255,255,255,0.08);
            border-radius: var(--radius-full);
            padding: 5px;
            max-width: 520px;
            margin-left: auto;
            margin-right: auto;
        }

        /* Sticky pricing tabs wrapper */
        .pricing-tabs-sticky-wrap {
            position: sticky;
            top: 0;
            z-index: 100;
            padding: 0;
            transition:  0.3s ease, box-shadow 0.3s ease, padding 0.3s ease;
        }



        .pricing-tab {
            flex: 1;
            padding: 12px 20px;
            background: transparent;
            border: none;
            border-radius: var(--radius-full);
            font-family: var(--font-display);
            font-size: 13px;
            font-weight: 700;
            color: var(--text-muted);
            cursor: pointer;
            transition: all 0.3s var(--ease-out);
            letter-spacing: 0.02em;
        }

        .pricing-tab:hover {
            color: var(--text-secondary);
            background: rgba(255,255,255,0.04);
        }

        .pricing-tab.active {
            background: linear-gradient(135deg, var(--accent), var(--accent-light));
            color: #fff;
            box-shadow: 0 4px 16px rgba(255,87,34,0.3);
        }

        /* Pricing grid */
        .pricing-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 24px;
            align-items: stretch;
            max-width: 1100px;
            margin: 0 auto;
        }

        @media (min-width: 768px) and (max-width: 1023px) {
            .pricing-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .pricing-grid .vip-card--vvip {
                grid-column: 1 / -1;
                max-width: 480px;
                margin: 0 auto;
            }
        }

        @media (min-width: 1024px) {
            .pricing-grid { grid-template-columns: repeat(3, 1fr); }
        }

        /* Cards */
        .vip-card {
             
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border: 1px solid rgba(255,255,255,0.08);
            border-radius: 20px;
            padding: 40px 32px;
            position: relative;
            overflow: hidden;
            transition: all 0.4s var(--ease-out);
            display: flex;
            flex-direction: column;
            contain: layout style paint;
            background: #0a0a0a57;
        }

        .vip-card:hover {
            border-color: rgba(255,106,0,0.25);
            transform: translateY(-8px);
            box-shadow: 0 32px 64px rgba(0,0,0,0.35);
            background: #0a0a0a7c;
        }

        /* Card top section — left-aligned vertical layout */
        .vip-card-top {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            padding-bottom: 24px;
            margin-bottom: 24px;
            border-bottom: 1px solid rgba(255,255,255,0.08);
        }

        /* Card bottom section */
        .vip-card-bottom {
            flex-grow: 1;
            display: flex;
            flex-direction: column;
        }

        /* Badge row above card header */
        .vip-card-badges {
            display: flex;
            justify-content: flex-start;
            gap: 8px;
            margin-bottom: 16px;
            flex-wrap: wrap;
        }

        .vip-badge {
            display: inline-block;
            padding: 5px 14px;
            border-radius: var(--radius-full);
            font-size: 10px;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 0.1em;
        }

        .vip-badge--popular {
            background: linear-gradient(135deg, var(--accent), var(--accent-light));
            color: #fff;
        }

        .vip-badge--value {
            background: rgba(34,197,94,0.15);
            color: #22c55e;
            border: 1px solid rgba(34,197,94,0.25);
        }

        .vip-badge--limited {
            background: rgba(255,215,0,0.1);
            color: #FFD700;
            border: 1px solid rgba(255,215,0,0.25);
        }

        /* Featured card (VIP Pro) */
        .vip-card--featured {
            border: 2px solid var(--accent);
            box-shadow: 0 0 40px rgba(255,87,34,0.25), 0 0 80px rgba(255,87,34,0.08);
            background: #0a0a0a57;
        }

        .vip-card--featured:hover {
            box-shadow: 0 0 60px rgba(255,87,34,0.3), 0 32px 64px rgba(0,0,0,0.35);
            background: #0a0a0a7c;
        }

        /* VVIP gold card */
        .vip-card--vvip {
            border: 2px solid rgba(255,215,0,0.4);
            box-shadow: 0 0 30px rgba(255,215,0,0.08);
            background: #0a0a0a57;
        }

        .vip-card--vvip:hover {
            border-color: rgba(255,215,0,0.6);
            box-shadow: 0 0 50px rgba(255,215,0,0.15), 0 32px 64px rgba(0,0,0,0.35);
            background: #0a0a0a7c;
        }

        .vip-card--vvip .vip-card-icon svg {
            color: #FFD700;
        }

        .vip-card--vvip .vip-card-btn {
            background: linear-gradient(135deg, #FFD700, #FFA500);
            color: #1a1a1a;
            border: none;
            box-shadow: 0 8px 24px rgba(255,215,0,0.25);
            font-weight: 800;
        }

        .vip-card--vvip .vip-card-btn:hover {
            box-shadow: 0 12px 32px rgba(255,215,0,0.4);
            transform: translateY(-2px);
        }

        /* VVIP Family — full-width horizontal enterprise banner */
        .family-banner {
            position: relative;
            max-width: 1100px;
            margin: 28px auto 0;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            gap: 32px;
            padding: 32px 40px;
            border-radius: 24px;
            background:
                linear-gradient(135deg, rgba(99,102,241,0.14), rgba(168,85,247,0.07) 45%, rgba(10,10,10,0.35) 100%),
                #0a0a0a57;
            border: 1px solid rgba(129,140,248,0.28);
            box-shadow: 0 0 40px rgba(99,102,241,0.12);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            overflow: hidden;
            transition: border-color .25s ease, box-shadow .25s ease;
        }
        .family-banner::before {
            content: "";
            position: absolute;
            top: -60%;
            right: -10%;
            width: 360px;
            height: 360px;
            background: radial-gradient(circle, rgba(129,140,248,0.18), transparent 70%);
            pointer-events: none;
        }
        .family-banner:hover {
            border-color: rgba(129,140,248,0.5);
            box-shadow: 0 0 60px rgba(99,102,241,0.2), 0 24px 64px rgba(0,0,0,0.35);
        }
        .family-banner-main { position: relative; flex: 1 1 460px; min-width: 0; }
        .vip-badge--family {
            background: rgba(99,102,241,0.14);
            color: #a5b4fc;
            border: 1px solid rgba(129,140,248,0.35);
        }
        .family-banner-title {
            font-family: var(--font-display);
            font-size: clamp(24px, 3vw, 32px);
            font-weight: 800;
            letter-spacing: -0.02em;
            color: var(--text-primary);
            margin: 12px 0 4px;
        }
        .family-banner-tagline {
            color: #a5b4fc;
            font-size: 15px;
            font-weight: 600;
            margin: 0 0 18px;
        }
        .family-banner-features {
            list-style: none;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 10px 28px;
            padding: 0;
            margin: 0;
        }
        .family-banner-features li {
            position: relative;
            padding-left: 26px;
            color: rgba(255,255,255,0.78);
            font-size: 14px;
            line-height: 1.45;
        }
        .family-banner-features li::before {
            content: "✓";
            position: absolute;
            left: 0;
            top: 0;
            color: #a5b4fc;
            font-weight: 800;
        }
        .family-banner-action {
            position: relative;
            flex: 0 0 auto;
            display: flex;
            flex-direction: column;
            align-items: stretch;
            gap: 4px;
            min-width: 230px;
        }
        .family-banner-price {
            font-family: var(--font-display);
            font-size: clamp(26px, 3vw, 38px);
            font-weight: 800;
            letter-spacing: -0.02em;
            line-height: 1;
            color: var(--text-primary);
        }
        .family-banner-period {
            color: #a5b4fc;
            font-size: 14px;
            font-weight: 600;
            margin-bottom: 12px;
        }
        .vip-card-btn--contact {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            width: 100%;
            padding: 16px 28px;
            border-radius: 14px;
            font-size: 15px;
            font-weight: 800;
            background: linear-gradient(135deg, #6366f1, #818cf8);
            color: #fff;
            border: none;
            box-shadow: 0 8px 24px rgba(99,102,241,0.25);
            text-decoration: none;
            cursor: pointer;
            transition: box-shadow .2s ease, transform .2s ease;
        }
        .vip-card-btn--contact:hover {
            box-shadow: 0 12px 32px rgba(99,102,241,0.4);
            transform: translateY(-2px);
        }
        @media (max-width: 768px) {
            .family-banner {
                flex-direction: column;
                align-items: stretch;
                padding: 26px 22px;
                gap: 22px;
            }
            .family-banner-features { grid-template-columns: 1fr; }
            .family-banner-action { min-width: 0; }
        }

        /* Card header */
        .vip-card-header {
            text-align: left;
            margin-bottom: 24px;
        }

        .vip-card-tier {
            font-family: var(--font-display);
            font-size: 22px;
            font-weight: 900;
            text-transform: uppercase;
            color: var(--text-primary);
            margin-bottom: 4px;
            letter-spacing: 0.02em;
        }

        .vip-card-tagline {
            font-size: 13px;
            color: var(--text-muted);
            font-weight: 500;
            margin-bottom: 16px;
        }

        /* Price wrap */
        .vip-card-price-wrap {
            display: flex;
            align-items: flex-start;
            justify-content: flex-start;
            gap: 2px;
            margin-bottom: 6px;
        }

        .vip-price-currency {
            font-family: var(--font-display);
            font-size: clamp(18px, 2vw, 24px) !important;
            font-weight: 700;
            color: var(--text-primary);
            position: relative;
            top: 10px;
            line-height: 1;
        }

        .vip-price-amount {
            font-family: var(--font-display);
            font-size: clamp(52px, 6vw, 72px);
            font-weight: 800;
            letter-spacing: -0.03em;
            color: var(--text-primary);
            transition: opacity 0.2s ease, transform 0.2s ease;
            line-height: 1;
        }

        .vip-card-period-label {
            font-size: 13px;
            color: var(--text-muted);
            font-weight: 500;
            margin-left: 4px;
            margin-top: 45px;
        }

        @media (max-width: 768px) {
            .vip-card-period-label {
                margin-top: 27px !important;
            }
        }

        /* Bonus text (green) */
        .vip-card-bonus {
            text-align: left;
            font-size: 13px;
            font-weight: 700;
            color: #22c55e;
            margin-bottom: 20px;
        }

        .vip-card-bonus--gold {
            color: #FFD700;
        }

        /* Monthly equivalent */
        .vip-card-monthly {
            text-align: center;
            font-size: 12px;
            color: var(--text-muted);
            margin-top: 8px;
            font-weight: 500;
        }

        /* CTA button */
        .vip-card-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            width: 100%;
            padding: 18px 24px;
            background: transparent;
            color: var(--text-primary);
            border: 1px solid var(--border);
            border-radius: var(--radius-full);
            font-family: var(--font-display);
            font-size: 13px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.06em;
            cursor: pointer;
            transition: all 0.3s;
            text-decoration: none;
        }

        .vip-card-btn:hover {
            border-color: var(--border-hover);
            background: rgba(255,255,255,0.04);
            transform: translateY(-2px);
        }

        /* Features heading */
        .vip-card-features-heading {
            font-family: var(--font-display);
            font-size: 12px;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 0.12em;
            color: var(--text-secondary);
            margin-bottom: 6px;
        }

        .vip-card-features-sub {
            font-size: 14px;
            color: var(--text-secondary);
            margin-bottom: 16px;
            line-height: 1.5;
        }

        /* Featured card button override */
        .vip-card--featured .vip-card-btn {
            background: linear-gradient(135deg, var(--accent), var(--accent-light));
            color: #fff;
            border: none;
            box-shadow: 0 8px 24px rgba(255,87,34,0.3);
            font-weight: 800;
        }

        .vip-card--featured .vip-card-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 12px 32px rgba(255,87,34,0.45);
        }

        /* Divider */
        .vip-card-divider {
            width: 100%;
            height: 1px;
            background: rgba(255,255,255,0.08);
            margin: 20px 0;
        }

        /* Feature list */
        .vip-card-features {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 12px;
            flex-grow: 1;
            margin-bottom: 24px;
        }

        .vip-card-features li {
            display: flex;
            align-items: flex-start;
            gap: 10px;
            font-size: 14px;
            color: var(--text-secondary);
            line-height: 1.5;
        }

        .vip-card-features li i,
        .vip-card-features li svg {
            color: var(--accent);
            width: 16px;
            height: 16px;
            flex-shrink: 0;
            margin-top: 2px;
        }

        .vip-card--vvip .vip-card-features li i,
        .vip-card--vvip .vip-card-features li svg {
            color: #FFD700;
        }

        /* Payment methods row */
        .vip-card-payment-row {
            display: flex;
            justify-content: center;
            gap: 8px;
            margin-top: auto;
            padding-top: 16px;
            opacity: 0.5;
            transition: opacity 0.3s;
        }

        .vip-card:hover .vip-card-payment-row {
            opacity: 0.8;
        }

        /* Guarantee bar */
        .pricing-guarantee {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            margin-top: 48px;
            padding: 16px 28px;
            background: rgba(76,175,80,0.06);
            border: 1px solid rgba(76,175,80,0.18);
            border-radius: var(--radius-full);
            max-width: 520px;
            margin-left: auto;
            margin-right: auto;
        }

        .pricing-guarantee svg {
            color: #4caf50;
            flex-shrink: 0;
        }

        .pricing-guarantee span {
            font-size: 13px;
            font-weight: 600;
            color: #4caf50;
        }

        /* ---- PRICING MODAL ---- */
        .pricing-modal-overlay {
            position: fixed;
            inset: 0;
            z-index: 10000;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(0,0,0,0.75);
            backdrop-filter: blur(8px);
            -webkit-backdrop-filter: blur(8px);
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.3s ease, visibility 0.3s ease;
        }

        .pricing-modal-overlay.visible {
            opacity: 1;
            visibility: visible;
        }

        .pricing-modal {
            position: relative;
            width: 90%;
            max-width: 380px;
            background: #111;
            border: 1px solid rgba(255,255,255,0.1);
            border-radius: 20px;
            padding: 36px 28px 28px;
            transform: scale(0.95);
            transition: transform 0.3s ease;
        }

        .pricing-modal-overlay.visible .pricing-modal {
            transform: scale(1);
        }

        .pricing-modal-close {
            position: absolute;
            top: 14px;
            right: 16px;
            background: none;
            border: none;
            color: var(--text-muted);
            font-size: 24px;
            cursor: pointer;
            line-height: 1;
            padding: 4px;
            transition: color 0.2s;
        }

        .pricing-modal-close:hover {
            color: #fff;
        }

        .pricing-modal-header {
            text-align: center;
            margin-bottom: 24px;
        }

        .pricing-modal-logo {
            font-family: var(--font-display);
            font-size: 20px;
            font-weight: 900;
            letter-spacing: 0.05em;
            color: #fff;
        }

        .pricing-modal-info {
            display: flex;
            flex-direction: column;
            gap: 10px;
            margin-bottom: 20px;
        }

        .pricing-modal-row {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .pricing-modal-label {
            font-size: 11px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            color: var(--text-muted);
        }

        .pricing-modal-value {
            font-size: 14px;
            font-weight: 600;
            color: var(--text-primary);
        }

        .pricing-modal-price {
            color: var(--accent) !important;
            font-weight: 800 !important;
            font-size: 16px !important;
        }

        .pricing-modal-divider {
            width: 100%;
            height: 1px;
            background: rgba(255,255,255,0.08);
            margin-bottom: 20px;
        }

        .pricing-modal-question {
            text-align: center;
            font-size: 15px;
            font-weight: 600;
            color: var(--text-secondary);
            margin-bottom: 20px;
        }

        .pricing-modal-btn {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 100%;
            padding: 16px;
            border-radius: var(--radius-full);
            font-family: var(--font-display);
            font-size: 14px;
            font-weight: 700;
            text-decoration: none;
            cursor: pointer;
            transition: all 0.25s;
            border: none;
            margin-bottom: 10px;
        }

        .pricing-modal-btn--primary {
            background: linear-gradient(135deg, var(--accent), var(--accent-light));
            color: #fff;
            box-shadow: 0 8px 24px rgba(255,87,34,0.3);
        }

        .pricing-modal-btn--primary:hover {
            box-shadow: 0 12px 32px rgba(255,87,34,0.45);
            transform: translateY(-1px);
        }

        .pricing-modal-btn--outline {
            background: transparent;
            color: var(--text-primary);
            border: 1px solid var(--border);
        }

        .pricing-modal-btn--outline:hover {
            border-color: var(--border-hover);
            background: rgba(255,255,255,0.04);
        }

        .pricing-modal-note {
            text-align: center;
            font-size: 12px;
            color: var(--text-muted);
            margin-top: 8px;
        }


        /* ========================================
           CONTACT SECTION
        ======================================== */
        .contact-section {
            padding: 100px 0 60px;
            text-align: center;
            background: rgba(12, 12, 12, 0.35); 
            backdrop-filter: blur(40px);
            -webkit-backdrop-filter: blur(40px);
            border-top: 1px solid rgba(255,255,255,0.04);
            content-visibility: auto;
            contain-intrinsic-size: auto 400px;
        }

        .contact-section h2 {
            font-size: clamp(28px, 4vw, 48px);
            margin-bottom: 8px;
        }

        .contact-section p {
            color: var(--text-muted);
            margin-bottom: 32px;
        }

        .contact-icons {
            display: flex;
            justify-content: center;
            gap: 16px;
            margin-bottom: 48px;
        }

        .contact-icon-btn {
            width: 48px;
            height: 48px;
            border-radius: 50%;
            background: rgba(30, 30, 30, 0.4);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border: 1px solid rgba(255,255,255,0.08);
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s;
        }

        .contact-icon-btn:hover {
            border-color: var(--accent);
            background: var(--accent-subtle);
        }

        .contact-icon-btn i {
            color: var(--text-secondary);
            width: 20px;
            height: 20px;
        }

        .contact-icon-btn:hover i { color: var(--accent); }

        /* ========================================
           FIXED CHAT BUTTON
        ======================================== */
        .fixed-chat-btn {
            position: fixed;
            bottom: 28px;
            right: 28px;
            z-index: 9999;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0;
            width: 56px;
            height: 56px;
            padding: 0;
            background: #25D366;
            border: none;
            border-radius: 50%;
            color: #fff;
            font-family: var(--font-body);
            font-size: 14px;
            font-weight: 700;
            text-decoration: none;
            cursor: pointer;
            box-shadow: 0 4px 16px rgba(37,211,102,0.35), 0 1px 4px rgba(0,0,0,0.3);
            transition: transform 0.25s var(--ease-out), box-shadow 0.25s ease;
            overflow: hidden;
            white-space: nowrap;
        }
        .fixed-chat-btn span {
            display: none;
        }
        .fixed-chat-btn:hover {
            transform: translateY(-3px) scale(1.06);
            box-shadow: 0 8px 28px rgba(37,211,102,0.45), 0 2px 8px rgba(0,0,0,0.4);
        }
        .fixed-chat-btn:hover span {
            display: none;
        }
        .fixed-chat-btn svg {
            flex-shrink: 0;
            width: 24px;
            height: 24px;
        }
        @media (max-width: 480px) {
            .fixed-chat-btn {
                bottom: 20px;
                right: 20px;
                width: 52px;
                height: 52px;
            }
        }

        /* Footer styles moved to footer.css */

        .nav-cta-desktop {
            display: none;
        }

        /* ========================================
           CHANNELS LIST SECTION
        ======================================== */
        .channels-list-section {
            padding: 120px 0 80px;
            background: rgba(12, 12, 12, 0.35);
            backdrop-filter: blur(40px);
            -webkit-backdrop-filter: blur(40px);
            border-top: 1px solid rgba(255,255,255,0.04);
            border-bottom: 1px solid rgba(255,255,255,0.03);
            position: relative;
            overflow: hidden;
            content-visibility: auto;
            contain-intrinsic-size: auto 1000px;
        }

        .channels-list-section::before {
            content: '';
            position: absolute;
            top: -200px;
            left: 50%;
            transform: translateX(-50%);
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(255,106,0,0.06) 0%, transparent 70%);
            pointer-events: none;
        }

        .cl-header {
            text-align: center;
            margin-bottom: 48px;
        }

        .cl-header .section-title {
            font-size: clamp(28px, 4.5vw, 52px);
            margin-bottom: 14px;
        }

        .cl-header .section-subtitle {
            margin: 0 auto;
            color: var(--text-secondary);
            font-size: 16px;
        }

        /* Search */
        .cl-search-wrap {
            max-width: 600px;
            margin: 0 auto 48px;
            position: relative;
        }

        .cl-search-icon {
            position: absolute;
            left: 20px;
            top: 50%;
            transform: translateY(-50%);
            color: var(--text-muted);
            pointer-events: none;
            transition: color 0.3s;
        }

        .cl-search {
            width: 100%;
            padding: 18px 24px 18px 54px;
            font-size: 16px;
            font-family: var(--font-body);
            background: rgba(30, 30, 30, 0.45);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border: 1.5px solid rgba(255,255,255,0.08);
            border-radius: var(--radius-full);
            color: var(--text-primary);
            outline: none;
            transition: border-color 0.3s, box-shadow 0.3s;
        }

        .cl-search::placeholder {
            color: var(--text-muted);
        }

        .cl-search:focus {
            border-color: #ff6a00;
            box-shadow: 0 0 0 4px rgba(255,106,0,0.15), 0 4px 24px rgba(255,106,0,0.08);
        }

        .cl-search:focus + .cl-search-icon {
            color: #ff6a00;
        }

        .cl-search:disabled {
            opacity: 0.5;
            cursor: wait;
        }

        /* Country Filters */
        .cl-filters {
            max-width: 800px;
            margin: 0 auto 40px;
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 8px;
        }

        .cl-filter-btn {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 8px 16px;
            font-size: 13px;
            font-family: var(--font-body);
            font-weight: 600;
            color: var(--text-secondary);
            background: rgba(30, 30, 30, 0.4);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            border: 1.5px solid rgba(255,255,255,0.08);
            border-radius: var(--radius-full);
            cursor: pointer;
            transition: all 0.25s ease;
            white-space: nowrap;
            letter-spacing: 0.3px;
        }

        .cl-filter-btn:hover {
            border-color: rgba(255,106,0,0.4);
            color: var(--text-primary);
            background: rgba(255,106,0,0.06);
        }

        .cl-filter-btn.active {
            border-color: #ff6a00;
            color: #fff;
            background: linear-gradient(135deg, rgba(255,106,0,0.2) 0%, rgba(255,87,34,0.12) 100%);
            box-shadow: 0 0 16px rgba(255,106,0,0.15), 0 2px 8px rgba(0,0,0,0.3);
        }

        .cl-filter-btn .cl-filter-flag {
            font-size: 16px;
            line-height: 1;
        }

        .cl-filter-btn .cl-filter-region {
            font-size: 10px;
            font-weight: 700;
            color: var(--text-muted);
            letter-spacing: 0.5px;
        }

        .cl-filter-btn.active .cl-filter-region {
            color: rgba(255,255,255,0.6);
        }

        @media (max-width: 768px) {
            .cl-filters {
                gap: 6px;
                margin-bottom: 32px;
            }
            .cl-filter-btn {
                padding: 6px 12px;
                font-size: 12px;
            }
        }

        /* Skeleton loaders */
        .cl-skeleton-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
            gap: 18px;
        }

        .cl-skeleton-card {
            background: var(--bg-card);
            border: 1px solid var(--border);
            border-radius: var(--radius-md);
            padding: 24px;
            height: 100px;
            position: relative;
            overflow: hidden;
        }

        .cl-skeleton-card::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.03) 50%, transparent 100%);
            animation: clShimmer 1.5s infinite;
        }

        @keyframes clShimmer {
            0%   { transform: translateX(-100%); }
            100% { transform: translateX(100%); }
        }

        /* Results grid */
        .cl-results-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
            gap: 18px;
        }

        .cl-card {
            background: rgba(30, 30, 30, 0.4);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border: 1px solid rgba(255,255,255,0.08);
            border-radius: var(--radius-md);
            padding: 22px 24px;
            display: flex;
            align-items: center;
            gap: 16px;
            transition: all 0.35s var(--ease-out);
            opacity: 0;
            transform: translateY(16px);
            animation: clFadeIn 0.45s var(--ease-out) forwards;
        }

        .cl-card:hover {
            border-color: rgba(255,106,0,0.35);
            transform: translateY(-4px);
            box-shadow: 0 12px 36px rgba(0,0,0,0.35), 0 0 20px rgba(255,106,0,0.06);
            background: rgba(40, 40, 40, 0.5);
        }

        @keyframes clFadeIn {
            to { opacity: 1; transform: translateY(0); }
        }

        .cl-card-logo {
            width: 44px;
            height: 44px;
            border-radius: 10px;
            background: rgba(30, 30, 30, 0.5);
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            font-size: 18px;
            font-weight: 700;
            color: #ff6a00;
            border: 1px solid var(--border);
            overflow: hidden;
        }

        .cl-card-logo img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .cl-card-info {
            flex: 1;
            min-width: 0;
        }

        .cl-card-name {
            font-size: 14px;
            font-weight: 600;
            color: var(--text-primary);
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
            margin-bottom: 4px;
        }

        .cl-card-country {
            font-size: 12px;
            color: var(--text-muted);
            font-weight: 500;
        }

        .cl-badge {
            font-size: 11px;
            font-weight: 600;
            padding: 4px 12px;
            border-radius: var(--radius-full);
            background: rgba(76,175,80,0.12);
            color: #66bb6a;
            white-space: nowrap;
            letter-spacing: 0.02em;
        }

        .cl-badge-live {
            background: rgba(76,175,80,0.2);
            color: #4caf50;
            box-shadow: 0 0 8px rgba(76,175,80,0.25);
        }

        .cl-results-count {
            text-align: center;
            margin-bottom: 20px;
            font-size: 13px;
            color: var(--text-muted);
        }

        .cl-results-count span {
            color: #ff6a00;
            font-weight: 600;
        }

        /* Load More Button */
        .cl-load-more-wrap {
            text-align: center;
            margin-top: 32px;
        }

        .cl-load-more {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 14px 36px;
            font-size: 14px;
            font-family: var(--font-body);
            font-weight: 600;
            color: #fff;
            background: linear-gradient(135deg, #ff6a00 0%, #ff5722 100%);
            border: none;
            border-radius: var(--radius-full);
            cursor: pointer;
            transition: all 0.3s ease;
            letter-spacing: 0.3px;
        }

        .cl-load-more:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 28px rgba(255,106,0,0.35), 0 0 16px rgba(255,87,34,0.15);
        }

        .cl-load-more:active {
            transform: translateY(0);
        }

        .cl-load-more svg {
            transition: transform 0.3s ease;
        }

        .cl-load-more:hover svg {
            transform: translateY(2px);
        }

        .cl-load-more:disabled {
            opacity: 0.5;
            cursor: default;
            transform: none;
            box-shadow: none;
        }

        /* Empty state */
        .cl-empty {
            text-align: center;
            padding: 64px 24px;
        }

        .cl-empty-icon {
            font-size: 48px;
            margin-bottom: 16px;
            opacity: 0.4;
        }

        .cl-empty h3 {
            font-size: 22px;
            font-weight: 700;
            color: var(--text-primary);
            margin-bottom: 8px;
        }

        .cl-empty p {
            color: var(--text-muted);
            margin-bottom: 8px;
            font-size: 15px;
        }

        .cl-empty .cl-empty-sub {
            color: var(--text-secondary);
            font-size: 14px;
            margin-bottom: 24px;
        }

        .cl-empty .btn-vip {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 14px 32px;
            background: linear-gradient(135deg, #ff6a00, #FF8C00);
            color: #fff;
            font-family: var(--font-display);
            font-size: 14px;
            font-weight: 700;
            letter-spacing: 0.04em;
            text-transform: uppercase;
            border: none;
            border-radius: var(--radius-full);
            cursor: pointer;
            transition: all 0.3s var(--ease-out);
            box-shadow: 0 4px 20px rgba(255,106,0,0.25);
        }

        .cl-empty .btn-vip:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 32px rgba(255,106,0,0.35);
        }

        /* Movies carousel */
        .cl-movies-section {
            margin-top: 100px;
        }

        .cl-movies-header {
            text-align: center;
            margin-bottom: 36px;
        }

        .cl-movies-header h3 {
            font-size: clamp(22px, 3vw, 36px);
            text-transform: uppercase;
            margin-bottom: 8px;
        }

        .cl-movies-header p {
            color: var(--text-secondary);
            font-size: 15px;
        }

        .cl-carousel-wrap {
            position: relative;
            overflow: hidden;
            margin: 0 -24px;
            padding: 0 24px;
        }

        .cl-carousel {
            display: flex;
            gap: 20px;
            overflow-x: auto;
            scroll-snap-type: x mandatory;
            scrollbar-width: none;
            padding: 10px 0 20px;
            -webkit-overflow-scrolling: touch;
        }

        .cl-carousel::-webkit-scrollbar { display: none; }

        .cl-movie-card {
            flex: 0 0 200px;
            scroll-snap-align: start;
            border-radius: var(--radius-md);
            overflow: hidden;
            position: relative;
            cursor: pointer;
            transition: transform 0.4s var(--ease-out);
        }

        .cl-movie-card:hover {
            transform: scale(1.05);
        }

        .cl-movie-poster {
            width: 100%;
            aspect-ratio: 2/3;
            object-fit: cover;
            display: block;
            background: var(--bg-card);
        }

        .cl-movie-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(0deg, rgba(0,0,0,0.85) 0%, transparent 50%);
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            padding: 16px;
        }

        .cl-movie-title {
            font-size: 13px;
            font-weight: 700;
            color: #fff;
            margin-bottom: 6px;
        }

        .cl-movie-platform {
            font-size: 10px;
            font-weight: 700;
            padding: 3px 10px;
            border-radius: var(--radius-full);
            display: inline-block;
            width: fit-content;
            letter-spacing: 0.05em;
            text-transform: uppercase;
        }

        .cl-movie-platform.netflix {
            background: rgba(229,9,20,0.2);
            color: #e50914;
        }

        .cl-movie-platform.prime {
            background: rgba(0,168,225,0.2);
            color: #00a8e1;
        }

        .cl-movie-platform.disney {
            background: rgba(17,60,207,0.2);
            color: #113ccf;
        }

        .cl-movie-platform.apple {
            background: rgba(255,255,255,0.1);
            color: #ccc;
        }

        /* Platform logos */
        .cl-platforms {
            margin-top: 80px;
            text-align: center;
        }

        .cl-platforms p {
            font-size: 13px;
            color: var(--text-dim);
            margin-bottom: 28px;
            letter-spacing: 0.06em;
            text-transform: uppercase;
        }

        .cl-platform-logos {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: center;
            gap: 40px;
        }

        .cl-platform-logo {
            display: flex;
            align-items: center;
            gap: 10px;
            opacity: 0.35;
            transition: opacity 0.3s;
            filter: grayscale(1);
        }

        .cl-platform-logo:hover {
            opacity: 0.8;
            filter: grayscale(0);
        }

        .cl-platform-logo svg {
            width: 28px;
            height: 28px;
        }

        .cl-platform-logo span {
            font-size: 15px;
            font-weight: 700;
            color: var(--text-secondary);
            letter-spacing: -0.01em;
        }

        @media (max-width: 767px) {
            .channels-list-section { padding: 80px 0 60px; }
            .cl-results-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
            .cl-skeleton-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
            .cl-card { padding: 16px; gap: 10px; }
            .cl-card-logo { width: 36px; height: 36px; font-size: 14px; }
            .cl-card-name { font-size: 13px; }
            .cl-badge { font-size: 10px; padding: 3px 8px; }
            .cl-movie-card { flex: 0 0 150px; }
            .cl-platform-logos { gap: 24px; }
        }

        @media (max-width: 480px) {
            .cl-results-grid { grid-template-columns: 1fr; }
            .cl-skeleton-grid { grid-template-columns: 1fr; }
        }

        /* ========================================
           COMPREHENSIVE MOBILE OPTIMIZATIONS
        ======================================== */

        /* --- Mobile menu link sizing & CTA --- */
        .mobile-menu a {
            padding: 10px 0;
            -webkit-tap-highlight-color: transparent;
        }

        .mobile-menu-cta {
            display: inline-flex !important;
            align-items: center;
            justify-content: center;
            margin-top: 24px;
            padding: 16px 40px !important;
            background: var(--accent);
            color: #fff !important;
            border-radius: var(--radius-full);
            font-size: 18px !important;
            font-weight: 700;
            letter-spacing: 0.02em;
            box-shadow: 0 4px 24px rgba(255,87,34,0.35);
            text-transform: uppercase;
        }

        /* --- Tablet (≤768px) --- */
        @media (max-width: 768px) {
            /* Section padding reductions */
            .pain-section { padding: 72px 0; }
            .content-hub { padding: 48px 0 60px; }

            /* Why ZeroBuffer center align on mobile */
            .pain-content { text-align: center; }
            .pain-content .section-subtitle { margin-left: auto; margin-right: auto; }
            .pain-stats { justify-content: center; }
            .reviews-section { padding: 64px 0; }
            .pricing-section { padding: 80px 0; }
            .faq-section { padding: 72px 0 60px; }
            .contact-section { padding: 64px 0 48px; }

            /* Pain section inner gap */
            .pain-inner { gap: 36px; }
            .pain-icon-wrap { width: 110px; height: 110px; }
            .pain-buffer-icon { width: 110px; height: 110px; }

            /* Hub poster radius */
            .hub-poster { border-radius: 12px; }

            /* Reviews header spacing */
            .reviews-header { margin-bottom: 32px; }

            /* Channel filters: horizontal scroll */
            .cl-filters {
                flex-wrap: nowrap;
                overflow-x: auto;
                -webkit-overflow-scrolling: touch;
                justify-content: flex-start;
                padding-bottom: 12px;
                margin-left: -24px;
                margin-right: -24px;
                padding-left: 24px;
                padding-right: 24px;
                scrollbar-width: none;
                -ms-overflow-style: none;
                max-width: none;
            }
            .cl-filters::-webkit-scrollbar { display: none; }
            .cl-filter-btn {
                min-height: 44px;
                flex-shrink: 0;
            }

            /* Footer mobile spacing */
            .bb-footer-top { padding: 36px 0 32px; }
        }

        /* --- Small mobile (≤480px) --- */
        @media (max-width: 480px) {
            /* Even tighter section padding */
            .pain-section { padding: 56px 0; }
            .content-hub { padding: 40px 0 48px; }
            .reviews-section { padding: 48px 0; }
            .pricing-section { padding: 56px 0; }
            .faq-section { padding: 56px 0 48px; }
            .contact-section { padding: 48px 0 36px; }
            .channels-list-section { padding: 56px 0 48px; }

            /* Hub posters: show overlay on mobile (touch-friendly) */
            .hub-poster { border-radius: 10px; }

            /* Pain section tighter */
            .pain-inner { gap: 28px; }
            .pain-icon-wrap { width: 96px; height: 96px; }
            .pain-buffer-icon { width: 96px; height: 96px; }
            .pain-stats { gap: 20px; justify-content: center; }

            /* Pricing cards tighter */
            .vip-card { padding: 32px 24px; border-radius: 16px; }
            .vip-price-amount { font-size: 48px; }
            .vip-card-tier { font-size: 22px; }
            .vip-card-tagline { font-size: 14px; }
            .vip-card-btn { padding: 16px 24px; font-size: 15px; min-height: 52px; }

            /* Pricing tabs stacked on small screens */
            .pricing-tabs { flex-wrap: wrap; max-width: 100%; }
            .pricing-tab { padding: 10px 14px; font-size: 12px; }
            .pricing-trust-row { font-size: 11px; gap: 10px 16px; }

            /* FAQ tighter */
            .faq-question { padding: 16px 18px; }
            .faq-answer p { padding: 0 18px 16px; }

            /* Smaller container padding */
            .container { padding: 0 18px; }

            /* Nav compact */
            .nav-inner { height: 64px; }
            .hero { padding-top: 64px; }

            /* Reviews compact */
            .rating-badge { padding: 10px 18px; gap: 10px; }
            .rating-number { font-size: 24px; }
            .rating-stars i { width: 16px; height: 16px; }

            /* Contact section compact */
            .contact-icons { margin-bottom: 32px; }

            .bb-footer-top { padding: 28px 0 24px; }

            /* Chat button position */
            .fixed-chat-btn {
                bottom: 16px;
                right: 16px;
            }
        }

        /* --- Very small phones (≤360px) --- */
        @media (max-width: 360px) {
            .container { padding: 0 14px; }
            .vip-price-amount { font-size: 40px; }
            .cl-search { padding: 16px 20px 16px 48px; font-size: 15px; }
        }

        /* --- Active/tap feedback for touch --- */
        @media (hover: none) and (pointer: coarse) {
            .hub-poster-overlay {
                opacity: 1;
            }

            /* Active tap states instead of hover */
            .hero-btn:active { transform: scale(0.97); }
            .vip-card .vip-card-btn:active {
                transform: scale(0.97);
            }
            .cl-filter-btn:active {
                transform: scale(0.96);
                background: rgba(255,106,0,0.12);
            }
            .faq-question:active {
                background: rgba(255,255,255,0.04);
            }
            .contact-icon-btn:active {
                border-color: var(--accent);
                background: var(--accent-subtle);
            }

            .hub-poster:hover {
                transform: none;
            }
            .vip-card:hover {
                transform: none;
            }

            /* Remove pulse animation to save battery */
            .fixed-chat-btn {
                animation: none;
            }
        }

/* ========================================
   TESTIMONIAL SCROLL ANIMATION
======================================== */
.testimonial-track:hover { animation-play-state: paused !important; }
@keyframes testimonialScroll {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ========================================
   MOBILE CONVERSION OPTIMIZATION
======================================== */

/* ---------- STICKY BOTTOM CTA BAR ---------- */
.sticky-cta-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: rgba(12, 12, 12, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid rgba(255, 87, 34, 0.3);
    padding: 10px 16px;
    transform: translateY(100%);
    transition: transform 0.4s var(--ease-out);
    display: none;
}

.sticky-cta-bar.visible {
    transform: translateY(0);
}

.sticky-cta-inner {
    max-width: 480px;
    margin: 0 auto;
    text-align: center;
}

.sticky-cta-btn {
    display: block;
    width: 100%;
    padding: 16px 24px;
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    color: white;
    font-family: var(--font-display);
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    border: none;
    border-radius: var(--radius-full);
    text-align: center;
    text-decoration: none;
    box-shadow: 0 4px 24px rgba(255, 87, 34, 0.4);
    animation: stickyPulse 2.5s ease-in-out infinite;
    min-height: 56px;
    cursor: pointer;
}

.sticky-cta-urgency {
    font-size: 11px;
    color: var(--text-muted);
    margin-top: 6px;
    letter-spacing: 0.02em;
}

.sticky-cta-urgency strong {
    color: var(--accent-light);
}

@keyframes stickyPulse {
    0%, 100% { opacity: 0.85; }
    50% { opacity: 1; }
}

@media (max-width: 1023px) {
    .sticky-cta-bar { display: block; }
    body { padding-bottom: 90px; }
    .fixed-chat-btn { bottom: 100px; }
}

@media (min-width: 1024px) {
    .sticky-cta-bar { display: none !important; }
}


/* ---------- SOCIAL PROOF TICKER ---------- */
.social-proof-ticker {
    display: flex;
    align-items: START;
    justify-content: START;
    gap: 8px;
    margin-bottom: 12px;
    min-height: 28px;
}

.ticker-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-full);
    font-size: 12px;
    color: var(--text-secondary);
    opacity: 0;
    transform: translateY(4px);
    transition: opacity 0.4s, transform 0.4s;
    white-space: nowrap;
}

.ticker-item.active {
    opacity: 1;
    transform: translateY(0);
}

.ticker-dot {
    width: 6px;
    height: 6px;
    background: #ff3b30;
    border-radius: 50%;
    animation: tickerBlink 1.5s ease-in-out infinite;
    flex-shrink: 0;
}

@keyframes tickerBlink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

.ticker-text {
    font-weight: 500;
}

@media (max-width: 480px) {
    .ticker-item { font-size: 11px; padding: 5px 10px; }
}


/* ---------- MOBILE BONUS BANNER ---------- */
.mobile-bonus-banner {
    display: none;
    position: relative;
    background: linear-gradient(135deg, rgba(255,87,34,0.12), rgba(255,140,0,0.08));
    border: 1px solid rgba(255,87,34,0.25);
    border-radius: 0;
    padding: 14px 20px;
    overflow: hidden;
}

.mobile-bonus-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255,87,34,0.05), transparent);
    animation: bonusShimmer 3s linear infinite;
}

@keyframes bonusShimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.mobile-bonus-close {
    position: absolute;
    top: 8px;
    right: 12px;
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 20px;
    cursor: pointer;
    z-index: 2;
    line-height: 1;
    padding: 4px;
}

.mobile-bonus-inner {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.mobile-bonus-icon {
    font-size: 28px;
    flex-shrink: 0;
}

.mobile-bonus-text {
    flex: 1;
    min-width: 160px;
}

.mobile-bonus-text strong {
    display: block;
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 700;
    color: var(--accent-light);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 2px;
}

.mobile-bonus-text span {
    font-size: 12px;
    color: var(--text-secondary);
    line-height: 1.4;
}

.mobile-bonus-cta {
    padding: 10px 20px;
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    color: white;
    font-family: var(--font-display);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: var(--radius-full);
    text-decoration: none;
    white-space: nowrap;
    flex-shrink: 0;
    transition: transform 0.2s, box-shadow 0.2s;
}

.mobile-bonus-cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(255, 87, 34, 0.35);
}

@media (max-width: 1023px) {
    .mobile-bonus-banner { display: block; }
}


/* (Old countdown timer removed) */


/* (Old express checkout + pricing trust badges removed) */


/* ---------- CHAT RESPONSE TIME ---------- */
.chat-response-time {
    display: none;
    font-size: 9px;
    opacity: 0.7;
}

@media (max-width: 1023px) {
    .chat-response-time { display: none; }
}


/* ---------- RETARGETING POPUP ---------- */
.retarget-overlay {
    position: fixed;
    inset: 0;
    z-index: 99999;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease;
}

.retarget-overlay.visible {
    opacity: 1;
    pointer-events: all;
}

.retarget-popup {
    position: relative;
    background: var(--bg-secondary);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-lg);
    padding: 40px 32px 32px;
    max-width: 380px;
    width: 100%;
    text-align: center;
    transform: translateY(20px) scale(0.95);
    transition: transform 0.35s var(--ease-out);
}

.retarget-overlay.visible .retarget-popup {
    transform: translateY(0) scale(1);
}

.retarget-close {
    position: absolute;
    top: 12px;
    right: 16px;
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 24px;
    cursor: pointer;
    line-height: 1;
    padding: 4px;
}

.retarget-emoji {
    font-size: 48px;
    margin-bottom: 16px;
}

.retarget-popup h3 {
    font-family: var(--font-display);
    font-size: 24px;
    color: white;
    margin-bottom: 10px;
}

.retarget-popup p {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 24px;
    line-height: 1.6;
}

.retarget-popup p strong {
    color: var(--accent-light);
}

.retarget-cta {
    display: block;
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    color: white;
    font-family: var(--font-display);
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    border-radius: var(--radius-full);
    text-decoration: none;
    text-align: center;
    margin-bottom: 12px;
    transition: box-shadow 0.3s;
    min-height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.retarget-cta:hover {
    box-shadow: 0 4px 24px rgba(255, 87, 34, 0.45);
}

.retarget-dismiss {
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 13px;
    cursor: pointer;
    padding: 8px;
    font-family: var(--font-body);
}

.retarget-dismiss:hover {
    color: var(--text-secondary);
}


/* ---------- HERO CTA PULSE ---------- */
.hero-btn-pulse {
    animation: heroPulse 3s ease-in-out infinite;
}

@keyframes heroPulse {
    0%, 100% { opacity: 0.85; }
    50% { opacity: 1; }
}


/* ---------- MOBILE LAYOUT OVERRIDES ---------- */
@media (max-width: 768px) {

    /* Full-width CTAs */
    .hero-ctas {
        flex-direction: column !important;
        gap: 12px !important;
    }

    .hero-btn {
        width: 100% !important;
        justify-content: center !important;
        min-height: 56px !important;
        font-size: 14px !important;
    }

    /* Single column pricing */
    .pricing-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }

    /* Larger touch targets */
    .btn, .vip-card-btn, .hero-btn, .sticky-cta-btn {
        min-height: 56px;
        font-size: 14px;
    }

    /* FAQ answer CTA inline */
    .faq-answer-cta {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        margin-top: 12px;
        padding: 10px 20px;
        background: linear-gradient(135deg, var(--accent), var(--accent-light));
        color: white;
        font-size: 12px;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.04em;
        border-radius: var(--radius-full);
        text-decoration: none;
    }

    /* Section spacing tighter on mobile */
    .pain-section,
    .content-hub,
    .pricing-section,
    .live-sports-section,
    .faq-section,
    .contact-section {
        padding-top: 60px !important;
        padding-bottom: 60px !important;
    }

    /* Mobile menu CTA */
    .mobile-menu-cta {
        margin-top: 16px;
        padding: 16px 32px;
        background: linear-gradient(135deg, var(--accent), var(--accent-light));
        border-radius: var(--radius-full);
        font-size: 16px !important
    }
}


/* ============================================================
   HERO CAROUSEL REDESIGN — 3 COLUMNS + CARD TYPES
   ============================================================ */

/* --- Base card --- */
.hero-card {
    border-radius: 14px;
    overflow: hidden;
    flex-shrink: 0;
    width: 100%;
    contain: layout style paint;
}

/* --- 1. Movie Poster Card --- */
.hero-card-poster {
    position: relative;
    aspect-ratio: 2 / 3;
}
.hero-card-poster img {
    width: 100%; height: 100%;
    object-fit: cover; display: block;
    transition: transform 0.5s ease;
}
.hero-card-poster:hover img {
    transform: scale(1.04);
}
.hero-card-poster::after {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 55%);
    pointer-events: none;
}
.hero-card-poster-title {
    position: absolute;
    bottom: 12px; left: 12px; right: 12px;
    font-family: var(--font-body);
    font-size: 11px; font-weight: 700;
    color: rgba(255,255,255,0.9);
    z-index: 2;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

/* --- 2. Stat Card (base) --- */
.hero-card-stat {
    padding: 22px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-radius: 14px;
    min-height: 140px;
    contain: layout style paint;
}
.hero-card-stat-number {
    font-family: var(--font-display);
    font-size: clamp(36px, 3.5vw, 52px);
    font-weight: 800; line-height: 1;
    color: #fff;
}
.hero-card-stat-label {
    font-size: 13px; font-weight: 600;
    color: rgba(255,255,255,0.9);
    margin-top: 6px;
}
.hero-card-stat-sublabel {
    font-size: 11px;
    color: rgba(255,255,255,0.65);
    margin-top: 3px;
}

/* --- Yellow/Orange Gradient --- */
.hero-card-yellow {
    background: linear-gradient(135deg, #FF8C00 0%, #FF5722 100%);
}

/* --- Green Gradient --- */
.hero-card-green {
    background: linear-gradient(135deg, #1a6b3a 0%, #22a558 100%);
}

/* --- Dark Glass --- */
.hero-card-dark {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 60%, #0f3460 100%);
    border: 1px solid rgba(255,255,255,0.12);
}
.hero-card-dark .hero-card-stat-number { color: #fff; }
.hero-card-dark .hero-card-stat-label  { color: rgba(255,255,255,0.75); }
.hero-card-dark .hero-card-stat-sublabel { color: rgba(255,255,255,0.5); }

/* --- Blue Accent --- */
.hero-card-blue {
    background: linear-gradient(135deg, #0a2a4a 0%, #0d6efd 100%);
}

/* --- 6. Product CTA Card --- */
.hero-card-product {
    background: rgba(30,30,30,0.8);
    border: 1px solid rgba(255,255,255,0.12);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 22px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    border-radius: 14px;
}
.hero-card-product-icon {
    width: 36px; height: 36px;
    background: var(--accent);
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
}
.hero-card-product-name {
    font-family: var(--font-display);
    font-size: 15px; font-weight: 700; color: #fff;
}
.hero-card-product-price {
    font-family: var(--font-display);
    font-size: 24px; font-weight: 800; color: #fff;
    line-height: 1;
}
.hero-card-product-period {
    font-size: 12px; color: rgba(255,255,255,0.45);
    margin-top: -4px;
}
.hero-card-product-btn {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 9px 18px;
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    color: #fff;
    border-radius: 999px;
    font-size: 12px; font-weight: 700;
    text-decoration: none;
    width: fit-content;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    margin-top: 4px;
}
.hero-card-product-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255,87,34,0.4);
}

/* --- 7. Live Badge Card --- */
.hero-card-live {
    background: rgba(220,38,38,0.12);
    border: 1px solid rgba(220,38,38,0.3);
    padding: 22px;
    border-radius: 14px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    min-height: 120px;
    justify-content: center;
}
.hero-card-live-dot {
    width: 8px; height: 8px;
    background: #ef4444;
    border-radius: 50%;
    animation: liveBlink 1.4s ease-in-out infinite;
    display: inline-block;
}
@keyframes liveBlink {
    0%, 100% { opacity: 1; transform: scale(1); }
    50%       { opacity: 0.4; transform: scale(1.6); }
}
.hero-card-live-label {
    display: flex; align-items: center; gap: 8px;
    font-size: 10px; font-weight: 800;
    text-transform: uppercase; letter-spacing: 0.15em;
    color: #ef4444;
}
.hero-card-live-title {
    font-family: var(--font-display);
    font-size: 16px; font-weight: 700; color: #fff;
}
.hero-card-live-sub {
    font-size: 12px; color: rgba(255,255,255,0.5);
}

/* --- 8. Review/Quote Card --- */
.hero-card-review {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    padding: 20px;
    border-radius: 14px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    transition: border-color 0.3s;
}
.hero-card-review:hover {
    border-color: rgba(255,87,34,0.25);
}
.hero-card-review-stars {
    display: flex; gap: 3px; color: #FFD700;
    font-size: 13px;
}
.hero-card-review-text {
    font-size: 13px;
    color: rgba(255,255,255,0.7);
    line-height: 1.55;
    font-style: italic;
}
.hero-card-review-author {
    font-size: 11px;
    font-weight: 700;
    color: rgba(255,255,255,0.4);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}
.card-payment-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
  margin-top: 11px;
  flex-wrap: nowrap;
}
.pay-chip {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.67rem;
  font-weight: 500;
  color: rgba(255,255,255,0.38);
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 20px;
  padding: 3px 8px;
  white-space: nowrap;
  letter-spacing: 0.01em;
}


/* ============================================================
   BLOG / RATGEBER SECTION
   ============================================================ */
.blog-section {
    padding: 100px 0 80px;
     background: #0a0a0a57;
}
.blog-section .section-label {
    text-align: center;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--accent);
    margin-bottom: 12px;
}
.blog-section .section-heading {
    text-align: center;
    font-family: var(--font-heading);
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 800;
    color: var(--text);
    margin-bottom: 16px;
}
.blog-section .section-subheading {
    text-align: center;
    font-size: 16px;
    color: var(--text-muted);
    max-width: 540px;
    margin: 0 auto 48px;
    line-height: 1.6;
}
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.blog-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: transform 0.3s ease, border-color 0.3s ease;
    display: flex;
    flex-direction: column;
}
.blog-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 87, 34, 0.3);
}
.blog-card-img {
    position: relative;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: rgba(255,255,255,0.03);
}
.blog-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}
.blog-card:hover .blog-card-img img {
    transform: scale(1.05);
}
.blog-card-category {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 4px 12px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #fff;
    background: var(--accent);
    border-radius: var(--radius-full);
}
.blog-card-body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex: 1;
}
.blog-card-date {
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 8px;
}
.blog-card-title {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    color: var(--text);
    line-height: 1.4;
    margin-bottom: 12px;
}
.blog-card-excerpt {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 20px;
    flex: 1;
}
.blog-card-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 700;
    color: var(--accent);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    transition: gap 0.3s ease;
}
.blog-card-link:hover {
    gap: 10px;
}
.blog-card-link svg {
    width: 16px;
    height: 16px;
    transition: transform 0.3s ease;
}
.blog-card-link:hover svg {
    transform: translateX(2px);
}
.blog-section-cta {
    text-align: center;
    margin-top: 40px;
}
.blog-section-cta a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--text);
    border: 1px solid var(--border);
    border-radius: var(--radius-full);
    text-decoration: none;
    transition: border-color 0.3s ease, background 0.3s ease;
}
.blog-section-cta a:hover {
    border-color: var(--accent);
    background: rgba(255, 87, 34, 0.05);
}

@media (max-width: 900px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 600px) {
    .blog-section {
        padding: 60px 0;
    }
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .blog-card-title {
        font-size: 16px;
    }
}