/* ===== RESET & VARIABLES ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* ===== LIGHT THEME (the only theme) : bingebear.tv design system ===== */
:root {
    --primary: #EA720F;
    --primary-dark: #d4660d;
    --primary-light: #F08A3A;
    --primary-glow: rgba(234, 114, 15, 0.22);
    --bg-body: #FFFFFF;
    --bg-card: #FFFFFF;
    --bg-card-hover: #F7F8FB;
    --bg-section: #FAFAFA;
    --bg-soft: #F7F8FB;
    --text-primary: #061226;
    --text-secondary: #40424D;
    --text-muted: #6E7180;
    --ink: #061226;
    --border: #E8EAF0;
    --border-light: #DCE0EA;
    --success: #10b981;
    --danger: #ef4444;
    --whatsapp: #25D366;
    --gold: #D4AF37;
    --radius: 26px;
    --radius-sm: 14px;
    --radius-xs: 8px;
    --shadow: 0 24px 80px -62px rgba(6, 18, 38, 0.55);
    --shadow-hover: 0 30px 90px -56px rgba(6, 18, 38, 0.6);
    --shadow-lg: 0 32px 90px -56px rgba(6, 18, 38, 0.45);
    --btn-shadow: 0 14px 32px -14px rgba(234, 114, 15, 0.55);
    --font-ar: 'Baloo Bhaijaan 2', 'Readex Pro', sans-serif;
    --font-heading: 'Baloo Bhaijaan 2', 'Readex Pro', sans-serif;
    --font-serif: 'Amiri', Georgia, serif;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);

    /* Overlay & media (light surfaces) */
    --overlay-rgb: 255, 255, 255;
    --media-opacity: 0.22;
    --nav-bg: rgba(255, 255, 255, 0.78);
    --card-glass: #ffffff;
    --btn-text: #ffffff;
    --pricing-popular-bg: #ffffff;
    --pricing-popular-shadow: 0 24px 70px -40px rgba(234, 114, 15, 0.45);
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

/* ===== GLOBAL ANIMATED BACKGROUNDS ===== */

/* Noise texture overlay on body */
body::after {
    content: '';
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    background-repeat: repeat;
    background-size: 256px 256px;
}

/* Keep in-flow content above the body::after noise overlay, but never
   override the fixed chrome (header, sticky bar, floating buttons). */
body > *:not(.navbar):not(.bb-sticky-bar):not(.whatsapp-float):not(.back-to-top):not(.live-visitors):not(.nav-overlay):not(.signup-toast) {
    position: relative;
    z-index: 1;
}

/* Floating mesh gradient blobs */
.mesh-bg {
    position: fixed;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.07;
    pointer-events: none;
    z-index: 0;
}

body {
    font-family: var(--font-ar);
    background: var(--bg-body);
    color: var(--text-primary);
    line-height: 1.7;
    overflow-x: hidden;
    direction: rtl;
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: color var(--transition);
}

a:hover {
    color: var(--primary-light);
}

img {
    max-width: 100%;
}

/* ===== UTILITIES ===== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* EN heading grammar: solid accent, no gradient ink */
.gradient-text {
    color: var(--primary);
}

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

/* EN eyebrow grammar: 11px / 500 / 0.16em tracking / accent. No pill. */
.section-tag {
    display: inline-block;
    color: var(--primary);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.16em;
    margin-bottom: 14px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 16px;
    line-height: 1.3;
}

.section-desc {
    color: var(--text-secondary);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 32px;
    min-height: 44px;
    border-radius: 999px;
    font-family: var(--font-ar);
    font-size: 1rem;
    font-weight: 700;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all var(--transition);
    text-decoration: none;
    white-space: nowrap;
}

.btn-primary {
    background: var(--primary);
    color: var(--btn-text);
    border-color: var(--primary);
    box-shadow: var(--btn-shadow);
}

.btn-primary:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: scale(1.03);
    box-shadow: 0 18px 38px -14px rgba(234, 114, 15, 0.6);
    color: var(--btn-text);
}

.btn-primary:active {
    transform: scale(0.95);
}

.btn-outline {
    background: #fff;
    color: var(--text-primary);
    border-color: var(--border-light);
}

.btn-outline:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: rgba(234, 114, 15, 0.05);
}

.btn-lg {
    padding: 18px 40px;
    font-size: 1.1rem;
}

.btn-block {
    width: 100%;
}

.btn-nav {
    padding: 10px 24px;
    font-size: 0.9rem;
}

/* ===== NAVBAR : glass header (BBHeader recipe: border-b white/70,
   bg white/78, blur 2xl + saturate 150, soft long shadow) ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1200;
    border-bottom: 1px solid rgba(255, 255, 255, 0.7);
    background: rgba(255, 255, 255, 0.78);
    -webkit-backdrop-filter: blur(22px) saturate(150%);
    backdrop-filter: blur(22px) saturate(150%);
    box-shadow: 0 18px 60px -42px rgba(6, 18, 38, 0.42);
}

@supports not (backdrop-filter: blur(1px)) {
    .navbar {
        background: #ffffff;
    }
}

.nav-container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    min-height: 62px;
    padding: 8px 16px;
}

@media (min-width: 640px) {
    .nav-container {
        min-height: 70px;
        padding: 8px 24px;
    }
}

/* Centered pill nav (#F5F5F5 rounded-full), wide desktop only */
.nav-pill {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    display: none;
    align-items: center;
    gap: 4px;
    background: #F5F5F5;
    border-radius: 999px;
    padding: 4px 12px;
}

@media (min-width: 1280px) {
    .nav-pill {
        display: flex;
    }
}

.nav-pill a {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
    border-radius: 999px;
    padding: 8px 12px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-secondary);
    transition: color var(--transition);
    white-space: nowrap;
}

.nav-pill a:hover {
    color: var(--text-primary);
}

/* Actions cluster: WhatsApp text link + trial pill + burger */
.nav-text-link {
    display: none;
    align-items: center;
    gap: 8px;
    min-height: 44px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
    transition: opacity var(--transition);
}

.nav-text-link:hover {
    color: var(--text-primary);
    opacity: 0.8;
}

@media (min-width: 640px) {
    .nav-text-link {
        display: inline-flex;
    }
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: var(--text-primary);
}

.logo-img {
    height: 32px;
    width: auto;
    object-fit: contain;
    display: block;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 400;
    letter-spacing: 0;
}

.logo-highlight {
    color: var(--primary);
}

/* Mobile drawer (below 1280px), restyled to white cards */
.nav-links {
    list-style: none;
    position: fixed;
    top: 0;
    right: -320px;
    width: 300px;
    height: 100vh;
    height: 100dvh;
    background: #ffffff;
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 84px 20px 32px;
    border-left: 1px solid var(--border);
    box-shadow: var(--shadow-lg);
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 998;
    overflow-y: auto;
}

.nav-links.active {
    right: 0;
}

.nav-links a:not(.bb-action-button) {
    display: flex;
    align-items: center;
    min-height: 44px;
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 10px 18px;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    box-shadow: 0 24px 80px -62px rgba(6, 18, 38, 0.55);
    transition: all var(--transition);
}

.nav-links a:not(.bb-action-button):hover {
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-1px);
}

.nav-drawer-ctas {
    margin-top: auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-top: 18px;
    border-top: 1px solid var(--border);
}

@media (min-width: 1280px) {
    .nav-links {
        display: none;
    }
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 14px;
}

/* Language toggle (ع / EN) — mirrors the root EN/FR pill */
.lang-toggle {
    display: inline-flex;
    align-items: center;
    gap: 2px;
    padding: 3px;
    border-radius: 999px;
    border: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.8);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    box-shadow: 0 10px 28px -24px rgba(6, 18, 38, 0.55);
    flex-shrink: 0;
}
.lang-opt {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 30px;
    height: 28px;
    padding: 0 9px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.04em;
    color: var(--text-secondary);
    transition: background var(--transition), color var(--transition);
}
.lang-opt.is-active {
    background: var(--ink);
    color: #fff;
}
.lang-opt:not(.is-active):hover { color: var(--text-primary); }
@media (max-width: 480px) {
    .lang-opt { min-width: 26px; height: 26px; padding: 0 7px; font-size: 11px; }
}

.menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    min-width: 44px;
    min-height: 44px;
    padding: 4px;
    z-index: 999;
}

.menu-toggle span {
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: all var(--transition);
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

@media (min-width: 1280px) {
    .menu-toggle {
        display: none;
    }
}

.nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(6, 18, 38, 0.45);
    z-index: 997;
}

.nav-overlay.active {
    display: block;
}

/* ===== SPOTLIGHT HERO (1:1 port of SpotlightHero.tsx + index.css 108-166) ===== */
@keyframes heroReveal {
    0% {
        opacity: 0;
        visibility: visible;
        transform: translateY(28px);
        filter: blur(12px);
    }
    100% {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        filter: blur(0);
    }
}

@keyframes heroFadeUp {
    0% {
        opacity: 0;
        visibility: visible;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
}

@keyframes heroZoom {
    0% { transform: scale(1.12); }
    100% { transform: scale(1); }
}

.hero-anim {
    opacity: 0;
    visibility: hidden;
    animation-fill-mode: forwards;
    animation-timing-function: cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-reveal {
    animation-name: heroReveal;
    animation-duration: 1.1s;
}

.hero-fade {
    animation-name: heroFadeUp;
    animation-duration: 1s;
}

.hero-zoom {
    animation: heroZoom 1.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@media (prefers-reduced-motion: reduce) {
    .hero-anim,
    .hero-zoom {
        animation: none;
        opacity: 1;
        visibility: visible;
    }
}

.hero-spotlight {
    position: relative;
    width: 100%;
    height: 100vh;
    height: 100svh;
    overflow: hidden;
    background: #061226;
}

.hero-spotlight-media {
    position: absolute;
    inset: 0;
    z-index: 10;
}

.hero-spotlight-media img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Reveal layer: created by script.js only on capable devices */
.hero-spotlight-reveal {
    pointer-events: none;
    position: absolute;
    inset: 0;
    z-index: 30;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Readability washes (same overlay values as EN) */
.hero-spotlight-wash {
    pointer-events: none;
    position: absolute;
    inset: 0;
    z-index: 40;
    background: linear-gradient(180deg, rgba(6, 18, 38, 0.58) 0%, rgba(6, 18, 38, 0.20) 26%, rgba(6, 18, 38, 0) 48%, rgba(6, 18, 38, 0.06) 68%, rgba(6, 18, 38, 0.62) 100%);
}

/* Headline: top-center at 14% */
.hero-spot-headline {
    pointer-events: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 14%;
    z-index: 50;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 20px;
    text-align: center;
}

.hero-spot-headline h1 {
    color: #ffffff;
    /* EN leading-[0.95]; Arabic ascenders/dots need slightly more air */
    line-height: 1.12;
}

.hero-spot-line1 {
    display: block;
    font-family: var(--font-serif);
    font-style: italic;
    font-weight: 400;
    font-size: 3rem;
    /* EN -0.03em: negative tracking breaks Arabic letter joins, kept at 0 */
    letter-spacing: 0;
}

.hero-spot-line2 {
    display: block;
    margin-top: -4px;
    font-family: var(--font-ar);
    font-weight: 700;
    font-size: 3rem;
    /* EN -0.05em: kept at 0 for Arabic */
    letter-spacing: 0;
}

@media (min-width: 640px) {
    .hero-spot-line1,
    .hero-spot-line2 { font-size: 4.5rem; }
}

@media (min-width: 768px) {
    .hero-spot-line1,
    .hero-spot-line2 { font-size: 5.5rem; }
}

/* Pulsing WhatsApp-green ping dot (Tailwind animate-ping port) */
.bb-ping {
    position: relative;
    display: inline-flex;
    width: 10px;
    height: 10px;
    flex-shrink: 0;
}

.bb-ping--sm {
    width: 8px;
    height: 8px;
}

.bb-ping-ring {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: var(--whatsapp);
    opacity: 0.6;
    animation: bbPing 1.2s cubic-bezier(0, 0, 0.2, 1) infinite;
}

.bb-ping-core {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: var(--whatsapp);
}

.bb-ping--accent .bb-ping-ring,
.bb-ping--accent .bb-ping-core {
    background: var(--primary);
}

@keyframes bbPing {
    75%, 100% { transform: scale(2); opacity: 0; }
}

/* Corner: live proof + quick links (RTL start corner = right, desktop only) */
.hero-spot-proof {
    position: absolute;
    bottom: 56px;
    right: 40px;
    z-index: 50;
    display: none;
    flex-direction: column;
    gap: 12px;
    max-width: 280px;
}

@media (min-width: 640px) {
    .hero-spot-proof { display: flex; }
}

@media (min-width: 768px) {
    .hero-spot-proof { right: 56px; }
}

.hero-spot-live {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #ffffff;
}

.hero-spot-live-label {
    font-size: 0.875rem;
    font-weight: 600;
}

.hero-spot-proofline {
    font-size: 0.875rem;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.8);
}

.hero-spot-links {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 4px 16px;
}

.hero-spot-links a {
    display: inline-flex;
    min-height: 44px;
    align-items: center;
    gap: 4px;
    font-size: 0.875rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    transition: opacity var(--transition);
}

.hero-spot-links a:hover {
    color: rgba(255, 255, 255, 0.9);
    opacity: 0.8;
}

/* Corner: subheadline + CTA (RTL end corner = left; full-width bottom block on mobile) */
.hero-spot-cta {
    position: absolute;
    bottom: 112px;
    left: 20px;
    right: 20px;
    z-index: 50;
    display: flex;
    max-width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
}

@media (min-width: 640px) {
    .hero-spot-cta {
        bottom: 96px;
        right: auto;
        left: 40px;
        max-width: 300px;
        gap: 20px;
    }
}

@media (min-width: 768px) {
    .hero-spot-cta { left: 56px; }
}

/* Mobile-only proof block inside the CTA stack (mirrors EN sm:hidden) */
.hero-spot-proof-mobile {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

@media (min-width: 640px) {
    .hero-spot-proof-mobile { display: none; }
}

.hero-spot-proof-mobile .hero-spot-live-label,
.hero-spot-proof-mobile .hero-spot-proofline,
.hero-spot-proof-mobile .hero-spot-links a {
    font-size: 0.75rem;
}

.hero-spot-sub {
    font-size: 0.75rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
}

@media (min-width: 640px) {
    .hero-spot-sub { font-size: 0.875rem; }
}

.hero-spot-cta-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 16px;
}

/* EN trial pill recipe: rounded-full bg accent px-7 py-3 white,
   hover scale 1.03 + accent-hover + orange shadow, active scale .95 */
.hero-spot-trial {
    display: inline-flex;
    min-height: 44px;
    align-items: center;
    border-radius: 999px;
    background: var(--primary);
    padding: 12px 28px;
    font-size: 0.875rem;
    font-weight: 600;
    color: #ffffff;
    transition: all var(--transition);
}

.hero-spot-trial:hover {
    transform: scale(1.03);
    background: var(--primary-dark);
    color: #ffffff;
    box-shadow: 0 10px 15px -3px rgba(234, 114, 15, 0.3), 0 4px 6px -4px rgba(234, 114, 15, 0.3);
}

.hero-spot-trial:active {
    transform: scale(0.95);
}

.hero-spot-text-cta {
    display: inline-flex;
    min-height: 44px;
    align-items: center;
    font-size: 0.875rem;
    font-weight: 700;
    color: #ffffff;
    transition: opacity var(--transition);
}

.hero-spot-text-cta:hover {
    color: #ffffff;
    opacity: 0.8;
}

.hero-spot-note {
    margin-top: -8px;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.6);
}

/* ==========================================================================
   LIQUID-GLASS VIDEO HERO (RTL Arabic port of LiquidGlassHero.tsx)
   Ported from 09-MAGICPATH-SITE/src/index.css .liquid-glass / -strong, with
   the gradient-hairline ::before mask kept exactly. CTA icon circle + pill
   dots use BingeBear orange. Layout mirrored for dir=rtl: text panel starts
   on the right, feature panel ends on the left.
   ========================================================================== */
.liquid-glass {
    background: rgba(255, 255, 255, 0.01);
    background-blend-mode: luminosity;
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
    box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
    border-radius: 1rem;
}
.liquid-glass::before {
    content: '';
    position: absolute;
    inset: 0;
    padding: 1.4px;
    border-radius: inherit;
    background: linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.45) 0%,
        rgba(255, 255, 255, 0.15) 20%,
        transparent 40%,
        transparent 60%,
        rgba(255, 255, 255, 0.15) 80%,
        rgba(255, 255, 255, 0.45) 100%
    );
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    mask-composite: exclude;
    pointer-events: none;
}
.liquid-glass-strong {
    background: rgba(255, 255, 255, 0.01);
    background-blend-mode: luminosity;
    -webkit-backdrop-filter: blur(50px);
    backdrop-filter: blur(50px);
    box-shadow:
        4px 4px 4px rgba(0, 0, 0, 0.05),
        inset 0 1px 1px rgba(255, 255, 255, 0.15);
    position: relative;
    overflow: hidden;
    border-radius: 1rem;
}
.liquid-glass-strong::before {
    content: '';
    position: absolute;
    inset: 0;
    padding: 1.4px;
    border-radius: inherit;
    background: linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.5) 0%,
        rgba(255, 255, 255, 0.2) 20%,
        transparent 40%,
        transparent 60%,
        rgba(255, 255, 255, 0.2) 80%,
        rgba(255, 255, 255, 0.5) 100%
    );
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    mask-composite: exclude;
    pointer-events: none;
}

/* --- Hero shell --- */
.glass-hero {
    position: relative;
    width: 100%;
    min-height: 100vh;
    min-height: 100svh;
    overflow: hidden;
    background: #061226;
    font-family: var(--font-ar);
}

