/* ===========================================================
   FOXX IPTV — Feuille de styles globale
   Univers : renard premium · orange / noir profond / blanc
   =========================================================== */

:root {
  --orange: #ff6a00;
  --orange-soft: #ff8c33;
  --orange-deep: #e85d00;
  --black: #0a0a0c;
  --black-2: #111116;
  --black-3: #18181f;
  --card: #15151c;
  --line: #26262f;
  --white: #ffffff;
  --grey: #b6b6c2;
  --grey-2: #8a8a98;
  --green: #25d366;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow: 0 18px 50px rgba(0, 0, 0, .55);
  --glow: 0 0 0 1px rgba(255, 106, 0, .35), 0 0 32px rgba(255, 106, 0, .25);
  --container: 1180px;
  --font: 'Inter', system-ui, -apple-system, sans-serif;
  --display: 'Sora', 'Inter', sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--black);
  color: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Fond grille + lueur orange */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(900px 500px at 75% -10%, rgba(255, 106, 0, .18), transparent 60%),
    radial-gradient(700px 500px at 0% 100%, rgba(255, 106, 0, .08), transparent 55%),
    var(--black);
}
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(rgba(255, 255, 255, .025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .025) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: radial-gradient(ellipse 100% 80% at 50% 0%, #000 30%, transparent 80%);
  pointer-events: none;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 22px;
}

.accent { color: var(--orange); }
.muted { color: var(--grey); }

/* ===================== BOUTONS ===================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 15px;
  padding: 14px 26px;
  border-radius: 100px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .25s ease, background .25s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }

.btn-primary {
  background: linear-gradient(135deg, var(--orange), var(--orange-deep));
  color: #fff;
  box-shadow: 0 10px 28px rgba(255, 106, 0, .38);
}
.btn-primary:hover { box-shadow: 0 14px 38px rgba(255, 106, 0, .55); }

.btn-ghost {
  background: transparent;
  color: #fff;
  border: 1px solid var(--line);
}
.btn-ghost:hover { border-color: var(--orange); box-shadow: var(--glow); }

.btn-wa {
  background: var(--green);
  color: #06351a;
  box-shadow: 0 10px 28px rgba(37, 211, 102, .3);
}
.btn-wa:hover { box-shadow: 0 14px 38px rgba(37, 211, 102, .45); }

/* ===================== HEADER ===================== */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(10, 10, 12, .72);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
  transition: background .3s ease;
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--display);
  font-weight: 800;
  font-size: 21px;
  letter-spacing: .5px;
}
.logo .fox {
  width: 40px; height: 40px;
  display: grid; place-items: center;
  filter: drop-shadow(0 4px 12px rgba(255, 106, 0, .35));
}
.logo .fox .fox-mark { width: 40px; height: 40px; display: block; }
.logo span { color: var(--orange); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
}
.nav-links a {
  font-size: 15px;
  font-weight: 500;
  color: var(--grey);
  transition: color .2s ease;
  position: relative;
}
.nav-links a:hover { color: #fff; }
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -6px;
  width: 0; height: 2px;
  background: var(--orange);
  transition: width .25s ease;
}
.nav-links a:hover::after { width: 100%; }

.nav-cta { display: flex; align-items: center; gap: 14px; }
.burger {
  display: none;
  background: none; border: none; color: #fff;
  font-size: 22px; cursor: pointer;
}

/* ===================== HERO ===================== */
.hero {
  padding: 150px 0 90px;
  position: relative;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 50px;
  align-items: center;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--orange);
  background: rgba(255, 106, 0, .1);
  border: 1px solid rgba(255, 106, 0, .3);
  padding: 7px 14px;
  border-radius: 100px;
  margin-bottom: 22px;
}
.hero h1 {
  font-family: var(--display);
  font-size: clamp(2.1rem, 5vw, 3.5rem);
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: -1px;
}
.hero h1 .grad {
  background: linear-gradient(135deg, var(--orange), var(--orange-soft));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero p.sub {
  font-size: 18px;
  color: var(--grey);
  margin: 22px 0 32px;
  max-width: 540px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

.badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 36px;
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--grey);
  background: var(--card);
  border: 1px solid var(--line);
  padding: 9px 15px;
  border-radius: 100px;
}
.badge i { color: var(--orange); }

