/* ==========================================================================
   IPTV FRANCE OFFICIEL — DESIGN SYSTEM & STYLESHEET
   ========================================================================== */

:root {
    /* Color Palette - Dark Mode (Default) */
    --bg-primary: #070913;
    --bg-secondary: #0d1122;
    --bg-card: rgba(18, 24, 43, 0.75);
    --bg-card-hover: rgba(28, 36, 62, 0.85);
    --bg-glass: rgba(13, 17, 34, 0.75);
    --border-color: rgba(255, 255, 255, 0.09);
    --border-glow: rgba(99, 102, 241, 0.4);

    --text-main: #f8fafc;
    --text-muted: #94a3b8;
    --text-dim: #64748b;

    --primary: #6366f1;
    --primary-hover: #4f46e5;
    --primary-gradient: linear-gradient(135deg, #6366f1 0%, #a855f7 50%, #ec4899 100%);
    --accent-blue: #0ea5e9;
    --accent-gold: #f59e0b;
    --accent-green: #10b981;
    --accent-red: #ef4444;

    --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.2);
    --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.35);
    --shadow-lg: 0 20px 50px rgba(0, 0, 0, 0.5);
    --shadow-glow: 0 0 35px rgba(99, 102, 241, 0.35);
    --shadow-gold: 0 0 35px rgba(245, 158, 11, 0.25);

    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 22px;
    --radius-full: 9999px;

    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    --transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-theme="light"] {
    --bg-primary: #f8fafc;
    --bg-secondary: #f1f5f9;
    --bg-card: rgba(255, 255, 255, 0.85);
    --bg-card-hover: #ffffff;
    --bg-glass: rgba(255, 255, 255, 0.85);
    --border-color: rgba(0, 0, 0, 0.08);
    --border-glow: rgba(99, 102, 241, 0.3);

    --text-main: #0f172a;
    --text-muted: #475569;
    --text-dim: #64748b;

    --shadow-sm: 0 4px 12px rgba(15, 23, 42, 0.05);
    --shadow-md: 0 10px 25px rgba(15, 23, 42, 0.08);
    --shadow-lg: 0 20px 40px rgba(15, 23, 42, 0.12);
    --shadow-glow: 0 8px 30px rgba(99, 102, 241, 0.18);
}

/* Base Resets */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-primary);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    -webkit-font-smoothing: antialiased;
}

/* Typography Helpers */
h1, h2, h3, h4, h5 {
    font-family: var(--font-heading);
    color: var(--text-main);
    line-height: 1.25;
    font-weight: 700;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img, svg {
    display: block;
    max-width: 100%;
}

.container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
}

.text-center {
    text-align: center;
}

/* Ambient Ambient Glows */
.ambient-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    pointer-events: none;
    z-index: 0;
    opacity: 0.45;
}

.glow-1 {
    top: 5%;
    left: 20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, #4f46e5 0%, transparent 70%);
}

.glow-2 {
    top: 25%;
    right: 5%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, #a855f7 0%, transparent 70%);
}

.glow-3 {
    top: 55%;
    left: 10%;
    width: 550px;
    height: 550px;
    background: radial-gradient(circle, #0ea5e9 0%, transparent 70%);
}

/* Buttons System */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 22px;
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: var(--radius-md);
    cursor: pointer;
    border: none;
    outline: none;
    transition: var(--transition);
    white-space: nowrap;
    line-height: 1.2;
}

.btn svg {
    width: 18px !important;
    height: 18px !important;
    max-width: 18px !important;
    max-height: 18px !important;
    flex-shrink: 0;
    display: inline-block;
    vertical-align: middle;
    transition: transform 0.2s ease;
}

.btn:hover svg {
    transform: translateX(3px);
}

.btn-primary {
    background: var(--primary-gradient);
    color: #ffffff;
    box-shadow: 0 4px 16px rgba(99, 102, 241, 0.35);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(99, 102, 241, 0.45);
    color: #ffffff;
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.08);
    color: var(--text-main);
    border: 1px solid var(--border-color);
    backdrop-filter: blur(10px);
}

[data-theme="light"] .btn-secondary {
    background: rgba(0, 0, 0, 0.05);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
}

.btn-whatsapp {
    background: #25d366;
    color: #ffffff;
    font-weight: 700;
}

.btn-whatsapp:hover {
    background: #20ba5a;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.35);
    color: #ffffff;
}

.btn-block {
    width: 100%;
}

.btn-lg {
    padding: 12px 24px;
    font-size: 0.95rem;
    min-height: 44px;
}

.btn-sm {
    padding: 6px 14px;
    font-size: 0.82rem;
}

.btn-arrow-icon {
    width: 18px !important;
    height: 18px !important;
    max-width: 18px !important;
    max-height: 18px !important;
    flex-shrink: 0;
    transition: transform 0.2s ease;
}

.btn-trial-badge {
    background: rgba(16, 185, 129, 0.12);
    color: #34d399;
    border: 1px solid rgba(16, 185, 129, 0.35);
    padding: 7px 14px;
    font-size: 0.82rem;
    font-weight: 700;
    border-radius: var(--radius-full);
    white-space: nowrap;
    flex-shrink: 0;
}

.btn-trial-badge:hover {
    background: #10b981;
    color: #ffffff;
    border-color: #10b981;
    transform: translateY(-2px);
    box-shadow: 0 0 18px rgba(16, 185, 129, 0.45);
}

.btn-trial {
    background: rgba(16, 185, 129, 0.14);
    color: #34d399;
    border: 1.5px solid rgba(16, 185, 129, 0.45);
    font-weight: 700;
}

.btn-trial:hover {
    background: #10b981;
    color: #ffffff;
    border-color: #10b981;
    transform: translateY(-2px);
    box-shadow: 0 0 24px rgba(16, 185, 129, 0.5);
}

.btn-trial-hero {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: #ffffff;
    font-weight: 700;
    border-radius: var(--radius-md);
    padding: 11px 22px;
    font-size: 0.92rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 16px rgba(16, 185, 129, 0.35);
}

.btn-trial-hero:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(16, 185, 129, 0.45);
    color: #ffffff;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #10b981;
    display: inline-block;
    box-shadow: 0 0 8px #10b981;
    animation: pulseGlow 2s infinite ease-in-out;
}

@keyframes pulseGlow {
    0%, 100% { transform: scale(1); opacity: 1; box-shadow: 0 0 6px #10b981; }
    50% { transform: scale(1.4); opacity: 0.7; box-shadow: 0 0 14px #10b981; }
}

.channel-footer-btns {
    display: flex;
    gap: 16px;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
    flex-wrap: wrap;
}

.btn:hover .btn-arrow-icon {
    transform: translateX(4px);
}

.pulse-shadow {
    animation: buttonPulse 3s infinite;
}

@keyframes buttonPulse {
    0%, 100% { box-shadow: 0 8px 25px rgba(99, 102, 241, 0.4); }
    50% { box-shadow: 0 8px 38px rgba(168, 85, 247, 0.65); }
}

/* Badges & Pills */
.section-badge {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(99, 102, 241, 0.12);
    border: 1px solid rgba(99, 102, 241, 0.3);
    border-radius: var(--radius-full);
    color: #818cf8;
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.gradient-text {
    background: linear-gradient(135deg, #818cf8 0%, #c084fc 50%, #f472b6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* ==========================================================================
   PROMO COUNTDOWN BAR
   ========================================================================== */
.promo-bar {
    background: linear-gradient(90deg, #1e1b4b 0%, #312e81 50%, #4c1d95 100%);
    color: #ffffff;
    font-size: 0.88rem;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 1001;
    transition: transform 0.3s ease;
}

.promo-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    position: relative;
    flex-wrap: wrap;
}

.promo-content {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
}

.promo-badge {
    background: #ef4444;
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: 800;
    padding: 3px 8px;
    border-radius: var(--radius-full);
}

.countdown {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: monospace;
    font-weight: 700;
}

.cd-box {
    background: rgba(0, 0, 0, 0.35);
    padding: 3px 6px;
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.promo-btn {
    font-weight: 700;
    color: #fde047;
    text-decoration: underline;
    font-size: 0.88rem;
}

.promo-btn:hover {
    color: #ffffff;
}

.promo-close {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.3rem;
    cursor: pointer;
    position: absolute;
    right: 24px;
    top: 50%;
    transform: translateY(-50%);
    padding: 0 4px;
}

/* ==========================================================================
   HEADER & NAVIGATION
   ========================================================================== */
.site-header {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    background: var(--bg-glass);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
    transition: var(--transition);
}

.site-header .container {
    max-width: 1480px;
    width: 100%;
    margin: 0 auto;
    padding: 0 clamp(16px, 2.5vw, 32px);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    height: 70px;
}

/* Logo */
.brand-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    flex-shrink: 0;
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: var(--primary-gradient);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    box-shadow: 0 4px 14px rgba(99, 102, 241, 0.35);
    flex-shrink: 0;
}

.logo-icon svg {
    width: 20px;
    height: 20px;
    stroke: #ffffff;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-title {
    font-family: var(--font-heading);
    font-size: 1.12rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    line-height: 1;
    white-space: nowrap;
}

.logo-sub {
    font-size: 0.72rem;
    font-weight: 700;
    color: #818cf8;
    letter-spacing: 2px;
    white-space: nowrap;
}

/* Nav Links */
.nav-desktop {
    display: flex;
    align-items: center;
    flex-shrink: 1;
    min-width: 0;
}

.nav-desktop .nav-list {
    display: flex;
    align-items: center;
    gap: clamp(8px, 1.15vw, 18px);
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-link {
    font-size: 0.86rem;
    font-weight: 500;
    color: var(--text-muted);
    position: relative;
    padding: 6px 2px;
    white-space: nowrap !important;
    text-decoration: none;
    display: inline-block;
    line-height: 1.2;
    transition: color 0.2s ease;
}

.nav-link:hover, .nav-link.active {
    color: var(--text-main);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.2s ease;
    border-radius: 2px;
}

.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.theme-toggle {
    width: 42px;
    height: 42px;
    border-radius: var(--radius-full);
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    color: var(--text-main);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

.theme-toggle:hover {
    border-color: var(--primary);
    transform: rotate(15deg);
}

.theme-toggle svg {
    width: 20px;
    height: 20px;
}

[data-theme="dark"] .icon-sun { display: block; }
[data-theme="dark"] .icon-moon { display: none; }
[data-theme="light"] .icon-sun { display: none; }
[data-theme="light"] .icon-moon { display: block; }

.btn-header {
    padding: 8px 16px;
    font-size: 0.84rem;
    white-space: nowrap;
    flex-shrink: 0;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 42px;
    height: 42px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    cursor: pointer;
    padding: 10px;
}

.menu-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--text-main);
    border-radius: 2px;
    transition: var(--transition);
}

/* Mobile Drawer */
.mobile-drawer {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--bg-secondary);
    border-bottom: 1px solid var(--border-color);
    padding: 24px;
    box-shadow: var(--shadow-lg);
    flex-direction: column;
    gap: 20px;
}

.mobile-drawer.open {
    display: flex;
}

.mobile-nav-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.mobile-nav-link {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-main);
    display: block;
    padding: 6px 0;
}

.mobile-drawer-cta {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 10px;
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero-section {
    padding: 70px 0 80px;
    position: relative;
    z-index: 1;
}

.hero-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.hero-content {
    max-width: 880px;
    margin: 0 auto;
}

.hero-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    border-radius: var(--radius-full);
    font-size: 0.88rem;
    margin-bottom: 24px;
    transition: var(--transition);
}

.hero-pill:hover {
    transform: translateY(-2px);
    background: rgba(239, 68, 68, 0.18);
}

.pill-badge {
    background: #ef4444;
    color: #fff;
    font-weight: 800;
    font-size: 0.72rem;
    padding: 2px 7px;
    border-radius: var(--radius-full);
    text-transform: uppercase;
}

.pill-price {
    font-weight: 800;
    color: #fde047;
}

.hero-title {
    font-size: 3.2rem;
    font-weight: 900;
    letter-spacing: -1.2px;
    line-height: 1.15;
    margin-bottom: 20px;
}

.hero-subtitle-block {
    display: block;
    font-size: 1.45rem;
    font-weight: 500;
    color: var(--text-muted);
    letter-spacing: normal;
    margin-top: 14px;
    line-height: 1.35;
}

.hero-description {
    font-size: 1.12rem;
    color: var(--text-muted);
    margin: 0 auto 36px;
    max-width: 760px;
}

.hero-cta-group {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

/* Metrics Row */
.hero-metrics {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    margin-bottom: 36px;
}

.metric-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    backdrop-filter: blur(12px);
    padding: 22px 16px;
    border-radius: var(--radius-md);
    transition: var(--transition);
}

.metric-card:hover {
    transform: translateY(-4px);
    border-color: var(--border-glow);
    box-shadow: var(--shadow-glow);
}

.metric-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.9rem;
    font-weight: 800;
    color: var(--text-main);
    line-height: 1.1;
    margin-bottom: 4px;
    background: linear-gradient(135deg, #ffffff 0%, #cbd5e1 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.metric-label {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Trust Line */
.hero-trust {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.trust-pill {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.88rem;
    color: var(--text-muted);
}

.trust-pill svg {
    width: 18px;
    height: 18px;
}

/* ==========================================================================
   TOP TRENDING VOD (FILMS & SÉRIES) SECTION
   ========================================================================== */
.vod-trending-section {
    padding: 75px 0 85px;
    background: radial-gradient(circle at 15% 20%, rgba(99, 102, 241, 0.08) 0%, transparent 45%),
                radial-gradient(circle at 85% 75%, rgba(236, 72, 153, 0.06) 0%, transparent 45%),
                linear-gradient(180deg, rgba(7, 9, 19, 0.6) 0%, rgba(13, 17, 34, 0.8) 50%, rgba(7, 9, 19, 0.6) 100%);
    position: relative;
    border-bottom: 1px solid var(--border-color);
}

.vod-pulse-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.78rem;
    font-weight: 800;
    color: #f59e0b;
    background: rgba(245, 158, 11, 0.12);
    padding: 6px 16px;
    border-radius: var(--radius-full);
    margin-bottom: 16px;
    border: 1px solid rgba(245, 158, 11, 0.35);
    letter-spacing: 0.8px;
}

.vod-badge-icon {
    font-size: 1rem;
    animation: iconBounce 2s infinite ease-in-out;
}

@keyframes iconBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-2px); }
}

/* VOD Filter Bar */
.vod-filter-bar {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 38px;
}

.vod-tab-btn {
    background: var(--bg-card);
    color: var(--text-dim);
    border: 1px solid var(--border-color);
    padding: 10px 22px;
    border-radius: var(--radius-full);
    font-size: 0.9rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.vod-tab-btn:hover {
    background: rgba(255, 255, 255, 0.06);
    color: var(--text-heading);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.vod-tab-btn.active {
    background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
    color: #ffffff;
    border-color: transparent;
    box-shadow: 0 4px 20px rgba(99, 102, 241, 0.4);
    transform: translateY(-2px);
}

/* VOD Spotlight Banner */
.vod-spotlight-banner {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    align-items: center;
    gap: 40px;
    background: linear-gradient(135deg, rgba(20, 24, 45, 0.85) 0%, rgba(15, 23, 42, 0.95) 50%, rgba(30, 15, 45, 0.8) 100%);
    border: 1px solid rgba(139, 92, 246, 0.25);
    border-radius: 28px;
    padding: 38px 44px;
    margin-bottom: 46px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.45), 0 0 40px rgba(99, 102, 241, 0.12);
}

.vod-spotlight-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 380px;
    height: 380px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.22) 0%, transparent 70%);
    filter: blur(50px);
    pointer-events: none;
}