.glass-hero-video,
.glass-hero-poster {
    position: absolute;
    inset: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Reduced motion: hide the video, show the still poster */
.glass-hero-poster { display: none; }
@media (prefers-reduced-motion: reduce) {
    .glass-hero-video { display: none; }
    .glass-hero-poster { display: block; }
}

/* RTL legibility gradient: darken the RIGHT side (text panel) */
.glass-hero-grad {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background: linear-gradient(255deg, rgba(6, 18, 38, 0.72) 0%, rgba(6, 18, 38, 0.45) 45%, rgba(6, 18, 38, 0.25) 100%);
}
/* LTR (English page): text sits on the left, so darken the left instead */
[dir="ltr"] .glass-hero-grad {
    background: linear-gradient(to right, rgba(6, 18, 38, 0.72) 0%, rgba(6, 18, 38, 0.45) 45%, rgba(6, 18, 38, 0.25) 100%);
}

/* ==========================================================================
   HERO REDESIGN 2026 — "مباراة الليلة" live World Cup hero (RTL)
   Reuses the .glass-hero shell + video + .glass-hero-grad above.
   New content layer (.bbhero-*). Parity across mobile + desktop.
   ========================================================================== */

/* Extra bottom darkening so the stat strip + logos stay legible over video */
.bbhero-grad-b {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background: linear-gradient(to top, rgba(6, 18, 38, 0.9) 0%, rgba(6, 18, 38, 0.4) 26%, rgba(6, 18, 38, 0) 52%);
}

.bbhero-inner {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 26px;
    min-height: 100vh;
    min-height: 100svh;
    max-width: 1200px;
    margin: 0 auto;
    padding: 104px 18px 40px;
}

@media (min-width: 1024px) {
    .bbhero-inner {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 48px;
        padding: 120px 32px 56px;
    }
}

/* ---- MAIN column (RTL start = right) ---- */
.bbhero-main {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
}

@media (min-width: 1024px) {
    .bbhero-main {
        align-items: flex-start;
        text-align: start;
        width: 54%;
    }
}

.bbhero-lockup {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 18px;
}
.bbhero-lockup img { width: 30px; height: 30px; border-radius: 8px; object-fit: contain; }
.bbhero-lockup span { font-size: 16px; font-weight: 700; color: #fff; }
.bbhero-lockup b { color: var(--primary); font-weight: 700; }

/* Live countdown badge */
.bbhero-count {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px;
    margin-bottom: 22px;
    border-radius: 999px;
    background: rgba(6, 18, 38, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.16);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    font-size: 0.82rem;
    font-weight: 700;
    color: #fff;
}
.bbhero-count-live { display: none; align-items: center; gap: 8px; }
.bbhero-count.is-live .bbhero-count-live { display: inline-flex; }
.bbhero-count.is-live .bbhero-count-wait { display: none; }
.bbhero-count-wait { display: inline-flex; align-items: center; gap: 10px; }
.bbhero-count-label { color: rgba(255, 255, 255, 0.78); font-weight: 600; }
.bbhero-count-clock { display: inline-flex; gap: 3px; font-variant-numeric: tabular-nums; }
.bbhero-count-clock b {
    padding: 2px 6px;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.14);
    font-weight: 800;
    color: #fff;
}

/* Headline */
.bbhero-h1 {
    margin: 0;
    color: #fff;
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -0.01em;
}
.bbhero-h1-a,
.bbhero-h1-b {
    display: block;
    font-family: var(--font-ar);
    font-size: clamp(2.35rem, 7vw, 4.6rem);
}
.bbhero-h1-a { color: rgba(255, 255, 255, 0.9); }
.bbhero-h1-b { color: #fff; }
.bbhero-h1-em { color: var(--primary); }

.bbhero-sub {
    margin-top: 18px;
    max-width: 33rem;
    font-size: 0.95rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.82);
}
@media (min-width: 1024px) { .bbhero-sub { font-size: 1.05rem; } }

/* CTAs: one dominant primary + one secondary */
.bbhero-ctas {
    margin-top: 26px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    width: 100%;
    max-width: 360px;
}
@media (min-width: 640px) {
    .bbhero-ctas { flex-direction: row; align-items: center; width: auto; max-width: none; }
}

.bbhero-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    min-height: 56px;
    padding: 0 26px 0 14px;
    border-radius: 999px;
    background: var(--primary);
    color: #fff;
    font-size: 1.02rem;
    font-weight: 800;
    box-shadow: 0 18px 40px -16px rgba(234, 114, 15, 0.7);
    transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
}
.bbhero-primary:hover {
    background: var(--primary-dark);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 24px 52px -16px rgba(234, 114, 15, 0.8);
}
.bbhero-primary:active { transform: translateY(0); }
.bbhero-primary-icon {
    display: grid;
    place-items: center;
    width: 34px;
    height: 34px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.2);
    flex-shrink: 0;
}

.bbhero-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 56px;
    padding: 0 24px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.22);
    -webkit-backdrop-filter: blur(6px);
    backdrop-filter: blur(6px);
    color: #fff;
    font-size: 0.98rem;
    font-weight: 700;
    transition: background var(--transition), border-color var(--transition);
}
.bbhero-secondary:hover {
    background: rgba(255, 255, 255, 0.16);
    border-color: rgba(255, 255, 255, 0.35);
    color: #fff;
}

.bbhero-note {
    margin-top: 14px;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.62);
}

/* Trust row */
.bbhero-trust {
    margin-top: 26px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 12px 16px;
}
@media (min-width: 1024px) { .bbhero-trust { justify-content: flex-start; } }
.bbhero-trust-tp { display: flex; align-items: center; gap: 10px; }
.bbhero-trust .rv4-star { width: 20px; height: 20px; border-radius: 4px; }
.bbhero-trust .rv4-star::before { font-size: 12px; }
.bbhero-trust-tptext { font-size: 0.82rem; color: rgba(255, 255, 255, 0.82); }
.bbhero-trust-tptext strong { color: #fff; }
.bbhero-trust-sep { display: none; width: 1px; height: 22px; background: rgba(255, 255, 255, 0.22); }
@media (min-width: 1024px) { .bbhero-trust-sep { display: block; } }
.bbhero-trust-homes { font-size: 0.82rem; color: rgba(255, 255, 255, 0.72); }
.bbhero-trust-homes strong { color: #fff; }

/* Stat strip: visible on mobile AND desktop */
.bbhero-stats {
    margin-top: 26px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    width: 100%;
    max-width: 480px;
    list-style: none;
}
@media (min-width: 1024px) { .bbhero-stats { max-width: 540px; } }
.bbhero-stats li {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    padding: 12px 8px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.14);
    text-align: center;
}
.bbhero-stats strong { font-size: clamp(1.05rem, 4.6vw, 1.45rem); font-weight: 800; color: #fff; }
.bbhero-stats span { font-size: 0.72rem; color: rgba(255, 255, 255, 0.7); }

/* Logo proof strip (desktop only; logos also appear in the S5 marquee) */
.bbhero-logos {
    display: none;
    margin-top: 24px;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px 20px;
}
@media (min-width: 1024px) { .bbhero-logos { display: flex; } }
.bbhero-logos-label { font-size: 0.72rem; color: rgba(255, 255, 255, 0.5); }
.bbhero-logos img {
    height: 20px;
    width: auto;
    max-width: 80px;
    object-fit: contain;
    opacity: 0.82;
    filter: brightness(0) invert(1);
}

/* ---- SIDE column: live match card ---- */
.bbhero-side {
    width: 100%;
    max-width: 420px;
}
@media (min-width: 1024px) {
    .bbhero-side { width: 42%; max-width: 440px; flex-shrink: 0; }
}

.bbhero-livecard {
    padding: 18px;
    border-radius: 24px;
    color: #fff;
}
.bbhero-livecard-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.bbhero-live { display: inline-flex; align-items: center; gap: 7px; font-size: 0.8rem; font-weight: 800; color: #fff; }
.bbhero-livecard-net { font-size: 0.72rem; font-weight: 700; color: rgba(255, 255, 255, 0.7); letter-spacing: 0.04em; }
.bbhero-livecard-main { margin-top: 16px; }
.bbhero-livecard-badge {
    display: inline-block;
    padding: 4px 11px;
    border-radius: 999px;
    background: var(--primary);
    font-size: 0.68rem;
    font-weight: 800;
    color: #fff;
}
.bbhero-livecard-title { margin: 10px 0 4px; font-size: 1.5rem; font-weight: 800; color: #fff; }
.bbhero-livecard-sub { font-size: 0.82rem; color: rgba(255, 255, 255, 0.72); }
.bbhero-livecard-tiles {
    margin-top: 16px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
}
.bbhero-tile {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    min-height: 96px;
    padding: 10px;
    border-radius: 14px;
    color: #fff;
    overflow: hidden;
}
.bbhero-tile-chip {
    display: grid;
    place-items: center;
    width: 34px;
    height: 34px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.16);
    border: 1px solid rgba(255, 255, 255, 0.24);
    -webkit-backdrop-filter: blur(6px);
    backdrop-filter: blur(6px);
    box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.28);
}
.bbhero-tile-chip svg { width: 19px; height: 19px; color: #fff; }
.bbhero-tile-text { display: flex; flex-direction: column; gap: 1px; }
.bbhero-tile-label { font-size: 0.8rem; font-weight: 800; color: #fff; }
.bbhero-tile-sub { font-size: 0.62rem; font-weight: 600; color: rgba(255, 255, 255, 0.74); }
.bbhero-tile--wc { background: linear-gradient(135deg, rgba(234, 114, 15, 0.95), rgba(170, 64, 6, 0.95)); }
.bbhero-tile--roshn { background: linear-gradient(135deg, rgba(16, 99, 80, 0.95), rgba(8, 40, 32, 0.95)); }
.bbhero-tile--films { background: linear-gradient(135deg, rgba(59, 82, 166, 0.95), rgba(20, 28, 70, 0.95)); }
.bbhero-tile i {
    position: absolute;
    top: 9px;
    inset-inline-end: 9px;
    font-style: normal;
    font-size: 0.56rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    background: var(--danger);
    color: #fff;
    padding: 1px 5px;
    border-radius: 4px;
}
.bbhero-livecard-foot {
    margin-top: 16px;
    display: flex;
    gap: 16px;
    padding-top: 14px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}
.bbhero-livecard-foot span { font-size: 0.72rem; color: rgba(255, 255, 255, 0.6); }
.bbhero-livecard-foot strong { display: block; font-size: 1.05rem; color: #fff; font-weight: 800; }

/* Focus rings on hero interactive elements */
.glass-hero a:focus-visible {
    outline: none;
    box-shadow: 0 0 0 2px #061226, 0 0 0 4px var(--primary);
}

/* Fallback where backdrop-filter is unsupported: solid-ish surfaces */
@supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
    .bbhero-count,
    .bbhero-secondary { background: rgba(6, 18, 38, 0.82); }
}

/* Pulsing red LIVE dot (kept: used by WC banner + final CTA) */
.live-dot-red {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--danger);
    animation: livePulseRed 1.6s ease-in-out infinite;
    flex-shrink: 0;
    display: inline-block;
}

@keyframes livePulseRed {
    0%, 100% { box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.5); }
    50% { box-shadow: 0 0 0 7px rgba(239, 68, 68, 0); }
}

.hero-cta-note {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* ===== BB ACTION BUTTON (port of index.css .bb-action-button family) ===== */
.bb-action-button {
    position: relative;
    display: inline-flex;
    min-height: 44px;
    max-width: 100%;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    overflow: hidden;
    border: 0;
    border-radius: 14px;
    background: #e3e3e3;
    color: #303030;
    box-shadow:
        rgba(0, 0, 0, 0.055) 0 10.8723px 13.5904px -2.71807px,
        rgba(0, 0, 0, 0.055) 0 4.34892px 5.43615px -3.26169px;
    font-family: var(--font-ar);
    font-size: 14px;
    font-weight: 600;
    line-height: 1.42857;
    text-align: center;
    text-decoration: none;
    white-space: nowrap;
    cursor: pointer;
    user-select: none;
    appearance: none;
    padding: 0.625rem 1rem;
    transition:
        background-color 180ms ease,
        box-shadow 180ms ease,
        color 180ms ease,
        transform 180ms ease,
        opacity 180ms ease;
}

.bb-action-button:hover {
    background: #d6d6d6;
    color: #303030;
    transform: translateY(-1px);
}

.bb-action-button:active {
    transform: translateY(0) scale(0.99);
}

.bb-action-button:disabled,
.bb-action-button[aria-disabled='true'] {
    cursor: not-allowed;
    opacity: 0.62;
    transform: none;
}

.bb-action-button--sm {
    min-height: 44px;
    padding: 0.5rem 0.875rem;
    font-size: 13px;
}

.bb-action-button--md {
    min-height: 44px;
    padding: 0.625rem 1rem;
}

.bb-action-button--lg {
    min-height: 52px;
    padding: 0.75rem 1.25rem;
    font-size: 15px;
}

.bb-action-button--full {
    width: 100%;
}

.bb-action-button--dark {
    background: var(--ink);
    color: #ffffff;
    box-shadow:
        rgba(6, 18, 38, 0.16) 0 14px 24px -10px,
        rgba(6, 18, 38, 0.1) 0 5px 10px -6px;
}

.bb-action-button--dark:hover {
    background: #000000;
    color: #ffffff;
}

.bb-action-button--icon-only {
    width: 44px;
    min-width: 44px;
    padding: 0;
}

.bb-action-button svg {
    flex: 0 0 auto;
}

.bb-action-icon {
    width: 1rem;
    height: 1rem;
    display: block;
    flex-shrink: 0;
    color: currentColor;
}

/* ===== FEATURES ===== */
.features {
    padding: 96px 0;
    background: var(--bg-section);
    position: relative;
    overflow: hidden;
}

.features.section-with-bg {
    background: transparent;
}

.features.section-with-bg .container {
    position: relative;
    z-index: 3;
}

.features.section-with-bg .feature-card {
    background: var(--card-glass);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow);
}

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

.feature-card {
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 36px 28px;
    box-shadow: var(--shadow);
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}

.feature-card:hover {
    border-color: var(--border-light);
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}

/* EN icon tile recipe: h-11 w-11 rounded-[14px] soft surface */
.feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 14px;
    background: var(--bg-soft);
    border: 1px solid var(--border);
    color: var(--primary);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.feature-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* ===== CHANNELS ===== */
.channels {
    padding: 96px 0;
    overflow: hidden;
    position: relative;
}

.channels.section-with-bg {
    background: transparent;
}

.channels.section-with-bg .container {
    position: relative;
    z-index: 3;
}

.channels.section-with-bg .channels-marquee {
    position: relative;
    z-index: 3;
}

.channels.section-with-bg .channel-pill {
    background: var(--card-glass);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow);
}

.channels.section-with-bg .channels-counter {
    background: var(--card-glass);
    backdrop-filter: blur(10px);
}

.channels.section-with-bg .marquee-track span {
    background: var(--card-glass);
    backdrop-filter: blur(10px);
}

/* Auto-scrolling marquee */
.channels-marquee {
    overflow: hidden;
    white-space: nowrap;
    margin-bottom: 20px;
    mask-image: linear-gradient(90deg, transparent 0%, black 10%, black 90%, transparent 100%);
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, black 10%, black 90%, transparent 100%);
}

.marquee-track {
    display: inline-flex;
    gap: 16px;
    animation: marqueeScroll 40s linear infinite;
}

.marquee-reverse .marquee-track {
    animation-direction: reverse;
    animation-duration: 35s;
}

/* EN trust-strip look: white pills, #E8EAF0 border, soft shadow, 14px text */
.marquee-track span {
    display: inline-block;
    padding: 8px 20px;
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-secondary);
    white-space: nowrap;
    box-shadow: 0 10px 30px -20px rgba(6, 18, 38, 0.35);
}

@keyframes marqueeScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.channels-categories {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.channel-tab {
    padding: 10px 28px;
    border-radius: 50px;
    border: 1px solid var(--border-light);
    background: transparent;
    color: var(--text-secondary);
    font-family: var(--font-ar);
    font-size: 0.95rem;
    font-weight: 700;
    cursor: pointer;
    transition: all var(--transition);
}

.channel-tab {
    min-height: 44px;
}

.channel-tab.active,
.channel-tab:hover {
    background: var(--primary);
    color: var(--btn-text);
    border-color: var(--primary);
}

.channels-showcase {
    min-height: 120px;
}

.channel-group {
    display: none;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    animation: fadeIn 0.4s ease;
}

.channel-group.active {
    display: flex;
}

.channel-pill {
    background: var(--card-glass);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border);
    padding: 10px 22px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-primary);
    transition: all var(--transition);
}

.channel-pill:hover {
    border-color: var(--primary);
    background: rgba(234, 114, 15, 0.07);
    color: var(--primary);
}

.channels-counter {
    text-align: center;
    margin-top: 48px;
    padding: 24px;
    background: var(--card-glass);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.counter-number {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 400;
    color: var(--primary);
}

.counter-label {
    font-size: 1rem;
    color: var(--text-secondary);
    font-weight: 600;
}

/* ===== PRICING ===== */
.pricing {
    padding: 96px 0;
    background: var(--bg-section);
    position: relative;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    align-items: start;
}

.pricing-card {
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 36px 24px;
    text-align: center;
    transition: all var(--transition);
    position: relative;
    box-shadow: var(--shadow);
}

.pricing-card:hover {
    transform: translateY(-4px);
    border-color: var(--border-light);
    box-shadow: var(--shadow-hover);
}

/* EN featured card: 2px accent border + small pill badge, plain white */
.pricing-popular {
    border: 2px solid var(--primary);
    background: #ffffff;
    box-shadow: var(--pricing-popular-shadow);
}

.pricing-popular:hover {
    transform: translateY(-4px);
    border-color: var(--primary);
}

.popular-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: #ffffff;
    padding: 4px 18px;
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 700;
    white-space: nowrap;
    box-shadow: var(--btn-shadow);
}

.badge-new {
    position: absolute;
    top: -12px;
    right: 20px;
    background: var(--success);
    color: #fff;
    padding: 4px 16px;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 800;
    white-space: nowrap;
}

.pricing-header h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.pricing-sub {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 24px;
}

.pricing-amount {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 6px;
    margin-bottom: 8px;
    direction: ltr;
}

.price {
    font-family: var(--font-heading);
    font-size: 2.9rem;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1;
}

.currency-symbol {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary);
}

.pricing-period {
    color: var(--text-muted);
    font-size: 0.95rem;
    direction: rtl;
}

.pricing-qar {
    color: var(--text-muted);
    font-size: 0.82rem;
    margin-bottom: 8px;
}

.pricing-original {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 16px;
}

.pricing-split {
    color: var(--text-secondary);
    font-size: 0.8rem;
    background: var(--bg-soft);
    border: 1px dashed var(--border-light);
    border-radius: 999px;
    padding: 6px 14px;
    display: inline-block;
    margin-bottom: 8px;
}

.pricing-original del {
    color: var(--danger);
}

.pricing-features {
    list-style: none;
    text-align: right;
    margin: 24px 0;
}

.pricing-features li {
    padding: 8px 0;
    color: var(--text-secondary);
    font-size: 0.95rem;
    border-bottom: 1px solid var(--border);
}

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

.pricing-note {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-top: 32px;
}

/* ===== TESTIMONIALS WALL ===== */
.reviews {
    padding: 96px 0;
}

/* Trustpilot header bar */
.tp-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 14px 28px;
    background: var(--card-glass);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border);
    border-radius: 50px;
    width: fit-content;
    margin: 0 auto 40px;
    flex-wrap: wrap;
}

.tp-stars {
    color: #00B67A;
    font-size: 1.2rem;
    letter-spacing: 2px;
}

.tp-score {
    font-weight: 800;
    color: var(--text-primary);
}