/* Carte visuelle hero */
.hero-card {
  background: linear-gradient(160deg, var(--black-3), var(--black-2));
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 28px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}
.hero-card::before {
  content: "";
  position: absolute;
  top: -60px; right: -60px;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(255, 106, 0, .4), transparent 70%);
}
.hero-card .hc-top {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 22px;
}
.hero-card .hc-price {
  font-family: var(--display);
  font-size: 44px; font-weight: 800;
}
.hero-card .hc-price small { font-size: 16px; color: var(--grey); font-weight: 500; }
.hero-card .pill {
  font-size: 12px; font-weight: 700;
  color: var(--orange);
  background: rgba(255, 106, 0, .12);
  border: 1px solid rgba(255, 106, 0, .3);
  padding: 5px 12px; border-radius: 100px;
}
.hero-card ul { display: grid; gap: 12px; margin: 20px 0 24px; }
.hero-card li { display: flex; align-items: center; gap: 11px; font-size: 14px; color: var(--grey); }
.hero-card li i { color: var(--green); }
.hero-card .btn { width: 100%; justify-content: center; }

/* ===================== SECTIONS ===================== */
section { position: relative; }
.section { padding: 80px 0; }
.section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 50px;
}
.section-head .tag {
  font-size: 13px; font-weight: 700; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--orange);
}
.section-head h2 {
  font-family: var(--display);
  font-size: clamp(1.7rem, 4vw, 2.5rem);
  font-weight: 800;
  margin: 12px 0;
  letter-spacing: -.5px;
}
.section-head p { color: var(--grey); font-size: 16px; }

/* ===================== COMPARATIF ===================== */
.compare-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.compare-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 26px;
  text-align: center;
}
.compare-card.win {
  border-color: var(--orange);
  box-shadow: var(--glow);
  background: linear-gradient(160deg, rgba(255, 106, 0, .08), var(--card));
}
.compare-card h3 { font-size: 16px; color: var(--grey); font-weight: 600; }
.compare-card .price {
  font-family: var(--display);
  font-size: 40px; font-weight: 800;
  margin: 14px 0 6px;
}
.compare-card.win .price { color: var(--orange); }
.compare-card .per { font-size: 13px; color: var(--grey-2); }
.compare-card .save {
  display: inline-block;
  margin-top: 16px;
  font-size: 13px; font-weight: 700;
  color: var(--green);
}

