/* ============================================================
   IPTV NORSK — Premium IPTV Marketing Website
   Design language: Binance — dark canvas, single yellow accent,
   flat card surfaces, light footer inversion
============================================================ */

/* ── 1. DESIGN TOKENS ───────────────────────────────────── */
:root {
  --bg:           #0b0e11;   /* Canvas Dark */
  --bg-2:         #1e2329;   /* Surface Card Dark */
  --surface:      rgba(30,35,41,0.98);
  --surface-2:    rgba(43,49,57,0.92);
  --surface-3:    rgba(43,49,57,0.70);
  --line:         #2b3139;   /* Hairline on Dark */
  --line-2:       rgba(43,49,57,0.55);
  --text:         #eaecef;   /* Body on Dark */
  --text-2:       #929aa5;   /* Muted Strong */
  --text-3:       #707a8a;   /* Muted */
  --accent:       #FCD535;   /* Binance Yellow */
  --accent-2:     #f0b90b;   /* Binance Yellow Active */
  --accent-glow:  rgba(252,213,53,0.18);
  --green:        #0ecb81;   /* Trading Up */
  --green-glow:   rgba(14,203,129,0.15);
  --blue:         #3b82f6;
  --purple:       #7c3aed;
  --pink:         #f6465d;   /* Trading Down */
  --warning:      #f0b90b;
  --radius:       8px;
  --radius-lg:    12px;
  --radius-xl:    12px;
  --shadow:       0 24px 64px rgba(0,0,0,0.45);
  --shadow-sm:    0 4px 20px rgba(0,0,0,0.30);
  --max:          1300px;
  --header-h:     64px;
  font-family: 'Inter', ui-sans-serif, system-ui, -apple-system, 'Segoe UI', sans-serif;
}

/* ── 2. BASE RESET ──────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  min-height: 100vh;
  background: var(--bg);
  color: var(--text);
  font-size: 15px;
  line-height: 1.6;
  overflow-x: hidden;
  background-image:
    radial-gradient(ellipse 60% 40% at 15% 0%, rgba(252,213,53,0.06) 0%, transparent 60%),
    radial-gradient(ellipse 50% 30% at 90% 10%, rgba(14,203,129,0.04) 0%, transparent 55%);
}
body::before {
  content: "";
  position: fixed; inset: 0; z-index: -1; pointer-events: none;
  background:
    linear-gradient(rgba(255,255,255,.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.015) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, black, transparent 40%);
}
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
img { display: block; max-width: 100%; }

/* ── 3. LAYOUT ──────────────────────────────────────────── */
.shell { width: min(var(--max), calc(100% - 48px)); margin-inline: auto; }
main { padding-top: var(--header-h); }

/* Section shell: full bleed bg, constrained content */
.section-shell { width: min(var(--max), calc(100% - 48px)); margin-inline: auto; }
.section-block  { padding: 72px 0; }
.section-block .section-shell { width: min(var(--max), calc(100% - 48px)); margin-inline: auto; }

.section-head { max-width: 640px; margin-bottom: 56px; }
.section-head.centered { text-align: center; margin-inline: auto; }
.section-kicker {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 12px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 14px;
}
.section-kicker::before {
  content: ''; display: inline-block; width: 18px; height: 2px;
  background: var(--accent); border-radius: 2px;
}
h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); font-weight: 900; letter-spacing: -.03em; line-height: 1.1; }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.4rem); font-weight: 800; letter-spacing: -.025em; line-height: 1.2; }
h3 { font-size: 1rem; font-weight: 700; }

/* ── 4. BUTTONS ─────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 12px 24px; border-radius: 10px;
  font-size: 14px; font-weight: 700; white-space: nowrap;
  cursor: pointer; border: none; transition: all .18s ease;
  text-decoration: none; line-height: 1;
}
.btn-primary {
  background: var(--accent); color: #181a20;
  box-shadow: 0 4px 16px var(--accent-glow);
}
.btn-primary:hover { background: var(--accent-2); transform: translateY(-1px); box-shadow: 0 8px 24px rgba(252,213,53,.28); }
.btn-secondary {
  background: var(--surface-2); color: var(--text);
  border: 1px solid var(--line);
}
.btn-secondary:hover { background: var(--surface); border-color: rgba(255,255,255,.14); }
.btn-trial {
  background: linear-gradient(135deg, #22c55e, #16a34a); color: #fff;
  box-shadow: 0 8px 28px var(--green-glow);
}
.btn-trial:hover { background: linear-gradient(135deg, #16a34a, #15803d); transform: translateY(-1px); }
.btn-ghost {
  background: transparent; color: var(--text-2);
  border: 1px solid var(--line);
}
.btn-ghost:hover { color: var(--text); border-color: rgba(255,255,255,.18); background: var(--line-2); }
.btn-small { padding: 9px 18px; font-size: 13px; border-radius: 8px; }
.play-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: rgba(255,255,255,.7); flex-shrink: 0;
}

.locale-modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(0,0,0,0.72);
}
.locale-modal {
  width: min(680px, 100%);
  background: rgba(8,11,15,0.98);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  box-shadow: 0 40px 120px rgba(0,0,0,0.55);
  padding: 28px;
}
.locale-modal h2 {
  margin: 0 0 10px;
  font-size: clamp(1.75rem, 2.5vw, 2.2rem);
  line-height: 1.1;
}
.locale-modal p {
  margin: 0 0 24px;
  color: var(--text-2);
}
.locale-modal-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.locale-option {
  display: block;
  width: 100%;
  padding: 18px 16px;
  border-radius: 16px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.10);
  cursor: pointer;
  transition: transform .18s ease, border-color .18s ease, background .18s ease;
  text-align: left;
}
.locale-option:hover {
  transform: translateY(-2px);
  background: rgba(255,255,255,0.08);
  border-color: rgba(252,213,53,0.35);
}
.locale-option strong {
  display: block;
  margin-bottom: 6px;
  font-size: 1rem;
}
.locale-option small {
  color: var(--text-2);
}
.locale-modal-footer {
  margin-top: 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}
.locale-modal-close {
  padding: 12px 18px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.13);
  background: transparent;
  color: var(--text-2);
}
.language-switcher { white-space: nowrap; }

/* ── 5. SITE HEADER ─────────────────────────────────────── */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: var(--header-h);
  background: rgba(11,14,17,0.94);
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  border-bottom: 1px solid var(--line);
}
.site-header > .shell {
  height: var(--header-h); display: flex; align-items: center; gap: 0;
  width: min(var(--max), calc(100% - 40px));
}

/* Logo */
.brand {
  flex-shrink: 0; margin-right: 36px;
  display: inline-flex; align-items: center;
  padding: 0; height: 40px; border-radius: 0;
  background: transparent; color: transparent;
  transition: opacity .2s;
}
.brand img { height: 24px; width: auto; display: block; }
.brand .brand-logo { height: 26px; width: auto; display: block; }
.brand.footer-brand .brand-logo { height: 23px; }
.brand:hover { opacity: .82; }
.brand span { display: none; }
.brand-mark { display: none; }

/* Nav */
.nav-links {
  display: flex; align-items: center; gap: 2px; flex: 1;
}
.nav-links a {
  padding: 7px 13px; border-radius: 8px;
  font-size: 13.5px; font-weight: 500; color: var(--text-2);
  transition: color .15s, background .15s; white-space: nowrap;
}
.nav-links a:hover  { color: var(--text); background: rgba(255,255,255,.05); }
.nav-links a.active { color: var(--text); background: rgba(255,255,255,.07); }

/* Header actions */
.header-actions {
  display: flex; align-items: center; gap: 10px; flex-shrink: 0; margin-left: auto;
}