.tp-count {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.tp-brand {
    color: #00B67A;
    font-weight: 800;
    font-size: 0.95rem;
}

/* Auto-scrolling columns */
.reviews-wall {
    display: flex;
    gap: 20px;
    height: 500px;
    overflow: hidden;
    position: relative;
    mask-image: linear-gradient(180deg, transparent 0%, black 5%, black 95%, transparent 100%);
    -webkit-mask-image: linear-gradient(180deg, transparent 0%, black 5%, black 95%, transparent 100%);
}

.reviews-col {
    display: flex;
    flex-direction: column;
    gap: 20px;
    flex: 1;
    animation: scrollUp 40s linear infinite;
}

.reviews-col:nth-child(2) {
    animation-direction: reverse;
    animation-duration: 35s;
}

.reviews-col:nth-child(3) {
    animation-duration: 45s;
}

.reviews-wall:hover .reviews-col {
    animation-play-state: paused;
}

@keyframes scrollUp {
    0% { transform: translateY(0); }
    100% { transform: translateY(-50%); }
}

.rw-card {
    break-inside: avoid;
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: var(--shadow);
    transition: all var(--transition);
}

.rw-card:hover {
    border-color: var(--border-light);
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}


.rw-top {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.rw-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.rw-top strong {
    display: block;
    font-size: 0.9rem;
    color: var(--text-primary);
}

.rw-top span {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* EN testimonial grammar: star row in accent orange */
.rw-stars {
    color: var(--primary);
    font-size: 0.95rem;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.rw-card p {
    color: var(--text-secondary);
    font-size: 0.88rem;
    line-height: 1.7;
}


.review-card {
    background: var(--card-glass);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 32px;
    transition: all var(--transition);
}

.review-card:hover {
    border-color: var(--border-light);
    transform: translateY(-2px);
}

.review-stars {
    color: var(--primary);
    font-size: 1.2rem;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.review-text {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 24px;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.review-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--btn-text);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 1.1rem;
}

.review-author strong {
    display: block;
    font-size: 0.95rem;
}

.review-author span {
    color: var(--text-muted);
    font-size: 0.8rem;
}

/* ===== HOW IT WORKS ===== */
.how-it-works {
    padding: 96px 0;
    background: var(--bg-section);
}

.steps-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
}

.step-card {
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 40px 32px;
    text-align: center;
    flex: 1;
    max-width: 300px;
    box-shadow: var(--shadow);
    transition: all var(--transition);
}

.step-card:hover {
    border-color: var(--border-light);
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}

.step-number {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--btn-text);
    font-size: 1.4rem;
    font-weight: 900;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.step-card h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 10px;
}

.step-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.step-connector {
    opacity: 0.4;
    flex-shrink: 0;
}

/* ===== MASCOT SECTION ===== */
.mascot-section {
    padding: 60px 0;
    background: var(--bg-body);
    overflow: hidden;
}

.mascot-showcase {
    display: flex;
    justify-content: center;
    align-items: center;
}

.mascot-highlights {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-top: 28px;
}

.mascot-highlight {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--card-glass);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 14px 20px;
    font-size: 0.95rem;
    font-weight: 600;
    transition: all var(--transition);
}

.mascot-highlight:hover {
    border-color: var(--primary);
    background: rgba(234, 114, 15, 0.05);
}

.mascot-highlight span:first-child {
    font-size: 1.3rem;
    flex-shrink: 0;
}

/* ===== ANIMATED SECTION BACKGROUND ===== */
.section-with-bg {
    position: relative;
}

.section-bg-image {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}

.section-bg-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: var(--media-opacity);
    animation: kenBurns 25s ease-in-out infinite alternate;
    will-change: transform;
}

@keyframes kenBurns {
    0% { transform: scale(1) translateX(0); }
    50% { transform: scale(1.08) translateX(-1.5%); }
    100% { transform: scale(1.12) translateX(1%); }
}

.section-bg-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(180deg,
        rgba(var(--overlay-rgb), 0.7) 0%,
        rgba(var(--overlay-rgb), 0.4) 40%,
        rgba(var(--overlay-rgb), 0.4) 60%,
        rgba(var(--overlay-rgb), 0.9) 100%
    );
}

/* Floating golden particles */
.floating-particles {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--primary);
    border-radius: 50%;
    opacity: 0;
    animation: particleFloat linear infinite;
    box-shadow: 0 0 6px var(--primary-glow), 0 0 12px var(--primary-glow);
}

@keyframes particleFloat {
    0% { transform: translateY(100%) translateX(0); opacity: 0; }
    15% { opacity: 0.8; }
    85% { opacity: 0.6; }
    100% { transform: translateY(-100vh) translateX(40px); opacity: 0; }
}

/* TV Glow pulse */
.tv-glow-effect {
    position: absolute;
    top: 30%;
    left: 50%;
    transform: translateX(-50%);
    width: 300px;
    height: 200px;
    background: radial-gradient(ellipse, rgba(234, 114, 15, 0.12) 0%, transparent 70%);
    z-index: 2;
    pointer-events: none;
    animation: tvGlow 4s ease-in-out infinite alternate;
    filter: blur(40px);
}

@keyframes tvGlow {
    0% { opacity: 0.3; transform: translateX(-50%) scale(1); }
    50% { opacity: 0.6; transform: translateX(-50%) scale(1.1); }
    100% { opacity: 0.4; transform: translateX(-50%) scale(0.95); }
}

.section-with-bg .container {
    position: relative;
    z-index: 3;
}

/* ===== VIDEO SHOWCASE ===== */
.video-showcase {
    padding: 60px 0;
    background: var(--bg-section);
    overflow: hidden;
}

.video-showcase-alt {
    background: var(--bg-body);
}

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

.showcase-reverse {
    direction: ltr;
}

.showcase-reverse .showcase-text {
    direction: rtl;
    text-align: right;
}

.showcase-video {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border);
    position: relative;
    background: var(--card-glass);
    backdrop-filter: blur(10px);
}

.showcase-video::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius);
    box-shadow: inset 0 0 60px rgba(234, 114, 15, 0.08);
    pointer-events: none;
}

.showcase-video video {
    width: 100%;
    height: auto;
    display: block;
    border-radius: var(--radius);
}

.showcase-text {
    text-align: right;
}

.showcase-text .section-title {
    text-align: right;
}

.showcase-text p {
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.9;
    margin-top: 16px;
}

/* ===== FAQ : white cards, 44px summary rows, chevron rotation ===== */
.faq {
    padding: 96px 0;
}

.faq-list {
    max-width: 750px;
    margin: 0 auto;
}

.faq-item {
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 16px;
    margin-bottom: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all var(--transition);
}

.faq-item:hover {
    border-color: var(--border-light);
}

.faq-item.active {
    border-color: var(--primary);
}

.faq-question {
    width: 100%;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 20px 24px;
    background: #ffffff;
    border: none;
    color: var(--text-primary);
    font-family: var(--font-ar);
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    text-align: right;
    transition: all var(--transition);
}

.faq-question:hover {
    background: var(--bg-card-hover);
}

.faq-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 10px;
    background: var(--bg-soft);
    color: var(--primary);
    transition: transform var(--transition);
    flex-shrink: 0;
    margin-right: 16px;
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-answer p {
    padding: 0 24px 20px;
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.8;
}

/* ===== FINAL CTA ===== */
.final-cta {
    padding: 80px 0;
    background: var(--bg-section);
}

.cta-urgency {
    background: var(--card-glass);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 60px 48px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Corner crosses */
.cta-corner {
    position: absolute;
    width: 20px;
    height: 20px;
}

.cta-corner::before, .cta-corner::after {
    content: '';
    position: absolute;
    background: var(--border-light);
}

.cta-corner::before { width: 20px; height: 1px; top: 50%; }
.cta-corner::after { width: 1px; height: 20px; left: 50%; }

.cta-corner-tl { top: 16px; left: 16px; }
.cta-corner-tr { top: 16px; right: 16px; }
.cta-corner-bl { bottom: 16px; left: 16px; }
.cta-corner-br { bottom: 16px; right: 16px; }

/* Expiry timer bar */
.cta-expiry {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--bg-body);
    border: 1px solid var(--border);
    border-radius: 50px;
    padding: 10px 24px;
    margin-bottom: 36px;
    font-size: 0.85rem;
    color: var(--text-secondary);
    flex-wrap: wrap;
    justify-content: center;
}

.cta-expiry-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--danger);
    animation: livePulse 2s ease-in-out infinite;
    flex-shrink: 0;
}

.cta-mini-timer {
    display: flex;
    align-items: baseline;
    gap: 4px;
    font-weight: 800;
    color: var(--text-primary);
}

.cta-mini-timer span {
    font-size: 1.3rem;
    font-family: var(--font-heading);
}

.cta-mini-timer small {
    font-size: 0.65rem;
    color: var(--text-muted);
    margin-left: 2px;
    margin-right: 6px;
}

.cta-timer-sep {
    color: var(--text-muted);
    font-size: 1rem !important;
}

/* Headline */
.cta-urgency h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    font-weight: 400;
    margin-bottom: 16px;
    line-height: 1.4;
}

.cta-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
    max-width: 700px;
    margin: 0 auto 32px;
    line-height: 1.8;
}

/* Limited spots */
.cta-limited {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    background: var(--bg-body);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 14px 24px;
    margin-bottom: 20px;
    text-align: right;
}

.cta-limited-badge {
    background: var(--danger);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 800;
    padding: 4px 10px;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 1px;
    flex-shrink: 0;
}

.cta-limited strong {
    display: block;
    font-size: 0.9rem;
    color: var(--text-primary);
}

.cta-limited span {
    font-size: 0.78rem;
    color: var(--text-muted);
}

/* Activity line */
.cta-activity {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 28px;
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Buttons */
.cta-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

/* Guarantee bar */
.cta-guarantee-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 24px;
    padding: 20px 32px;
    background: var(--card-glass);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    gap: 20px;
}

.cta-guarantee-text {
    display: flex;
    align-items: center;
    gap: 12px;
    text-align: right;
}

.cta-guarantee-text span:first-child {
    font-size: 1.4rem;
    flex-shrink: 0;
}

.cta-guarantee-text strong {
    display: block;
    font-size: 0.9rem;
    color: var(--text-primary);
}

.cta-guarantee-text div span {
    font-size: 0.8rem;
    color: var(--text-muted);
}

@media (max-width: 768px) {
    .cta-urgency {
        padding: 40px 20px;
    }

    .cta-guarantee-bar {
        flex-direction: column;
        text-align: center;
    }

    .cta-guarantee-text {
        flex-direction: column;
        text-align: center;
    }
}

/* ===== SECTION GRADIENT DIVIDERS ===== */
.pain-section::after,
.sports-section::after,
.movies-section::after,
.comparison::after,
.reviews::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 10%;
    right: 10%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
    opacity: 0.15;
}

/* Animated gradient line at top of pricing */
.pricing::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary), var(--primary-light), var(--primary), transparent);
    background-size: 200% 100%;
    animation: gradientLine 4s ease infinite;
}

@keyframes gradientLine {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* ===== PAIN SECTION ===== */
.pain-section { padding: 96px 0; }
.pain-grid { display: flex; align-items: stretch; justify-content: center; gap: 24px; flex-wrap: wrap; }
.pain-card { flex: 1; min-width: 300px; max-width: 450px; background: #ffffff; border: 1px solid var(--border); border-radius: var(--radius); padding: 36px; box-shadow: var(--shadow); transition: all var(--transition); }
.pain-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.pain-old { border-color: rgba(239, 68, 68, 0.45); }
.pain-old h3 { color: var(--danger); font-family: var(--font-heading); font-weight: 700; font-size: 1.2rem; margin-bottom: 20px; }
.pain-new { border: 2px solid var(--primary); }
.pain-new h3 { color: var(--primary); font-family: var(--font-heading); font-weight: 700; font-size: 1.2rem; margin-bottom: 20px; }
.pain-list { list-style: none; margin-bottom: 16px; }
.pain-list li { display: flex; justify-content: space-between; padding: 10px 0; border-bottom: 1px solid var(--border); color: var(--text-secondary); font-size: 0.9rem; }
.pain-total { font-size: 1.1rem; font-weight: 800; color: var(--danger); margin-top: 12px; }
.pain-yearly { color: var(--text-muted); font-size: 0.85rem; margin-top: 6px; }
.pain-vs { font-family: var(--font-heading); font-size: 2rem; color: var(--text-muted); display: flex; align-items: center; }
.pain-price { text-align: center; margin-bottom: 20px; }
.pain-amount { font-family: var(--font-heading); font-size: 3rem; color: var(--primary); }
.pain-features { list-style: none; margin-bottom: 20px; }
.pain-features li { padding: 6px 0; color: var(--text-secondary); font-size: 0.9rem; }
.pain-saving { background: rgba(16, 185, 129, 0.1); color: var(--success); border: 1px solid rgba(16, 185, 129, 0.2); border-radius: var(--radius-sm); padding: 10px; text-align: center; font-weight: 700; font-size: 0.9rem; margin-bottom: 20px; }
@media (max-width: 768px) { .pain-grid { flex-direction: column; align-items: center; } .pain-vs { transform: rotate(90deg); } }

/* ===== SPORTS SECTION ===== */
.sports-section { padding: 96px 0; background: var(--bg-section); }

/* World Cup LIVE banner : the one dark contrast section. Gold lives here only. */
.wc-banner {
    position: relative;
    overflow: hidden;
    background: var(--ink);
    border: 1px solid rgba(212, 175, 55, 0.35);
    border-radius: 28px;
    padding: 48px 40px;
    text-align: center;
    margin-bottom: 48px;
    color: #fff;
    box-shadow: 0 24px 80px -52px rgba(6, 18, 38, 0.75);
}

.wc-banner-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    background: var(--ink);
}

.wc-banner-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.38;
}

.wc-banner-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(180deg, rgba(6, 18, 38, 0.82) 0%, rgba(6, 18, 38, 0.6) 45%, rgba(6, 18, 38, 0.92) 100%);
}

.wc-banner > *:not(.wc-banner-bg):not(.wc-banner-overlay) {
    position: relative;
    z-index: 2;
}

.wc-live-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(239, 68, 68, 0.14);
    border: 1px solid rgba(239, 68, 68, 0.45);
    color: #fff;
    padding: 7px 20px;
    border-radius: 999px;
    font-weight: 800;
    font-size: 0.9rem;
    margin-bottom: 18px;
}

.wc-banner h3 {
    font-family: var(--font-heading);
    font-size: 1.9rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: #fff;
}

.wc-banner h3 .wc-gold { color: var(--gold); }

.wc-banner p {
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.95rem;
    margin-bottom: 20px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.wc-ticker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.4);
    color: var(--gold);
    padding: 8px 22px;
    border-radius: 999px;
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 22px;
}

.wc-countdown { display: flex; justify-content: center; gap: 8px; margin-bottom: 24px; }

.wc-banner .countdown-unit {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.16);
    backdrop-filter: blur(6px);
}

.wc-banner .countdown-unit span { color: var(--gold); }
.wc-banner .countdown-unit small { color: rgba(255, 255, 255, 0.6); }
.wc-banner .countdown-sep { color: var(--gold); }

.wc-live-now {
    display: none;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-family: var(--font-heading);
    font-size: 1.7rem;
    color: #fff;
    margin-bottom: 24px;
}

.wc-live-now .live-dot-red { width: 12px; height: 12px; }

.is-live .wc-live-now { display: flex; }
.is-live .wc-countdown { display: none; }

.wc-banner .btn-primary {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--ink);
    box-shadow: 0 14px 32px -14px rgba(212, 175, 55, 0.55);
}

.wc-banner .btn-primary:hover {
    background: #c19d2c;
    border-color: #c19d2c;
    color: var(--ink);
}
.sports-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.sport-card { background: #ffffff; border: 1px solid var(--border); border-radius: var(--radius); padding: 28px; box-shadow: var(--shadow); transition: all var(--transition); }
.sport-card:hover { border-color: var(--border-light); transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.sport-card span { display: flex; align-items: center; justify-content: center; width: 44px; height: 44px; border-radius: 14px; background: var(--bg-soft); border: 1px solid var(--border); font-size: 1.25rem; margin-bottom: 12px; }
.sport-card h4 { font-family: var(--font-heading); font-weight: 700; color: var(--text-primary); font-size: 1.1rem; margin-bottom: 8px; }
.sport-card p { color: var(--text-secondary); font-size: 0.85rem; line-height: 1.7; }
@media (max-width: 768px) { .sports-grid { grid-template-columns: 1fr; } }

/* ===== MOVIES SECTION ===== */
.movies-section { padding: 96px 0; }
.movies-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.movie-card { background: #ffffff; border: 1px solid var(--border); border-radius: var(--radius); padding: 28px; box-shadow: var(--shadow); transition: all var(--transition); }
.movie-card:hover { border-color: var(--border-light); transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.movie-card span { display: flex; align-items: center; justify-content: center; width: 44px; height: 44px; border-radius: 14px; background: var(--bg-soft); border: 1px solid var(--border); font-size: 1.25rem; margin-bottom: 12px; }
.movie-card h4 { font-family: var(--font-heading); font-weight: 700; color: var(--text-primary); font-size: 1.1rem; margin-bottom: 8px; }
.movie-card p { color: var(--text-secondary); font-size: 0.85rem; line-height: 1.7; }
@media (max-width: 768px) { .movies-grid { grid-template-columns: 1fr; } }

/* ===== MULTILINGUAL ===== */
.multilingual-section { padding: 96px 0; background: var(--bg-section); }
.lang-flags { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; }
.lang-pill { background: #ffffff; border: 1px solid var(--border); padding: 10px 20px; border-radius: 50px; font-size: 14px; font-weight: 600; color: var(--text-secondary); box-shadow: 0 10px 30px -20px rgba(6, 18, 38, 0.35); transition: all var(--transition); }
.lang-pill:hover { border-color: var(--primary); transform: translateY(-2px); }

/* ===== TRUST SIGNALS ===== */
.trust-section { padding: 96px 0; }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-bottom: 24px; }
.trust-stat { background: #ffffff; border: 1px solid var(--border); border-radius: var(--radius); padding: 28px; text-align: center; box-shadow: var(--shadow); transition: all var(--transition); }
.trust-stat:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.trust-num { display: block; font-family: var(--font-heading); font-weight: 700; font-size: 1.6rem; color: var(--primary); margin-bottom: 4px; }
.trust-stat span { display: block; font-weight: 700; font-size: 0.9rem; color: var(--text-primary); }
.trust-stat small { color: var(--text-muted); font-size: 0.8rem; }
.trust-security { text-align: center; color: var(--text-muted); font-size: 0.85rem; }
@media (max-width: 768px) { .trust-grid { grid-template-columns: repeat(2, 1fr); } }

/* ===== PRICING EXTRAS ===== */
.pricing-universal { text-align: center; background: var(--card-glass); backdrop-filter: blur(10px); border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 14px 24px; margin-bottom: 32px; color: var(--text-secondary); font-size: 0.85rem; font-weight: 600; }
.pricing-anchor { color: var(--text-muted); font-size: 0.85rem; font-style: italic; margin-bottom: 16px; text-align: center; }
.pricing-guarantee { text-align: center; margin-top: 24px; padding: 20px; background: var(--card-glass); backdrop-filter: blur(10px); border: 1px solid var(--border); border-radius: var(--radius-sm); color: var(--text-secondary); font-size: 0.88rem; line-height: 1.8; }
.pricing-guarantee strong { color: var(--primary); }
.tp-link { color: var(--primary); font-weight: 700; font-size: 0.9rem; }

/* ===== COMPARISON TABLE ===== */
.comparison {
    padding: 96px 0;
    background: var(--bg-section);
}

.compare-table-wrap {
    overflow-x: auto;
    border-radius: var(--radius);
    border: 1px solid var(--border);
}

.compare-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.95rem;
    min-width: 700px;
}

.compare-table thead th {
    padding: 20px 24px;
    text-align: center;
    font-family: var(--font-heading);
    font-weight: 400;
    font-size: 1.05rem;
    color: var(--text-secondary);
    border-bottom: 1px solid var(--border);
    background: var(--card-glass);
}

.compare-table thead th.compare-highlight {
    color: var(--primary);
    font-size: 1.15rem;
    position: relative;
}

.compare-table thead th.compare-highlight::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 20%;
    right: 20%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--primary-light));
    border-radius: 3px;
}

.compare-table tbody td {
    padding: 18px 24px;
    text-align: center;
    border-bottom: 1px solid var(--border);
    color: var(--text-secondary);
    background: transparent;
    transition: background var(--transition);
}

.compare-table tbody tr:hover td {
    background: rgba(var(--overlay-rgb), 0.3);
}

.compare-table .compare-feature {
    text-align: right;
    font-weight: 700;
    color: var(--text-primary);
}

.compare-table td.compare-highlight {
    color: var(--primary);
    font-weight: 700;
    background: rgba(234, 114, 15, 0.04);
    border-right: 1px solid var(--border);
    border-left: 1px solid var(--border);
}

.compare-table tbody tr:hover td.compare-highlight {
    background: rgba(234, 114, 15, 0.08);
}

/* Compare CTA bar */
.compare-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 32px;
    padding: 20px 32px;
    background: var(--card-glass);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border);
    border-radius: var(--radius);
}

