        /* ========================================
           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: #6b6b6b;
            --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;
        }

        /* ========================================
           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: 0; height: 2px;
            background: var(--accent);
            border-radius: 2px;
            transition: width 0.3s var(--ease-out);
        }

        .nav-links a:hover { color: white; }
        .nav-links a:hover::after { width: 100%; }
        .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);
            filter: brightness(1.1);
        }

        .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: center;
            overflow: hidden;
            padding-top: 72px;
            /* background: linear-gradient(135deg, #060a14 0%, #0a0e1a 40%, #0d1220 100%); */
           
        }
            @keyframes gradientDrift {
  0% { background-position: 10% 10%; }
  50% { background-position: 80% 50%; }
  100% { background-position: 10% 10%; }
}
        body {
            animation: gradientDrift 15s linear infinite;
            background-size: 200% 200%;
        }

        .hero-inner {
            position: relative;
            z-index: 2;
            display: grid;
            grid-template-columns: 1fr;
            gap: 40px;
            align-items: center;
            padding: 40px 0 60px;
            width: 100%;
        }

        @media (min-width: 1024px) {
            .hero-inner {
                grid-template-columns: 55% 45%;
                gap: 40px;
                padding: 20px 0 40px;
            }
        }

        /* ---- POSTER CAROUSELS (left side) ---- */
        .hero-carousels {
            position: relative;
            order: 2;
            overflow: hidden;
            height: 600px;
            display: flex;
            flex-direction: row;
            gap: 14px;
            transform: scale(0.9);
            transform-origin: center center;
            -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
            mask-image: linear-gradient(180deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
        }

        @media (min-width: 1024px) {
            .hero-carousels {
                order: 1;
                height: 650px;
                gap: 16px;
            }
        }

        .hero-carousel-col {
            display: flex;
            flex-direction: column;
            gap: 14px;
            height: max-content;
            will-change: transform;
            flex: 1;
        }

        /* Col 1: scroll up, slow */
        .hero-carousel-col--1 {
            animation: heroScrollUp 50s linear infinite;
        }
        /* Col 2: scroll down, medium */
        .hero-carousel-col--2 {
            animation: heroScrollDown 40s linear infinite;
        }
        /* Col 3: scroll up, faster */
        .hero-carousel-col--3 {
            animation: heroScrollUp 30s linear infinite;
        }

        @keyframes heroScrollUp {
            0%   { transform: translateY(0); }
            100% { transform: translateY(-50%); }
        }

        @keyframes heroScrollDown {
            0%   { transform: translateY(-50%); }
            100% { transform: translateY(0); }
        }

        /* Pause on hover for browsing */
        .hero-carousels:hover .hero-carousel-col {
            animation-play-state: paused;
        }

        .hero-poster {
            position: relative;
            flex-shrink: 0;
            width: 100%;
            aspect-ratio: 2 / 3;
            border-radius: 12px;
            overflow: hidden;
            cursor: pointer;
            transition: transform 0.4s cubic-bezier(0.25,0.46,0.45,0.94), box-shadow 0.4s ease;
        }

        .hero-poster img {
            width: 100%; height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        /* Fallback for broken poster images */
        .hero-poster img.img-broken {
            display: none;
        }
        .hero-poster.img-fallback {
            background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
        }
        .hero-poster.img-fallback .hero-poster-title {
            opacity: 1;
            transform: translateY(0);
            bottom: 0; left: 0; right: 0; top: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 13px;
            text-align: center;
            padding: 12px;
            background: rgba(0,0,0,0.3);
        }

        .hero-poster::after {
            content: '';
            position: absolute; inset: 0;
            background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,0.65) 100%);
            pointer-events: none;
            transition: opacity 0.3s;
        }

        .hero-poster:hover {
            transform: scale(1.08) translateY(-4px);
            box-shadow: 0 20px 50px rgba(0,0,0,0.6), 0 0 40px rgba(255,87,34,0.12);
            z-index: 3;
        }

        .hero-poster:hover img {
            transform: scale(1.1);
        }

        .hero-poster-title {
            position: absolute;
            bottom: 10px; left: 10px; right: 10px;
            font-size: 11px;
            font-weight: 700;
            color: #fff;
            text-transform: uppercase;
            letter-spacing: 0.04em;
            z-index: 2;
            opacity: 0;
            transform: translateY(8px);
            transition: opacity 0.3s, transform 0.3s;
        }

        .hero-poster:hover .hero-poster-title {
            opacity: 1;
            transform: translateY(0);
        }

        /* ---- HERO CONTENT (right side) ---- */
        .hero-content {
            order: 1;
            position: relative;
            z-index: 2;
        }

        @media (min-width: 1024px) {
            .hero-content {
                order: 2;
                padding-left: 20px;
            }
        }

        .hero-scroll-label {
            display: inline-flex;
            align-items: center;
            gap: 14px;
            font-size: 11px;
            font-weight: 600;
            letter-spacing: 0.25em;
            text-transform: uppercase;
            color: var(--text-muted);
            margin-bottom: 32px;
        }

        .hero-scroll-label::after {
            content: '';
            display: block;
            width: 50px;
            height: 1px;
            background: var(--text-muted);
        }

        .hero-title {
            font-size: clamp(34px, 4.5vw, 62px);
            font-weight: 800;
            line-height: 1.1;
            letter-spacing: -0.03em;
            margin-bottom: 24px;
            color: var(--text-primary);
        }

        .hero-title .accent {
            color: transparent;
            background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
            -webkit-background-clip: text;
            background-clip: text;
        }

        .hero-desc {
            font-size: 15px;
            color: var(--text-secondary);
            max-width: 440px;
            line-height: 1.75;
            margin-bottom: 36px;
        }

        .hero-ctas {
            display: flex;
            flex-wrap: wrap;
            gap: 14px;
        }

        /* Pill CTA buttons */
        .hero-btn {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 14px 32px;
            border-radius: 50px;
            font-size: 14px;
            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 {
            background: var(--accent-light);
            box-shadow: 0 8px 40px rgba(255,87,34,0.5);
            transform: translateY(-2px);
        }

        .hero-btn-secondary {
            background: rgba(255,255,255,0.06);
            color: var(--text-primary);
            border: 1.5px solid rgba(255,255,255,0.12);
            backdrop-filter: blur(8px);
        }

        .hero-btn-secondary:hover {
            background: rgba(255,255,255,0.12);
            border-color: rgba(255,255,255,0.25);
            transform: translateY(-2px);
        }

        .hero-btn svg {
            width: 16px; height: 16px;
        }

        /* Overlay gradient on top of carousels */
        .hero-carousels::before {
            content: '';
            position: absolute;
            top: 0; left: 0; right: 0; bottom: 0;
            background: radial-gradient(ellipse 50% 60% at 50% 50%, transparent 20%, rgba(6,10,20,0.65) 100%);
            z-index: 1;
            pointer-events: none;
        }

        /* Mobile adjustments */
        @media (max-width: 1023px) {
            .hero { min-height: auto; padding-bottom: 30px; }
            .hero-content { text-align: center; }
            .hero-desc { margin-left: auto; margin-right: auto; }
            .hero-ctas { justify-content: center; }
            .hero-scroll-label { justify-content: center; }
            .hero-carousels { height: 420px; gap: 10px; }
            .hero-poster { border-radius: 10px; }
        }

        @media (max-width: 480px) {
            .hero-carousels { height: 340px; gap: 8px; }
            .hero-poster { border-radius: 8px; }
            .hero-btn { padding: 14px 28px; font-size: 13px; min-height: 48px; }
        }

        /* ========================================
           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;
        }

        @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;
        }

        /* 5-col poster grid */
        .hub-gallery {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 14px;
        }
        @media (max-width: 1024px) {
            .hub-gallery { grid-template-columns: repeat(4, 1fr); gap: 12px; }
        }
        @media (max-width: 768px) {
            .hub-gallery { grid-template-columns: repeat(3, 1fr); gap: 10px; }
            .hub-gallery .hub-poster:nth-child(n+7) { display: none; }
        }
        @media (max-width: 480px) {
            .hub-gallery {
                grid-template-columns: repeat(2, 1fr);
                gap: 8px;
            }
        }

        .hub-poster {
            position: relative;
            border-radius: var(--radius-lg);
            overflow: hidden;
            cursor: pointer;
            transition: transform 0.45s var(--ease-out);
        }
        .hub-poster:hover {
            transform: scale(1.04);
            z-index: 2;
        }
        .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;
        }
        .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; }
        }

        /* ========================================
           SECTION D: PRICING 3-COL
        ======================================== */
        .vip-pricing-3col {
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            max-width: 1100px;
            margin: 0 auto;
        }

        .vip-card-period {
            font-size: 13px;
            color: var(--text-muted);
            margin-top: -4px;
            margin-bottom: 24px;
        }

        /* ========================================
           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);
        }

        .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;
        }

        .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; }
        }

        /* ========================================
           ABOUT / 2-COL
        ======================================== */
        .two-col {
            display: grid;
            grid-template-columns: 1fr;
            gap: 48px;
            align-items: center;
        }

        @media (min-width: 1024px) {
            .two-col { grid-template-columns: 1fr 1fr; gap: 80px; }
        }

        .check-list {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 16px;
            margin: 28px 0 40px;
        }

        .check-list li {
            display: flex;
            align-items: center;
            gap: 14px;
            font-size: 15px;
            color: var(--text-secondary);
        }

        .check-icon {
            width: 28px; height: 28px;
            border-radius: 50%;
            background: var(--accent-subtle);
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .check-icon svg {
            width: 14px; height: 14px;
            color: var(--accent);
        }

        /* Image stack */
        .image-stack {
            position: relative;
        }

        .image-stack-glow {
            position: absolute; inset: -4px;
            border-radius: var(--radius-lg);
            background: linear-gradient(135deg, rgba(255,87,34,0.12), transparent 50%, rgba(255,140,0,0.08));
            filter: blur(30px);
            z-index: 0;
        }

        .image-stack-main {
            position: relative; z-index: 1;
            border-radius: var(--radius-lg);
            overflow: hidden;
        }

        .image-stack-main img {
            width: 100%; height: 460px;
            object-fit: cover;
        }

        .image-stack-float {
            position: absolute;
            bottom: -24px; left: -24px;
            z-index: 2;
            width: 160px; height: 160px;
            border-radius: var(--radius-md);
            overflow: hidden;
            border: 3px solid var(--bg-primary);
            box-shadow: 0 20px 40px rgba(0,0,0,0.5);
            transition: transform 0.4s var(--ease-out);
        }

        .image-stack-float:hover {
            transform: scale(1.05) rotate(-2deg);
        }

        .image-stack-float img {
            width: 100%; height: 100%;
            object-fit: cover;
        }

        /* ========================================
           STATS BAND
        ======================================== */
        .stats-band {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 24px;
            padding: 48px 0;
        }

        @media (min-width: 768px) {
            .stats-band { grid-template-columns: repeat(4, 1fr); }
        }

        .stat {
            text-align: center;
            padding: 24px;
        }

        .stat-number {
            font-family: var(--font-display);
            font-size: clamp(36px, 4.5vw, 56px);
            font-weight: 800;
            letter-spacing: -0.04em;
            line-height: 1;
        }

        .stat-label {
            font-size: 12px;
            color: var(--text-muted);
            text-transform: uppercase;
            letter-spacing: 0.12em;
            margin-top: 8px;
        }

        /* ========================================
           SERVICES / WHY CHOOSE US
        ======================================== */
        .services-layout {
            display: grid;
            grid-template-columns: 1fr;
            gap: 60px;
        }

        @media (min-width: 1024px) {
            .services-layout {
                grid-template-columns: 1fr 1fr;
                gap: 80px;
            }
        }

        .services-left {
            position: relative;
        }

        @media (min-width: 1024px) {
            .services-left {
                position: sticky;
                top: 120px;
                align-self: start;
            }
        }

        .services-heading {
            font-family: var(--font-display);
            font-size: clamp(36px, 5vw, 56px);
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: -0.03em;
            line-height: 1.05;
            color: var(--text-primary);
        }

        .services-heading .accent {
            color: transparent;
            background: linear-gradient(135deg, var(--accent), var(--accent-light));
            -webkit-background-clip: text;
            background-clip: text;
        }

        .services-right {
            display: flex;
            flex-direction: column;
        }

        .service-item {
            padding: 40px 0;
            border-top: 1px solid var(--border);
            position: relative;
            transition: all 0.4s var(--ease-out);
        }

        .service-item:last-child {
            border-bottom: 1px solid var(--border);
        }

        .service-item::before {
            content: '';
            position: absolute;
            top: -1px;
            left: 0;
            width: 0;
            height: 1px;
            background: linear-gradient(90deg, var(--accent), var(--accent-light));
            transition: width 0.6s var(--ease-out);
        }

        .service-item:hover::before {
            width: 100%;
        }

        .service-number {
            font-family: var(--font-display);
            font-size: 12px;
            font-weight: 600;
            color: var(--text-muted);
            letter-spacing: 0.08em;
            margin-bottom: 16px;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .service-number::after {
            content: '';
            width: 20px;
            height: 1px;
            background: var(--text-dim);
        }

        .service-name {
            font-family: var(--font-display);
            font-size: clamp(20px, 2.5vw, 26px);
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.02em;
            margin-bottom: 6px;
            transition: color 0.3s;
        }

        .service-item:hover .service-name {
            color: var(--accent);
        }

        .service-tagline {
            font-size: 15px;
            font-weight: 600;
            color: var(--text-secondary);
            margin-bottom: 8px;
        }

        .service-desc {
            font-size: 14px;
            color: var(--text-muted);
            line-height: 1.7;
            max-width: 480px;
            margin-bottom: 20px;
        }

        .service-link {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-size: 13px;
            font-weight: 600;
            color: var(--accent);
            transition: gap 0.3s;
        }

        .service-link:hover { gap: 14px; }

        .service-link svg {
            width: 16px; height: 16px;
            transition: transform 0.3s;
        }

        .service-link:hover svg {
            transform: translateX(2px);
        }

        /* ========================================
           HORIZONTAL SHOWCASE
        ======================================== */
        .showcase-scroll-wrap {
            overflow: hidden;
            will-change: transform;
        }

        .showcase-scroll-track {
            display: flex;
            gap: 20px;
            width: max-content;
            will-change: transform;
            backface-visibility: hidden;
            -webkit-backface-visibility: hidden;
            transform: translateZ(0);
        }

        .showcase-card {
            width: 280px;
            flex-shrink: 0;
            border-radius: var(--radius-lg);
            overflow: hidden;
            position: relative;
            cursor: pointer;
            transition: transform 0.5s var(--ease-out);
            backface-visibility: hidden;
            transform: translateZ(0);
            contain: layout style paint;
        }

        @media (min-width: 768px) {
            .showcase-card { width: 320px; }
        }

        .showcase-card:hover { transform: scale(1.03); }

        .showcase-card img {
            width: 100%; height: 400px;
            object-fit: cover;
            transition: transform 0.6s var(--ease-out);
        }

        .showcase-card:hover img { transform: scale(1.08); }

        .showcase-card-overlay {
            position: absolute; inset: 0;
            background: linear-gradient(to top, rgba(15,15,15,0.95) 0%, rgba(15,15,15,0.2) 50%, transparent 100%);
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            padding: 24px;
        }

        .showcase-badge {
            display: inline-block;
            font-size: 10px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            color: white;
            background: linear-gradient(135deg, var(--accent), var(--accent-light));
            padding: 4px 10px;
            border-radius: var(--radius-full);
            margin-bottom: 10px;
            width: fit-content;
        }

        .showcase-card-title {
            font-size: 18px;
            font-weight: 700;
        }

        /* ========================================
           EXPERIENCE / GRADIENT HEADING
        ======================================== */
        .experience-heading {
            font-size: clamp(40px, 6vw, 72px);
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: -0.04em;
            background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 40%, #FFD54F 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            line-height: 1;
        }

        /* ========================================
           PRICING
        ======================================== */
        .pricing-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 20px;
            align-items: start;
        }

        @media (min-width: 768px) {
            .pricing-grid { grid-template-columns: repeat(3, 1fr); }
        }

        .pricing-card {
            background: var(--bg-card);
            border: 1px solid var(--border);
            border-radius: var(--radius-lg);
            padding: 40px 32px;
            position: relative;
            overflow: hidden;
            transition: all 0.4s var(--ease-out);
        }

        .pricing-card:hover {
            border-color: var(--border-hover);
            transform: translateY(-6px);
            box-shadow: 0 24px 48px rgba(0,0,0,0.3);
        }

        .pricing-card.popular {
            background: linear-gradient(180deg, #1e1e1e, #151515);
            border-color: rgba(255,87,34,0.4);
            box-shadow: 0 0 80px rgba(255,87,34,0.06);
        }

        .pricing-card.popular:hover {
            box-shadow: 0 0 80px rgba(255,87,34,0.12),
                        0 24px 48px rgba(0,0,0,0.3);
        }

        .pricing-accent-line {
            position: absolute;
            top: 0; left: 0; right: 0;
            height: 2px;
            background: linear-gradient(90deg, transparent, var(--accent), var(--accent-light), transparent);
        }

        .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;
        }

        .pricing-plan {
            font-size: 18px;
            font-weight: 600;
            color: var(--text-secondary);
            margin-bottom: 8px;
        }

        .pricing-price {
            font-family: var(--font-display);
            font-size: 48px;
            font-weight: 800;
            letter-spacing: -0.04em;
            margin-bottom: 28px;
        }

        .pricing-price .unit {
            font-size: 15px;
            font-weight: 400;
            color: var(--text-muted);
        }

        .pricing-features {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 14px;
            margin-bottom: 32px;
        }

        .pricing-features li {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 14px;
            color: var(--text-secondary);
        }

        .pricing-features svg {
            width: 16px; height: 16px;
            color: var(--accent);
            flex-shrink: 0;
        }

        /* ========================================
           CTA BANNER
        ======================================== */
        .cta-banner {
            position: relative;
            overflow: hidden;
            padding: 140px 0;
        }

        .cta-banner-bg {
            position: absolute; inset: 0;
            background: radial-gradient(ellipse 80% 60% at 50% 50%, rgba(255,87,34,0.1), transparent 70%);
        }

        .cta-banner .divider-accent {
            position: absolute;
            top: 0; left: 0; right: 0;
        }

        .cta-banner .divider-accent:last-of-type {
            top: auto; bottom: 0;
        }

        /* ========================================
           FOOTER
        ======================================== */
        .footer {
            border-top: 1px solid var(--border);
            padding-top: 100px;
            padding-bottom: 40px;
              
        }

        /* Footer Grid (legacy) */
        .footer-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 40px;
            margin-bottom: 60px;
        }

        @media (min-width: 768px) {
            .footer-grid { grid-template-columns: repeat(2, 1fr); }
        }

        @media (min-width: 1024px) {
            .footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 48px; }
        }

        .footer-brand-desc {
            font-size: 14px;
            color: var(--text-primary);
            line-height: 1.7;
            margin: 16px 0 24px;
        }

        .footer-socials {
            display: flex;
            gap: 10px;
        }

        .footer-social {
            width: 40px; height: 40px;
            border-radius: 50%;
            border: 1px solid rgba(255, 255, 255, 1);
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s;
        }

        .footer-social:hover {
            border-color: var(--accent);
            background: var(--accent-subtle);
        }

        .footer-social svg {
            width: 16px; height: 16px;
            color: var(--text-muted);
            transition: color 0.3s;
        }

        .footer-social:hover svg { color: var(--accent); }

        .footer-heading {
            font-family: var(--font-display);
            font-size: 13px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            margin-bottom: 20px;
        }

        .footer-list {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .footer-list a {
            font-size: 14px;
            color: var(--text-muted);
            transition: color 0.3s, transform 0.3s;
            display: inline-block;
        }

        .footer-list a:hover {
            color: white;
            transform: translateX(4px);
        }

        .footer-newsletter-input {
            width: 100%;
            padding: 14px 16px;
            background: var(--bg-secondary);
            border: 1px solid var(--border);
            border-radius: 12px;
            color: white;
            font-size: 14px;
            outline: none;
            transition: border-color 0.3s;
            margin-bottom: 12px;
        }

        .footer-newsletter-input::placeholder { color: var(--text-dim); }
        .footer-newsletter-input:focus { border-color: rgba(255,87,34,0.4); }

        .footer-bottom {
            border-top: 1px solid var(--border);
            padding-top: 28px;
            display: flex;
            flex-direction: column;
            gap: 16px;
            align-items: center;
        }

        @media (min-width: 768px) {
            .footer-bottom {
                flex-direction: row;
                justify-content: space-between;
            }
        }

        .footer-bottom-text {
            font-size: 12px;
            color: var(--text-dim);
        }

        .footer-bottom-links {
            display: flex;
            gap: 24px;
        }

        .footer-bottom-links a {
            font-size: 12px;
            color: var(--text-dim);
            transition: color 0.3s;
        }

        .footer-bottom-links a:hover { color: var(--text-secondary); }

        /* ========================================
           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(255,255,255,0.04);
            border: 1px solid rgba(255,255,255,0.08);
            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(255,255,255,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: 13px;
            font-weight: 600;
            color: var(--text-secondary);
        }
        .social-proof-item svg {
            width: 16px;
            height: 16px;
            color: #4caf50;
        }

        /* CTA glow animation */
        .hero-btn-primary,
        .btn-card-primary {
            animation: ctaGlow 2.5s ease-in-out infinite;
        }
        @keyframes ctaGlow {
            0%, 100% { box-shadow: 0 4px 24px rgba(255,87,34,0.35); }
            50% { box-shadow: 0 8px 40px rgba(255,87,34,0.55), 0 0 20px rgba(255,87,34,0.15); }
        }

        /* 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
        ======================================== */
        .reveal { opacity: 0; transform: translateY(50px); }
        .reveal-left { opacity: 0; transform: translateX(-50px); }
        .reveal-right { opacity: 0; transform: translateX(50px); }

        /* ========================================
           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 {
                opacity: 1 !important;
                transform: none !important;
            }
        }

        /* ========================================
           STREAMING LOGOS
        ======================================== */
        .logos-section {
            padding: 80px 0 60px;
            text-align: center;
        }

        .logos-title {
            font-size: clamp(18px, 2.5vw, 24px);
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.08em;
            margin-bottom: 40px;
            color: var(--text-primary);
        }

        .logos-grid {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 16px;
            max-width: 700px;
            margin: 0 auto;
        }

        .logo-pill {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 12px 28px;
            border-radius: var(--radius-full);
            font-family: var(--font-display);
            font-weight: 800;
            font-size: 16px;
            letter-spacing: 0.02em;
            transition: all 0.3s var(--ease-out);
            min-width: 130px;
        }

        .logo-pill:hover {
            transform: translateY(-2px) scale(1.04);
        }

        .logo-pill.disney { background: #1a1d29; color: #fff; }
        .logo-pill.hulu { background: #1ce783; color: #040405; }
        .logo-pill.netflix { background: #e50914; color: #fff; }
        .logo-pill.appletv { background: #000; color: #fff; border: 1px solid #333; }
        .logo-pill.prime { background: #00a8e1; color: #fff; }
        .logo-pill.hbo { background: #7b2d8e; color: #fff; }
        .logo-pill.peacock { background: #000; color: #fff; border: 1px solid #333; }
        .logo-pill.sky { background: #0072c9; color: #fff; }

        /* ========================================
           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);
        }

        @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; box-shadow: 0 0 0 0 rgba(255,255,255,0.6); }
            50% { opacity: 0.6; box-shadow: 0 0 0 6px rgba(255,255,255,0); }
        }

        /* 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 (4-column)
        ======================================== */
        .vip-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);
        }

        .vip-pricing-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 16px;
            align-items: stretch;
        }

        @media (min-width: 768px) {
            .vip-pricing-grid { grid-template-columns: repeat(2, 1fr); }
        }

        @media (min-width: 1200px) {
            .vip-pricing-grid { grid-template-columns: repeat(4, 1fr); }
        }

        .vip-card {
            background: rgba(30, 30, 30, 0.4);
            backdrop-filter: blur(24px);
            -webkit-backdrop-filter: blur(24px);
            border: 1px solid rgba(255,255,255,0.08);
            border-radius: 16px;
            padding: 36px 28px;
            position: relative;
            overflow: hidden;
            transition: all 0.4s var(--ease-out);
            display: flex;
            flex-direction: column;
        }

        .vip-card:hover {
            border-color: rgba(255,106,0,0.25);
            transform: translateY(-6px);
            box-shadow: 0 24px 48px rgba(0,0,0,0.3);
            background: rgba(40, 40, 40, 0.5);
        }

        .vip-card.featured {
            border: 2px solid var(--accent);
            box-shadow: 0 0 40px rgba(255,87,34,0.15), 0 0 80px rgba(255,87,34,0.06);
        }

        .vip-card.featured:hover {
            box-shadow: 0 0 60px rgba(255,87,34,0.2), 0 24px 48px rgba(0,0,0,0.3);
        }

        .vip-card-label {
            font-size: 11px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.12em;
            color: var(--text-muted);
            margin-bottom: 8px;
        }

        .vip-card-label.accent { color: var(--accent); }

        .vip-card-name {
            font-family: var(--font-display);
            font-size: 20px;
            font-weight: 900;
            text-transform: uppercase;
            margin-bottom: 6px;
            color: var(--text-primary);
        }

        .vip-card-price {
            font-family: var(--font-display);
            font-size: 42px;
            font-weight: 800;
            letter-spacing: -0.03em;
            margin-bottom: 24px;
            color: var(--text-primary);
        }

        .vip-card-price .currency {
            font-size: 22px;
        }

        .vip-card-price.free {
            color: var(--accent);
        }

        .vip-card-duration {
            font-size: 13px;
            color: var(--text-muted);
            margin-bottom: 20px;
            font-weight: 500;
        }

        .vip-features-list {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 12px;
            margin-bottom: 28px;
            flex-grow: 1;
        }

        .vip-features-list li {
            display: flex;
            align-items: flex-start;
            gap: 10px;
            font-size: 14px;
            color: var(--text-secondary);
            line-height: 1.5;
        }

        .vip-features-list li i {
            color: var(--text-secondary);
            width: 16px;
            height: 16px;
            flex-shrink: 0;
            margin-top: 2px;
        }

        .vip-card .btn-card-outline {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            width: 100%;
            padding: 16px 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-card-outline:hover {
            border-color: var(--border-hover);
            background: rgba(255,255,255,0.03);
            transform: translateY(-2px);
        }

        .vip-card .btn-card-primary {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            width: 100%;
            padding: 16px 24px;
            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;
            transition: all 0.3s;
            text-decoration: none;
            box-shadow: 0 8px 24px rgba(255,87,34,0.3);
        }

        .vip-card .btn-card-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 12px 32px rgba(255,87,34,0.4);
        }

        /* ========================================
           LIVE SPORTS
        ======================================== */
        .sports-section {
            padding: 120px 0;
            background: linear-gradient(180deg, var(--bg-primary), #1a0a00 40%, #0f0f0f);
            position: relative;
            overflow: hidden;
        }

        .sports-bg {
            position: absolute;
            inset: 0;
            background: url('https://images.unsplash.com/photo-1461896836934-bd45ba936cf2?q=80&w=2070&auto=format&fit=crop') center/cover no-repeat;
            opacity: 0.1;
        }

        .sports-content {
            position: relative;
            z-index: 1;
        }

        .sports-heading {
            font-size: clamp(40px, 7vw, 80px);
            font-weight: 900;
            text-transform: uppercase;
            line-height: 0.95;
            letter-spacing: -0.04em;
            margin-bottom: 20px;
        }

        .sports-heading .accent {
            color: var(--accent);
        }

        .league-logos {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            margin-top: 40px;
            align-items: center;
        }

        .league-logo {
            width: 64px;
            height: 64px;
            border-radius: var(--radius-md);
            background: var(--bg-card);
            border: 1px solid var(--border);
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: var(--font-display);
            font-size: 10px;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            color: var(--text-secondary);
            transition: all 0.3s;
        }

        .league-logo:hover {
            border-color: var(--accent);
            transform: scale(1.08);
        }

        /* ========================================
           COUNTRY LIST
        ======================================== */
        .countries-section {
            padding: 100px 0;
            background: var(--bg-secondary);
        }

        .countries-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 0;
        }

        @media (min-width: 768px) {
            .countries-grid { grid-template-columns: 1fr 1fr; }
        }

        .country-item {
            padding: 14px 20px;
            font-size: 14px;
            color: var(--text-secondary);
            border-bottom: 1px solid var(--border);
            transition: all 0.3s;
        }

        .country-item:hover {
            color: white;
            background: var(--accent-subtle);
        }

        .country-flag-header {
            text-align: center;
            margin-bottom: 40px;
        }

        .country-flag-header img {
            width: 40px;
            margin: 0 auto;
        }

        /* ========================================
           DEVICE MOCKUP
        ======================================== */
        .device-section {
            padding: 120px 0;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .device-mockup {
            max-width: 750px;
            margin: 0 auto;
            position: relative;
        }

        .device-frame {
            background: #1a1a1a;
            border-radius: 24px;
            padding: 16px;
            border: 2px solid #333;
            box-shadow: 0 40px 80px rgba(0,0,0,0.6);
        }

        .device-screen {
            background: linear-gradient(135deg, #0a0a0a, #1a1a1a);
            border-radius: 12px;
            overflow: hidden;
            aspect-ratio: 16/9;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
        }

        .device-screen-content {
            text-align: center;
        }

        .device-screen-content h3 {
            font-size: clamp(20px, 3vw,36px);
            background: linear-gradient(135deg, var(--accent), var(--accent-light));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            font-weight: 800;
            text-transform: uppercase;
        }

        .play-btn-overlay {
            position: absolute;
            inset: 0;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .play-btn-circle {
            width: 72px;
            height: 72px;
            border-radius: 50%;
            background: var(--accent);
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s;
            box-shadow: 0 8px 32px rgba(255,87,34,0.4);
        }

        .play-btn-circle:hover {
            transform: scale(1.1);
            box-shadow: 0 12px 48px rgba(255,87,34,0.5);
        }

        .play-btn-circle i {
            color: white;
            width: 28px;
            height: 28px;
            margin-left: 3px;
        }

        .device-dots {
            display: flex;
            justify-content: center;
            gap: 8px;
            margin-top: 24px;
        }

        .device-dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: var(--text-dim);
            transition: background 0.3s;
        }

        .device-dot.active { background: var(--accent); }

        /* ========================================
           FEATURES CARDS
        ======================================== */
        .features-cards-section {
            padding: 100px 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);
        }

        .features-cards-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 20px;
        }

        @media (min-width: 768px) {
            .features-cards-grid { grid-template-columns: repeat(2, 1fr); }
        }

        .feature-card-item {
            background: rgba(30, 30, 30, 0.4);
            backdrop-filter: blur(24px);
            -webkit-backdrop-filter: blur(24px);
            border: 1px solid rgba(255,255,255,0.08);
            border-radius: var(--radius-lg);
            padding: 36px 28px;
            transition: all 0.4s var(--ease-out);
        }

        .feature-card-item:hover {
            border-color: rgba(255,106,0,0.25);
            background: rgba(40, 40, 40, 0.5);
            transform: translateY(-4px);
        }

        .feature-card-icon {
            width: 48px;
            height: 48px;
            border-radius: 12px;
            background: var(--accent-subtle);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
        }

        .feature-card-icon i {
            color: var(--accent);
            width: 22px;
            height: 22px;
        }

        .feature-card-item h4 {
            font-size: 18px;
            font-weight: 700;
            margin-bottom: 8px;
        }

        .feature-card-item p {
            font-size: 14px;
            color: var(--text-muted);
            line-height: 1.7;
        }

        /* ========================================
           STEPS
        ======================================== */
        .steps-section {
            padding: 80px 0;
        }

        .steps-row {
            display: grid;
            grid-template-columns: 1fr;
            gap: 32px;
            text-align: center;
        }

        @media (min-width: 768px) {
            .steps-row { grid-template-columns: repeat(3, 1fr); }
        }

        .step-item h4 {
            font-size: 16px;
            font-weight: 700;
            margin-bottom: 8px;
        }

        .step-item p {
            font-size: 13px;
            color: var(--text-muted);
        }

        .step-icon {
            width: 56px;
            height: 56px;
            border-radius: 50%;
            background: var(--accent-subtle);
            border: 1px solid rgba(255,87,34,0.15);
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 16px;
        }

        .step-icon i {
            color: var(--accent);
            width: 22px;
            height: 22px;
        }

        /* ========================================
           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);
        }

        .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;
            gap: 0;
            padding: 16px;
            background: rgba(37, 211, 102, 0.9);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            border: 1px solid rgba(255,255,255,0.15);
            border-radius: var(--radius-full);
            color: #fff;
            font-family: var(--font-body);
            font-size: 14px;
            font-weight: 700;
            text-decoration: none;
            cursor: pointer;
            box-shadow: 0 8px 32px rgba(37,211,102,0.3), 0 2px 8px rgba(0,0,0,0.4);
            transition: all 0.35s var(--ease-out);
            animation: chatPulse 3s ease-in-out infinite;
            overflow: hidden;
            white-space: nowrap;
        }
        .fixed-chat-btn span {
            display: inline-block;
            max-width: 0;
            opacity: 0;
            overflow: hidden;
            transition: max-width 0.35s var(--ease-out), opacity 0.25s ease, margin 0.35s ease;
            margin-left: 0;
        }
        .fixed-chat-btn:hover {
            transform: translateY(-3px) scale(1.04);
            box-shadow: 0 12px 40px rgba(37,211,102,0.45), 0 4px 12px rgba(0,0,0,0.5);
            background: rgba(37, 211, 102, 1);
            padding: 16px 22px 16px 16px;
        }
        .fixed-chat-btn:hover span {
            max-width: 120px;
            opacity: 1;
            margin-left: 10px;
        }
        .fixed-chat-btn svg {
            flex-shrink: 0;
        }
        @keyframes chatPulse {
            0%, 100% { box-shadow: 0 8px 32px rgba(37,211,102,0.3), 0 2px 8px rgba(0,0,0,0.4); }
            50% { box-shadow: 0 8px 40px rgba(37,211,102,0.5), 0 2px 12px rgba(0,0,0,0.4); }
        }
        @media (max-width: 480px) {
            .fixed-chat-btn {
                bottom: 20px;
                right: 20px;
                padding: 14px;
            }
        }

        /* ========================================
           BASEBORN-STYLE FOOTER
        ======================================== */
        .bb-footer {
            color: #ffffff;
            position: relative;
            overflow: hidden;
                background: rgba(12, 12, 12, 0.35);
        }

        .bb-footer-top {
            padding: 48px 0 40px;
            border-bottom: 1px solid rgba(0,0,0,0.1);
        }

        .bb-footer-columns {
            display: grid;
            grid-template-columns: 1fr;
            gap: 32px;
        }

        @media (min-width: 768px) {
            .bb-footer-columns {
                grid-template-columns: 1.4fr 1fr 1fr 1fr;
                gap: 24px;
            }
        }

        .bb-footer-col-label {
            font-family: var(--font-display);
            font-size: 10px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.15em;
            color: #fff;
            margin-bottom: 10px;
        }

        .bb-footer-col-value {
            font-family: var(--font-body);
            font-size: 14px;
            color: #fff;
            line-height: 1.6;
        }

        .bb-footer-col-value a {
            color: #fff;
            text-decoration: none;
            transition: opacity 0.3s;
        }

        .bb-footer-col-value a:hover {
            opacity: 0.55;
        }

        .bb-footer-copyright {
            font-family: var(--font-body);
            font-size: 13px;
            color: #ffffff;
            line-height: 1.6;
        }

        .bb-footer-links {
            display: flex;
            gap: 20px;
            margin-top: 12px;
        }

        .bb-footer-links a {
            font-size: 12px;
            color: #ffffff;
            text-decoration: none;
            transition: color 0.3s;
        }

        .bb-footer-links a:hover {
            color: #ffffff;
        }

        /* Giant brand text */
        .bb-footer-brand {
            position: relative;
            overflow: hidden;
            height: clamp(120px, 20vw, 260px);
            display: flex;
            align-items: flex-end;
            justify-content: center;
            pointer-events: none;
            user-select: none;
        }

        .bb-footer-brand-text {
            font-family: var(--font-display);
            font-weight: 900;
            font-size: clamp(140px, 22vw, 380px);
            text-transform: uppercase;
            letter-spacing: -0.03em;
            line-height: 0.78;
            color: #ffffff;
            white-space: nowrap;
            transform: translateY(18%);
        }

        .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;
        }

        .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: 24px;
            font-size: 15px;
        }

        .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; }
            .vip-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 touch targets */
            .bb-footer-links a {
                padding: 10px 0;
                display: inline-block;
            }
            .bb-footer-col-value a {
                padding: 8px 0;
                display: inline-block;
            }
            .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; }
            .vip-pricing-section { padding: 56px 0; }
            .faq-section { padding: 56px 0 48px; }
            .contact-section { padding: 48px 0 36px; }
            .channels-list-section { padding: 56px 0 48px; }

            /* Hero: show only 2 carousel columns */
            .hero-carousel-col--3 { display: none; }
            .hero-carousels { gap: 10px; }

            /* Show poster titles on touch (no hover) */
            .hero-poster-title {
                opacity: 1;
                transform: translateY(0);
            }

            /* 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: 28px 20px; border-radius: 14px; }
            .vip-card-price { font-size: 36px; }
            .vip-card-name { font-size: 18px; }

            /* 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; }

            /* Footer brand text responsive */
            .bb-footer-brand { height: clamp(80px, 18vw, 140px); }
            .bb-footer-brand-text { font-size: clamp(90px, 24vw, 160px); }
            .bb-footer-columns { gap: 24px; }
            .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; }
            .hero-carousels { height: 280px; }
            .hero-title { font-size: 28px; }
            .hero-desc { font-size: 14px; margin-bottom: 28px; }
            .hero-scroll-label { margin-bottom: 20px; font-size: 10px; }
            .vip-card-price { font-size: 32px; }
            .cl-search { padding: 16px 20px 16px 48px; font-size: 15px; }
            .bb-footer-brand-text { font-size: 80px; }
            .bb-footer-brand { height: 70px; }
        }

        /* --- Active/tap feedback for touch --- */
        @media (hover: none) and (pointer: coarse) {
            /* Show poster titles always on touch devices */
            .hero-poster-title {
                opacity: 1;
                transform: translateY(0);
            }
            .hub-poster-overlay {
                opacity: 1;
            }

            /* Active tap states instead of hover */
            .hero-btn:active { transform: scale(0.97); }
            .vip-card .btn-card-outline:active,
            .vip-card .btn-card-primary: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);
            }

            /* Disable hover animations that look bad on touch */
            .hero-poster:hover {
                transform: none;
                box-shadow: none;
            }
            .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% { box-shadow: 0 4px 24px rgba(255, 87, 34, 0.4); }
    50% { box-shadow: 0 4px 36px rgba(255, 87, 34, 0.65); }
}