/* ===================== TARIFS ===================== */
.pricing-wrap { display: flex; justify-content: center; }
.price-card {
  background: linear-gradient(160deg, var(--black-3), var(--black-2));
  border: 1px solid var(--orange);
  border-radius: 22px;
  padding: 40px 36px;
  max-width: 440px;
  width: 100%;
  text-align: center;
  box-shadow: var(--glow), var(--shadow);
  position: relative;
  overflow: hidden;
}
.price-card .ribbon {
  position: absolute; top: 18px; right: -38px;
  background: var(--orange); color: #fff;
  font-size: 12px; font-weight: 800; letter-spacing: 1px;
  padding: 6px 46px; transform: rotate(45deg);
}
.price-card h3 { font-family: var(--display); font-size: 22px; font-weight: 800; }
.price-card .big {
  font-family: var(--display);
  font-size: 64px; font-weight: 800;
  margin: 10px 0 0;
  background: linear-gradient(135deg, var(--orange), var(--orange-soft));
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.price-card .big small { font-size: 20px; -webkit-text-fill-color: var(--grey); color: var(--grey); }
.price-card .note { color: var(--grey); font-size: 14px; margin: 6px 0 26px; }
.price-card ul { display: grid; gap: 13px; text-align: left; margin-bottom: 28px; }
.price-card li { display: flex; align-items: center; gap: 11px; font-size: 15px; color: var(--grey); }
.price-card li i { color: var(--orange); }
.price-card .btn { width: 100%; justify-content: center; }

/* ===================== VOD ===================== */
.vod {
  background: linear-gradient(160deg, var(--black-2), var(--black));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.vod-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.vod-feats { display: grid; gap: 18px; }
.vod-feat {
  display: flex; gap: 16px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 18px 20px;
  transition: transform .2s ease, border-color .2s ease;
}
.vod-feat:hover { transform: translateX(6px); border-color: var(--orange); }
.vod-feat .ic {
  flex: 0 0 46px; height: 46px;
  display: grid; place-items: center;
  background: rgba(255, 106, 0, .12);
  border-radius: 12px;
  color: var(--orange); font-size: 19px;
}
.vod-feat h4 { font-size: 16px; margin-bottom: 3px; }
.vod-feat p { font-size: 14px; color: var(--grey); margin: 0; }

/* ===================== ÉTAPES ===================== */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.step {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 22px;
  position: relative;
  transition: transform .2s ease, box-shadow .25s ease;
}
.step:hover { transform: translateY(-6px); box-shadow: var(--glow); }
.step .num {
  font-family: var(--display);
  font-size: 38px; font-weight: 800;
  color: rgba(255, 106, 0, .25);
  line-height: 1;
}
.step h4 { font-size: 17px; margin: 12px 0 8px; }
.step p { font-size: 14px; color: var(--grey); margin: 0; }

/* ===================== APPAREILS ===================== */
.devices-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}
.device {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 24px 10px;
  text-align: center;
  transition: transform .2s ease, border-color .2s ease, color .2s ease;
  color: var(--grey);
}
.device:hover { transform: translateY(-4px); border-color: var(--orange); color: #fff; }
.device i { font-size: 28px; color: var(--orange); margin-bottom: 10px; display: block; }
.device span { font-size: 13px; font-weight: 600; }

/* ===================== AVIS ===================== */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.review {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
  transition: transform .2s ease, border-color .2s ease;
}
.review:hover { transform: translateY(-5px); border-color: var(--orange); }
.review .stars { color: var(--orange); margin-bottom: 12px; font-size: 14px; }
.review p { font-size: 15px; color: var(--grey); margin: 0 0 18px; }
.review .who { display: flex; align-items: center; gap: 12px; }
.review .av {
  width: 40px; height: 40px; border-radius: 50%;
  display: grid; place-items: center;
  background: linear-gradient(135deg, var(--orange), var(--orange-deep));
  font-weight: 800; color: #fff;
}
.review .who b { font-size: 14px; display: block; }
.review .who small { font-size: 12px; color: var(--grey-2); }

/* ===================== FAQ ===================== */
.faq-wrap { max-width: 800px; margin: 0 auto; }
.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  margin-bottom: 14px;
  background: var(--card);
  overflow: hidden;
}
.faq-q {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px;
  padding: 20px 22px;
  background: none; border: none;
  color: #fff; font-size: 16px; font-weight: 600;
  text-align: left; cursor: pointer;
}
.faq-q i { color: var(--orange); transition: transform .3s ease; flex-shrink: 0; }
.faq-item.open .faq-q i { transform: rotate(45deg); }
.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height .35s ease;
}
.faq-a p { padding: 0 22px 20px; color: var(--grey); font-size: 15px; margin: 0; }