.compare-cta-text strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 400;
    color: var(--text-primary);
}

.compare-cta-text span {
    color: var(--text-muted);
    font-size: 0.85rem;
}

@media (max-width: 768px) {
    .compare-cta {
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }
}

/* ===== NEWSLETTER ===== */
.newsletter {
    padding: 96px 0;
}

.newsletter-box {
    background: var(--card-glass);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.newsletter-text h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 400;
    margin-bottom: 6px;
}

.newsletter-text p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.newsletter-form {
    display: flex;
    gap: 0;
    min-width: 340px;
}

.newsletter-form input {
    flex: 1;
    padding: 14px 18px;
    background: var(--bg-body);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm) 0 0 var(--radius-sm);
    color: var(--text-primary);
    font-family: var(--font-ar);
    font-size: 0.9rem;
    outline: none;
    transition: border-color var(--transition);
}

.newsletter-form input:focus {
    border-color: var(--primary);
}

.newsletter-form .btn {
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    white-space: nowrap;
    padding: 14px 28px;
}

@media (max-width: 768px) {
    .newsletter-box {
        flex-direction: column;
        text-align: center;
        padding: 28px;
    }

    .newsletter-form {
        min-width: 100%;
        width: 100%;
    }
}

/* ===== FOOTER : BBFooter-style dark ink card, rounded top 28px ===== */
.footer {
    position: relative;
    overflow: hidden;
    margin-top: 8px;
    padding: 88px 0 40px;
    background: var(--ink);
    border-radius: 28px 28px 0 0;
    box-shadow: 0 12px 40px rgba(6, 18, 38, 0.22);
    color: rgba(255, 255, 255, 0.8);
}

/* The EN footer card glow, RTL-mirrored */
.footer::before {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(520px 360px at 86% 12%, rgba(234, 114, 15, 0.30), transparent 60%),
        radial-gradient(420px 320px at 12% 100%, rgba(234, 114, 15, 0.18), transparent 65%);
}

.footer .container {
    position: relative;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 56px;
}

/* The dark wordmark needs a light ground on the dark footer to read:
   present it inside a white rounded tile sized to the wordmark. */
.footer-brand .logo-img {
    height: 30px;
    width: auto;
    background: #ffffff;
    border-radius: 8px;
    padding: 6px 10px;
    box-sizing: content-box;
}

.footer-brand .logo-text,
.footer-brand .logo-highlight {
    color: #ffffff;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.65);
    margin-top: 16px;
    font-size: 0.95rem;
    line-height: 1.8;
}

/* WhatsApp pill */
.footer-wa-pill {
    margin-top: 22px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 44px;
    border-radius: 999px;
    background: var(--whatsapp);
    color: #ffffff;
    padding: 10px 22px;
    font-size: 0.9rem;
    font-weight: 700;
    transition: all var(--transition);
}

.footer-wa-pill:hover {
    transform: scale(1.03);
    color: #ffffff;
    background: #1ebe5b;
    box-shadow: 0 10px 24px -8px rgba(37, 211, 102, 0.5);
}

.footer-links h4 {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: #ffffff;
}

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

.footer-links li {
    margin-bottom: 6px;
}

.footer-links a {
    display: inline-flex;
    align-items: center;
    min-height: 36px;
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.9rem;
    transition: color var(--transition);
}

.footer-links a:hover {
    color: #ffffff;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    padding-top: 26px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-bottom-left p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
}

.footer-bottom-right {
    display: flex;
    align-items: center;
    gap: 16px;
}

.footer-secured {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
    font-weight: 600;
}

.footer-socials {
    display: flex;
    gap: 8px;
}

.social-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    background: rgba(255, 255, 255, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.75);
    transition: all var(--transition);
}

.social-icon:hover {
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-2px);
}

.footer-disclaimer {
    margin-top: 8px;
    font-size: 0.8rem !important;
    color: rgba(255, 255, 255, 0.45);
}

.footer-simple {
    padding: 40px 0;
}

.footer-simple .footer-bottom {
    border-top: 0;
    padding-top: 0;
    justify-content: center;
    text-align: center;
    flex-direction: column;
    gap: 4px;
}

/* ===== TRIAL PAGE ===== */
.trial-section {
    min-height: 100vh;
    padding: 120px 0 60px;
}

.trial-wrapper {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: start;
}

.trial-header {
    margin-bottom: 36px;
}

.trial-header h1 {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 400;
    margin-bottom: 8px;
}

.trial-header p {
    color: var(--text-secondary);
    font-size: 1rem;
}

/* Form Styles */
.trial-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-primary);
}

.optional {
    color: var(--text-muted);
    font-weight: 400;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.trial-form input,
.trial-form select,
.trial-form textarea {
    padding: 14px 18px;
    background: var(--card-glass);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    color: var(--text-primary);
    font-family: var(--font-ar);
    font-size: 0.95rem;
    transition: all var(--transition);
    outline: none;
    width: 100%;
}

.trial-form input::placeholder,
.trial-form textarea::placeholder {
    color: var(--text-muted);
}

.trial-form input:focus,
.trial-form select:focus,
.trial-form textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px var(--primary-glow);
}

.trial-form select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%239a9ab0' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: left 16px center;
    padding-left: 40px;
}

.trial-form select option {
    background: var(--bg-card);
    color: var(--text-primary);
}

.trial-form textarea {
    resize: vertical;
    min-height: 80px;
}

.form-agree {
    display: flex;
    align-items: flex-start;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

.checkbox-label input[type="checkbox"] {
    width: 20px;
    height: 20px;
    accent-color: var(--primary);
    cursor: pointer;
    flex-shrink: 0;
}

.form-note {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-top: 8px;
}

/* Success State */
.trial-success {
    text-align: center;
    padding: 60px 0;
}

.success-icon {
    font-size: 4rem;
    margin-bottom: 24px;
}

.trial-success h2 {
    font-size: 1.8rem;
    font-weight: 900;
    margin-bottom: 16px;
}

.trial-success p {
    color: var(--text-secondary);
    margin-bottom: 32px;
    line-height: 1.8;
}

/* Benefits Side */
.trial-benefits-side {
    position: sticky;
    top: 100px;
}

.benefits-card {
    background: var(--card-glass);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 36px;
    margin-bottom: 24px;
}

.benefits-card h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 400;
    margin-bottom: 24px;
    color: var(--primary);
}

.benefits-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.benefits-list li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.benefit-icon {
    font-size: 1.4rem;
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(234, 114, 15, 0.09);
    border-radius: var(--radius-xs);
}

.benefits-list strong {
    display: block;
    font-size: 0.95rem;
    margin-bottom: 2px;
}

.benefits-list p {
    color: var(--text-muted);
    font-size: 0.85rem;
}

.trust-badges {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.trust-badge {
    background: var(--card-glass);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 16px;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.trust-badge span:first-child {
    font-size: 1.1rem;
    font-weight: 800;
}

.trust-badge span:last-child {
    color: var(--text-muted);
    font-size: 0.8rem;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ===== MESH FLOAT ANIMATIONS ===== */
@keyframes meshFloat1 {
    0% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(80px, -60px) scale(1.1); }
    66% { transform: translate(-40px, 40px) scale(0.95); }
    100% { transform: translate(60px, -80px) scale(1.05); }
}

@keyframes meshFloat2 {
    0% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(-60px, 80px) scale(1.08); }
    66% { transform: translate(50px, -30px) scale(0.92); }
    100% { transform: translate(-70px, 60px) scale(1.1); }
}

@keyframes meshFloat3 {
    0% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(40px, 60px) scale(1.05); }
    66% { transform: translate(-80px, -40px) scale(1.1); }
    100% { transform: translate(30px, -70px) scale(0.95); }
}

/* Section ambient glow strips */
.pain-section,
.sports-section,
.movies-section,
.multilingual-section,
.trust-section,
.how-it-works,
.reviews,
.faq {
    position: relative;
    overflow: hidden;
}

.pain-section::before {
    content: '';
    position: absolute;
    top: 50%;
    right: -20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(239, 68, 68, 0.06) 0%, transparent 70%);
    filter: blur(60px);
    pointer-events: none;
    animation: meshFloat1 18s ease-in-out infinite alternate;
}

.sports-section::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: -10%;
    width: 600px;
    height: 400px;
    background: radial-gradient(circle, rgba(234, 114, 15, 0.06) 0%, transparent 70%);
    filter: blur(60px);
    pointer-events: none;
    animation: meshFloat2 22s ease-in-out infinite alternate;
}

.movies-section::before {
    content: '';
    position: absolute;
    top: 30%;
    right: -15%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.06) 0%, transparent 70%);
    filter: blur(60px);
    pointer-events: none;
    animation: meshFloat3 20s ease-in-out infinite alternate;
}

/* Reveal animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* Slide from right (RTL = visual left) */
.reveal-right {
    opacity: 0;
    transform: translateX(-60px);
    transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* Slide from left (RTL = visual right) */
.reveal-left {
    opacity: 0;
    transform: translateX(60px);
    transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-left.visible {
    opacity: 1;
    transform: translateX(0);
}

/* Scale up (for pricing cards) */
.reveal-scale {
    opacity: 0;
    transform: scale(0.85);
    transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-scale.visible {
    opacity: 1;
    transform: scale(1);
}

.pricing-popular.reveal-scale.visible {
    transform: scale(1.05);
}

/* Stagger delays via CSS */
.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }
.stagger-5 { transition-delay: 0.5s; }
.stagger-6 { transition-delay: 0.6s; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .showcase-split {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .showcase-reverse {
        direction: rtl;
    }

    .showcase-text,
    .showcase-text .section-title {
        text-align: center;
    }

    .mascot-wrapper {
        max-width: 320px;
    }

    .reviews-wall {
        height: 600px;
    }

    .reviews-col:nth-child(3) {
        display: none;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .pricing-popular {
        transform: scale(1);
        grid-column: auto;
    }

    .pricing-popular:hover {
        transform: translateY(-4px);
    }

    .pricing-popular.reveal-scale.visible {
        transform: scale(1);
    }

    .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .trial-wrapper {
        grid-template-columns: 1fr;
    }

    .trial-benefits-side {
        position: static;
    }
}

@media (max-width: 639px) {
    .btn-nav {
        display: none;
    }
}

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

    .reviews-wall {
        height: 500px;
    }

    .reviews-col:nth-child(2) {
        display: none;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .pricing-popular {
        grid-column: span 1;
    }

    .reviews-grid {
        grid-template-columns: 1fr;
    }

    .steps-grid {
        flex-direction: column;
    }

    .step-connector {
        transform: rotate(90deg);
    }

    .step-card {
        max-width: 100%;
        width: 100%;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .hero-title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 1.6rem;
    }

    .trust-badges {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .pricing-card {
        padding: 32px 20px;
    }

    .cta-box {
        padding: 40px 20px;
    }
}

/* ===== TRUSTED BY ===== */
.trusted-by {
    padding: 24px 0;
    border-bottom: 1px solid var(--border);
}

.trusted-label {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.trusted-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 32px;
}

.trusted-logos span {
    color: var(--text-muted);
    font-size: 1.1rem;
    font-weight: 800;
    opacity: 0.5;
    transition: opacity var(--transition);
}

.trusted-logos span:hover {
    opacity: 1;
    color: var(--primary);
}

/* ===== COUNTDOWN TIMER ===== */
.pricing-countdown {
    text-align: center;
    margin-bottom: 32px;
}

.countdown-label {
    display: block;
    color: var(--text-secondary);
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.countdown-timer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.countdown-unit {
    background: var(--card-glass);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 12px 16px;
    min-width: 70px;
    text-align: center;
}

.countdown-unit span {
    display: block;
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--primary);
    line-height: 1;
}

.countdown-unit small {
    display: block;
    font-size: 0.7rem;
    color: var(--text-muted);
    margin-top: 4px;
    font-weight: 600;
}

.countdown-sep {
    font-size: 1.6rem;
    font-weight: 900;
    color: var(--primary);
    opacity: 0.5;
}

/* ===== FEATURED (Popular) Card border ===== */
.pricing-popular {
    position: relative;
    border: 2px solid var(--primary);
}

/* ===== BACK TO TOP ===== */
.back-to-top {
    position: fixed;
    bottom: 80px;
    left: 24px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--primary);
    color: var(--btn-text);
    border: none;
    font-size: 1.3rem;
    font-weight: 900;
    cursor: pointer;
    z-index: 900;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all var(--transition);
    box-shadow: 0 4px 20px var(--primary-glow);
}

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

.back-to-top:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px var(--primary-glow);
}

/* ===== LIVE VISITORS ===== */
.live-visitors {
    position: fixed;
    bottom: 24px;
    left: 24px;
    background: var(--card-glass);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border);
    border-radius: 50px;
    padding: 8px 18px;
    font-size: 0.8rem;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 8px;
    z-index: 800;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
}

.live-visitors.visible {
    opacity: 1;
    transform: translateY(0);
}

.live-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--success);
    animation: livePulse 2s ease-in-out infinite;
    flex-shrink: 0;
}

@keyframes livePulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.5); }
    50% { box-shadow: 0 0 0 6px rgba(16, 185, 129, 0); }
}

@media (max-width: 768px) {
    .live-visitors {
        bottom: 70px;
    }

    .back-to-top {
        bottom: 140px;
    }

    .countdown-unit {
        padding: 8px 10px;
        min-width: 55px;
    }

    .countdown-unit span {
        font-size: 1.3rem;
    }
}

/* ===== WHATSAPP FLOATING BUTTON ===== */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #25D366;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    z-index: 900;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: all var(--transition);
    text-decoration: none;
    animation: whatsappPulse 2s ease-in-out infinite;
}

.whatsapp-float:hover {
    transform: scale(1.15);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5);
    color: #fff;
}

.whatsapp-tooltip {
    position: absolute;
    right: 68px;
    background: var(--card-glass);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 8px 16px;
    font-size: 0.8rem;
    font-family: var(--font-ar);
    color: var(--text-primary);
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition);
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
}

@keyframes whatsappPulse {
    0%, 100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4); }
    50% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.2), 0 0 0 10px rgba(37, 211, 102, 0.08); }
}

@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 76px;
    }
}

/* ===== PAYMENT ICONS ===== */
.payment-methods {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin-top: 24px;
    flex-wrap: wrap;
}

.payment-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 8px 18px;
    border-radius: 8px;
    border: 1px solid var(--border);
    background: var(--card-glass);
    backdrop-filter: blur(10px);
    transition: all var(--transition);
    cursor: default;
    min-width: 90px;
    height: 42px;
}

.payment-icon:hover {
    border-color: var(--primary);
    transform: translateY(-2px);
}

.pay-logo {
    font-weight: 900;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    font-family: 'Arial', sans-serif;
}

.pay-label {
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--text-muted);
    font-family: 'Arial', sans-serif;
}

/* Visa */
.payment-visa .pay-logo {
    color: #1A1F71;
    font-size: 1.1rem;
    font-style: italic;
    letter-spacing: 2px;
}

/* Mastercard circles */
.mc-circles {
    display: flex;
    position: relative;
    width: 28px;
    height: 18px;
}

.mc-red {
    position: absolute;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #EB001B;
    right: 10px;
}

.mc-yellow {
    position: absolute;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #F79E1B;
    right: 0;
    opacity: 0.85;
}

/* PayPal */
.payment-paypal .pay-logo {
    font-size: 0.95rem;
    font-weight: 800;
}

/* Apple Pay */
.payment-apple .pay-logo {
    color: var(--text-primary);
    font-size: 0.95rem;
}


/* ===== GUARANTEE BADGE ===== */
.guarantee-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: 600;
}

.guarantee-shield {
    font-size: 1.4rem;
}

/* ===== CUSTOM SCROLLBAR (quiet, neutral) ===== */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-body);
}

::-webkit-scrollbar-thumb {
    background: #C9CEDC;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: #9DA2B3;
}

/* Firefox */
html {
    scrollbar-width: thin;
    scrollbar-color: #C9CEDC var(--bg-body);
}