.spotlight-tags {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 16px;
}

.tag-platform {
    font-size: 0.72rem;
    font-weight: 900;
    padding: 4px 10px;
    border-radius: 6px;
    letter-spacing: 0.6px;
    text-transform: uppercase;
}

.tag-platform.canal { background: #000000; color: #ffffff; border: 1px solid #d4af37; }
.tag-platform.netflix { background: #e50914; color: #ffffff; }
.tag-platform.max { background: #5822b4; color: #ffffff; }
.tag-platform.disney { background: #113ccf; color: #ffffff; }
.tag-platform.prime { background: #00a8e1; color: #ffffff; }

.tag-format {
    font-size: 0.72rem;
    font-weight: 800;
    background: rgba(16, 185, 129, 0.15);
    color: #10b981;
    border: 1px solid rgba(16, 185, 129, 0.35);
    padding: 4px 10px;
    border-radius: 6px;
    letter-spacing: 0.5px;
}

.tag-imdb {
    font-size: 0.72rem;
    font-weight: 800;
    background: rgba(245, 158, 11, 0.15);
    color: #f59e0b;
    border: 1px solid rgba(245, 158, 11, 0.35);
    padding: 4px 10px;
    border-radius: 6px;
}

.spotlight-title {
    font-size: 2.2rem;
    font-family: var(--font-heading);
    font-weight: 900;
    color: #ffffff;
    line-height: 1.2;
    margin-bottom: 14px;
    letter-spacing: -0.5px;
}

.spotlight-synopsis {
    font-size: 0.95rem;
    color: var(--text-dim);
    line-height: 1.6;
    margin-bottom: 22px;
    max-width: 580px;
}

.spotlight-meta-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 26px;
}

.spotlight-meta-pills .pill {
    font-size: 0.8rem;
    font-weight: 600;
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-main);
    padding: 5px 12px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.spotlight-meta-pills .pill.highlight {
    background: rgba(59, 130, 246, 0.14);
    color: #60a5fa;
    border-color: rgba(59, 130, 246, 0.35);
    font-weight: 700;
}

.spotlight-actions {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

.btn-spotlight-play {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    box-shadow: 0 6px 24px rgba(37, 99, 235, 0.4);
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 26px;
}

.btn-spotlight-play:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 32px rgba(37, 99, 235, 0.6);
}

.play-svg {
    width: 18px;
    height: 18px;
}

.spotlight-poster-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.spotlight-poster-img {
    width: 260px;
    height: 390px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.6), 0 0 35px rgba(139, 92, 246, 0.3);
    border: 1.5px solid rgba(255, 255, 255, 0.15);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.spotlight-poster-wrap:hover .spotlight-poster-img {
    transform: scale(1.03) rotate(-1deg);
}

/* VOD Posters Grid */
.vod-posters-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 22px;
    margin-bottom: 48px;
}

.vod-card {
    display: flex;
    flex-direction: column;
    background: var(--bg-card);
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), 
                box-shadow 0.35s cubic-bezier(0.16, 1, 0.3, 1),
                border-color 0.35s ease;
}

.vod-card:hover {
    transform: translateY(-8px);
    border-color: rgba(139, 92, 246, 0.5);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.5), 0 0 24px rgba(99, 102, 241, 0.2);
}

.vod-poster-container {
    position: relative;
    width: 100%;
    aspect-ratio: 2 / 3;
    overflow: hidden;
    background: #090d1a;
}

.vod-poster-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.vod-card:hover .vod-poster-img {
    transform: scale(1.07);
}

/* Badges on Posters */
.vod-badge-top-left {
    position: absolute;
    top: 10px;
    left: 10px;
    display: flex;
    flex-direction: column;
    gap: 5px;
    z-index: 2;
}

.badge-res {
    font-size: 0.65rem;
    font-weight: 900;
    color: #ffffff;
    background: rgba(16, 185, 129, 0.9);
    padding: 3px 7px;
    border-radius: 5px;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.badge-rating {
    font-size: 0.66rem;
    font-weight: 800;
    color: #ffffff;
    background: rgba(0, 0, 0, 0.75);
    border: 1px solid rgba(245, 158, 11, 0.6);
    padding: 2px 6px;
    border-radius: 5px;
    backdrop-filter: blur(4px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.vod-badge-top-right {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 2;
}

.badge-platform {
    font-size: 0.65rem;
    font-weight: 900;
    padding: 3px 8px;
    border-radius: 5px;
    letter-spacing: 0.4px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
    text-transform: uppercase;
}

.badge-platform.canal { background: #000000; color: #ffffff; border: 1px solid #d4af37; }
.badge-platform.netflix { background: #e50914; color: #ffffff; }
.badge-platform.max { background: #5822b4; color: #ffffff; }
.badge-platform.disney { background: #113ccf; color: #ffffff; }
.badge-platform.prime { background: #00a8e1; color: #ffffff; }

/* Poster Hover Overlay */
.vod-poster-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(7, 9, 19, 0.3) 0%, rgba(10, 14, 30, 0.94) 75%, rgba(7, 9, 19, 0.98) 100%);
    backdrop-filter: blur(6px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    padding: 16px 14px;
    text-align: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s ease, visibility 0.35s ease;
    z-index: 3;
}

.vod-card:hover .vod-poster-overlay {
    opacity: 1;
    visibility: visible;
}

.overlay-play-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(59, 130, 246, 0.9);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
    box-shadow: 0 4px 18px rgba(59, 130, 246, 0.6);
    transform: scale(0.85);
    transition: transform 0.25s ease;
}

.overlay-play-icon svg {
    width: 20px;
    height: 20px;
    margin-left: 2px;
}

.vod-card:hover .overlay-play-icon {
    transform: scale(1);
}

.overlay-desc {
    font-size: 0.76rem;
    color: #e2e8f0;
    line-height: 1.35;
    margin-bottom: 8px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.overlay-langs {
    font-size: 0.68rem;
    font-weight: 700;
    color: #60a5fa;
    margin-bottom: 12px;
    letter-spacing: 0.3px;
}

.btn-card-watch {
    width: 100%;
    padding: 9px 12px;
    background: linear-flex;
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    color: #ffffff;
    border-radius: var(--radius-sm);
    font-size: 0.78rem;
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    text-decoration: none;
    box-shadow: 0 4px 14px rgba(37, 99, 235, 0.4);
    transition: var(--transition);
}

.btn-card-watch svg {
    width: 14px;
    height: 14px;
    transition: transform 0.2s ease;
}

.btn-card-watch:hover {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(37, 99, 235, 0.6);
}

.btn-card-watch:hover svg {
    transform: translateX(3px);
}

/* Card Info */
.vod-card-info {
    padding: 14px 14px 16px;
    background: var(--bg-card);
}

.vod-title {
    font-size: 0.94rem;
    font-family: var(--font-heading);
    font-weight: 800;
    color: var(--text-heading);
    margin-bottom: 5px;
    line-height: 1.25;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.vod-details {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.75rem;
    color: var(--text-dim);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.vod-dot {
    opacity: 0.5;
}

.vod-audio {
    color: #10b981;
    font-weight: 700;
}

/* VOD Guarantee Bar */
.vod-guarantee-bar {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    border-radius: 18px;
    padding: 22px 28px;
}

.vg-item {
    display: flex;
    align-items: center;
    gap: 14px;
}

.vg-icon {
    font-size: 1.6rem;
    flex-shrink: 0;
}

.vg-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.vg-text strong {
    font-size: 0.92rem;
    color: var(--text-heading);
    font-weight: 800;
    line-height: 1.2;
}

.vg-text span {
    font-size: 0.78rem;
    color: var(--text-dim);
    line-height: 1.3;
}

/* Responsive VOD Section */
@media (max-width: 1200px) {
    .vod-posters-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 992px) {
    .vod-spotlight-banner {
        grid-template-columns: 1fr;
        padding: 30px;
        text-align: center;
    }
    .spotlight-tags, .spotlight-actions, .spotlight-meta-pills {
        justify-content: center;
    }
    .spotlight-synopsis {
        margin: 0 auto 20px;
    }
    .spotlight-poster-wrap {
        order: -1;
    }
    .spotlight-poster-img {
        width: 200px;
        height: 300px;
    }
    .vod-posters-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 18px;
    }
    .vod-guarantee-bar {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
}

@media (max-width: 640px) {
    .vod-posters-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }
    .vod-spotlight-banner {
        padding: 24px 18px;
    }
    .spotlight-title {
        font-size: 1.6rem;
    }
    .vod-guarantee-bar {
        grid-template-columns: 1fr;
        padding: 18px 20px;
    }
}

/* ==========================================================================
   PRICING SECTIONS
   ========================================================================== */
.section {
    padding: 90px 0;
    position: relative;
    z-index: 1;
}

.section-header {
    margin-bottom: 55px;
}

.section-title {
    font-size: 2.3rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    margin-bottom: 12px;
}

.section-subtitle {
    font-size: 1.05rem;
    color: var(--text-muted);
    max-width: 680px;
    margin: 0 auto;
}

/* Pricing Grid */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
    margin-bottom: 40px;
}

.pricing-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    backdrop-filter: blur(16px);
    border-radius: var(--radius-lg);
    padding: 30px 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    transition: var(--transition);
}

.pricing-card:hover {
    transform: translateY(-6px);
    border-color: var(--border-glow);
    box-shadow: var(--shadow-md);
}

/* Popular Ribbon */
.popular-ribbon {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #6366f1 0%, #a855f7 100%);
    color: #ffffff;
    font-family: var(--font-heading);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 1px;
    padding: 5px 14px;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    gap: 5px;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.45);
    white-space: nowrap;
}

.popular-ribbon svg {
    width: 14px;
    height: 14px;
    fill: #fde047;
}

.best-value-ribbon {
    background: linear-gradient(135deg, #ef4444 0%, #f59e0b 100%);
    box-shadow: 0 4px 15px rgba(239, 68, 68, 0.45);
}

/* Featured / Best Value Card Borders */
.pricing-card.featured {
    border: 2px solid #6366f1;
    background: linear-gradient(180deg, rgba(99, 102, 241, 0.12) 0%, rgba(18, 24, 43, 0.85) 100%);
    box-shadow: var(--shadow-glow);
}

.pricing-card.best-value {
    border: 2px solid #f59e0b;
    background: linear-gradient(180deg, rgba(245, 158, 11, 0.09) 0%, rgba(18, 24, 43, 0.85) 100%);
}

.plan-badge-mini {
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--text-dim);
    text-transform: uppercase;
    margin-bottom: 6px;
}

.plan-badge-mini.highlight {
    color: #818cf8;
}

.plan-badge-mini.gold {
    color: #fbbf24;
}

.plan-name {
    font-size: 1.35rem;
    font-weight: 800;
    margin-bottom: 6px;
}

.bonus-tag {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 700;
    color: #10b981;
    background: rgba(16, 185, 129, 0.12);
    padding: 2px 8px;
    border-radius: var(--radius-sm);
    margin-top: 4px;
}

.bonus-tag.gold {
    color: #f59e0b;
    background: rgba(245, 158, 11, 0.15);
}

.plan-duration-info {
    font-size: 0.82rem;
    color: var(--text-muted);
    margin-bottom: 18px;
}

/* Pricing Display */
.plan-price-wrap {
    display: flex;
    align-items: baseline;
    gap: 4px;
    margin-bottom: 4px;
}

.price-currency {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-main);
}

.price-amount {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 900;
    color: var(--text-main);
    line-height: 1;
}

.price-period {
    font-size: 0.95rem;
    color: var(--text-muted);
}

.price-monthly-badge {
    display: inline-block;
    font-size: 0.82rem;
    font-weight: 700;
    color: #38bdf8;
    background: rgba(56, 189, 248, 0.1);
    padding: 3px 10px;
    border-radius: var(--radius-full);
    margin-bottom: 22px;
}

.price-monthly-badge.highlight {
    color: #a855f7;
    background: rgba(168, 85, 247, 0.12);
}

.price-monthly-badge.best-val {
    color: #fbbf24;
    background: rgba(251, 191, 36, 0.12);
}

/* Feature List */
.plan-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 20px 0 26px;
    font-size: 0.88rem;
    color: var(--text-muted);
}

.plan-features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    line-height: 1.4;
}

.check-icon {
    color: #10b981;
    font-weight: 900;
    font-size: 0.95rem;
    flex-shrink: 0;
}

.card-guarantee {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    color: var(--text-dim);
    margin-bottom: 18px;
}

.card-guarantee svg {
    width: 16px;
    height: 16px;
    stroke: #10b981;
}

.btn-plan-select {
    width: 100%;
    padding: 13px 20px;
    font-size: 0.92rem;
    background: rgba(255, 255, 255, 0.08);
    color: var(--text-main);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-full);
}

.btn-plan-select:hover {
    background: var(--primary);
    color: #ffffff;
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(99, 102, 241, 0.35);
}

.pricing-card.featured .btn-plan-select {
    background: var(--primary-gradient);
    color: #ffffff;
    border: none;
    box-shadow: 0 6px 22px rgba(99, 102, 241, 0.4);
}

/* Multi-Screen Teaser Banner */
.multi-screen-cta-banner {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 24px 34px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
    backdrop-filter: blur(12px);
}

.ms-content {
    display: flex;
    align-items: center;
    gap: 20px;
}

.ms-icon {
    width: 52px;
    height: 52px;
    background: rgba(99, 102, 241, 0.15);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #818cf8;
    flex-shrink: 0;
}

.ms-icon svg {
    width: 26px;
    height: 26px;
}

.ms-content h4 {
    font-size: 1.15rem;
    margin-bottom: 2px;
}

.ms-content p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* ==========================================================================
   MULTI-SCREEN SECTION
   ========================================================================== */
.screen-switch-container {
    display: flex;
    justify-content: center;
    margin-bottom: 45px;
}

.screen-tabs {
    display: inline-flex;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 6px;
    border-radius: var(--radius-full);
    gap: 8px;
}

.screen-tab-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 26px;
    background: transparent;
    border: none;
    color: var(--text-muted);
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 700;
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: var(--transition);
}

.screen-tab-btn svg {
    width: 20px;
    height: 20px;
}

.screen-tab-btn.active {
    background: var(--primary-gradient);
    color: #ffffff;
    box-shadow: 0 4px 18px rgba(99, 102, 241, 0.4);
}

.multi-grid-panel {
    display: none;
    animation: fadeIn 0.3s ease;
}

.multi-grid-panel.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ==========================================================================
   CHANNEL EXPLORER SECTION
   ========================================================================== */
.channel-controls {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
    margin-bottom: 40px;
}

.channel-search-bar {
    width: 100%;
    max-width: 650px;
    position: relative;
}

.channel-search-bar svg {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    color: var(--text-dim);
}

.channel-search-bar input {
    width: 100%;
    padding: 15px 20px 15px 54px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-full);
    color: var(--text-main);
    font-size: 0.95rem;
    outline: none;
    transition: var(--transition);
}

