/* ============================================
   TV Premium — Styles
   ============================================ */

:root {
    /* Brand palette — inspired by MundoTV logo (blue globe + orange swoosh) */
    --bg: #050a1a;
    --bg-2: #081030;
    --bg-3: #0d1840;
    --surface: rgba(255, 255, 255, 0.04);
    --surface-2: rgba(255, 255, 255, 0.07);
    --border: rgba(120, 160, 255, 0.12);
    --border-hover: rgba(255, 138, 40, 0.45);

    --text: #ffffff;
    --text-muted: #9aa8c7;
    --text-dim: #6a7898;

    /* Orange (primary action) */
    --primary: #ff8a28;
    --primary-2: #ffb366;
    --primary-dark: #e36a00;

    /* Blue (secondary / brand accent) */
    --secondary: #1f8bff;
    --secondary-2: #5eb6ff;
    --secondary-dark: #0a63c7;
    --deep-blue: #0a2a6b;

    /* Signature gradient: blue → orange (logo identity) */
    --gradient: linear-gradient(135deg, #1f8bff 0%, #5eb6ff 35%, #ff8a28 100%);
    --gradient-warm: linear-gradient(135deg, #ff8a28 0%, #ffb366 100%);
    --gradient-cool: linear-gradient(135deg, #1f8bff 0%, #5eb6ff 100%);
    --gradient-soft: linear-gradient(135deg, rgba(31,139,255,0.18) 0%, rgba(255,138,40,0.18) 100%);

    --danger: #ff3a3a;
    --success: #22c55e;
    --whatsapp: #25d366;

    --radius-sm: 8px;
    --radius: 14px;
    --radius-lg: 22px;
    --radius-xl: 32px;

    --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.25);
    --shadow: 0 10px 40px rgba(0, 0, 0, 0.35);
    --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.45);
    --shadow-glow: 0 0 40px rgba(255, 138, 40, 0.35);
    --shadow-glow-blue: 0 0 40px rgba(31, 139, 255, 0.45);

    --container: 1200px;
    --nav-h: 128px;

    --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* Reset */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--nav-h);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg);
    color: var(--text);
    font-size: 16px;
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    min-height: 100vh;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: color 0.2s; }
button { font: inherit; border: 0; background: none; color: inherit; cursor: pointer; }
ul { list-style: none; }

.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
}

h1, h2, h3, h4 {
    font-family: 'Poppins', 'Inter', sans-serif;
    line-height: 1.15;
    letter-spacing: -0.02em;
    font-weight: 800;
}

/* ============================================
   Background decor
   ============================================ */
.bg-decor {
    position: fixed;
    inset: 0;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
}

.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.4;
    animation: float 18s ease-in-out infinite;
}

.blob-1 {
    width: 600px; height: 600px;
    background: radial-gradient(circle, #1f8bff 0%, transparent 70%);
    top: -200px; left: -100px;
    opacity: 0.45;
}
.blob-2 {
    width: 500px; height: 500px;
    background: radial-gradient(circle, #ff8a28 0%, transparent 70%);
    top: 30%; right: -200px;
    animation-delay: -6s;
    opacity: 0.3;
}
.blob-3 {
    width: 700px; height: 700px;
    background: radial-gradient(circle, #5eb6ff 0%, transparent 70%);
    bottom: -300px; left: 30%;
    animation-delay: -12s;
    opacity: 0.25;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(50px, -30px) scale(1.1); }
    66% { transform: translate(-30px, 50px) scale(0.95); }
}

.grid-pattern {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 50px 50px;
    mask-image: radial-gradient(ellipse at center, black 0%, transparent 70%);
}

/* ============================================
   Buttons
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 22px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: transform 0.25s var(--ease), box-shadow 0.25s, background 0.25s;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}

.btn-lg {
    padding: 16px 28px;
    font-size: 16px;
}

.btn-primary {
    background: var(--gradient);
    color: #fff;
    box-shadow: 0 8px 24px rgba(255, 138, 40, 0.4), inset 0 1px 0 rgba(255,255,255,0.2);
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(255, 138, 40, 0.55), inset 0 1px 0 rgba(255,255,255,0.3);
}
.btn-primary::before {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,0.3) 50%, transparent 70%);
    transform: translateX(-100%);
    transition: transform 0.6s;
}
.btn-primary:hover::before {
    transform: translateX(100%);
}

.btn-ghost {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text);
    border: 1px solid var(--border);
    backdrop-filter: blur(10px);
}
.btn-ghost:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.btn-white {
    background: #fff;
    color: #0a63c7;
    font-weight: 800;
    box-shadow: 0 10px 30px rgba(0,0,0,0.25);
}
.btn-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.35);
}

.btn-whatsapp {
    background: rgba(37, 211, 102, 0.15);
    color: var(--whatsapp);
    border: 1px solid rgba(37, 211, 102, 0.4);
    padding: 10px 20px;
}
.btn-whatsapp:hover {
    background: var(--whatsapp);
    color: #fff;
    transform: translateY(-2px);
}

.btn-block { width: 100%; }

/* ============================================
   Badge
   ============================================ */
.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(255, 138, 40, 0.1);
    border: 1px solid rgba(255, 138, 40, 0.3);
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: #ffb366;
    text-transform: uppercase;
}

.badge-white {
    background: rgba(255,255,255,0.25);
    border-color: rgba(255,255,255,0.4);
    color: #fff;
}

.badge-dot {
    width: 6px; height: 6px;
    background: var(--primary);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--primary);
    animation: blink 1.8s ease infinite;
}
.pulse-badge {
    background: rgba(255, 58, 58, 0.1);
    border-color: rgba(255, 58, 58, 0.4);
    color: #ff6b6b;
}
.pulse-badge .badge-dot {
    background: var(--danger);
    box-shadow: 0 0 8px var(--danger);
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

/* ============================================
   Navbar
   ============================================ */
.navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    height: var(--nav-h);
    z-index: 100;
    transition: all 0.4s var(--ease);
    backdrop-filter: blur(0);
}
.navbar::before {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(31,139,255,0.5) 25%, rgba(255,138,40,0.5) 75%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s;
}
.navbar::after {
    content: '';
    position: absolute;
    bottom: 0; left: -100%;
    width: 40%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #1f8bff, #ff8a28, transparent);
    animation: navSweep 6s linear infinite;
    filter: blur(1px);
    opacity: 0;
    transition: opacity 0.4s;
}
.navbar.scrolled {
    background: rgba(6, 11, 30, 0.75);
    backdrop-filter: blur(24px) saturate(160%);
    -webkit-backdrop-filter: blur(24px) saturate(160%);
    height: calc(var(--nav-h) - 12px);
}
.navbar.scrolled::before,
.navbar.scrolled::after { opacity: 1; }

@keyframes navSweep {
    0% { left: -40%; }
    100% { left: 100%; }
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    gap: 20px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.logo-icon {
    position: relative;
    height: 110px;
    max-width: 420px;
    display: flex;
    align-items: center;
    overflow: visible;
    flex-shrink: 0;
    transition: transform 0.4s var(--ease);
}
.logo:hover .logo-icon { transform: scale(1.05); }

.logo-svg,
.logo-img {
    max-height: 100%;
    max-width: 100%;
    width: auto;
    height: auto;
    display: block;
    filter: drop-shadow(0 6px 16px rgba(31, 139, 255, 0.4));
    transition: filter 0.4s;
}
.logo-svg { height: 100%; }
.logo:hover .logo-svg,
.logo:hover .logo-img {
    filter: drop-shadow(0 8px 22px rgba(31, 139, 255, 0.6)) drop-shadow(0 4px 12px rgba(255, 138, 40, 0.3));
}
/* When real logo.png is present, hide the SVG fallback */
.logo-icon:has(.logo-img) .logo-svg { display: none; }
.logo-dot {
    position: absolute;
    top: 2px; right: 2px;
    width: 9px; height: 9px;
    background: #ff3a3a;
    border-radius: 50%;
    box-shadow: 0 0 8px #ff3a3a, 0 0 0 2px var(--bg);
    animation: blink 1.5s infinite;
    z-index: 3;
}

.logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.logo-title { font-size: 18px; font-weight: 600; }
.logo-title strong { font-weight: 800; }
.logo-sub {
    font-size: 10px;
    color: var(--text-muted);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    font-weight: 600;
}

.nav-links {
    display: flex;
    gap: 6px;
    font-weight: 600;
    font-size: 14.5px;
    padding: 6px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 999px;
    backdrop-filter: blur(10px);
}
.nav-links a {
    color: var(--text-muted);
    position: relative;
    padding: 8px 18px;
    border-radius: 999px;
    transition: color 0.25s, background 0.25s;
    z-index: 1;
}
.nav-links a:hover {
    color: var(--text);
    background: rgba(255,255,255,0.06);
}
.nav-links a.active {
    color: #fff;
    background: var(--gradient);
    box-shadow: 0 4px 12px rgba(31,139,255,0.3);
}

.nav-cta {
    padding: 11px 20px;
    position: relative;
    font-weight: 700;
}
.nav-cta::after {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 999px;
    background: var(--gradient);
    opacity: 0;
    z-index: -1;
    filter: blur(10px);
    transition: opacity 0.3s;
}
.nav-cta:hover::after { opacity: 0.7; }

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
}
.nav-toggle span {
    display: block;
    width: 24px; height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: 0.3s;
}
.nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================
   Hero
   ============================================ */