/* WhatsApp pill */
.whatsapp-link {
  display: flex; align-items: center; gap: 9px;
  padding: 7px 14px; border-radius: 22px;
  background: rgba(37,211,102,.12); border: 1px solid rgba(37,211,102,.2);
  font-size: 12px; color: #25d366; transition: all .18s;
  white-space: nowrap;
}
.whatsapp-link:hover { background: rgba(37,211,102,.18); border-color: rgba(37,211,102,.35); }
.whatsapp-link b { display: block; font-size: 12px; color: #4ade80; }
.whatsapp-link small { display: block; font-size: 10.5px; color: rgba(74,222,128,.7); }
.whatsapp-icon {
  width: 20px; height: 20px; background: #25d366; border-radius: 50%; flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M17.472 14.382c-.297-.149-1.758-.867-2.03-.967-.273-.099-.471-.148-.67.15-.197.297-.767.966-.94 1.164-.173.199-.347.223-.644.075-.297-.15-1.255-.463-2.39-1.475-.883-.788-1.48-1.761-1.653-2.059-.173-.297-.018-.458.13-.606.134-.133.298-.347.446-.52.149-.174.198-.298.298-.497.099-.198.05-.371-.025-.52-.075-.149-.669-1.612-.916-2.207-.242-.579-.487-.5-.669-.51-.173-.008-.371-.01-.57-.01-.198 0-.52.074-.792.372-.272.297-1.04 1.016-1.04 2.479 0 1.462 1.065 2.875 1.213 3.074.149.198 2.096 3.2 5.077 4.487.709.306 1.262.489 1.694.625.712.227 1.36.195 1.871.118.571-.085 1.758-.719 2.006-1.413.248-.694.248-1.289.173-1.413-.074-.124-.272-.198-.57-.347m-5.421 7.403h-.004a9.87 9.87 0 01-5.031-1.378l-.361-.214-3.741.982.998-3.648-.235-.374a9.86 9.86 0 01-1.51-5.26c.001-5.45 4.436-9.884 9.888-9.884 2.64 0 5.122 1.03 6.988 2.898a9.825 9.825 0 012.893 6.994c-.003 5.45-4.437 9.884-9.885 9.884m8.413-18.297A11.815 11.815 0 0012.05 0C5.495 0 .16 5.335.157 11.892c0 2.096.547 4.142 1.588 5.945L.057 24l6.305-1.654a11.882 11.882 0 005.683 1.448h.005c6.554 0 11.89-5.335 11.893-11.893a11.821 11.821 0 00-3.48-8.413Z'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: center; background-size: 12px;
}

/* Account link */
.account-link {
  display: flex; align-items: center; gap: 7px;
  padding: 7px 13px; border-radius: 8px;
  font-size: 13.5px; font-weight: 600; color: var(--text-2);
  border: 1px solid var(--line); transition: all .15s; white-space: nowrap;
}
.account-link:hover { color: var(--text); border-color: rgba(255,255,255,.18); background: rgba(255,255,255,.05); }
.account-icon {
  width: 16px; height: 16px; flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%238892a8' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='8' r='4'/%3E%3Cpath d='M4 20c0-4 3.6-7 8-7s8 3 8 7'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: center; background-size: contain;
}

/* Hamburger */
.menu-toggle {
  display: none; flex-direction: column; justify-content: center; align-items: center;
  gap: 5px; width: 38px; height: 38px;
  background: var(--surface-2); border: 1px solid var(--line); border-radius: 8px;
  cursor: pointer; margin-left: auto;
}
.menu-toggle span {
  display: block; width: 18px; height: 2px;
  background: var(--text-2); border-radius: 2px; transition: all .25s;
}
.site-header.is-open .menu-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.site-header.is-open .menu-toggle span:nth-child(2) { opacity: 0; }
.site-header.is-open .menu-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── 6. HERO ─────────────────────────────────────────────── */
.hero {
  display: grid; grid-template-columns: 1fr 1fr; align-items: center;
  gap: 60px; padding: 12px 0 32px; min-height: auto;
  position: relative; overflow: hidden;
}

/* Hero background */
.hero::after {
  content: '';
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background-image: url('hero-cinematic-transparent.png');
  background-size: cover;
  background-position: right center;
  background-repeat: no-repeat;
  opacity: 0.28;
  mask-image: linear-gradient(to right, transparent 0%, rgba(0,0,0,0.15) 30%, rgba(0,0,0,0.55) 55%, rgba(0,0,0,0.75) 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, rgba(0,0,0,0.15) 30%, rgba(0,0,0,0.55) 55%, rgba(0,0,0,0.75) 100%);
}

/* Keep hero content above the background overlay */
.hero-copy, .hero-stage { position: relative; z-index: 1; }
.hero-copy { max-width: 560px; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 20px;
}
.eyebrow::before {
  content: ''; display: inline-block; width: 18px; height: 2px;
  background: var(--accent); border-radius: 2px;
}
.hero-copy h1 { color: var(--text); margin-bottom: 20px; }
.hero-copy h1 span { color: var(--accent); }
.hero-copy p { font-size: 17px; color: var(--text-2); margin-bottom: 32px; line-height: 1.65; }
.hero-actions { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; margin-bottom: 28px; }
.hero-checks {
  display: flex; align-items: center; gap: 6px; flex-wrap: wrap;
}
.hero-checks span {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 12.5px; color: var(--text-3); padding: 4px 11px;
  border-radius: 20px; border: 1px solid var(--line);
}
.hero-checks span::before {
  content: '✓'; color: var(--green); font-size: 11px; font-weight: 800;
}
.hero-stage {
  position: relative; display: flex; align-items: center; justify-content: center;
}
.hero-stage::before {
  content: ''; position: absolute;
  width: 360px; height: 360px; border-radius: 50%;
  background: radial-gradient(circle, rgba(232,80,10,.18) 0%, transparent 70%);
  top: 50%; left: 50%; transform: translate(-50%,-50%);
  pointer-events: none;
}
.hero-tv {
  max-width: 520px; width: 100%;
  filter: drop-shadow(0 32px 80px rgba(0,0,0,.5));
  animation: float 6s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-12px); }
}