.channel-search-bar input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 20px rgba(99, 102, 241, 0.25);
}

.channel-category-tabs {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
}

.category-btn {
    padding: 8px 18px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    color: var(--text-muted);
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: var(--transition);
}

.category-btn:hover, .category-btn.active {
    background: var(--primary);
    color: #ffffff;
    border-color: var(--primary);
}

.channels-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.channel-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 0;
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
    transition: var(--transition);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.channel-card:hover {
    transform: translateY(-6px);
    border-color: var(--border-glow);
    box-shadow: 0 12px 32px rgba(59, 130, 246, 0.22);
}

.channel-card-thumb {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: #090d16;
}

.channel-card-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), filter 0.5s ease;
}

.channel-card:hover .channel-card-thumb img {
    transform: scale(1.08);
    filter: brightness(1.08) saturate(1.05);
}

.channel-thumb-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10, 15, 29, 0.88) 0%, rgba(10, 15, 29, 0.2) 55%, rgba(0, 0, 0, 0) 100%);
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.channel-card:hover .channel-thumb-overlay {
    background: linear-gradient(to top, rgba(10, 15, 29, 0.92) 0%, rgba(10, 15, 29, 0.1) 60%, rgba(0, 0, 0, 0) 100%);
}

.channel-tag {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 0.5px;
    padding: 3px 8px;
    border-radius: 4px;
    z-index: 2;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.channel-tag.live { background: #ef4444; color: #fff; }
.channel-tag.4k { background: #8b5cf6; color: #fff; }
.channel-tag.tnt { background: #0ea5e9; color: #fff; }
.channel-tag.vod { background: #10b981; color: #fff; }

.channel-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: rgba(15, 23, 42, 0.7);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1.5px solid rgba(255, 255, 255, 0.6);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 2;
    pointer-events: none;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
}

.channel-play-btn svg {
    width: 18px;
    height: 18px;
    margin-left: 2px;
}

.channel-card:hover .channel-play-btn {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
    background: var(--primary);
    border-color: var(--primary);
    box-shadow: 0 0 24px rgba(59, 130, 246, 0.7);
}

.channel-card-body {
    padding: 16px 18px 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.channel-logo-box {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 0.75rem;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    padding: 4px 8px;
    border-radius: 4px;
    display: inline-block;
    width: fit-content;
    margin-bottom: 10px;
}

.channel-logo-box.sport { background: rgba(239, 68, 68, 0.15); color: #f87171; border: 1px solid rgba(239, 68, 68, 0.25); }
.channel-logo-box.cinema { background: rgba(139, 92, 246, 0.15); color: #c084fc; border: 1px solid rgba(139, 92, 246, 0.25); }
.channel-logo-box.france { background: rgba(14, 165, 233, 0.15); color: #38bdf8; border: 1px solid rgba(14, 165, 233, 0.25); }
.channel-logo-box.vod { background: rgba(16, 185, 129, 0.15); color: #34d399; border: 1px solid rgba(16, 185, 129, 0.25); }

.channel-name {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 6px;
    line-height: 1.35;
    color: var(--text-heading);
}

.channel-meta {
    font-size: 0.82rem;
    color: var(--text-dim);
    line-height: 1.45;
}

.channel-explorer-footer {
    max-width: 600px;
    margin: 30px auto 0;
    font-size: 0.95rem;
    color: var(--text-muted);
}

.channel-explorer-footer p {
    margin-bottom: 18px;
}

/* ==========================================================================
   COMPARISON SECTION
   ========================================================================== */
.comparison-container {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 24px;
    align-items: center;
    margin-bottom: 50px;
}

.comparison-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 34px 28px;
    backdrop-filter: blur(12px);
}

.comparison-card.our-service {
    border: 2px solid #6366f1;
    background: linear-gradient(180deg, rgba(99, 102, 241, 0.08) 0%, rgba(18, 24, 43, 0.8) 100%);
    box-shadow: var(--shadow-glow);
}

.comp-badge {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 800;
    background: #10b981;
    color: #fff;
    padding: 3px 10px;
    border-radius: var(--radius-full);
    margin-bottom: 14px;
}

.comp-badge.bad {
    background: #64748b;
}

.comp-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 24px;
    padding-bottom: 18px;
    border-bottom: 1px solid var(--border-color);
}

.comp-logo {
    width: 44px;
    height: 44px;
    background: var(--primary-gradient);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.comp-logo.bad {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-muted);
}

.comp-header h3 {
    font-size: 1.3rem;
    line-height: 1.2;
}

.comp-edition {
    font-size: 0.82rem;
    color: var(--text-muted);
}

.comp-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.comp-list li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.comp-status-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 900;
    flex-shrink: 0;
}

.comp-status-icon.yes {
    background: rgba(16, 185, 129, 0.2);
    color: #10b981;
}

.comp-status-icon.no {
    background: rgba(239, 68, 68, 0.2);
    color: #ef4444;
}

.comp-list strong {
    display: block;
    font-size: 0.95rem;
    color: var(--text-main);
    margin-bottom: 2px;
}

.comp-list p {
    font-size: 0.82rem;
    color: var(--text-muted);
    line-height: 1.4;
}

.vs-circle {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--bg-card);
    border: 2px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 900;
    color: var(--text-main);
    box-shadow: var(--shadow-md);
}

/* Stats Counter Bar */
.stats-counter-bar {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 26px 40px;
    display: flex;
    align-items: center;
    justify-content: space-around;
    gap: 20px;
    flex-wrap: wrap;
}

.stat-box {
    text-align: center;
}

.stat-value {
    display: block;
    font-family: var(--font-heading);
    font-size: 2.1rem;
    font-weight: 900;
    color: #818cf8;
}

.stat-desc {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.stat-sep {
    width: 1px;
    height: 45px;
    background: var(--border-color);
}

/* ==========================================================================
   APPLICATIONS MARQUEE & SETUP STEPS
   ========================================================================== */
.apps-ticker-wrap {
    overflow: hidden;
    position: relative;
    padding: 20px 0;
    margin-bottom: 60px;
    mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
}

.apps-track {
    display: flex;
    gap: 24px;
    width: max-content;
    animation: marquee 30s linear infinite;
}

.apps-track:hover {
    animation-play-state: paused;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.app-item {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 14px 22px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    gap: 12px;
    white-space: nowrap;
}

.app-icon-badge {
    font-size: 1.4rem;
}

.app-item span {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.95rem;
}

.app-compat-pill {
    font-size: 0.7rem;
    font-weight: 800;
    background: rgba(16, 185, 129, 0.15);
    color: #10b981;
    padding: 2px 7px;
    border-radius: var(--radius-full);
}

/* Setup Steps */
.setup-steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.step-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 34px 28px;
    position: relative;
    transition: var(--transition);
}

.step-card:hover {
    transform: translateY(-5px);
    border-color: var(--border-glow);
}

.step-number-badge {
    position: absolute;
    top: 24px;
    right: 24px;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(99, 102, 241, 0.15);
    color: #818cf8;
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-icon {
    width: 52px;
    height: 52px;
    background: var(--primary-gradient);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    margin-bottom: 20px;
}

.step-icon svg {
    width: 26px;
    height: 26px;
    stroke: #ffffff;
}

.step-card h3 {
    font-size: 1.25rem;
    margin-bottom: 10px;
}

.step-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* ==========================================================================
   REVIEWS & TESTIMONIALS
   ========================================================================== */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}

.review-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 28px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: var(--transition);
}

.review-card:hover {
    transform: translateY(-5px);
    border-color: var(--border-glow);
}

.review-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 14px;
}

.reviewer-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, #4f46e5, #06b6d4);
    color: #fff;
    font-weight: 800;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.reviewer-info {
    flex-grow: 1;
    margin-left: 12px;
}

.reviewer-info h4 {
    font-size: 1.05rem;
    margin-bottom: 2px;
}

.reviewer-location {
    font-size: 0.78rem;
    color: var(--text-dim);
}

.google-badge {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-muted);
}

.g-color {
    color: #4285f4;
    font-weight: 900;
}

.review-stars {
    color: #fbbf24;
    font-size: 1.1rem;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.review-text {
    font-size: 0.92rem;
    color: var(--text-muted);
    line-height: 1.55;
    margin-bottom: 18px;
    font-style: italic;
}

.review-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.78rem;
    border-top: 1px solid var(--border-color);
    padding-top: 14px;
}

.verified-seal {
    color: #10b981;
    font-weight: 800;
}

.review-date {
    color: var(--text-dim);
}

/* ==========================================================================
   FAQ & ASSISTANCE HUB
   ========================================================================== */
.faq-layout {
    display: grid;
    grid-template-columns: 1.6fr 1fr;
    gap: 30px;
    align-items: flex-start;
}

.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: var(--transition);
}

.faq-question {
    width: 100%;
    padding: 20px 24px;
    background: none;
    border: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-main);
    cursor: pointer;
    text-align: left;
    gap: 14px;
}

.faq-toggle-icon {
    font-size: 1.4rem;
    color: #818cf8;
    font-weight: 700;
    line-height: 1;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 24px;
    color: var(--text-muted);
    font-size: 0.92rem;
    line-height: 1.6;
}

.faq-item.active .faq-answer {
    max-height: 250px;
    padding: 0 24px 20px;
}

.faq-item.active {
    border-color: var(--border-glow);
}

/* Live Support Card */
.faq-support-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 34px 28px;
    text-align: center;
    position: sticky;
    top: 100px;
}

.support-status-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(16, 185, 129, 0.12);
    border: 1px solid rgba(16, 185, 129, 0.3);
    color: #10b981;
    font-size: 0.75rem;
    font-weight: 800;
    padding: 4px 12px;
    border-radius: var(--radius-full);
    margin-bottom: 20px;
}

.status-pulse {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #10b981;
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
    animation: pulseGlow 1.8s infinite;
}

@keyframes pulseGlow {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 8px rgba(16, 185, 129, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

.support-icon-circle {
    width: 64px;
    height: 64px;
    background: var(--primary-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    color: #fff;
    box-shadow: 0 8px 24px rgba(99, 102, 241, 0.35);
}

.support-icon-circle svg {
    width: 32px;
    height: 32px;
}

.faq-support-card h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.faq-support-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 24px;
}

.support-stats-mini {
    display: flex;
    justify-content: space-around;
    padding: 16px 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 24px;
}

.support-stats-mini strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--text-main);
}

.support-stats-mini span {
    font-size: 0.78rem;
    color: var(--text-dim);
}

.support-footnote {
    font-size: 0.78rem;
    color: var(--text-dim);
    margin-top: 14px;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
    padding: 70px 0 30px;
}

.footer-top-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 40px;
    margin-bottom: 50px;
}

.footer-logo {
    margin-bottom: 16px;
}

.footer-bio {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 20px;
}

.footer-trust-seals {
    display: flex;
    gap: 16px;
    font-size: 0.8rem;
    color: var(--text-dim);
    font-weight: 600;
    flex-wrap: wrap;
}

.footer-links-col h4 {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: var(--text-main);
}

.footer-links-col ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links-col a {
    color: var(--text-muted);
    font-size: 0.88rem;
}

.footer-links-col a:hover {
    color: var(--primary);
    padding-left: 4px;
}

.footer-sub-text {
    font-size: 0.88rem;
    color: var(--text-muted);
    margin-bottom: 14px;
}

.footer-newsletter-form {
    display: flex;
    gap: 8px;
    margin-bottom: 16px;
}

.footer-newsletter-form input {
    flex-grow: 1;
    padding: 10px 14px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    color: var(--text-main);
    font-size: 0.88rem;
    outline: none;
}

.footer-newsletter-form button {
    padding: 10px 18px;
    background: var(--primary);
    color: #fff;
    border: none;
    border-radius: var(--radius-sm);
    cursor: pointer;
    font-weight: 700;
}

.footer-legal-links {
    font-size: 0.8rem;
    color: var(--text-dim);
}

.footer-bottom-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
    flex-wrap: wrap;
    gap: 20px;
}

.copyright-text {
    font-size: 0.85rem;
    color: var(--text-dim);
}

.payment-badges-row {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.pay-tag {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid var(--border-color);
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--text-muted);
}

/* ==========================================================================
   CHECKOUT MODAL
   ========================================================================== */
.modal-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(8px);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal-backdrop.open {
    display: flex;
}

.modal-card {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    width: 100%;
    max-width: 540px;
    max-height: 90vh;
    overflow-y: auto;
    padding: 36px 32px;
    position: relative;
    box-shadow: var(--shadow-lg);
    animation: modalPop 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes modalPop {
    from { opacity: 0; transform: scale(0.92) translateY(20px); }
    to { opacity: 1; transform: scale(1) translateY(0); }
}

.modal-close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.08);
    border: none;
    color: var(--text-muted);
    font-size: 1.5rem;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.modal-close-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    color: var(--text-main);
}

.modal-step-tag {
    font-size: 0.72rem;
    font-weight: 800;
    color: #818cf8;
    letter-spacing: 1px;
    margin-bottom: 6px;
}