.hero {
    min-height: 100vh;
    padding: calc(var(--nav-h) + 40px) 0 60px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

/* Animated mesh background */
.hero-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
}
.hero-mesh {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    mix-blend-mode: screen;
    opacity: 0.35;
    animation: meshMove 18s ease-in-out infinite;
}
.hero-mesh.m1 {
    width: 500px; height: 500px;
    background: radial-gradient(circle, #1f8bff 0%, transparent 70%);
    top: 10%; left: -10%;
}
.hero-mesh.m2 {
    width: 600px; height: 600px;
    background: radial-gradient(circle, #ff8a28 0%, transparent 70%);
    top: 30%; right: -15%;
    animation-delay: -6s;
    opacity: 0.28;
}
.hero-mesh.m3 {
    width: 400px; height: 400px;
    background: radial-gradient(circle, #8e2de2 0%, transparent 70%);
    bottom: 0; left: 40%;
    animation-delay: -12s;
    opacity: 0.22;
}
@keyframes meshMove {
    0%, 100% { transform: translate(0,0) scale(1); }
    33% { transform: translate(60px,-40px) scale(1.1); }
    66% { transform: translate(-40px,60px) scale(0.95); }
}

.hero-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(120,160,255,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(120,160,255,0.04) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse at center, black 20%, transparent 80%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 20%, transparent 80%);
    animation: gridDrift 40s linear infinite;
}
@keyframes gridDrift {
    from { background-position: 0 0; }
    to { background-position: 60px 60px; }
}

/* Particles */
.particles {
    position: absolute;
    inset: 0;
    overflow: hidden;
}
.particle {
    position: absolute;
    width: 2px; height: 2px;
    background: rgba(255,255,255,0.7);
    border-radius: 50%;
    animation: particleFloat linear infinite;
    will-change: transform;
}
@keyframes particleFloat {
    from { transform: translateY(110vh) translateX(0); opacity: 0; }
    10%  { opacity: 1; }
    90%  { opacity: 1; }
    to   { transform: translateY(-20vh) translateX(var(--dx, 20px)); opacity: 0; }
}

.hero-spotlight {
    position: absolute;
    width: 600px; height: 600px;
    left: var(--sx, 50%); top: var(--sy, 50%);
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(120,180,255,0.06) 0%, transparent 60%);
    pointer-events: none;
    transition: left 0.4s ease-out, top 0.4s ease-out;
}

.hero-inner { position: relative; z-index: 1; }

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

.hero-content { position: relative; }

.hero-title {
    font-size: clamp(2.5rem, 6vw, 5rem);
    margin: 20px 0 24px;
    font-weight: 900;
    line-height: 1.05;
    min-height: 3.15em;
}
.hero-title .highlight { color: #fff; position: relative; display: inline-block; }

/* Typewriter cursor */
.tw-cursor {
    display: inline-block;
    width: 0.08em;
    height: 0.9em;
    background: linear-gradient(180deg, #1f8bff, #ff8a28);
    vertical-align: -8%;
    margin-left: 6px;
    border-radius: 2px;
    animation: twBlink 0.65s steps(2) infinite;
    box-shadow: 0 0 8px rgba(255, 138, 40, 0.6);
}
.tw-cursor.done {
    opacity: 0;
    transition: opacity 0.6s ease 1.5s;
}
@keyframes twBlink {
    from, to { opacity: 1; }
    50% { opacity: 0; }
}

.shine-text {
    background: linear-gradient(100deg, #fff 0%, #fff 30%, #ffd280 50%, #fff 70%, #fff 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shineText 4s linear infinite;
}
@keyframes shineText {
    from { background-position: 200% center; }
    to   { background-position: -200% center; }
}
.gradient-text {
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.hero-desc {
    font-size: clamp(1rem, 1.3vw, 1.15rem);
    color: var(--text-muted);
    max-width: 520px;
    margin-bottom: 32px;
}
.hero-desc strong { color: var(--text); font-weight: 700; }

.hero-ctas {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 22px;
}
.stat {
    display: flex;
    align-items: center;
    gap: 12px;
}
.stat-ic {
    width: 40px; height: 40px;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, rgba(31,139,255,0.15), rgba(255,138,40,0.15));
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 10px;
    font-size: 16px;
    color: var(--primary-2);
}
.stat-num {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    font-weight: 900;
    line-height: 1;
}
.stat-label {
    font-size: 11px;
    letter-spacing: 0.15em;
    color: var(--text-muted);
    text-transform: uppercase;
    margin-top: 4px;
    font-weight: 600;
}
.stat-sep {
    width: 1px; height: 40px;
    background: var(--border);
}

/* Enhanced live badge with waves */
.hero-live-badge {
    position: relative;
    padding-right: 14px;
    gap: 10px;
}
.hero-live-badge .viewers-count {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 3px 8px;
    margin-left: 4px;
    background: rgba(255,255,255,0.08);
    border-radius: 999px;
    font-size: 10px;
    color: #fff;
    font-weight: 700;
    letter-spacing: 0;
    text-transform: none;
}
.hero-live-badge .viewers-count i { font-size: 9px; opacity: 0.8; }
.badge-waves {
    position: absolute;
    left: 16px; top: 50%;
    transform: translate(-50%, -50%);
    width: 6px; height: 6px;
    pointer-events: none;
}
.badge-waves span {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 1.5px solid var(--danger);
    animation: waveOut 2s ease-out infinite;
    opacity: 0;
}
.badge-waves span:nth-child(2) { animation-delay: 0.6s; }
.badge-waves span:nth-child(3) { animation-delay: 1.2s; }
@keyframes waveOut {
    0%   { transform: scale(1); opacity: 0.8; }
    100% { transform: scale(3.2); opacity: 0; }
}

/* Hero CTA pulse */
.hero-cta-main { position: relative; overflow: visible; }
.cta-pulse {
    position: absolute;
    inset: 0;
    border-radius: 999px;
    background: var(--gradient);
    z-index: -1;
    animation: ctaPulse 2.2s ease-out infinite;
}
@keyframes ctaPulse {
    0%   { opacity: 0.7; transform: scale(1); }
    100% { opacity: 0; transform: scale(1.25); }
}

/* Hero visual: TV mockup + orbit */
.hero-visual {
    position: relative;
    min-height: 540px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Orbital rings with floating channel badges */
.orbit {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}
.orbit-ring {
    position: absolute;
    top: 50%; left: 50%;
    width: 560px; height: 560px;
    margin-top: -280px;
    margin-left: -280px;
    border: 1px dashed rgba(120, 180, 255, 0.18);
    border-radius: 50%;
    animation: orbitSpin 30s linear infinite;
    max-width: 95vw;
    max-height: 95vw;
}
.orbit-ring-2 {
    width: 440px; height: 440px;
    margin-top: -220px;
    margin-left: -220px;
    border-style: solid;
    border-color: rgba(255, 180, 120, 0.1);
    animation-duration: 22s;
    animation-direction: reverse;
}
@keyframes orbitSpin {
    from { transform: rotate(0deg); }
    to   { transform: rotate(360deg); }
}

.orbit-ch {
    position: absolute;
    top: calc(50% - 22px);
    left: calc(50% - 22px);
    width: 44px; height: 44px;
    background: var(--c, var(--primary));
    color: #fff;
    border-radius: 12px;
    display: grid;
    place-items: center;
    font-weight: 900;
    font-size: 13px;
    box-shadow: 0 8px 20px color-mix(in srgb, var(--c, var(--primary)) 45%, transparent), inset 0 1px 0 rgba(255,255,255,0.2);
    transform-origin: center;
    animation: orbitOrb 30s linear infinite;
    animation-delay: calc(var(--i, 0) * -5s);
}
@keyframes orbitOrb {
    from { transform: rotate(0deg) translateY(-280px) rotate(0deg); }
    to   { transform: rotate(360deg) translateY(-280px) rotate(-360deg); }
}

/* Sparkles */
.sparkle {
    position: absolute;
    color: #ffd280;
    font-size: 16px;
    text-shadow: 0 0 8px rgba(255, 210, 128, 0.6);
    animation: sparkleTwinkle 3s ease-in-out infinite;
    pointer-events: none;
}
.sparkle.s1 { top: 10%; left: 10%; animation-delay: 0s; }
.sparkle.s2 { top: 20%; right: 8%; animation-delay: -1s; font-size: 20px; color: #7cc5ff; }
.sparkle.s3 { bottom: 15%; right: 12%; animation-delay: -2s; }
.sparkle.s4 { bottom: 20%; left: 6%; font-size: 12px; color: #fff; animation-delay: -1.5s; }
@keyframes sparkleTwinkle {
    0%, 100% { opacity: 0; transform: scale(0.5) rotate(0deg); }
    50%      { opacity: 1; transform: scale(1.2) rotate(180deg); }
}

.tv-mockup {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 520px;
    background: linear-gradient(145deg, #0d1320 0%, #0a0f1c 100%);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 16px;
    box-shadow: var(--shadow-lg);
    animation: floatY 6s ease-in-out infinite;
}

@keyframes floatY {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

.tv-top-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
    padding: 0 8px;
}

.tv-live {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #0a0f1c;
    border: 1px solid var(--border);
    border-radius: 999px;
    padding: 6px 14px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.1em;
}
.tv-viewers {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(31, 139, 255, 0.12);
    border: 1px solid rgba(31, 139, 255, 0.3);
    color: #7cc5ff;
    border-radius: 999px;
    padding: 5px 12px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.02em;
}
.tv-viewers i { font-size: 10px; }
.live-dot {
    width: 7px; height: 7px;
    background: var(--danger);
    border-radius: 50%;
    animation: blink 1.2s infinite;
}

.tv-hd {
    background: var(--gradient-cool);
    color: #fff;
    padding: 4px 12px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.1em;
    box-shadow: 0 4px 12px rgba(31, 139, 255, 0.5);
}

.tv-screen {
    position: relative;
    aspect-ratio: 16 / 10;
    background: radial-gradient(circle at 50% 30%, #131a2e 0%, #070b16 100%);
    border-radius: var(--radius-lg);
    overflow: hidden;
    display: grid;
    place-items: center;
}

.channel-slide {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    gap: 14px;
    opacity: 0;
    transform: scale(0.85);
    transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
    padding: 30px;
}
.channel-slide.active {
    opacity: 1;
    transform: scale(1);
}

.ch-icon {
    position: relative;
    width: 110px; height: 110px;
    background: var(--cc, var(--primary));
    border-radius: 22px;
    display: grid;
    place-items: center;
    font-size: 40px;
    color: #fff;
    box-shadow: 0 20px 40px rgba(0,0,0,0.4), 0 0 40px color-mix(in srgb, var(--cc, var(--primary)) 50%, transparent);
    animation: iconPulse 2.5s ease-in-out infinite;
    overflow: hidden;
}
.ch-icon::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(145deg, rgba(255,255,255,0.15), transparent 50%);
    pointer-events: none;
}
.ch-brand {
    width: 62%;
    height: 62%;
    object-fit: contain;
    filter: drop-shadow(0 3px 6px rgba(0,0,0,0.25));
    position: relative;
    z-index: 1;
}
.ch-svg { width: 78%; height: auto; }
.ch-fallback {
    font-size: 40px;
    color: #fff;
    display: grid;
    place-items: center;
    position: relative;
    z-index: 1;
}

@keyframes iconPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.ch-name {
    font-size: 1.75rem;
    font-weight: 800;
    font-family: 'Poppins', sans-serif;
}
.ch-sub {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-top: -10px;
}

.tv-progress {
    position: absolute;
    bottom: 14px;
    left: 18px; right: 18px;
    height: 3px;
    background: rgba(255,255,255,0.1);
    border-radius: 999px;
    overflow: hidden;
}
.tv-progress-bar {
    height: 100%;
    width: 45%;
    background: linear-gradient(90deg, #1f8bff, #ff8a28);
    border-radius: 999px;
    animation: tvProg 8s ease-in-out infinite;
    box-shadow: 0 0 10px rgba(255,138,40,0.5);
}
@keyframes tvProg {
    0%   { width: 10%; }
    100% { width: 85%; }
}

.tv-bottom-dots {
    display: flex;
    gap: 6px;
    justify-content: center;
    padding: 14px 8px 8px;
    flex-wrap: wrap;
}
.tv-bottom-dots::before {
    content: '';
    display: block;
    width: 100%;
    height: 8px;
    background-image: radial-gradient(circle, var(--primary) 2px, transparent 2px);
    background-size: 18px 8px;
    background-position: 0 0;
    opacity: 0.6;
}

.tv-glow {
    position: absolute;
    inset: -20%;
    background:
        radial-gradient(circle at 30% 30%, rgba(31, 139, 255, 0.4) 0%, transparent 55%),
        radial-gradient(circle at 70% 70%, rgba(255, 138, 40, 0.35) 0%, transparent 55%);
    z-index: -1;
    filter: blur(40px);
    pointer-events: none;
    animation: glowPulse 3s ease-in-out infinite;
}

@keyframes glowPulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 0.9; }
}

.floating-card {
    position: absolute;
    z-index: 3;
    background: rgba(10, 15, 28, 0.85);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 12px 18px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: var(--shadow);
    animation: floatCard 5s ease-in-out infinite;
    font-size: 13px;
}
.floating-card i {
    width: 32px; height: 32px;
    background: var(--gradient);
    border-radius: 8px;
    display: grid;
    place-items: center;
    color: #fff;
    font-size: 14px;
    flex-shrink: 0;
}
.floating-card div { display: flex; flex-direction: column; line-height: 1.2; }
.floating-card strong { font-weight: 700; font-size: 13px; }
.floating-card span { font-size: 11px; color: var(--text-muted); }

.fc-1 { top: 10%; left: -10%; animation-delay: 0s; }
.fc-2 { top: 50%; right: -12%; animation-delay: -2s; }
.fc-3 { bottom: 8%; left: -5%; animation-delay: -4s; }

@keyframes floatCard {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.scroll-hint {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    width: 26px; height: 40px;
    border: 2px solid rgba(255,255,255,0.2);
    border-radius: 20px;
    display: grid;
    place-items: center;
}
.scroll-hint span {
    width: 4px; height: 8px;
    background: var(--primary);
    border-radius: 2px;
    animation: scrollDot 1.8s infinite;
}

@keyframes scrollDot {
    0% { transform: translateY(-8px); opacity: 0; }
    40% { opacity: 1; }
    100% { transform: translateY(8px); opacity: 0; }
}

/* ============================================
   Ticker
   ============================================ */
.ticker-section {
    padding: 30px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.01);
    overflow: hidden;
}

.ticker-label {
    text-align: center;
    font-size: 12px;
    color: var(--text-muted);
    letter-spacing: 0.25em;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 20px;
}

.ticker {
    overflow: hidden;
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
    mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
}
.ticker-track {
    display: flex;
    gap: 12px;
    animation: ticker 40s linear infinite;
    width: max-content;
}
@keyframes ticker {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
.ch-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--surface);
    border: 1px solid var(--border);
    padding: 8px 16px 8px 8px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-muted);
    flex-shrink: 0;
    transition: all 0.3s;
}
.ch-chip:hover {
    background: rgba(255,138,40,0.1);
    color: var(--text);
    border-color: var(--border-hover);
}
.ch-chip b {
    width: 28px; height: 28px;
    display: grid;
    place-items: center;
    background: var(--c, var(--primary));
    color: #fff;
    font-weight: 800;
    font-size: 11px;
    border-radius: 8px;
}

/* ============================================
   Sections generic
   ============================================ */
section { position: relative; padding: 100px 0; }

.section-head {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 60px;
}
.section-head h2 {
    font-size: clamp(2rem, 4.5vw, 3.5rem);
    margin: 18px 0 14px;
}
.section-head p {
    color: var(--text-muted);
    font-size: 1.05rem;
}

/* ============================================
   Features
   ============================================ */
.features { background: rgba(255,255,255,0.01); }

.feature-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 1fr;
    gap: 14px;
}

.feature-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 20px 18px;
    transition: transform 0.35s var(--ease), border-color 0.3s, background 0.3s;
    position: relative;
    overflow: hidden;
}
.feature-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at var(--mx, 50%) var(--my, 0%), rgba(255,138,40,0.08), transparent 60%);
    opacity: 0;
    transition: opacity 0.35s;
    pointer-events: none;
}
.feature-card:hover::before { opacity: 1; }
.feature-card:hover {
    transform: translateY(-6px);
    border-color: var(--border-hover);
    background: var(--surface-2);
}

.feature-big {
    grid-column: span 2;
    grid-row: span 2;
    background: linear-gradient(145deg, rgba(255,138,40,0.08), rgba(255,255,255,0.02));
    border-color: rgba(255,138,40,0.2);
}

.fc-icon {
    width: 44px; height: 44px;
    background: color-mix(in srgb, var(--ic) 20%, transparent);
    border: 1px solid color-mix(in srgb, var(--ic) 40%, transparent);
    border-radius: 10px;
    display: grid;
    place-items: center;
    font-size: 18px;
    color: var(--ic);
    margin-bottom: 12px;
    transition: transform 0.3s;
}
.feature-card:hover .fc-icon { transform: scale(1.08) rotate(-3deg); }

.feature-big .fc-icon {
    width: 56px; height: 56px;
    font-size: 22px;
    background: var(--gradient);
    color: #fff;
    border-color: transparent;
    box-shadow: 0 8px 22px rgba(255,138,40,0.4);
    margin-bottom: 0;
}

.feature-card h3 {
    font-size: 1.02rem;
    margin-bottom: 6px;
    line-height: 1.2;
}
.feature-big h3 { font-size: 1.5rem; margin-bottom: 6px; }

.feature-card p { color: var(--text-muted); font-size: 0.85rem; line-height: 1.45; }
.feature-big p { font-size: 0.92rem; max-width: 440px; margin: 0; }

.tag-list { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 4px; }
.tag {
    background: rgba(255,138,40,0.15);
    color: var(--primary-2);
    border: 1px solid rgba(255,138,40,0.3);
    padding: 3px 10px;
    border-radius: 999px;
    font-size: 10.5px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: all 0.3s;
}
.tag:hover {
    background: rgba(255,138,40,0.25);
    transform: translateY(-2px);
}
.tag i { font-size: 10px; }

/* ============================================
   Big featured card (Fútbol)
   ============================================ */
.feature-big {
    position: relative;
    padding: 22px 22px 20px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.fb-pattern {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 20% 30%, rgba(255,138,40,0.1) 0%, transparent 40%),
        radial-gradient(circle at 80% 80%, rgba(31,139,255,0.08) 0%, transparent 40%);
    pointer-events: none;
}
.fb-pattern::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(90deg, rgba(255,255,255,0.015) 1px, transparent 1px),
        linear-gradient(rgba(255,255,255,0.015) 1px, transparent 1px);
    background-size: 30px 30px;
    mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
}
.fb-badge {
    position: absolute;
    top: 16px; right: 16px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: rgba(255, 58, 58, 0.15);
    border: 1px solid rgba(255, 58, 58, 0.4);
    color: #ff6b6b;
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.1em;
    z-index: 2;
}

