/* ============================================================
   Sa93View — Licensed IPTV Landing Page
   Design tokens & component styles
   ============================================================ */

/* ---------- Tokens ---------- */
:root {
  --bg: #131417;
  --surface: #1E1F22;
  --card: #252629;
  --border: #34363B;
  --primary: #6A79FA;        /* indigo */
  --primary-2: #5623D8;      /* purple */
  --primary-hover: #8290FF;
  --glow: #8B6BFF;           /* purple glow */
  --text: #FFFFFF;
  --muted: #A6ABB6;
  --success: #3DD68C;
  --grad: linear-gradient(90deg, #5623D8 0%, #6A79FA 100%);

  --maxw: 1200px;
  --radius: 18px;
  --radius-sm: 12px;
  --radius-pill: 999px;

  --ff-display: "Oxanium", system-ui, sans-serif;
  --ff-body: "Manrope", system-ui, sans-serif;

  --shadow-card: 0 1px 0 rgba(255,255,255,0.03) inset, 0 18px 40px -24px rgba(0,0,0,0.8);
  --shadow-glow: 0 18px 50px -12px rgba(106,121,250,0.55);

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

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--ff-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul { list-style: none; padding: 0; }
:focus-visible { outline: 2px solid var(--primary-hover); outline-offset: 3px; border-radius: 6px; }

/* ---------- Layout helpers ---------- */
.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: 24px; }
.section { padding-block: 96px; position: relative; }
.section--surface { background: var(--surface); }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--ff-display);
  font-size: 0.8rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--glow);
}
.eyebrow::before { content: ""; width: 22px; height: 1px; background: var(--glow); opacity: 0.6; }

.section-head { max-width: 640px; margin-bottom: 56px; }
.section-head--center { margin-inline: auto; text-align: center; }
h1, h2, h3 { font-family: var(--ff-display); font-weight: 700; line-height: 1.08; letter-spacing: -0.02em; }
.h2 { font-size: clamp(2rem, 4vw, 3rem); margin-top: 14px; }
.section-sub { color: var(--muted); font-size: 1.05rem; margin-top: 16px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--ff-display); font-weight: 600; font-size: 1rem;
  padding: 14px 26px; border-radius: var(--radius-pill);
  transition: transform .25s var(--ease), background .25s var(--ease), box-shadow .25s var(--ease), border-color .25s var(--ease);
  min-height: 50px; white-space: nowrap;
}
.btn--primary { background: var(--grad); color: #fff; box-shadow: var(--shadow-glow); }
.btn--primary:hover { filter: brightness(1.12); transform: translateY(-2px); box-shadow: 0 22px 60px -10px rgba(106,121,250,0.75); }
.btn--ghost { background: rgba(255,255,255,0.04); color: #fff; border: 1px solid var(--border); }
.btn--ghost:hover { background: rgba(255,255,255,0.08); border-color: var(--primary); transform: translateY(-2px); }
.btn--lg { padding: 17px 34px; font-size: 1.08rem; min-height: 58px; }
.btn--block { width: 100%; }

/* ---------- Navbar ---------- */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  transition: background .35s var(--ease), backdrop-filter .35s var(--ease), border-color .35s var(--ease), padding .35s var(--ease);
  border-bottom: 1px solid transparent;
}
.nav__inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding-block: 20px; transition: padding .35s var(--ease); }
.nav.is-scrolled { background: rgba(19,20,23,0.85); backdrop-filter: blur(14px); border-bottom-color: var(--border); }
.nav.is-scrolled .nav__inner { padding-block: 12px; }

.brand { display: inline-flex; align-items: center; gap: 11px; font-family: var(--ff-display); font-weight: 700; font-size: 1.3rem; letter-spacing: -0.02em; }
.brand__mark {
  width: 34px; height: 34px; border-radius: 9px; display: grid; place-items: center;
  background: linear-gradient(135deg, var(--primary), var(--glow));
  box-shadow: 0 8px 20px -6px rgba(106,121,250,0.8);
}
.brand__mark svg { width: 18px; height: 18px; }
.brand b { color: var(--glow); font-weight: 700; }