.modal-title {
    font-size: 1.5rem;
    margin-bottom: 4px;
}

.modal-subtitle {
    font-size: 0.88rem;
    color: var(--text-muted);
    margin-bottom: 22px;
}

/* Order Summary Box */
.modal-order-summary {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 16px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.summary-label {
    display: block;
    font-size: 0.72rem;
    font-weight: 800;
    color: var(--text-dim);
    margin-bottom: 2px;
}

.summary-plan-name {
    display: block;
    font-size: 1rem;
    color: var(--text-main);
}

.summary-bonus-pill {
    font-size: 0.75rem;
    font-weight: 700;
    color: #10b981;
}

.summary-price-col {
    text-align: right;
}

.summary-plan-price {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 900;
    color: #818cf8;
    line-height: 1.1;
}

.summary-guarantee-note {
    font-size: 0.75rem;
    color: #10b981;
}

/* Form Styles */
.form-group {
    margin-bottom: 18px;
}

.form-group.hidden {
    display: none;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-main);
}

.form-group .opt {
    color: var(--text-dim);
    font-weight: normal;
}

.form-group input[type="text"],
.form-group input[type="tel"],
.form-group input[type="email"] {
    width: 100%;
    padding: 13px 16px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    color: var(--text-main);
    font-size: 0.95rem;
    outline: none;
    transition: var(--transition);
}

.input-with-icon {
    position: relative;
}

.input-prefix {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.1rem;
}

.input-with-icon input {
    padding-left: 46px !important;
}

.form-group input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 14px rgba(99, 102, 241, 0.25);
}

.field-help {
    display: block;
    font-size: 0.75rem;
    color: var(--text-dim);
    margin-top: 5px;
}

/* Delivery Options */
.delivery-toggle-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.delivery-option {
    cursor: pointer;
}

.delivery-option input {
    display: none;
}

.delivery-opt-box {
    border: 1px solid var(--border-color);
    background: var(--bg-card);
    padding: 12px 14px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
}

.delivery-opt-box .d-icon {
    font-size: 1.4rem;
}

.delivery-opt-box strong {
    display: block;
    font-size: 0.88rem;
    color: var(--text-main);
}

.delivery-opt-box span {
    display: block;
    font-size: 0.72rem;
    color: var(--text-muted);
}

.delivery-option input:checked + .delivery-opt-box {
    border-color: #25d366;
    background: rgba(37, 211, 102, 0.1);
}

.checkout-security-notice {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(16, 185, 129, 0.08);
    border: 1px solid rgba(16, 185, 129, 0.2);
    padding: 12px 14px;
    border-radius: var(--radius-sm);
    font-size: 0.78rem;
    color: var(--text-muted);
    margin-bottom: 22px;
}

.checkout-security-notice svg {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

/* Modal Submit Buttons */
.checkout-form button[type="submit"],
.trial-form button[type="submit"] {
    height: 48px;
    min-height: 48px;
    max-height: 48px;
    padding: 0 24px;
    font-size: 0.94rem;
    font-weight: 700;
    border-radius: var(--radius-md);
    margin-top: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.checkout-form button[type="submit"] svg,
.trial-form button[type="submit"] svg {
    width: 18px !important;
    height: 18px !important;
    max-width: 18px !important;
    max-height: 18px !important;
    flex-shrink: 0;
}

/* ==========================================================================
   TRIAL CALLOUT BANNER & SECTION
   ========================================================================== */
.trial-callout-section {
    padding: 30px 0 60px;
}

.trial-card-banner {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.08) 0%, rgba(14, 165, 233, 0.06) 40%, var(--bg-card) 100%);
    border: 1.5px solid rgba(16, 185, 129, 0.35);
    border-radius: 24px;
    padding: 44px 50px;
    display: grid;
    grid-template-columns: 1.6fr 1fr;
    gap: 40px;
    align-items: center;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.25);
}

.trial-card-glow {
    position: absolute;
    top: -40%;
    left: -15%;
    width: 380px;
    height: 380px;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.25) 0%, transparent 70%);
    pointer-events: none;
    filter: blur(50px);
}

.trial-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.76rem;
    font-weight: 800;
    color: #34d399;
    background: rgba(16, 185, 129, 0.14);
    padding: 5px 14px;
    border-radius: 20px;
    margin-bottom: 16px;
    border: 1px solid rgba(16, 185, 129, 0.3);
    letter-spacing: 0.5px;
}

.trial-title {
    font-size: 1.75rem;
    font-family: var(--font-heading);
    font-weight: 800;
    margin-bottom: 12px;
    line-height: 1.3;
    color: var(--text-heading);
}

.trial-desc {
    color: var(--text-dim);
    font-size: 0.98rem;
    line-height: 1.6;
    margin-bottom: 22px;
}

.trial-perks-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.trial-perk {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--text-main);
    display: flex;
    align-items: center;
    gap: 8px;
}

.trial-perk .perk-check {
    color: #10b981;
    font-weight: 900;
    background: rgba(16, 185, 129, 0.15);
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
}

.trial-card-action {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px dashed rgba(16, 185, 129, 0.3);
    border-radius: 18px;
    padding: 30px 24px;
}

.trial-note {
    font-size: 0.82rem;
    color: var(--text-dim);
    display: flex;
    align-items: center;
    gap: 6px;
}

/* ==========================================================================
   24H FREE TRIAL MODAL DETAILS
   ========================================================================== */
.trial-modal-card {
    max-width: 580px;
}

.trial-step-tag {
    color: #10b981;
}

.trial-benefits-strip {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-bottom: 22px;
    padding: 12px 14px;
    background: rgba(16, 185, 129, 0.08);
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: 12px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.benefit-item .b-icon {
    font-size: 1.3rem;
    flex-shrink: 0;
}

.benefit-item strong {
    display: block;
    font-size: 0.8rem;
    color: var(--text-heading);
    line-height: 1.2;
}

.benefit-item span {
    font-size: 0.7rem;
    color: var(--text-dim);
}

.device-chips-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-top: 6px;
}

.device-chip {
    cursor: pointer;
    display: block;
}

.device-chip input {
    display: none;
}

.device-chip .chip-box {
    display: block;
    padding: 10px 12px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-color);
    background: var(--bg-card);
    font-size: 0.82rem;
    font-weight: 600;
    transition: var(--transition);
    text-align: center;
    color: var(--text-main);
}

.device-chip:hover .chip-box {
    border-color: rgba(16, 185, 129, 0.5);
}

.device-chip input:checked + .chip-box {
    background: rgba(16, 185, 129, 0.15);
    border-color: #10b981;
    color: #10b981;
    box-shadow: 0 0 14px rgba(16, 185, 129, 0.25);
}

.custom-select {
    width: 100%;
    padding: 12px 14px;
    border-radius: var(--radius-sm);
    background: var(--bg-input);
    border: 1px solid var(--border-color);
    color: var(--text-main);
    font-family: var(--font-body);
    font-size: 0.92rem;
    outline: none;
    transition: var(--transition);
    cursor: pointer;
}

.custom-select:focus {
    border-color: #10b981;
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.2);
}

/* ==========================================================================
   LIVE SOCIAL PROOF TOAST POPUP
   ========================================================================== */
.social-proof-toast {
    position: fixed;
    bottom: 26px;
    left: 26px;
    z-index: 1600;
    background: var(--bg-card);
    border: 1.5px solid rgba(59, 130, 246, 0.35);
    border-radius: 16px;
    padding: 14px 18px;
    max-width: 320px;
    display: flex;
    align-items: center;
    gap: 14px;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35), 0 0 18px rgba(59, 130, 246, 0.15);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transform: translateX(-140%);
    opacity: 0;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease;
    pointer-events: auto;
}

.social-proof-toast.visible {
    transform: translateX(0);
    opacity: 1;
}

.toast-close {
    position: absolute;
    top: 6px;
    right: 8px;
    background: none;
    border: none;
    color: var(--text-dim);
    font-size: 1.1rem;
    cursor: pointer;
    line-height: 1;
    padding: 2px;
    transition: color 0.2s;
}

.toast-close:hover {
    color: var(--text-heading);
}

.toast-avatar {
    font-size: 1.7rem;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.toast-content {
    flex-grow: 1;
    padding-right: 10px;
}

.toast-title {
    display: block;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-heading);
    margin-bottom: 2px;
}

.toast-message {
    font-size: 0.76rem;
    color: var(--text-dim);
    line-height: 1.35;
    margin-bottom: 4px;
}

.toast-message strong {
    color: var(--text-main);
}

.toast-time {
    display: block;
    font-size: 0.68rem;
    font-weight: 700;
    color: #10b981;
}

.verified-check {
    font-weight: 900;
}

/* ==========================================================================
   FLOATING WHATSAPP BUTTON & CHAT
   ========================================================================== */
.floating-wa-wrapper {
    position: fixed;
    right: 26px;
    bottom: 26px;
    z-index: 1500;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.wa-speech-bubble {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    padding: 12px 16px;
    border-radius: 14px;
    max-width: 250px;
    box-shadow: var(--shadow-md);
    margin-bottom: 12px;
    position: relative;
    animation: waFloat 4s ease-in-out infinite;
}

@keyframes waFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}

.wa-speech-bubble strong {
    display: block;
    font-size: 0.88rem;
    margin-bottom: 2px;
}

.wa-speech-bubble p {
    font-size: 0.78rem;
    color: var(--text-muted);
    line-height: 1.35;
}

.bubble-close {
    position: absolute;
    top: 4px;
    right: 6px;
    background: none;
    border: none;
    color: var(--text-dim);
    font-size: 1rem;
    cursor: pointer;
}

.floating-wa-btn {
    width: 62px;
    height: 62px;
    border-radius: 50%;
    background: #25d366;
    border: 3px solid #ffffff;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
    position: relative;
    transition: var(--transition);
}

.floating-wa-btn:hover {
    transform: scale(1.08);
}

.floating-wa-btn svg {
    width: 32px;
    height: 32px;
}

.wa-pulse-ring {
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border-radius: 50%;
    border: 2px solid #25d366;
    animation: ringPulse 2.2s ease-out infinite;
}

@keyframes ringPulse {
    0% { transform: scale(0.95); opacity: 0.8; }
    100% { transform: scale(1.35); opacity: 0; }
}

/* ==========================================================================
   RESPONSIVE MEDIA QUERIES
   ========================================================================== */
@media (max-width: 1100px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .channels-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .schedule-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-metrics {
        grid-template-columns: repeat(2, 1fr);
    }

    .comparison-container {
        grid-template-columns: 1fr;
    }

    .vs-circle {
        margin: -10px auto;
    }

    .footer-top-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 1140px) {
    .nav-desktop, .btn-header {
        display: none !important;
    }

    .menu-toggle {
        display: flex !important;
    }
}

@media (min-width: 1141px) and (max-width: 1280px) {
    .nav-desktop .nav-list {
        gap: 8px;
    }
    .nav-link {
        font-size: 0.81rem;
        padding: 6px 1px;
    }
    .btn-header {
        padding: 7px 12px;
        font-size: 0.8rem;
    }
    .btn-trial-badge {
        padding: 6px 10px;
        font-size: 0.76rem;
    }
}

@media (max-width: 860px) {
    .hero-title {
        font-size: 2.3rem;
    }

    .hero-subtitle-block {
        font-size: 1.15rem;
    }

    .setup-steps-grid,
    .reviews-grid {
        grid-template-columns: 1fr;
    }

    .faq-layout {
        grid-template-columns: 1fr;
    }

    .faq-support-card {
        position: static;
    }

    .trial-card-banner {
        grid-template-columns: 1fr;
        padding: 36px 24px;
        text-align: center;
        gap: 28px;
    }

    .schedule-guarantee-bar {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .trial-badge {
        margin-left: auto;
        margin-right: auto;
    }

    .trial-card-action {
        width: 100%;
    }

    .spotlight-scoreboard {
        grid-template-columns: 1fr;
        gap: 16px;
        text-align: center;
    }

    .spotlight-team, .spotlight-team.away {
        justify-content: center;
        text-align: center;
        flex-direction: column;
    }

    .spotlight-footer {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .spotlight-actions {
        width: 100%;
        justify-content: center;
        flex-direction: column;
    }

    .spotlight-actions .btn {
        width: 100%;
    }

    .social-proof-toast {
        left: 16px;
        bottom: 16px;
        max-width: 290px;
    }
}

@media (max-width: 600px) {
    .pricing-grid,
    .channels-grid,
    .schedule-grid,
    .hero-metrics {
        grid-template-columns: 1fr;
    }

    .schedule-guarantee-bar {
        grid-template-columns: 1fr;
    }

    .hero-title {
        font-size: 1.95rem;
    }

    .hero-cta-group {
        flex-direction: column;
        width: 100%;
    }

    .hero-cta-group .btn {
        width: 100%;
    }

    .trial-perks-row {
        grid-template-columns: 1fr;
    }

    .trial-benefits-strip {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .device-chips-grid {
        grid-template-columns: 1fr;
    }

    .btn-trial-hero {
        width: 100%;
    }

    .footer-top-grid {
        grid-template-columns: 1fr;
    }

    .screen-tabs {
        flex-direction: column;
        width: 100%;
        border-radius: var(--radius-md);
    }

    .screen-tab-btn {
        width: 100%;
        justify-content: center;
    }

    .modal-card {
        padding: 24px 18px;
    }

    .floating-wa-wrapper {
        right: 16px;
        bottom: 16px;
    }

    .wa-speech-bubble {
        display: none;
    }

    .social-proof-toast {
        display: none;
    }
}


/* ==========================================================================
   FEATURE 1: LIVE SERVER HEALTH STATUS PILL
   ========================================================================== */
.server-status-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 18px;
    background: rgba(16, 185, 129, 0.12);
    border: 1px solid rgba(16, 185, 129, 0.35);
    border-radius: var(--radius-full);
    font-size: 0.88rem;
    color: var(--text-main);
    margin-bottom: 24px;
    backdrop-filter: blur(8px);
    box-shadow: 0 0 20px rgba(16, 185, 129, 0.15);
}

.status-live-beacon {
    position: relative;
    width: 10px;
    height: 10px;
    background: #10b981;
    border-radius: 50%;
    flex-shrink: 0;
}

.status-live-beacon::after {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: rgba(16, 185, 129, 0.5);
    animation: beaconPulse 2s infinite cubic-bezier(0.4, 0, 0.6, 1);
}

@keyframes beaconPulse {
    0% {
        transform: scale(0.6);
        opacity: 0.9;
    }
    100% {
        transform: scale(2.2);
        opacity: 0;
    }
}

.server-status-pill .status-title strong {
    color: #10b981;
    font-weight: 700;
}

/* ==========================================================================
   FEATURE 2: SPEEDTEST & 4K DIAGNOSTIC WIDGET
   ========================================================================== */
.speedtest-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    box-shadow: var(--shadow-lg);
    margin-top: 48px;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(16px);
}

.speedtest-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #0ea5e9, #6366f1, #ec4899);
}

