/* ===========================
   BestIPTV UK — Dark Premium Theme
   =========================== */
:root {
  --bg:        #080c1a;
  --bg2:       #0d1224;
  --card:      #111827;
  --card2:     #1a2236;
  --border:    rgba(255,255,255,0.07);
  --border2:   rgba(255,255,255,0.14);
  --primary:   #4361ee;
  --accent:    #00d2ff;
  --purple:    #7b2ff7;
  --cta:       #ff6b35;
  --cta2:      #e55a24;
  --gold:      #ffc107;
  --green:     #00c853;
  --text:      #f0f4ff;
  --muted:     rgba(240,244,255,0.55);
  --radius:    12px;
  --radius-lg: 20px;
  --shadow:    0 8px 40px rgba(0,0,0,0.5);
  --glow:      0 0 40px rgba(67,97,238,0.25);
  --grad:      linear-gradient(135deg, #4361ee 0%, #7b2ff7 100%);
  --grad2:     linear-gradient(135deg, #00d2ff 0%, #4361ee 100%);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  font-size: 16px;
  overflow-x: hidden;
}

a { color: var(--accent); text-decoration: none; transition: color .2s; }
a:hover { color: #fff; }
img { max-width: 100%; display: block; }

.container { max-width: 1120px; margin: 0 auto; padding: 0 24px; }

/* ── HEADER ── */
header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 999;
  background: rgba(8,12,26,0.9);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: background .3s;
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 24px; max-width: 1120px; margin: 0 auto;
}
.logo { font-size: 1.45rem; font-weight: 800; color: #fff; letter-spacing: -0.3px; text-decoration: none; }
.logo span { background: var(--grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
nav { display: flex; align-items: center; gap: 6px; }
nav a { color: rgba(240,244,255,.75); padding: 7px 14px; border-radius: 8px; font-size: .875rem; font-weight: 500; transition: all .18s; }
nav a:hover, nav a.active { background: rgba(255,255,255,.08); color: #fff; }
.nav-cta {
  background: var(--cta) !important; color: #fff !important;
  padding: 9px 20px !important; font-weight: 700 !important; border-radius: 8px;
  box-shadow: 0 4px 16px rgba(255,107,53,.3);
}
.nav-cta:hover { background: var(--cta2) !important; transform: translateY(-1px); }
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 2px; background: #fff; border-radius: 2px; transition: .28s; }

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex; align-items: center;
  position: relative; overflow: hidden;
  padding: 140px 24px 80px;
  background: var(--bg);
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(67,97,238,.35) 0%, transparent 70%),
              radial-gradient(ellipse 60% 40% at 80% 50%, rgba(123,47,247,.25) 0%, transparent 60%),
              radial-gradient(ellipse 50% 50% at 20% 80%, rgba(0,210,255,.15) 0%, transparent 60%),
              var(--bg);
}
.hero-grid {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
  max-width: 1120px; margin: 0 auto; width: 100%;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(67,97,238,.18); border: 1px solid rgba(67,97,238,.4);
  color: var(--accent); padding: 6px 16px; border-radius: 30px;
  font-size: .8rem; font-weight: 700; margin-bottom: 22px;
  text-transform: uppercase; letter-spacing: .8px;
}
.hero-badge::before { content: '●'; font-size: .5rem; animation: pulse 2s infinite; }
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:.3} }

.hero h1 {
  font-size: 3.2rem; font-weight: 900; line-height: 1.1;
  letter-spacing: -1px; margin-bottom: 20px; color: #fff;
}
.hero h1 em {
  font-style: normal;
  background: var(--grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.hero p { font-size: 1.1rem; color: var(--muted); margin-bottom: 32px; max-width: 500px; }

.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 40px; }
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 30px; border-radius: 10px; font-weight: 700; font-size: .975rem;
  cursor: pointer; border: none; transition: all .22s; text-decoration: none;
}
.btn-cta {
  background: var(--cta); color: #fff;
  box-shadow: 0 6px 24px rgba(255,107,53,.35);
}
.btn-cta:hover { background: var(--cta2); transform: translateY(-2px); box-shadow: 0 10px 32px rgba(255,107,53,.45); color: #fff; }
.btn-ghost { background: rgba(255,255,255,.08); color: #fff; border: 1px solid var(--border2); }
.btn-ghost:hover { background: rgba(255,255,255,.14); color: #fff; }

.hero-stats { display: flex; gap: 28px; flex-wrap: wrap; }
.hero-stat { }
.hero-stat-num { font-size: 1.5rem; font-weight: 800; color: #fff; line-height: 1; }
.hero-stat-lbl { font-size: .75rem; color: var(--muted); text-transform: uppercase; letter-spacing: .5px; margin-top: 2px; }

/* TV Mockup */
.hero-visual { position: relative; display: flex; align-items: center; justify-content: center; }
.tv-wrap { position: relative; width: 100%; max-width: 480px; }
.tv-screen {
  background: linear-gradient(145deg, #1a2236, #0f1528);
  border: 3px solid rgba(255,255,255,.12);
  border-radius: 16px;
  aspect-ratio: 16/9;
  overflow: hidden;
  box-shadow: 0 0 0 1px rgba(255,255,255,.06), var(--shadow), 0 0 80px rgba(67,97,238,.3);
  position: relative;
}
.tv-inner {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, #0d1224 0%, #151e35 50%, #0d1224 100%);
  display: flex; flex-direction: column;
}
.tv-topbar {
  background: rgba(255,255,255,.05);
  padding: 8px 14px;
  display: flex; align-items: center; gap: 10px;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.tv-dot { width: 7px; height: 7px; border-radius: 50%; }
.tv-channel-name {
  font-size: .72rem; color: rgba(255,255,255,.7); font-weight: 600;
  letter-spacing: .5px; text-transform: uppercase;
}
.tv-content { flex: 1; display: flex; align-items: center; justify-content: center; gap: 16px; flex-wrap: wrap; padding: 18px; }
.tv-channel-badge {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 8px; padding: 8px 14px;
  font-size: .8rem; font-weight: 700; color: rgba(255,255,255,.85);
  white-space: nowrap;
}
.tv-channel-badge.live { border-color: rgba(255,107,53,.5); color: #ff6b35; }
.tv-channel-badge.active {
  background: rgba(67,97,238,.25); border-color: rgba(67,97,238,.5);
  color: var(--accent);
}
.tv-stand { width: 30%; height: 14px; background: rgba(255,255,255,.1); margin: 0 auto; border-radius: 0 0 4px 4px; }
.tv-base { width: 45%; height: 6px; background: rgba(255,255,255,.08); margin: 0 auto; border-radius: 4px; }

.float-badge {
  position: absolute; background: var(--card2); border: 1px solid var(--border2);
  border-radius: 10px; padding: 10px 14px; font-size: .78rem;
  box-shadow: 0 8px 24px rgba(0,0,0,.4); white-space: nowrap;
  animation: float 4s ease-in-out infinite;
}
.float-badge span { display: block; font-weight: 700; color: #fff; }
.float-badge small { color: var(--muted); font-size: .7rem; }
.fb1 { top: 8%; left: -10%; animation-delay: 0s; }
.fb2 { bottom: 20%; right: -8%; animation-delay: 1.5s; }
.fb3 { top: 40%; right: -12%; animation-delay: 0.8s; }
@keyframes float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-10px)} }

/* ── TRUST BAR ── */
.trust-bar {
  background: var(--card); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  padding: 18px 0; overflow: hidden;
}
.trust-scroll { display: flex; gap: 0; white-space: nowrap; animation: scroll-left 25s linear infinite; }
.trust-scroll:hover { animation-play-state: paused; }
.trust-item {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 0 40px; color: var(--muted); font-size: .85rem; font-weight: 600;
  border-right: 1px solid var(--border);
}
.trust-item .dot { color: var(--accent); font-size: 1rem; }
@keyframes scroll-left { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }

/* ── SECTION COMMON ── */
section { padding: 80px 0; }
.section-label {
  font-size: .75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1.2px;
  color: var(--accent); margin-bottom: 12px;
}
.section-title {
  font-size: 2.2rem; font-weight: 800; color: #fff;
  letter-spacing: -0.5px; margin-bottom: 12px; line-height: 1.2;
}
.section-sub { font-size: 1.05rem; color: var(--muted); max-width: 580px; margin: 0 auto 48px; }
.text-center { text-align: center; }

/* ── FEATURES ── */
.features-bg { background: var(--bg2); }
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.feature-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 28px 24px;
  transition: border-color .22s, transform .22s, box-shadow .22s;
  position: relative; overflow: hidden;
}
.feature-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--grad); opacity: 0; transition: opacity .22s;
}
.feature-card:hover { border-color: rgba(67,97,238,.4); transform: translateY(-4px); box-shadow: 0 16px 48px rgba(0,0,0,.4); }
.feature-card:hover::before { opacity: 1; }
.feature-icon {
  width: 52px; height: 52px;
  background: linear-gradient(135deg, rgba(67,97,238,.2), rgba(123,47,247,.2));
  border: 1px solid rgba(67,97,238,.3);
  border-radius: 14px; margin-bottom: 18px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
}
.feature-card h3 { font-size: 1.05rem; font-weight: 700; color: #fff; margin-bottom: 8px; }
.feature-card p { font-size: .88rem; color: var(--muted); line-height: 1.6; }

/* ── PRICING ── */
.pricing-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; align-items: start; }
.plan-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 28px 22px;
  transition: border-color .22s, transform .22s;
  position: relative;
}
.plan-card:hover { border-color: rgba(255,255,255,.2); transform: translateY(-4px); }
.plan-card.popular {
  border-color: var(--primary);
  background: linear-gradient(160deg, #0f1a38, #111827);
  transform: scale(1.04);
  box-shadow: 0 0 0 1px var(--primary), var(--shadow), 0 0 60px rgba(67,97,238,.2);
}
.plan-card.popular:hover { transform: scale(1.04) translateY(-4px); }
.plan-popular-badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--grad); color: #fff; font-size: .7rem; font-weight: 800;
  padding: 4px 18px; border-radius: 20px; letter-spacing: .5px; text-transform: uppercase;
  white-space: nowrap;
}
.plan-name { font-size: .8rem; font-weight: 700; color: var(--muted); text-transform: uppercase; letter-spacing: .8px; margin-bottom: 16px; }
.plan-price { font-size: 2.8rem; font-weight: 900; color: #fff; line-height: 1; }
.plan-price sup { font-size: 1.2rem; vertical-align: super; font-weight: 700; margin-right: 2px; }
.plan-price sub { font-size: 1rem; font-weight: 500; color: var(--muted); }
.plan-per { font-size: .78rem; color: var(--muted); margin-top: 4px; margin-bottom: 6px; }
.plan-save { display: inline-block; background: rgba(0,200,83,.15); color: var(--green); border: 1px solid rgba(0,200,83,.3); font-size: .72rem; font-weight: 700; padding: 3px 10px; border-radius: 20px; margin-bottom: 20px; }
.plan-divider { border: none; border-top: 1px solid var(--border); margin: 18px 0; }
.plan-features { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 22px; }
.plan-features li { font-size: .85rem; color: rgba(240,244,255,.8); display: flex; align-items: center; gap: 10px; }
.plan-features li::before { content: '✓'; color: var(--green); font-weight: 800; font-size: .9rem; flex-shrink: 0; }
.plan-features li.no { color: var(--muted); }
.plan-features li.no::before { content: '✗'; color: rgba(255,255,255,.2); }
.btn-plan {
  display: block; width: 100%; text-align: center;
  padding: 13px; border-radius: 10px; font-weight: 700; font-size: .95rem;
  cursor: pointer; border: none; transition: all .2s; text-decoration: none;
}
.btn-plan-primary { background: var(--grad); color: #fff; box-shadow: 0 6px 20px rgba(67,97,238,.4); }
.btn-plan-primary:hover { opacity: .9; transform: translateY(-1px); color: #fff; }
.btn-plan-ghost { background: rgba(255,255,255,.06); color: #fff; border: 1px solid var(--border2); }
.btn-plan-ghost:hover { background: rgba(255,255,255,.12); color: #fff; }
.plan-note { font-size: .72rem; color: var(--muted); text-align: center; margin-top: 10px; }

/* ── CHANNELS ── */
.channels-bg { background: var(--bg2); }
.channels-marquee-wrap { overflow: hidden; -webkit-mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent); }
.channels-row { display: flex; gap: 14px; padding: 8px 0; white-space: nowrap; }
.channels-row.r1 { animation: marquee-left 30s linear infinite; }
.channels-row.r2 { animation: marquee-right 30s linear infinite; }
@keyframes marquee-left { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }
@keyframes marquee-right { 0%{transform:translateX(-50%)} 100%{transform:translateX(0)} }
.ch-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--card); border: 1px solid var(--border);
  border-radius: 8px; padding: 8px 16px;
  font-size: .82rem; font-weight: 700; color: rgba(240,244,255,.85); flex-shrink: 0;
}
.ch-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--green); }
.channels-cats { display: grid; grid-template-columns: repeat(4,1fr); gap: 14px; margin-top: 40px; }
.cat-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: 14px; padding: 20px 18px; text-align: center;
  transition: border-color .2s, transform .2s;
}
.cat-card:hover { border-color: rgba(67,97,238,.4); transform: translateY(-3px); }
.cat-icon { font-size: 2rem; margin-bottom: 10px; }
.cat-name { font-size: .88rem; font-weight: 700; color: #fff; margin-bottom: 4px; }
.cat-count { font-size: .76rem; color: var(--muted); }

/* ── DEVICES ── */
.devices-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; }
.device-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: 14px; padding: 24px 16px; text-align: center;
  transition: border-color .2s, transform .2s;
}
.device-card:hover { border-color: rgba(0,210,255,.3); transform: translateY(-3px); }
.device-icon { font-size: 2.4rem; margin-bottom: 12px; }
.device-name { font-size: .9rem; font-weight: 700; color: #fff; margin-bottom: 4px; }
.device-models { font-size: .75rem; color: var(--muted); }

/* ── TESTIMONIALS ── */
.testimonials-bg { background: var(--bg2); }
.testimonials-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.testi-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 28px 24px;
  transition: border-color .2s;
}
.testi-card:hover { border-color: rgba(255,193,7,.2); }
.testi-stars { color: var(--gold); font-size: 1rem; letter-spacing: 2px; margin-bottom: 14px; }
.testi-text { font-size: .92rem; color: rgba(240,244,255,.8); line-height: 1.7; margin-bottom: 20px; font-style: italic; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar {
  width: 42px; height: 42px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 1rem; color: #fff; flex-shrink: 0;
}
.av1 { background: linear-gradient(135deg, #4361ee, #7b2ff7); }
.av2 { background: linear-gradient(135deg, #00d2ff, #4361ee); }
.av3 { background: linear-gradient(135deg, #ff6b35, #ffc107); }
.testi-name { font-weight: 700; color: #fff; font-size: .9rem; }
.testi-loc { font-size: .75rem; color: var(--muted); }
.verified { font-size: .7rem; color: var(--green); margin-top: 2px; font-weight: 600; }

/* ── FAQ ── */
.faq-list { max-width: 780px; margin: 0 auto; display: flex; flex-direction: column; gap: 10px; }
.faq-item {
  background: var(--card); border: 1px solid var(--border);
  border-radius: 12px; overflow: hidden;
  transition: border-color .2s;
}
.faq-item:hover { border-color: var(--border2); }
.faq-q {
  width: 100%; text-align: left; display: flex; justify-content: space-between; align-items: center;
  padding: 18px 22px; background: none; border: none; cursor: pointer;
  font-size: .95rem; font-weight: 600; color: #fff; gap: 16px;
}
.faq-icon { width: 24px; height: 24px; border-radius: 50%; background: rgba(255,255,255,.07); display: flex; align-items: center; justify-content: center; font-size: 1rem; color: var(--accent); flex-shrink: 0; transition: transform .28s, background .2s; }
.faq-item.open .faq-icon { transform: rotate(45deg); background: rgba(67,97,238,.2); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .32s ease, padding .28s; font-size: .9rem; color: var(--muted); line-height: 1.75; padding: 0 22px; }
.faq-item.open .faq-a { max-height: 300px; padding: 0 22px 20px; }

/* ── CTA BANNER ── */
.cta-banner {
  background: linear-gradient(135deg, #0f1a38 0%, #1a0938 100%);
  border-top: 1px solid rgba(67,97,238,.3); border-bottom: 1px solid rgba(67,97,238,.3);
  padding: 80px 24px; text-align: center; position: relative; overflow: hidden;
}
.cta-banner::before {
  content: ''; position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 600px; height: 300px;
  background: radial-gradient(ellipse, rgba(67,97,238,.25) 0%, transparent 70%);
}
.cta-banner h2 { font-size: 2.4rem; font-weight: 900; color: #fff; margin-bottom: 14px; letter-spacing: -0.5px; position: relative; }
.cta-banner p { font-size: 1.05rem; color: var(--muted); margin-bottom: 32px; position: relative; }
.cta-banner .btn-cta { position: relative; font-size: 1.05rem; padding: 16px 40px; }

/* ── FOOTER ── */
footer {
  background: var(--bg2); border-top: 1px solid var(--border);
  padding: 60px 0 24px;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 48px; }
.footer-logo { font-size: 1.3rem; font-weight: 800; color: #fff; margin-bottom: 14px; display: block; }
.footer-logo span { background: var(--grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.footer-desc { font-size: .85rem; color: var(--muted); line-height: 1.65; margin-bottom: 20px; }
.footer-col h4 { font-size: .75rem; font-weight: 700; color: rgba(255,255,255,.5); text-transform: uppercase; letter-spacing: .8px; margin-bottom: 16px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.footer-col a { font-size: .86rem; color: rgba(240,244,255,.55); transition: color .18s; }
.footer-col a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid var(--border); padding-top: 22px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-bottom p { font-size: .8rem; color: rgba(240,244,255,.35); }
.footer-links { display: flex; gap: 20px; }
.footer-links a { font-size: .8rem; color: rgba(240,244,255,.4); }
.footer-links a:hover { color: rgba(240,244,255,.8); }
.footer-badge { display: inline-flex; align-items: center; gap: 6px; background: rgba(0,200,83,.1); border: 1px solid rgba(0,200,83,.25); color: var(--green); font-size: .75rem; font-weight: 700; padding: 4px 12px; border-radius: 20px; }

/* ── INNER PAGE ── */
.inner-hero { padding: 140px 24px 60px; background: var(--bg2); border-bottom: 1px solid var(--border); }
.inner-hero h1 { font-size: 2.4rem; font-weight: 900; color: #fff; letter-spacing: -0.5px; margin-bottom: 12px; }
.inner-hero p { font-size: 1rem; color: var(--muted); max-width: 640px; }
.breadcrumb { margin-bottom: 16px; font-size: .82rem; color: var(--muted); }
.breadcrumb a { color: var(--accent); }
.breadcrumb span { margin: 0 8px; opacity: .4; }
.page-meta { display: flex; gap: 20px; margin-top: 16px; font-size: .8rem; color: var(--muted); }

/* ── MISC ── */
.highlight { background: var(--grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.tag-live { display: inline-flex; align-items: center; gap: 5px; background: rgba(255,107,53,.15); border: 1px solid rgba(255,107,53,.3); color: var(--cta); font-size: .7rem; font-weight: 800; padding: 2px 10px; border-radius: 20px; text-transform: uppercase; letter-spacing: .4px; }
.tag-live::before { content: '●'; font-size: .5rem; animation: pulse 2s infinite; }
.info-box { background: rgba(67,97,238,.1); border: 1px solid rgba(67,97,238,.25); border-radius: 10px; padding: 16px 20px; font-size: .9rem; color: rgba(240,244,255,.8); margin: 22px 0; }

/* ── WHATSAPP FLOAT ── */
.wa-float {
  position: fixed; bottom: 26px; right: 26px; z-index: 9999;
  width: 62px; height: 62px; border-radius: 50%;
  background: #25d366; color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 28px rgba(37,211,102,.55);
  transition: transform .22s, box-shadow .22s;
  text-decoration: none;
}
.wa-float:hover { transform: scale(1.1); box-shadow: 0 10px 36px rgba(37,211,102,.65); color: #fff; }
.wa-float svg { width: 30px; height: 30px; }
.wa-float-tooltip {
  position: fixed; bottom: 34px; right: 100px; z-index: 9998;
  background: #25d366; color: #fff;
  font-size: .8rem; font-weight: 700;
  padding: 8px 14px; border-radius: 8px;
  white-space: nowrap; pointer-events: none;
  opacity: 0; transform: translateX(8px); transition: opacity .22s, transform .22s;
}
.wa-float:hover + .wa-float-tooltip,
.wa-float-tooltip:hover { opacity: 1; transform: translateX(0); }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; text-align: center; }
  .hero p { margin-left: auto; margin-right: auto; }
  .hero-ctas { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-visual { display: none; }
  .pricing-grid { grid-template-columns: repeat(2,1fr); }
  .plan-card.popular { transform: none; }
  .features-grid { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .hero h1 { font-size: 2.2rem; }
  .section-title { font-size: 1.8rem; }
  .features-grid { grid-template-columns: 1fr; }
  .channels-cats { grid-template-columns: repeat(2,1fr); }
  .devices-grid { grid-template-columns: repeat(2,1fr); }
  .testimonials-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .hamburger { display: flex; }
  nav {
    display: none; flex-direction: column; position: absolute;
    top: 100%; left: 0; right: 0; background: rgba(8,12,26,.98);
    border-bottom: 1px solid var(--border); padding: 12px; gap: 4px;
  }
  nav.open { display: flex; }
  nav a { width: 100%; }
  .hero h1 { font-size: 1.8rem; }
  .pricing-grid { grid-template-columns: 1fr; }
  .channels-cats { grid-template-columns: repeat(2,1fr); }
  .devices-grid { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .cta-banner h2 { font-size: 1.8rem; }
}

/* ── BLOG ── */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
  margin-top: 32px;
}
.blog-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: flex; flex-direction: column; gap: 12px;
  transition: border-color .2s, transform .2s;
  text-decoration: none;
}
.blog-card:hover { border-color: var(--accent); transform: translateY(-3px); color: inherit; }
.blog-tag {
  display: inline-block;
  font-size: .72rem; font-weight: 800; letter-spacing: .06em; text-transform: uppercase;
  padding: 4px 10px; border-radius: 6px;
  background: rgba(67,97,238,.18); color: var(--accent);
  width: fit-content;
}
.blog-tag.sports  { background: rgba(255,107,53,.15); color: var(--cta); }
.blog-tag.guide   { background: rgba(0,200,83,.12);  color: var(--green); }
.blog-tag.compare { background: rgba(123,47,247,.18); color: #b07bff; }
.blog-tag.info    { background: rgba(255,193,7,.12);  color: var(--gold); }
.blog-card-title { color: #fff; font-size: 1.05rem; font-weight: 800; line-height: 1.4; }
.blog-card-excerpt { color: var(--muted); font-size: .85rem; line-height: 1.65; flex: 1; }
.blog-card-meta { color: var(--muted); font-size: .75rem; display: flex; gap: 12px; align-items: center; }
.blog-card-read { color: var(--accent); font-size: .82rem; font-weight: 700; margin-top: 4px; }

/* article body */
.article-meta { display: flex; gap: 16px; flex-wrap: wrap; color: var(--muted); font-size: .82rem; margin-bottom: 32px; padding-bottom: 20px; border-bottom: 1px solid var(--border); }
.article-body { max-width: 760px; margin: 0 auto; }
.article-body h2 { color: #fff; font-size: 1.35rem; font-weight: 800; margin: 36px 0 14px; }
.article-body h3 { color: var(--text); font-size: 1.05rem; font-weight: 700; margin: 24px 0 10px; }
.article-body p  { color: var(--muted); font-size: .95rem; line-height: 1.8; margin-bottom: 16px; }
.article-body ul, .article-body ol { color: var(--muted); font-size: .95rem; line-height: 1.8; padding-left: 22px; margin-bottom: 16px; display: flex; flex-direction: column; gap: 6px; }
.article-body li strong { color: #fff; }
.article-body a { color: var(--accent); }
.article-body .info-box { margin: 24px 0; }
.article-body table { width: 100%; border-collapse: collapse; margin: 20px 0; font-size: .88rem; }
.article-body table th { background: var(--card2); color: #fff; padding: 10px 14px; text-align: left; border: 1px solid var(--border); }
.article-body table td { padding: 10px 14px; border: 1px solid var(--border); color: var(--muted); }
.article-body table tr:nth-child(even) td { background: rgba(255,255,255,.025); }

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

/* ── PROMO POPUP ── */
#promo-overlay {
  position: fixed; inset: 0; z-index: 9999;
  background: rgba(0,0,0,.75);
  backdrop-filter: blur(6px);
  display: flex; align-items: center; justify-content: center;
  padding: 16px;
  opacity: 0; visibility: hidden;
  transition: opacity .35s, visibility .35s;
}
#promo-overlay.show { opacity: 1; visibility: visible; }

#promo-box {
  position: relative;
  width: 100%; max-width: 460px;
  background: #0d1224;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(0,0,0,.7), 0 0 0 1px rgba(67,97,238,.2);
  transform: translateY(28px) scale(.96);
  transition: transform .35s cubic-bezier(.22,1,.36,1);
}
#promo-overlay.show #promo-box { transform: translateY(0) scale(1); }

#promo-header {
  background: linear-gradient(135deg, #4361ee 0%, #7b2ff7 100%);
  padding: 22px 24px 18px;
  text-align: center;
  position: relative;
}
#promo-badge {
  display: inline-block;
  background: rgba(255,255,255,.18);
  color: #fff;
  font-size: .7rem; font-weight: 800;
  letter-spacing: 1.5px; text-transform: uppercase;
  padding: 4px 12px; border-radius: 20px;
  margin-bottom: 10px;
}
#promo-header h2 {
  color: #fff;
  font-size: 1.45rem; font-weight: 800;
  line-height: 1.25; margin: 0;
}
#promo-header p {
  color: rgba(255,255,255,.8);
  font-size: .875rem; margin-top: 6px;
}

#promo-close {
  position: absolute; top: 12px; right: 14px;
  background: rgba(255,255,255,.15); border: none; cursor: pointer;
  color: #fff; font-size: 1.1rem; line-height: 1;
  width: 28px; height: 28px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s;
}
#promo-close:hover { background: rgba(255,255,255,.3); }

#promo-body { padding: 24px; }

#promo-price-row {
  display: flex; align-items: center; justify-content: center;
  gap: 12px; margin-bottom: 20px;
}
#promo-old-price {
  font-size: 1.05rem; color: var(--muted);
  text-decoration: line-through;
}
#promo-new-price {
  font-size: 2rem; font-weight: 800; color: #ff6b35;
  line-height: 1;
}
#promo-new-price span { font-size: 1rem; font-weight: 600; }
#promo-save-badge {
  background: rgba(0,200,83,.15); color: #00c853;
  font-size: .72rem; font-weight: 700;
  padding: 3px 9px; border-radius: 20px;
  border: 1px solid rgba(0,200,83,.25);
}

#promo-features {
  list-style: none; margin: 0 0 22px; padding: 0;
  display: grid; grid-template-columns: 1fr 1fr; gap: 7px 12px;
}
#promo-features li {
  font-size: .83rem; color: var(--muted);
  display: flex; align-items: center; gap: 6px;
}
#promo-features li::before { content: "✓"; color: #00c853; font-weight: 700; }

#promo-btns { display: flex; flex-direction: column; gap: 10px; }

.promo-btn-primary {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  background: #25d366; color: #fff;
  font-size: 1rem; font-weight: 700;
  padding: 14px 20px; border-radius: 12px;
  border: none; cursor: pointer; text-decoration: none;
  box-shadow: 0 4px 20px rgba(37,211,102,.35);
  transition: background .2s, transform .15s;
}
.promo-btn-primary:hover { background: #20ba59; transform: translateY(-1px); color: #fff; }

.promo-btn-trial {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  background: transparent; color: var(--accent);
  font-size: .9rem; font-weight: 600;
  padding: 12px 20px; border-radius: 12px;
  border: 1px solid rgba(0,210,255,.25); cursor: pointer; text-decoration: none;
  transition: background .2s, border-color .2s;
}
.promo-btn-trial:hover { background: rgba(0,210,255,.06); border-color: var(--accent); color: var(--accent); }

#promo-note {
  text-align: center; margin-top: 14px;
  font-size: .76rem; color: var(--muted);
}

#promo-timer {
  text-align: center; margin-bottom: 16px;
  font-size: .8rem; color: var(--muted);
}
#promo-timer strong { color: #ff6b35; }

@media (max-width: 480px) {
  #promo-features { grid-template-columns: 1fr; }
  #promo-header h2 { font-size: 1.2rem; }
  #promo-new-price { font-size: 1.7rem; }
}