.fb-head {
    display: flex;
    align-items: center;
    gap: 14px;
    position: relative;
    z-index: 1;
}
.fb-sub {
    color: var(--text-muted);
    font-size: 0.82rem;
    margin: 0;
}

.match-card {
    position: relative;
    z-index: 1;
    background: linear-gradient(145deg, rgba(8, 16, 48, 0.6), rgba(10, 20, 50, 0.3));
    border: 1px solid rgba(31, 139, 255, 0.25);
    border-radius: 10px;
    padding: 12px 14px;
    backdrop-filter: blur(8px);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.04);
}
.match-league {
    font-size: 10px;
    color: var(--text-muted);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 6px;
}
.match-league i { color: var(--primary-2); }
.match-score {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 10px;
}
.team {
    display: flex;
    align-items: center;
    gap: 8px;
    min-width: 0;
}
.team:last-child { flex-direction: row-reverse; }
.team-badge {
    width: 30px; height: 30px;
    border-radius: 8px;
    display: grid;
    place-items: center;
    color: #fff;
    font-size: 9px;
    font-weight: 900;
    letter-spacing: 0.02em;
    box-shadow: 0 3px 8px rgba(0,0,0,0.4), inset 0 1px 0 rgba(255,255,255,0.15);
    flex-shrink: 0;
}
.team-name {
    font-weight: 700;
    font-size: 12px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.score-box {
    position: relative;
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 3px;
    padding: 2px 8px 14px;
    min-width: 70px;
}
.score-box > span { line-height: 1; }
.score {
    font-family: 'Poppins', sans-serif;
    font-size: 1.4rem;
    font-weight: 900;
    color: #fff;
    display: inline-block;
}
.score-box .dash {
    color: var(--text-muted);
    font-size: 1.05rem;
    font-weight: 700;
}
.minute {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    font-size: 9px;
    color: #ff6b6b;
    font-weight: 800;
    letter-spacing: 0.05em;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    white-space: nowrap;
}

.fb-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    position: relative;
    z-index: 1;
}
.fb-stat {
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding: 8px 10px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 10px;
    position: relative;
    transition: all 0.3s;
}
.fb-stat:hover {
    background: rgba(255,138,40,0.08);
    border-color: rgba(255,138,40,0.3);
    transform: translateY(-2px);
}
.fb-stat-num {
    font-family: 'Poppins', sans-serif;
    font-size: 1.25rem;
    font-weight: 900;
    background: var(--gradient-warm);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
}
.fb-stat .plus {
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    font-weight: 900;
    color: var(--primary);
    vertical-align: top;
}
.fb-stat-lbl {
    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-muted);
    font-weight: 700;
}