.speedtest-tag {
    display: inline-block;
    padding: 5px 14px;
    background: rgba(14, 165, 233, 0.12);
    border: 1px solid rgba(14, 165, 233, 0.3);
    border-radius: var(--radius-full);
    color: var(--accent-blue);
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    margin-bottom: 12px;
}

.speedtest-title {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--text-main);
    margin-bottom: 10px;
}

.speedtest-sub {
    max-width: 620px;
    margin: 0 auto 28px;
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.5;
}

.gauge-container {
    position: relative;
    width: 220px;
    height: 130px;
    margin: 0 auto 16px;
}

.speed-gauge-svg {
    width: 100%;
    height: 100%;
}

.gauge-track {
    stroke: rgba(255, 255, 255, 0.08);
    stroke-linecap: round;
}

[data-theme="light"] .gauge-track {
    stroke: rgba(0, 0, 0, 0.08);
}

.gauge-fill {
    stroke: #0ea5e9;
    stroke-linecap: round;
    transition: stroke-dashoffset 0.18s cubic-bezier(0.4, 0, 0.2, 1);
    filter: drop-shadow(0 0 8px rgba(14, 165, 233, 0.5));
}

.gauge-data {
    position: absolute;
    bottom: 6px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
}

.gauge-speed-val {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1;
    color: var(--text-main);
}

.gauge-speed-unit {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--accent-blue);
    margin-left: 2px;
}

.speedtest-metrics-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    max-width: 580px;
    margin: 20px auto 28px;
}

.metric-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 14px 16px;
    text-align: center;
    transition: var(--transition);
}

.metric-item:hover {
    border-color: var(--border-glow);
    background: rgba(255, 255, 255, 0.05);
}

.m-label {
    display: block;
    font-size: 0.72rem;
    letter-spacing: 0.06em;
    color: var(--text-dim);
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 4px;
}

.m-val {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--text-main);
}

.m-val small {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--text-muted);
}

.btn-start-test {
    min-width: 220px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 0.9rem;
    padding: 11px 22px;
}

.btn-start-test.running {
    opacity: 0.75;
    pointer-events: none;
}

.speedtest-verdict {
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.35);
    border-radius: var(--radius-md);
    padding: 20px 24px;
    margin: 28px auto 0;
    display: flex;
    align-items: center;
    gap: 18px;
    text-align: left;
    max-width: 680px;
    box-shadow: 0 0 25px rgba(16, 185, 129, 0.15);
    animation: fadeIn 0.4s ease;
}

.speedtest-verdict.hidden {
    display: none !important;
}

.verdict-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #10b981;
    color: #fff;
    font-size: 1.3rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 14px rgba(16, 185, 129, 0.35);
}

.verdict-content {
    flex: 1;
}

.verdict-headline {
    font-size: 1.1rem;
    color: #10b981;
    display: block;
    margin-bottom: 4px;
}

.verdict-desc {
    font-size: 0.88rem;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.45;
}

.btn-verdict-order {
    flex-shrink: 0;
    padding: 10px 18px;
    font-size: 0.88rem;
    white-space: nowrap;
}

/* ==========================================================================
   FEATURE 3: INTERACTIVE DEVICE SETUP SELECTOR
   ========================================================================== */
.device-setup-wrapper {
    margin-top: 56px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 42px 32px;
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(16px);
}

.device-badge-mini {
    display: inline-block;
    padding: 5px 14px;
    background: rgba(99, 102, 241, 0.12);
    border: 1px solid rgba(99, 102, 241, 0.3);
    border-radius: var(--radius-full);
    color: var(--primary);
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    margin-bottom: 12px;
}

.device-setup-title {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--text-main);
    margin-bottom: 10px;
}

.device-setup-sub {
    max-width: 640px;
    margin: 0 auto 30px;
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.5;
}

.device-tabs-bar {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 32px;
}

.device-tab-btn {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border-color);
    color: var(--text-muted);
    padding: 10px 20px;
    border-radius: var(--radius-full);
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
    font-family: var(--font-body);
}

.device-tab-btn:hover {
    border-color: var(--primary);
    color: var(--text-main);
    background: rgba(99, 102, 241, 0.08);
}

.device-tab-btn.active {
    background: var(--primary-gradient);
    color: #fff;
    border-color: transparent;
    box-shadow: var(--shadow-glow);
}

.device-panel {
    display: none;
    animation: fadeIn 0.3s ease;
}

.device-panel.active {
    display: block;
}

.device-panel-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 28px;
    align-items: stretch;
}

.device-app-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 28px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.device-app-icon {
    font-size: 2.6rem;
    margin-bottom: 12px;
}

.device-app-card h4 {
    font-size: 1.3rem;
    color: var(--text-main);
    margin-bottom: 8px;
    font-weight: 700;
}

.app-tag-rec {
    display: inline-block;
    background: rgba(99, 102, 241, 0.15);
    color: var(--primary);
    font-size: 0.78rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 12px;
    margin-bottom: 14px;
    border: 1px solid rgba(99, 102, 241, 0.25);
}

.app-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.5;
    margin-bottom: 16px;
}

.app-meta-stats {
    display: flex;
    justify-content: center;
    gap: 10px;
    font-size: 0.82rem;
    color: var(--accent-gold);
    font-weight: 600;
}

.device-steps-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.d-step-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 16px;
    transition: var(--transition);
}

.d-step-item:hover {
    border-color: var(--border-glow);
    background: rgba(255, 255, 255, 0.04);
}

.d-step-num {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--primary-gradient);
    color: #fff;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 0.95rem;
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.3);
}

.d-step-item strong {
    font-size: 0.95rem;
    color: var(--text-main);
    display: block;
    margin-bottom: 4px;
}

.d-step-item p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.45;
}

.d-step-help {
    margin-top: 6px;
}

.btn-whatsapp-help {
    background: rgba(37, 211, 102, 0.12);
    border: 1px solid rgba(37, 211, 102, 0.35);
    color: #25d366;
    font-size: 0.86rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    padding: 10px 20px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
    text-decoration: none;
}

.btn-whatsapp-help:hover {
    background: #25d366;
    color: #fff;
    box-shadow: 0 0 20px rgba(37, 211, 102, 0.35);
}

/* ==========================================================================
   FEATURE 4: FULL CHANNELS LIST MODAL & SEARCH
   ========================================================================== */
.channels-modal-cta-wrap {
    text-align: center;
    margin-top: 36px;
}

.modal-card-wide {
    max-width: 960px;
    width: 92%;
    max-height: 88vh;
    display: flex;
    flex-direction: column;
}

.modal-search-row {
    margin: 16px 0 14px;
}

.modal-search-input-wrap {
    position: relative;
    width: 100%;
}

.modal-search-input-wrap svg {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    color: var(--text-dim);
    pointer-events: none;
}

.modal-search-input-wrap input {
    width: 100%;
    padding: 12px 16px 12px 44px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    color: var(--text-main);
    font-size: 0.92rem;
    outline: none;
    transition: var(--transition);
    box-sizing: border-box;
}

.modal-search-input-wrap input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.2);
    background: rgba(255, 255, 255, 0.06);
}

.modal-bouquet-filters {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border-color);
}

.modal-b-btn {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border-color);
    color: var(--text-muted);
    font-size: 0.8rem;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: var(--transition);
    font-family: var(--font-body);
}

.modal-b-btn:hover {
    color: var(--text-main);
    border-color: var(--primary);
}

.modal-b-btn.active {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
    box-shadow: 0 2px 10px rgba(99, 102, 241, 0.35);
}

.modal-channels-scroll-area {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(215px, 1fr));
    gap: 12px;
    overflow-y: auto;
    max-height: 400px;
    padding: 4px 6px 12px 0;
}

.channel-mini-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    padding: 12px;
    position: relative;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: var(--transition);
}

.channel-mini-card:hover {
    transform: translateY(-2px);
    border-color: var(--border-glow);
    background: rgba(255, 255, 255, 0.06);
    box-shadow: var(--shadow-sm);
}

.channel-mini-card.hidden {
    display: none !important;
}

.c-badge-res {
    position: absolute;
    top: 6px;
    right: 8px;
    font-size: 0.65rem;
    font-weight: 800;
    padding: 2px 6px;
    border-radius: 4px;
}