.nav__links { display: flex; align-items: center; gap: 30px; }
.nav__links a { color: var(--muted); font-size: 0.95rem; font-weight: 500; transition: color .2s; }
.nav__links a:hover { color: #fff; }
.nav__cta { display: flex; align-items: center; gap: 14px; }
.nav__burger { display: none; width: 44px; height: 44px; border-radius: 10px; align-items: center; justify-content: center; border: 1px solid var(--border); background: rgba(255,255,255,0.03); }
.nav__burger span { display: block; width: 20px; height: 2px; background: #fff; position: relative; transition: .3s var(--ease); }
.nav__burger span::before, .nav__burger span::after { content: ""; position: absolute; left: 0; width: 20px; height: 2px; background: #fff; transition: .3s var(--ease); }
.nav__burger span::before { top: -6px; }
.nav__burger span::after { top: 6px; }

/* Mobile slide-in menu */
.mobile-menu {
  position: fixed; inset: 0; z-index: 99; background: rgba(19,20,23,0.97); backdrop-filter: blur(8px);
  display: flex; flex-direction: column; padding: 96px 28px 40px;
  transform: translateX(100%); transition: transform .4s var(--ease); visibility: hidden;
}
.mobile-menu.is-open { transform: translateX(0); visibility: visible; }
.mobile-menu a { font-family: var(--ff-display); font-size: 1.5rem; font-weight: 600; padding-block: 16px; border-bottom: 1px solid var(--border); }
.mobile-menu .btn { margin-top: 28px; }

/* ---------- Hero (video motionwall) ---------- */
.hero { position: relative; min-height: 100vh; display: grid; place-items: center; padding: 150px 0 90px; overflow: hidden; text-align: center; }
.hero__video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.hero__overlay { position: absolute; inset: 0; z-index: 1; background:
  linear-gradient(180deg, rgba(19,20,23,var(--hero-top,0.55)) 0%, rgba(19,20,23,var(--hero-mid,0.78)) 55%, var(--bg) 100%); }
.hero__glow {
  position: absolute; top: 8%; left: 50%; transform: translateX(-50%);
  width: 1200px; height: 760px; pointer-events: none; z-index: 1;
  background: radial-gradient(ellipse at center, rgba(86,35,216,0.45), rgba(106,121,250,0.16) 42%, transparent 68%);
  filter: blur(22px);
}
.hero__inner { position: relative; z-index: 2; display: flex; flex-direction: column; align-items: center; max-width: 880px; }
.hero h1 { font-size: clamp(2.6rem, 6vw, 5rem); margin-top: 22px; text-wrap: balance; }
.hero h1 .accent { background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero__sub { color: #D7DAE2; font-size: clamp(1.05rem, 1.5vw, 1.25rem); margin-top: 22px; max-width: 620px; }
.hero__ctas { display: flex; flex-wrap: wrap; justify-content: center; gap: 16px; margin-top: 34px; }
.hero__trust { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 10px 20px; margin-top: 24px; color: var(--muted); font-size: 0.92rem; }
.hero__trust span { display: inline-flex; align-items: center; gap: 8px; }
.hero__trust .dot { width: 5px; height: 5px; border-radius: 50%; background: var(--success); }
.hero__rating { display: inline-flex; align-items: center; gap: 12px; margin-top: 30px; padding: 10px 20px; border-radius: var(--radius-pill); background: rgba(255,255,255,0.05); border: 1px solid var(--border); backdrop-filter: blur(8px); flex-wrap: wrap; justify-content: center; }
.hero__rating .stars { color: #FFC555; letter-spacing: 2px; font-size: 0.95rem; }
.hero__rating b { font-family: var(--ff-display); font-weight: 700; font-size: 1.05rem; }
.hero__rating .muted { color: var(--muted); font-size: 0.88rem; }

.badge-row { display: inline-flex; align-items: center; gap: 10px; padding: 8px 16px 8px 10px; border-radius: var(--radius-pill); background: rgba(255,255,255,0.06); border: 1px solid var(--border); font-size: 0.85rem; color: #D7DAE2; backdrop-filter: blur(8px); }
.badge-row b { color: #fff; font-weight: 700; }
.badge-row .pulse { width: 8px; height: 8px; border-radius: 50%; background: var(--success); box-shadow: 0 0 0 0 rgba(61,214,140,0.7); animation: pulse 2.2s infinite; }
@keyframes pulse { 0%{box-shadow:0 0 0 0 rgba(61,214,140,0.6);} 70%{box-shadow:0 0 0 9px rgba(61,214,140,0);} 100%{box-shadow:0 0 0 0 rgba(61,214,140,0);} }

/* ---------- City marquee ---------- */
.marquee { overflow: hidden; border-block: 1px solid var(--border); background: rgba(255,255,255,0.015); padding-block: 26px; }
.marquee__track { display: flex; align-items: center; gap: 0; width: max-content; animation: marquee var(--marquee-dur, 38s) linear infinite; }
.marquee__item { font-family: var(--ff-display); font-weight: 700; font-size: clamp(2rem, 4vw, 3.4rem); letter-spacing: 0.01em; padding: 0 30px; color: transparent; -webkit-text-stroke: 1px rgba(255,255,255,0.32); text-stroke: 1px rgba(255,255,255,0.32); white-space: nowrap; }
.marquee__dot { width: 9px; height: 9px; border-radius: 50%; background: var(--grad); flex-shrink: 0; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.marquee:hover .marquee__track { animation-play-state: paused; }
@media (prefers-reduced-motion: reduce) { .marquee__track { animation: none; } }

/* ---------- Collage strip ---------- */
.collage { padding-block: 0; }
.collage__img { width: 100%; max-width: 1100px; margin-inline: auto; display: block; border-radius: var(--radius); border: 1px solid var(--border); box-shadow: 0 30px 80px -40px rgba(0,0,0,0.9), var(--shadow-glow); }

.hero__chip { position: absolute; display: flex; align-items: center; gap: 10px; padding: 12px 16px; border-radius: 14px; background: rgba(20,28,46,0.9); border: 1px solid var(--border); backdrop-filter: blur(10px); box-shadow: 0 18px 40px -18px rgba(0,0,0,0.8); font-size: 0.85rem; }
.hero__chip b { font-family: var(--ff-display); font-size: 1.05rem; }
.hero__chip .ic { width: 34px; height: 34px; border-radius: 9px; display: grid; place-items: center; background: rgba(106,121,250,0.15); color: var(--glow); }
.hero__chip--tl { top: 26px; left: -34px; }
.hero__chip--br { bottom: 30px; right: -28px; }
.hero__chip .small { color: var(--muted); font-size: 0.72rem; }

/* ---------- Trust strip ---------- */
.trust-strip { border-block: 1px solid var(--border); background: rgba(255,255,255,0.015); }
.trust-strip__inner { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 18px 40px; padding-block: 22px; text-align: center; }
.trust-strip__item { display: inline-flex; align-items: center; gap: 10px; color: var(--muted); font-size: 0.93rem; }
.trust-strip__item b { color: #fff; }
.trust-strip .stars { color: #FFC555; letter-spacing: 2px; }
.trust-strip .sep { width: 1px; height: 22px; background: var(--border); }
.dev-icons { display: inline-flex; gap: 12px; color: var(--muted); }
.dev-icons svg { width: 22px; height: 22px; }

/* ---------- Stats / What you get ---------- */
.stats-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.stat-card {
  background: var(--card); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 32px 28px; box-shadow: var(--shadow-card); position: relative; overflow: hidden;
  transition: transform .35s var(--ease), border-color .35s var(--ease), box-shadow .35s var(--ease);
}
.stat-card::before { content:""; position:absolute; inset:0 0 auto 0; height:3px; background: linear-gradient(90deg, var(--primary), var(--glow)); opacity:0; transition: opacity .35s; }
.stat-card:hover { transform: translateY(-6px); border-color: rgba(106,121,250,0.5); box-shadow: var(--shadow-card), var(--shadow-glow); }
.stat-card:hover::before { opacity: 1; }
.stat-card .ic { width: 48px; height: 48px; border-radius: 12px; display: grid; place-items: center; background: rgba(106,121,250,0.14); color: var(--glow); margin-bottom: 22px; }
.stat-card .ic svg { width: 24px; height: 24px; }
.stat-num { font-family: var(--ff-display); font-weight: 800; font-size: clamp(2.2rem, 3.6vw, 3rem); line-height: 1; letter-spacing: -0.03em; background: linear-gradient(120deg, #fff, #b9c6e8); -webkit-background-clip: text; background-clip: text; color: transparent; }
.stat-label { font-family: var(--ff-display); font-weight: 600; font-size: 1.05rem; margin-top: 12px; }
.stat-desc { color: var(--muted); font-size: 0.95rem; margin-top: 6px; }

/* ---------- Features ---------- */
.feature-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); padding: 30px 28px;
  transition: transform .35s var(--ease), border-color .35s var(--ease), box-shadow .35s var(--ease);
}
.feature-card:hover { transform: translateY(-6px); border-color: rgba(106,121,250,0.5); box-shadow: var(--shadow-glow); background: linear-gradient(160deg, #182238, var(--card)); }
.feature-card .ic { width: 50px; height: 50px; border-radius: 13px; display: grid; place-items: center; background: linear-gradient(135deg, rgba(106,121,250,0.22), rgba(139,107,255,0.1)); color: var(--glow); margin-bottom: 20px; }
.feature-card .ic svg { width: 25px; height: 25px; }
.feature-card h3 { font-size: 1.2rem; }
.feature-card p { color: var(--muted); margin-top: 10px; font-size: 0.97rem; }

/* ---------- Pricing ---------- */
.pricing-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; align-items: stretch; }
.price-card {
  background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 30px 26px;
  display: flex; flex-direction: column; position: relative; transition: transform .35s var(--ease), border-color .35s var(--ease), box-shadow .35s var(--ease);
}
.price-card:hover { transform: translateY(-6px); border-color: rgba(106,121,250,0.5); box-shadow: var(--shadow-glow); }
.price-card.is-best {
  border-color: var(--primary); box-shadow: var(--shadow-glow);
  background: linear-gradient(170deg, rgba(106,121,250,0.12), var(--card) 55%);
}
.price-card.is-best::after { content:""; position:absolute; inset:-1px; border-radius: calc(var(--radius) + 1px); padding:1px; background: linear-gradient(160deg, var(--glow), var(--primary), transparent); -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0); -webkit-mask-composite: xor; mask-composite: exclude; pointer-events:none; }
.price-badge { position: absolute; top: -13px; left: 50%; transform: translateX(-50%); font-family: var(--ff-display); font-weight: 600; font-size: 0.72rem; letter-spacing: 0.08em; text-transform: uppercase; padding: 6px 14px; border-radius: var(--radius-pill); white-space: nowrap; }
.price-badge--best { background: linear-gradient(120deg, var(--primary), var(--glow)); color: #fff; box-shadow: 0 8px 20px -6px rgba(106,121,250,0.8); }
.price-badge--pop { background: rgba(255,255,255,0.08); color: #fff; border: 1px solid var(--border); }
.price-card .plan { font-family: var(--ff-display); font-weight: 600; font-size: 1.1rem; color: var(--muted); }
.price-card .amount { font-family: var(--ff-display); font-weight: 800; font-size: 2.6rem; letter-spacing: -0.03em; margin-top: 14px; }
.price-card .amount span { font-size: 1rem; font-weight: 500; color: var(--muted); }
.price-card .permo { color: var(--glow); font-size: 0.92rem; margin-top: 4px; font-weight: 600; }
.price-card .save { display: inline-block; margin-top: 12px; font-size: 0.8rem; font-weight: 600; color: var(--success); background: rgba(61,214,140,0.12); padding: 4px 10px; border-radius: var(--radius-pill); }
.price-card .save--empty { visibility: hidden; }
.price-card ul { margin: 22px 0 26px; display: flex; flex-direction: column; gap: 11px; }
.price-card li { display: flex; gap: 10px; font-size: 0.9rem; color: #cdd6e8; }
.price-card li svg { width: 17px; height: 17px; flex-shrink: 0; color: var(--success); margin-top: 3px; }
.price-card .btn { margin-top: auto; }

/* ---------- Reviews ---------- */
.review-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.review-card { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 28px 26px; display: flex; flex-direction: column; transition: transform .35s var(--ease), border-color .35s var(--ease), box-shadow .35s var(--ease); }
.review-card:hover { transform: translateY(-6px); border-color: rgba(106,121,250,0.5); box-shadow: var(--shadow-glow); }
.review-card .stars { color: #FFC555; letter-spacing: 2px; font-size: 0.95rem; }
.review-card p { color: #d4dcec; font-size: 0.97rem; margin: 16px 0 22px; flex-grow: 1; }
.review-card .who { display: flex; align-items: center; gap: 12px; }
.avatar { width: 42px; height: 42px; border-radius: 50%; display: grid; place-items: center; font-family: var(--ff-display); font-weight: 700; font-size: 0.95rem; color: #fff; background: linear-gradient(135deg, var(--primary), var(--glow)); }
.review-card .name { font-family: var(--ff-display); font-weight: 600; font-size: 0.95rem; }
.review-card .role { color: var(--muted); font-size: 0.82rem; }

/* ---------- Free trial band ---------- */
.trial-band { position: relative; overflow: hidden; }
.trial-band__box {
  position: relative; border-radius: 28px; padding: 64px 48px; text-align: center; overflow: hidden;
  background: linear-gradient(150deg, #241050, #0B1326 70%); border: 1px solid rgba(106,121,250,0.4);
}
.trial-band__box::before { content:""; position:absolute; top:-120px; left:50%; transform:translateX(-50%); width:700px; height:500px; background: radial-gradient(ellipse at center, rgba(106,121,250,0.5), transparent 65%); filter: blur(12px); }
.trial-band__box > * { position: relative; z-index: 1; }
.trial-band h2 { font-size: clamp(2rem, 4vw, 3rem); }
.trial-band p { color: #c3cde2; max-width: 560px; margin: 18px auto 32px; font-size: 1.08rem; }

/* ---------- FAQ ---------- */
.faq-list { max-width: 820px; margin-inline: auto; display: flex; flex-direction: column; gap: 14px; }
.faq-item { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius-sm); overflow: hidden; transition: border-color .3s; }
.faq-item.is-open { border-color: rgba(106,121,250,0.5); }
.faq-q { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 18px; text-align: left; padding: 22px 24px; font-family: var(--ff-display); font-weight: 600; font-size: 1.05rem; }
.faq-q .icon { flex-shrink: 0; width: 26px; height: 26px; border-radius: 50%; display: grid; place-items: center; border: 1px solid var(--border); position: relative; transition: .3s var(--ease); }
.faq-q .icon::before, .faq-q .icon::after { content:""; position:absolute; background:#fff; transition: .3s var(--ease); }
.faq-q .icon::before { width: 11px; height: 2px; }
.faq-q .icon::after { width: 2px; height: 11px; }
.faq-item.is-open .faq-q .icon { background: var(--primary); border-color: var(--primary); transform: rotate(180deg); }
.faq-item.is-open .faq-q .icon::after { opacity: 0; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .4s var(--ease); }
.faq-a p { padding: 0 24px 24px; color: var(--muted); font-size: 0.98rem; }

/* ---------- Final CTA ---------- */
.final-cta { text-align: center; position: relative; overflow: hidden; }
.final-cta__glow { position: absolute; bottom: -200px; left: 50%; transform: translateX(-50%); width: 900px; height: 500px; background: radial-gradient(ellipse at center, rgba(106,121,250,0.3), transparent 65%); filter: blur(20px); pointer-events: none; }
.final-cta h2 { font-size: clamp(2.2rem, 5vw, 3.6rem); position: relative; }
.final-cta p { color: var(--muted); font-size: 1.12rem; margin: 20px auto 34px; max-width: 520px; position: relative; }
.final-cta__ctas { display: flex; justify-content: center; flex-wrap: wrap; gap: 16px; position: relative; }

/* ---------- Footer ---------- */
.footer { background: var(--surface); border-top: 1px solid var(--border); padding-block: 64px 36px; }
.footer__top { display: grid; grid-template-columns: 1.6fr repeat(4, 1fr); gap: 40px; }
.footer__brand p { color: var(--muted); font-size: 0.93rem; margin-top: 16px; max-width: 280px; }
.footer h4 { font-family: var(--ff-display); font-size: 0.95rem; margin-bottom: 16px; }
.footer__col a { display: block; color: var(--muted); font-size: 0.92rem; padding-block: 6px; transition: color .2s; }
.footer__col a:hover { color: #fff; }
.footer__bottom { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 20px; margin-top: 48px; padding-top: 28px; border-top: 1px solid var(--border); }
.footer__social { display: flex; gap: 12px; }
.footer__social a { width: 38px; height: 38px; border-radius: 10px; display: grid; place-items: center; border: 1px solid var(--border); color: var(--muted); transition: .25s; }
.footer__social a:hover { color: #fff; border-color: var(--primary); background: rgba(106,121,250,0.1); }
.footer__social svg { width: 17px; height: 17px; }
.footer__pay { display: flex; align-items: center; gap: 10px; color: var(--muted); font-size: 0.85rem; flex-wrap: wrap; }
.pay-badge { padding: 5px 11px; border-radius: 7px; border: 1px solid var(--border); font-family: var(--ff-display); font-weight: 600; font-size: 0.74rem; color: #cdd6e8; }
.footer__copy { color: var(--muted); font-size: 0.86rem; }

/* ---------- Scroll reveal ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: .08s; }
.reveal[data-delay="2"] { transition-delay: .16s; }
.reveal[data-delay="3"] { transition-delay: .24s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; }
  html { scroll-behavior: auto; }
}

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 1024px) {
  .stats-grid, .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .review-grid { grid-template-columns: repeat(2, 1fr); }
  .footer__top { grid-template-columns: 1fr 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }
}

@media (max-width: 760px) {
  .section { padding-block: 68px; }
  .nav__links, .nav__cta .btn { display: none; }
  .nav__burger { display: flex; }
  .hero { padding-top: 120px; min-height: 90vh; }
  .hero__ctas .btn { flex: 1 1 auto; }
  .stats-grid, .feature-grid, .pricing-grid, .review-grid { grid-template-columns: 1fr; }
  .price-card.is-best { transform: none; }
  .trust-strip .sep { display: none; }
  .trial-band__box { padding: 44px 24px; }
  .footer__top { grid-template-columns: 1fr 1fr; }
  .footer__bottom { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 420px) {
  .container { padding-inline: 18px; }
  .footer__top { grid-template-columns: 1fr; }
}

/* ============================================================
   Color palettes (tweakable via data-palette on <body>)
   ============================================================ */
body[data-palette="blue"] {
  --primary: #38BDF8; --primary-2: #1D4ED8; --primary-hover: #5BCBFF; --glow: #38BDF8;
  --grad: linear-gradient(90deg, #1D4ED8 0%, #38BDF8 100%);
  --shadow-glow: 0 18px 50px -12px rgba(56,189,248,0.55);
}
body[data-palette="crimson"] {
  --primary: #FB7185; --primary-2: #E11D48; --primary-hover: #FF8FA0; --glow: #FB7185;
  --grad: linear-gradient(90deg, #E11D48 0%, #FB7185 100%);
  --shadow-glow: 0 18px 50px -12px rgba(244,63,94,0.55);
}
body[data-palette="emerald"] {
  --primary: #10B981; --primary-2: #047857; --primary-hover: #34D399; --glow: #34D399;
  --grad: linear-gradient(90deg, #047857 0%, #10B981 100%);
  --shadow-glow: 0 18px 50px -12px rgba(16,185,129,0.5);
}
body[data-palette="amber"] {
  --primary: #F59E0B; --primary-2: #D97706; --primary-hover: #FBBF24; --glow: #FBBF24;
  --grad: linear-gradient(90deg, #D97706 0%, #F59E0B 100%);
  --shadow-glow: 0 18px 50px -12px rgba(245,158,11,0.5);
}

/* hidden via tweak toggles */
[data-hide="true"] { display: none !important; }

/* ============================================================
   Split section (heading + visual) — shared
   ============================================================ */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.split--rev .split__visual { order: -1; }
.split h2 { font-size: clamp(2rem, 4vw, 3.2rem); }
.split .lead { color: var(--muted); font-size: 1.05rem; margin-top: 18px; max-width: 540px; }

/* ---------- Compatible with All Devices ---------- */
.device-list { display: flex; flex-direction: column; gap: 14px; margin-top: 28px; }
.device-list li { display: flex; gap: 12px; color: #cdd2dd; font-size: 1rem; line-height: 1.5; }
.device-list li svg { width: 20px; height: 20px; flex-shrink: 0; color: var(--primary); margin-top: 3px; }
.device-list b { color: #fff; font-weight: 700; }
.split__note { margin-top: 26px; color: var(--muted); font-style: italic; }

/* CSS device cluster */
.devices-art { position: relative; aspect-ratio: 4/3; }
.devices-art .glow { position: absolute; inset: 6% 0 0; background: radial-gradient(ellipse at 55% 40%, rgba(106,121,250,0.28), transparent 62%); filter: blur(10px); }
.tv { position: absolute; left: 10%; top: 4%; width: 78%; border-radius: 14px; overflow: hidden; border: 1px solid var(--border); background: #0f1016; box-shadow: 0 40px 90px -34px rgba(0,0,0,0.95), var(--shadow-glow); }
.tv__bar { display: flex; align-items: center; justify-content: space-between; padding: 9px 14px; font-family: var(--ff-display); font-size: 0.72rem; color: var(--muted); border-bottom: 1px solid var(--border); }
.tv__bar .lt { display: inline-flex; align-items: center; gap: 7px; color: #fff; font-weight: 700; }
.tv__bar .lt .d { width: 16px; height: 16px; border-radius: 50%; background: var(--grad); }
.tv__hero { margin: 12px; aspect-ratio: 21/9; border-radius: 10px; background: linear-gradient(120deg, var(--primary-2), #23202E 70%, var(--primary)); position: relative; overflow: hidden; }
.tv__hero::after { content:""; position:absolute; inset:0; background: radial-gradient(circle at 75% 25%, rgba(255,255,255,0.22), transparent 55%); }
.tv__hero .play { position: absolute; left: 16px; bottom: 14px; width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,0.94); display: grid; place-items: center; }
.tv__hero .play svg { width: 13px; height: 13px; fill: #111; margin-left: 2px; }
.tv__row { display: grid; grid-template-columns: repeat(5,1fr); gap: 8px; padding: 0 12px 8px; }
.tv__row div { aspect-ratio: 2/3; border-radius: 6px; background: linear-gradient(160deg, #232a3f, #161b2a); border: 1px solid rgba(255,255,255,0.05); }
.tv__rail { display: flex; gap: 14px; justify-content: center; padding: 6px 12px 14px; }
.tv__rail i { width: 22px; height: 22px; border-radius: 6px; background: rgba(255,255,255,0.08); display: block; }
.tv__rail i.on { background: var(--grad); }
.phone { position: absolute; left: 0; bottom: 2%; width: 22%; aspect-ratio: 9/19; border-radius: 16px; border: 1px solid var(--border); background: #0f1016; box-shadow: 0 26px 60px -28px rgba(0,0,0,0.95); overflow: hidden; padding: 10px 7px; }
.phone .ph-hero { height: 34%; border-radius: 8px; background: var(--grad); }
.phone .ph-line { height: 7px; border-radius: 4px; background: rgba(255,255,255,0.1); margin-top: 8px; }
.phone .ph-line.s { width: 60%; }
.phone .ph-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 6px; margin-top: 10px; }
.phone .ph-grid div { aspect-ratio: 2/3; border-radius: 5px; background: rgba(255,255,255,0.06); }
.remote { position: absolute; right: 1%; bottom: 6%; width: 8.5%; aspect-ratio: 1/3; border-radius: 30px; background: linear-gradient(180deg,#2a2c33,#16171b); border: 1px solid var(--border); box-shadow: 0 20px 40px -22px rgba(0,0,0,0.9); }
.remote::before { content:""; position:absolute; top:16%; left:50%; transform:translateX(-50%); width:54%; aspect-ratio:1; border-radius:50%; background: var(--grad); }

/* ---------- Servers worldwide (interactive map) ---------- */
.servers h2 .num { color: transparent; background: var(--grad); -webkit-background-clip: text; background-clip: text; }

.worldmap { position: relative; width: 100%; max-width: 1100px; margin: 8px auto 0; aspect-ratio: 1000 / 500; border-radius: var(--radius); overflow: hidden;
  background: radial-gradient(120% 130% at 50% 0%, rgba(86,35,216,0.12), transparent 60%), var(--surface);
  border: 1px solid var(--border); box-shadow: 0 30px 80px -44px rgba(0,0,0,0.9), inset 0 1px 0 rgba(255,255,255,0.03); }
.worldmap__dots, .worldmap__arcs { position: absolute; inset: 0; width: 100%; height: 100%; }
.worldmap__dots circle { fill: color-mix(in srgb, var(--primary) 42%, #3a3550); }
.wm-dot-anim { animation: wmTwinkle 3s ease-in-out infinite; }

/* arcs */
.worldmap__arcs path { fill: none; stroke: var(--primary); stroke-width: 1.4; opacity: 0.5;
  stroke-dasharray: 5 8; animation: wmDash 1.2s linear infinite; }
.worldmap__arcs .arc-travel { fill: var(--glow); }
@keyframes wmDash { to { stroke-dashoffset: -26; } }
@keyframes wmTwinkle { 0%,100% { opacity: .5; } 50% { opacity: 1; } }

/* radar scan sweep */
.worldmap__scan { position: absolute; inset: 0; pointer-events: none; mix-blend-mode: screen;
  background: linear-gradient(90deg, transparent 0%, color-mix(in srgb, var(--primary) 26%, transparent) 48%, color-mix(in srgb, var(--glow) 32%, transparent) 50%, transparent 52%);
  transform: translateX(-100%); animation: wmScan 7s linear infinite; }
@keyframes wmScan { 0% { transform: translateX(-100%); } 60%,100% { transform: translateX(100%); } }

/* markers */
.worldmap__markers { position: absolute; inset: 0; }
.wm-marker { position: absolute; transform: translate(-50%, -50%); cursor: pointer; z-index: 2;
  opacity: 0; scale: 0.4; transition: opacity .5s var(--ease), scale .5s var(--ease); }
.wm-marker.in { opacity: 1; scale: 1; }
.wm-pin { position: relative; width: 18px; height: 18px; border-radius: 50%; background: var(--grad);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--primary) 30%, transparent), 0 4px 10px -2px rgba(0,0,0,0.7); }
.wm-pin::before { content: ""; position: absolute; inset: 4px; border-radius: 50%; background: #fff; opacity: 0.95; }
.wm-pin::after { content: ""; position: absolute; inset: -4px; border-radius: 50%; border: 2px solid var(--primary);
  opacity: 0; animation: wmPulse 2.4s ease-out infinite; }
.wm-marker:nth-child(2n) .wm-pin::after { animation-delay: .8s; }
.wm-marker:nth-child(3n) .wm-pin::after { animation-delay: 1.5s; }
@keyframes wmPulse { 0% { transform: scale(0.7); opacity: 0.8; } 100% { transform: scale(2.6); opacity: 0; } }

.wm-label { position: absolute; left: 26px; top: 50%; transform: translateY(-50%); white-space: nowrap;
  font-family: var(--ff-display); font-weight: 600; font-size: 0.8rem; color: #fff;
  padding: 5px 12px; border-radius: var(--radius-pill); background: rgba(20,21,26,0.92);
  border: 1px solid var(--border); box-shadow: 0 6px 16px -8px rgba(0,0,0,0.8); pointer-events: none; }
.wm-mini .wm-pin { width: 11px; height: 11px; box-shadow: 0 0 0 2px color-mix(in srgb, var(--primary) 26%, transparent); }
.wm-mini .wm-pin::before { inset: 3px; }
.wm-marker:hover { z-index: 5; }
.wm-marker:hover .wm-pin { scale: 1.18; }
.wm-marker:hover .wm-label { background: var(--grad); border-color: transparent; }
.wm-marker.is-active .wm-pin { box-shadow: 0 0 0 4px color-mix(in srgb, var(--glow) 45%, transparent), 0 0 24px var(--glow); }
.wm-marker.is-active .wm-label { background: var(--grad); border-color: transparent; }

.worldmap__legend { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px 28px; margin-top: 28px; color: var(--muted); font-size: 0.92rem; }
.worldmap__legend .wl-item { display: inline-flex; align-items: center; gap: 9px; }
.worldmap__legend b { color: #fff; font-weight: 700; }
.wl-dot { width: 11px; height: 11px; border-radius: 50%; background: var(--grad); }
.wl-live { width: 9px; height: 9px; border-radius: 50%; background: var(--success); box-shadow: 0 0 0 0 rgba(61,214,140,0.7); animation: pulse 2.2s infinite; }
@media (max-width: 640px) {
  .wm-label { display: none; }
  .wm-marker:hover .wm-label, .wm-marker.is-active .wm-label { display: block; }
}

/* ============================================================
   Free-trial modal
   ============================================================ */
.modal { position: fixed; inset: 0; z-index: 1000; display: grid; place-items: center; padding: 22px;
  background: rgba(7,8,11,0.72); backdrop-filter: blur(8px); opacity: 0; visibility: hidden;
  transition: opacity .3s var(--ease), visibility .3s var(--ease); }
.modal.is-open { opacity: 1; visibility: visible; }
.modal__card { position: relative; width: 100%; max-width: 480px; background: var(--card);
  border: 1px solid var(--border); border-radius: 20px; padding: 34px 30px 30px;
  box-shadow: 0 40px 100px -30px rgba(0,0,0,0.9), var(--shadow-glow);
  transform: translateY(16px) scale(0.98); transition: transform .35s var(--ease); max-height: calc(100vh - 44px); overflow-y: auto; }
.modal.is-open .modal__card { transform: none; }
.modal__x { position: absolute; top: 16px; right: 16px; width: 38px; height: 38px; border-radius: 10px;
  display: grid; place-items: center; border: 1px solid var(--border); background: rgba(255,255,255,0.03); color: var(--muted); transition: .2s; }
.modal__x:hover { color: #fff; background: rgba(255,255,255,0.08); }
.modal__x svg { width: 16px; height: 16px; }
.modal__brand { display: inline-flex; align-items: center; gap: 9px; font-family: var(--ff-display); font-weight: 700; font-size: 1rem; }
.modal__brand .brand__mark { width: 28px; height: 28px; }
.modal__brand .brand__mark svg { width: 15px; height: 15px; }
.modal__brand b { color: var(--primary); }
.modal h3 { font-family: var(--ff-display); font-size: 1.5rem; margin-top: 16px; letter-spacing: -0.01em; }
.modal__sub { color: var(--muted); font-size: 0.95rem; margin-top: 8px; }
.modal__field-label { font-family: var(--ff-display); font-weight: 600; font-size: 0.82rem; letter-spacing: 0.04em; text-transform: uppercase; color: var(--muted); margin: 24px 0 12px; }

.channel-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; }
.channel { display: flex; flex-direction: column; align-items: center; gap: 8px; padding: 14px 6px; border-radius: 14px;
  border: 1px solid var(--border); background: rgba(255,255,255,0.02); cursor: pointer; transition: .22s var(--ease); color: var(--muted); }
.channel:hover { border-color: color-mix(in srgb, var(--primary) 50%, transparent); color: #fff; transform: translateY(-2px); }
.channel.is-sel { background: var(--grad); border-color: transparent; color: #fff; box-shadow: var(--shadow-glow); }
.channel__ic { width: 30px; height: 30px; display: grid; place-items: center; }
.channel__ic svg { width: 28px; height: 28px; }
.channel span { font-size: 0.78rem; font-weight: 600; }

.modal__input-wrap { margin-top: 22px; }
.modal__input-wrap > label { display: block; font-size: 0.85rem; color: #cdd2dd; font-weight: 600; margin-bottom: 9px; }
.modal__input { display: flex; align-items: center; gap: 0; height: 52px; border-radius: var(--radius-sm);
  border: 1px solid var(--border); background: rgba(255,255,255,0.03); overflow: hidden; transition: border-color .2s; }
.modal__input.invalid { border-color: #FB5570; }
.modal__input .prefix { padding: 0 0 0 15px; color: var(--muted); font-weight: 600; font-size: 0.98rem; white-space: nowrap; }
.modal__input input { flex: 1; min-width: 0; height: 100%; border: 0; background: transparent; color: #fff;
  font-family: var(--ff-body); font-size: 1rem; padding: 0 15px; outline: none; }
.modal__input input::placeholder { color: #5e6573; }
.modal__error { color: #FB7185; font-size: 0.82rem; margin-top: 9px; min-height: 18px; opacity: 0; transition: opacity .2s; }
.modal__error.show { opacity: 1; }
.modal__confirm { margin-top: 22px; }
.modal__confirm .btn { width: 100%; }
.modal__confirm .btn[disabled] { opacity: 0.5; pointer-events: none; }
.modal__fine { text-align: center; color: var(--muted); font-size: 0.78rem; margin-top: 14px; }

/* success / loading states */
.modal__success, .modal__loading { display: none; text-align: center; padding: 8px 0 4px; }
.modal.is-loading .modal__form, .modal.is-success .modal__form { display: none; }
.modal.is-loading .modal__loading { display: block; }
.modal.is-success .modal__success { display: block; }

/* loader */
.modal__spinner { width: 54px; height: 54px; margin: 6px auto 18px; border-radius: 50%;
  border: 3px solid var(--border); border-top-color: var(--primary); animation: wmSpin .8s linear infinite; }
@keyframes wmSpin { to { transform: rotate(360deg); } }
.modal__loading h3 { margin-top: 0; }
.load-steps { margin: 22px auto 4px; max-width: 320px; display: flex; flex-direction: column; gap: 14px; text-align: left; }
.load-steps li { display: flex; align-items: center; gap: 12px; color: var(--muted); font-size: 0.95rem; opacity: 0.45; transition: opacity .3s, color .3s; }
.load-steps li.active, .load-steps li.done { opacity: 1; color: #fff; }
.ls-ic { flex-shrink: 0; width: 22px; height: 22px; border-radius: 50%; border: 2px solid var(--border); position: relative; transition: .3s; }
.load-steps li.active .ls-ic { border-color: var(--primary); border-top-color: transparent; animation: wmSpin .7s linear infinite; }
.load-steps li.done .ls-ic { background: var(--grad); border-color: transparent; animation: none; }
.load-steps li.done .ls-ic::after { content: ""; position: absolute; left: 6px; top: 3px; width: 6px; height: 10px;
  border: solid #fff; border-width: 0 2px 2px 0; transform: rotate(45deg); }

.modal__check { width: 72px; height: 72px; border-radius: 50%; margin: 0 auto 20px; display: grid; place-items: center;
  background: var(--grad); box-shadow: var(--shadow-glow); animation: popIn .5s var(--ease); }
.modal__check svg { width: 34px; height: 34px; stroke: #fff; }
@keyframes popIn { from { transform: scale(0.3); opacity: 0; } to { transform: scale(1); opacity: 1; } }
.modal__success h3 { margin-top: 0; }
.modal__success p { color: var(--muted); margin-top: 10px; font-size: 0.98rem; }
.modal__success .dest { color: #fff; font-weight: 700; }
@media (max-width: 420px) { .channel span { font-size: 0.7rem; } .modal__card { padding: 30px 20px 24px; } }

/* ---------- Plan / renewal mode (pricing flow) ---------- */
.plan-only { display: none; }
.modal.is-plan #modalPlanSummary { display: flex; }
.modal.is-plan #acctLabel { display: block; }
.modal.is-plan .acct-wrap { display: block; }
.modal.is-plan #satCheckWrap { display: flex; }
.acct-row { display: grid; }

.modal__plan { position: relative; overflow: hidden; isolation: isolate;
  align-items: center; gap: 10px; flex-wrap: wrap; margin-top: 18px;
  padding: 15px 16px; border-radius: var(--radius-sm); }
/* Rotating light that sweeps the whole border. Uses a plain transform rotation
   (no @property / mask-composite) so it works on every mobile browser. */
.modal__plan::before { content: ""; position: absolute; z-index: -2; top: 50%; left: 50%;
  width: 260%; aspect-ratio: 1 / 1; pointer-events: none;
  background: conic-gradient(from 0deg, transparent 0 66%, color-mix(in srgb, var(--primary) 80%, #fff) 83%, #fff 89%, transparent 96%);
  transform: translate(-50%, -50%) rotate(0deg);
  animation: planSpin 5s linear infinite; }
/* Opaque inner fill (inset 1.5px reveals the moving border); purple fades from the top. */
.modal__plan::after { content: ""; position: absolute; z-index: -1; inset: 1.5px;
  border-radius: calc(var(--radius-sm) - 1px); pointer-events: none;
  background: linear-gradient(to bottom, color-mix(in srgb, var(--primary) 30%, var(--card)), var(--card) 60%); }
.modal__plan > * { position: relative; z-index: 1; }
@keyframes planSpin {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to   { transform: translate(-50%, -50%) rotate(360deg); }
}
@media (prefers-reduced-motion: reduce) {
  .modal__plan::before { animation: none; }
}

.modal__plan-name { font-family: var(--ff-display); font-weight: 700; color: #fff; }
.modal__plan-meta { color: var(--muted); font-size: 0.9rem; }
.modal__plan-prices { margin-left: auto; display: inline-flex; align-items: baseline; gap: 8px; }
.modal__plan-old { text-decoration: line-through; color: var(--muted); font-weight: 600; font-size: 0.95rem; }
.modal__plan-price { font-family: var(--ff-display); font-weight: 800; color: var(--primary); font-size: 1.15rem; }

.acct-row { grid-template-columns: 1fr; gap: 9px; }
.acct { text-align: left; padding: 13px 15px; border-radius: 12px; border: 1px solid var(--border);
  background: rgba(255,255,255,0.02); color: var(--muted); cursor: pointer; font-weight: 600;
  font-size: 0.95rem; transition: .2s var(--ease); }
.acct:hover { border-color: color-mix(in srgb, var(--primary) 50%, transparent); color: #fff; }
.acct.is-sel { background: var(--grad); border-color: transparent; color: #fff; box-shadow: var(--shadow-glow); }

.sat-check { position: relative; align-items: center; gap: 11px; margin: 18px -10px 0; padding: 12px 10px;
  min-height: 48px; cursor: pointer; user-select: none; -webkit-tap-highlight-color: transparent; touch-action: manipulation;
  border: 1px solid transparent; border-radius: 10px; transition: border-color .2s; }
/* the real checkbox covers the whole label (transparent, on top) so any tap
   anywhere on the row toggles it — reliable on every touch device */
.sat-check input { position: absolute; inset: 0; width: 100%; height: 100%; margin: 0; padding: 0; opacity: 0; cursor: pointer; z-index: 2; }
.sat-check__box, .sat-check__text { pointer-events: none; }
.sat-check__box { flex: none; width: 22px; height: 22px; border-radius: 6px; border: 1px solid var(--border);
  background: rgba(255,255,255,0.03); display: grid; place-items: center; transition: .18s var(--ease); }
.sat-check__box svg { width: 14px; height: 14px; stroke: #fff; opacity: 0; transform: scale(0.6); transition: .18s var(--ease); }
.sat-check input:checked + .sat-check__box { background: var(--grad); border-color: transparent; }
.sat-check input:checked + .sat-check__box svg { opacity: 1; transform: scale(1); }
.sat-check input:focus-visible + .sat-check__box { outline: 2px solid var(--primary); outline-offset: 2px; }
.sat-check__text { font-size: 0.92rem; color: #cdd2dd; }

/* ---------- Progressive guidance cues (one at a time) ---------- */
/* Step 1: bouncing purple arrow pointing at the account-type options */
.acct-wrap { position: relative; }
.guide-arrow--acct { display: none; }
.modal.is-plan:not(.acct-chosen) .guide-arrow--acct {
  display: flex; align-items: center; justify-content: center;
  position: absolute; left: -20px; top: 50%; width: 22px; height: 22px; margin-top: -11px;
  color: var(--primary); animation: guidePoint 1s ease-in-out infinite;
}
.guide-arrow--acct svg { width: 22px; height: 22px; filter: drop-shadow(0 0 6px color-mix(in srgb, var(--primary) 70%, transparent)); }
@keyframes guidePoint { 0%, 100% { transform: translateX(0); } 50% { transform: translateX(6px); } }

/* Step 2 (after a valid contact): pulsing border on the satisfaction box */
.modal.is-plan.needs-sat #satCheckWrap {
  border-color: color-mix(in srgb, var(--primary) 65%, transparent);
  animation: satPulse 1.5s ease-out infinite;
}
@keyframes satPulse {
  0% { box-shadow: 0 0 0 0 color-mix(in srgb, var(--primary) 45%, transparent); }
  70% { box-shadow: 0 0 0 8px color-mix(in srgb, var(--primary) 0%, transparent); }
  100% { box-shadow: 0 0 0 0 color-mix(in srgb, var(--primary) 0%, transparent); }
}
@media (prefers-reduced-motion: reduce) {
  .guide-arrow--acct, .modal.is-plan.needs-sat #satCheckWrap { animation: none; }
}



/* ---------- IPTV apps (3 cols) ---------- */
.apps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 12px; }
.app-card { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; position: relative; transition: transform .35s var(--ease), border-color .35s var(--ease), box-shadow .35s var(--ease); }
.app-card:hover { transform: translateY(-6px); border-color: color-mix(in srgb, var(--primary) 50%, transparent); box-shadow: var(--shadow-glow); }
.app-card__hd { padding: 20px 24px; font-family: var(--ff-display); font-weight: 700; font-size: 1.15rem; background: linear-gradient(120deg, color-mix(in srgb, var(--primary) 22%, transparent), transparent); border-bottom: 1px solid var(--border); }
.app-card__body { padding: 22px 24px 28px; display: flex; flex-direction: column; gap: 20px; }
.app-block h4 { font-family: var(--ff-display); font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--primary); margin-bottom: 12px; }
.app-block ul { display: flex; flex-direction: column; gap: 9px; }
.app-block li { color: #c4cad6; font-size: 0.95rem; display: flex; gap: 9px; }
.app-block li::before { content: "›"; color: var(--primary); font-weight: 700; }

/* ---------- Global channels band ---------- */
.gband { position: relative; overflow: hidden; border-radius: 0; }
.gband__bg { position: absolute; inset: 0; z-index: 0; background:
  radial-gradient(120% 90% at 12% 30%, rgba(86,35,216,0.5), transparent 55%),
  radial-gradient(120% 120% at 90% 80%, color-mix(in srgb, var(--primary) 40%, transparent), transparent 55%),
  #0b0c10; }
.gband .container { position: relative; z-index: 1; }
.gband__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.gband h2 { font-size: clamp(2rem, 4.2vw, 3.3rem); text-wrap: balance; }
.gband p { color: #c9cfdc; font-size: 1.05rem; margin: 20px 0 32px; max-width: 520px; }
.gband__art { position: relative; min-height: 420px; }
.app-mock { position: absolute; border: 1px solid var(--border); border-radius: 12px; background: #0e0f14; box-shadow: 0 30px 70px -30px rgba(0,0,0,0.9); overflow: hidden; }
.app-mock .topbar { display: flex; align-items: center; gap: 6px; padding: 9px 12px; border-bottom: 1px solid var(--border); font-family: var(--ff-display); font-size: 0.7rem; color: var(--muted); }
.app-mock .topbar .d { width: 14px; height: 14px; border-radius: 50%; background: var(--grad); }
.app-mock--main { top: 6%; right: 0; width: 70%; }
.app-mock--main .grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 7px; padding: 12px; }
.app-mock--main .grid div { aspect-ratio: 2/3; border-radius: 5px; background: linear-gradient(160deg,#232a3f,#161b2a); }
.app-mock--epg { bottom: 4%; left: 0; width: 62%; }
.app-mock--epg .row { display: flex; gap: 6px; padding: 8px 10px; align-items: center; }
.app-mock--epg .row .ch { width: 30%; height: 9px; border-radius: 3px; background: var(--grad); }
.app-mock--epg .row .pg { flex: 1; height: 9px; border-radius: 3px; background: rgba(255,255,255,0.1); }
.gband__chip { position: absolute; z-index: 2; display: inline-flex; flex-direction: column; padding: 12px 18px; border-radius: 10px; background: rgba(20,21,26,0.92); border: 1px solid var(--border); backdrop-filter: blur(8px); box-shadow: 0 18px 40px -18px rgba(0,0,0,0.8); }
.gband__chip span { color: var(--muted); font-size: 0.72rem; }
.gband__chip b { font-family: var(--ff-display); font-size: 1rem; }
.gband__chip--1 { top: 30%; left: 6%; }
.gband__chip--2 { bottom: 26%; right: 4%; }

/* ---------- Stat counters ---------- */
.counters { background: var(--surface); border-block: 1px solid var(--border); }
.counters__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center; }
.counter { padding: 12px; }
.counter .n { font-family: var(--ff-display); font-weight: 800; font-size: clamp(2.6rem, 5vw, 4rem); line-height: 1; letter-spacing: 0.01em; }
.counter:nth-child(odd) .n { color: transparent; background: var(--grad); -webkit-background-clip: text; background-clip: text; }
.counter:nth-child(even) .n { color: transparent; -webkit-text-stroke: 1.5px rgba(255,255,255,0.5); }
.counter .lbl { font-family: var(--ff-display); font-weight: 700; font-size: 0.82rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); margin-top: 14px; }

/* ---------- Pricing device selector + badge on top ---------- */
.price-card { padding-top: 30px; }
.price-card.has-badge { padding-top: 52px; }
.price-badge { position: absolute; top: 0; left: 0; right: 0; transform: none; text-align: center; padding: 9px 14px;
  /* round the top corners to match the card so the colour doesn't bleed past them */
  border-radius: calc(var(--radius) - 1px) calc(var(--radius) - 1px) 0 0; overflow: hidden; }
.price-badge--best { background: var(--grad); }
.price-badge--pop { background: rgba(255,255,255,0.08); border: none; border-bottom: 1px solid var(--border); }
.price-select { margin: 4px 0 18px; }
.price-card .amount .amt-val { font-size: inherit; font-weight: inherit; color: inherit; }
.price-select label { display: block; font-size: 0.8rem; color: var(--muted); margin-bottom: 8px; font-weight: 600; }
.price-select select { width: 100%; height: 46px; padding: 0 14px; border-radius: var(--radius-sm); background: rgba(255,255,255,0.04); border: 1px solid var(--border); color: #fff; font-family: var(--ff-body); font-size: 0.95rem; cursor: pointer; appearance: none; color-scheme: dark;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'><path fill='%23A6ABB6' d='M0 0h12L6 8z'/></svg>");
  background-repeat: no-repeat; background-position: right 14px center; }
.price-select select:focus { outline: none; border-color: var(--primary); }
.price-select select option { background: #1E1F22; color: #fff; }
.price-select__note { display: block; margin-top: 7px; font-size: 0.74rem; line-height: 1.3; color: var(--muted); }

/* "each device = its own account" notice in the pricing header */
.pricing-note { position: relative; display: block; margin: 18px auto 0; max-width: 540px;
  padding: 12px 16px 12px 44px; border-radius: 12px; text-align: left; line-height: 1.5;
  border: 1px solid color-mix(in srgb, var(--primary) 35%, transparent);
  background: color-mix(in srgb, var(--primary) 9%, transparent);
  color: #d7dbe6; font-size: 0.88rem; font-weight: 500; }
.pricing-note b { color: #fff; font-weight: 700; }
.pricing-note svg { position: absolute; left: 15px; top: 13px; width: 18px; height: 18px; color: var(--primary); }

/* ============================================================
   Responsive — new sections
   ============================================================ */
@media (max-width: 1024px) {
  .apps-grid { grid-template-columns: 1fr; }
  .counters__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 860px) {
  .split, .gband__grid { grid-template-columns: 1fr; gap: 40px; }
  .split--rev .split__visual { order: 0; }
  .devices-art { max-width: 520px; }
  .gband__art { min-height: 340px; }
}
@media (max-width: 480px) {
  .counters__grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .gband__chip--1, .gband__chip--2 { display: none; }
}

/* ============================ CONTACT WIDGET (WhatsApp / Email / Telegram) ============================ */
.contact-fab {
  position: fixed; left: 18px; bottom: 18px; z-index: 900;
  display: flex; flex-direction: column; align-items: flex-start; gap: 12px;
}
.contact-fab__options { display: flex; flex-direction: column; gap: 12px; }

.cfo {
  display: inline-flex; align-items: center; gap: 10px; text-decoration: none;
  opacity: 0; transform: translateY(12px) scale(0.8); pointer-events: none;
  transition: opacity 0.22s ease, transform 0.28s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.cfo__ic {
  width: 44px; height: 44px; flex: none; border-radius: 50%; color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 16px -4px rgba(0,0,0,0.45);
  transition: transform 0.16s ease;
}
.cfo__ic svg { width: 22px; height: 22px; }
.cfo--whatsapp .cfo__ic { background: #25D366; }
.cfo--telegram .cfo__ic { background: #229ED9; }
.cfo--telegram .cfo__ic svg { transform: translateX(-1px); }
.cfo--email .cfo__ic { background: var(--primary, #6A79FA); }
.cfo__label {
  font-weight: 600; font-size: 14px; color: #fff; white-space: nowrap;
  background: rgba(20,21,26,0.92); border: 1px solid rgba(255,255,255,0.1);
  padding: 7px 12px; border-radius: 8px;
  box-shadow: 0 6px 16px -6px rgba(0,0,0,0.6);
}
.cfo:hover .cfo__ic { transform: scale(1.08); }

/* open state — staggered reveal (closest bubble first) */
.contact-fab.is-open .cfo { opacity: 1; transform: translateY(0) scale(1); pointer-events: auto; }
.contact-fab.is-open .cfo--whatsapp { transition-delay: 0.12s; }
.contact-fab.is-open .cfo--email { transition-delay: 0.06s; }
.contact-fab.is-open .cfo--telegram { transition-delay: 0s; }

/* main FAB */
.contact-fab__btn {
  position: relative; width: 50px; height: 50px; padding: 0; border: none; cursor: pointer;
  border-radius: 50%; background: #25D366; color: #fff; align-self: flex-start;
  box-shadow: 0 8px 20px -6px rgba(0,0,0,0.5);
  transition: transform 0.18s ease, background 0.2s ease;
}
.contact-fab__btn:hover { transform: scale(1.06); }
.contact-fab__ic, .contact-fab__close {
  position: absolute; inset: 0; display: inline-flex; align-items: center; justify-content: center;
  transition: opacity 0.2s ease, transform 0.25s ease;
}
.contact-fab__ic svg { width: 26px; height: 26px; }
.contact-fab__close svg { width: 22px; height: 22px; }
.contact-fab__close { opacity: 0; transform: rotate(-90deg); }
.contact-fab.is-open .contact-fab__ic { opacity: 0; transform: rotate(90deg); }
.contact-fab.is-open .contact-fab__close { opacity: 1; transform: rotate(0); }
.contact-fab.is-open .contact-fab__btn { background: #1f1f24; }

@media (max-width: 600px) {
  .contact-fab { left: 14px; bottom: 14px; }
  .contact-fab__btn { width: 48px; height: 48px; }
}
@media (prefers-reduced-motion: reduce) {
  .cfo, .contact-fab.is-open .cfo { transform: none; transition: opacity 0.2s ease; }
}

/* ============================================================
   Mobile refinements — touch targets, sizing, lighter animation
   ============================================================ */

/* Touch devices: kill sticky "lifted" hover states so the first tap registers
   immediately (the old behaviour made buttons feel like they needed two taps). */
@media (hover: none) {
  .btn:hover, .btn--primary:hover, .btn--ghost:hover,
  .price-card:hover, .feature-card:hover, .stat-card:hover, .app-card:hover,
  .review-card:hover, .channel:hover, .acct:hover, .nav__burger:hover,
  .contact-fab__btn:hover, .cfo:hover .cfo__ic, .wm-marker:hover { transform: none; }
  .btn:active { transform: scale(0.97); }            /* clear tap feedback */
  .price-card:hover { box-shadow: var(--shadow-card); }
}

@media (max-width: 600px) {
  /* tighter vertical rhythm so content isn't oversized */
  .section { padding-block: 58px; }
  .section-head { margin-bottom: 34px; }
  .hero { min-height: auto; padding: 112px 0 60px; }
  .hero h1 { font-size: clamp(2rem, 8.5vw, 2.7rem); margin-top: 18px; }
  .hero__sub { font-size: 1rem; margin-top: 16px; }
  .hero__ctas { margin-top: 26px; gap: 12px; }
  .hero__ctas .btn { width: 100%; flex: 1 1 100%; }
  .h2 { font-size: clamp(1.65rem, 6.5vw, 2.1rem); }
  .section-sub { font-size: 0.98rem; }

  /* comfortable, full-size tap targets */
  .btn { min-height: 52px; padding: 14px 22px; }
  .btn--lg { min-height: 56px; padding: 15px 26px; font-size: 1.02rem; }

  /* modal fits comfortably on small screens */
  .modal { padding: 12px; }
  .modal__card { padding: 26px 18px 22px; max-height: calc(100dvh - 24px); }
  .modal h3 { font-size: 1.3rem; }
  .modal__field-label { margin: 20px 0 10px; }
  .channel { padding: 11px 4px; gap: 6px; }
  .channel__ic, .channel__ic svg { width: 24px; height: 24px; }
  .channel span { font-size: 0.72rem; }
  .acct { padding: 14px 14px; }                 /* keep ~48px tap height */
  .guide-arrow--acct { left: -14px; }           /* stay inside the narrower card */
  .sat-check { margin-inline: -6px; }

  /* pricing clarity note wraps cleanly */
  .pricing-note { font-size: 0.85rem; padding: 11px 14px 11px 40px; }
  .pricing-note svg { left: 13px; top: 12px; }
}

@media (max-width: 380px) {
  .container { padding-inline: 15px; }
  .hero h1 { font-size: 1.85rem; }
  .channel { padding: 10px 3px; }
  .channel__ic, .channel__ic svg { width: 22px; height: 22px; }
  .channel span { font-size: 0.66rem; }
  .modal__plan-price { font-size: 1.05rem; }
  .modal__plan-old { font-size: 0.85rem; }
}

/* ---------- Honeypot (visually + a11y hidden, still submitted) ---------- */
.modal__hp {
  position: absolute !important;
  left: -9999px !important;
  top: auto;
  width: 1px; height: 1px;
  opacity: 0;
  pointer-events: none;
}

/* ---------- Trial-modal consent line ---------- */
.modal__consent {
  margin-top: 6px;
  text-align: center;
  font-size: 0.78rem;
  color: var(--muted);
}
.modal__consent a { color: var(--primary-hover); text-decoration: underline; }

/* ---------- Legal pages (privacy / terms / refund) ---------- */
.legal-top {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  max-width: var(--maxw); margin-inline: auto;
  padding: 18px 24px; border-bottom: 1px solid var(--border);
}
.legal-top .brand {
  font-family: var(--ff-display); font-weight: 800; font-size: 20px;
  display: inline-flex; align-items: center; gap: 8px;
}
.legal-top .brand .brand__mark {
  width: 26px; height: 26px; display: grid; place-items: center;
  background: var(--grad); border-radius: 7px;
}
.legal-top .brand .brand__mark svg { width: 14px; height: 14px; }
.legal-back { color: var(--muted); font-weight: 600; font-size: 14px; }
.legal-back:hover { color: var(--text); }

.legal { max-width: 760px; margin-inline: auto; padding: 48px 24px 72px; }
.legal h1 { font-family: var(--ff-display); font-size: 2.1rem; font-weight: 800; margin-bottom: 6px; }
.legal .legal-upd { color: var(--muted); font-size: 0.85rem; margin-bottom: 30px; }
.legal h2 { font-family: var(--ff-display); font-size: 1.25rem; font-weight: 700; margin: 30px 0 10px; }
.legal p, .legal li { color: #D5D8DF; font-size: 1rem; line-height: 1.75; }
.legal p { margin-bottom: 14px; }
.legal ul { list-style: disc; padding-left: 22px; margin-bottom: 14px; }
.legal li { margin-bottom: 7px; }
.legal a { color: var(--primary-hover); text-decoration: underline; }
.legal strong { color: #fff; }
.legal-note {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-sm); padding: 16px 18px; margin: 18px 0;
}
.legal-foot {
  border-top: 1px solid var(--border); text-align: center;
  color: var(--muted); font-size: 0.85rem; padding: 24px;
}
.legal-foot a { color: var(--muted); }
.legal-foot a:hover { color: var(--text); }