.feature-big .tag-list { margin-top: 0; position: relative; z-index: 1; }

/* ============================================
   Enhanced small cards
   ============================================ */
.feature-card {
    --acc: var(--primary);
}
.fc-num {
    position: absolute;
    top: 14px; right: 14px;
    font-family: 'Poppins', sans-serif;
    font-size: 26px;
    font-weight: 900;
    color: rgba(255,255,255,0.05);
    letter-spacing: -0.02em;
    transition: color 0.3s;
    pointer-events: none;
    line-height: 1;
}
.feature-card:hover .fc-num { color: color-mix(in srgb, var(--acc) 20%, transparent); }

.feature-card:hover {
    border-color: color-mix(in srgb, var(--acc) 45%, transparent);
    box-shadow: 0 15px 35px color-mix(in srgb, var(--acc) 15%, transparent);
}

.mini-bar {
    margin-top: 12px;
    height: 5px;
    background: rgba(255,255,255,0.05);
    border-radius: 999px;
    overflow: hidden;
}
.mini-bar span {
    display: block;
    height: 100%;
    width: var(--w, 60%);
    background: linear-gradient(90deg, var(--acc), color-mix(in srgb, var(--acc) 50%, white));
    border-radius: 999px;
    box-shadow: 0 0 8px color-mix(in srgb, var(--acc) 60%, transparent);
    animation: barGrow 1.4s var(--ease) both;
}
@keyframes barGrow {
    from { width: 0; }
    to { width: var(--w, 60%); }
}
.mini-bar-lbl {
    display: block;
    margin-top: 6px;
    font-size: 9.5px;
    color: var(--text-muted);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-weight: 700;
}

.mini-chips {
    display: flex;
    gap: 5px;
    margin-top: 12px;
    flex-wrap: wrap;
}
.mini-chips span {
    padding: 3px 8px;
    background: rgba(58,166,255,0.12);
    color: #7ac2ff;
    border: 1px solid rgba(58,166,255,0.3);
    border-radius: 5px;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.05em;
}

.device-pills {
    display: flex;
    gap: 6px;
    margin-top: 12px;
}
.device-pills span {
    width: 28px; height: 28px;
    display: grid;
    place-items: center;
    background: rgba(168, 85, 247, 0.12);
    border: 1px solid rgba(168, 85, 247, 0.3);
    border-radius: 8px;
    color: #c084fc;
    font-size: 11px;
    transition: all 0.3s;
}
.feature-card:hover .device-pills span {
    background: rgba(168, 85, 247, 0.2);
    transform: translateY(-3px);
}
.feature-card:hover .device-pills span:nth-child(2) { transition-delay: 50ms; }
.feature-card:hover .device-pills span:nth-child(3) { transition-delay: 100ms; }
.feature-card:hover .device-pills span:nth-child(4) { transition-delay: 150ms; }

.quality-row {
    display: flex;
    gap: 5px;
    margin-top: 12px;
}
.q-chip {
    padding: 3px 9px;
    border-radius: 6px;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.05em;
    background: rgba(255,255,255,0.05);
    color: var(--text-muted);
    border: 1px solid rgba(255,255,255,0.08);
}
.q-chip.q-on {
    background: rgba(34, 197, 94, 0.15);
    color: #4ade80;
    border-color: rgba(34, 197, 94, 0.35);
}

.uptime {
    display: flex;
    align-items: baseline;
    gap: 5px;
    margin-top: 12px;
}
.up-val {
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, #06b6d4, #22d3ee);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
}
.up-lbl {
    font-size: 10px;
    color: var(--text-muted);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-weight: 700;
}

.online-indicator {
    margin-top: 12px;
    padding: 7px 10px;
    background: rgba(34, 197, 94, 0.08);
    border: 1px solid rgba(34, 197, 94, 0.25);
    border-radius: 8px;
    font-size: 10.5px;
    color: #86efac;
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 600;
}

.step-line {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: 12px;
}
.step {
    width: 22px; height: 22px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 10px;
    font-weight: 900;
    background: rgba(255,255,255,0.05);
    color: var(--text-muted);
    border: 1px solid rgba(255,255,255,0.1);
    position: relative;
}
.step.done {
    background: var(--gradient-warm);
    color: #fff;
    border-color: transparent;
    box-shadow: 0 3px 8px rgba(255,138,40,0.35);
}
.step:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 100%;
    top: 50%;
    width: 6px;
    height: 2px;
    background: var(--acc);
    opacity: 0.6;
}

/* ============================================
   Devices
   ============================================ */
.devices { padding: 80px 0; }
.devices-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.devices-text h2 {
    font-size: clamp(1.75rem, 3.5vw, 2.75rem);
    margin: 16px 0;
}
.devices-text p {
    color: var(--text-muted);
    margin-bottom: 24px;
    max-width: 500px;
}

.check-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    color: var(--text);
    font-weight: 500;
}
.check-list i {
    width: 24px; height: 24px;
    background: rgba(34, 197, 94, 0.15);
    color: var(--success);
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 11px;
}