/* ===== VIDEO HOVER EFFECTS ===== */
.showcase-video {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.showcase-video:hover {
    transform: scale(1.02);
    border-color: var(--primary);
    box-shadow: 0 0 40px var(--primary-glow), var(--shadow-lg);
}

.showcase-video:hover video {
    filter: brightness(1.05);
}

/* ===== PARALLAX on Background Images ===== */
.section-bg-image img {
    transition: transform 0.1s linear;
}

/* ================================================
   MOBILE-FIRST COMPREHENSIVE FIX
   ================================================ */
@media (max-width: 768px) {

    /* === General === */
    .section-header { margin-bottom: 36px; }
    .section-title { font-size: 1.5rem; }
    .section-desc { font-size: 0.95rem; }

    /* === Trusted By === */
    .trusted-logos { gap: 16px; }
    .trusted-logos span { font-size: 0.85rem; }

    /* === Features === */
    .features { padding: 64px 0; }
    .features-grid { grid-template-columns: 1fr; gap: 16px; }
    .feature-card { padding: 24px 20px; }

    /* === Video Showcase === */
    .video-showcase { padding: 64px 0; }
    .showcase-split { grid-template-columns: 1fr; gap: 24px; }
    .showcase-reverse { direction: rtl; }
    .showcase-text { text-align: center; }
    .showcase-text .section-title { text-align: center; }

    /* === Channels === */
    .channels { padding: 64px 0; }
    .channels-categories { gap: 8px; }
    .channel-tab { padding: 8px 16px; font-size: 0.8rem; }
    .channel-pill { padding: 8px 14px; font-size: 0.8rem; }
    .channels-counter { padding: 16px; gap: 8px; flex-direction: column; }
    .counter-number { font-size: 1.6rem; }

    /* === Comparison Table === */
    .comparison { padding: 64px 0; }
    .compare-table { font-size: 0.8rem; }
    .compare-table thead th { padding: 12px 10px; font-size: 0.85rem; }
    .compare-table tbody td { padding: 12px 10px; }
    .compare-cta { flex-direction: column; text-align: center; gap: 16px; padding: 16px 20px; }

    /* === Pricing === */
    .pricing { padding: 64px 0; }
    .pricing-grid { grid-template-columns: 1fr; gap: 20px; }
    .pricing-popular:hover { transform: translateY(-4px); }
    .pricing-card { padding: 28px 20px; }
    .price { font-size: 2.6rem; }
    .countdown-unit { padding: 8px 10px; min-width: 50px; }
    .countdown-unit span { font-size: 1.2rem; }
    .countdown-sep { font-size: 1.2rem; }
    .payment-methods { gap: 8px; }
    .payment-icon { min-width: 70px; padding: 6px 12px; height: 36px; }

    /* === Reviews Wall === */
    .reviews { padding: 64px 0; }
    .reviews-wall { height: 500px; }
    .reviews-col:nth-child(2),
    .reviews-col:nth-child(3) { display: none; }
    .tp-header { padding: 10px 16px; gap: 8px; font-size: 0.8rem; }
    .tp-score { font-size: 0.9rem; }
    .rw-card { padding: 16px; }
    .rw-card p { font-size: 0.85rem; }

    /* === How It Works === */
    .how-it-works { padding: 64px 0; }
    .steps-grid { flex-direction: column; gap: 16px; }
    .step-connector { transform: rotate(90deg); }
    .step-card { max-width: 100%; width: 100%; padding: 28px 20px; }

    /* === FAQ === */
    .faq { padding: 64px 0; }
    .faq-question { padding: 16px 18px; font-size: 0.9rem; }
    .faq-answer p { padding: 0 18px 16px; font-size: 0.88rem; }

    /* === Final CTA === */
    .final-cta { padding: 40px 0; }
    .cta-urgency { padding: 32px 16px; }
    .cta-urgency h2 { font-size: 1.5rem; }
    .cta-desc { font-size: 0.85rem; }
    .cta-limited { flex-direction: column; text-align: center; padding: 12px 16px; gap: 10px; }
    .cta-buttons { flex-direction: column; width: 100%; }
    .cta-buttons .btn { width: 100%; }
    .cta-expiry { font-size: 0.75rem; padding: 8px 16px; gap: 8px; }
    .cta-mini-timer span { font-size: 1.1rem; }
    .cta-guarantee-bar { flex-direction: column; text-align: center; padding: 16px; }
    .cta-guarantee-text { flex-direction: column; text-align: center; }

    /* === Newsletter === */
    .newsletter { padding: 40px 0; }
    .newsletter-box { flex-direction: column; text-align: center; padding: 24px 16px; gap: 20px; }
    .newsletter-form { min-width: 100%; width: 100%; flex-direction: column; }
    .newsletter-form input { border-radius: var(--radius-sm); }
    .newsletter-form .btn { border-radius: var(--radius-sm); }

    /* === Footer === */
    .footer-grid { grid-template-columns: 1fr; gap: 24px; }
    .footer-bottom { flex-direction: column; text-align: center; gap: 16px; }
    .footer-bottom-right { flex-direction: column; gap: 12px; }

    /* === Floating elements === */
    .whatsapp-float { width: 48px; height: 48px; bottom: 76px; right: 16px; }
    .whatsapp-tooltip { display: none; }
    .back-to-top { bottom: 132px; left: 16px; width: 40px; height: 40px; font-size: 1rem; }
    .live-visitors { bottom: 76px; left: 16px; font-size: 0.7rem; padding: 6px 12px; display: none; }
}

@media (max-width: 380px) {
    .hero-spot-line1,
    .hero-spot-line2 { font-size: 2.5rem; }
    .container { padding: 0 12px; }
    .cta-urgency h2 { font-size: 1.3rem; }
    .tp-header { flex-direction: column; border-radius: var(--radius-sm); }
}

/* ===== MEDIA FRAMES (generated imagery, graceful fallback) ===== */
.media-frame {
    background: var(--bg-soft);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    min-height: 220px;
}

.media-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.split-media {
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: 48px;
    align-items: center;
}

.split-media .section-header {
    text-align: right;
    margin-bottom: 0;
}

.split-media .section-desc {
    margin: 0;
    max-width: none;
}

.movies-media {
    max-width: 900px;
    margin: 0 auto 36px;
    aspect-ratio: 21 / 9;
}

@media (max-width: 900px) {
    .split-media {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .split-media .section-header {
        text-align: center;
    }

    .movies-media {
        aspect-ratio: 16 / 9;
    }
}

/* ===== FINAL CTA BEAR + LIVE STATE ===== */
.cta-bear {
    width: 120px;
    height: 120px;
    margin: 0 auto 18px;
    border-radius: 50%;
    background: var(--bg-soft);
    border: 1px solid var(--border);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cta-bear img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cta-live-now {
    display: none;
    align-items: center;
    gap: 8px;
    font-weight: 800;
    color: var(--danger);
}

.cta-expiry.is-live .cta-mini-timer { display: none; }
.cta-expiry.is-live .cta-live-now { display: inline-flex; }

@media (max-width: 768px) {
    .wc-banner { padding: 36px 18px; }
    .wc-banner h3 { font-size: 1.4rem; }
    .wc-ticker { font-size: 0.78rem; padding: 7px 14px; }
    .wc-live-now { font-size: 1.3rem; }
    .cta-bear { width: 92px; height: 92px; }
}

/* ===== STICKY ROTATING OFFER BAR (port of BBStickyTrialBar.tsx) ===== */
/* Body padding so the bar never covers content */
body.bb-has-sticky-cta {
    padding-bottom: calc(118px + env(safe-area-inset-bottom, 0px));
}

@media (min-width: 640px) {
    body.bb-has-sticky-cta {
        padding-bottom: 78px;
    }
}

.bb-sticky-bar {
    position: fixed;
    inset: auto 0 0 0;
    z-index: 1050;
    border-top: 1px solid rgba(250, 250, 250, 0.6);
    background: rgba(255, 255, 255, 0.85);
    -webkit-backdrop-filter: blur(16px) saturate(160%);
    backdrop-filter: blur(16px) saturate(160%);
    box-shadow: 0 -10px 30px -12px rgba(6, 18, 38, 0.18);
}

@supports not (backdrop-filter: blur(1px)) {
    .bb-sticky-bar {
        background: #ffffff;
    }
}

/* 2px progress strip visualising the 4800ms rotation (RTL: grows from the right) */
.bb-sticky-progress {
    position: absolute;
    top: 0;
    right: 0;
    height: 2px;
    width: 0;
    background: var(--ink);
}

.bb-sticky-bar[data-paused="true"] .bb-sticky-progress {
    animation: none !important;
    width: 100%;
    opacity: 0.25;
}

@keyframes bbStickyProgress {
    from { width: 0%; }
    to { width: 100%; }
}

@keyframes bbOfferIn {
    from { opacity: 0; transform: translateY(6px); }
    to { opacity: 1; transform: translateY(0); }
}

.bb-sticky-inner {
    margin: 0 auto;
    width: 100%;
    max-width: 1280px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto auto;
    align-items: center;
    gap: 8px;
    padding: 10px 16px calc(0.75rem + env(safe-area-inset-bottom, 0px));
}

@media (min-width: 640px) {
    .bb-sticky-inner {
        display: flex;
        gap: 20px;
        padding: 12px 24px;
    }
}

.bb-sticky-offer {
    display: flex;
    min-width: 0;
    flex: 1;
    align-items: center;
    gap: 12px;
}

.bb-sticky-text {
    min-width: 0;
    animation: bbOfferIn 0.42s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.bb-sticky-eyebrow {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.16em;
    color: var(--primary);
}

.bb-sticky-body {
    font-size: 13px;
    font-weight: 600;
    line-height: 1.35;
    color: var(--text-primary);
}

@media (min-width: 640px) {
    .bb-sticky-eyebrow { font-size: 12px; }
    .bb-sticky-body { font-size: 14px; }
}

/* Manual controls: chevrons + clickable dots (desktop) */
.bb-sticky-controls {
    display: none;
    flex-shrink: 0;
    align-items: center;
    gap: 8px;
}

@media (min-width: 1024px) {
    .bb-sticky-controls { display: flex; }
}

.bb-sticky-nav {
    display: flex;
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    border: 1px solid var(--border);
    background: #ffffff;
    color: var(--text-primary);
    cursor: pointer;
    transition: color var(--transition), border-color var(--transition);
}

.bb-sticky-nav:hover {
    border-color: rgba(234, 114, 15, 0.4);
    color: var(--primary);
}

.bb-sticky-dots {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 6px;
    margin: 0;
    padding: 0;
}

.bb-sticky-dots button {
    display: flex;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    background: none;
    border: 0;
    border-radius: 14px;
    cursor: pointer;
    transition: background-color var(--transition);
}

.bb-sticky-dots button:hover {
    background: var(--bg-soft);
}

.bb-sticky-dots .bb-dot {
    display: block;
    height: 6px;
    width: 6px;
    border-radius: 999px;
    background: var(--border-light);
    transition: all 0.3s ease;
}

.bb-sticky-dots button[aria-current="true"] .bb-dot {
    width: 20px;
    background: var(--ink);
}

.bb-sticky-cta {
    flex-shrink: 0;
}

.bb-sticky-dismiss {
    display: flex;
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 14px;
    background: none;
    color: var(--text-muted);
    cursor: pointer;
    transition: color var(--transition), background-color var(--transition);
}

.bb-sticky-dismiss:hover {
    background: var(--bg-section);
    color: var(--text-primary);
}

/* Floating elements ride above the bar while it is mounted */
body.bb-has-sticky-cta .whatsapp-float { bottom: 92px; }
body.bb-has-sticky-cta .back-to-top { bottom: 152px; }
body.bb-has-sticky-cta .live-visitors { bottom: 92px; }

@media (max-width: 768px) {
    body.bb-has-sticky-cta .whatsapp-float { bottom: 136px; }
    body.bb-has-sticky-cta .back-to-top { bottom: 196px; }
}

/* ===== FOCUS RINGS (EN recipe: 2px accent, offset 2) ===== */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
[tabindex]:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

/* ===== REDUCED MOTION: every animation gated ===== */
@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    .marquee-track,
    .reviews-col,
    .bb-ping-ring,
    .live-dot,
    .live-dot-red,
    .cta-expiry-dot,
    .section-bg-image img,
    .tv-glow-effect,
    .particle,
    .whatsapp-float,
    .pricing::before,
    .bb-sticky-progress,
    .bb-sticky-text {
        animation: none !important;
    }

    .reveal,
    .reveal-right,
    .reveal-left,
    .reveal-scale {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }

    .btn-primary:hover,
    .hero-spot-trial:hover,
    .footer-wa-pill:hover,
    .bb-action-button:hover,
    .feature-card:hover,
    .pricing-card:hover,
    .sport-card:hover,
    .movie-card:hover,
    .step-card:hover,
    .rw-card:hover,
    .trust-stat:hover,
    .lang-pill:hover,
    .whatsapp-float:hover,
    .back-to-top:hover,
    .social-icon:hover {
        transform: none;
    }
}


/* ===== v4 FRAGMENT CSS MERGE (assembled section styles) ===== */

/* ---- s02-s04.css ---- */
/* ============================================================
   v4 FRAGMENT CSS: S2 #features-core + S3 #inside + S4 #setup-timeline
   New rules only. Buttons, container, section-tag/title/desc,
   focus rings and base reduced-motion guards come from style.css.
   RTL note: inset-inline-start resolves to the RIGHT side here.
   ============================================================ */

/* ===== S2: photo feature cards ===== */
.v4-feat {
    padding: 96px 0;
    background: var(--bg-section);
}

.v4-feat-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.v4-feat-card {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 24px;
    box-shadow: var(--shadow);
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.v4-feat-card:hover {
    transform: translateY(-4px);
    border-color: var(--border-light);
    box-shadow: var(--shadow-hover);
}

.v4-feat-media {
    position: relative;
    aspect-ratio: 1.8 / 1;
    background: var(--bg-soft);
    overflow: hidden;
}

.v4-feat-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.v4-feat-card:hover .v4-feat-media img {
    transform: scale(1.035);
}

/* EN wash: light top, ink fade at the bottom */
.v4-feat-media::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.04) 0%, transparent 45%, rgba(6, 18, 38, 0.32) 100%);
    pointer-events: none;
}

/* Kicker pill, start corner (top-right in RTL), accent dot */
.v4-feat-badge {
    position: absolute;
    top: 14px;
    inset-inline-start: 14px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    max-width: calc(100% - 28px);
    border: 1px solid rgba(255, 255, 255, 0.76);
    background: rgba(255, 255, 255, 0.86);
    -webkit-backdrop-filter: blur(14px);
    backdrop-filter: blur(14px);
    border-radius: 999px;
    padding: 7px 13px;
    font-size: 11.5px;
    font-weight: 700;
    color: var(--text-primary);
    box-shadow: 0 18px 46px rgba(6, 18, 38, 0.14);
    white-space: nowrap;
}

.v4-feat-badge::before {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--primary);
    flex-shrink: 0;
}

.v4-feat-body {
    padding: 22px 24px 26px;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 10px;
    background: #ffffff;
}

.v4-feat-body h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
}

.v4-feat-body p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* ===== S3: dark ink catalogue ===== */
.v4-ink {
    padding: 96px 0;
    background: var(--ink);
    color: #ffffff;
}

.v4-ink-head {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 32px;
    align-items: end;
    margin-bottom: 32px;
}

.v4-ink-head .section-tag {
    margin-bottom: 12px;
}

.v4-ink-title {
    font-family: var(--font-heading);
    font-size: clamp(1.9rem, 4vw, 2.9rem);
    font-weight: 700;
    line-height: 1.2;
    color: #ffffff;
    max-width: 14ch;
}

.v4-ink-lede {
    color: rgba(255, 255, 255, 0.68);
    font-size: 1.05rem;
    line-height: 1.75;
    max-width: 62ch;
}

.v4-ink-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

.v4-ink-stat {
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    padding: 18px 16px;
}

.v4-ink-stat strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 700;
    line-height: 1;
    color: #ffffff;
}

.v4-ink-stat span {
    display: block;
    margin-top: 8px;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    color: rgba(255, 255, 255, 0.5);
}

.v4-ink-grid {
    margin-top: 20px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.v4-ink-card {
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.055);
    border-radius: 24px;
    padding: 24px;
    box-shadow: 0 28px 80px -62px rgba(0, 0, 0, 0.8);
}

.v4-ink-card h3 {
    margin-top: 18px;
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 700;
    color: #ffffff;
}

.v4-ink-card > p {
    margin-top: 10px;
    color: rgba(255, 255, 255, 0.64);
    font-size: 0.92rem;
    line-height: 1.7;
    max-width: 58ch;
}

.v4-ink-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

/* White logo pill, like the EN catalogue cards */
.v4-logo-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    min-width: 92px;
    padding: 0 14px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: #ffffff;
    box-shadow: 0 10px 24px -20px rgba(0, 0, 0, 0.75);
}

.v4-logo-pill img {
    max-height: 22px;
    max-width: 86px;
    object-fit: contain;
    display: block;
}

.v4-ink-chips {
    margin-top: 18px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.v4-ink-chips span {
    display: inline-flex;
    align-items: center;
    min-height: 36px;
    padding: 4px 14px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: var(--ink);
    font-size: 0.8rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.82);
}

/* ===== S4: setup timeline ===== */
.v4-setup {
    padding: 96px 0;
    background: #ffffff;
    overflow: hidden;
}

.v4-setup-layout {
    display: grid;
    grid-template-columns: 360px 1fr;
    gap: 64px;
    align-items: start;
}

.v4-setup-aside {
    position: sticky;
    top: 110px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    text-align: start;
}

.v4-setup-aside .section-title {
    margin-bottom: 0;
}

.v4-setup-aside .section-desc {
    margin: 0;
}

.v4-setup-walink {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    min-height: 44px;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-primary);
    transition: color var(--transition);
}

.v4-setup-walink:hover {
    color: var(--primary);
}

/* Rail on the start side (right in RTL), behind the nodes */
.v4-tl {
    position: relative;
}

.v4-tl-rail {
    position: absolute;
    top: 8px;
    bottom: 90px;
    inset-inline-start: 27px;
    width: 2px;
    border-radius: 999px;
    background: linear-gradient(180deg, var(--primary) 0%, rgba(234, 114, 15, 0.45) 55%, var(--border) 100%);
    box-shadow: 0 0 22px rgba(234, 114, 15, 0.25);
}

.v4-tl-step {
    position: relative;
    display: grid;
    grid-template-columns: 56px 1fr;
    gap: 20px;
    padding-bottom: 56px;
}

.v4-tl-step:last-child {
    padding-bottom: 0;
}

.v4-tl-node {
    position: relative;
    z-index: 1;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    border: 2px solid var(--primary);
    color: var(--primary);
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    box-shadow: 0 0 0 6px #ffffff, 0 14px 32px -14px rgba(234, 114, 15, 0.45);
}

.v4-tl-content {
    min-width: 0;
}

.v4-tl-tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.16em;
    color: var(--primary);
    margin-bottom: 8px;
    padding-top: 6px;
}