.c-badge-res.4k {
    background: linear-gradient(135deg, #f59e0b, #ef4444);
    color: #fff;
}

.c-badge-res.fhd {
    background: rgba(14, 165, 233, 0.2);
    color: var(--accent-blue);
    border: 1px solid rgba(14, 165, 233, 0.3);
}

.c-icon-wrap {
    width: 44px;
    height: 44px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.72rem;
    flex-shrink: 0;
    letter-spacing: -0.02em;
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
}

.c-icon-wrap.sport { background: linear-gradient(135deg, #1e293b, #0f172a); border: 1px solid #334155; }
.c-icon-wrap.bein { background: linear-gradient(135deg, #581c87, #3b0764); border: 1px solid #7e22ce; }
.c-icon-wrap.rmc { background: linear-gradient(135deg, #991b1b, #7f1d1d); border: 1px solid #dc2626; }
.c-icon-wrap.dazn { background: linear-gradient(135deg, #18181b, #09090b); border: 1px solid #3f3f46; color: #facc15; }
.c-icon-wrap.tnt { background: linear-gradient(135deg, #0284c7, #0369a1); border: 1px solid #38bdf8; }
.c-icon-wrap.cinema { background: linear-gradient(135deg, #b91c1c, #991b1b); border: 1px solid #f87171; }
.c-icon-wrap.be { background: linear-gradient(135deg, #ca8a04, #a16207); border: 1px solid #facc15; }
.c-icon-wrap.ch { background: linear-gradient(135deg, #dc2626, #b91c1c); border: 1px solid #ef4444; }
.c-icon-wrap.mbc { background: linear-gradient(135deg, #0d9488, #0f766e); border: 1px solid #2dd4bf; }
.c-icon-wrap.ar { background: linear-gradient(135deg, #047857, #065f46); border: 1px solid #10b981; }
.c-icon-wrap.sky { background: linear-gradient(135deg, #0369a1, #075985); border: 1px solid #38bdf8; }
.c-icon-wrap.us { background: linear-gradient(135deg, #b91c1c, #1e3a8a); border: 1px solid #60a5fa; }

.c-info {
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.c-info strong {
    font-size: 0.85rem;
    color: var(--text-main);
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}

.c-info span {
    font-size: 0.72rem;
    color: var(--text-dim);
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}

.channels-modal-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 18px;
    margin-top: 12px;
    border-top: 1px solid var(--border-color);
}

.modal-channels-count {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.modal-channels-actions {
    display: flex;
    gap: 10px;
}

/* ==========================================================================
   FEATURE 5: PROFESSIONAL LEGAL PAGES MODAL (CGV, RGPD, GARANTIE)
   ========================================================================== */
.legal-trigger-btn {
    background: none;
    border: none;
    color: var(--text-dim);
    font-size: 0.85rem;
    cursor: pointer;
    text-decoration: underline;
    text-underline-offset: 3px;
    padding: 0;
    transition: var(--transition);
    font-family: var(--font-body);
}

.legal-trigger-btn:hover {
    color: var(--primary);
}

.legal-tabs-bar {
    display: flex;
    gap: 8px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 12px;
    margin-bottom: 20px;
    overflow-x: auto;
}

.legal-tab-btn {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border-color);
    color: var(--text-muted);
    font-size: 0.85rem;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
    font-family: var(--font-body);
}

.legal-tab-btn:hover {
    color: var(--text-main);
    border-color: var(--primary);
}

.legal-tab-btn.active {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}

.legal-content-area {
    max-height: 380px;
    overflow-y: auto;
    padding-right: 12px;
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--text-muted);
}

.legal-panel {
    display: none;
    animation: fadeIn 0.3s ease;
}

.legal-panel.active {
    display: block;
}

.legal-panel h4 {
    font-size: 1.05rem;
    color: var(--text-main);
    margin: 18px 0 6px;
    font-weight: 700;
}

.legal-panel h4:first-child {
    margin-top: 0;
}

.legal-panel p {
    margin-bottom: 12px;
}

.modal-footer-legal {
    padding-top: 18px;
    border-top: 1px solid var(--border-color);
    margin-top: 16px;
}

/* ==========================================================================
   FEATURE 6: FLOATING BACK TO TOP BUTTON
   ========================================================================== */
.back-to-top-btn {
    position: fixed;
    bottom: 90px;
    right: 26px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    color: var(--text-main);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: var(--shadow-md);
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: opacity 0.3s ease, transform 0.3s ease, background 0.2s, border-color 0.2s;
}

.back-to-top-btn svg {
    width: 20px;
    height: 20px;
}

.back-to-top-btn:hover {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
    box-shadow: var(--shadow-glow);
    transform: translateY(-3px);
}

.back-to-top-btn.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* ==========================================================================
   RESPONSIVE ADJUSTMENTS FOR NEW FEATURES
   ========================================================================== */
@media (max-width: 768px) {
    .device-panel-grid {
        grid-template-columns: 1fr;
    }

    .speedtest-metrics-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .speedtest-verdict {
        flex-direction: column;
        text-align: center;
    }

    .channels-modal-footer {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }

    .modal-channels-scroll-area {
        grid-template-columns: 1fr;
    }

    .back-to-top-btn {
        bottom: 80px;
        right: 16px;
        width: 40px;
        height: 40px;
    }
}


/* ==========================================================================
   FEATURE: BLOG & TRENDING SEO GUIDES SECTION
   ========================================================================== */
.blog-section {
    position: relative;
    padding: 90px 0;
}

.blog-controls-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 36px;
}

.blog-search-box {
    position: relative;
    width: 320px;
    min-width: 260px;
}

.blog-search-box svg {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    color: var(--text-dim);
    pointer-events: none;
}

.blog-search-box input {
    width: 100%;
    padding: 11px 16px 11px 42px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-full);
    color: var(--text-main);
    font-size: 0.88rem;
    outline: none;
    transition: var(--transition);
    box-sizing: border-box;
}

.blog-search-box input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.2);
    background: rgba(255, 255, 255, 0.07);
}

.blog-cat-filters {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.blog-cat-btn {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border-color);
    color: var(--text-muted);
    font-size: 0.82rem;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: var(--transition);
    font-family: var(--font-body);
}

.blog-cat-btn:hover {
    color: var(--text-main);
    border-color: var(--primary);
    background: rgba(99, 102, 241, 0.08);
}

.blog-cat-btn.active {
    background: var(--primary-gradient);
    color: #fff;
    border-color: transparent;
    box-shadow: var(--shadow-glow);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 24px;
}

.blog-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 26px;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(12px);
    transition: var(--transition);
}

.blog-card:hover {
    transform: translateY(-6px);
    border-color: var(--border-glow);
    background: var(--bg-card-hover);
    box-shadow: var(--shadow-lg);
}

.blog-card.hidden {
    display: none !important;
}

.blog-card-badge-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 14px;
}

.b-badge-pill {
    display: inline-block;
    padding: 4px 10px;
    border-radius: var(--radius-full);
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.02em;
}

.b-badge-pill.hot { background: rgba(239, 68, 68, 0.15); color: #ef4444; border: 1px solid rgba(239, 68, 68, 0.3); }
.b-badge-pill.sport { background: rgba(16, 185, 129, 0.15); color: #10b981; border: 1px solid rgba(16, 185, 129, 0.3); }
.b-badge-pill.tutoriel { background: rgba(99, 102, 241, 0.15); color: var(--primary); border: 1px solid rgba(99, 102, 241, 0.3); }
.b-badge-pill.optim { background: rgba(14, 165, 233, 0.15); color: var(--accent-blue); border: 1px solid rgba(14, 165, 233, 0.3); }
.b-badge-pill.hardware { background: rgba(245, 158, 11, 0.15); color: var(--accent-gold); border: 1px solid rgba(245, 158, 11, 0.3); }
.b-badge-pill.securite { background: rgba(168, 85, 247, 0.15); color: #a855f7; border: 1px solid rgba(168, 85, 247, 0.3); }

.b-read-time {
    font-size: 0.76rem;
    color: var(--text-dim);
    font-weight: 500;
}

.blog-card-body {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.b-category-tag {
    font-size: 0.74rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-dim);
    margin-bottom: 8px;
}

.blog-card-title {
    font-family: var(--font-heading);
    font-size: 1.22rem;
    font-weight: 800;
    color: var(--text-main);
    line-height: 1.35;
    margin-bottom: 12px;
}

.blog-card-excerpt {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.55;
    margin-bottom: 20px;
    flex-grow: 1;
}

.blog-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid var(--border-color);
    padding-top: 16px;
    margin-top: auto;
    gap: 12px;
}

.blog-author-meta {
    display: flex;
    align-items: center;
    gap: 10px;
}

.author-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    flex-shrink: 0;
}

.author-name {
    display: block;
    font-size: 0.78rem;
    color: var(--text-main);
    font-weight: 600;
    line-height: 1.2;
}

.post-date {
    font-size: 0.7rem;
    color: var(--text-dim);
}

.btn-read-article {
    background: rgba(99, 102, 241, 0.12);
    border: 1px solid rgba(99, 102, 241, 0.3);
    color: var(--primary);
    padding: 7px 14px;
    border-radius: var(--radius-full);
    font-size: 0.82rem;
    font-weight: 700;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition);
    white-space: nowrap;
    font-family: var(--font-body);
}

.btn-read-article svg {
    width: 14px;
    height: 14px;
    transition: transform 0.2s ease;
}

.btn-read-article:hover {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
    box-shadow: 0 4px 14px rgba(99, 102, 241, 0.35);
}

.btn-read-article:hover svg {
    transform: translateX(3px);
}

.blog-empty-state {
    text-align: center;
    padding: 48px 24px;
    background: var(--bg-card);
    border: 1px dashed var(--border-color);
    border-radius: var(--radius-lg);
    margin-top: 20px;
}

.blog-empty-state.hidden {
    display: none !important;
}

.empty-icon {
    font-size: 2.2rem;
    display: block;
    margin-bottom: 12px;
}

.blog-empty-state h4 {
    font-size: 1.2rem;
    color: var(--text-main);
    margin-bottom: 8px;
}

.blog-empty-state p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 16px;
}

/* ==========================================================================
   FEATURE: FULL ARTICLE READER MODAL
   ========================================================================== */
.modal-card-article {
    max-width: 840px;
    width: 92%;
    max-height: 88vh;
    padding: 36px 38px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
}

.article-reader-wrapper {
    color: var(--text-muted);
    line-height: 1.7;
    font-size: 0.96rem;
}

.reader-badge-row {
    display: flex;
    gap: 10px;
    align-items: center;
    margin-bottom: 14px;
}

.reader-title {
    font-family: var(--font-heading);
    font-size: 1.95rem;
    font-weight: 800;
    color: var(--text-main);
    line-height: 1.3;
    margin-bottom: 16px;
}

.reader-meta-row {
    display: flex;
    gap: 16px;
    align-items: center;
    padding-bottom: 18px;
    margin-bottom: 24px;
    border-bottom: 1px solid var(--border-color);
    font-size: 0.85rem;
    color: var(--text-dim);
}

.reader-intro-box {
    font-size: 1.05rem;
    line-height: 1.65;
    color: var(--text-main);
    font-weight: 500;
    margin-bottom: 28px;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.03);
    border-left: 3px solid var(--primary);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.reader-toc-box {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 18px 22px;
    margin-bottom: 30px;
}

.reader-toc-box strong {
    display: block;
    color: var(--text-main);
    font-size: 0.9rem;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.reader-toc-box ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.reader-toc-box li {
    font-size: 0.88rem;
    color: var(--text-muted);
}

.reader-body h4 {
    font-family: var(--font-heading);
    font-size: 1.28rem;
    font-weight: 700;
    color: var(--text-main);
    margin: 26px 0 10px;
}

.reader-body p {
    margin-bottom: 14px;
}

.reader-body ul, .reader-body ol {
    margin: 0 0 18px 20px;
}

.reader-body li {
    margin-bottom: 8px;
}

.blog-tip-box {
    background: rgba(16, 185, 129, 0.08);
    border: 1px solid rgba(16, 185, 129, 0.25);
    border-radius: var(--radius-md);
    padding: 16px 20px;
    margin: 20px 0;
}

.blog-tip-box strong {
    color: #10b981;
    display: block;
    margin-bottom: 4px;
    font-size: 0.92rem;
}

.blog-tip-box p {
    margin: 0;
    font-size: 0.88rem;
    color: var(--text-muted);
}

.blog-warning-box {
    background: rgba(245, 158, 11, 0.08);
    border: 1px solid rgba(245, 158, 11, 0.25);
    border-radius: var(--radius-md);
    padding: 16px 20px;
    margin: 20px 0;
}

.blog-warning-box strong {
    color: var(--accent-gold);
    display: block;
    margin-bottom: 4px;
    font-size: 0.92rem;
}

.blog-warning-box p {
    margin: 0;
    font-size: 0.88rem;
    color: var(--text-muted);
}

.blog-article-cta-box {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.12) 0%, rgba(16, 185, 129, 0.12) 100%);
    border: 1px solid rgba(99, 102, 241, 0.3);
    border-radius: var(--radius-lg);
    padding: 26px;
    margin-top: 32px;
    text-align: center;
}

.blog-article-cta-box h4 {
    font-size: 1.3rem;
    color: var(--text-main);
    margin-bottom: 8px;
}

.blog-article-cta-box p {
    font-size: 0.92rem;
    color: var(--text-muted);
    max-width: 540px;
    margin: 0 auto 18px;
}

.blog-cta-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .blog-controls-row {
        flex-direction: column;
        align-items: stretch;
    }

    .blog-search-box {
        width: 100%;
    }

    .blog-grid {
        grid-template-columns: 1fr;
    }

    .modal-card-article {
        padding: 24px 18px;
    }

    .reader-title {
        font-size: 1.5rem;
    }
}

/* ==========================================================================
   SOCIAL MEDIA ICONS & COMMUNITY BAR STYLES
   ========================================================================== */
.footer-social-box {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.social-box-title {
    font-size: 0.84rem;
    font-weight: 700;
    color: #e2e8f0;
    letter-spacing: 0.3px;
}

.footer-social-icons {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.social-icon-btn {
    position: relative;
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #94a3b8;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.social-icon-btn svg {
    width: 18px !important;
    height: 18px !important;
    max-width: 18px !important;
    max-height: 18px !important;
    flex-shrink: 0;
    transition: transform 0.2s ease;
}

.social-tooltip {
    position: absolute;
    bottom: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%) translateY(4px);
    background: #0f172a;
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #f8fafc;
    font-size: 0.68rem;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 6px;
    white-space: nowrap;
    pointer-events: none;
    opacity: 0;
    transition: all 0.2s ease;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.6);
    z-index: 10;
}

.social-tooltip::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border-width: 4px;
    border-style: solid;
    border-color: #0f172a transparent transparent transparent;
}

.social-icon-btn:hover .social-tooltip {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

/* Individual Brand Glow States */
.social-icon-btn.social-wa:hover {
    background: #25d366;
    color: #ffffff;
    border-color: #25d366;
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.45);
    transform: translateY(-3px);
}

.social-icon-btn.social-tg:hover {
    background: #229ed9;
    color: #ffffff;
    border-color: #229ed9;
    box-shadow: 0 4px 16px rgba(34, 158, 217, 0.45);
    transform: translateY(-3px);
}

.social-icon-btn.social-x:hover {
    background: #000000;
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.35);
    box-shadow: 0 4px 16px rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

.social-icon-btn.social-yt:hover {
    background: #ef4444;
    color: #ffffff;
    border-color: #ef4444;
    box-shadow: 0 4px 16px rgba(239, 68, 68, 0.45);
    transform: translateY(-3px);
}

.social-icon-btn.social-ig:hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: #ffffff;
    border-color: transparent;
    box-shadow: 0 4px 16px rgba(225, 48, 108, 0.45);
    transform: translateY(-3px);
}

.social-icon-btn.social-dc:hover {
    background: #5865f2;
    color: #ffffff;
    border-color: #5865f2;
    box-shadow: 0 4px 16px rgba(88, 101, 242, 0.45);
    transform: translateY(-3px);
}

.social-icon-btn:hover svg {
    transform: scale(1.1);
}

/* Mobile Drawer Social Bar */
.mobile-social-bar {
    margin-top: 18px;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
}

.mobile-social-title {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--text-muted);
}

.mobile-social-icons {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
}

/* Footer Bottom Community Pill */
.footer-bottom-info {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.community-count-pill {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.25);
    color: #34d399;
    font-size: 0.76rem;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: 9999px;
    width: fit-content;
}

.live-community-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #10b981;
    box-shadow: 0 0 6px #10b981;
    animation: liveBadgePing 1.8s infinite;
}

@media (max-width: 768px) {
    .footer-bottom-bar {
        flex-direction: column;
        gap: 16px;
        align-items: center;
        text-align: center;
    }

    .footer-bottom-info {
        align-items: center;
    }
}

/* Article Reader Social Sharing */
.share-label {
    font-size: 0.76rem;
    color: var(--text-muted);
    font-weight: 600;
    margin-left: 6px;
}

.article-share-btn {
    width: 26px;
    height: 26px;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #94a3b8;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.2s ease;
}

.article-share-btn svg {
    width: 13px !important;
    height: 13px !important;
    flex-shrink: 0;
}

.article-share-btn:hover {
    color: #ffffff;
    transform: translateY(-1px);
}

.article-share-btn.share-wa:hover {
    background: #25d366;
    border-color: #25d366;
    box-shadow: 0 2px 8px rgba(37, 211, 102, 0.4);
}

.article-share-btn.share-tg:hover {
    background: #229ed9;
    border-color: #229ed9;
    box-shadow: 0 2px 8px rgba(34, 158, 217, 0.4);
}

.article-share-btn.share-x:hover {
    background: #000000;
    border-color: #ffffff;
    box-shadow: 0 2px 8px rgba(255, 255, 255, 0.25);
}

/* ==========================================================================
   RESELLER & PARTNER PROGRAM SECTION (#revendeur) - FORMULE PACKS CRÉATIFS
   ========================================================================== */
.reseller-section {
    position: relative;
    background: radial-gradient(circle at 50% 0%, rgba(99, 102, 241, 0.08) 0%, rgba(15, 23, 42, 0) 70%),
                var(--bg-section-alt, #0b101b);
    border-top: 1px solid rgba(99, 102, 241, 0.15);
    border-bottom: 1px solid rgba(99, 102, 241, 0.15);
    padding: 90px 0;
    overflow: hidden;
}

.reseller-pulse-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background: rgba(99, 102, 241, 0.12);
    border: 1px solid rgba(99, 102, 241, 0.35);
    border-radius: 9999px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: #a5b4fc;
    text-transform: uppercase;
    margin-bottom: 16px;
    box-shadow: 0 0 20px rgba(99, 102, 241, 0.2);
}

.reseller-badge-icon {
    font-size: 1rem;
}

/* INTERACTIVE MODE TOGGLE SWITCHER (PACKS BUSINESS VS RECHARGES CRÉDITS) */
.pack-mode-toggle-wrapper {
    margin: 28px 0 45px 0;
}

.pack-mode-toggle {
    display: inline-flex;
    align-items: center;
    background: rgba(15, 23, 42, 0.85);
    border: 1px solid rgba(99, 102, 241, 0.3);
    border-radius: 9999px;
    padding: 6px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
    gap: 6px;
}

.pack-mode-btn {
    border: none;
    background: transparent;
    padding: 10px 24px;
    border-radius: 9999px;
    color: #94a3b8;
    font-size: 0.92rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    transition: all 0.25s ease;
}

.pack-mode-btn:hover {
    color: #ffffff;
}

.pack-mode-btn.active {
    background: linear-gradient(135deg, #6366f1 0%, #4f46e5 100%);
    color: #ffffff;
    box-shadow: 0 4px 18px rgba(99, 102, 241, 0.5);
}

.mode-badge-pill {
    font-size: 0.68rem;
    font-weight: 800;
    padding: 2px 8px;
    border-radius: 9999px;
    background: rgba(255, 255, 255, 0.12);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.pack-mode-btn.active .mode-badge-pill {
    background: #ffffff;
    color: #4f46e5;
}

/* TAB PANELS */
.reseller-tab-panel {
    display: block;
    animation: fadeInTab 0.3s ease;
}

@keyframes fadeInTab {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ==========================================================================
   CREATIVE ALL-IN-ONE BUSINESS PACKS GRID (3-TIER PACKS)
   ========================================================================== */
.packs-business-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
    margin-bottom: 55px;
    align-items: stretch;
}

.business-pack-card {
    position: relative;
    background: linear-gradient(180deg, rgba(17, 24, 39, 0.75) 0%, rgba(15, 23, 42, 0.92) 100%);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1.5px solid rgba(255, 255, 255, 0.09);
    border-radius: 24px;
    padding: 34px 26px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease, box-shadow 0.3s ease;
}

.business-pack-card:hover {
    transform: translateY(-8px);
    border-color: rgba(99, 102, 241, 0.5);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5), 0 0 30px rgba(99, 102, 241, 0.2);
}

/* Pack Featured Pro Styling */
.pack-pro-featured {
    background: linear-gradient(180deg, rgba(30, 27, 75, 0.85) 0%, rgba(15, 23, 42, 0.95) 100%);
    border: 2px solid rgba(129, 140, 248, 0.7);
    box-shadow: 0 20px 45px rgba(99, 102, 241, 0.25), 0 0 40px rgba(99, 102, 241, 0.2);
    transform: scale(1.03);
    z-index: 2;
}

.pack-pro-featured:hover {
    transform: scale(1.03) translateY(-8px);
    border-color: #a5b4fc;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6), 0 0 50px rgba(99, 102, 241, 0.4);
}

.featured-sparkle-ribbon {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(90deg, #f59e0b, #ef4444, #8b5cf6);
    color: #ffffff;
    font-size: 0.74rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    padding: 5px 18px;
    border-radius: 9999px;
    text-transform: uppercase;
    box-shadow: 0 4px 15px rgba(239, 68, 68, 0.4);
    white-space: nowrap;
    z-index: 10;
}

.pack-header-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 12px;
    border-radius: 8px;
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 14px;
    align-self: flex-start;
    background: rgba(59, 130, 246, 0.15);
    color: #93c5fd;
    border: 1px solid rgba(59, 130, 246, 0.3);
}

.pack-header-badge.badge-pro {
    background: rgba(245, 158, 11, 0.15);
    color: #fcd34d;
    border: 1px solid rgba(245, 158, 11, 0.35);
}

.pack-header-badge.badge-empire {
    background: rgba(168, 85, 247, 0.15);
    color: #d8b4fe;
    border: 1px solid rgba(168, 85, 247, 0.35);
}

.pack-name {
    font-size: 1.45rem;
    font-weight: 900;
    color: #ffffff;
    margin: 0 0 8px 0;
    letter-spacing: -0.01em;
}

.pack-tagline {
    font-size: 0.86rem;
    color: #94a3b8;
    line-height: 1.45;
    min-height: 42px;
    margin: 0 0 18px 0;
}

.pack-pricing-area {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    padding: 18px;
    text-align: center;
    margin-bottom: 20px;
}

.pack-main-price {
    font-size: 2.4rem;
    font-weight: 900;
    color: #ffffff;
    letter-spacing: -0.02em;
}

.pack-price-period {
    font-size: 0.78rem;
    color: #94a3b8;
    margin: 4px 0 10px 0;
}

.pack-roi-estimate {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    color: #10b981;
    background: rgba(16, 185, 129, 0.1);
    padding: 4px 10px;
    border-radius: 8px;
    font-weight: 700;
}

.pack-roi-estimate.highlight-roi {
    background: rgba(245, 158, 11, 0.12);
    color: #fbbf24;
}

/* Custom Highlight: Branded APK Included */
.pack-custom-app-callout {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.2) 0%, rgba(139, 92, 246, 0.25) 100%);
    border: 1.5px dashed rgba(165, 180, 252, 0.6);
    border-radius: 14px;
    padding: 14px;
    display: flex;
    gap: 12px;
    align-items: center;
    margin-bottom: 20px;
}

.app-callout-icon {
    font-size: 1.8rem;
    flex-shrink: 0;
}

.app-callout-info strong {
    display: block;
    font-size: 0.82rem;
    color: #ffffff;
    font-weight: 800;
    margin-bottom: 2px;
}

.app-callout-info span {
    font-size: 0.74rem;
    color: #cbd5e1;
    line-height: 1.35;
    display: block;
}

.pack-unboxing-included {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    margin-bottom: 22px;
}

.unboxing-title {
    font-size: 0.72rem;
    font-weight: 800;
    color: #94a3b8;
    letter-spacing: 0.08em;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.pack-items-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.pack-items-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.item-chk {
    color: #10b981;
    font-weight: 900;
    font-size: 0.95rem;
    flex-shrink: 0;
    margin-top: 1px;
}

.item-detail strong {
    display: block;
    font-size: 0.86rem;
    color: #f1f5f9;
}

.item-detail span {
    display: block;
    font-size: 0.74rem;
    color: #94a3b8;
}

.pack-action-btn {
    margin-top: auto;
}

/* ==========================================================================
   CREATIVE UNBOXING SHOWCASE SECTION
   ========================================================================== */
.unboxing-showcase-wrapper {
    margin: 50px 0 60px 0;
}

.unboxing-showcase-card {
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.85) 0%, rgba(10, 15, 26, 0.95) 100%);
    border: 1px solid rgba(99, 102, 241, 0.25);
    border-radius: 24px;
    padding: 38px 32px;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.4);
}

.unboxing-header {
    max-width: 650px;
    margin: 0 auto 34px auto;
}

.unboxing-badge {
    background: rgba(99, 102, 241, 0.15);
    color: #a5b4fc;
    font-size: 0.74rem;
    font-weight: 800;
    padding: 4px 12px;
    border-radius: 9999px;
    border: 1px solid rgba(99, 102, 241, 0.3);
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 10px;
}

.unboxing-title {
    font-size: 1.6rem;
    font-weight: 800;
    color: #ffffff;
    margin: 0 0 8px 0;
}

.unboxing-sub {
    font-size: 0.9rem;
    color: #94a3b8;
    margin: 0;
}

.unboxing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.unboxing-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 16px;
    padding: 22px;
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.unboxing-item:hover {
    transform: translateY(-4px);
    border-color: rgba(99, 102, 241, 0.4);
}

.unboxing-item.highlight-box {
    background: rgba(99, 102, 241, 0.1);
    border-color: rgba(129, 140, 248, 0.4);
}

.unboxing-icon-box {
    font-size: 1.8rem;
    margin-bottom: 12px;
}

.unboxing-item h4 {
    font-size: 0.98rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 6px 0;
}

.unboxing-item p {
    font-size: 0.82rem;
    color: #94a3b8;
    line-height: 1.45;
    margin: 0;
}

/* ==========================================================================
   RAW CREDIT CARDS & RULES (TAB 2)
   ========================================================================== */
.reseller-credit-rules-bar {
    background: rgba(15, 23, 42, 0.75);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(99, 102, 241, 0.25);
    border-radius: 16px;
    padding: 18px 24px;
    margin: 0 0 36px 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

.rules-bar-title {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.92rem;
    font-weight: 700;
    color: #e2e8f0;
}

.rules-bar-title .star-icon {
    color: #fbbf24;
}

.rules-chips-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
}

.rule-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    font-size: 0.84rem;
    color: #cbd5e1;
}

.rule-chip.featured-chip {
    background: rgba(99, 102, 241, 0.15);
    border-color: rgba(99, 102, 241, 0.4);
}

.chip-credits {
    font-weight: 800;
    color: #a5b4fc;
}

.chip-credits.free-credit {
    color: #10b981;
}

.rules-note {
    font-size: 0.8rem;
    color: #94a3b8;
    margin: 0;
}

.reseller-cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 50px;
}

.reseller-card {
    position: relative;
    background: rgba(15, 23, 42, 0.65);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 20px;
    padding: 26px 20px;
    display: flex;
    flex-direction: column;
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.reseller-card:hover {
    transform: translateY(-6px);
    border-color: rgba(99, 102, 241, 0.45);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.4), 0 0 25px rgba(99, 102, 241, 0.15);
}

.featured-reseller-card {
    background: linear-gradient(180deg, rgba(30, 27, 75, 0.6) 0%, rgba(15, 23, 42, 0.8) 100%);
    border: 1.5px solid rgba(129, 140, 248, 0.55);
}

.featured-glow-ribbon {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(90deg, #6366f1, #8b5cf6);
    color: #ffffff;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    padding: 3px 12px;
    border-radius: 9999px;
    text-transform: uppercase;
}

.reseller-card-top {
    margin-bottom: 16px;
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.pack-badge {
    font-size: 0.72rem;
    font-weight: 700;
    color: #94a3b8;
    text-transform: uppercase;
    display: block;
    margin-bottom: 6px;
}

.pack-title {
    font-size: 1.25rem;
    font-weight: 800;
    color: #ffffff;
    margin: 0 0 8px 0;
}

.pack-credits-display {
    display: flex;
    align-items: baseline;
    gap: 6px;
    margin-bottom: 10px;
}

.credits-num {
    font-size: 1.8rem;
    font-weight: 900;
    color: #818cf8;
}

.credits-unit {
    font-size: 0.84rem;
    color: #94a3b8;
}

.pack-price-block {
    display: flex;
    flex-direction: column;
}

.price-val {
    font-size: 1.6rem;
    font-weight: 900;
    color: #ffffff;
}

.price-sub {
    font-size: 0.76rem;
    color: #34d399;
    font-weight: 600;
}

.pack-features-list {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex-grow: 1;
}

.pack-features-list li {
    font-size: 0.8rem;
    color: #cbd5e1;
    display: flex;
    gap: 8px;
}

.pack-features-list .chk {
    color: #10b981;
    font-weight: bold;
}

/* ==========================================================================
   PROFIT SIMULATOR SECTION
   ========================================================================== */
.reseller-simulator-wrapper {
    margin: 50px 0 60px 0;
}

.simulator-card {
    background: linear-gradient(135deg, rgba(17, 24, 39, 0.85) 0%, rgba(15, 23, 42, 0.95) 100%);
    border: 1px solid rgba(99, 102, 241, 0.3);
    border-radius: 24px;
    padding: 36px 32px;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.45);
}

.simulator-header {
    text-align: center;
    max-width: 650px;
    margin: 0 auto 34px auto;
}

.sim-badge {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(99, 102, 241, 0.18);
    border: 1px solid rgba(99, 102, 241, 0.35);
    border-radius: 9999px;
    color: #a5b4fc;
    font-size: 0.74rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 10px;
}

.sim-title {
    font-size: 1.6rem;
    font-weight: 800;
    color: #ffffff;
    margin: 0 0 8px 0;
}

.sim-sub {
    font-size: 0.9rem;
    color: #94a3b8;
    margin: 0;
}

.simulator-body {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 36px;
    align-items: stretch;
}

.sim-controls-col {
    display: flex;
    flex-direction: column;
    gap: 20px;
    justify-content: center;
}

.sim-range-group {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 14px;
    padding: 16px 20px;
}

.sim-label-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.sim-label-row label {
    font-size: 0.88rem;
    font-weight: 600;
    color: #e2e8f0;
}

.sim-val-pill {
    font-size: 0.96rem;
    font-weight: 800;
    color: #818cf8;
    background: rgba(99, 102, 241, 0.15);
    border: 1px solid rgba(99, 102, 241, 0.3);
    padding: 4px 10px;
    border-radius: 8px;
}

.sim-slider {
    width: 100%;
    height: 8px;
    border-radius: 9999px;
    background: #1e293b;
    outline: none;
    cursor: pointer;
    -webkit-appearance: none;
    appearance: none;
}

.sim-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #6366f1;
    border: 2.5px solid #ffffff;
    box-shadow: 0 0 12px rgba(99, 102, 241, 0.6);
    cursor: pointer;
    transition: transform 0.15s ease;
}

.sim-slider::-webkit-slider-thumb:hover {
    transform: scale(1.15);
}

.range-ticks {
    display: flex;
    justify-content: space-between;
    font-size: 0.74rem;
    color: #64748b;
    margin-top: 8px;
}

.sim-pack-recommendation {
    background: rgba(99, 102, 241, 0.12);
    border: 1px solid rgba(99, 102, 241, 0.3);
    border-radius: 10px;
    padding: 10px 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.82rem;
    color: #cbd5e1;
}

.sim-pack-recommendation .rec-icon {
    font-size: 1.1rem;
}

.sim-pack-recommendation strong {
    color: #a5b4fc;
}

.sim-results-col {
    display: flex;
}

.sim-result-card {
    background: linear-gradient(180deg, rgba(30, 27, 75, 0.5) 0%, rgba(15, 23, 42, 0.85) 100%);
    border: 1.5px solid rgba(99, 102, 241, 0.4);
    border-radius: 18px;
    padding: 28px 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 100%;
}

.res-title {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: #94a3b8;
    text-transform: uppercase;
    text-align: center;
    display: block;
}

.res-big-number {
    font-size: 2.8rem;
    font-weight: 900;
    color: #10b981;
    letter-spacing: -0.02em;
    text-align: center;
    margin: 8px 0 16px 0;
    text-shadow: 0 0 30px rgba(16, 185, 129, 0.35);
}

.res-details-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
    padding: 12px 14px;
}

.res-detail-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.82rem;
    color: #cbd5e1;
}

.res-detail-row.res-highlight {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 8px;
    color: #34d399;
}

/* BOTTOM CTA BAR */
.reseller-cta-bar {
    margin-top: 20px;
}

.cta-inner-card {
    background: linear-gradient(135deg, rgba(30, 27, 75, 0.8) 0%, rgba(15, 23, 42, 0.9) 100%);
    border: 1.5px solid rgba(99, 102, 241, 0.4);
    border-radius: 20px;
    padding: 32px 36px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 28px;
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.35);
}

.cta-text-col {
    text-align: left;
}

.cta-text-col h3 {
    font-size: 1.4rem;
    font-weight: 800;
    color: #ffffff;
    margin: 0 0 8px 0;
}

.cta-text-col p {
    font-size: 0.9rem;
    color: #cbd5e1;
    margin: 0;
}

.cta-btns-col {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

/* RESELLER MODAL */
.reseller-modal-card {
    max-width: 580px;
    background: linear-gradient(180deg, #111827 0%, #0b0f19 100%);
    border: 1px solid rgba(99, 102, 241, 0.35);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.7), 0 0 40px rgba(99, 102, 241, 0.2);
}

.reseller-step-tag {
    background: rgba(99, 102, 241, 0.2);
    border: 1px solid rgba(99, 102, 241, 0.4);
    color: #c7d2fe;
}

/* RESPONSIVE BREAKPOINTS */
@media (max-width: 1100px) {
    .packs-business-grid {
        grid-template-columns: 1fr;
        max-width: 520px;
        margin-left: auto;
        margin-right: auto;
    }

    .pack-pro-featured {
        transform: none;
    }

    .pack-pro-featured:hover {
        transform: translateY(-8px);
    }

    .reseller-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .unboxing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 900px) {
    .simulator-body {
        grid-template-columns: 1fr;
    }

    .cta-inner-card {
        flex-direction: column;
        text-align: center;
        padding: 28px 20px;
    }

    .cta-text-col {
        text-align: center;
    }

    .cta-btns-col {
        flex-direction: column;
        width: 100%;
    }

    .cta-btns-col .btn {
        width: 100%;
    }
}

@media (max-width: 640px) {
    .pack-mode-toggle {
        flex-direction: column;
        border-radius: 18px;
        width: 100%;
    }

    .pack-mode-btn {
        width: 100%;
        justify-content: center;
    }

    .reseller-cards-grid {
        grid-template-columns: 1fr;
    }

    .unboxing-grid {
        grid-template-columns: 1fr;
    }

    .rules-chips-grid {
        flex-direction: column;
        align-items: stretch;
    }

    .res-big-number {
        font-size: 2.2rem;
    }
}





/* ==========================================================================
   COMPREHENSIVE MOBILE & TABLET RESPONSIVE SYSTEM (PHONE FIRST UX)
   ========================================================================== */

/* Prevent horizontal overflow on mobile */
html, body {
    max-width: 100vw;
    overflow-x: hidden;
    -webkit-text-size-adjust: 100%;
}

/* Touch targets optimization */
button, a, input, select {
    touch-action: manipulation;
}

/* 1. HAMBURGER MENU TOGGLE BUTTON */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    cursor: pointer;
    padding: 0;
    gap: 5px;
    transition: var(--transition);
    flex-shrink: 0;
    z-index: 1002;
}

.menu-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--text-main);
    border-radius: 2px;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.2s ease;
}

.menu-toggle:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(99, 102, 241, 0.4);
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* 2. MOBILE DRAWER NAVIGATION */
.mobile-drawer {
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    height: calc(100vh - 70px);
    background: rgba(7, 9, 19, 0.98);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    z-index: 999;
    padding: 20px 20px 80px;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    display: flex;
    flex-direction: column;
    gap: 16px;
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease;
    border-bottom: 1px solid var(--border-color);
}

[data-theme="light"] .mobile-drawer {
    background: rgba(248, 250, 252, 0.98);
}

.mobile-drawer.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
}