.devices-visual {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.device {
    position: absolute;
    background: linear-gradient(145deg, #1a2033, #0f1524);
    border: 2px solid #2a3040;
    box-shadow: var(--shadow-lg);
    transition: transform 0.4s;
}

.device .d-screen {
    display: grid;
    place-items: center;
    gap: 10px;
    width: 100%; height: 100%;
    background: radial-gradient(circle at 50% 30%, #131a2e 0%, #070b16 100%);
    color: var(--primary);
    font-size: 32px;
    border-radius: inherit;
}
.device .d-screen span {
    font-size: 12px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-weight: 700;
}

.device-tv {
    width: 340px; height: 220px;
    border-radius: 14px;
    padding: 10px;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
}
.device-tv .d-stand {
    position: absolute;
    bottom: -30px; left: 50%;
    transform: translateX(-50%);
    width: 80px; height: 30px;
    background: #2a3040;
    border-radius: 0 0 10px 10px;
}

.device-phone {
    width: 100px; height: 180px;
    border-radius: 18px;
    padding: 8px;
    top: 50%; right: 5%;
    transform: translateY(-50%) rotate(8deg);
    z-index: 2;
    animation: devFloat 5s ease-in-out infinite;
}

.device-tablet {
    width: 170px; height: 220px;
    border-radius: 14px;
    padding: 8px;
    top: 50%; left: 5%;
    transform: translateY(-50%) rotate(-8deg);
    z-index: 2;
    animation: devFloat 6s ease-in-out infinite -2s;
}

@keyframes devFloat {
    0%, 100% { transform: translateY(-50%) rotate(-8deg); }
    50% { transform: translateY(-58%) rotate(-5deg); }
}
.device-phone {
    animation-name: devFloatR;
}
@keyframes devFloatR {
    0%, 100% { transform: translateY(-50%) rotate(8deg); }
    50% { transform: translateY(-58%) rotate(5deg); }
}

/* ============================================
   Pricing
   ============================================ */
.pricing {
    background: rgba(255,255,255,0.01);
}

.billing-wrap {
    display: flex;
    justify-content: center;
    margin-bottom: 38px;
}
.billing-toggle {
    position: relative;
    display: flex;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 999px;
    padding: 4px;
    width: 420px;
}
.bt-btn {
    flex: 1 1 0;
    min-width: 0;
    padding: 12px 22px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 14px;
    color: var(--text-muted);
    position: relative;
    z-index: 1;
    transition: color 0.3s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    white-space: nowrap;
}
.bt-btn i { font-size: 13px; }
.bt-btn.active { color: #fff; }
.bt-indicator {
    position: absolute;
    top: 4px; bottom: 4px;
    left: 4px;
    width: calc(50% - 4px);
    background: var(--gradient);
    border-radius: 999px;
    transition: transform 0.4s var(--ease);
    box-shadow: 0 6px 20px rgba(31, 139, 255, 0.35), 0 6px 20px rgba(255, 138, 40, 0.25);
}
.billing-toggle[data-active="trimestral"] .bt-indicator {
    transform: translateX(100%);
}

.save-chip {
    background: rgba(34, 197, 94, 0.2);
    color: var(--success);
    border: 1px solid rgba(34, 197, 94, 0.4);
    font-size: 11px;
    font-weight: 800;
    padding: 2px 8px;
    border-radius: 999px;
}
.bt-btn.active .save-chip {
    background: rgba(255,255,255,0.25);
    color: #fff;
    border-color: transparent;
}

.plan-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
    max-width: 860px;
    margin: 0 auto;
    padding-top: 18px;
}

.plan-card {
    position: relative;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 28px 26px;
    transition: transform 0.4s var(--ease), border-color 0.3s, box-shadow 0.3s;
    isolation: isolate;
}
.plan-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: radial-gradient(ellipse at 75% 0%, color-mix(in srgb, var(--primary) 14%, transparent) 0%, transparent 55%);
    z-index: -1;
    opacity: 0.7;
    transition: opacity 0.4s;
    pointer-events: none;
}
.plan-card:hover {
    transform: translateY(-6px);
    border-color: var(--border-hover);
    box-shadow: var(--shadow);
}
.plan-card:hover::after { opacity: 1; }
.plan-featured::after {
    background: radial-gradient(ellipse at 75% 0%, rgba(31,139,255,0.18) 0%, transparent 55%);
}

.plan-featured {
    background: linear-gradient(160deg, rgba(31,139,255,0.15) 0%, rgba(255,138,40,0.08) 100%);
    border-color: rgba(31,139,255,0.35);
    box-shadow: 0 20px 60px rgba(31,139,255,0.2);
}
.plan-featured::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius-xl);
    padding: 1px;
    background: linear-gradient(135deg, #1f8bff 0%, transparent 50%, #ff8a28 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    opacity: 0.8;
}

.plan-tag {
    position: absolute;
    top: -13px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient);
    color: #fff;
    padding: 5px 14px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.05em;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 8px 18px rgba(255,138,40,0.4);
    z-index: 3;
    white-space: nowrap;
}
.plan-tag-hot {
    background: linear-gradient(135deg, #1f8bff 0%, #0a63c7 100%);
    box-shadow: 0 10px 20px rgba(31, 139, 255, 0.45);
}

.plan-head {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 20px;
    margin-top: 8px;
    position: relative;
    z-index: 1;
}
.plan-icon {
    width: 46px; height: 46px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    color: #fff;
    font-size: 18px;
    flex-shrink: 0;
    box-shadow: 0 8px 20px color-mix(in srgb, var(--pi, var(--primary)) 40%, transparent);
}
.plan-icon-1 {
    --pi: #ff8a28;
    background: var(--gradient-warm);
}
.plan-icon-2 {
    --pi: #1f8bff;
    background: var(--gradient-cool);
}

.plan-name {
    font-size: 1.2rem;
    font-weight: 700;
    font-family: 'Inter', sans-serif;
    letter-spacing: -0.01em;
    margin-bottom: 2px;
}
.plan-sub {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin: 0;
}

.plan-price {
    position: relative;
    z-index: 1;
    margin-bottom: 18px;
    padding: 14px 16px;
    background: rgba(255,255,255,0.025);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: var(--radius);
}
.price-row {
    display: flex;
    align-items: baseline;
    gap: 4px;
    font-family: 'Poppins', sans-serif;
    font-weight: 900;
}
.price-row .currency {
    font-size: 1.25rem;
    color: var(--primary);
}
.price-row .amount {
    font-size: 2.6rem;
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
    transition: opacity 0.25s, transform 0.25s var(--ease);
    display: inline-block;
}
.price-row .period {
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: 500;
    margin-left: 2px;
}

.price-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 8px;
    min-height: 20px;
    flex-wrap: wrap;
}
.price-strike {
    color: var(--text-dim);
    text-decoration: line-through;
    font-size: 13px;
    font-weight: 600;
}
.price-save {
    display: none;
    align-items: center;
    gap: 5px;
    padding: 3px 9px;
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.18), rgba(34, 197, 94, 0.08));
    border: 1px solid rgba(34, 197, 94, 0.35);
    color: #4ade80;
    font-size: 11px;
    font-weight: 800;
    border-radius: 999px;
    letter-spacing: 0.02em;
    animation: saveIn 0.5s var(--ease);
}
.price-save::before {
    content: '💰';
    font-size: 11px;
}
.price-save.visible { display: inline-flex; }
@keyframes saveIn {
    from { opacity: 0; transform: translateY(-6px) scale(0.9); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

.plan-cta {
    position: relative;
    z-index: 1;
    padding: 14px 20px;
    font-size: 14.5px;
}

.plan-feat-title {
    position: relative;
    z-index: 1;
    margin: 22px 0 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--text-muted);
    font-weight: 700;
}
.plan-feat-title::after {
    content: '';
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, var(--border), transparent);
}

.plan-features {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.plan-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.875rem;
    color: var(--text-muted);
    line-height: 1.4;
    padding: 6px 8px;
    border-radius: 8px;
    transition: background 0.25s, color 0.25s;
}
.plan-features li:hover {
    background: rgba(255,255,255,0.03);
    color: var(--text);
}
.plan-features li strong {
    color: var(--text);
    font-weight: 700;
}
.plan-features li em {
    font-style: normal;
    color: var(--text-dim);
    font-size: 0.85em;
}
.plan-feat-ic {
    width: 24px; height: 24px;
    flex-shrink: 0;
    background: color-mix(in srgb, var(--primary) 15%, transparent);
    color: var(--primary-2);
    border-radius: 7px;
    display: grid;
    place-items: center;
    font-size: 11px;
    transition: all 0.3s;
}
.plan-featured .plan-feat-ic {
    background: color-mix(in srgb, var(--secondary) 18%, transparent);
    color: var(--secondary-2);
}
.plan-features li:hover .plan-feat-ic {
    transform: scale(1.1) rotate(-5deg);
}

.plan-trust {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px 32px;
    margin: 36px auto 0;
    padding: 18px 28px;
    background: rgba(255,255,255,0.02);
    border: 1px solid var(--border);
    border-radius: 999px;
    max-width: 860px;
}
.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
    font-size: 13px;
    font-weight: 600;
}
.trust-item i {
    width: 30px; height: 30px;
    display: grid;
    place-items: center;
    background: rgba(34, 197, 94, 0.12);
    color: var(--success);
    border-radius: 8px;
    font-size: 12px;
}
.trust-item:nth-child(2) i { background: rgba(31, 139, 255, 0.12); color: var(--secondary-2); }
.trust-item:nth-child(3) i { background: rgba(255, 138, 40, 0.12); color: var(--primary-2); }
.trust-item:nth-child(4) i { background: rgba(37, 211, 102, 0.15); color: var(--whatsapp); }

/* ============================================
   Catalog (channels grid)
   ============================================ */

/* Stats row */
.cat-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    max-width: 860px;
    margin: 0 auto 40px;
    padding: 20px;
    background: linear-gradient(135deg, rgba(31,139,255,0.08) 0%, rgba(255,138,40,0.06) 100%);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
}
.cat-stat {
    text-align: center;
    padding: 10px 8px;
    border-right: 1px solid rgba(255,255,255,0.06);
}
.cat-stat:last-child { border-right: 0; }
.cat-stat-num {
    font-family: 'Poppins', sans-serif;
    font-size: 1.9rem;
    font-weight: 900;
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
    margin-bottom: 6px;
}
.cat-stat-lbl {
    font-size: 11px;
    color: var(--text-muted);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-weight: 700;
}

/* Filters */
.filters {
    display: flex;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}
.filter {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    border-radius: 999px;
    background: var(--surface);
    border: 1px solid var(--border);
    font-weight: 600;
    font-size: 13.5px;
    color: var(--text-muted);
    transition: all 0.3s;
}
.filter i { font-size: 13px; opacity: 0.7; transition: opacity 0.3s; }
.filter:hover {
    color: var(--text);
    border-color: var(--border-hover);
}
.filter:hover i { opacity: 1; }
.filter.active {
    background: var(--gradient);
    color: #fff;
    border-color: transparent;
    box-shadow: 0 8px 20px rgba(31,139,255,0.35), 0 8px 20px rgba(255,138,40,0.2);
}
.filter.active i { opacity: 1; }
.filter-count {
    background: rgba(255,255,255,0.08);
    padding: 2px 8px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 800;
    min-width: 22px;
    text-align: center;
}
.filter.active .filter-count {
    background: rgba(255,255,255,0.25);
}

/* Grid */
.channels-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 14px;
}

.channel {
    position: relative;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 18px 10px 16px;
    text-align: center;
    transition: transform 0.35s var(--ease), box-shadow 0.35s, border-color 0.35s;
    cursor: pointer;
    overflow: hidden;
    isolation: isolate;
}
.channel.hide { display: none; }
.channel::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 0%, color-mix(in srgb, var(--cc) 20%, transparent) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s;
    z-index: -1;
}
.channel:hover {
    transform: translateY(-5px);
    border-color: color-mix(in srgb, var(--cc) 55%, transparent);
    box-shadow: 0 15px 30px color-mix(in srgb, var(--cc) 25%, transparent);
}
.channel:hover::before { opacity: 1; }

.ch-popular {
    position: absolute;
    top: 8px; right: 8px;
    width: 22px; height: 22px;
    background: linear-gradient(135deg, #ff8a28 0%, #ef4444 100%);
    color: #fff;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 10px;
    box-shadow: 0 4px 10px rgba(239, 68, 68, 0.5);
    animation: popFlame 2s ease-in-out infinite;
    z-index: 2;
}
@keyframes popFlame {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.15); }
}