.v4-tl-content h3 {
    font-family: var(--font-heading);
    font-size: 1.45rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.v4-tl-content > p {
    color: var(--text-secondary);
    font-size: 0.97rem;
    line-height: 1.8;
    max-width: 60ch;
    margin-bottom: 20px;
}

/* Mockup stages */
.v4-stage {
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 28px 18px;
}

.v4-stage--ink {
    background: var(--ink);
    border-color: rgba(255, 255, 255, 0.08);
}

.v4-stage--soft {
    background: #EDEFF7;
}

.v4-stage-blob {
    position: absolute;
    border-radius: 50%;
    background: rgba(234, 114, 15, 0.1);
    pointer-events: none;
}

.v4-stage-blob--form {
    width: 300px;
    height: 300px;
    top: -80px;
    inset-inline-start: -60px;
}

.v4-stage-blob--wa {
    width: 200px;
    height: 200px;
    bottom: -40px;
    inset-inline-start: -40px;
}

.v4-stage-blob--tv {
    width: 400px;
    height: 200px;
    bottom: -60px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(234, 114, 15, 0.18);
    filter: blur(50px);
}

/* Shared mini brand pill (white ground, real logo + wordmark) */
.v4-mock-brand {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.96);
    padding: 5px 10px;
    box-shadow: 0 10px 22px rgba(6, 18, 38, 0.14);
    font-family: var(--font-heading);
    font-size: 12.5px;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.2;
}

.v4-mock-brand img {
    width: 18px;
    height: 18px;
    object-fit: contain;
    display: block;
}

/* --- Step 1: trial form card --- */
.v4-mock-form {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 340px;
    border-radius: 20px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.97);
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.v4-mock-form-head {
    background: var(--primary);
    padding: 13px 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.v4-mock-form-head > span:last-child {
    color: rgba(255, 255, 255, 0.85);
    font-size: 12px;
    font-weight: 600;
}

.v4-mock-form-body {
    padding: 18px 18px 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.v4-mock-label {
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: #9DA2B3;
    margin-bottom: 5px;
}

.v4-mock-field {
    background: #EDEFF7;
    border: 1px solid #EDEFF7;
    border-radius: 10px;
    height: 42px;
    display: flex;
    align-items: center;
    padding: 0 14px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
}

.v4-mock-row {
    display: flex;
    gap: 8px;
}

.v4-mock-cc {
    flex-shrink: 0;
    gap: 6px;
    padding: 0 12px;
}

.v4-mock-cc svg {
    flex-shrink: 0;
}

.v4-mock-num {
    flex: 1;
}

/* Open country dropdown: +971 selected, +974 below */
.v4-mock-menu {
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    background: #ffffff;
    box-shadow: 0 18px 44px -20px rgba(6, 18, 38, 0.35);
}

.v4-mock-menu > div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    padding: 9px 14px;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-primary);
}

.v4-mock-menu > div + div {
    border-top: 1px solid var(--border);
}

.v4-mock-menu .is-selected {
    background: rgba(234, 114, 15, 0.07);
    color: var(--primary);
}

.v4-mock-btn {
    background: var(--primary);
    border-radius: 999px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
    margin-top: 2px;
}

/* --- Step 2: WhatsApp phone --- */
.v4-mock-wa {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 280px;
    border-radius: 28px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.5);
    background: #ffffff;
    box-shadow: 0 28px 70px rgba(0, 0, 0, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.v4-wa-status {
    background: var(--ink);
    padding: 8px 16px 4px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #ffffff;
    font-size: 11px;
    font-weight: 600;
}

.v4-wa-head {
    background: var(--ink);
    padding: 8px 16px 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.v4-wa-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.14);
}

.v4-wa-avatar img {
    width: 24px;
    height: 24px;
    object-fit: contain;
    display: block;
}

.v4-wa-name {
    display: inline-flex;
    align-items: center;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.95);
    padding: 3px 8px;
    font-family: var(--font-heading);
    font-size: 11.5px;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.3;
}

.v4-wa-online {
    display: flex;
    align-items: center;
    gap: 5px;
    color: rgba(255, 255, 255, 0.75);
    font-size: 11px;
    margin-top: 3px;
}

.v4-wa-online-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--whatsapp);
    flex-shrink: 0;
}

.v4-wa-chat {
    background: #EDEFF7;
    padding: 12px 12px 14px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.v4-wa-msg {
    display: flex;
    flex-direction: column;
    max-width: 85%;
}

/* RTL WhatsApp: received sits on the right, sent on the left */
.v4-wa-msg--in {
    align-self: flex-start;
}

.v4-wa-msg--out {
    align-self: flex-end;
}

.v4-wa-bubble {
    padding: 10px 13px;
    font-size: 13px;
    line-height: 1.55;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

.v4-wa-msg--in .v4-wa-bubble {
    background: #ffffff;
    color: #1E1E24;
    border-radius: 14px 14px 2px 14px;
}

.v4-wa-msg--out .v4-wa-bubble {
    background: var(--primary);
    color: #1E1E24;
    border-radius: 14px 14px 14px 2px;
}

.v4-wa-meta {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 4px;
    margin-top: 4px;
    font-size: 10px;
    color: #9DA2B3;
}

.v4-wa-msg--out .v4-wa-meta {
    color: rgba(255, 255, 255, 0.85);
}

.v4-wa-msg--out .v4-wa-meta svg {
    color: #ffffff;
    opacity: 0.9;
}

/* --- Step 3: TV app tiles --- */
.v4-mock-tv {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 400px;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: var(--ink);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5);
}

.v4-tv-bar {
    padding: 10px 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.v4-tv-bar .v4-mock-brand {
    border-radius: 9px;
    padding: 4px 8px;
    font-size: 11.5px;
    box-shadow: none;
}

.v4-tv-bar .v4-mock-brand img {
    width: 15px;
    height: 15px;
}

.v4-tv-live {
    display: inline-flex;
    align-items: center;
    background: var(--primary);
    color: #ffffff;
    font-size: 9.5px;
    font-weight: 700;
    letter-spacing: 0.08em;
    padding: 3px 9px;
    border-radius: 999px;
    white-space: nowrap;
}

.v4-tv-hero {
    position: relative;
    height: 150px;
    overflow: hidden;
    background:
        radial-gradient(120% 130% at 80% 0%, rgba(234, 114, 15, 0.28), transparent 55%),
        linear-gradient(180deg, #0B1D3A 0%, #061226 100%);
}

.v4-tv-hero-caption {
    position: absolute;
    bottom: 14px;
    inset-inline-start: 16px;
    z-index: 2;
}

.v4-tv-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--danger);
    color: #ffffff;
    font-size: 9.5px;
    font-weight: 700;
    letter-spacing: 0.06em;
    padding: 3px 8px;
    border-radius: 4px;
    margin-bottom: 7px;
}

.v4-tv-hero-badge::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #ffffff;
    flex-shrink: 0;
}

.v4-tv-hero-title {
    color: #ffffff;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 17px;
    line-height: 1.25;
}

.v4-tv-hero-sub {
    color: rgba(255, 255, 255, 0.55);
    font-size: 11.5px;
    margin-top: 2px;
}

/* Play icon stays unmirrored in RTL (media-control convention) */
.v4-tv-play {
    position: absolute;
    inset-inline-end: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
}

.v4-tv-tiles {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 6px;
    padding: 10px 12px 12px;
}

.v4-tv-tile {
    position: relative;
    height: 52px;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.07);
    background: var(--ink);
}

.v4-tv-tile--wc {
    background: linear-gradient(160deg, rgba(16, 185, 129, 0.32), rgba(6, 18, 38, 0.2) 70%), var(--ink);
}

.v4-tv-tile--league {
    background: linear-gradient(160deg, rgba(234, 114, 15, 0.3), rgba(6, 18, 38, 0.15) 70%), var(--ink);
}

.v4-tv-tile--films {
    background: linear-gradient(160deg, rgba(139, 92, 246, 0.3), rgba(6, 18, 38, 0.15) 70%), var(--ink);
}

.v4-tv-tile-chip {
    position: absolute;
    top: 6px;
    inset-inline-start: 6px;
    z-index: 1;
    display: grid;
    place-items: center;
    width: 22px;
    height: 22px;
    border-radius: 7px;
    background: rgba(255, 255, 255, 0.16);
    border: 1px solid rgba(255, 255, 255, 0.22);
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
}
.v4-tv-tile-chip svg { width: 13px; height: 13px; color: #fff; }

.v4-tv-tile span {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 4px 7px;
    background: rgba(6, 18, 38, 0.6);
    color: #ffffff;
    font-size: 9.5px;
    font-weight: 600;
    line-height: 1.25;
    white-space: nowrap;
}

.v4-tv-tile-live {
    display: inline-flex;
    align-items: center;
    background: var(--danger);
    color: #ffffff;
    font-size: 8px;
    font-weight: 800;
    padding: 1px 5px;
    border-radius: 3px;
    letter-spacing: 0.06em;
    flex-shrink: 0;
    font-style: normal;
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
    .v4-feat-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .v4-setup-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .v4-setup-aside {
        position: static;
    }
}

@media (max-width: 900px) {
    .v4-ink-head {
        grid-template-columns: 1fr;
        gap: 16px;
        align-items: start;
    }

    .v4-ink-title {
        max-width: none;
    }

    .v4-ink-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .v4-ink-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .v4-feat,
    .v4-ink,
    .v4-setup {
        padding: 64px 0;
    }

    .v4-feat-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .v4-ink-card {
        padding: 20px;
    }

    .v4-tl-rail {
        display: none;
    }

    .v4-tl-step {
        grid-template-columns: 44px 1fr;
        gap: 14px;
        padding-bottom: 44px;
    }

    .v4-tl-node {
        width: 44px;
        height: 44px;
        font-size: 1.05rem;
        box-shadow: none;
    }

    .v4-stage {
        min-height: 260px;
        padding: 22px 12px;
    }
}

@media (max-width: 480px) {
    .v4-ink-stats {
        gap: 10px;
    }

    .v4-ink-stat strong {
        font-size: 1.4rem;
    }

    .v4-tl-step {
        grid-template-columns: 1fr;
        gap: 10px;
    }
}

/* ===== Reduced motion: gate the hover transforms added here ===== */
@media (prefers-reduced-motion: reduce) {
    .v4-feat-card,
    .v4-feat-media img {
        transition: none;
    }

    .v4-feat-card:hover,
    .v4-feat-card:hover .v4-feat-media img {
        transform: none;
    }
}


/* ---- s05-s08.css ---- */
/* ============================================================
   V4 FRAGMENT CSS: S5-S8 (Section Author B)
   Namespaces: .v4-as (any-screen) / .v4-sa (sport-about)
               .v4-sr (series-recording) / .v4-wf (watch-features)
   Reuses style.css tokens + grammar (white cards, var(--border),
   24-28px radius, long soft shadows, hover lift, .section-tag
   eyebrow, 44px targets). RTL-safe via logical properties.
   .v4-reveal base + observer are wired by the assembler.
   ============================================================ */

/* ===== S5 : ANY SCREEN ===== */
.v4-as {
    position: relative;
    overflow: hidden;
    padding: 96px 0;
    background: var(--bg-body);
}

/* Real-logo marquee (seamless: margins, not flex gap, so the
   -50% loop point matches exactly) */
.v4-as-marquee {
    overflow: hidden;
    white-space: nowrap;
    margin: 4px 0 56px;
    padding: 6px 0;
    mask-image: linear-gradient(90deg, transparent 0%, black 10%, black 90%, transparent 100%);
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, black 10%, black 90%, transparent 100%);
}

.v4-as-track {
    display: inline-flex;
    animation: v4asScroll 46s linear infinite;
}

.v4-as-set {
    display: contents;
}

@keyframes v4asScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* EN white-pill presentation: white ground, #E8EAF0 border,
   soft shadow, logo height 22px */
.v4-as-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 44px;
    padding: 10px 24px;
    margin-inline-end: 14px;
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 999px;
    box-shadow: 0 10px 30px -20px rgba(6, 18, 38, 0.35);
}

.v4-as-pill img {
    display: block;
    height: 22px;
    width: auto;
    max-width: 120px;
    object-fit: contain;
}

.v4-as-pill-name {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-primary);
    white-space: nowrap;
}

.v4-as-grid {
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: 48px;
    align-items: center;
}

.v4-as-copy h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.5;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.v4-as-copy > p {
    color: var(--text-secondary);
    line-height: 1.9;
    margin-bottom: 22px;
    max-width: 56ch;
}

.v4-as-devices {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 0 0 26px;
    padding: 0;
}

.v4-as-devices li {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
    padding: 8px 22px;
    background: var(--bg-soft);
    border: 1px solid var(--border);
    border-radius: 999px;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-secondary);
}

.v4-as-cta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
}

/* Library mock card */
.v4-as-mock {
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 28px;
    padding: 22px;
    box-shadow: var(--shadow-lg);
}

.v4-as-mock-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 16px;
}

.v4-as-mock-live {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-primary);
}

.v4-as-mock-count {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--primary);
}

.v4-as-mock-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}

.v4-as-tile {
    position: relative;
    display: block;
    aspect-ratio: 2 / 3;
    border-radius: 12px;
    overflow: hidden;
    background: #0e1f3a;
}
.v4-as-tile img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.v4-as-tile .v4-as-cat {
    position: absolute;
    inset-inline: 0;
    bottom: 0;
    z-index: 2;
    margin: 0;
    padding: 30px 10px 10px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.88) 8%, rgba(0, 0, 0, 0.4) 55%, transparent);
    font-size: 0.76rem;
    font-weight: 800;
    color: #fff;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.6);
}

.v4-as-mock-foot {
    margin-top: 16px;
    padding: 10px 16px;
    text-align: center;
    background: var(--bg-soft);
    border: 1px dashed var(--border-light);
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-secondary);
}

/* ===== S6 : SPORT ABOUT ===== */
.v4-sa {
    position: relative;
    overflow: hidden;
    padding: 96px 0;
    background: var(--bg-section);
}

.v4-sa-editorial {
    display: grid;
    grid-template-columns: 1.25fr 0.9fr;
    gap: 32px;
    align-items: stretch;
    margin-bottom: 32px;
}

.v4-sa-intro .section-title {
    margin-bottom: 12px;
}

.v4-sa-intro p {
    color: var(--text-secondary);
    line-height: 1.9;
    margin-top: 12px;
    max-width: 62ch;
}

.v4-sa-lead {
    font-size: 1.1rem;
}

/* UFC / boxing dark card (ink surface, accent glow like the footer) */
.v4-sa-ufc {
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 14px;
    background: var(--ink);
    color: #ffffff;
    border-radius: 28px;
    padding: 34px 30px;
    box-shadow: 0 24px 80px -52px rgba(6, 18, 38, 0.75);
}

.v4-sa-ufc::before {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(360px 260px at 85% 0%, rgba(234, 114, 15, 0.28), transparent 62%),
        radial-gradient(300px 240px at 10% 100%, rgba(234, 114, 15, 0.16), transparent 65%);
}

.v4-sa-ufc > * {
    position: relative;
}

.v4-sa-ufc-badge {
    display: inline-flex;
    align-items: center;
    padding: 5px 16px;
    background: rgba(234, 114, 15, 0.16);
    border: 1px solid rgba(234, 114, 15, 0.45);
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 800;
    color: #ffffff;
}

.v4-sa-ufc h3 {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 700;
    line-height: 1.5;
    color: #ffffff;
}

.v4-sa-ufc p {
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.95rem;
    line-height: 1.8;
}

/* Stat row (Trustpilot / uptime / WhatsApp reply) */
.v4-sa-statrow {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin: 0 0 16px;
}

.v4-sa-statrow > div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 18px 24px;
    box-shadow: var(--shadow);
}

.v4-sa-statrow dt {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-muted);
}

.v4-sa-statrow dt img {
    display: block;
    width: 16px;
    height: 16px;
}

.v4-sa-statrow dd {
    margin: 0;
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-primary);
    white-space: nowrap;
}

/* Numbers grid */
.v4-sa-numbers {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 40px;
}

.v4-sa-num {
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 26px 20px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all var(--transition);
}

.v4-sa-num:hover {
    transform: translateY(-4px);
    border-color: var(--border-light);
    box-shadow: var(--shadow-hover);
}

.v4-sa-num strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.7rem;
    font-weight: 700;
    line-height: 1.3;
    color: var(--primary);
    margin-bottom: 4px;
}

.v4-sa-num span {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Events grid: WC hero card spans 2 cols, rest are white cards */
.v4-sa-events {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.v4-sa-event {
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    gap: 6px;
    min-height: 170px;
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 24px;
    box-shadow: var(--shadow);
    transition: all var(--transition);
}

.v4-sa-event:hover {
    transform: translateY(-4px);
    border-color: var(--border-light);
    box-shadow: var(--shadow-hover);
}

.v4-sa-event-date {
    align-self: flex-start;
    margin-bottom: auto;
    padding: 4px 14px;
    background: var(--bg-soft);
    border: 1px solid var(--border);
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--text-secondary);
}

.v4-sa-event h4 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-top: 10px;
}

.v4-sa-event p {
    font-size: 0.85rem;
    line-height: 1.7;
    color: var(--text-secondary);
}

/* World Cup hero event: the one dark element here, gold lives inside it
   (style.css rule: gold only inside WC banner elements) */
.v4-sa-event--wc {
    grid-column: span 2;
    min-height: 230px;
    background: var(--ink);
    border-color: rgba(212, 175, 55, 0.35);
}

.v4-sa-event--wc:hover {
    border-color: rgba(212, 175, 55, 0.55);
}

.v4-sa-event-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.38;
}

.v4-sa-event-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(180deg, rgba(6, 18, 38, 0.82) 0%, rgba(6, 18, 38, 0.55) 45%, rgba(6, 18, 38, 0.92) 100%);
}

.v4-sa-event--wc > *:not(.v4-sa-event-bg):not(.v4-sa-event-overlay) {
    position: relative;
    z-index: 2;
}

.v4-sa-event--wc .wc-live-badge {
    align-self: flex-start;
    margin-bottom: 0;
}

.v4-sa-event-date--wc {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.85);
    margin-top: 10px;
}

.v4-sa-event--wc h4 {
    font-size: 1.45rem;
    color: #ffffff;
}

.v4-sa-event--wc p {
    color: rgba(255, 255, 255, 0.78);
}

/* ===== S7 : SERIES + RECORDING ===== */
.v4-sr {
    position: relative;
    overflow: hidden;
    padding: 96px 0;
    background: var(--bg-body);
}

.v4-sr-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.v4-sr-card {
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 36px 32px;
    box-shadow: var(--shadow);
    transition: all var(--transition);
}

.v4-sr-card:hover {
    transform: translateY(-4px);
    border-color: var(--border-light);
    box-shadow: var(--shadow-hover);
}

/* Same 44px icon-tile recipe as .feature-icon */
.v4-sr-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 14px;
    background: var(--bg-soft);
    border: 1px solid var(--border);
    font-size: 1.25rem;
    margin-bottom: 18px;
}

.v4-sr-card h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 10px;
}

.v4-sr-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 18px;
}

.v4-sr-chips {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 0;
    padding: 0;
}

.v4-sr-chips li {
    padding: 6px 14px;
    background: var(--bg-soft);
    border: 1px solid var(--border);
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--text-secondary);
}

/* ===== S8 : WATCH FEATURES (photo cards, same grammar as S2) ===== */
.v4-wf {
    position: relative;
    overflow: hidden;
    padding: 96px 0;
    background: var(--bg-section);
}