/* ===================== BLOG PREVIEW / GRID ===================== */
.posts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.post-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform .2s ease, box-shadow .25s ease, border-color .2s ease;
}
.post-card:hover { transform: translateY(-6px); box-shadow: var(--glow); border-color: var(--orange); }
.post-thumb {
  height: 160px;
  display: grid; place-items: center;
  font-size: 46px; color: #fff;
  position: relative;
  background: linear-gradient(135deg, var(--orange-deep), #7a1e00);
}
.post-thumb.t2 { background: linear-gradient(135deg, #1b2a4a, #0a1326); }
.post-thumb.t3 { background: linear-gradient(135deg, #3a0c52, #160322); }
.post-body { padding: 22px; display: flex; flex-direction: column; flex: 1; }
.post-cat {
  font-size: 12px; font-weight: 700; letter-spacing: 1px;
  text-transform: uppercase; color: var(--orange);
}
.post-card h3 { font-size: 18px; margin: 10px 0 10px; line-height: 1.35; }
.post-card p { font-size: 14px; color: var(--grey); flex: 1; margin: 0 0 18px; }
.post-meta {
  display: flex; align-items: center; justify-content: space-between;
  border-top: 1px solid var(--line); padding-top: 16px;
}
.post-meta .date { font-size: 13px; color: var(--grey-2); }
.post-meta a { font-size: 14px; font-weight: 700; color: var(--orange); }
.post-meta a i { transition: transform .2s ease; }
.post-card:hover .post-meta a i { transform: translateX(4px); }

/* ===================== CTA BAND ===================== */
.cta-band {
  text-align: center;
  background: linear-gradient(135deg, rgba(255, 106, 0, .14), rgba(255, 106, 0, .04));
  border: 1px solid rgba(255, 106, 0, .3);
  border-radius: 24px;
  padding: 56px 30px;
}
.cta-band h2 {
  font-family: var(--display);
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 800; margin-bottom: 14px;
}
.cta-band p { color: var(--grey); margin-bottom: 26px; font-size: 16px; }

/* ===================== FOOTER ===================== */
.site-footer {
  border-top: 1px solid var(--line);
  background: var(--black-2);
  padding: 56px 0 28px;
  margin-top: 80px;
}
.foot-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 36px;
}
.foot-col h5 {
  font-size: 14px; text-transform: uppercase; letter-spacing: 1px;
  color: #fff; margin-bottom: 16px;
}
.foot-col p { font-size: 14px; color: var(--grey); }
.foot-col ul { display: grid; gap: 10px; }
.foot-col a { font-size: 14px; color: var(--grey); transition: color .2s ease; }
.foot-col a:hover { color: var(--orange); }
.foot-bottom {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 14px;
  margin-top: 40px; padding-top: 24px;
  border-top: 1px solid var(--line);
  font-size: 13px; color: var(--grey-2);
}
.foot-disclaimer {
  font-size: 12px; color: var(--grey-2);
  margin-top: 16px; line-height: 1.6;
}

/* ===================== WHATSAPP FLOTTANT ===================== */
.wa-float {
  position: fixed;
  bottom: 24px; right: 24px;
  z-index: 200;
  width: 60px; height: 60px;
  border-radius: 50%;
  background: var(--green);
  display: grid; place-items: center;
  color: #fff; font-size: 28px;
  box-shadow: 0 10px 30px rgba(37, 211, 102, .5);
  animation: wa-pulse 2.2s infinite;
}
@keyframes wa-pulse {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, .55), 0 10px 30px rgba(37, 211, 102, .5); }
  70% { box-shadow: 0 0 0 18px rgba(37, 211, 102, 0), 0 10px 30px rgba(37, 211, 102, .5); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0), 0 10px 30px rgba(37, 211, 102, .5); }
}

/* ===================== ANIMATIONS SCROLL ===================== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.in { opacity: 1; transform: none; }

/* ===================== ARTICLE ===================== */
.article-hero {
  padding: 140px 0 40px;
}
.article-hero .crumbs {
  font-size: 13px; color: var(--grey-2); margin-bottom: 18px;
}
.article-hero .crumbs a:hover { color: var(--orange); }
.article-hero .a-cat {
  font-size: 13px; font-weight: 700; letter-spacing: 1px;
  text-transform: uppercase; color: var(--orange);
}
.article-hero h1 {
  font-family: var(--display);
  font-size: clamp(1.9rem, 4.5vw, 3rem);
  font-weight: 800; line-height: 1.12;
  margin: 14px 0 16px; letter-spacing: -.5px;
}
.article-hero .a-meta { font-size: 14px; color: var(--grey); }
.article-body {
  max-width: 760px;
  margin: 0 auto;
  padding: 20px 22px 40px;
}
.article-body h2 {
  font-family: var(--display);
  font-size: 1.6rem; font-weight: 800;
  margin: 40px 0 16px; letter-spacing: -.3px;
}
.article-body h3 { font-size: 1.2rem; font-weight: 700; margin: 28px 0 12px; }
.article-body p { color: var(--grey); margin-bottom: 18px; font-size: 16.5px; }
.article-body ul.bullets { display: grid; gap: 10px; margin: 0 0 22px; }
.article-body ul.bullets li {
  position: relative; padding-left: 28px; color: var(--grey); font-size: 16px;
}
.article-body ul.bullets li::before {
  content: "\f105"; font-family: "Font Awesome 6 Free"; font-weight: 900;
  position: absolute; left: 8px; top: 1px; color: var(--orange);
}
.article-body a.inline { color: var(--orange); font-weight: 600; }
.article-body a.inline:hover { text-decoration: underline; }
.callout {
  background: rgba(255, 106, 0, .08);
  border: 1px solid rgba(255, 106, 0, .3);
  border-left: 4px solid var(--orange);
  border-radius: var(--radius-sm);
  padding: 18px 22px;
  margin: 26px 0;
}
.callout p { margin: 0; color: var(--grey); font-size: 15px; }
.callout strong { color: #fff; }
.article-cta {
  background: linear-gradient(160deg, var(--black-3), var(--black-2));
  border: 1px solid var(--orange);
  border-radius: var(--radius);
  padding: 30px;
  text-align: center;
  margin: 38px 0;
  box-shadow: var(--glow);
}
.article-cta h3 { font-size: 20px; margin-bottom: 8px; }
.article-cta p { color: var(--grey); margin-bottom: 20px; font-size: 15px; }
.related {
  border-top: 1px solid var(--line);
  margin-top: 36px; padding-top: 28px;
}
.related h4 { font-size: 14px; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 18px; }
.related-links { display: grid; gap: 12px; }
.related-links a {
  display: flex; align-items: center; gap: 12px;
  background: var(--card); border: 1px solid var(--line);
  border-radius: var(--radius-sm); padding: 14px 18px;
  font-size: 15px; font-weight: 600;
  transition: border-color .2s ease, transform .2s ease;
}
.related-links a:hover { border-color: var(--orange); transform: translateX(5px); }
.related-links a i { color: var(--orange); }

/* ===================== GRILLE TARIFS (3 offres) ===================== */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  align-items: stretch;
  max-width: 1000px;
  margin: 0 auto;
}
.pricing-grid .price-card { max-width: none; padding: 36px 28px; }
.pricing-grid .price-card .big { font-size: 52px; }
.pricing-grid .price-card.featured { border-width: 2px; }

/* ===================== REVENDEURS ===================== */
.reseller-feats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.rs-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: transform .2s ease, border-color .2s ease, box-shadow .25s ease;
}
.rs-card:hover { transform: translateY(-6px); border-color: var(--orange); box-shadow: var(--glow); }
.rs-card .ic {
  width: 50px; height: 50px;
  display: grid; place-items: center;
  background: rgba(255, 106, 0, .12);
  border-radius: 12px;
  color: var(--orange); font-size: 21px;
  margin-bottom: 16px;
}
.rs-card h4 { font-size: 17px; margin-bottom: 8px; }
.rs-card p { font-size: 14px; color: var(--grey); margin: 0; }