.ch-logo {
    width: 52px; height: 52px;
    margin: 0 auto 10px;
    background: var(--cc, var(--primary));
    border-radius: 12px;
    display: grid;
    place-items: center;
    color: #fff;
    font-weight: 900;
    font-size: 15px;
    letter-spacing: 0.02em;
    box-shadow: 0 6px 14px color-mix(in srgb, var(--cc) 35%, transparent), inset 0 1px 0 rgba(255,255,255,0.15);
    transition: transform 0.3s;
    position: relative;
    overflow: hidden;
}
.ch-logo::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent 40%, rgba(255,255,255,0.3) 50%, transparent 60%);
    transform: translateX(-100%);
    transition: transform 0.6s;
}
.channel:hover .ch-logo { transform: scale(1.08) rotate(-3deg); }
.channel:hover .ch-logo::after { transform: translateX(100%); }

.ch-name {
    display: block;
    font-size: 13px;
    color: var(--text);
    font-weight: 700;
    margin-bottom: 2px;
}
.ch-cat {
    display: block;
    font-size: 10px;
    color: var(--text-muted);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-weight: 700;
    opacity: 0.7;
}

.catalog-foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 18px;
    margin: 40px auto 0;
    padding: 20px 28px;
    background: rgba(255,255,255,0.02);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    max-width: 860px;
}
.cf-text {
    display: flex;
    align-items: center;
    gap: 14px;
    color: var(--text-muted);
    font-size: 15px;
}
.cf-text i {
    width: 40px; height: 40px;
    display: grid;
    place-items: center;
    background: var(--gradient-soft);
    color: var(--primary-2);
    border-radius: 50%;
    font-size: 18px;
}
.cf-text strong { color: var(--primary-2); font-weight: 800; }
.cf-cta { padding: 10px 18px; font-size: 14px; }

/* ============================================
   Testimonials (carousel)
   ============================================ */
.testimonials {
    background: rgba(255,255,255,0.01);
    padding: 70px 0;
}

.t-carousel {
    position: relative;
    display: flex;
    align-items: center;
    gap: 14px;
    max-width: 1100px;
    margin: 0 auto;
}

.t-track-wrap {
    flex: 1;
    overflow: hidden;
    mask-image: linear-gradient(90deg, transparent 0, #000 4%, #000 96%, transparent 100%);
    -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 4%, #000 96%, transparent 100%);
    padding: 6px 0;
}

.t-track {
    display: flex;
    gap: 16px;
    transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: transform;
}

.t-card {
    flex: 0 0 calc((100% - 32px) / 3);
    min-width: 0;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 22px 20px;
    transition: border-color 0.3s, background 0.3s;
    display: flex;
    flex-direction: column;
    gap: 12px;
    position: relative;
    overflow: hidden;
}
.t-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 100% 0%, color-mix(in srgb, var(--ac, var(--primary)) 10%, transparent) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.4s;
    pointer-events: none;
}
.t-card:hover { border-color: var(--border-hover); }
.t-card:hover::before { opacity: 1; }

.t-quote {
    position: absolute;
    top: 18px; right: 20px;
    font-size: 28px;
    color: var(--primary);
    opacity: 0.12;
    pointer-events: none;
}

.stars {
    display: flex;
    gap: 2px;
    color: var(--primary);
    font-size: 12px;
}

.t-card p {
    color: var(--text);
    font-size: 0.88rem;
    line-height: 1.55;
    flex: 1;
    margin: 0;
    position: relative;
    z-index: 1;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.t-foot {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-top: 12px;
    border-top: 1px solid var(--border);
    position: relative;
    z-index: 1;
}
.t-avatar {
    width: 36px;
    height: 36px;
    flex: 0 0 36px;
    background: var(--ac, var(--primary));
    color: #fff;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-weight: 700;
    font-size: 14px;
    box-shadow: 0 4px 10px color-mix(in srgb, var(--ac) 40%, transparent);
}
.t-info {
    display: flex;
    flex-direction: column;
    line-height: 1.25;
    min-width: 0;
    flex: 1;
}
.t-info strong {
    font-size: 13px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--text);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.t-info span {
    font-size: 11px;
    color: var(--text-muted);
}

/* Nav buttons */
.t-nav {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    background: var(--surface);
    border: 1px solid var(--border);
    color: var(--text-muted);
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 14px;
    transition: all 0.3s;
    cursor: pointer;
    z-index: 2;
}
.t-nav:hover {
    background: var(--gradient);
    color: #fff;
    border-color: transparent;
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(31,139,255,0.3), 0 8px 20px rgba(255,138,40,0.2);
}
.t-nav:active { transform: scale(0.95); }

/* Footer with dots + rating */
.t-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    max-width: 1100px;
    margin: 28px auto 0;
}
.t-dots {
    display: flex;
    gap: 6px;
}
.t-dot {
    width: 8px; height: 8px;
    background: rgba(255,255,255,0.15);
    border-radius: 50%;
    transition: all 0.3s;
    cursor: pointer;
    padding: 0;
}
.t-dot.active {
    width: 26px;
    background: var(--gradient);
    border-radius: 999px;
    box-shadow: 0 0 10px rgba(31,139,255,0.4);
}
.online-dot {
    width: 7px; height: 7px;
    background: var(--success);
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 6px var(--success);
}
.plan-chip {
    background: rgba(255,138,40,0.15);
    color: var(--primary-2);
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.rating-summary {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}
.avatars { display: flex; }
.avatars span {
    width: 32px; height: 32px;
    background: var(--ac);
    border: 2px solid var(--bg);
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: #fff;
    font-weight: 700;
    font-size: 12px;
    margin-left: -8px;
}
.avatars span:first-child { margin-left: 0; }

.rating-summary strong { font-size: 13px; font-weight: 700; }
.stars-big {
    display: inline-flex;
    align-items: center;
    gap: 3px;
    color: var(--primary);
    margin-top: 2px;
    font-size: 12px;
}
.stars-big span {
    color: var(--text);
    font-weight: 700;
    margin-left: 6px;
    font-size: 12px;
}

/* ============================================
   FAQ
   ============================================ */
.faq-list {
    max-width: 820px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: all 0.3s;
}
.faq-item[open] {
    background: var(--surface-2);
    border-color: rgba(255,138,40,0.25);
}
.faq-item summary {
    list-style: none;
    padding: 20px 24px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 14px;
    cursor: pointer;
    font-size: 15px;
    transition: color 0.2s;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--primary-2); }
.faq-i {
    width: 34px; height: 34px;
    background: rgba(255,138,40,0.15);
    color: var(--primary);
    border-radius: 10px;
    display: grid;
    place-items: center;
    font-size: 14px;
    flex-shrink: 0;
}
.chev {
    margin-left: auto;
    transition: transform 0.3s;
    color: var(--text-muted);
    font-size: 12px;
}
.faq-item[open] .chev { transform: rotate(180deg); color: var(--primary); }
.faq-body {
    padding: 0 24px 24px 72px;
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.6;
}

.faq-extra {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    margin-top: 32px;
    flex-wrap: wrap;
    color: var(--text-muted);
    font-size: 14px;
}

/* ============================================
   CTA
   ============================================ */
.cta-section { padding: 80px 0 60px; }

.cta-box {
    background:
        radial-gradient(circle at 0% 0%, rgba(255,255,255,0.1) 0%, transparent 40%),
        linear-gradient(135deg, #0a3c8a 0%, #0a63c7 25%, #1f8bff 55%, #ff8a28 100%);
    border-radius: var(--radius-xl);
    padding: 40px 48px 48px;
    position: relative;
    overflow: hidden;
    box-shadow:
        0 30px 80px rgba(31, 139, 255, 0.3),
        0 10px 40px rgba(255,138,40,0.25),
        inset 0 1px 0 rgba(255,255,255,0.2);
    border: 1px solid rgba(255,255,255,0.1);
}
.cta-box::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(255,255,255,0.12) 1.5px, transparent 1.5px);
    background-size: 28px 28px;
    opacity: 0.5;
    pointer-events: none;
}