.v4-wf-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.v4-wf-card {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 24px;
    box-shadow: var(--shadow);
    transition: all var(--transition);
}

.v4-wf-card:hover {
    transform: translateY(-4px);
    border-color: var(--border-light);
    box-shadow: var(--shadow-hover);
}

.v4-wf-media {
    position: relative;
    aspect-ratio: 16 / 10;
    background: var(--bg-soft);
    border-bottom: 1px solid var(--border);
}

.v4-wf-media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Pill badge in the start (top-right in RTL) corner of the image */
.v4-wf-badge {
    position: absolute;
    top: 12px;
    inset-inline-start: 12px;
    padding: 4px 14px;
    background: rgba(255, 255, 255, 0.92);
    -webkit-backdrop-filter: blur(6px);
    backdrop-filter: blur(6px);
    border: 1px solid var(--border);
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 800;
    color: var(--text-primary);
}

.v4-wf-body {
    padding: 20px 22px 24px;
}

.v4-wf-body h3 {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.v4-wf-body p {
    color: var(--text-secondary);
    font-size: 0.88rem;
    line-height: 1.75;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .v4-as-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .v4-as-mockwrap {
        max-width: 460px;
        margin: 0 auto;
        width: 100%;
    }

    .v4-sa-editorial {
        grid-template-columns: 1fr;
    }

    .v4-sa-events {
        grid-template-columns: repeat(2, 1fr);
    }

    .v4-wf-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .v4-as,
    .v4-sa,
    .v4-sr,
    .v4-wf {
        padding: 64px 0;
    }

    .v4-as-marquee {
        margin-bottom: 40px;
    }

    .v4-as-copy h3 {
        font-size: 1.25rem;
    }

    .v4-as-cta .bb-action-button {
        width: 100%;
    }

    .v4-sa-statrow {
        grid-template-columns: 1fr;
    }

    .v4-sa-statrow > div {
        padding: 16px 20px;
    }

    .v4-sa-numbers {
        grid-template-columns: repeat(2, 1fr);
    }

    .v4-sa-events {
        grid-template-columns: 1fr;
    }

    .v4-sa-event--wc {
        grid-column: span 1;
    }

    .v4-sa-ufc {
        padding: 28px 22px;
    }

    .v4-sr-grid {
        grid-template-columns: 1fr;
    }

    .v4-sr-card {
        padding: 28px 22px;
    }
}

@media (max-width: 640px) {
    .v4-wf-grid {
        grid-template-columns: 1fr;
    }
}

/* ===== REDUCED MOTION: every animation + lift gated ===== */
@media (prefers-reduced-motion: reduce) {
    .v4-as-track {
        animation: none !important;
    }

    .v4-as-marquee {
        overflow-x: auto;
        mask-image: none;
        -webkit-mask-image: none;
    }

    .v4-sa-num:hover,
    .v4-sa-event:hover,
    .v4-sr-card:hover,
    .v4-wf-card:hover {
        transform: none;
    }
}


/* ---- s09-s13.css ---- */
/* ============================================================
   v4 FRAGMENT CSS: S9-S13 (Section Author C)
   Sections: #apps, #screens, #audiences, #support, #telegram
   Reuses style.css tokens (vars, .section-header grammar, .btn,
   .bb-action-button). Only additive, namespaced rules here.
   RTL-correct via logical properties. Reduced-motion guarded.
   ============================================================ */

/* ---- shared v4 reveal hook (assembler wires the IntersectionObserver,
   adding .visible; .is-visible also accepted) ---- */
.v4-reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
    transition-delay: var(--v4-delay, 0s);
}

.v4-reveal.visible,
.v4-reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== S9: APP ECOSYSTEM (#apps, dark ink) ===== */
.apps-section {
    position: relative;
    overflow: hidden;
    padding: 96px 0;
    background: var(--ink);
    color: #ffffff;
}

.apps-section::before {
    content: '';
    position: absolute;
    top: -120px;
    inset-inline-end: -120px;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(234, 114, 15, 0.14) 0%, transparent 70%);
    filter: blur(60px);
    pointer-events: none;
}

.apps-grid {
    position: relative;
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    align-items: start;
}

.apps-header {
    text-align: start;
    margin-bottom: 32px;
}

.apps-title {
    color: #ffffff;
}

.apps-desc {
    color: rgba(255, 255, 255, 0.66);
    margin: 0;
}

.apps-cards {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.apps-card {
    background: rgba(255, 255, 255, 0.055);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 22px;
    transition: border-color var(--transition), background var(--transition), transform var(--transition);
}

.apps-card:hover {
    border-color: rgba(255, 255, 255, 0.25);
    background: rgba(255, 255, 255, 0.09);
    transform: translateY(-3px);
}

.apps-card-head {
    display: flex;
    align-items: center;
    gap: 14px;
}

.apps-logo-pill {
    display: grid;
    place-items: center;
    width: 56px;
    height: 56px;
    flex-shrink: 0;
    border-radius: 14px;
    background: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.16);
    box-shadow: 0 14px 34px rgba(234, 114, 15, 0.18);
}

.apps-logo-pill img {
    width: 38px;
    height: 38px;
    object-fit: contain;
}

.apps-card h3 {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.15rem;
    color: #ffffff;
    line-height: 1.25;
}

.apps-bestfor {
    color: rgba(255, 255, 255, 0.62);
    font-size: 0.85rem;
    margin-top: 2px;
}

.apps-note {
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.9rem;
    line-height: 1.8;
    margin-top: 12px;
}

.apps-code {
    display: inline-flex;
    align-items: center;
    margin-top: 12px;
    padding: 6px 12px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.08);
    font-family: 'Courier New', monospace;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.08em;
    color: #ffffff;
}

/* App match visual card */
.apps-match {
    display: flex;
    flex-direction: column;
    gap: 20px;
    background: #ffffff;
    color: var(--text-primary);
    border-radius: 30px;
    padding: 24px;
    box-shadow: 0 36px 90px rgba(0, 0, 0, 0.28);
}

.apps-match-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.apps-match-brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    border-radius: 14px;
    background: var(--bg-soft);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--text-primary);
}

.apps-match-panel {
    background: var(--ink);
    border-radius: 24px;
    padding: 22px;
    color: #ffffff;
}

.apps-match-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
}

.apps-match-pill {
    display: inline-flex;
    padding: 4px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.1);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.14em;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 12px;
}

.apps-match-info h3 {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: clamp(1.6rem, 3vw, 2.3rem);
    line-height: 1.05;
    color: #ffffff;
}

.apps-match-info p {
    margin-top: 10px;
    max-width: 260px;
    font-size: 0.9rem;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.58);
}

.apps-device-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 14px;
}

.apps-device-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    height: 36px;
    padding: 0 10px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.1);
    font-size: 12px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
}

.apps-device-pill img {
    height: 20px;
    width: auto;
    max-width: 40px;
    object-fit: contain;
}

.apps-match-logo {
    display: grid;
    place-items: center;
    width: 64px;
    height: 64px;
    flex-shrink: 0;
    border-radius: 18px;
    background: #ffffff;
    box-shadow: 0 18px 34px rgba(234, 114, 15, 0.28);
}

.apps-match-logo img {
    width: 48px;
    height: 48px;
    object-fit: contain;
}

.apps-match-tiles {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin-top: 20px;
}

.apps-match-tile {
    display: grid;
    place-items: center;
    height: 64px;
    padding: 0 12px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.07);
}

.apps-match-tile img {
    max-height: 40px;
    max-width: 88px;
    object-fit: contain;
}

.apps-match-tile--active {
    border-color: rgba(234, 114, 15, 0.6);
    background: rgba(234, 114, 15, 0.16);
}

.apps-match-cta {
    align-self: center;
}

@media (min-width: 1024px) {
    .apps-grid {
        grid-template-columns: 1.02fr 0.98fr;
        gap: 56px;
    }

    .apps-match {
        position: sticky;
        top: 96px;
        padding: 32px;
    }
}

/* ===== S10: SCREENS (#screens) ===== */
.scr-section {
    padding: 96px 0;
    background: var(--bg-section);
}

.scr-badge {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.16em;
    color: var(--primary);
    margin-bottom: 14px;
}

.scr-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-top: 12px;
}

.scr-card {
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 12px;
    box-shadow: var(--shadow);
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.scr-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
    border-color: var(--border-light);
}

.scr-media {
    position: relative;
    aspect-ratio: 16 / 10;
    border-radius: 18px;
    overflow: hidden;
    background: var(--bg-soft);
}

.scr-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.scr-dot {
    position: absolute;
    top: 12px;
    inset-inline-start: 12px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--primary);
    box-shadow: 0 0 14px rgba(234, 114, 15, 0.55);
}

.scr-body {
    padding: 16px 8px 8px;
}

.scr-body h3 {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--text-primary);
    line-height: 1.3;
}

.scr-body p {
    margin-top: 8px;
    font-size: 0.85rem;
    line-height: 1.65;
    color: var(--text-muted);
}

.scr-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 14px;
}

.scr-chip {
    padding: 4px 10px;
    border-radius: 999px;
    border: 1px solid var(--border);
    background: var(--bg-soft);
    font-size: 11px;
    font-weight: 600;
    color: var(--text-secondary);
}

.scr-closing {
    margin-top: 32px;
    text-align: center;
    font-size: 0.95rem;
    color: var(--text-muted);
}

.scr-ask {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
    padding: 0 6px;
    font-weight: 700;
    color: var(--primary);
    text-decoration: underline;
    text-underline-offset: 4px;
}

.scr-ask:hover {
    color: var(--primary-dark);
}

@media (max-width: 1024px) {
    .scr-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .scr-grid {
        grid-template-columns: 1fr;
    }
}

/* ===== S11: AUDIENCE TILES (#audiences, dark ink) ===== */
.aud-section {
    position: relative;
    overflow: hidden;
    padding: 96px 0;
    background: var(--ink);
    color: #ffffff;
}

.aud-section::before {
    content: '';
    position: absolute;
    inset-inline: 0;
    top: 0;
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    pointer-events: none;
}

.aud-section::after {
    content: '';
    position: absolute;
    top: 80px;
    inset-inline-end: -130px;
    width: 290px;
    height: 290px;
    border-radius: 50%;
    background: rgba(234, 114, 15, 0.1);
    filter: blur(64px);
    pointer-events: none;
}

.aud-title {
    position: relative;
    z-index: 1;
    max-width: 760px;
    margin: 0 auto 44px;
    text-align: center;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    line-height: 1.25;
    color: #ffffff;
}

.aud-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    align-items: stretch;
}

.aud-tile {
    display: flex;
    flex-direction: column;
    min-height: 300px;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.055);
    padding: 12px;
    color: #ffffff;
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.18);
    transition: transform var(--transition), border-color var(--transition), background var(--transition), box-shadow var(--transition);
}

.aud-tile:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 255, 255, 0.25);
    background: rgba(255, 255, 255, 0.09);
    box-shadow: 0 30px 84px rgba(0, 0, 0, 0.28);
    color: #ffffff;
}

.aud-media {
    position: relative;
    aspect-ratio: 4 / 3;
    border-radius: 18px;
    overflow: hidden;
    background: #0b1c38;
}

.aud-media::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(6, 18, 38, 0.12);
    pointer-events: none;
}

.aud-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.aud-badge {
    position: absolute;
    z-index: 1;
    top: 10px;
    inset-inline-start: 10px;
    padding: 4px 12px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(6, 18, 38, 0.72);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.08em;
    color: #ffffff;
}

.aud-body {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 14px 8px 8px;
}

.aud-body h3 {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.05rem;
    line-height: 1.3;
    color: #ffffff;
}

.aud-body p {
    margin-top: 6px;
    font-size: 13px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.6);
}

.aud-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: auto;
    padding-top: 16px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: var(--primary-light);
}

.aud-footer {
    position: relative;
    z-index: 1;
    margin-top: 40px;
    text-align: center;
}

@media (max-width: 1100px) {
    .aud-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .aud-grid {
        grid-template-columns: 1fr;
    }

    .aud-tile {
        min-height: 0;
    }
}

/* ===== S12: SUPPORT (#support) ===== */
.sup-section {
    padding: 96px 0;
    background: #ffffff;
}

.sup-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border: 1px solid var(--border);
    border-radius: 24px;
    overflow: hidden;
    background: #ffffff;
    box-shadow: var(--shadow-lg);
}

.sup-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 32px;
    padding: 40px;
}

.sup-lines p {
    font-size: clamp(1.15rem, 2vw, 1.4rem);
    font-weight: 600;
    line-height: 1.65;
    color: var(--text-secondary);
}

.sup-wa-cta {
    align-self: flex-start;
}

.sup-chat {
    border-inline-start: 1px solid var(--border);
    background: var(--bg-soft);
}

.sup-chat-head {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 20px;
    background: var(--ink);
    color: #ffffff;
}

.sup-chat-avatar {
    display: grid;
    place-items: center;
    width: 36px;
    height: 36px;
    flex-shrink: 0;
    border-radius: 50%;
    background: #ffffff;
    overflow: hidden;
}

.sup-chat-avatar img {
    width: 26px;
    height: 26px;
    object-fit: contain;
}

.sup-chat-id strong {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #ffffff;
}

.sup-chat-status {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.9);
}

.sup-chat-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--whatsapp);
    animation: supDotPulse 2.4s ease-in-out infinite;
}

@keyframes supDotPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.45; }
}

.sup-chat-body {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 20px;
}

.sup-msg {
    max-width: 80%;
    padding: 10px 16px;
    border-radius: 16px;
    box-shadow: 0 4px 14px -8px rgba(6, 18, 38, 0.3);
    font-size: 13px;
    font-weight: 500;
    line-height: 1.6;
}

/* Outgoing (the customer) sits on the visual LEFT in RTL WhatsApp */
.sup-msg--out {
    align-self: flex-end;
    background: var(--primary);
    color: var(--ink);
    border-start-end-radius: 4px;
}

.sup-msg--out .sup-msg-time {
    color: rgba(6, 18, 38, 0.6);
}

/* Incoming (support) sits on the visual RIGHT in RTL */
.sup-msg--in {
    align-self: flex-start;
    background: #ffffff;
    color: var(--text-primary);
    border-start-start-radius: 4px;
}

.sup-msg--in .sup-msg-time {
    color: var(--text-muted);
}

.sup-msg-time {
    display: block;
    margin-top: 4px;
    font-size: 11px;
    text-align: left;
}

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

    .sup-copy {
        padding: 28px 24px;
    }

    .sup-chat {
        border-inline-start: 0;
        border-top: 1px solid var(--border);
    }
}

/* ===== S13: TELEGRAM UPDATES (#telegram) ===== */
.tg-section {
    padding: 96px 0;
    background: var(--bg-section);
}

.tg-header {
    display: flex;
    flex-direction: column;
    gap: 28px;
    margin-bottom: 40px;
}

.tg-header-text {
    max-width: 700px;
}

.tg-eyebrow {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.16em;
    color: var(--primary);
    margin-bottom: 14px;
}

.tg-desc {
    margin: 0;
    max-width: 620px;
}

.tg-join-wrap {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
}

.tg-join {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 48px;
    padding: 12px 24px;
    border-radius: 999px;
    background: var(--ink);
    color: #ffffff;
    font-size: 15px;
    font-weight: 700;
    box-shadow: rgba(6, 18, 38, 0.16) 0 14px 24px -10px, rgba(6, 18, 38, 0.1) 0 5px 10px -6px;
    transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}

.tg-join:hover {
    background: #000000;
    color: #ffffff;
    transform: translateY(-1px);
}

.tg-join img {
    width: 22px;
    height: 22px;
    object-fit: contain;
}

.tg-join-note {
    font-size: 13px;
    color: var(--text-muted);
}

.tg-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.tg-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 200px;
    padding: 22px;
    border-radius: 24px;
    border: 1px solid var(--border);
    background: #ffffff;
    box-shadow: var(--shadow);
    color: var(--text-primary);
    transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.tg-card:hover {
    transform: translateY(-4px);
    border-color: var(--border-light);
    box-shadow: var(--shadow-hover);
    color: var(--text-primary);
}

/* Telegram cards with image band on top: clip the rounded top corners */
.tg-card--media {
    padding: 0;
    overflow: hidden;
}

.tg-card-media {
    position: relative;
    aspect-ratio: 16 / 10;
    background: var(--bg-soft);
    border-bottom: 1px solid var(--border);
}

.tg-card-media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tg-card-media::after {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(180deg, rgba(6, 18, 38, 0) 50%, rgba(6, 18, 38, 0.28) 100%);
}

/* White eyebrow pill overlaid at the RTL start corner of the image */
.tg-label--over {
    position: absolute;
    z-index: 2;
    top: 12px;
    inset-inline-start: 12px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(255, 255, 255, 0.7);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    box-shadow: 0 14px 36px rgba(6, 18, 38, 0.16);
}

/* Arrow chip overlaid at the RTL end corner of the image */
.tg-card-media .tg-arrow {
    position: absolute;
    z-index: 2;
    top: 12px;
    inset-inline-end: 12px;
}

.tg-card--media .tg-card-main {
    margin-top: 0;
    padding: 22px 22px 0;
}

.tg-card--media .tg-card-meta {
    padding: 0 22px 22px;
}

.tg-card-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
}

.tg-label {
    padding: 5px 12px;
    border-radius: 999px;
    background: var(--bg-soft);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.12em;
    color: var(--primary);
}

.tg-arrow {
    display: grid;
    place-items: center;
    width: 36px;
    height: 36px;
    flex-shrink: 0;
    border-radius: 10px;
    background: var(--ink);
    color: #ffffff;
    transition: transform var(--transition);
}

.tg-card:hover .tg-arrow {
    transform: translateX(-2px);
}

.tg-card-main {
    margin-top: 24px;
}

.tg-card-main h3 {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.25rem;
    line-height: 1.3;
    color: var(--text-primary);
}

.tg-card-main p {
    margin-top: 10px;
    font-size: 14px;
    line-height: 1.65;
    color: var(--text-muted);
}

.tg-card-meta {
    margin-top: 20px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.14em;
    color: var(--text-muted);
}

@media (min-width: 900px) {
    .tg-header {
        flex-direction: row;
        align-items: flex-end;
        justify-content: space-between;
    }

    .tg-join-wrap {
        align-items: flex-end;
    }
}

@media (max-width: 720px) {
    .tg-grid {
        grid-template-columns: 1fr;
    }
}

/* ===== REDUCED MOTION: gate every S9-S13 animation/transition ===== */
@media (prefers-reduced-motion: reduce) {
    .v4-reveal {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }

    .sup-chat-dot {
        animation: none;
    }

    .apps-card,
    .scr-card,
    .aud-tile,
    .tg-card,
    .tg-join,
    .tg-arrow,
    .apps-match-cta {
        transition: none;
    }

    .apps-card:hover,
    .scr-card:hover,
    .aud-tile:hover,
    .tg-card:hover,
    .tg-join:hover {
        transform: none;
    }
}