.wa-highlight {
  display: flex; flex-wrap: wrap;
  align-items: center; justify-content: center;
  gap: 20px;
  background: linear-gradient(135deg, rgba(37, 211, 102, .12), rgba(37, 211, 102, .04));
  border: 1px solid rgba(37, 211, 102, .35);
  border-radius: 24px;
  padding: 38px 30px;
  text-align: center;
}
.wa-highlight .num {
  font-family: var(--display);
  font-size: clamp(1.4rem, 4vw, 2rem);
  font-weight: 800; color: #fff;
}
.wa-highlight .num i { color: var(--green); margin-right: 10px; }

@media (max-width: 900px) {
  .pricing-grid { grid-template-columns: 1fr; }
  .reseller-feats { grid-template-columns: 1fr; }
}

/* ===================== RESPONSIVE ===================== */
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-card { max-width: 460px; }
  .vod-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .compare-grid { grid-template-columns: 1fr; }
  .devices-grid { grid-template-columns: repeat(4, 1fr); }
  .reviews-grid, .posts-grid { grid-template-columns: 1fr 1fr; }
  .foot-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 680px) {
  .nav-links { display: none; }
  .nav-links.open {
    display: flex; flex-direction: column;
    position: absolute; top: 70px; left: 0; right: 0;
    background: var(--black-2); border-bottom: 1px solid var(--line);
    padding: 20px 22px; gap: 18px;
  }
  .burger { display: block; }
  .nav-cta .btn-ghost { display: none; }
  .steps-grid, .reviews-grid, .posts-grid, .devices-grid, .foot-grid { grid-template-columns: 1fr; }
  .devices-grid { grid-template-columns: repeat(2, 1fr); }
  .section { padding: 56px 0; }
  .hero { padding: 120px 0 60px; }
}