/* ── 7. STATS BAR ───────────────────────────────────────── */
.stats-bar {
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 2px; padding: 0 0 0;
}
.stats-bar article {
  display: flex; align-items: center; gap: 14px;
  padding: 22px 24px; border-radius: var(--radius);
  background: var(--surface); border: 1px solid var(--line);
  transition: border-color .18s;
}
.stats-bar article:hover { border-color: rgba(255,255,255,.14); }
.stats-bar article strong { display: block; font-size: 1.4rem; font-weight: 900; color: var(--text); }
.stats-bar article small  { display: block; font-size: 12px; color: var(--text-2); margin-top: 1px; }
.stat-icon {
  width: 40px; height: 40px; border-radius: 10px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
}
.stat-icon svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 1.8; }
.stat-icon.purple { background: rgba(139,92,246,.15); color: #a78bfa; }
.stat-icon.orange  { background: rgba(232,80,10,.15);  color: var(--accent); }
.stat-icon.pink    { background: rgba(236,72,153,.15); color: #f472b6; }
.stat-icon.blue    { background: rgba(59,130,246,.15); color: #60a5fa; }
.stat-icon.green   { background: rgba(34,197,94,.15);  color: #4ade80; }
.stat-icon.slate   { background: rgba(100,116,139,.15); color: #94a3b8; }

/* ── 8. DEVICE STRIP ────────────────────────────────────── */
.device-strip { padding: 20px 0 24px; text-align: center; }
.device-strip h2 { font-size: 1.1rem; font-weight: 600; color: var(--text-2); margin-bottom: 28px; letter-spacing: .01em; }
.device-list {
  display: flex; align-items: center; justify-content: center;
  flex-wrap: wrap; gap: 8px;
}
.device-list span {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 9px 16px; border-radius: 24px;
  background: var(--surface-2); border: 1px solid var(--line);
  font-size: 13px; font-weight: 600; color: var(--text-2);
  transition: all .15s;
}
.device-list span:hover { color: var(--text); border-color: rgba(255,255,255,.16); background: var(--surface); }
.device-list svg { width: 15px; height: 15px; fill: none; stroke: currentColor; stroke-width: 1.8; flex-shrink: 0; color: var(--accent); }

/* ── 9. CATEGORY GRID ───────────────────────────────────── */
.category-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
  padding: 12px 0 40px;
}
.category-card {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 24px; border-radius: var(--radius-lg);
  background: var(--surface); border: 1px solid var(--line);
  transition: border-color .18s, transform .18s;
  position: relative; overflow: hidden;
}
.category-card:hover { border-color: rgba(255,255,255,.14); transform: translateY(-2px); }

/* Faint background images for category cards */
.category-card--sports::before,
.category-card--movies::before,
.category-card--world::before,
.category-card--epg::before {
  content: ''; position: absolute; inset: 0; z-index: 0;
  background-size: cover; background-position: center;
  background-repeat: no-repeat;
  opacity: 0.22;
  border-radius: var(--radius-lg);
  pointer-events: none;
}
/* Dark overlay on top of image to preserve readability */
.category-card--sports::after,
.category-card--movies::after,
.category-card--world::after,
.category-card--epg::after {
  content: ''; position: absolute; inset: 0; z-index: 0;
  background: linear-gradient(135deg, rgba(7,9,15,0.55) 0%, rgba(7,9,15,0.25) 100%);
  border-radius: var(--radius-lg);
  pointer-events: none;
}
.category-card--sports::before { background-image: url('../landing-assets/extra/category-sports.png'); }
.category-card--movies::before { background-image: url('../landing-assets/extra/category-movies.png'); }
.category-card--world::before  { background-image: url('../landing-assets/extra/category-world.png'); }
.category-card--epg::before    { background-image: url('../landing-assets/extra/category-epg.png'); }

/* Keep card content above both pseudo-element layers */
.category-card .category-icon,
.category-card > div { position: relative; z-index: 2; }

.category-card .category-icon {
  width: 44px; height: 44px; border-radius: 11px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
}
.category-icon svg { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 1.8; }
.category-card h3 { font-size: 15px; font-weight: 700; margin-bottom: 4px; }
.category-card p  { font-size: 13px; color: var(--text-2); line-height: 1.5; }

/* ── 10. TRIAL BANNER ───────────────────────────────────── */
.trial-banner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 32px; padding: 40px 48px; margin: 0 auto; border-radius: var(--radius-xl);
  background: linear-gradient(135deg, rgba(14,203,129,.10), rgba(14,203,129,.04));
  border: 1px solid rgba(14,203,129,.18);
  max-width: min(var(--max), calc(100% - 48px));
}
/* Centered variant — no timer */
.trial-banner--centered {
  flex-direction: row; justify-content: center; text-align: center;
  gap: 40px;
}
.trial-banner--centered .trial-copy { text-align: center; flex: 0 1 auto; }
.trial-banner--centered .trial-action { align-items: center; flex-shrink: 0; }
.gift-box {
  width: 54px; height: 54px; border-radius: 14px; flex-shrink: 0;
  background: rgba(34,197,94,.15); border: 1px solid rgba(34,197,94,.25);
  display: flex; align-items: center; justify-content: center;
  font-size: 26px;
}
.gift-box span::before { content: '🎁'; }
.trial-copy h2 { font-size: 1.5rem; font-weight: 800; margin-bottom: 4px; }
.trial-copy h2 span { color: var(--green); }
.trial-copy p  { font-size: 14px; color: var(--text-2); }
.countdown {
  text-align: center; flex-shrink: 0;
}
.countdown small { display: block; font-size: 11px; color: var(--text-3); text-transform: uppercase; letter-spacing: .06em; margin-bottom: 8px; }
.countdown > div { display: flex; gap: 8px; }
.countdown span {
  display: flex; flex-direction: column; align-items: center;
  padding: 10px 14px; border-radius: 8px;
  background: rgba(0,0,0,.3); border: 1px solid var(--line);
  min-width: 52px;
}
.countdown b  { font-size: 1.4rem; font-weight: 900; line-height: 1; color: var(--text); font-variant-numeric: tabular-nums; }
.countdown em { font-size: 10px; color: var(--text-3); font-style: normal; margin-top: 3px; }
/* Trial banner wrapper — ensure section has vertical breathing room */
#trial.trial-banner {
  margin-top: 0;
  margin-bottom: 0;
}
.trial-action { display: flex; flex-direction: column; align-items: flex-end; gap: 8px; flex-shrink: 0; }
.trial-action small {
  display: flex; align-items: center; gap: 5px;
  font-size: 12px; color: var(--text-3);
}
.trial-action small svg { width: 13px; height: 13px; fill: none; stroke: currentColor; stroke-width: 1.8; color: var(--green); flex-shrink: 0; }

/* Limited offer bar */
.pricing-focus {
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap;
  gap: 24px; padding: 28px 36px; border-radius: var(--radius-lg);
  background: var(--surface-2); border: 1px solid var(--line);
  margin-bottom: 40px;
}
.pricing-focus h2 { font-size: 1.1rem; font-weight: 700; max-width: 420px; }
.pricing-focus .section-kicker { margin-bottom: 6px; }
.offer-countdown { flex-shrink: 0; }

/* ── 11. PRICING SECTION ────────────────────────────────── */
.pricing-section { padding: 60px 0; }
.pricing-section > .section-head { width: min(var(--max), calc(100% - 48px)); margin-inline: auto; text-align: center; }
.pricing-section > .section-head p { color: var(--text-2); font-size: 16px; margin-top: 14px; max-width: 600px; margin-left: auto; margin-right: auto; }
.pricing-matrix {
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 16px;
  width: min(var(--max), calc(100% - 48px)); margin-inline: auto;
}

/* Plan card */
.smart-plan-card {
  position: relative;
  display: flex; flex-direction: column;
  padding: 28px 22px; border-radius: var(--radius-lg);
  background: var(--surface); border: 1px solid var(--line);
  transition: border-color .2s, transform .2s, box-shadow .2s;
}
.smart-plan-card:hover { border-color: rgba(255,255,255,.16); transform: translateY(-3px); box-shadow: var(--shadow); }
.plan-top {
  display: flex; align-items: flex-start; gap: 12px; margin-bottom: 20px;
}
.plan-top h2 { font-size: 1.1rem; font-weight: 800; }
.plan-top p  { font-size: 12px; color: var(--text-2); margin-top: 2px; }
.mini-icon {
  width: 38px; height: 38px; border-radius: 10px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
}
.mini-icon svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 1.8; }
.mini-icon.purple { background: rgba(139,92,246,.15); color: #a78bfa; }
.mini-icon.blue   { background: rgba(59,130,246,.15);  color: #60a5fa; }
.mini-icon.orange { background: rgba(232,80,10,.15);   color: var(--accent); }
.mini-icon.green  { background: rgba(34,197,94,.15);   color: #4ade80; }
.mini-icon.pink   { background: rgba(236,72,153,.15);  color: #f472b6; }
.mini-icon.slate  { background: rgba(100,116,139,.15); color: #94a3b8; }

.plan-price-box { margin-bottom: 16px; }
.plan-price-box span  { display: block; font-size: 11px; color: var(--text-3); margin-bottom: 4px; text-transform: uppercase; letter-spacing: .06em; }
.plan-price-box strong { display: block; font-size: 2rem; font-weight: 900; color: var(--text); line-height: 1.1; }
.plan-price-box small  { display: block; font-size: 12px; color: var(--text-2); margin-top: 4px; }

/* Connection stepper */
.connection-stepper {
  display: flex; align-items: center; justify-content: space-between;
  padding: 10px 14px; border-radius: 8px;
  background: rgba(255,255,255,.03); border: 1px solid var(--line);
  margin-bottom: 16px;
}
.connection-stepper button {
  width: 28px; height: 28px; border-radius: 7px;
  background: var(--surface-2); border: 1px solid var(--line);
  color: var(--text); font-size: 15px; font-weight: 700;
  cursor: pointer; transition: all .15s;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.connection-stepper button:hover:not(:disabled) { background: var(--accent); border-color: var(--accent); }
.connection-stepper button:disabled { opacity: .32; cursor: default; }
.connection-stepper > div { text-align: center; }
.connection-stepper [data-connection-count] { display: block; font-size: 1.1rem; font-weight: 800; }
.connection-stepper [data-connection-word]  { display: block; font-size: 11px; color: var(--text-2); }

/* Plan feature list */
.smart-plan-card ul {
  list-style: none; flex: 1; display: flex; flex-direction: column; gap: 7px;
  margin-bottom: 20px;
}
.smart-plan-card li {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; color: var(--text-2);
}
.smart-plan-card li::before {
  content: '✓'; color: var(--green); font-size: 11px; font-weight: 800; flex-shrink: 0;
}

/* Plan badges */
.plan-ribbon {
  position: absolute; top: -1px; right: 20px;
  background: var(--accent); color: #fff;
  font-size: 11px; font-weight: 800; letter-spacing: .04em; text-transform: uppercase;
  padding: 4px 14px; border-radius: 0 0 8px 8px;
}
.save-badge {
  position: absolute; top: -1px; right: 20px;
  background: linear-gradient(135deg, #22c55e, #16a34a); color: #fff;
  font-size: 11px; font-weight: 800; letter-spacing: .04em; text-transform: uppercase;
  padding: 4px 14px; border-radius: 0 0 8px 8px;
}

/* Featured plan */
.featured-plan {
  border-color: rgba(207,69,0,.25);
  background: linear-gradient(160deg, rgba(207,69,0,.05), var(--surface));
  box-shadow: 0 0 0 1px rgba(207,69,0,.12), 0 24px 60px rgba(207,69,0,.07);
}
.featured-plan:hover { border-color: rgba(207,69,0,.4); }

/* Best value plan */
.value-plan {
  border-color: rgba(34,197,94,.2);
  background: linear-gradient(160deg, rgba(34,197,94,.06), var(--surface));
}
.value-plan:hover { border-color: rgba(34,197,94,.4); }

/* ── 12. SLIDERS ────────────────────────────────────────── */
.sliders-section {
  padding: 0 0 80px;
}
.sliders-section .section-head { width: min(var(--max), calc(100% - 48px)); margin-inline: auto; text-align: center; margin-bottom: 40px; }
.sliders-section .section-head p { color: var(--text-2); margin-top: 10px; }

.brand-slider, .movie-slider { overflow: hidden; width: 100%; position: relative; }
.brand-slider { margin-bottom: 16px; }
.brand-slider::before, .brand-slider::after,
.movie-slider::before, .movie-slider::after {
  content: ''; position: absolute; top: 0; bottom: 0; width: 120px; z-index: 2;
  pointer-events: none;
}
.brand-slider::before, .movie-slider::before { left: 0; background: linear-gradient(to right, var(--bg), transparent); }
.brand-slider::after,  .movie-slider::after  { right: 0; background: linear-gradient(to left,  var(--bg), transparent); }

.slider-track {
  display: flex; gap: 12px;
  animation: scroll-left 28s linear infinite;
  width: max-content;
}
.movie-track { animation-duration: 34s; animation-direction: reverse; }
.slider-track:hover { animation-play-state: paused; }

@keyframes scroll-left {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.brand-track img { height: 64px; width: auto; object-fit: contain; border-radius: 8px; opacity: .75; transition: opacity .18s; }
.brand-track img:hover { opacity: 1; }
.movie-track img { height: 160px; width: auto; object-fit: cover; border-radius: 10px; }

/* ── 13. RELIABILITY / GUARANTEE ────────────────────────── */
.reliability-section { padding: 60px 0; }
.reliability-section .section-head { width: min(var(--max), calc(100% - 48px)); margin-inline: auto; margin-bottom: 48px; text-align: center; max-width: 100%; }
.reliability-section .section-head h2 { text-align: center; }
.reliability-section .section-head p { margin-top: 12px; color: var(--text-2); font-size: 16px; text-align: center; }
.reliability-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 16px;
  width: min(var(--max), calc(100% - 48px)); margin-inline: auto;
}
.reliability-grid article {
  padding: 32px; border-radius: var(--radius-lg);
  background: var(--surface); border: 1px solid var(--line);
  transition: border-color .18s, transform .18s;
}
.reliability-grid article:hover { border-color: rgba(255,255,255,.14); transform: translateY(-2px); }
.reliability-grid article .stat-icon { margin-bottom: 16px; }
.reliability-grid strong { display: block; font-size: 2.2rem; font-weight: 900; margin-bottom: 8px; }
.reliability-grid p { font-size: 14px; color: var(--text-2); line-height: 1.6; }

/* ── 14. EXPERIENCE / FEATURES CTA ─────────────────────── */
.experience-section {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start;
  padding: 60px 0;
}
.experience-copy .section-kicker { margin-bottom: 10px; }
.experience-copy h2 { margin-bottom: 16px; }
.experience-copy p  { color: var(--text-2); font-size: 16px; line-height: 1.65; margin-bottom: 32px; }
.experience-cards {
  display: grid; grid-template-columns: 1fr 1fr; gap: 12px;
}
.experience-cards article {
  padding: 22px; border-radius: var(--radius);
  background: var(--surface); border: 1px solid var(--line);
  transition: border-color .18s;
}
.experience-cards article:hover { border-color: rgba(255,255,255,.14); }
.experience-cards .mini-icon { margin-bottom: 12px; }
.experience-cards h3 { font-size: 14px; font-weight: 700; margin-bottom: 4px; }
.experience-cards p  { font-size: 13px; color: var(--text-2); }
.payments-card { grid-column: span 2; }
.payments-card .mini-icon { margin-bottom: 12px; }
.payment-logos {
  display: flex; flex-wrap: wrap; gap: 8px; margin-top: 12px;
}
.payment-logos span {
  display: inline-flex; padding: 5px 12px; border-radius: 6px;
  background: rgba(255,255,255,.06); border: 1px solid var(--line);
  font-size: 12px; font-weight: 700; color: var(--text-2);
}

/* ── 15. FREE TV SECTION ────────────────────────────────── */
.free-tv-section {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
  padding: 80px 0;
}
.free-tv-copy h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 900; margin-bottom: 8px; }
.free-tv-copy h2 span { color: var(--accent); }
.free-tv-price {
  font-size: clamp(2rem, 4vw, 3rem); font-weight: 900; color: var(--green);
  margin-bottom: 16px; letter-spacing: -.03em;
}
.free-tv-copy p  { font-size: 16px; color: var(--text-2); margin-bottom: 20px; line-height: 1.65; }
.free-tv-copy h3 { font-size: 1rem; font-weight: 700; color: var(--text-2); margin-bottom: 24px; }
.free-tv-image {
  display: flex; align-items: center; justify-content: flex-end;
}
.free-tv-image img { width: 100%; max-width: 480px; border-radius: var(--radius-lg); object-fit: contain; }

/* ── 16. FEATURES GRID ──────────────────────────────────── */
.features-section { padding: 80px 0; }
.feature-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 16px;
  width: min(var(--max), calc(100% - 48px)); margin-inline: auto;
}
.feature-grid article {
  padding: 28px; border-radius: var(--radius-lg);
  background: var(--surface); border: 1px solid var(--line);
  transition: border-color .18s, transform .18s;
}
.feature-grid article:hover { border-color: rgba(255,255,255,.14); transform: translateY(-2px); }
.feature-grid .mini-icon { margin-bottom: 16px; }
.feature-grid h3 { font-size: 15px; font-weight: 700; margin-bottom: 6px; }
.feature-grid p  { font-size: 13.5px; color: var(--text-2); line-height: 1.55; }

/* ── 17. SERVER MAP ─────────────────────────────────────── */
.server-section {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
  padding: 80px 0;
}
.server-section .section-kicker { margin-bottom: 10px; }
.server-section h2 { margin-bottom: 14px; }
.server-section p  { color: var(--text-2); font-size: 16px; margin-bottom: 28px; line-height: 1.6; }
.server-section img { border-radius: var(--radius-lg); opacity: .85; filter: hue-rotate(200deg) saturate(.5); }

/* ── 18. SETUP GUIDE ────────────────────────────────────── */
.setup-section { padding: 80px 0; }
.setup-grid {
  display: grid; grid-template-columns: repeat(4,1fr); gap: 16px;
  width: min(var(--max), calc(100% - 48px)); margin-inline: auto;
}
.setup-grid article {
  padding: 28px; border-radius: var(--radius-lg);
  background: var(--surface); border: 1px solid var(--line);
  position: relative;
}
.setup-grid article::before {
  content: attr(data-step);
  position: absolute; top: 16px; right: 16px;
  width: 28px; height: 28px; border-radius: 50%;
  background: rgba(232,80,10,.12); border: 1px solid rgba(232,80,10,.2);
  color: var(--accent); font-size: 12px; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
}
[class^="step-"] {
  width: 42px; height: 42px; border-radius: 11px; margin-bottom: 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; font-weight: 900; flex-shrink: 0;
}
.step-one   { background: rgba(232,80,10,.12);  border: 1px solid rgba(232,80,10,.2);  color: var(--accent); }
.step-two   { background: rgba(59,130,246,.12);  border: 1px solid rgba(59,130,246,.2);  color: #60a5fa; }
.step-three { background: rgba(139,92,246,.12); border: 1px solid rgba(139,92,246,.2); color: #a78bfa; }
.step-four  { background: rgba(34,197,94,.12);  border: 1px solid rgba(34,197,94,.2);  color: #4ade80; }
.setup-grid h3 { font-size: 15px; font-weight: 700; margin-bottom: 6px; }
.setup-grid p  { font-size: 13.5px; color: var(--text-2); line-height: 1.55; }

/* ── 19. TESTIMONIALS ───────────────────────────────────── */
.testimonials-section { padding: 80px 0; }
.testimonial-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 16px;
  width: min(var(--max), calc(100% - 48px)); margin-inline: auto;
}
.testimonial-grid article {
  padding: 28px; border-radius: var(--radius-lg);
  background: var(--surface); border: 1px solid var(--line);
  transition: border-color .18s, transform .18s;
}
.testimonial-grid article:hover { border-color: rgba(255,255,255,.14); transform: translateY(-2px); }
.testimonial-grid b {
  display: block; font-size: 15px; color: #f59e0b;
  letter-spacing: .04em; margin-bottom: 14px; font-style: normal;
}
.testimonial-grid p    { font-size: 14px; color: var(--text-2); line-height: 1.6; margin-bottom: 16px; font-style: italic; }
.testimonial-grid span {
  font-size: 12.5px; font-weight: 700; color: var(--text-3);
  display: flex; align-items: center; gap: 6px;
}
.testimonial-grid span::before {
  content: ''; display: inline-block; width: 24px; height: 24px;
  border-radius: 50%; background: var(--surface-2); border: 1px solid var(--line);
}

/* ── 20. FAQ ─────────────────────────────────────────────── */
.faq-contact-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 32px; padding: 80px 0;
  width: min(var(--max), calc(100% - 48px)); margin-inline: auto;
}
.faq-panel .section-head { margin-bottom: 28px; }
.faq-list { display: flex; flex-direction: column; gap: 2px; }
details {
  border-radius: var(--radius); background: var(--surface); border: 1px solid var(--line);
  overflow: hidden; transition: border-color .15s;
}
details:hover { border-color: rgba(255,255,255,.12); }
details[open] { border-color: rgba(232,80,10,.25); }
summary {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 20px; cursor: pointer;
  font-size: 14px; font-weight: 600; color: var(--text);
  list-style: none; user-select: none;
  gap: 12px;
}
summary::-webkit-details-marker { display: none; }
summary::after {
  content: '+'; flex-shrink: 0; width: 22px; height: 22px;
  border-radius: 6px; background: var(--surface-2); border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; color: var(--text-2); transition: transform .2s, background .15s;
  text-align: center; line-height: 22px;
}
details[open] summary::after { content: '–'; background: rgba(232,80,10,.12); border-color: rgba(232,80,10,.2); color: var(--accent); }
details > p { padding: 0 20px 16px; font-size: 13.5px; color: var(--text-2); line-height: 1.6; }

/* Newsletter */
.newsletter-panel {
  padding: 36px; border-radius: var(--radius-xl);
  background: var(--surface); border: 1px solid var(--line);
}
.newsletter-panel h2 { margin-bottom: 8px; margin-top: 10px; }
.newsletter-panel p  { color: var(--text-2); font-size: 14px; margin-bottom: 24px; }
.newsletter-form label { display: block; font-size: 12px; font-weight: 600; color: var(--text-2); margin-bottom: 6px; }
.newsletter-form > div { display: flex; gap: 8px; }
.newsletter-form input[type="email"] {
  flex: 1; padding: 11px 16px; border-radius: 6px;
  background: rgba(255,255,255,.04); border: 1px solid var(--line);
  color: var(--text); font-size: 14px; outline: none;
  transition: border-color .15s;
}
.newsletter-form input[type="email"]:focus { border-color: rgba(232,80,10,.4); }
.newsletter-form input[type="email"]::placeholder { color: var(--text-3); }
.newsletter-form.is-sent::after { content: '✓ Subscribed! Thank you.'; display: block; color: var(--green); font-size: 14px; font-weight: 600; margin-top: 12px; }
.newsletter-form.is-sent .btn { display: none; }

/* ── 21. FOOTER — dark theme */
.site-footer {
  border-top: 1px solid var(--line);
  background: var(--bg-2);
  padding: 64px 0 0;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px;
  width: min(var(--max), calc(100% - 48px)); margin-inline: auto;
  padding-bottom: 48px;
}
.footer-brand .brand { background: transparent; }
.footer-brand .brand img { height: 34px; }
.footer-grid > section > p { font-size: 14px; color: var(--text-3); line-height: 1.6; max-width: 260px; margin-bottom: 20px; }
.footer-grid h3 { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: var(--text-3); margin-bottom: 16px; }
.footer-grid section a {
  display: block; font-size: 14px; color: var(--text-3); padding: 4px 0;
  transition: color .15s;
}
.footer-grid section a:hover { color: var(--text); }
.footer-bottom {
  border-top: 1px solid var(--line); padding: 20px 24px;
  display: flex; align-items: center; justify-content: space-between;
  width: min(var(--max), calc(100% - 48px)); margin-inline: auto;
  font-size: 12.5px; color: var(--text-3); flex-wrap: wrap; gap: 8px;
  background: var(--bg-2);
}

/* ── 22. PRICING PAGE ───────────────────────────────────── */
.pricing-hero {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start;
  padding: 80px 0 0;
  width: min(var(--max), calc(100% - 48px)); margin-inline: auto;
}
.pricing-hero-copy h1 { margin-bottom: 16px; }
.pricing-hero-copy p  { color: var(--text-2); font-size: 16px; margin-bottom: 24px; }
.connection-summary {
  padding: 28px; border-radius: var(--radius-lg);
  background: var(--surface); border: 1px solid var(--line);
}
.feature-cube {
  width: 40px; height: 40px; border-radius: 10px;
  background: rgba(232,80,10,.12); border: 1px solid rgba(232,80,10,.2);
  display: flex; align-items: center; justify-content: center;
  color: var(--accent); margin-bottom: 12px;
}
.feature-cube svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 1.8; }
.connection-summary h2 { font-size: 1.1rem; margin-bottom: 6px; }
.connection-summary > p { font-size: 13px; color: var(--text-2); margin-bottom: 16px; }
.connection-pills {
  display: flex; flex-direction: column; gap: 7px;
}
.connection-pills span {
  display: flex; align-items: center; gap: 9px;
  font-size: 13px; color: var(--text-2); padding: 8px 14px;
  background: rgba(255,255,255,.03); border-radius: 8px; border: 1px solid var(--line);
}
.connection-pills svg { width: 14px; height: 14px; fill: none; stroke: currentColor; stroke-width: 1.8; color: var(--accent); flex-shrink: 0; }

.pricing-benefits {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 16px;
  width: min(var(--max), calc(100% - 48px)); margin-inline: auto;
  padding: 48px 0;
}
.pricing-benefits article {
  display: flex; flex-direction: column; align-items: flex-start;
  padding: 28px; border-radius: var(--radius-lg);
  background: var(--surface); border: 1px solid var(--line);
}
.pricing-benefits .mini-icon { margin-bottom: 14px; }
.pricing-benefits h3 { font-size: 15px; font-weight: 700; margin-bottom: 6px; }
.pricing-benefits p  { font-size: 13.5px; color: var(--text-2); }

.payment-strip {
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap;
  gap: 24px; padding: 32px; border-radius: var(--radius-lg);
  background: var(--surface-2); border: 1px solid var(--line);
  width: min(var(--max), calc(100% - 48px)); margin-inline: auto; margin-bottom: 32px;
}
.payment-strip h2 { font-size: 1.1rem; }
.payment-strip .payment-logos { display: flex; gap: 8px; flex-wrap: wrap; }
.payment-strip .payment-logos span {
  padding: 6px 14px; border-radius: 8px;
  background: rgba(255,255,255,.04); border: 1px solid var(--line);
  font-size: 12px; font-weight: 700; color: var(--text-2);
}

.pricing-contact {
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap;
  gap: 32px; padding: 48px;
  width: min(var(--max), calc(100% - 48px)); margin-inline: auto; margin-bottom: 80px;
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, rgba(252,213,53,.07), rgba(59,130,246,.04));
  border: 1px solid rgba(252,213,53,.14);
}
.pricing-contact .section-kicker { margin-bottom: 8px; }
.pricing-contact h2 { font-size: 1.5rem; margin-bottom: 8px; }
.pricing-contact p  { color: var(--text-2); font-size: 15px; }

/* Pricing page: stacked hero + matrix layout */
.pricing-page .pricing-matrix {
  margin-top: 48px;
}

/* ── 23. MOBILE RESPONSIVE ──────────────────────────────── */
@media (max-width: 1200px) {
  .pricing-matrix { grid-template-columns: repeat(2,1fr); }
  .stats-bar { grid-template-columns: repeat(2,1fr); }
  .hero { gap: 40px; }
}

@media (max-width: 1024px) {
  .category-grid  { grid-template-columns: repeat(2,1fr); }
  .setup-grid     { grid-template-columns: repeat(2,1fr); }
  .feature-grid   { grid-template-columns: repeat(2,1fr); }
  .reliability-grid { grid-template-columns: repeat(2,1fr); }
  .pricing-hero   { grid-template-columns: 1fr; }
  .experience-section { grid-template-columns: 1fr; }
  .server-section { grid-template-columns: 1fr; }
  .free-tv-section { grid-template-columns: 1fr; }
  .free-tv-section .free-tv-image img { max-width: 100%; }
}

@media (max-width: 768px) {
  :root { --header-h: 60px; }
  .hero { grid-template-columns: 1fr; gap: 32px; min-height: auto; padding: 32px 0 40px; }
  .hero-copy { max-width: 100%; text-align: center; }
  .hero-actions { justify-content: center; }
  .hero-checks  { justify-content: center; }
  .hero-stage { order: -1; }
  .hero-tv { max-width: 100%; }
  .hero-stage::before { width: 240px; height: 240px; }

  .stats-bar  { grid-template-columns: 1fr 1fr; }
  .category-grid { grid-template-columns: 1fr 1fr; }
  .feature-grid  { grid-template-columns: 1fr; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .faq-contact-grid { grid-template-columns: 1fr; }
  .setup-grid { grid-template-columns: 1fr 1fr; }
  .reliability-grid { grid-template-columns: 1fr; }
  .experience-cards { grid-template-columns: 1fr; }
  .payments-card { grid-column: span 1; }
  .pricing-benefits { grid-template-columns: 1fr; }

  .pricing-matrix { grid-template-columns: 1fr; max-width: 400px; margin-left: auto; margin-right: auto; }

  .trial-banner {
    flex-direction: column;
    text-align: center; padding: 28px 20px; gap: 20px;
  }
  .trial-banner--centered { flex-direction: column; justify-content: center; }
  .trial-action { align-items: center; }
  .gift-box { display: none; }

  .pricing-focus {
    flex-direction: column; align-items: flex-start; padding: 24px;
  }

  /* Mobile header */
  .nav-links, .header-actions .whatsapp-link, .header-actions .support-link, .header-actions .account-link { display: none; }
  .menu-toggle { display: flex; }

  .site-header.is-open .nav-links {
    display: flex; flex-direction: column; position: absolute;
    top: var(--header-h); left: 0; right: 0;
    background: rgba(11,14,17,.98); backdrop-filter: blur(20px);
    padding: 16px 20px 24px; border-bottom: 1px solid var(--line);
    gap: 2px; z-index: 200;
  }
  .site-header.is-open .nav-links a {
    padding: 11px 14px; border-radius: 8px; font-size: 14.5px;
  }

  .site-header > .shell { padding: 0 16px; }
  .brand { margin-right: auto; }
  .header-actions { gap: 8px; }
  .header-actions .btn-small { display: flex; }

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

  .section-block { padding: 64px 0; }
  .setup-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .stats-bar { grid-template-columns: 1fr; }
  .category-grid { grid-template-columns: 1fr; }
  .device-list { gap: 6px; }
  .footer-grid { grid-template-columns: 1fr; }
  .pricing-contact { padding: 28px 24px; }
  .hero-copy h1 { font-size: 2rem; }
}

/* ── 24. FLOATING WHATSAPP ──────────────────────────────── */
.wa-float {
  position: fixed; bottom: 28px; right: 28px; z-index: 999;
  display: flex; align-items: center; gap: 10px;
  padding: 12px 18px; border-radius: 9999px;
  background: rgba(11,14,17,.96); border: 1px solid rgba(37,211,102,.2);
  backdrop-filter: blur(12px);
  box-shadow: 0 8px 32px rgba(0,0,0,.4);
  transition: all .2s; text-decoration: none;
}
.wa-float:hover { border-color: rgba(37,211,102,.45); transform: translateY(-2px); box-shadow: 0 12px 40px rgba(0,0,0,.5); }
.wa-float-icon {
  width: 28px; height: 28px; background: #25d366; border-radius: 50%; flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M17.472 14.382c-.297-.149-1.758-.867-2.03-.967-.273-.099-.471-.148-.67.15-.197.297-.767.966-.94 1.164-.173.199-.347.223-.644.075-.297-.15-1.255-.463-2.39-1.475-.883-.788-1.48-1.761-1.653-2.059-.173-.297-.018-.458.13-.606.134-.133.298-.347.446-.52.149-.174.198-.298.298-.497.099-.198.05-.371-.025-.52-.075-.149-.669-1.612-.916-2.207-.242-.579-.487-.5-.669-.51-.173-.008-.371-.01-.57-.01-.198 0-.52.074-.792.372-.272.297-1.04 1.016-1.04 2.479 0 1.462 1.065 2.875 1.213 3.074.149.198 2.096 3.2 5.077 4.487.709.306 1.262.489 1.694.625.712.227 1.36.195 1.871.118.571-.085 1.758-.719 2.006-1.413.248-.694.248-1.289.173-1.413-.074-.124-.272-.198-.57-.347m-5.421 7.403h-.004a9.87 9.87 0 01-5.031-1.378l-.361-.214-3.741.982.998-3.648-.235-.374a9.86 9.86 0 01-1.51-5.26c.001-5.45 4.436-9.884 9.888-9.884 2.64 0 5.122 1.03 6.988 2.898a9.825 9.825 0 012.893 6.994c-.003 5.45-4.437 9.884-9.885 9.884m8.413-18.297A11.815 11.815 0 0012.05 0C5.495 0 .16 5.335.157 11.892c0 2.096.547 4.142 1.588 5.945L.057 24l6.305-1.654a11.882 11.882 0 005.683 1.448h.005c6.554 0 11.89-5.335 11.893-11.893a11.821 11.821 0 00-3.48-8.413Z'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: center; background-size: 16px;
}
.wa-float-text b     { display: block; font-size: 13px; font-weight: 700; color: #4ade80; }
.wa-float-text small { display: block; font-size: 11px; color: var(--text-3); }

@media (max-width: 480px) {
  .wa-float { bottom: 16px; right: 16px; padding: 10px 14px; }
  .wa-float-text { display: none; }
}

/* ── 25. LEGACY (payment methods section removed from HTML) ─── */
.payment-methods-section {
  padding: 0 0 60px;
}
.payment-methods-card {
  padding: 36px 40px; border-radius: var(--radius-xl);
  background: var(--surface); border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 28px;
}
.payment-methods-head {
  display: flex; align-items: center; gap: 16px;
}
.payment-methods-head h3 { font-size: 1.1rem; font-weight: 800; margin-bottom: 4px; }
.payment-methods-head p  { font-size: 13.5px; color: var(--text-2); }
.payment-logos--large {
  display: flex; flex-wrap: wrap; gap: 10px;
}
.payment-logos--large span {
  display: inline-flex; align-items: center; padding: 8px 18px;
  border-radius: 8px;
  background: rgba(255,255,255,.05); border: 1px solid var(--line);
  font-size: 13px; font-weight: 700; color: var(--text-2);
  transition: border-color .15s, color .15s;
}
.payment-logos--large span:hover { border-color: rgba(255,255,255,.18); color: var(--text); }

/* free-tv and payment responsive (merged into main 768px block above) */


/* ─────────────────────────────────────────────────────────────
   WEBESTIPTV FINAL HOMEPAGE FIXES — direct checkout + polished sections
   Scope: homepage/pricing public site only.
───────────────────────────────────────────────────────────── */

/* Clearer category image cards while keeping text readable */
.category-card {
  min-height: 132px;
  overflow: hidden;
}
.category-card--sports::before,
.category-card--movies::before,
.category-card--world::before,
.category-card--epg::before {
  opacity: .42 !important;
  filter: saturate(1.25) contrast(1.08) brightness(.92) !important;
  background-size: cover !important;
  background-position: center !important;
}
.category-card--sports::after,
.category-card--movies::after,
.category-card--world::after,
.category-card--epg::after {
  background:
    linear-gradient(90deg, rgba(5,8,15,.74) 0%, rgba(5,8,15,.54) 42%, rgba(5,8,15,.38) 100%),
    linear-gradient(180deg, rgba(0,0,0,.18), rgba(0,0,0,.38)) !important;
}
.category-card h3,
.category-card p {
  text-shadow: 0 2px 14px rgba(0,0,0,.72);
}

/* Full-width premium trial CTA banner */
#trial.trial-banner,
.trial-banner.trial-banner--centered {
  width: min(var(--max), calc(100% - 48px));
  max-width: none;
  min-height: 150px;
  padding: 44px 56px;
  justify-content: space-between;
  background:
    radial-gradient(circle at 8% 50%, rgba(14,203,129,.14), transparent 36%),
    linear-gradient(135deg, rgba(14,203,129,.10), rgba(10,47,52,.34));
  border: 1px solid rgba(14,203,129,.2);
  box-shadow: 0 28px 80px rgba(0,0,0,.26), inset 0 1px 0 rgba(255,255,255,.04);
}
.trial-banner--centered .trial-copy {
  text-align: left;
  flex: 1 1 auto;
}
.trial-banner--centered .trial-action {
  align-items: flex-end;
}
.trial-copy h2 { font-size: clamp(1.7rem, 2.3vw, 2.35rem); }
.trial-copy p { font-size: clamp(.95rem, 1.2vw, 1.1rem); }
.gift-box {
  width: 68px;
  height: 68px;
  border-radius: 18px;
}

/* Experience cards: 4 balanced cards, no oversized payment strip */
.experience-cards {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
}
.experience-cards article {
  min-height: 170px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
.experience-cards .payments-card {
  grid-column: auto !important;
}
.payment-logos {
  gap: 7px;
}
.payment-logos span {
  padding: 5px 10px;
  font-size: 11px;
  border-radius: 7px;
}

/* Premium 50/50 free-TV CTA card */
.free-tv-section {
  width: min(var(--max), calc(100% - 48px));
  margin-inline: auto;
  padding: 54px 62px;
  gap: 48px;
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 76% 46%, rgba(252,213,53,.07), transparent 36%),
    linear-gradient(135deg, rgba(13,17,28,.96), rgba(7,9,15,.98));
  border: 1px solid var(--line);
  box-shadow: 0 32px 90px rgba(0,0,0,.30), inset 0 1px 0 rgba(255,255,255,.04);
}
.free-tv-copy { max-width: 560px; }
.free-tv-copy h2 { font-size: clamp(2rem, 3.6vw, 3.2rem); line-height: 1.05; }
.free-tv-price { font-size: clamp(2.8rem, 5vw, 4.6rem); }
.free-tv-copy p { max-width: 560px; }
.free-tv-image {
  justify-content: center;
  min-height: 320px;
}
.free-tv-image img {
  max-width: 620px;
  width: min(100%, 620px);
  filter: drop-shadow(0 32px 55px rgba(0,0,0,.45));
}

/* Mobile polish */
@media (max-width: 1024px) {
  .free-tv-section { grid-template-columns: 1fr; padding: 42px 30px; text-align: center; }
  .free-tv-copy { margin-inline: auto; }
  .free-tv-image { min-height: auto; }
  .experience-cards { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  #trial.trial-banner,
  .trial-banner.trial-banner--centered {
    width: min(100% - 32px, var(--max));
    padding: 30px 22px;
    flex-direction: column;
    text-align: center;
  }
  .trial-banner--centered .trial-copy { text-align: center; }
  .trial-banner--centered .trial-action { align-items: center; }
  .gift-box { display: flex; width: 58px; height: 58px; }
  .experience-cards { grid-template-columns: 1fr; }
  .category-card { min-height: 145px; }
  .free-tv-section { width: min(100% - 32px, var(--max)); padding: 34px 20px; }
  .free-tv-image img { max-width: 100%; }
}

/* ─────────────────────────────────────────────────────────────
   WEBESTIPTV FINAL FIX PASS — 2026-06-10
   Fix direct visual issues only: clearer category images, 4-card grid,
   wider trial CTA, balanced free-TV section, footer logo.
───────────────────────────────────────────────────────────── */

/* Footer logo on light footer */
.site-footer .footer-brand {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: auto !important;
  min-width: 160px !important;
  max-width: 220px !important;
  height: 44px !important;
  padding: 0 18px !important;
  border-radius: 6px !important;
  background: #FCD535 !important;
  color: #181a20 !important;
  font-weight: 900 !important;
  letter-spacing: -0.04em !important;
  line-height: 1 !important;
  overflow: visible !important;
  border: none !important;
}

/* Experience/payment grid: payment method card is the 4th equal card, not a wide strip */
.experience-cards {
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  grid-auto-rows: 1fr !important;
}
.experience-cards > article,
.experience-cards > .payments-card {
  grid-column: auto !important;
  min-height: 174px !important;
  height: 100% !important;
}
.experience-cards > .payments-card .payment-logos {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 7px !important;
  margin-top: 12px !important;
}
.experience-cards > .payments-card .payment-logos span {
  padding: 5px 9px !important;
  font-size: 10.5px !important;
  border-radius: 7px !important;
}

/* Category cards: make images visibly recognizable but keep text readable */
.category-card {
  min-height: 150px !important;
  border-width: 1px !important;
}
.category-card--sports::before,
.category-card--movies::before,
.category-card--world::before,
.category-card--epg::before {
  opacity: .78 !important;
  filter: saturate(1.35) contrast(1.16) brightness(1.02) !important;
  transform: scale(1.02) !important;
  background-size: cover !important;
  background-position: center center !important;
}
.category-card--sports::after,
.category-card--movies::after,
.category-card--world::after,
.category-card--epg::after {
  background:
    linear-gradient(90deg, rgba(4,7,13,.72) 0%, rgba(4,7,13,.42) 46%, rgba(4,7,13,.30) 100%),
    linear-gradient(180deg, rgba(0,0,0,.10), rgba(0,0,0,.35)) !important;
}
.category-card .category-icon {
  background: rgba(5,8,15,.48) !important;
  backdrop-filter: blur(6px) !important;
}
.category-card h3,
.category-card p {
  color: #fff !important;
  text-shadow: 0 2px 14px rgba(0,0,0,.86) !important;
}
.category-card p { color: rgba(255,255,255,.82) !important; }

/* Trial CTA: premium full-width banner with better balance */
#trial.trial-banner,
.trial-banner.trial-banner--centered {
  width: min(var(--max), calc(100% - 48px)) !important;
  max-width: var(--max) !important;
  min-height: 178px !important;
  padding: 46px 54px !important;
  display: grid !important;
  grid-template-columns: auto minmax(0, 1fr) auto !important;
  align-items: center !important;
  gap: 34px !important;
  margin-inline: auto !important;
  border-radius: 28px !important;
}
.trial-banner--centered .trial-copy {
  text-align: left !important;
}
.trial-banner--centered .trial-action {
  align-items: flex-end !important;
}
.trial-banner--centered .btn {
  min-width: 220px !important;
  justify-content: center !important;
}

/* Free TV offer: true premium 50/50 card */
.free-tv-section {
  width: min(var(--max), calc(100% - 48px)) !important;
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 1fr) !important;
  align-items: center !important;
  gap: 42px !important;
  margin-inline: auto !important;
  padding: 58px 64px !important;
  min-height: 430px !important;
  border-radius: 12px !important;
  overflow: hidden !important;
  background:
    radial-gradient(circle at 76% 46%, rgba(252,213,53,.07), transparent 36%),
    linear-gradient(135deg, rgba(13,17,28,.96), rgba(7,9,15,.98)) !important;
  border: 1px solid var(--line) !important;
  box-shadow: 0 32px 90px rgba(0,0,0,.30) !important;
}
.free-tv-copy {
  max-width: 590px !important;
  position: relative !important;
  z-index: 2 !important;
}
.free-tv-copy h2 {
  font-size: clamp(2.1rem, 3.6vw, 3.45rem) !important;
  line-height: 1.04 !important;
}
.free-tv-price {
  font-size: clamp(3.1rem, 5vw, 4.85rem) !important;
  line-height: 1 !important;
}
.free-tv-image {
  min-height: 330px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}
.free-tv-image img {
  width: min(100%, 640px) !important;
  max-width: 640px !important;
  border-radius: 0 !important;
  object-fit: contain !important;
  transform: scale(1.05) !important;
}

@media (max-width: 1024px) {
  .experience-cards { grid-template-columns: repeat(2, minmax(0, 1fr)) !important; }
  .free-tv-section { grid-template-columns: 1fr !important; text-align: center !important; padding: 42px 30px !important; }
  .free-tv-copy { margin-inline: auto !important; }
  .free-tv-image { min-height: auto !important; }
}
@media (max-width: 768px) {
  .experience-cards { grid-template-columns: 1fr !important; }
  #trial.trial-banner,
  .trial-banner.trial-banner--centered {
    grid-template-columns: 1fr !important;
    text-align: center !important;
    padding: 32px 22px !important;
    gap: 18px !important;
  }
  .trial-banner--centered .trial-copy { text-align: center !important; }
  .trial-banner--centered .trial-action { align-items: center !important; }
  .category-card--sports::before,
  .category-card--movies::before,
  .category-card--world::before,
  .category-card--epg::before { opacity: .62 !important; }
  .site-footer .footer-brand { min-width: 170px !important; }
}


/* ── FINAL MICRO POLISH — 2026-06-10 ─────────────────────
   Only requested fixes: hero breathing room, compact feature cards,
   hidden payment badges, footer logo color.
──────────────────────────────────────────────────────────── */
.hero {
  padding-top: 52px !important;
  padding-bottom: 56px !important;
}
.experience-cards {
  grid-auto-rows: auto !important;
  align-items: stretch !important;
}
.experience-cards > article,
.experience-cards > .payments-card {
  min-height: 0 !important;
  height: auto !important;
  padding: 24px !important;
}
.experience-cards .mini-icon {
  margin-bottom: 14px !important;
}
.experience-cards h3 {
  margin-bottom: 8px !important;
}
.experience-cards p {
  margin-bottom: 0 !important;
}
.experience-cards > .payments-card .payment-logos {
  display: none !important;
}
.site-footer .footer-brand {
  gap: 0 !important;
  justify-content: center !important;
}
/* Footer mobile on light bg */
@media (max-width: 768px) {
  .site-footer .footer-brand { min-width: 140px !important; }
}
@media (max-width: 768px) {
  .hero {
    padding-top: 38px !important;
    padding-bottom: 44px !important;
  }
  .experience-cards > article,
  .experience-cards > .payments-card {
    padding: 22px !important;
  }
}

/* ── DARK FOOTER OVERRIDES — neutralise old light-footer !important rules */
.site-footer .footer-brand {
  background: transparent !important;
}

/* ── CONTENT HIGHLIGHTS (sliders section) */
.content-highlights {
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 12px; margin-bottom: 40px;
}
.content-highlight {
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  padding: 24px 16px; border-radius: var(--radius-lg);
  background: var(--surface); border: 1px solid var(--line);
  text-align: center; transition: border-color .18s, transform .18s;
}
.content-highlight:hover { border-color: rgba(255,255,255,.14); transform: translateY(-2px); }
.content-highlight strong { display: block; font-size: 1.3rem; font-weight: 900; color: var(--text); }
.content-highlight > span { font-size: 12.5px; color: var(--text-3); line-height: 1.4; }

/* ── TRIAL TRUST BADGES */
.trial-trust {
  display: flex; flex-wrap: wrap; gap: 8px; margin-top: 14px;
}
.trial-trust span {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 12px; color: var(--text-3);
  padding: 4px 10px; border-radius: 16px;
  border: 1px solid rgba(14,203,129,.18);
}
.trial-trust span svg { width: 12px; height: 12px; fill: none; stroke: #4ade80; stroke-width: 2.5; flex-shrink: 0; }

/* ── REVIEWER AVATARS */
.testimonial-grid article { display: flex; flex-direction: column; gap: 14px; }
.reviewer-header { display: flex; align-items: center; gap: 12px; }
.reviewer-avatar {
  width: 44px; height: 44px; border-radius: 50%; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 17px; font-weight: 800; color: #fff; letter-spacing: 0;
}
.av-purple { background: linear-gradient(135deg, #7c3aed, #a78bfa); }
.av-blue   { background: linear-gradient(135deg, #2563eb, #60a5fa); }
.av-green  { background: linear-gradient(135deg, #16a34a, #4ade80); }
.av-pink   { background: linear-gradient(135deg, #db2777, #f472b6); }
.av-orange { background: linear-gradient(135deg, #c2410c, #fb923c); }
.av-teal   { background: linear-gradient(135deg, #0d9488, #2dd4bf); }
.reviewer-info { display: flex; flex-direction: column; gap: 2px; }
.reviewer-info strong { font-size: 14px; font-weight: 700; color: var(--text); }
.reviewer-info b { font-size: 13px; color: #f59e0b; letter-spacing: .03em; font-style: normal; }
.testimonial-grid p { font-size: 14px; color: var(--text-2); line-height: 1.65; font-style: italic; margin: 0; }
/* Remove the old ::before placeholder circle */
.testimonial-grid span { display: none; }
.testimonial-grid b { display: block; }

/* Responsive: content highlights + pricing */
@media (max-width: 1024px) {
  .content-highlights { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 768px) {
  .content-highlights { grid-template-columns: repeat(2,1fr); }
  .pricing-matrix { grid-template-columns: 1fr !important; }
}
@media (max-width: 480px) {
  .content-highlights { grid-template-columns: 1fr 1fr; }
}

/* Support pill (Zoho SalesIQ) */
.support-link {
  display: flex; align-items: center; gap: 9px;
  padding: 7px 14px; border-radius: 22px;
  background: rgba(252,213,53,.10); border: 1px solid rgba(252,213,53,.22);
  font-size: 12px; color: var(--accent); transition: all .18s; text-decoration: none;
}
.support-link:hover { background: rgba(252,213,53,.16); border-color: rgba(252,213,53,.4); }
.support-link b     { display: block; font-size: 12px; color: var(--accent); }
.support-link small { display: block; font-size: 10.5px; color: rgba(252,213,53,.7); }
.support-icon {
  width: 20px; height: 20px; background: var(--accent); border-radius: 50%; flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%230b0e11'%3E%3Cpath d='M12 3C7.03 3 3 6.58 3 11c0 2.35 1.14 4.46 2.95 5.9L5 21l4.35-2.05c.83.2 1.72.3 2.65.3 4.97 0 9-3.58 9-8s-4.03-8-9-8Z'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: center; background-size: 12px;
}
/* Plan CTA — high-affordance subscribe button */
.smart-plan-card [data-plan-link] {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  width: 100%; margin-top: auto;
  padding: 15px 22px; font-size: 15px; font-weight: 800; letter-spacing: .01em;
  border-radius: 10px; cursor: pointer;
  background: var(--accent); color: #181a20; border: 1px solid rgba(252,213,53,.5);
  box-shadow: 0 6px 20px rgba(252,213,53,.24);
  transition: transform .16s ease, box-shadow .16s ease, background .16s ease;
}
.smart-plan-card [data-plan-link]::after { content: "\203A"; font-size: 19px; line-height: 1; font-weight: 800; }
.smart-plan-card [data-plan-link]:hover {
  background: var(--accent-2); transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(252,213,53,.38);
}
.smart-plan-card [data-plan-link]:active { transform: translateY(0); box-shadow: 0 4px 14px rgba(252,213,53,.28); }
.smart-plan-card [data-plan-link]:focus-visible { outline: 3px solid #fff; outline-offset: 2px; }
.smart-plan-card.featured-plan [data-plan-link] { box-shadow: 0 8px 26px rgba(252,213,53,.38); }
@media (prefers-reduced-motion: reduce) {
  .smart-plan-card [data-plan-link] { transition: none; }
  .smart-plan-card [data-plan-link]:hover { transform: none; }
}
/* pricing: space above payment strip */
.payment-strip { margin-top: 44px; }

/* -- 21b. FOOTER - country / language switcher --------------- */
.footer-langs {
  border-top: 1px solid var(--line);
  width: min(var(--max), calc(100% - 48px)); margin-inline: auto;
  padding: 18px 0;
  display: flex; align-items: center; gap: 16px; flex-wrap: wrap;
}
.footer-langs-label {
  font-size: 12px; font-weight: 700; text-transform: uppercase;
  letter-spacing: .06em; color: var(--text-3);
}
.footer-langs ul {
  list-style: none; margin: 0; padding: 0;
  display: flex; flex-wrap: wrap; gap: 8px;
}
.footer-langs a,
.footer-langs span[aria-current] {
  display: block; font-size: 13px; line-height: 1; padding: 8px 13px;
  border: 1px solid var(--line); border-radius: 6px;
  color: var(--text-3); background: var(--bg);
  transition: color .15s, border-color .15s;
}
.footer-langs a:hover { color: var(--text); border-color: var(--text-3); }
.footer-langs a:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }
.footer-langs span[aria-current] { color: var(--accent); border-color: var(--accent); }
@media (max-width: 700px) {
  .footer-langs { gap: 12px; padding: 16px 0; }
  .footer-langs a, .footer-langs span[aria-current] { font-size: 12.5px; padding: 7px 11px; }
}