/* ---- s14-s17.css ---- */
/* ============================================================
   v4 FRAGMENT CSS: S14-S17 (Section Author D)
   Adds ONLY what the new sections need. Everything else reuses
   style.css (.pricing-*, .rw-card, .feature-card, .cta-*, .btn).
   ============================================================ */

/* ===== S14 REVIEWS WALL (Trustpilot-style, static) ===== */
.reviews-v4 {
    padding: 96px 0;
    position: relative;
    overflow: hidden;
}

.reviews-v4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 10%;
    right: 10%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
    opacity: 0.15;
}

.rv4-layout {
    display: grid;
    grid-template-columns: 320px minmax(0, 1fr);
    gap: 24px;
    align-items: start;
}

/* Summary side panel */
.rv4-panel {
    position: sticky;
    top: 96px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px 24px;
    box-shadow: var(--shadow);
}

.rv4-tp-row {
    display: flex;
    align-items: center;
    gap: 8px;
}

.rv4-tp-row img {
    width: 22px;
    height: 22px;
    display: block;
}

.rv4-tp-name {
    color: #00B67A;
    font-weight: 800;
    font-size: 1.05rem;
}

.rv4-score {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    line-height: 1;
    color: var(--text-primary);
    direction: ltr;
    text-align: right;
}

.rv4-score small {
    font-size: 1.2rem;
    color: var(--text-muted);
    font-weight: 600;
}

/* Trustpilot-style star squares (green tile, white star glyph) */
.rv4-stars,
.rv4-card-stars {
    display: flex;
    gap: 4px;
}

.rv4-star {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    border-radius: 5px;
    background: #00B67A;
    flex-shrink: 0;
}

.rv4-star::before {
    content: '★';
    color: #ffffff;
    font-size: 15px;
    line-height: 1;
}

/* 4.7 = part-filled 5th square. RTL row: filled side faces the row start. */
.rv4-star--half {
    background: linear-gradient(to left, #00B67A 70%, #DCDCE6 70%);
}

.rv4-card-stars {
    gap: 3px;
    margin-bottom: 10px;
}

.rv4-card-stars .rv4-star {
    width: 18px;
    height: 18px;
    border-radius: 3px;
}

.rv4-card-stars .rv4-star::before {
    font-size: 11px;
}

.rv4-sub {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.rv4-sub strong {
    color: var(--text-primary);
}

/* 5-star distribution bars */
.rv4-bars {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.rv4-bar-row {
    display: grid;
    grid-template-columns: 30px 1fr 38px;
    align-items: center;
    gap: 8px;
    font-size: 0.78rem;
    color: var(--text-muted);
}

.rv4-bar-label {
    font-weight: 700;
    color: var(--text-secondary);
    text-align: center;
}

.rv4-bar-track {
    display: block;
    height: 8px;
    border-radius: 999px;
    background: var(--bg-soft);
    border: 1px solid var(--border);
    overflow: hidden;
}

.rv4-bar-fill {
    display: block;
    height: 100%;
    border-radius: 999px;
    background: #00B67A;
}

.rv4-bar-pct {
    text-align: left;
}

.rv4-panel-note {
    color: var(--text-muted);
    font-size: 0.82rem;
    line-height: 1.7;
}

/* Reviews grid: static cards, no auto-scroll */
.rv4-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
    align-items: start;
}

.rv4-card {
    margin-bottom: 0;
    padding: 24px;
}

.rv4-card[hidden] {
    display: none !important;
}

.rv4-more-row {
    grid-column: 1 / -1;
    display: flex;
    justify-content: center;
    margin-top: 4px;
}

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

    .rv4-panel {
        position: static;
        max-width: 420px;
        margin: 0 auto;
        width: 100%;
    }
}

@media (max-width: 640px) {
    .reviews-v4 {
        padding: 64px 0;
    }

    .rv4-grid {
        grid-template-columns: 1fr;
    }

    .rv4-card {
        padding: 20px;
    }
}

/* ===== S15 PLANS: compact pain strip ===== */
.plans-pain {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 20px 28px;
    margin-bottom: 36px;
    text-align: center;
}

.plans-pain-old,
.plans-pain-new {
    display: flex;
    flex-direction: column;
    gap: 3px;
    min-width: 220px;
}

.plans-pain-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.02em;
}

.plans-pain-label--old {
    color: var(--danger);
}

.plans-pain-label--new {
    color: var(--primary);
}

.plans-pain-items {
    unicode-bidi: isolate;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--text-secondary);
}

.plans-pain-total {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--danger);
    text-decoration: line-through;
    text-decoration-thickness: 2px;
}

.plans-pain-vs {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-muted);
    flex-shrink: 0;
}

.plans-pain-price {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--primary);
}

.plans-pain-note {
    font-size: 0.78rem;
    color: var(--text-muted);
}

@media (max-width: 768px) {
    .plans-pain {
        flex-direction: column;
        gap: 12px;
        padding: 18px 16px;
    }

    .plans-pain-old,
    .plans-pain-new {
        min-width: 0;
    }
}

/* ===== S16 THE PROMISE ===== */
.promise-section {
    padding: 96px 0;
    position: relative;
    overflow: hidden;
}

.promise-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
}

.promise-grid .feature-card {
    padding: 28px 24px;
}

@media (max-width: 1024px) {
    .promise-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .promise-section {
        padding: 64px 0;
    }

    .promise-grid {
        grid-template-columns: 1fr;
    }
}

/* ===== S17 FINAL CTA ===== */
.fcta-note {
    margin-top: 16px;
    display: block;
}

/* ===== REDUCED MOTION (v4 additions) ===== */
@media (prefers-reduced-motion: reduce) {
    .rv4-card:hover,
    .rv4-panel:hover {
        transform: none;
    }
}



/* ===== DYK chip (scoped) + see-more, v4 ===== */
/* ===== DYK chip (scoped: .bb-dyk only) ===== */
.bb-dyk {
    position: fixed;
    left: 24px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 900;
}

.bb-dyk-sr {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
    border: 0;
}

.bb-dyk-fab {
    display: none;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border: 1px solid var(--border);
    border-radius: 50%;
    background: #ffffff;
    color: var(--primary);
    cursor: pointer;
    box-shadow: var(--shadow);
    transition: all var(--transition);
}

.bb-dyk-fab:hover {
    border-color: var(--primary);
    transform: translateY(-2px);
}

.bb-dyk-card {
    width: 260px;
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 18px;
    box-shadow: var(--shadow-lg);
    padding: 16px 18px;
}

.bb-dyk-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    margin-bottom: 6px;
}

.bb-dyk-eyebrow {
    color: var(--primary);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.02em;
}

.bb-dyk-close {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    margin: -12px -14px -12px 0;
    border: 0;
    border-radius: 12px;
    background: none;
    color: var(--text-muted);
    cursor: pointer;
    transition: color var(--transition), background-color var(--transition);
}

.bb-dyk-close:hover {
    background: var(--bg-soft);
    color: var(--text-primary);
}

.bb-dyk-fact {
    min-height: 72px;
    color: var(--text-secondary);
    font-size: 0.85rem;
    line-height: 1.75;
    margin: 0 0 4px;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.bb-dyk-fact.bb-dyk-swap {
    opacity: 0;
    transform: translateY(5px);
}

.bb-dyk-foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
}

.bb-dyk-next {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    min-height: 44px;
    padding: 6px 12px;
    margin-right: -12px;
    border: 0;
    border-radius: 12px;
    background: none;
    color: var(--primary);
    font-family: var(--font-ar);
    font-size: 0.82rem;
    font-weight: 700;
    cursor: pointer;
    transition: background-color var(--transition);
}

.bb-dyk-next:hover {
    background: rgba(234, 114, 15, 0.07);
}

.bb-dyk-count {
    color: var(--text-muted);
    font-size: 0.72rem;
    font-weight: 600;
}

/* Mobile + tablet: collapse to a FAB above the back-to-top stack */
@media (max-width: 1023px) {
    .bb-dyk {
        top: auto;
        bottom: 252px;
        left: 16px;
        transform: none;
    }

    .bb-dyk-fab {
        display: flex;
    }

    .bb-dyk-card {
        display: none;
        position: absolute;
        bottom: 52px;
        left: 0;
        width: min(86vw, 300px);
    }

    .bb-dyk.bb-dyk--open .bb-dyk-card {
        display: block;
    }
}

@media (prefers-reduced-motion: reduce) {
    .bb-dyk-fact {
        transition: none;
    }

    .bb-dyk-fact.bb-dyk-swap {
        opacity: 1;
        transform: none;
    }

    .bb-dyk-fab:hover {
        transform: none;
    }
}


/* ============================================================
   v5 IMAGE-CARD PASS: photos on text-only cards, EN feature-card
   recipe (image fills the top edge-to-edge, 16/10 band, white pill
   eyebrow at the RTL start corner, dark overlay on photo cards).
   Reuses tokens + .v4-feat / .v4-wf grammar. RTL + reduced-motion safe.
   ============================================================ */

/* ----- S7 Series + Recording: image band on top of the card ----- */
.v4-sr-card--media {
    padding: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.v4-sr-media {
    position: relative;
    aspect-ratio: 16 / 10;
    background: var(--bg-soft);
    border-bottom: 1px solid var(--border);
    overflow: hidden;
}

.v4-sr-media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.v4-sr-card--media:hover .v4-sr-media img {
    transform: scale(1.035);
}

.v4-sr-media::after {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.04) 0%, transparent 45%, rgba(6, 18, 38, 0.3) 100%);
}

/* White pill eyebrow with accent dot, RTL start corner (matches .v4-feat-badge) */
.v4-sr-badge {
    position: absolute;
    z-index: 2;
    top: 14px;
    inset-inline-start: 14px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    max-width: calc(100% - 28px);
    border: 1px solid rgba(255, 255, 255, 0.76);
    background: rgba(255, 255, 255, 0.88);
    -webkit-backdrop-filter: blur(14px);
    backdrop-filter: blur(14px);
    border-radius: 999px;
    padding: 7px 13px;
    font-size: 11.5px;
    font-weight: 700;
    color: var(--text-primary);
    box-shadow: 0 18px 46px rgba(6, 18, 38, 0.14);
    white-space: nowrap;
}

.v4-sr-badge::before {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--primary);
    flex-shrink: 0;
}

.v4-sr-body {
    padding: 30px 32px 32px;
}

/* ----- S6 Sport events: white cards become photo cards (WC treatment) ----- */
.v4-sa-event--photo {
    background: var(--ink);
    border-color: rgba(255, 255, 255, 0.12);
}

.v4-sa-event--photo:hover {
    border-color: rgba(255, 255, 255, 0.24);
}

/* Lift the photo + overlay below the content, like the WC hero card */
.v4-sa-event--photo > *:not(.v4-sa-event-bg):not(.v4-sa-event-overlay) {
    position: relative;
    z-index: 2;
}

.v4-sa-event--photo .v4-sa-event-bg {
    opacity: 0.55;
}

.v4-sa-event--photo .v4-sa-event-overlay {
    background: linear-gradient(180deg, rgba(6, 18, 38, 0.28) 0%, rgba(6, 18, 38, 0.45) 45%, rgba(6, 18, 38, 0.9) 100%);
}

/* Label pill + title sit white on top of the photo */
.v4-sa-event--photo .v4-sa-event-date {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.22);
    color: #ffffff;
    -webkit-backdrop-filter: blur(6px);
    backdrop-filter: blur(6px);
}

.v4-sa-event--photo h4 {
    color: #ffffff;
}

.v4-sa-event--photo p {
    color: rgba(255, 255, 255, 0.82);
}

/* ----- S6 UFC card: background photo behind the existing ink + glow ----- */
.v4-sa-ufc--photo .v4-sa-ufc-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.34;
}

/* Darken the photo so the white copy stays readable; sits above the image,
   below the ::before accent glow and the content */
.v4-sa-ufc--photo::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background: linear-gradient(160deg, rgba(6, 18, 38, 0.82) 0%, rgba(6, 18, 38, 0.7) 55%, rgba(6, 18, 38, 0.9) 100%);
}

/* Keep the accent glow + the copy above the darkening wash */
.v4-sa-ufc--photo::before {
    z-index: 1;
}

.v4-sa-ufc--photo > *:not(.v4-sa-ufc-bg) {
    z-index: 2;
}

/* ----- S16 Promise: wide hero banner above the 4 cards ----- */
.promise-hero {
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    box-shadow: var(--shadow);
    aspect-ratio: 21 / 7;
    margin-bottom: 24px;
    background: var(--bg-soft);
}

.promise-hero img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.promise-hero-overlay {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(90deg, rgba(6, 18, 38, 0.55) 0%, rgba(6, 18, 38, 0.18) 38%, transparent 70%);
}

.promise-hero-pill {
    position: absolute;
    z-index: 2;
    top: 18px;
    inset-inline-start: 18px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(255, 255, 255, 0.7);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    box-shadow: 0 18px 46px rgba(6, 18, 38, 0.18);
    font-size: 12px;
    font-weight: 700;
    color: var(--text-primary);
}

.promise-hero-pill::before {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--primary);
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .v4-sr-body {
        padding: 24px 22px 26px;
    }

    .promise-hero {
        aspect-ratio: 16 / 9;
    }
}

@media (prefers-reduced-motion: reduce) {
    .v4-sr-card--media:hover .v4-sr-media img {
        transform: none;
    }
}

/* ==========================================================================
   HOME-STYLE HERO (RTL) — visual + stepper + inline trial form
   ========================================================================== */
.hh-hero{ display:flex; flex-direction:column; min-height:100svh; background:var(--ink); font-family:var(--font-ar); }
@media(min-width:1024px){ .hh-hero{ flex-direction:row; align-items:stretch; } }
.hh-visual{ position:relative; flex:1; min-height:62vh; display:flex; align-items:center; overflow:hidden; }
@media(min-width:1024px){ .hh-visual{ min-height:100svh; } }
.hh-visual-img{ position:absolute; inset:0; width:100%; height:100%; object-fit:cover; }
.hh-visual-overlay{ position:absolute; inset:0; background:linear-gradient(180deg, rgba(6,18,38,.5) 0%, rgba(6,18,38,.82) 100%); }
.hh-visual-inner{ position:relative; z-index:1; width:100%; max-width:640px; margin-inline-start:auto; padding:104px 22px 40px; color:#fff; }
@media(min-width:1024px){ .hh-visual-inner{ padding:128px 56px 56px; } }
.hh-livepill{ display:inline-flex; align-items:center; gap:8px; padding:6px 14px; border-radius:999px; background:rgba(234,114,15,.2); border:1px solid rgba(234,114,15,.55); color:#fff; font-size:.74rem; font-weight:800; letter-spacing:.03em; }
.hh-hero h1.hh-h1{ margin:18px 0 0; font-weight:800; line-height:1.05; font-size:clamp(2.6rem,7vw,5rem); color:#fff; letter-spacing:-.01em; }
.hh-h1-em{ color:var(--primary); }
.hh-sub{ margin-top:16px; max-width:34rem; font-size:1.05rem; line-height:1.75; color:rgba(255,255,255,.82); }
.hh-steps{ margin:26px 0 0; padding:0; list-style:none; display:flex; flex-direction:column; gap:10px; max-width:30rem; }
.hh-step{ display:flex; align-items:center; gap:14px; padding:13px 18px; border-radius:16px; background:rgba(255,255,255,.06); border:1px solid rgba(255,255,255,.12); color:rgba(255,255,255,.78); font-weight:700; font-size:1rem; }
.hh-step-n{ display:grid; place-items:center; width:30px; height:30px; flex-shrink:0; border-radius:999px; background:rgba(255,255,255,.12); color:#fff; font-weight:800; font-size:.9rem; }
.hh-step.is-active{ background:var(--primary); border-color:var(--primary); color:#fff; box-shadow:0 16px 34px -18px rgba(234,114,15,.8); }
.hh-step.is-active .hh-step-n{ background:rgba(255,255,255,.25); }
.hh-trust{ margin-top:22px; font-size:.85rem; color:rgba(255,255,255,.72); }
.hh-trust strong{ color:#fff; }
.hh-panel{ flex:1; max-width:560px; background:#0a1830; color:#fff; padding:40px 22px; display:flex; flex-direction:column; }
@media(min-width:1024px){ .hh-panel{ padding:120px 48px 56px; justify-content:center; } }
.hh-panel-tag{ color:var(--primary); font-size:.78rem; font-weight:800; letter-spacing:.12em; }
.hh-panel-title{ margin:10px 0 0; font-size:clamp(1.8rem,4vw,2.6rem); font-weight:800; color:#fff; }
.hh-panel-sub{ margin-top:10px; color:rgba(255,255,255,.72); font-size:.98rem; line-height:1.6; }
.hh-wa-btn{ margin-top:24px; display:inline-flex; align-items:center; justify-content:center; gap:10px; min-height:58px; border-radius:16px; background:#fff; color:#061226; font-weight:800; font-size:1.05rem; transition:transform var(--transition); box-shadow:0 18px 40px -20px rgba(0,0,0,.5); }
.hh-wa-btn svg{ color:var(--whatsapp); }
.hh-wa-btn:hover{ transform:translateY(-2px); color:#061226; }
.hh-or{ display:flex; align-items:center; gap:14px; margin:22px 0; color:rgba(255,255,255,.5); font-size:.72rem; font-weight:700; letter-spacing:.08em; }
.hh-or::before,.hh-or::after{ content:""; flex:1; height:1px; background:rgba(255,255,255,.16); }
.hh-form{ display:flex; flex-direction:column; gap:14px; }
.hh-field{ display:flex; flex-direction:column; gap:6px; }
.hh-field label{ font-size:.82rem; font-weight:700; color:rgba(255,255,255,.85); }
.hh-opt{ color:rgba(255,255,255,.5); font-weight:600; }
.hh-field input{ min-height:52px; border-radius:12px; padding:0 16px; background:rgba(255,255,255,.06); border:1px solid rgba(255,255,255,.18); color:#fff; font-size:1rem; font-family:inherit; }
.hh-field input::placeholder{ color:rgba(255,255,255,.4); }
.hh-field input:focus{ outline:none; border-color:var(--primary); background:rgba(255,255,255,.1); }
.hh-submit{ margin-top:6px; min-height:56px; border:none; border-radius:14px; background:var(--primary); color:#fff; font-weight:800; font-size:1.05rem; cursor:pointer; transition:background var(--transition),transform var(--transition); box-shadow:0 18px 40px -18px rgba(234,114,15,.7); }
.hh-submit:hover{ background:var(--primary-dark); transform:translateY(-2px); }
.hh-form-note{ margin-top:4px; text-align:center; font-size:.78rem; color:rgba(255,255,255,.55); }
.hh-setup-link{ margin-top:18px; text-align:center; color:rgba(255,255,255,.7); font-size:.9rem; font-weight:700; text-decoration:underline; }
.hh-setup-link:hover{ color:#fff; }