.mobile-nav-list {
    display: flex;
    flex-direction: column;
    gap: 6px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-nav-link {
    display: flex;
    align-items: center;
    padding: 12px 16px;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-main);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: all 0.2s ease;
    text-decoration: none;
}

[data-theme="light"] .mobile-nav-link {
    background: rgba(0, 0, 0, 0.03);
    border-color: rgba(0, 0, 0, 0.06);
}

.mobile-nav-link:hover, .mobile-nav-link:active {
    background: rgba(99, 102, 241, 0.15);
    color: #818cf8;
    border-color: rgba(99, 102, 241, 0.35);
    transform: translateX(4px);
}

.mobile-drawer-footer {
    margin-top: 10px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-top: 16px;
    border-top: 1px solid var(--border-color);
}

.mobile-social-bar {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: center;
    margin-top: 10px;
}

.mobile-social-title {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 600;
}

.mobile-social-icons {
    display: flex;
    gap: 10px;
    justify-content: center;
}

.social-icon-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
    transition: transform 0.2s ease, background 0.2s ease;
}

.social-icon-btn svg {
    width: 18px;
    height: 18px;
}

.social-icon-btn:hover {
    transform: scale(1.1);
}

.social-wa { background: #25d366; }
.social-tg { background: #229ed9; }
.social-x { background: #000000; }
.social-yt { background: #ff0000; }
.social-ig { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.social-dc { background: #5865f2; }

/* 3. STICKY MOBILE BOTTOM BAR */
.mobile-bottom-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(7, 9, 19, 0.94);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 998;
    padding: 8px 12px calc(8px + env(safe-area-inset-bottom, 8px));
    box-shadow: 0 -8px 24px rgba(0, 0, 0, 0.4);
}

[data-theme="light"] .mobile-bottom-bar {
    background: rgba(255, 255, 255, 0.96);
    border-top-color: rgba(0, 0, 0, 0.08);
}

.mobile-bottom-bar-inner {
    display: grid;
    grid-template-columns: 1fr 1fr 1.3fr;
    gap: 8px;
    align-items: center;
    max-width: 500px;
    margin: 0 auto;
}

.mobile-bottom-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 10px 8px;
    border-radius: 12px;
    font-family: var(--font-heading);
    font-size: 0.82rem;
    font-weight: 700;
    text-decoration: none;
    border: none;
    cursor: pointer;
    min-height: 44px;
    transition: transform 0.15s ease;
    white-space: nowrap;
}

.mobile-bottom-btn:active {
    transform: scale(0.96);
}

.mb-whatsapp {
    background: #25d366;
    color: #ffffff;
}

.mb-trial {
    background: rgba(16, 185, 129, 0.15);
    color: #34d399;
    border: 1px solid rgba(16, 185, 129, 0.35);
}

.mb-primary {
    background: var(--primary-gradient);
    color: #ffffff;
    box-shadow: 0 4px 14px rgba(99, 102, 241, 0.4);
}

/* 4. BREAKPOINT: TABLET & MOBILE (< 1024px) */
@media (max-width: 1024px) {
    .nav-desktop {
        display: none !important;
    }

    .menu-toggle {
        display: flex !important;
    }

    .btn-header {
        display: none !important;
    }

    .header-actions .btn-trial-badge,
    .header-actions .open-trial-btn,
    .btn-trial-badge.open-trial-btn {
        display: none !important;
    }
}

/* 5. BREAKPOINT: MOBILE PHONES (< 768px) */
@media (max-width: 768px) {
    body {
        padding-bottom: 64px; /* Space for bottom sticky bar */
    }

    .mobile-bottom-bar {
        display: block;
    }

    .promo-bar {
        padding: 8px 0;
        font-size: 0.78rem;
    }

    .promo-inner {
        flex-direction: column;
        gap: 6px;
        padding: 0 16px;
        text-align: center;
    }

    .promo-close {
        display: none;
    }

    .header-inner {
        height: 60px;
    }

    .mobile-drawer {
        top: 60px;
        height: calc(100vh - 60px);
    }

    .header-actions .btn-trial-badge,
    .header-actions .open-trial-btn,
    .btn-trial-badge.open-trial-btn {
        display: none !important;
    }

    /* Hero Section */
    .hero-section {
        padding: 30px 0 20px;
    }

    .hero-pill {
        font-size: 0.76rem;
        padding: 5px 10px;
        margin: 0 auto 14px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero-title {
        font-size: 1.85rem;
        line-height: 1.2;
        word-break: break-word;
    }

    .hero-subtitle-block {
        font-size: 0.95rem;
        margin-top: 8px;
    }

    .hero-description {
        font-size: 0.9rem;
        margin: 12px auto 20px;
    }

    .hero-cta-group {
        flex-direction: column;
        width: 100%;
        max-width: 320px;
        margin: 0 auto;
        gap: 10px;
    }

    .hero-cta-group .btn {
        width: 100%;
        min-height: 48px;
        font-size: 0.95rem;
    }

    .hero-metrics {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
        margin-top: 20px;
    }

    .metric-card {
        padding: 12px 8px;
    }

    .metric-number {
        font-size: 1.4rem;
    }

    .metric-label {
        font-size: 0.75rem;
    }

    /* Pricing Section */
    .pricing-grid, .packs-grid, .pricing-cards-container {
        grid-template-columns: 1fr !important;
        max-width: 400px;
        margin: 0 auto;
        gap: 20px;
    }

    .pricing-card {
        padding: 24px 20px;
    }

    .pricing-card.featured {
        transform: none !important;
    }

    /* VOD & Posters */
    .vod-spotlight-card {
        flex-direction: column !important;
        padding: 16px;
    }

    .spotlight-poster {
        width: 100% !important;
        max-width: 240px;
        margin: 0 auto 16px;
    }

    .vod-grid, .posters-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 10px;
    }

    .vod-card, .poster-card {
        border-radius: 12px;
    }

    /* Channels & Sport */
    .channels-categories-nav, .category-tabs-wrapper {
        overflow-x: auto;
        white-space: nowrap;
        padding-bottom: 8px;
        -webkit-overflow-scrolling: touch;
        display: flex;
        gap: 8px;
    }

    .channel-category-btn, .cat-tab {
        flex-shrink: 0;
    }

    .channels-grid, .sports-grid {
        grid-template-columns: 1fr !important;
        gap: 14px;
    }

    /* Comparison Table */
    .comparison-table-wrap, .table-responsive {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        margin: 16px -12px;
        padding: 0 12px;
    }

    .comparison-table {
        min-width: 600px;
    }

    /* Modals */
    .modal-backdrop {
        padding: 10px;
    }

    .modal-card, .checkout-modal-card, .reseller-modal-card {
        padding: 20px 16px;
        width: 100% !important;
        max-height: 94vh;
        border-radius: 16px;
    }

    /* Forms on Mobile */
    input[type="text"],
    input[type="email"],
    input[type="tel"],
    input[type="password"],
    select,
    textarea {
        font-size: 16px !important; /* Prevents auto-zoom on iOS */
        min-height: 48px;
    }

    /* Section Titles */
    .section-title {
        font-size: 1.8rem !important;
    }

    .section-description {
        font-size: 0.9rem !important;
    }
}

/* 6. SMALL PHONES (< 480px) */
@media (max-width: 480px) {
    .hero-title {
        font-size: 1.65rem;
    }

    .logo-title {
        font-size: 1rem;
    }

    .logo-sub {
        font-size: 0.65rem;
    }

    .mobile-bottom-btn {
        font-size: 0.75rem;
        padding: 8px 4px;
    }
}


/* ==========================================================================
   WORDPRESS PAGES STYLES (SEO PAGES & INNER CONTENT)
   ========================================================================== */
.page-content-wrapper {
    position: relative;
    z-index: 2;
    min-height: 70vh;
}

.page-hero-banner {
    padding: 60px 0 40px;
    background: radial-gradient(ellipse at top, rgba(99, 102, 241, 0.15) 0%, transparent 70%);
    border-bottom: 1px solid var(--border-color);
    text-align: center;
}

.page-breadcrumbs {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 0.88rem;
    color: var(--text-dim);
    margin-bottom: 16px;
}

.page-breadcrumbs a {
    color: #818cf8;
    text-decoration: none;
    transition: color 0.2s ease;
}

.page-breadcrumbs a:hover {
    color: #ffffff;
}

.page-breadcrumbs .sep {
    color: var(--text-dim);
}

.page-breadcrumbs .current {
    color: var(--text-muted);
}

.page-main-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--text-main);
    max-width: 900px;
    margin: 0 auto 16px;
    line-height: 1.2;
}

.page-title-glow-line {
    width: 80px;
    height: 4px;
    background: var(--primary-gradient);
    border-radius: 2px;
    margin: 0 auto;
}

.page-body-section {
    padding: 50px 0 80px;
}

.page-article-box {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 44px 40px;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: var(--shadow-md);
    max-width: 960px;
    margin: 0 auto 40px;
    line-height: 1.8;
}

[data-theme="light"] .page-article-box {
    background: #ffffff;
    border-color: rgba(0, 0, 0, 0.08);
}

.page-article-box h2 {
    font-size: 1.7rem;
    font-weight: 700;
    margin: 36px 0 16px;
    color: var(--text-main);
    position: relative;
    padding-left: 14px;
}

.page-article-box h2::before {
    content: '';
    position: absolute;
    left: 0;
    top: 4px;
    bottom: 4px;
    width: 4px;
    background: var(--primary-gradient);
    border-radius: 2px;
}

.page-article-box h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin: 24px 0 12px;
    color: #a5b4fc;
}

.page-article-box p {
    margin-bottom: 18px;
    color: var(--text-muted);
    font-size: 1.02rem;
}

.page-article-box strong {
    color: var(--text-main);
}

.page-article-box ul, .page-article-box ol {
    margin: 16px 0 24px 20px;
    color: var(--text-muted);
}

.page-article-box li {
    margin-bottom: 10px;
    line-height: 1.6;
}

.page-article-box a {
    color: #818cf8;
    text-decoration: underline;
    font-weight: 500;
}

.page-article-box a:hover {
    color: #c084fc;
}

.page-callout-card {
    background: rgba(99, 102, 241, 0.08);
    border: 1px solid rgba(99, 102, 241, 0.3);
    border-radius: 14px;
    padding: 20px 24px;
    margin: 28px 0;
}

.page-callout-card h4 {
    font-size: 1.15rem;
    font-weight: 700;
    color: #c7d2fe;
    margin-bottom: 8px;
}

.page-callout-card p {
    margin: 0;
    font-size: 0.95rem;
    color: #cbd5e1;
}

.page-step-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 18px;
    margin: 28px 0;
}