/* Decorative rings */
.cta-decor {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}
.cta-ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.12);
}
.cta-ring-1 { width: 500px; height: 500px; top: -220px; right: -160px; animation: ctaRing 18s linear infinite; }
.cta-ring-2 { width: 320px; height: 320px; top: -100px; right: -80px; animation: ctaRing 14s linear infinite reverse; border-color: rgba(255,255,255,0.18); }
.cta-ring-3 { width: 180px; height: 180px; top: -40px; right: -20px; animation: ctaRing 10s linear infinite; border-color: rgba(255,255,255,0.25); border-style: dashed; }
@keyframes ctaRing {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Promo banner on top */
.cta-promo {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    padding: 12px 20px;
    background: rgba(0,0,0,0.25);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 999px;
    color: #fff;
    font-size: 13px;
    margin: 0 auto 32px;
    width: fit-content;
    max-width: 100%;
    flex-wrap: wrap;
    text-align: center;
}
.cta-promo strong {
    background: linear-gradient(135deg, #ffd700, #ffae5c);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 900;
    letter-spacing: 0.05em;
}
.promo-fire {
    width: 28px; height: 28px;
    background: linear-gradient(135deg, #ff8a28, #ef4444);
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: #fff;
    font-size: 12px;
    animation: popFlame 2s ease-in-out infinite;
}
.promo-timer {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 4px 10px;
    background: rgba(255,255,255,0.15);
    border-radius: 999px;
    font-size: 11px;
    font-weight: 700;
}
.promo-timer i { font-size: 10px; }

/* Grid layout */
.cta-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 50px;
    align-items: center;
}

.cta-text { position: relative; z-index: 1; }
.cta-text h2 {
    color: #fff;
    font-size: clamp(1.8rem, 3.8vw, 2.75rem);
    margin: 16px 0 14px;
    line-height: 1.1;
}
.underlined {
    position: relative;
    display: inline-block;
}
.underlined::after {
    content: '';
    position: absolute;
    left: 0; right: 0;
    bottom: 4%;
    height: 12%;
    background: rgba(255,255,255,0.4);
    border-radius: 999px;
    z-index: -1;
}
.cta-text p {
    color: rgba(255,255,255,0.9);
    font-size: 1rem;
    margin-bottom: 22px;
    max-width: 500px;
    line-height: 1.6;
}
.cta-text p strong {
    color: #fff;
    font-weight: 800;
}

/* Stats */
.cta-stats {
    display: flex;
    gap: 18px;
    margin-bottom: 24px;
}
.cta-stat {
    padding: 10px 14px;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 12px;
    backdrop-filter: blur(8px);
}
.cs-num {
    font-family: 'Poppins', sans-serif;
    font-size: 1.4rem;
    font-weight: 900;
    color: #fff;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}
.cs-num i { color: #ffd700; font-size: 14px; }
.cs-lbl {
    font-size: 10px;
    color: rgba(255,255,255,0.8);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 700;
    margin-top: 2px;
}

/* Actions */
.cta-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 24px;
}
.cta-main { font-weight: 800; }
.btn-outline-white {
    background: rgba(255,255,255,0.1);
    color: #fff;
    border: 1.5px solid rgba(255,255,255,0.35);
    backdrop-filter: blur(6px);
    padding: 14px 22px;
    font-size: 15px;
}
.btn-outline-white:hover {
    background: rgba(255,255,255,0.2);
    border-color: rgba(255,255,255,0.6);
    transform: translateY(-2px);
}

/* Trust row */
.cta-trust {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 18px;
    border-top: 1px solid rgba(255,255,255,0.2);
}
.trust-avatars { display: flex; }
.trust-avatars span {
    width: 30px; height: 30px;
    background: var(--ac, #fff);
    border: 2px solid rgba(255,255,255,0.5);
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-weight: 800;
    font-size: 12px;
    margin-left: -8px;
}
.trust-avatars span:first-child { margin-left: 0; }
.cta-trust-text {
    font-size: 13px;
    color: rgba(255,255,255,0.95);
}
.cta-trust-text strong { color: #fff; font-weight: 800; }

/* Phone mockup */
.cta-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 420px;
}

.cta-phone {
    position: relative;
    width: 240px;
    height: 420px;
    background: #0a1020;
    border-radius: 34px;
    padding: 12px;
    box-shadow:
        0 25px 60px rgba(0,0,0,0.45),
        inset 0 0 0 3px rgba(255,255,255,0.08);
    animation: phoneFloat 6s ease-in-out infinite;
    z-index: 1;
}
@keyframes phoneFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-10px) rotate(-1deg); }
}
.cta-phone::before {
    content: '';
    position: absolute;
    top: 18px; left: 50%;
    transform: translateX(-50%);
    width: 90px; height: 22px;
    background: #0a1020;
    border-radius: 999px;
    z-index: 2;
}

.cta-phone-screen {
    width: 100%; height: 100%;
    background: linear-gradient(180deg, #061028 0%, #0a1a40 40%, #1f3a80 100%);
    border-radius: 26px;
    position: relative;
    padding: 44px 18px 18px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.cps-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: rgba(255,255,255,0.8);
    font-size: 11px;
    font-weight: 700;
}
.cps-dot {
    width: 8px; height: 8px;
    background: #22c55e;
    border-radius: 50%;
    box-shadow: 0 0 6px #22c55e;
}
.cps-title { color: #fff; font-weight: 800; }

.cps-live-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 4px 10px;
    background: rgba(255, 58, 58, 0.2);
    border: 1px solid rgba(255, 58, 58, 0.5);
    color: #ff6b6b;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 0.1em;
    border-radius: 999px;
    align-self: flex-start;
}

.cps-channel {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-align: center;
}
.cps-ch-icon {
    width: 70px; height: 70px;
    background: linear-gradient(135deg, #ff8a28, #e35e00);
    border-radius: 20px;
    display: grid;
    place-items: center;
    color: #fff;
    font-size: 30px;
    box-shadow: 0 10px 24px rgba(255, 138, 40, 0.5);
    animation: iconPulse 2.5s ease-in-out infinite;
}
.cps-ch-name {
    color: #fff;
    font-weight: 800;
    font-size: 16px;
}
.cps-ch-sub {
    color: rgba(255,255,255,0.7);
    font-size: 11px;
    letter-spacing: 0.05em;
}

.cps-progress {
    height: 4px;
    background: rgba(255,255,255,0.15);
    border-radius: 999px;
    overflow: hidden;
}
.cps-bar {
    height: 100%;
    width: 62%;
    background: linear-gradient(90deg, #1f8bff, #ff8a28);
    border-radius: 999px;
    animation: barPulse 3s ease-in-out infinite;
}
@keyframes barPulse {
    0%, 100% { width: 62%; }
    50% { width: 72%; }
}
.cps-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    color: rgba(255,255,255,0.9);
    font-size: 12px;
}
.cps-actions .big {
    width: 36px; height: 36px;
    background: rgba(255,255,255,0.18);
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 14px;
}

/* Floating feature badges around phone */
.cta-floating {
    position: absolute;
    background: rgba(255,255,255,0.96);
    backdrop-filter: blur(12px);
    border-radius: var(--radius);
    padding: 10px 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.25);
    font-size: 12px;
    z-index: 2;
    animation: floatCard 5s ease-in-out infinite;
}
.cta-floating i {
    width: 32px; height: 32px;
    background: var(--gradient);
    border-radius: 8px;
    display: grid;
    place-items: center;
    color: #fff;
    font-size: 13px;
    flex-shrink: 0;
}
.cta-floating div { display: flex; flex-direction: column; line-height: 1.2; }
.cta-floating strong { color: #0a3c8a; font-weight: 800; font-size: 12px; }
.cta-floating span { color: #555; font-size: 10.5px; }

.cta-floating.f1 { top: 8%; left: -12%; animation-delay: 0s; }
.cta-floating.f2 { bottom: 22%; right: -10%; animation-delay: -2s; }
.cta-floating.f2 i { background: linear-gradient(135deg, #22c55e, #16a34a); }
.cta-floating.f3 { bottom: 4%; left: -8%; animation-delay: -4s; }
.cta-floating.f3 i { background: var(--whatsapp); }

/* ============================================
   Footer
   ============================================ */
.footer {
    background: #04060c;
    border-top: 1px solid var(--border);
    padding: 60px 0 20px;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand .logo-icon {
    height: 130px;
    max-width: 480px;
}
.footer-brand p {
    color: var(--text-muted);
    font-size: 14px;
    margin: 20px 0;
    max-width: 360px;
}

.socials { display: flex; gap: 10px; }
.socials a {
    width: 38px; height: 38px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 10px;
    display: grid;
    place-items: center;
    font-size: 15px;
    color: var(--text-muted);
    transition: all 0.3s;
}
.socials a:hover {
    background: var(--gradient);
    color: #fff;
    border-color: transparent;
    transform: translateY(-2px);
}

.footer-col h4 {
    font-size: 15px;
    margin-bottom: 16px;
    font-family: 'Inter', sans-serif;
}
.footer-col a {
    display: block;
    padding: 6px 0;
    color: var(--text-muted);
    font-size: 14px;
}
.footer-col a:hover { color: var(--primary-2); }

.footer-bottom {
    padding-top: 24px;
    border-top: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 14px;
    color: var(--text-muted);
    font-size: 13px;
    padding-left: 24px;
    padding-right: 24px;
    max-width: var(--container);
    margin: 0 auto;
}
.footer-bottom p { margin: 0; }
.footer-bottom strong { color: var(--text); font-weight: 700; }
.footer-legal {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}
.footer-legal a {
    color: var(--text-muted);
    transition: color 0.2s;
}
.footer-legal a:hover { color: var(--primary-2); }
.footer-legal .sep { color: var(--text-dim); opacity: 0.6; }

/* ============================================
   Floating WhatsApp
   ============================================ */
.wa-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 60px; height: 60px;
    background: var(--whatsapp);
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: #fff;
    font-size: 30px;
    z-index: 90;
    box-shadow: 0 10px 30px rgba(37,211,102,0.5);
    transition: transform 0.3s;
}
.wa-float:hover { transform: scale(1.1); }
.wa-pulse {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: var(--whatsapp);
    animation: waPulse 2s infinite;
    z-index: -1;
}
@keyframes waPulse {
    0% { transform: scale(1); opacity: 0.6; }
    100% { transform: scale(1.6); opacity: 0; }
}

/* ============================================
   Reveal on scroll
   ============================================ */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   Responsive
   ============================================ */
@media (max-width: 1100px) {
    .feature-grid { grid-template-columns: repeat(3, 1fr); }
    .feature-big { grid-column: span 3; grid-row: auto; }
    .channels-grid { grid-template-columns: repeat(5, 1fr); }
    .cat-stats { grid-template-columns: repeat(4, 1fr); max-width: 720px; }
    .cat-stat-num { font-size: 1.6rem; }
}

@media (max-width: 900px) {
    section { padding: 70px 0; }

    .nav-links {
        position: fixed;
        top: var(--nav-h);
        left: 0; right: 0;
        flex-direction: column;
        background: rgba(6, 9, 20, 0.98);
        backdrop-filter: blur(20px);
        padding: 24px;
        gap: 4px;
        border: 0;
        border-bottom: 1px solid var(--border);
        border-radius: 0;
        transform: translateY(-130%);
        transition: transform 0.4s var(--ease);
    }
    .nav-links.open { transform: translateY(0); }
    .nav-links a {
        padding: 14px 18px;
        border-radius: 12px;
        border-bottom: 1px solid var(--border);
    }
    .nav-links a:last-child { border-bottom: 0; }
    .nav-links a.active { background: var(--gradient-cool); }

    .nav-toggle { display: flex; }
    .nav-cta { display: none; }

    .hero { padding: calc(var(--nav-h) + 20px) 0 40px; min-height: auto; }
    .hero-inner { grid-template-columns: 1fr; gap: 60px; }
    .hero-content { text-align: center; }
    .hero-desc { margin-left: auto; margin-right: auto; }
    .hero-ctas { justify-content: center; }
    .hero-stats { justify-content: center; flex-wrap: wrap; }
    .scroll-hint { display: none; }

    .orbit-ring { width: 440px; height: 440px; margin: -220px 0 0 -220px; }
    .orbit-ring-2 { width: 340px; height: 340px; margin: -170px 0 0 -170px; }
    @keyframes orbitOrb {
        from { transform: rotate(0deg) translateY(-220px) rotate(0deg); }
        to   { transform: rotate(360deg) translateY(-220px) rotate(-360deg); }
    }

    .floating-card { font-size: 11px; padding: 8px 12px; }
    .fc-1 { left: 0; }
    .fc-2 { right: 0; }
    .fc-3 { left: 0; }

    .feature-grid { grid-template-columns: repeat(2, 1fr); }
    .feature-big { grid-column: span 2; }

    .devices-inner { grid-template-columns: 1fr; text-align: center; }
    .devices-text p, .check-list { margin-left: auto; margin-right: auto; }
    .check-list { display: inline-flex; flex-direction: column; text-align: left; }

    .plan-grid { grid-template-columns: 1fr; max-width: 480px; }
    .channels-grid { grid-template-columns: repeat(4, 1fr); }
    .cat-stats { grid-template-columns: repeat(2, 1fr); gap: 8px; }
    .cat-stat:nth-child(2) { border-right: 0; }
    .catalog-foot { flex-direction: column; text-align: center; }
    .t-card { flex-basis: calc((100% - 16px) / 2); }

    .cta-box { padding: 32px 32px 40px; }
    .cta-grid { grid-template-columns: 1fr; gap: 40px; }
    .cta-visual { min-height: 380px; }
    .cta-floating { font-size: 11px; padding: 8px 12px; }
    .cta-floating.f1 { left: 2%; }
    .cta-floating.f2 { right: 2%; }
    .cta-floating.f3 { left: 6%; bottom: 8%; }
    .cta-promo { font-size: 12px; gap: 10px; padding: 10px 16px; }
    .promo-timer { display: none; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
    .container { padding: 0 18px; }
    .logo-icon { height: 72px; max-width: 280px; }
    .footer-brand .logo-icon { height: 92px; max-width: 340px; }

    .feature-big { padding: 24px 20px; }
    .fb-head { flex-direction: column; align-items: flex-start; gap: 12px; text-align: left; }
    .fb-badge { top: 16px; right: 16px; font-size: 10px; padding: 4px 10px; }
    .fb-stats { grid-template-columns: 1fr 1fr 1fr; gap: 8px; }
    .fb-stat { padding: 10px 12px; }
    .fb-stat-num { font-size: 1.4rem; }
    .match-card { padding: 14px 14px; }
    .score { font-size: 1.6rem; }
    .team-name { font-size: 12px; }
    .team-badge { width: 32px; height: 32px; font-size: 10px; }
    section { padding: 60px 0; }
    .section-head { margin-bottom: 40px; }

    .hero { padding-top: calc(var(--nav-h) + 10px); }
    .hero-title { font-size: 2.5rem; }
    .hero-stats { gap: 14px; }
    .stat-sep { height: 30px; }
    .stat-ic { width: 34px; height: 34px; font-size: 14px; }
    .hero-visual { min-height: 380px; }
    .ch-icon { width: 80px; height: 80px; border-radius: 16px; }
    .orbit { display: none; }
    .sparkle { display: none; }
    .hero-live-badge .viewers-count { display: none; }

    .feature-grid { grid-template-columns: 1fr; grid-auto-rows: auto; }
    .feature-big { grid-column: span 1; }
    .feature-card { padding: 18px 16px; }
    .feature-card h3 { font-size: 0.95rem; margin-bottom: 4px; }
    .feature-card p { font-size: 0.8rem; line-height: 1.4; }
    .fc-icon { width: 38px; height: 38px; font-size: 15px; margin-bottom: 10px; }
    .fc-num { font-size: 22px; top: 12px; right: 12px; }
    .mini-bar { margin-top: 10px; }
    .mini-bar-lbl { margin-top: 5px; font-size: 9px; }
    .mini-chips { margin-top: 10px; }
    .mini-chips span { font-size: 9.5px; padding: 2px 7px; }
    .device-pills { margin-top: 10px; }
    .device-pills span { width: 24px; height: 24px; font-size: 10px; }
    .quality-row { margin-top: 10px; }
    .q-chip { font-size: 9px; padding: 2px 7px; }
    .uptime { margin-top: 10px; }
    .up-val { font-size: 1.2rem; }
    .up-lbl { font-size: 9px; }
    .online-indicator { margin-top: 10px; padding: 6px 9px; font-size: 10px; }
    .step-line { margin-top: 10px; gap: 5px; }
    .step { width: 20px; height: 20px; font-size: 9px; }
    .feature-big { padding: 18px 16px; gap: 10px; }
    .feature-big .fc-icon { width: 44px; height: 44px; font-size: 18px; }
    .feature-big h3 { font-size: 1.15rem; }
    .feature-big .fb-sub { font-size: 0.78rem; }
    .fb-head { gap: 12px; }
    .match-card { padding: 10px 12px; }
    .match-league { font-size: 9px; margin-bottom: 8px; }
    .team-badge { width: 26px; height: 26px; font-size: 8.5px; }
    .team-name { font-size: 11px; }
    .score { font-size: 1.2rem; }
    .fb-stat { padding: 6px 8px; }
    .fb-stat-num { font-size: 1.05rem; }
    .fb-stat-lbl { font-size: 8.5px; }
    .tag { font-size: 9.5px; padding: 2px 8px; }

    .devices-visual { height: 340px; }
    .device-tv { width: 280px; height: 180px; }
    .device-phone { width: 80px; height: 140px; right: 0; }
    .device-tablet { width: 140px; height: 180px; left: 0; }

    .billing-toggle { width: 100%; max-width: 340px; }
    .bt-btn { padding: 11px 14px; font-size: 13px; gap: 6px; }
    .bt-btn .save-chip { font-size: 10px; padding: 2px 6px; }
    .plan-card { padding: 24px 20px; }
    .price-row .amount { font-size: 2.2rem; }
    .plan-head { gap: 12px; }
    .plan-icon { width: 42px; height: 42px; font-size: 16px; }
    .plan-name { font-size: 1.05rem; }
    .plan-features li { font-size: 0.82rem; padding: 5px 6px; gap: 8px; }
    .plan-feat-ic { width: 22px; height: 22px; font-size: 10px; }
    .plan-trust { padding: 14px 18px; gap: 12px 20px; border-radius: var(--radius); }
    .trust-item { font-size: 12px; }
    .trust-item i { width: 26px; height: 26px; font-size: 11px; }

    .channels-grid { grid-template-columns: repeat(3, 1fr); gap: 10px; }
    .channel { padding: 14px 8px; }
    .ch-logo { width: 44px; height: 44px; font-size: 14px; }
    .ch-name { font-size: 12px; }
    .ch-cat { font-size: 9px; }
    .ch-popular { width: 18px; height: 18px; font-size: 9px; top: 6px; right: 6px; }
    .cat-stat-num { font-size: 1.35rem; }
    .cat-stat-lbl { font-size: 10px; letter-spacing: 0.05em; }
    .cat-stats { padding: 14px; }
    .filter { padding: 8px 14px; font-size: 12px; }
    .filter-count { font-size: 10px; padding: 1px 6px; }
    .catalog-foot { padding: 16px 18px; }
    .cf-text { font-size: 14px; gap: 10px; }
    .cf-text i { width: 32px; height: 32px; font-size: 14px; }

    .t-card { flex-basis: 100%; padding: 18px 16px; }
    .t-carousel { gap: 6px; }
    .t-nav { width: 36px; height: 36px; font-size: 12px; }
    .t-footer { flex-direction: column; gap: 14px; }

    .faq-item summary { padding: 16px 18px; font-size: 14px; gap: 10px; }
    .faq-i { width: 28px; height: 28px; font-size: 12px; }
    .faq-body { padding: 0 18px 20px 56px; }

    .cta-box { padding: 28px 20px 36px; border-radius: var(--radius-lg); }
    .cta-text h2 { font-size: 1.75rem; }
    .cta-stats { gap: 8px; }
    .cta-stat { padding: 8px 10px; flex: 1; }
    .cs-num { font-size: 1.1rem; }
    .cs-lbl { font-size: 9px; }
    .cta-phone { width: 200px; height: 360px; }
    .cta-phone-screen { padding: 38px 14px 14px; }
    .cps-ch-icon { width: 56px; height: 56px; font-size: 24px; }
    .cps-ch-name { font-size: 14px; }
    .cta-floating { padding: 7px 10px; gap: 8px; }
    .cta-floating i { width: 26px; height: 26px; font-size: 11px; }
    .cta-floating strong { font-size: 11px; }
    .cta-floating span { font-size: 9.5px; }
    .cta-ring-1, .cta-ring-2, .cta-ring-3 { display: none; }
    .cta-actions { flex-direction: column; gap: 10px; }
    .cta-main, .btn-outline-white { width: 100%; justify-content: center; }
    .promo-fire { width: 24px; height: 24px; font-size: 10px; }

    .footer-grid { grid-template-columns: 1fr; gap: 30px; }
    .footer-bottom { flex-direction: column; text-align: center; }

    .wa-float { width: 52px; height: 52px; font-size: 26px; bottom: 18px; right: 18px; }

    .logo-text { display: none; }
}

@media (max-width: 380px) {
    .hero-title { font-size: 2rem; }
    .btn-lg { padding: 14px 22px; font-size: 14px; }
    .channels-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ============================================
   Reduced motion
   ============================================ */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    .reveal { opacity: 1; transform: none; }
}