@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: center;
    justify-content: center;
    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; }
}


/* ---------- COUNTDOWN TIMER ---------- */
.countdown-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 24px;
    padding: 14px 24px;
    background: rgba(255, 87, 34, 0.08);
    border: 1px solid rgba(255, 87, 34, 0.2);
    border-radius: var(--radius-md);
    flex-wrap: wrap;
}

.countdown-icon {
    font-size: 20px;
}

.countdown-label {
    font-family: var(--font-display);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--accent-light);
}

.countdown-digits {
    display: flex;
    align-items: center;
    gap: 2px;
}

.cd-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: rgba(255, 87, 34, 0.15);
    border-radius: 6px;
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 700;
    color: white;
    letter-spacing: 0.02em;
}

.cd-sep {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 700;
    color: var(--accent);
    margin: 0 2px;
}

@media (max-width: 480px) {
    .countdown-bar { gap: 8px; padding: 12px 16px; }
    .countdown-label { font-size: 10px; }
    .cd-num { width: 30px; height: 30px; font-size: 15px; }
}


/* ---------- EXPRESS CHECKOUT ---------- */
.express-checkout {
    margin-top: 16px;
    text-align: center;
}

.express-label {
    font-size: 11px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    display: block;
    margin-bottom: 10px;
}

.express-buttons {
    display: flex;
    gap: 8px;
    justify-content: center;
}