.page-step-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    border-radius: 14px;
    padding: 22px 18px;
    position: relative;
}

.page-step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    background: var(--primary-gradient);
    color: #ffffff;
    font-weight: 800;
    border-radius: 10px;
    margin-bottom: 12px;
    font-size: 0.95rem;
}

.page-bottom-cta-card {
    background: linear-gradient(135deg, rgba(30, 27, 75, 0.9) 0%, rgba(15, 23, 42, 0.95) 100%);
    border: 1.5px solid rgba(99, 102, 241, 0.4);
    border-radius: 20px;
    padding: 36px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 28px;
    max-width: 960px;
    margin: 0 auto;
    box-shadow: var(--shadow-lg);
}

.page-bottom-cta-card .cta-card-content h3 {
    font-size: 1.4rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 8px;
}

.page-bottom-cta-card .cta-card-content p {
    font-size: 0.95rem;
    color: #cbd5e1;
    margin: 0;
}

.page-bottom-cta-card .cta-card-actions {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .page-article-box {
        padding: 24px 18px;
        border-radius: 16px;
    }

    .page-main-title {
        font-size: 2rem;
    }

    .page-hero-banner {
        padding: 40px 0 24px;
    }

    .page-bottom-cta-card {
        flex-direction: column;
        text-align: center;
        padding: 28px 20px;
    }

    .page-bottom-cta-card .cta-card-actions {
        flex-direction: column;
        width: 100%;
    }

    .page-bottom-cta-card .cta-card-actions .btn {
        width: 100%;
    }
}