.express-btn {
    padding: 8px 14px;
    border-radius: 8px;
    font-size: 11px;
    font-weight: 700;
    border: 1px solid rgba(255,255,255,0.12);
    background: rgba(255,255,255,0.04);
    color: var(--text-secondary);
    cursor: pointer;
    transition: all 0.2s;
    letter-spacing: 0.02em;
    font-family: var(--font-display);
}

.express-btn:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.25);
    color: white;
}

.express-apple { border-color: rgba(255,255,255,0.15); }
.express-google { border-color: rgba(66,133,244,0.3); }
.express-paypal { border-color: rgba(0,112,187,0.3); }


/* ---------- PRICING TRUST BADGES ---------- */
.pricing-trust-badges {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid rgba(255,255,255,0.06);
}

.pricing-trust-badges span {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: var(--text-muted);
}

.pricing-trust-badges small {
    font-size: 11px;
    color: var(--text-secondary);
}


/* ---------- CHAT RESPONSE TIME ---------- */
.chat-response-time {
    display: none;
    font-size: 9px;
    opacity: 0.7;
}

@media (max-width: 1023px) {
    .fixed-chat-btn { flex-direction: column; gap: 2px; }
    .chat-response-time { display: block; }
}


/* ---------- 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% { box-shadow: 0 2px 20px rgba(255, 87, 34, 0.3); }
    50% { box-shadow: 0 2px 36px rgba(255, 87, 34, 0.55); }
}


/* ---------- 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 */
    .vip-pricing-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }

    /* Larger touch targets */
    .btn, .btn-card-primary, .btn-card-outline, .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,
    .vip-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;
    }
}
