/*
Theme Name: IPTV Fiesta FR
Author: Fiesta Team
Description: IPTV Smarters Pro France theme — flat, solid-color, iptvfiesta.com vibe (no gradients, no glass, no glow).
Version: 3.0
Text Domain: iptvfiesta
*/

/* ============================================================
   1. RESET & BASE
   ============================================================ */
*,*::before,*::after{box-sizing:border-box}
html{scroll-behavior:smooth;-webkit-text-size-adjust:100%}
body{
  margin:0;
  font-family:"Manrope",system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Helvetica,Arial,sans-serif;
  font-size:16px;
  line-height:1.55;
  color:#171717;
  background:#F9F6FF;
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
  overflow-x:hidden;
}
img{max-width:100%;height:auto;display:block}
a{color:inherit;text-decoration:none;transition:color .18s ease}
button{font-family:inherit;cursor:pointer;border:0;background:none;color:inherit}
ul,ol{margin:0;padding:0;list-style:none}
h1,h2,h3,h4,h5,h6{
  margin:0 0 .5em;
  font-family:inherit;
  font-weight:900;
  letter-spacing:-.02em;
  line-height:1.1;
  color:#171717;
}
p{margin:0 0 1em}

/* ============================================================
   2. DESIGN TOKENS — flat, solid, iptvfiesta.com
   ============================================================ */
:root{
  /* Ink */
  --ink:#171717;
  --ink-soft:#4a4a55;
  --ink-muted:#7c7c8a;

  /* Surfaces (lavender-tinted whites — NEVER gradient transitions) */
  --paper:#FFFFFF;
  --bg:#F9F6FF;          /* body / soft section bg */
  --bg-soft:#F1ECFB;     /* alt subtle band */
  --line:#EDE6F7;        /* hairline */

  /* Brand — solid, no gradient pair */
  --purple:#511BC9;
  --purple-deep:#3F12A0;
  --pink:#EF1893;
  --pink-deep:#C9117A;

  /* Accents (used sparingly, flat) */
  --yellow:#FFCC00;
  --green:#16A34A;
  --black:#000000;

  /* Shape language */
  --radius:18px;
  --radius-sm:12px;
  --radius-lg:28px;
  --pill:999px;

  /* The ONE shadow we allow — soft, neutral, no purple cast */
  --shadow:0 4px 8px rgba(0,0,0,.10);
  --shadow-lg:0 12px 28px rgba(0,0,0,.10);

  --container:1180px;
}

/* ============================================================
   3. LAYOUT HELPERS
   ============================================================ */
.container{
  width:100%;
  max-width:var(--container);
  margin:0 auto;
  padding:0 24px;
}
.section{padding:72px 0;position:relative}
.section--tight{padding:48px 0}
.text-center{text-align:center}

/* eyebrow — flat purple small-caps, no chip */
.eyebrow{
  display:inline-block;
  color:var(--purple);
  font-size:12px;
  font-weight:800;
  letter-spacing:.14em;
  text-transform:uppercase;
  margin-bottom:14px;
}

.section-title{
  font-size:clamp(30px,3.6vw,46px);
  font-weight:900;
  margin:0 0 16px;
  letter-spacing:-.025em;
  line-height:1.08;
}
.section-title .accent{color:var(--purple)}
.section-subtitle{
  color:var(--ink-soft);
  font-size:17px;
  max-width:720px;
  margin:0 auto 32px;
  line-height:1.6;
  font-weight:500;
}
.section-subtitle b{color:var(--ink);font-weight:700}

/* ============================================================
   4. BUTTONS — pill, solid, single neutral shadow
   ============================================================ */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  padding:18px 32px;
  border-radius:var(--pill);
  font-family:inherit;
  font-weight:700;
  font-size:16px;
  line-height:1;
  letter-spacing:.005em;
  transition:background .18s ease, color .18s ease, transform .15s ease;
  cursor:pointer;
  white-space:nowrap;
  border:0;
  box-shadow:var(--shadow);
}
.btn:hover{transform:translateY(-1px)}
.btn--primary{background:var(--purple);color:#fff}
.btn--primary:hover{background:var(--purple-deep);color:#fff}
.btn--pink{background:var(--pink);color:#fff}
.btn--pink:hover{background:var(--pink-deep);color:#fff}
.btn--ghost{
  background:#fff;
  color:var(--purple);
  box-shadow:var(--shadow);
}
.btn--ghost:hover{background:#fff;color:var(--purple-deep)}
.btn--lg{padding:20px 36px;font-size:17px}
.btn--sm{padding:11px 22px;font-size:13.5px}

/* When a button sits inside a dark/colored block, it inverts to white */
.section--sports .btn--primary,
.community-band .btn--primary,
.final-cta .btn--primary{
  background:#fff;
  color:var(--purple);
}
.section--sports .btn--primary:hover,
.community-band .btn--primary:hover,
.final-cta .btn--primary:hover{
  background:#fff;
  color:var(--purple-deep);
}

/* ============================================================
   5. HEADER — clean white, hairline, no blur
   ============================================================ */
.site-header{
  position:sticky;
  top:0;
  z-index:100;
  background:#fff;
  border-bottom:1px solid var(--line);
}
.site-header__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:18px 0;
  gap:24px;
}
.site-logo{display:inline-flex;align-items:center;gap:10px}
.site-logo img{height:44px;width:auto}
.site-nav{display:flex;align-items:center;gap:34px}
.site-nav ul{display:flex;gap:32px;align-items:center}
.site-nav a{
  font-size:15px;
  font-weight:600;
  color:var(--ink);
}
.site-nav a:hover{color:var(--purple)}
.site-header__cta{display:flex;align-items:center;gap:18px}
.site-header__cta .btn--pink{padding:12px 22px;font-size:14px}

/* Mobile toggle */
.menu-toggle{
  display:none;
  width:42px;height:42px;
  border-radius:10px;
  background:var(--bg-soft);
  color:var(--ink);
  align-items:center;justify-content:center;
  font-size:18px;
  box-shadow:none;
}
.mobile-drawer{
  position:fixed;
  inset:0;
  background:rgba(15,10,31,.55);
  backdrop-filter:blur(4px);
  -webkit-backdrop-filter:blur(4px);
  z-index:200;
  display:none;
  opacity:0;
  transition:opacity .25s;
}
.mobile-drawer.is-open{display:block;opacity:1;aria-hidden:false}
.mobile-drawer__panel{
  position:absolute;
  top:0;right:0;bottom:0;
  width:340px;
  max-width:92vw;
  background:#fff;
  display:flex;
  flex-direction:column;
  transform:translateX(100%);
  transition:transform .3s cubic-bezier(.4,0,.2,1);
  box-shadow:-12px 0 32px rgba(0,0,0,.12);
  overflow:hidden;
}
.mobile-drawer.is-open .mobile-drawer__panel{transform:translateX(0)}

/* Drawer header — solid purple slab with logo */
.mobile-drawer__head{
  flex:0 0 auto;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  padding:18px 22px;
  background:var(--purple);
}
.mobile-drawer__brand{display:inline-flex;align-items:center}
.mobile-drawer__brand img{
  height:38px;
  width:auto;
  filter:brightness(0) invert(1);
}
.mobile-drawer__close{
  width:40px;height:40px;
  border-radius:50%;
  background:rgba(255,255,255,.15);
  color:#fff;
  font-size:16px;
  display:inline-flex;align-items:center;justify-content:center;
  transition:background .18s ease, transform .15s ease;
}
.mobile-drawer__close:hover{background:rgba(255,255,255,.28);transform:rotate(90deg)}

/* Scrollable body */
.mobile-drawer__body{
  flex:1 1 auto;
  overflow-y:auto;
  overscroll-behavior:contain;
  -webkit-overflow-scrolling:touch;
  padding:22px 20px 28px;
  background:var(--bg);
}

/* Nav rows — card-style with icon + label + chevron */
.mobile-nav{
  display:flex;
  flex-direction:column;
  gap:8px;
  margin:0;
}
.mobile-nav a{
  display:flex;
  align-items:center;
  gap:14px;
  padding:13px 14px;
  background:#fff;
  border-radius:14px;
  color:var(--ink);
  font-size:15px;
  font-weight:700;
  letter-spacing:-.005em;
  box-shadow:0 1px 0 rgba(0,0,0,.02);
  transition:transform .15s ease, background .18s ease, color .18s ease;
}
.mobile-nav a:active{transform:scale(.98)}
.mobile-nav a:hover{background:#fff;color:var(--purple)}
.mobile-nav__ico{
  flex:0 0 38px;
  width:38px;height:38px;
  border-radius:10px;
  background:var(--bg-soft);
  color:var(--purple);
  display:inline-flex;align-items:center;justify-content:center;
  font-size:15px;
  transition:background .18s ease, color .18s ease;
}
.mobile-nav__ico--pink{background:#FDE3EF;color:var(--pink)}
.mobile-nav a:hover .mobile-nav__ico{background:var(--purple);color:#fff}
.mobile-nav a:hover .mobile-nav__ico--pink{background:var(--pink);color:#fff}
.mobile-nav__label{flex:1;line-height:1.2}
.mobile-nav__chev{
  font-size:11px;
  color:var(--ink-muted);
  margin-left:4px;
  transition:transform .15s ease, color .18s ease;
}
.mobile-nav a:hover .mobile-nav__chev{transform:translateX(2px);color:var(--purple)}
.mobile-nav__badge{
  display:inline-flex;
  align-items:center;
  padding:4px 9px;
  background:var(--bg-soft);
  color:var(--purple);
  border-radius:var(--pill);
  font-size:11px;
  font-weight:800;
  letter-spacing:.02em;
  line-height:1;
}
.mobile-nav__badge--pink{
  background:var(--pink);
  color:#fff;
}

/* Primary CTA */
.mobile-drawer__cta{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  width:100%;
  margin-top:22px;
  padding:16px 22px;
  font-size:15.5px;
  font-weight:800;
  letter-spacing:.005em;
}
.mobile-drawer__cta i{font-size:14px}

/* Contact section */
.mobile-drawer__contact{
  margin-top:24px;
  padding:18px 16px;
  background:#fff;
  border-radius:16px;
  box-shadow:var(--shadow);
}
.mobile-drawer__contact-title{
  margin:0 0 12px;
  font-size:13px;
  font-weight:800;
  color:var(--ink);
  letter-spacing:-.005em;
  text-align:center;
}
.mobile-drawer__contact-row{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:10px;
}
.mobile-drawer__chip{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  padding:11px 12px;
  border-radius:var(--pill);
  font-size:13px;
  font-weight:800;
  color:#fff;
  transition:transform .15s ease, filter .18s ease;
}
.mobile-drawer__chip:active{transform:scale(.97)}
.mobile-drawer__chip--wa{background:#25D366;color:#fff}
.mobile-drawer__chip--wa:hover{color:#fff;filter:brightness(1.05)}
.mobile-drawer__chip--mail{background:var(--purple);color:#fff}
.mobile-drawer__chip--mail:hover{color:#fff;background:var(--purple-deep)}
.mobile-drawer__chip i{font-size:14px}

/* Trust signals */
.mobile-drawer__trust{
  margin:20px 0 0;
  padding:16px 4px 4px;
  display:flex;
  flex-direction:column;
  gap:10px;
  border-top:1px dashed var(--line);
}
.mobile-drawer__trust li{
  display:flex;
  align-items:center;
  gap:10px;
  color:var(--ink-soft);
  font-size:12.5px;
  font-weight:600;
  line-height:1.4;
}
.mobile-drawer__trust i{
  color:var(--purple);
  font-size:13px;
  width:16px;
  text-align:center;
}
.mobile-drawer__trust .flag-fr{margin-right:0}

/* Tighten on very small phones */
@media (max-width:360px){
  .mobile-drawer__panel{width:300px}
  .mobile-drawer__body{padding:18px 16px 22px}
  .mobile-nav a{padding:12px;font-size:14.5px}
  .mobile-nav__ico{flex:0 0 34px;width:34px;height:34px;font-size:14px}
}

/* ============================================================
   6. HERO — lavender bg, big bold heading, no glow
   ============================================================ */
.hero{
  position:relative;
  padding:64px 0 0;
  background:var(--bg);
  overflow:hidden;
}
.hero__content{
  max-width:760px;
  margin:0 auto;
  text-align:center;
  position:relative;
  z-index:2;
}
.hero__title{
  font-size:clamp(38px,5.4vw,64px);
  font-weight:900;
  line-height:1.05;
  letter-spacing:-.03em;
  color:var(--ink);
  margin:0 0 22px;
}
.hero__title .accent{color:var(--purple)}
.hero__subtitle{
  color:var(--ink-soft);
  font-size:clamp(15px,1.3vw,18px);
  line-height:1.6;
  max-width:640px;
  margin:0 auto 32px;
  font-weight:500;
}
.hero__subtitle b{color:var(--ink);font-weight:700}

/* Hero showcase: single multi-device mockup */
.hero__showcase{
  position:relative;
  margin:48px auto 0;
  width:100%;
  padding:0 0 56px;
}

/* New single-image device showcase — compact iptvfiesta.com-style
   The image sits as a centered focal point; the badges float outside it
   on the lavender canvas, giving the hero air. */
.hero-device{
  position:relative;
  width:min(620px,70%);
  margin:0 auto;
  display:flex;
  align-items:center;
  justify-content:center;
  isolation:isolate;
}
.hero-device__halo{
  position:absolute;
  inset:auto 0 8% 0;
  height:55%;
  background:radial-gradient(closest-side, rgba(81,27,201,.22), rgba(81,27,201,0) 70%);
  filter:blur(22px);
  z-index:0;
  pointer-events:none;
}
.hero-device__halo:before{
  content:"";
  position:absolute;
  inset:0;
  background:radial-gradient(closest-side, rgba(239,24,147,.18), rgba(239,24,147,0) 70%);
  transform:translate(30%, 6%) scale(.6);
}
.hero-device__img{
  position:relative;
  z-index:1;
  width:100%;
  height:auto;
  display:block;
  filter:drop-shadow(0 18px 30px rgba(15,10,31,.16));
  animation:heroFloat 7s ease-in-out infinite;
}
@keyframes heroFloat{
  0%,100%{transform:translateY(0)}
  50%{transform:translateY(-5px)}
}
@media (prefers-reduced-motion:reduce){
  .hero-device__img{animation:none}
}

/* SVG hero badges — iptvfiesta.com style, parallax-driven */
.hero-badge{
  position:absolute;
  z-index:5;
  height:auto;
  pointer-events:none;
  user-select:none;
  /* Parallax shift is applied to a CSS custom property via JS;
     transform reads --px / --py for smooth, GPU-accelerated motion. */
  --px:0px;
  --py:0px;
  transform:translate3d(var(--px), var(--py), 0);
  filter:drop-shadow(0 10px 22px rgba(15,10,31,.18));
  will-change:transform;
}
.hero-badge--channels{top:-4%;left:-30%;width:200px}
.hero-badge--4k{top:-8%;right:-12%;width:90px}
.hero-badge--live{top:42%;left:-16%;width:92px}
.hero-badge--multi{top:46%;right:-26%;width:180px}
.poster-row{
  display:flex;
  align-items:flex-end;
  justify-content:center;
  gap:24px;
  position:relative;
  z-index:1;
  padding:0 5vw;
  min-height:520px;
}
.poster{
  position:relative;
  border-radius:14px;
  overflow:hidden;
  box-shadow:var(--shadow-lg);
  background:#1a1a1a;
  flex:0 0 auto;
  width:200px;
  aspect-ratio:2/3;
}
.poster img{
  width:100%;height:100%;
  object-fit:cover;
  display:block;
}
.poster--l1{align-self:flex-end;margin-right:-30px;z-index:1;width:200px}
.poster--l2{align-self:flex-end;margin-right:-20px;z-index:2;width:220px}
.poster--r1{align-self:flex-end;margin-left:-20px;z-index:2;width:220px}
.poster--r2{align-self:flex-end;margin-left:-30px;z-index:1;width:200px}

.tv-wrap{
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:flex-end;
  position:relative;
  z-index:5;
  flex:0 0 auto;
  width:580px;
}
.tv{
  background:#0a0a0a;
  border-radius:14px;
  padding:14px 14px 18px;
  box-shadow:var(--shadow-lg);
  width:100%;
  position:relative;
}
.tv__screen{
  width:100%;
  aspect-ratio:16/9;
  border-radius:6px;
  overflow:hidden;
  background:#000;
}
.tv__screen img{width:100%;height:100%;object-fit:cover}
.tv__stand{
  width:42%;
  height:14px;
  margin:0 auto;
  background:#0a0a0a;
  border-radius:0 0 8px 8px;
}

/* Floating badges — flat white cards, single shadow */
.badge-float{
  position:absolute;
  background:#fff;
  border-radius:16px;
  box-shadow:var(--shadow-lg);
  padding:14px 18px;
  display:flex;
  align-items:center;
  gap:12px;
  z-index:3;
  font-family:inherit;
}
.badge-float .ico{
  width:42px;height:42px;
  border-radius:10px;
  background:var(--purple);
  color:#fff;
  display:flex;align-items:center;justify-content:center;
  font-size:18px;
}
.badge-float .ico--pink{background:var(--pink)}
.badge-float .txt{display:flex;flex-direction:column;line-height:1.15}
.badge-float .txt b{font-size:15px;font-weight:800;color:var(--ink)}
.badge-float .txt span{font-size:12px;color:var(--ink-muted);margin-top:3px;font-weight:500}

.badge--channels{
  top:30px;left:50%;
  transform:translateX(-380px);
  z-index:6;
}
.badge--multi{
  top:48%;left:50%;
  transform:translateX(280px);
  z-index:6;
}
.badge--4k{
  position:absolute;
  top:30px;left:50%;
  transform:translateX(260px);
  background:var(--yellow);
  border:3px solid var(--ink);
  border-radius:14px;
  padding:0;
  width:80px;height:62px;
  display:flex;align-items:center;justify-content:center;
  z-index:6;
  box-shadow:var(--shadow);
  font-weight:900;font-size:28px;color:var(--ink);
  letter-spacing:.02em;
}
.badge--live{
  position:absolute;
  top:44%;left:50%;
  transform:translateX(-340px);
  background:#fff;
  width:84px;height:84px;
  border-radius:50%;
  display:flex;align-items:center;justify-content:center;
  gap:6px;
  color:var(--ink);
  font-weight:800;
  letter-spacing:.06em;
  font-size:15px;
  box-shadow:var(--shadow-lg);
  z-index:6;
}
.live-dot{
  width:8px;height:8px;border-radius:50%;
  background:var(--pink);
  box-shadow:0 0 0 4px rgba(239,24,147,.22);
  animation:livePulse 1.6s infinite;
}
@keyframes livePulse{
  0%,100%{box-shadow:0 0 0 4px rgba(239,24,147,.22)}
  50%{box-shadow:0 0 0 10px rgba(239,24,147,.08)}
}

/* Hero band — SOLID purple slab, no gradient */
.hero__band{
  position:relative;
  width:100%;
  background:var(--purple);
  padding:48px 0;
  margin-top:-40px;
  z-index:0;
}
.hero-stats{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:20px;
  max-width:920px;
  margin:0 auto;
}
.hero-stat{
  background:rgba(255,255,255,.08);
  border-radius:14px;
  padding:18px 14px;
  text-align:center;
}
.hero-stat b{
  display:block;
  color:#fff;
  font-size:22px;
  font-weight:900;
  line-height:1.1;
}
.hero-stat span{
  color:rgba(255,255,255,.85);
  font-size:12px;
  font-weight:600;
  text-transform:uppercase;
  letter-spacing:.06em;
  margin-top:6px;
  display:block;
}

/* Hero checks list under CTA */
.hero-checks{
  display:flex;
  justify-content:center;
  flex-wrap:wrap;
  gap:14px 28px;
  margin-top:24px;
  list-style:none;
}
.hero-checks li{
  display:inline-flex;
  align-items:center;
  gap:8px;
  color:var(--ink-soft);
  font-size:14px;
  font-weight:600;
}
.hero-checks .check{
  width:20px;height:20px;
  border-radius:50%;
  background:var(--purple);
  color:#fff;
  display:inline-flex;align-items:center;justify-content:center;
  font-size:10px;
  font-weight:900;
}

/* ============================================================
   7. FEATURES STRIP — white cards, no border, single shadow
   ============================================================ */
.features-strip{
  background:var(--bg);
  padding:72px 0;
}
.features-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:24px;
}
.feature-card{
  background:#fff;
  border-radius:var(--radius);
  padding:32px 28px;
  box-shadow:var(--shadow);
  transition:transform .25s ease, box-shadow .25s ease;
}
.feature-card:hover{
  transform:translateY(-4px);
  box-shadow:var(--shadow-lg);
}
.feature-card__ico{
  width:54px;height:54px;
  border-radius:14px;
  background:var(--purple);
  color:#fff;
  display:flex;align-items:center;justify-content:center;
  font-size:24px;
  margin-bottom:20px;
}
.feature-card:nth-child(2n) .feature-card__ico{background:var(--pink)}
.feature-card h3{
  font-size:18px;
  font-weight:800;
  margin:0 0 10px;
  letter-spacing:-.01em;
}
.feature-card p{
  font-size:14.5px;
  color:var(--ink-soft);
  margin:0;
  line-height:1.6;
  font-weight:500;
}

/* ============================================================
   8. SECTION: VOD GRID
   ============================================================ */
.section--vod{
  background:var(--bg);
  padding:72px 0;
}
.vod-grid{
  display:grid;
  grid-template-columns:repeat(6,1fr);
  gap:18px;
  margin-top:30px;
}
.vod-card{
  border-radius:14px;
  overflow:hidden;
  aspect-ratio:2/3;
  box-shadow:var(--shadow);
  transition:transform .25s ease;
  background:#1a1a1a;
}
.vod-card:hover{transform:translateY(-4px)}
.vod-card img{width:100%;height:100%;object-fit:cover}

/* ============================================================
   9. STATS — SOLID purple slab (no dark gradient)
   ============================================================ */
.stats-band{
  background:var(--purple);
  padding:60px 0;
}
.stats-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:24px;
}
.stat-item{
  text-align:center;
  padding:18px;
  border-right:1px solid rgba(255,255,255,.18);
}
.stat-item:last-child{border-right:0}
.stat-item b{
  display:block;
  font-size:clamp(28px,3vw,42px);
  font-weight:900;
  color:#fff;
  margin:0 0 6px;
  line-height:1.05;
  letter-spacing:-.02em;
}
.stat-item span{
  color:rgba(255,255,255,.85);
  font-size:13px;
  font-weight:700;
  text-transform:uppercase;
  letter-spacing:.06em;
}

/* ============================================================
   11. PRICING — solid border on popular, no gradient bg
   ============================================================ */
.section--pricing{
  background:var(--bg);
  padding:72px 0;
}
.pricing-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:24px;
  max-width:1100px;
  margin:50px auto 0;
}
.price-card{
  background:#fff;
  border-radius:22px;
  padding:34px 30px 30px;
  box-shadow:var(--shadow);
  position:relative;
  transition:transform .25s ease, box-shadow .25s ease;
  display:flex;
  flex-direction:column;
}
.price-card:hover{
  transform:translateY(-4px);
  box-shadow:var(--shadow-lg);
}
.price-card--popular{
  border:2px solid var(--purple);
  transform:translateY(-12px);
  box-shadow:var(--shadow-lg);
}
.price-card--popular:hover{transform:translateY(-16px)}
.price-card__badge{
  position:absolute;
  top:-14px;
  left:50%;
  transform:translateX(-50%);
  background:var(--pink);
  color:#fff;
  font-weight:800;
  font-size:12px;
  letter-spacing:.06em;
  padding:7px 16px;
  border-radius:var(--pill);
  text-transform:uppercase;
  box-shadow:var(--shadow);
}
.price-card__period{
  display:inline-block;
  padding:5px 12px;
  border-radius:var(--pill);
  background:var(--bg-soft);
  color:var(--purple);
  font-size:11px;
  font-weight:800;
  letter-spacing:.08em;
  text-transform:uppercase;
}
.price-card h3{
  font-size:22px;
  font-weight:900;
  margin:14px 0 6px;
  letter-spacing:-.01em;
}
.price-card__sub{
  color:var(--ink-muted);
  font-size:14px;
  margin:0 0 22px;
  font-weight:500;
}
.price-card__price{
  display:flex;
  align-items:baseline;
  justify-content:center;
  gap:4px;
  margin:8px 0 4px;
}
.price-card__price .cur{
  font-size:24px;font-weight:800;color:var(--ink);
}
.price-card__price .num{
  font-size:64px;font-weight:900;line-height:1;color:var(--ink);
  letter-spacing:-.03em;
}
.price-card__price .per{
  font-size:14px;color:var(--ink-muted);font-weight:600;
}
.price-card__old{
  text-align:center;
  color:var(--ink-muted);
  font-size:13px;
  margin-bottom:18px;
  font-weight:500;
}
.price-card__old s{margin-right:6px}
.price-card__save{
  display:inline-block;
  background:#E7F8EF;
  color:var(--green);
  font-weight:700;
  font-size:12px;
  padding:5px 14px;
  border-radius:var(--pill);
  margin-bottom:18px;
}
.price-card__save-wrap{text-align:center;margin-bottom:18px}
.price-card__features{
  list-style:none;
  padding:0;
  margin:0 0 24px;
  flex:1;
}
.price-card__features li{
  display:flex;
  align-items:flex-start;
  gap:12px;
  padding:10px 0;
  font-size:14.5px;
  color:var(--ink);
  border-bottom:1px dashed var(--line);
  line-height:1.5;
  font-weight:500;
}
.price-card__features li:last-child{border-bottom:0}
.price-card__features li:before{
  content:"";
  flex:0 0 18px;height:18px;margin-top:2px;
  background:var(--purple);
  mask:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'><path d='M13.485 4.43a1 1 0 010 1.414l-6.364 6.364a1 1 0 01-1.414 0L2.515 8.99a1 1 0 111.414-1.414l2.485 2.485 5.657-5.657a1 1 0 011.414 0z'/></svg>") center / contain no-repeat;
  -webkit-mask:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'><path d='M13.485 4.43a1 1 0 010 1.414l-6.364 6.364a1 1 0 01-1.414 0L2.515 8.99a1 1 0 111.414-1.414l2.485 2.485 5.657-5.657a1 1 0 011.414 0z'/></svg>") center / contain no-repeat;
}
.price-card .btn{width:100%;justify-content:center}
.price-card .btn--ghost{
  background:var(--bg-soft);
  color:var(--purple);
  border:2px solid rgba(81,27,201,.18);
  box-shadow:none;
}
.price-card .btn--ghost:hover{
  background:#fff;
  border-color:var(--purple);
  color:var(--purple-deep);
  box-shadow:var(--shadow);
}
.price-card__compat{
  margin-top:14px;
  display:flex;
  gap:8px;
  flex-wrap:wrap;
  justify-content:center;
}
.price-card__compat span{
  font-size:11px;
  font-weight:700;
  color:var(--ink-muted);
  background:var(--bg-soft);
  padding:5px 11px;
  border-radius:var(--pill);
  letter-spacing:.04em;
}
.price-card__activation{
  text-align:center;
  font-size:12px;
  color:var(--ink-muted);
  margin-top:12px;
  font-weight:500;
}
.price-card--compact{padding:24px 22px}

/* Trust row under pricing */
.trust-row{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:20px;
  margin-top:50px;
}
.trust-item{
  background:#fff;
  border-radius:var(--radius);
  padding:26px 20px;
  text-align:center;
  box-shadow:var(--shadow);
  transition:transform .2s ease;
}
.trust-item:hover{transform:translateY(-3px)}
.trust-item .ico{
  font-size:30px;
  margin-bottom:10px;
  display:block;
}
.trust-item b{
  display:block;
  color:var(--ink);
  font-size:15px;
  font-weight:800;
  margin-bottom:4px;
}
.trust-item span{
  color:var(--ink-soft);
  font-size:13px;
  font-weight:500;
}

/* ============================================================
   12. TUTORIALS / GUIDES
   ============================================================ */
.section--tutorials{
  background:var(--bg);
  padding:72px 0;
}
.tutorials-cards{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:24px;
  margin-top:40px;
}
.tutorial-card{
  background:#fff;
  border-radius:var(--radius);
  overflow:hidden;
  box-shadow:var(--shadow);
  transition:transform .25s ease, box-shadow .25s ease;
}
.tutorial-card:hover{transform:translateY(-4px);box-shadow:var(--shadow-lg)}
.tutorial-card__media{
  aspect-ratio:16/9;
  background:#0a0a0a;
  position:relative;
  display:flex;
  align-items:center;
  justify-content:center;
  overflow:hidden;
}
.tutorial-card__media:before{
  content:"";
  width:74px;height:74px;
  border-radius:50%;
  background:var(--pink);
  position:absolute;
  z-index:1;
}
.tutorial-card__media:after{
  content:"";
  width:0;height:0;
  border-left:18px solid #fff;
  border-top:12px solid transparent;
  border-bottom:12px solid transparent;
  margin-left:6px;
  position:relative;
  z-index:2;
}
.tutorial-card__duration{
  position:absolute;
  top:14px;right:14px;
  background:var(--ink);
  color:#fff;
  padding:5px 11px;
  border-radius:var(--pill);
  font-size:12px;
  font-weight:700;
  z-index:3;
}
.tutorial-card__tags{
  position:absolute;
  bottom:14px;left:14px;
  display:flex;
  gap:6px;
  z-index:3;
  flex-wrap:wrap;
}
.tutorial-card__tags span{
  background:#fff;
  color:var(--ink);
  font-size:11px;
  padding:4px 10px;
  border-radius:var(--pill);
  font-weight:700;
}
.tutorial-card__body{padding:24px}
.tutorial-card h3{font-size:19px;font-weight:900;margin:0 0 10px;letter-spacing:-.01em}
.tutorial-card p{color:var(--ink-soft);font-size:14.5px;line-height:1.6;margin:0 0 14px;font-weight:500}
.tutorial-card a{
  color:var(--purple);
  font-weight:800;
  font-size:14px;
  display:inline-flex;
  align-items:center;
  gap:6px;
}
.tutorial-card a:hover{color:var(--purple-deep)}

/* 4 install steps */
.install-steps{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:20px;
  margin-top:40px;
}
.step-card{
  background:#fff;
  border-radius:var(--radius);
  padding:30px 24px;
  text-align:center;
  box-shadow:var(--shadow);
  transition:transform .2s ease;
}
.step-card:hover{transform:translateY(-4px)}
.step-card__num{
  display:inline-flex;
  align-items:center;justify-content:center;
  width:46px;height:46px;
  border-radius:14px;
  background:var(--purple);
  color:#fff;
  font-weight:900;
  font-size:18px;
  margin-bottom:18px;
}
.step-card:nth-child(2) .step-card__num{background:var(--pink)}
.step-card:nth-child(3) .step-card__num{background:var(--ink)}
.step-card:nth-child(4) .step-card__num{background:var(--purple-deep)}
.step-card h4{font-size:17px;font-weight:900;margin:0 0 8px;letter-spacing:-.01em}
.step-card p{color:var(--ink-soft);font-size:13.5px;margin:0;line-height:1.55;font-weight:500}

/* ============================================================
   13. REVIEWS
   ============================================================ */
.section--reviews{
  background:var(--bg);
  padding:72px 0;
}
.tp-block{
  display:inline-flex;
  align-items:center;
  gap:14px;
  background:#fff;
  border-radius:var(--pill);
  padding:12px 22px;
  box-shadow:var(--shadow);
}
.tp-block .score{font-weight:900;font-size:18px;color:var(--ink)}
.tp-block .stars{color:#00B67A;letter-spacing:2px;font-size:16px}
.tp-block .meta{color:var(--ink-soft);font-size:13px;font-weight:500}

.reviews-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:22px;
  margin-top:46px;
}
.review-card{
  background:#fff;
  border-radius:var(--radius);
  padding:26px 24px;
  box-shadow:var(--shadow);
  transition:transform .2s ease, box-shadow .2s ease;
  display:flex;
  flex-direction:column;
}
.review-card:hover{transform:translateY(-3px);box-shadow:var(--shadow-lg)}
.review-card__stars{
  color:#00B67A;
  letter-spacing:2px;
  font-size:16px;
  margin-bottom:10px;
}
.review-card__verified{
  display:inline-block;
  background:#E7F8EF;
  color:var(--green);
  font-size:11px;
  font-weight:700;
  padding:4px 10px;
  border-radius:var(--pill);
  margin-bottom:12px;
  width:fit-content;
  letter-spacing:.02em;
}
.review-card p{
  color:var(--ink);
  font-size:14.5px;
  line-height:1.65;
  margin:0 0 14px;
  flex:1;
  font-weight:500;
}
.review-card__author{
  display:flex;align-items:center;gap:10px;
  border-top:1px dashed var(--line);
  padding-top:14px;
  font-size:13px;
}
.review-card__author .avatar{
  width:38px;height:38px;
  border-radius:50%;
  background:var(--purple);
  color:#fff;
  font-weight:800;
  display:inline-flex;align-items:center;justify-content:center;
  font-size:14px;
}
.review-card:nth-child(2n) .review-card__author .avatar{background:var(--pink)}
.review-card__author b{color:var(--ink);font-weight:800;display:block}
.review-card__author span{color:var(--ink-muted);font-size:12px;font-weight:500}

/* ============================================================
   14. COMMUNITY — SOLID pink slab (the iptvfiesta signature)
   ============================================================ */
.community-band{
  background:var(--pink);
  color:#fff;
  padding:64px 0;
}
.community-band h2{color:#fff;font-size:clamp(28px,3.4vw,44px)}
.community-band .section-subtitle{color:rgba(255,255,255,.92)}
.community-band .section-subtitle b{color:#fff}
.community-stats{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:24px;
  margin:36px 0;
  text-align:center;
}
.community-stats b{
  display:block;
  font-size:clamp(28px,3vw,42px);
  font-weight:900;
  color:#fff;
  letter-spacing:-.02em;
}
.community-stats span{
  display:block;
  color:rgba(255,255,255,.92);
  font-size:13px;
  margin-top:6px;
  text-transform:uppercase;
  letter-spacing:.06em;
  font-weight:700;
}

/* ============================================================
   15. DEVICES
   ============================================================ */
.section--devices{
  background:var(--bg);
  padding:72px 0;
}
.devices-grid{
  display:grid;
  grid-template-columns:repeat(6,1fr);
  gap:18px;
  margin-top:50px;
}
.device-card{
  background:#fff;
  border-radius:var(--radius-sm);
  padding:24px 14px;
  text-align:center;
  box-shadow:var(--shadow);
  transition:transform .2s ease;
}
.device-card:hover{transform:translateY(-3px)}
.device-card .ico{
  font-size:32px;
  display:block;
  margin-bottom:10px;
  color:var(--purple);
}
.device-card:nth-child(3n+2) .ico{color:var(--pink)}
.device-card:nth-child(3n+3) .ico{color:var(--ink)}
.device-card b{
  display:block;
  font-size:13.5px;
  font-weight:800;
  color:var(--ink);
  margin-bottom:4px;
  letter-spacing:-.01em;
}
.device-card span{
  font-size:11px;
  color:var(--green);
  font-weight:700;
  letter-spacing:.04em;
}

/* Connection types */
.connections{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:22px;
  margin-top:40px;
}
.connection-card{
  background:#fff;
  border-radius:var(--radius);
  padding:28px;
  box-shadow:var(--shadow);
  transition:transform .2s ease;
}
.connection-card:hover{transform:translateY(-3px)}
.connection-card .ico{font-size:34px;display:block;margin-bottom:14px;color:var(--purple)}
.connection-card:nth-child(2) .ico{color:var(--pink)}
.connection-card h4{font-size:18px;font-weight:900;margin:0 0 8px;letter-spacing:-.01em}
.connection-card .speed{
  display:inline-block;
  background:var(--bg-soft);
  color:var(--purple);
  font-size:12px;
  font-weight:800;
  padding:4px 11px;
  border-radius:var(--pill);
  margin-bottom:10px;
  letter-spacing:.04em;
}
.connection-card p{color:var(--ink-soft);font-size:13.5px;margin:0;line-height:1.55;font-weight:500}

/* Tech compat columns */
.tech-compat{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:24px;
  margin-top:40px;
}
.tech-card{
  background:#fff;
  border-radius:var(--radius);
  padding:28px;
  box-shadow:var(--shadow);
}
.tech-card .ico{font-size:28px;display:block;margin-bottom:12px;color:var(--purple)}
.tech-card:nth-child(2n) .ico{color:var(--pink)}
.tech-card h4{font-size:17px;font-weight:900;margin:0 0 14px;letter-spacing:-.01em}
.tech-card ul{display:flex;flex-direction:column;gap:8px}
.tech-card li{
  font-size:13.5px;
  color:var(--ink-soft);
  padding-left:18px;
  position:relative;
  line-height:1.5;
  font-weight:500;
}
.tech-card li:before{
  content:"";
  position:absolute;left:0;top:7px;
  width:8px;height:8px;
  border-radius:50%;
  background:var(--purple);
}

/* ============================================================
   16. EXCLUSIVE — pure black slab (iptvfiesta sports vibe)
   ============================================================ */
.section--exclusive{
  background:var(--black);
  color:#fff;
  padding:72px 0;
}
.section--exclusive .eyebrow{color:var(--pink)}
.section--exclusive .section-title{color:#fff}
.section--exclusive .section-subtitle{color:rgba(255,255,255,.82)}
.section--exclusive .section-subtitle b{color:#fff}

.exclusive-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:22px;
  margin-top:40px;
}
.exclusive-card{
  background:#111;
  border-radius:var(--radius);
  padding:30px 24px;
  transition:transform .25s ease, background .25s ease;
}
.exclusive-card:hover{
  transform:translateY(-4px);
  background:#171717;
}
.exclusive-card__ico{
  width:54px;height:54px;
  border-radius:14px;
  background:var(--pink);
  color:#fff;
  display:flex;align-items:center;justify-content:center;
  font-size:22px;
  margin-bottom:18px;
}
.exclusive-card:nth-child(2n) .exclusive-card__ico{background:var(--purple)}
.exclusive-card h3{font-size:18px;color:#fff;margin:0 0 10px;font-weight:900;letter-spacing:-.01em}
.exclusive-card p{color:rgba(255,255,255,.72);font-size:14px;line-height:1.6;margin:0 0 14px;font-weight:500}
.exclusive-card .tag{
  display:inline-block;
  padding:5px 12px;
  background:rgba(239,24,147,.18);
  color:#FF9ECC;
  border-radius:var(--pill);
  font-size:11px;
  font-weight:800;
  letter-spacing:.06em;
  text-transform:uppercase;
}

/* Comparison table */
.vs-table{
  margin-top:50px;
  background:#111;
  border-radius:var(--radius);
  overflow:hidden;
}
.vs-head, .vs-row{
  display:grid;
  grid-template-columns:2fr 1fr 1fr;
  align-items:center;
}
.vs-head{
  background:#171717;
  font-weight:800;
}
.vs-cell{
  padding:18px 22px;
  color:rgba(255,255,255,.85);
  font-size:14.5px;
  border-bottom:1px solid rgba(255,255,255,.06);
  font-weight:500;
}
.vs-row:last-child .vs-cell{border-bottom:0}
.vs-label{font-weight:700;color:#fff}
.vs-yes-head{color:var(--pink);text-align:center;font-weight:900;letter-spacing:.04em}
.vs-no-head{color:rgba(255,255,255,.55);text-align:center;font-weight:700}
.vs-yes{color:#22E59A;font-weight:900;text-align:center;font-size:18px}
.vs-no{color:rgba(255,255,255,.45);text-align:center;font-size:14px}
.vs-row:hover{background:rgba(255,255,255,.025)}

/* ============================================================
   17. FAQ
   ============================================================ */
.section--faq{
  background:var(--bg);
  padding:72px 0;
}
.faq-accordion{
  max-width:820px;
  margin:40px auto 0;
}
.faq-item{
  background:#fff;
  border-radius:var(--radius);
  margin-bottom:14px;
  overflow:hidden;
  box-shadow:var(--shadow);
  transition:transform .15s ease;
}
.faq-item:hover{transform:translateY(-1px)}
.faq-item__q{
  display:flex;
  align-items:center;
  gap:14px;
  padding:22px 26px;
  cursor:pointer;
  font-size:16px;
  font-weight:700;
  color:var(--ink);
  user-select:none;
  width:100%;
  text-align:left;
  background:transparent;
  letter-spacing:-.005em;
}
.faq-item__q > span:not(.faq-item__plus){
  flex:1;
  text-align:left;
}
.faq-item__plus{
  order:2;
  flex:0 0 40px;
  width:40px;height:40px;
  border-radius:50%;
  background:var(--bg-soft);
  color:var(--purple);
  display:inline-flex;
  align-items:center;
  justify-content:center;
  font-size:26px;
  font-weight:700;
  line-height:1;
  transition:transform .25s ease, background .2s ease, color .2s ease;
}
.faq-item__q:hover .faq-item__plus{background:#E5D9F7}
.faq-item.is-open .faq-item__plus{
  transform:rotate(45deg);
  background:var(--purple);
  color:#fff;
}
.faq-item__a{
  max-height:0;
  overflow:hidden;
  padding:0 26px;
  transition:max-height .28s ease, padding .28s ease;
}
.faq-item.is-open .faq-item__a{
  padding:0 26px 22px;
}
.faq-item__a p{
  color:var(--ink-soft);
  font-size:14.5px;
  line-height:1.7;
  margin:0 0 10px;
  font-weight:500;
}
.faq-item__a a{color:var(--purple);font-weight:800}
.faq-item__a b{color:var(--ink);font-weight:700}

/* ============================================================
   18. FINAL CTA — SOLID purple slab, no blurred photo
   ============================================================ */
.final-cta{
  background:var(--purple);
  color:#fff;
  padding:72px 0;
  text-align:center;
}
.final-cta h2{color:#fff;font-size:clamp(32px,3.6vw,50px);margin:0 0 18px;letter-spacing:-.025em}
.final-cta p{color:rgba(255,255,255,.9);font-size:17px;max-width:680px;margin:0 auto 30px;line-height:1.6;font-weight:500}
.final-cta__perks{
  display:flex;
  justify-content:center;
  flex-wrap:wrap;
  gap:12px 28px;
  margin-top:30px;
}
.final-cta__perks span{
  color:rgba(255,255,255,.92);
  font-size:14px;
  font-weight:600;
  display:inline-flex;
  align-items:center;
  gap:6px;
}

/* ============================================================
   19. FOOTER — solid near-black, hairline top
   ============================================================ */
.site-footer{
  background:#0F0A1F;
  color:rgba(255,255,255,.7);
}
.footer-top{padding:72px 0 40px}
.footer-grid{
  display:grid;
  grid-template-columns:2fr 1fr 1fr 1fr;
  gap:40px;
}
.footer-brand img{height:54px;margin-bottom:18px;filter:brightness(0) invert(1);opacity:.95}
.footer-brand p{color:rgba(255,255,255,.65);font-size:14px;line-height:1.65;margin:0 0 18px;font-weight:500}
.footer-pay img{height:28px;opacity:.85}
.footer-col h4{
  color:#fff;font-weight:800;font-size:14px;
  margin:0 0 18px;letter-spacing:.06em;text-transform:uppercase;
}
.footer-col ul{display:flex;flex-direction:column;gap:10px}
.footer-col a{
  color:rgba(255,255,255,.7);font-size:14.5px;
  transition:color .18s ease;
  display:inline-block;
  font-weight:500;
}
.footer-col a:hover{color:#fff}
.footer-col .pill{
  display:inline-block;
  background:rgba(255,255,255,.08);
  padding:6px 13px;
  border-radius:var(--pill);
  font-size:12.5px;
  color:rgba(255,255,255,.85);
  font-weight:600;
}
.footer-bottom{
  border-top:1px solid rgba(255,255,255,.08);
  padding:22px 0;
}
.footer-bottom__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  flex-wrap:wrap;
  gap:14px;
}
.footer-bottom p{margin:0;color:rgba(255,255,255,.55);font-size:13px;font-weight:500}
.footer-bottom p b{color:#fff;font-weight:700}
.footer-bottom__legal{display:flex;gap:18px;list-style:none}
.footer-bottom__legal a{color:rgba(255,255,255,.65);font-size:13px;font-weight:500}
.footer-bottom__legal a:hover{color:#fff}

/* ============================================================
   20. WhatsApp sticky — flat green, neutral shadow
   ============================================================ */
.whatsapp-sticky{
  position:fixed;
  right:22px;bottom:22px;
  z-index:80;
  width:58px;height:58px;
  background:#25D366;
  color:#fff;
  border-radius:50%;
  display:flex;align-items:center;justify-content:center;
  font-size:28px;
  box-shadow:var(--shadow-lg);
  transition:transform .2s ease;
}
.whatsapp-sticky:hover{color:#fff;transform:scale(1.06)}

/* ============================================================
   21. PAGE TEMPLATES
   ============================================================ */
.page-hero{
  background:var(--purple);
  color:#fff;
  padding:72px 0;
  text-align:center;
}
.page-hero h1{color:#fff;font-size:clamp(30px,3.8vw,48px);margin:0;letter-spacing:-.025em;font-weight:900}
.page-content{
  max-width:860px;
  margin:0 auto;
  padding:64px 24px;
  color:var(--ink);
  font-size:16px;
  line-height:1.7;
}
.page-content h2,.page-content h3{
  font-weight:900;
  margin:30px 0 14px;
  letter-spacing:-.02em;
}
.page-content a{color:var(--purple);font-weight:700}
.page-content p{margin:0 0 16px}

/* 404 */
.not-found-page{
  background:var(--bg);
  padding:72px 0;
}
.not-found-card{
  max-width:820px;
  margin:0 auto 28px;
  background:#fff;
  border-radius:var(--radius-lg);
  box-shadow:var(--shadow);
  padding:48px 36px;
  text-align:center;
}
.not-found-card__code{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width:96px;
  height:48px;
  border-radius:var(--pill);
  background:var(--bg-soft);
  color:var(--purple);
  font-weight:900;
  font-size:22px;
  margin-bottom:18px;
}
.not-found-card h1{
  font-size:clamp(34px,4vw,54px);
  margin:0 0 16px;
  letter-spacing:-.03em;
}
.not-found-card p{
  max-width:600px;
  margin:0 auto 28px;
  color:var(--ink-soft);
  font-size:17px;
  line-height:1.65;
  font-weight:600;
}
.not-found-actions{
  display:flex;
  justify-content:center;
  gap:14px;
  flex-wrap:wrap;
}
.not-found-links{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:22px;
}

/* ============================================================
   26. PAGE TEMPLATES — Guide & FAQ (codeiptvs.fr-style content)
   ============================================================ */

/* Hero for inner pages */
.page-hero--guide{
  background:var(--purple);
  padding:80px 0 72px;
  text-align:center;
}
.page-hero--guide h1{
  color:#fff;
  font-size:clamp(30px,3.8vw,48px);
  margin:0 0 16px;
  letter-spacing:-.025em;
  font-weight:900;
}
.page-hero--guide h1 .accent{color:#FFB1DC;font-weight:900}
.page-hero__eyebrow{
  display:inline-block;
  padding:6px 14px;
  background:rgba(255,255,255,.14);
  color:#fff;
  font-size:12.5px;
  font-weight:700;
  letter-spacing:.06em;
  text-transform:uppercase;
  border-radius:var(--pill);
  margin-bottom:18px;
}
.page-hero__sub{
  color:rgba(255,255,255,.92);
  font-size:17px;
  line-height:1.6;
  max-width:720px;
  margin:0 auto 28px;
  font-weight:500;
}
.page-hero__sub b{color:#fff;font-weight:800}
.page-hero__cta{
  display:flex;
  justify-content:center;
  gap:14px;
  flex-wrap:wrap;
}
.page-hero__cta .btn--ghost{
  background:rgba(255,255,255,.18);
  color:#fff;
  box-shadow:none;
}
.page-hero__cta .btn--ghost:hover{background:rgba(255,255,255,.28);color:#fff}

.page-hero--guide .page-hero__cta .btn{
  min-width:250px;
  min-height:58px;
  box-shadow:none;
  font-size:16px;
  font-weight:900;
}
.page-hero--guide .page-hero__cta .btn--primary{
  background:var(--purple-deep);
  color:#fff;
}
.page-hero--guide .page-hero__cta .btn--primary:hover{
  background:#331080;
}
.page-hero--guide .page-hero__cta .btn--ghost{
  background:rgba(255,255,255,.16);
  color:#fff;
}
.page-hero--guide .page-hero__cta .btn--ghost:hover{
  background:rgba(255,255,255,.25);
}

/* FAQ hero counter row */
.faq-hero-stats{
  display:flex;
  justify-content:center;
  flex-wrap:wrap;
  gap:18px 36px;
  margin-top:28px;
}
.faq-hero-stats div{
  color:rgba(255,255,255,.92);
  font-size:14px;
  font-weight:600;
}
.faq-hero-stats b{
  color:#fff;
  font-weight:900;
  font-size:18px;
  margin-right:6px;
}

/* Sticky-ish device quick-nav */
.device-nav-section{
  background:var(--bg);
}
.device-nav__label{
  color:var(--ink-soft);
  font-size:14px;
  font-weight:600;
  text-align:center;
  margin:0 0 16px;
}
.device-nav{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  justify-content:center;
}
.device-chip{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:10px 18px;
  background:#fff;
  color:var(--ink);
  border-radius:var(--pill);
  font-size:14px;
  font-weight:700;
  box-shadow:var(--shadow);
  transition:transform .15s ease, background .15s ease, color .15s ease;
}
.device-chip:hover{
  transform:translateY(-2px);
  background:var(--purple);
  color:#fff;
}
.device-chip i{font-size:14px}

/* Device installation block */
.device-block{
  background:var(--bg);
  padding:72px 0;
}
.device-block--alt{background:var(--bg-soft)}
.device-block__head{
  display:flex;
  align-items:center;
  gap:18px;
  margin-bottom:40px;
}
.device-block__ico{
  flex:0 0 64px;
  width:64px;height:64px;
  border-radius:16px;
  background:var(--purple);
  color:#fff;
  display:flex;align-items:center;justify-content:center;
  font-size:26px;
  box-shadow:var(--shadow);
}
.device-block__ico--pink{background:var(--pink)}
.device-block__head h2{
  font-size:clamp(24px,2.6vw,34px);
  margin:0 0 6px;
  letter-spacing:-.02em;
  font-weight:900;
}
.device-block__head h2 .accent{color:var(--purple)}
.device-block__head p{
  margin:0;
  color:var(--ink-soft);
  font-size:14.5px;
  font-weight:500;
}
.device-block__body{
  display:grid;
  grid-template-columns:1.6fr 1fr;
  gap:36px;
  align-items:start;
}

/* Step list inside a device block */
.device-steps{
  display:flex;
  flex-direction:column;
  gap:14px;
}
.device-step{
  background:#fff;
  border-radius:var(--radius);
  padding:22px 24px;
  display:flex;
  align-items:flex-start;
  gap:18px;
  box-shadow:var(--shadow);
}
.device-step__num{
  flex:0 0 38px;
  width:38px;height:38px;
  border-radius:50%;
  background:var(--purple);
  color:#fff;
  display:flex;align-items:center;justify-content:center;
  font-weight:900;
  font-size:16px;
}
.device-block--alt .device-step__num{background:var(--pink)}
.device-step h3{
  font-size:16.5px;
  font-weight:800;
  margin:0 0 6px;
  letter-spacing:-.01em;
  color:var(--ink);
}
.device-step p{
  margin:0;
  color:var(--ink-soft);
  font-size:14.5px;
  line-height:1.55;
  font-weight:500;
}
.device-step code{
  background:var(--bg-soft);
  color:var(--purple);
  padding:2px 8px;
  border-radius:6px;
  font-size:13px;
  font-weight:700;
  font-family:ui-monospace,SFMono-Regular,Menlo,monospace;
}
.device-tip{
  background:#FFFBE6;
  border-left:3px solid var(--yellow);
  padding:14px 18px;
  border-radius:8px;
  font-size:14px;
  color:var(--ink);
  font-weight:500;
  line-height:1.55;
}
.device-tip b{font-weight:800}

/* Sidebar aside */
.device-aside{
  display:flex;
  flex-direction:column;
  gap:14px;
  position:sticky;
  top:90px;
}
.device-aside__card{
  background:#fff;
  border-radius:var(--radius);
  padding:22px 22px;
  box-shadow:var(--shadow);
}
.device-aside__card h3{
  font-size:15px;
  font-weight:900;
  margin:0 0 12px;
  display:flex;align-items:center;gap:8px;
  letter-spacing:-.005em;
  color:var(--ink);
}
.device-aside__card h3 i{color:var(--purple);font-size:14px}
.device-block--alt .device-aside__card h3 i{color:var(--pink)}
.device-aside__card ul{display:flex;flex-direction:column;gap:8px}
.device-aside__card li{
  position:relative;
  padding-left:20px;
  color:var(--ink-soft);
  font-size:13.5px;
  line-height:1.5;
  font-weight:500;
}
.device-aside__card li:before{
  content:"";
  position:absolute;
  left:0;top:7px;
  width:8px;height:8px;
  border-radius:50%;
  background:var(--purple);
}
.device-block--alt .device-aside__card li:before{background:var(--pink)}

/* FAQ Page — category cards */
.faq-categories{background:var(--bg);padding:72px 0}

/* Tighten gap when category/device section follows the quick-nav chip row */
.device-nav-section + .faq-categories,
.device-nav-section + .device-block{padding-top:24px}
.device-nav-section{padding-bottom:24px}
.faq-cat-grid{
  display:flex;
  flex-direction:column;
  gap:36px;
}
.faq-cat{
  background:#fff;
  border-radius:var(--radius-lg);
  padding:30px 30px 20px;
  box-shadow:var(--shadow);
  scroll-margin-top:90px;
}
.faq-cat__head{
  display:flex;
  align-items:center;
  gap:16px;
  margin-bottom:22px;
  padding-bottom:18px;
  border-bottom:1px solid var(--line);
}
.faq-cat__head .device-block__ico{
  width:52px;height:52px;
  font-size:22px;
  flex:0 0 52px;
}
.faq-cat__head h2{
  font-size:22px;
  margin:0 0 4px;
  letter-spacing:-.015em;
  font-weight:900;
}
.faq-cat__head h2 .accent{color:var(--purple)}
.faq-cat__head p{margin:0;color:var(--ink-muted);font-size:13.5px;font-weight:500}
.faq-cat .faq-accordion{margin:0;max-width:none;width:100%}
.faq-cat .faq-item{box-shadow:none;background:var(--bg);border-radius:12px}
.faq-cat .faq-item:hover{transform:none}
.faq-cat .faq-item__q{padding:18px 22px;font-size:15px}
.faq-cat .faq-item__a{padding:0 22px}
.faq-cat .faq-item.is-open .faq-item__a{padding:0 22px 18px}

@media (max-width:1024px){
  .device-block__body{grid-template-columns:1fr;gap:24px}
  .device-aside{position:static}
}
@media (max-width:768px){
  .page-hero--guide{padding:56px 0 48px}
  .device-block{padding:48px 0}
  .device-block__head{flex-direction:column;align-items:flex-start;gap:14px;margin-bottom:28px}
  .device-step{padding:18px 18px;gap:14px}
  .device-step__num{width:32px;height:32px;flex:0 0 32px;font-size:14px}
  .faq-cat{padding:24px 22px 14px;border-radius:var(--radius)}
  .faq-cat__head{flex-direction:column;align-items:flex-start;gap:10px}
  .faq-categories{padding:48px 0}
  .device-nav{justify-content:flex-start;overflow-x:auto;flex-wrap:nowrap;padding-bottom:6px}
  .device-chip{flex:0 0 auto}
}

/* ============================================================
   23. iptvfiesta-style sections — Servers / Sports / World
   ============================================================ */

/* Servers section — 2-col with checklist, on lavender bg */
.section--servers{
  background:var(--bg);
  padding:72px 0;
}
.servers-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:60px;
  align-items:center;
}
.servers-grid__media{position:relative}
.servers-grid__media-stack{
  position:relative;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:14px;
}
.servers-grid__media-stack img{
  width:100%;
  border-radius:14px;
  box-shadow:var(--shadow-lg);
  aspect-ratio:2/3;
  object-fit:cover;
}
.servers-grid__media-stack img:nth-child(1){transform:translateY(20px)}
.servers-grid__media-stack img:nth-child(2){transform:translateY(-20px)}
.servers-grid__media-stack--single{
  max-width:520px;
  margin:0 auto;
  grid-template-columns:1fr;
}
.servers-grid__media-stack--single img{
  aspect-ratio:1/1;
}
.servers-grid__media-stack--single img:nth-child(1){
  transform:none;
}
.servers-grid__media-badge{
  position:absolute;
  bottom:-20px;left:-20px;
  background:#fff;
  border-radius:14px;
  padding:14px 18px;
  box-shadow:var(--shadow-lg);
  display:flex;align-items:center;gap:12px;
  z-index:2;
}
.servers-grid__media-badge .ico{
  width:42px;height:42px;
  border-radius:10px;
  background:var(--purple);
  color:#fff;
  display:flex;align-items:center;justify-content:center;
  font-size:18px;
}
.servers-grid__media-badge .txt b{display:block;color:var(--ink);font-size:15px;font-weight:900}
.servers-grid__media-badge .txt span{display:block;color:var(--ink-muted);font-size:12px;font-weight:500}

.servers-grid__content .eyebrow{margin-bottom:18px}
.servers-grid__content h2{
  font-size:clamp(28px,3.2vw,42px);
  font-weight:900;
  margin:0 0 18px;
  letter-spacing:-.025em;
  line-height:1.1;
}
.servers-grid__content h2 .accent{color:var(--purple)}
.servers-grid__content > p{
  color:var(--ink-soft);
  font-size:16px;
  line-height:1.65;
  margin:0 0 26px;
  font-weight:500;
}
.servers-grid__content > p b{color:var(--ink);font-weight:700}
.checklist{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:14px 24px;
  margin:0 0 30px;
}
.checklist li{
  display:flex;
  align-items:flex-start;
  gap:12px;
  color:var(--ink);
  font-size:14.5px;
  font-weight:600;
  line-height:1.5;
}
.checklist .check{
  flex:0 0 24px;
  width:24px;height:24px;
  border-radius:50%;
  background:var(--purple);
  color:#fff;
  display:inline-flex;align-items:center;justify-content:center;
  font-size:11px;
  font-weight:900;
  margin-top:1px;
}

/* Sports — PURE BLACK slab (replaces blurred-photo dark) */
.section--sports{
  position:relative;
  padding:80px 0;
  color:#fff;
  overflow:hidden;
  background:var(--black);
}
.section--sports .eyebrow{color:var(--pink)}
.section--sports .section-title{color:#fff;font-size:clamp(32px,3.8vw,50px);letter-spacing:-.025em}
.section--sports .section-subtitle{color:rgba(255,255,255,.82)}
.section--sports .section-subtitle b{color:#fff}
.sports-grid{
  display:grid;
  grid-template-columns:1.1fr 1fr;
  gap:60px;
  align-items:center;
  margin-top:40px;
}
.sports-leagues{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin:24px 0 32px;
}
.sports-leagues span{
  background:rgba(255,255,255,.08);
  padding:9px 16px;
  border-radius:var(--pill);
  font-size:13px;
  font-weight:700;
  color:#fff;
  letter-spacing:.02em;
}
.sports-channels{
  display:flex;
  align-items:center;
  gap:18px;
  flex-wrap:wrap;
  margin-top:30px;
  padding:14px 18px;
  background:rgba(255,255,255,.06);
  border-radius:14px;
  width:fit-content;
  max-width:100%;
}
.sports-channels img{
  height:34px;
  width:auto;
  opacity:.95;
  transition:opacity .2s ease;
}
.sports-channels img:hover{opacity:1}
.sports-grid__phone{
  position:relative;
  display:flex;
  justify-content:center;
}
.sports-tv{
  position:relative;
  width:100%;
  max-width:460px;
}
.sports-tv__screen{
  position:relative;
  background:#000;
  border-radius:14px;
  padding:12px;
  border:2px solid #1a1a1a;
  box-shadow:var(--shadow-lg);
  overflow:hidden;
}
.sports-tv__screen > img{
  width:100%;
  border-radius:6px;
  display:block;
  aspect-ratio:16/9;
  object-fit:cover;
}
.sports-tv__live{
  position:absolute;
  top:24px;
  left:24px;
  display:inline-flex;
  align-items:center;
  gap:8px;
  background:var(--ink);
  color:#fff;
  font-weight:800;
  font-size:12px;
  letter-spacing:.06em;
  padding:6px 12px;
  border-radius:var(--pill);
  z-index:2;
}
.sports-tv__live .live-dot{background:var(--pink);box-shadow:0 0 0 3px rgba(239,24,147,.3)}
.sports-tv__score{
  position:absolute;
  bottom:24px;
  left:24px;
  display:flex;
  align-items:center;
  gap:14px;
  background:var(--ink);
  padding:10px 18px;
  border-radius:12px;
  color:#fff;
  font-weight:700;
  font-size:13px;
  z-index:2;
}
.sports-tv__score b{font-size:20px;font-weight:900;color:var(--yellow);margin-left:6px}
.sports-tv__score .vs{color:rgba(255,255,255,.55);font-size:11px;text-transform:uppercase;letter-spacing:.06em;font-weight:700}
.sports-tv__channels{
  display:flex;
  gap:14px;
  justify-content:center;
  margin-top:20px;
  background:rgba(255,255,255,.06);
  border-radius:12px;
  padding:12px 14px;
}
.sports-tv__channels img{
  height:32px;
  width:auto;
  opacity:.92;
}

/* World — SOLID pink slab map (no gradient) */
.section--world{
  background:var(--bg);
  padding:72px 0;
}
.world-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:60px;
  align-items:center;
}
.world-grid__media{position:relative}
.world-grid__map{
  background:var(--pink);
  border-radius:var(--radius-lg);
  padding:40px;
  display:flex;
  flex-wrap:wrap;
  gap:14px;
  justify-content:center;
  align-items:center;
  min-height:380px;
  box-shadow:var(--shadow-lg);
}
.flag-chip{
  background:rgba(255,255,255,.16);
  border-radius:14px;
  padding:14px 18px;
  color:#fff;
  font-size:13.5px;
  font-weight:700;
  display:inline-flex;
  align-items:center;
  gap:8px;
  transition:background .2s ease, transform .2s ease;
}
.flag-chip:hover{
  transform:translateY(-2px);
  background:rgba(255,255,255,.26);
}
.flag-chip .flag{font-size:18px}
.world-grid__content .eyebrow{margin-bottom:18px}
.world-grid__content h2{
  font-size:clamp(28px,3.2vw,42px);
  font-weight:900;
  margin:0 0 18px;
  letter-spacing:-.025em;
  line-height:1.1;
}
.world-grid__content h2 .accent{color:var(--purple)}
.world-grid__content > p{
  color:var(--ink-soft);
  font-size:16px;
  line-height:1.65;
  margin:0 0 26px;
  font-weight:500;
}
.world-grid__content > p b{color:var(--ink);font-weight:700}

/* ============================================================
   22. RESPONSIVE
   ============================================================ */
@media (max-width: 1024px){
  .features-grid,
  .exclusive-grid,
  .trust-row,
  .reviews-grid,
  .install-steps,
  .tech-compat{grid-template-columns:repeat(2,1fr)}
  .pricing-grid{grid-template-columns:1fr;max-width:480px}
  .vod-grid{grid-template-columns:repeat(4,1fr)}
  .devices-grid{grid-template-columns:repeat(4,1fr)}
  .connections{grid-template-columns:1fr}
  .footer-grid{grid-template-columns:1fr 1fr}
  .tutorials-cards{grid-template-columns:1fr}
  .servers-grid,
  .world-grid,
  .sports-grid{grid-template-columns:1fr;gap:40px}
}
@media (max-width: 768px){
  .section{padding:64px 0}
  .section--exclusive,
  .section--sports,
  .final-cta,
  .community-band,
  .features-strip,
  .section--vod,
  .section--pricing,
  .section--tutorials,
  .section--reviews,
  .section--devices,
  .section--faq,
  .section--servers,
  .section--world{padding:64px 0}
  .site-nav{display:none}
  .menu-toggle{display:inline-flex}
  .hero{padding:48px 0 0}
  .hero__title{font-size:36px}
  .poster-row{
    flex-wrap:wrap;
    justify-content:center;
    padding:0 16px;
    min-height:auto;
  }
  .poster{width:120px !important;margin:0 !important}
  .poster--l1,.poster--l2,.poster--r1,.poster--r2{display:none}
  .tv-wrap{width:100%;max-width:520px;order:0}
  .badge--channels{transform:translateX(-180px) scale(.8)}
  .badge--multi{transform:translateX(120px) scale(.8)}
  .badge--4k{transform:translateX(120px) scale(.8)}
  .badge--live{transform:translateX(-150px) scale(.85)}
  .hero-stats,
  .features-grid,
  .exclusive-grid,
  .trust-row,
  .reviews-grid,
  .install-steps,
  .tech-compat,
  .stats-grid,
  .community-stats{grid-template-columns:repeat(2,1fr)}
  .vod-grid{grid-template-columns:repeat(3,1fr)}
  .devices-grid{grid-template-columns:repeat(3,1fr)}
  .footer-grid{grid-template-columns:1fr;gap:30px}
  .footer-bottom__inner{flex-direction:column;text-align:center}
  .stat-item{border-right:0;border-bottom:1px solid rgba(255,255,255,.18)}
  .stat-item:last-child{border-bottom:0}
  .vs-head,.vs-row{grid-template-columns:1.6fr 1fr 1fr}
  .vs-cell{padding:14px 12px;font-size:13px}
}
@media (max-width: 480px){
  .hero__title{font-size:32px}
  .features-grid,
  .exclusive-grid,
  .reviews-grid,
  .stats-grid,
  .community-stats,
  .trust-row{grid-template-columns:1fr}
  .vod-grid{grid-template-columns:repeat(2,1fr)}
  .devices-grid{grid-template-columns:repeat(2,1fr)}
  .install-steps,
  .tech-compat,
  .checklist{grid-template-columns:1fr}
  .container{padding:0 16px}
  .btn{padding:15px 26px;font-size:14.5px}
  .servers-grid__media-stack img{aspect-ratio:auto;height:240px}
  .world-grid__map{padding:24px;min-height:300px}
}

/* ============================================================
   25. SECTIONS ADDED FOR SEO-FOCUSED LAYOUT
   ============================================================ */

/* "Comment fonctionne" — alt bg to break from features-strip below */
.section--how{
  background:var(--bg);
  padding:64px 0 40px;
}

/* "3 Étapes simples" */
.section--steps{
  background:var(--bg);
  padding:72px 0;
}

/* "Tout en un" — uses .servers-grid layout */
.section--allinone{
  background:var(--bg);
  padding:72px 0;
}

/* 3 promesses — solid purple slab à la iptvfiesta */
.section--promises{
  background:var(--purple);
  padding:48px 0;
}
.promises-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:30px;
  align-items:start;
}
.promise-card{
  display:grid;
  grid-template-columns:48px 1fr;
  column-gap:18px;
  row-gap:6px;
  align-items:start;
  color:#fff;
}
.promise-card__ico{
  grid-row:1 / span 2;
  width:48px;height:48px;
  border-radius:12px;
  background:rgba(255,255,255,.14);
  color:#fff;
  display:flex;align-items:center;justify-content:center;
  font-size:20px;
}
.promise-card h3{
  grid-column:2;
  align-self:center;
  color:#fff;
  font-size:18px;
  font-weight:900;
  margin:0;
  letter-spacing:-.01em;
}
.promise-card p{
  grid-column:2;
  color:rgba(255,255,255,.88);
  font-size:14.5px;
  line-height:1.55;
  margin:0;
  font-weight:500;
}

/* "Informations générales" — long-form SEO */
.section--info{
  background:var(--bg);
  padding:72px 0;
}
.info-wrap{
  max-width:860px;
  margin:0 auto;
}
.info-wrap .section-title{margin-bottom:48px}
.info-block{
  background:#fff;
  border-radius:var(--radius);
  padding:32px 34px;
  margin-bottom:18px;
  box-shadow:var(--shadow);
}
.info-block h3{
  font-size:20px;
  font-weight:900;
  letter-spacing:-.015em;
  color:var(--ink);
  margin:0 0 14px;
}
.info-block p{
  color:var(--ink-soft);
  font-size:15px;
  line-height:1.7;
  margin:0 0 12px;
  font-weight:500;
}
.info-block p:last-child{margin-bottom:0}
.info-block p b{color:var(--ink);font-weight:700}
.info-list{
  margin:0 0 12px;
  padding:0;
  list-style:none;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:8px 24px;
}
.info-list li{
  position:relative;
  padding-left:20px;
  color:var(--ink-soft);
  font-size:14.5px;
  line-height:1.5;
  font-weight:500;
}
.info-list li:before{
  content:"";
  position:absolute;
  left:0;top:8px;
  width:8px;height:8px;
  border-radius:50%;
  background:var(--purple);
}

@media (max-width:768px){
  .promises-grid{grid-template-columns:1fr;gap:22px}
  .info-block{padding:26px 22px}
  .info-list{grid-template-columns:1fr}
  .section--how,
  .section--steps,
  .section--allinone,
  .section--info{padding:64px 0}
}

/* ============================================================
   27. CHANNELS-LIST PAGE
   ============================================================ */

/* Stat chips row inside page hero */
.stat-chips{
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  gap:10px;
  margin:6px auto 28px;
}
.stat-chip{
  background:rgba(255,255,255,.14);
  color:#fff;
  padding:9px 18px;
  border-radius:var(--pill);
  font-size:14px;
  font-weight:600;
  letter-spacing:.01em;
}
.stat-chip b{color:#fff;font-weight:900;margin-right:4px;font-size:15px}

/* "Pink" accent for category headings on dark/lavender bg */
.accent-pink{color:var(--pink)}

/* SHOWCASE — two visual cards */
.section--showcase{background:var(--bg);padding:56px 0 32px}
.showcase-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:30px;
  margin-top:30px;
}
.showcase-card{
  background:#fff;
  border-radius:var(--radius-lg);
  overflow:hidden;
  box-shadow:var(--shadow);
  transition:transform .25s ease, box-shadow .25s ease;
}
.showcase-card:hover{transform:translateY(-4px);box-shadow:var(--shadow-lg)}
.showcase-card__media{
  position:relative;
  aspect-ratio:16/10;
  overflow:hidden;
  background:#000;
}
.showcase-card__media img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}
.showcase-card__tag{
  position:absolute;
  top:16px;
  left:16px;
  background:var(--purple);
  color:#fff;
  padding:7px 14px;
  border-radius:var(--pill);
  font-size:12.5px;
  font-weight:800;
  letter-spacing:.04em;
  text-transform:uppercase;
  box-shadow:var(--shadow);
}
.showcase-card__tag--pink{background:var(--pink)}
.showcase-card__body{padding:24px 26px 28px}
.showcase-card__body h3{
  font-size:20px;
  font-weight:900;
  margin:0 0 10px;
  letter-spacing:-.01em;
  color:var(--ink);
}
.showcase-card__body p{
  color:var(--ink-soft);
  font-size:14.5px;
  line-height:1.6;
  margin:0;
  font-weight:500;
}

/* Q&A section */
.section--qa{background:var(--bg);padding:32px 0 56px}

/* CHANNEL CATEGORY MEGA BLOCKS */
.channels-cat{
  background:var(--bg);
  padding:72px 0;
}
.channels-cat--alt{background:var(--bg-soft)}

.channels-cat__head{
  display:flex;
  justify-content:space-between;
  align-items:flex-start;
  gap:24px;
  margin-bottom:40px;
  padding-bottom:28px;
  border-bottom:1px solid var(--line);
}
.channels-cat__head-left{
  display:flex;
  align-items:flex-start;
  gap:20px;
  flex:1;
}
.channels-cat__ico{
  flex:0 0 64px;
  width:64px;height:64px;
  border-radius:16px;
  background:var(--purple);
  color:#fff;
  display:flex;align-items:center;justify-content:center;
  font-size:26px;
  box-shadow:var(--shadow);
}
.channels-cat__ico--pink{background:var(--pink)}
.channels-cat__head .eyebrow{margin-bottom:8px}
.channels-cat__head h2{
  font-size:clamp(24px,2.6vw,32px);
  margin:0 0 8px;
  letter-spacing:-.02em;
  line-height:1.15;
  font-weight:900;
}
.channels-cat__head h2 .accent{color:var(--purple)}
.channels-cat__head p{
  margin:0;
  color:var(--ink-soft);
  font-size:15.5px;
  font-weight:500;
  line-height:1.55;
}
.channels-cat__head p b{color:var(--ink);font-weight:700}
.channels-cat__head-right{
  display:flex;
  flex-direction:column;
  align-items:flex-end;
  gap:10px;
  flex:0 0 auto;
}
.channels-cat__count{
  background:var(--purple);
  color:#fff;
  padding:10px 18px;
  border-radius:var(--pill);
  font-weight:800;
  font-size:14px;
  letter-spacing:.02em;
  white-space:nowrap;
  box-shadow:var(--shadow);
}
.channels-cat__count--pink{background:var(--pink)}
.channels-cat__quality{
  background:var(--bg-soft);
  color:var(--ink);
  padding:6px 14px;
  border-radius:var(--pill);
  font-weight:700;
  font-size:12.5px;
  letter-spacing:.06em;
  text-transform:uppercase;
}
.channels-cat--alt .channels-cat__quality{background:#fff}

/* Sub-block grid (4 cards by default) */
.channels-cat__grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:22px;
}
.channels-cat__grid--3{grid-template-columns:repeat(3,1fr)}
.channels-sub{
  background:#fff;
  border-radius:var(--radius);
  padding:26px 26px 24px;
  box-shadow:var(--shadow);
  transition:transform .2s ease, box-shadow .2s ease;
}
.channels-cat--alt .channels-sub{background:#fff}
.channels-sub:hover{transform:translateY(-3px);box-shadow:var(--shadow-lg)}
.channels-sub h3{
  display:flex;
  align-items:center;
  gap:10px;
  font-size:17px;
  font-weight:900;
  margin:0 0 10px;
  color:var(--ink);
  letter-spacing:-.01em;
}
.channels-sub h3 i{
  color:var(--purple);
  font-size:16px;
  flex:0 0 22px;
}
.channels-cat--alt .channels-sub h3 i{color:var(--pink)}
.channels-sub > p{
  color:var(--ink-soft);
  font-size:14.5px;
  line-height:1.6;
  margin:0 0 14px;
  font-weight:500;
}
.channels-sub__list{
  list-style:none;
  margin:0 0 16px;
  padding:0;
  display:flex;
  flex-direction:column;
  gap:8px;
}
.channels-sub__list li{
  position:relative;
  padding-left:18px;
  color:var(--ink-soft);
  font-size:13.8px;
  line-height:1.55;
  font-weight:500;
}
.channels-sub__list li:before{
  content:"";
  position:absolute;
  left:0;top:7px;
  width:6px;height:6px;
  border-radius:50%;
  background:var(--purple);
}
.channels-cat--alt .channels-sub__list li:before{background:var(--pink)}
.channels-sub__list li b{color:var(--ink);font-weight:700}
.channels-sub__tags{
  display:flex;
  flex-wrap:wrap;
  gap:6px;
}
.channels-sub__tags span{
  background:var(--bg-soft);
  color:var(--purple);
  padding:5px 11px;
  border-radius:var(--pill);
  font-size:11.5px;
  font-weight:700;
  letter-spacing:.03em;
}
.channels-cat--alt .channels-sub__tags span{
  background:var(--bg);
  color:var(--pink);
}

/* Category footer CTA */
.channels-cat__cta{
  margin-top:32px;
  text-align:center;
  padding:28px 24px;
  background:#fff;
  border-radius:var(--radius-lg);
  box-shadow:var(--shadow);
}
.channels-cat--alt .channels-cat__cta{background:var(--bg)}
.channels-cat__cta p{
  font-size:17px;
  font-weight:800;
  color:var(--ink);
  margin:0 0 18px;
  letter-spacing:-.01em;
}
.channels-cat__cta > div{
  display:flex;
  justify-content:center;
  gap:14px;
  flex-wrap:wrap;
}
.channels-cat--alt .channels-cat__cta .btn--ghost{
  background:#fff;
}

@media (max-width:1024px){
  .channels-cat__grid,
  .channels-cat__grid--3{grid-template-columns:1fr 1fr}
  .showcase-grid{grid-template-columns:1fr 1fr}
}
@media (max-width:768px){
  .channels-cat{padding:48px 0}
  .channels-cat__head{flex-direction:column;align-items:flex-start}
  .channels-cat__head-left{flex-direction:column;align-items:flex-start;gap:14px}
  .channels-cat__head-right{flex-direction:row;align-items:center;flex-wrap:wrap}
  .channels-cat__grid,
  .channels-cat__grid--3,
  .showcase-grid{grid-template-columns:1fr}
  .section--showcase,
  .section--qa{padding:48px 0}
  .stat-chips{gap:8px}
  .stat-chip{padding:7px 14px;font-size:13px}
}

/* ============================================================
   28. CONTACT PAGE
   ============================================================ */
.section--contact{background:var(--bg);padding:72px 0}
.contact-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:24px;
  margin-top:30px;
  max-width:920px;
  margin-left:auto;
  margin-right:auto;
}
.contact-card{
  position:relative;
  display:block;
  background:#fff;
  border-radius:var(--radius-lg);
  padding:34px 30px 30px;
  box-shadow:var(--shadow);
  color:var(--ink);
  transition:transform .25s ease, box-shadow .25s ease;
}
.contact-card:hover{
  transform:translateY(-6px);
  box-shadow:var(--shadow-lg);
  color:var(--ink);
}
.contact-card__ico{
  width:60px;height:60px;
  border-radius:16px;
  display:flex;align-items:center;justify-content:center;
  color:#fff;
  font-size:28px;
  margin-bottom:18px;
  background:var(--purple);
}
.contact-card--wa .contact-card__ico{background:#25D366}
.contact-card--mail .contact-card__ico{background:var(--purple)}
.contact-card--tg .contact-card__ico{background:#229ED9}
.contact-card__badge{
  position:absolute;
  top:22px;right:22px;
  background:var(--bg-soft);
  color:var(--purple);
  font-size:11px;
  font-weight:800;
  letter-spacing:.06em;
  text-transform:uppercase;
  padding:5px 11px;
  border-radius:var(--pill);
}
.contact-card--wa .contact-card__badge{
  background:#E7F9EE;
  color:#15803d;
}
.contact-card h3{
  font-size:20px;
  font-weight:900;
  margin:0 0 10px;
  letter-spacing:-.015em;
}
.contact-card > p{
  color:var(--ink-soft);
  font-size:14.5px;
  line-height:1.6;
  margin:0 0 16px;
  font-weight:500;
}
.contact-card__features{
  list-style:none;
  padding:0;
  margin:0 0 22px;
  display:flex;
  flex-direction:column;
  gap:7px;
}
.contact-card__features li{
  position:relative;
  padding-left:20px;
  font-size:13.5px;
  color:var(--ink-soft);
  font-weight:600;
}
.contact-card__features li:before{
  content:"";
  position:absolute;
  left:0;top:7px;
  width:6px;height:6px;
  border-radius:50%;
  background:var(--purple);
}
.contact-card--wa .contact-card__features li:before{background:#25D366}
.contact-card--tg .contact-card__features li:before{background:#229ED9}
.contact-card__cta{
  display:inline-flex;
  align-items:center;
  gap:8px;
  color:var(--purple);
  font-weight:800;
  font-size:14.5px;
  letter-spacing:.005em;
}
.contact-card--wa .contact-card__cta{color:#1FAA50}
.contact-card--tg .contact-card__cta{color:#229ED9}

/* Support details — info mini cards next to a checklist */
.section--support-info{background:var(--bg-soft);padding:72px 0}
.contact-info-cards{
  display:grid;
  grid-template-columns:1fr;
  gap:14px;
}
.info-mini-card{
  display:flex;
  align-items:flex-start;
  gap:16px;
  background:#fff;
  border-radius:var(--radius);
  padding:20px 22px;
  box-shadow:var(--shadow);
}
.info-mini-card__ico{
  flex:0 0 46px;
  width:46px;height:46px;
  border-radius:12px;
  background:var(--purple);
  color:#fff;
  display:flex;align-items:center;justify-content:center;
  font-size:20px;
}
.info-mini-card__ico--pink{background:var(--pink)}
.info-mini-card h4{
  font-size:16px;
  font-weight:900;
  margin:0 0 4px;
  letter-spacing:-.01em;
}
.info-mini-card p{
  margin:0;
  color:var(--ink-soft);
  font-size:13.8px;
  line-height:1.55;
  font-weight:500;
}
.info-mini-card p b{color:var(--ink);font-weight:700}

/* Quick-answers section uses .features-grid + .feature-card--link variant */
.section--quick-answers{background:var(--bg);padding:72px 0}
.feature-card--link{
  display:block;
  color:var(--ink);
  cursor:pointer;
}
.feature-card--link:hover{color:var(--ink)}
.feature-card__cta{
  display:inline-flex;
  align-items:center;
  gap:6px;
  color:var(--purple);
  font-weight:800;
  font-size:14px;
  margin-top:6px;
}

@media (max-width:1024px){
  .contact-grid{grid-template-columns:1fr 1fr}
}
@media (max-width:768px){
  .contact-grid,
  .section--quick-answers .features-grid{grid-template-columns:1fr !important}
  .section--contact,
  .section--support-info,
  .section--quick-answers{padding:48px 0}
  .contact-card{padding:26px 22px 22px}
  .contact-card__badge{position:static;display:inline-block;margin-bottom:14px}
}

/* ============================================================
   24. UTILITIES
   ============================================================ */
.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border:0}
.fake-sales-pop-up{display:none}

/* Inline French flag — replaces 🇫🇷 emoji that fails on Windows */
.flag-fr{
  display:inline-block;
  width:16px;
  height:11px;
  vertical-align:-2px;
  border-radius:2px;
  box-shadow:0 0 0 1px rgba(0,0,0,.08);
  overflow:hidden;
}

/* ============================================================
   29. RESPONSIVE — UNIFIED REFINEMENTS
   Final layer: handles every page across mobile / tablet / desktop.
   Goals:
   - Zero horizontal overflow at any viewport from 320px → 1920px
   - Touch-friendly tap targets (44px+) on mobile
   - Hardware-aware spacing & typography
   - Replaces inline-style grid overrides with proper responsive classes
   ============================================================ */

/* --- Variant grids that still flex on small screens --- */
/* 3-col stays 3 across desktop+tablet, collapses straight to 1 on phones
   (avoids the awkward "two in row + one orphan" layout). */
.features-grid--3{grid-template-columns:repeat(3,1fr)}
.install-steps--3{grid-template-columns:repeat(3,1fr)}

@media (max-width:720px){
  .features-grid--3{grid-template-columns:1fr}
  .install-steps--3{grid-template-columns:1fr}
}

/* --- Header polish on small screens --- */
@media (max-width:768px){
  .site-header__inner{padding:14px 0;gap:10px}
  .site-logo img{height:36px}
  .site-header__cta{gap:10px}
  .site-header__cta .btn--pink{padding:11px 16px;font-size:13px}
  .menu-toggle{width:40px;height:40px}
}
@media (max-width:420px){
  /* Tiny phones (320–420): keep header from cramming */
  .site-header__inner{gap:8px}
  .site-logo img{height:32px}
  .site-header__cta .btn--pink{padding:10px 14px;font-size:12.5px;letter-spacing:0}
}
@media (max-width:360px){
  /* iPhone SE territory: collapse pink CTA label into icon */
  .site-header__cta .btn--pink span.btn-label{display:none}
}

/* --- Hero — scale badges as the device shrinks --- */
@media (max-width:1100px){
  .hero-device{width:min(560px,76%)}
  .hero-badge--channels{width:170px;left:-22%;top:-2%}
  .hero-badge--4k{width:80px;right:-10%}
  .hero-badge--live{width:82px;left:-12%}
  .hero-badge--multi{width:160px;right:-18%}
}
@media (max-width:900px){
  .hero{padding:48px 0 0}
  .hero__showcase{margin-top:32px;padding-bottom:32px}
  .hero-device{width:min(500px,84%)}
  .hero-badge--channels{width:150px;left:-6%;top:-3%}
  .hero-badge--4k{width:74px;right:-4%;top:-6%}
  .hero-badge--live{width:74px;left:-4%;top:46%}
  .hero-badge--multi{width:140px;right:-6%;top:48%}
}
@media (max-width:768px){
  .hero__title{font-size:clamp(28px,7vw,40px)}
  .hero__subtitle{font-size:15px;padding:0 4px}
  .hero-checks{gap:10px 18px;font-size:13px}
  .hero-checks li{font-size:13px}
  .hero-device{width:min(440px,92%)}
  .hero-device__halo{inset:auto 4% 4% 4%;filter:blur(18px)}
  .hero-badge--channels{width:130px;left:-2%;top:-2%}
  .hero-badge--4k{width:66px;right:-2%;top:-5%}
  .hero-badge--live{width:66px;left:-2%;top:auto;bottom:14%}
  .hero-badge--multi{width:125px;right:-2%;top:auto;bottom:10%}
}
@media (max-width:480px){
  /* On phones keep only the two most informative badges */
  .hero-device{width:96%}
  .hero-badge--live,
  .hero-badge--multi{display:none}
  .hero-badge--channels{width:108px;left:-2%;top:-3%}
  .hero-badge--4k{width:54px;right:-2%;top:-6%}
  .hero__showcase{padding-bottom:24px}
  .hero-device__img{filter:drop-shadow(0 14px 22px rgba(15,10,31,.16))}
}

/* --- Hero stats band: 2 cols then 1 col --- */
@media (max-width:768px){
  .hero-stats{grid-template-columns:repeat(2,1fr);gap:12px;max-width:520px}
  .hero-stat{padding:14px 10px}
  .hero-stat b{font-size:19px}
  .hero-stat span{font-size:11px}
  .hero__band{padding:36px 0;margin-top:-24px}
}
@media (max-width:380px){
  .hero-stats{grid-template-columns:1fr 1fr;gap:10px}
}

/* --- Section padding tightens on mobile --- */
@media (max-width:768px){
  .section,
  .features-strip,
  .section--vod,
  .section--pricing,
  .section--tutorials,
  .section--reviews,
  .section--devices,
  .section--faq,
  .section--servers,
  .section--world,
  .section--exclusive,
  .section--sports,
  .final-cta,
  .community-band,
  .stats-band,
  .section--how,
  .section--steps,
  .section--allinone,
  .section--info,
  .section--showcase,
  .section--qa,
  .channels-cat,
  .section--contact,
  .section--support-info,
  .section--quick-answers,
  .device-block,
  .faq-categories{padding:48px 0}
  .section-title,
  .servers-grid__content h2,
  .world-grid__content h2,
  .channels-cat__head h2{font-size:clamp(26px,6.5vw,34px)}
  .section-subtitle{font-size:15px}
  .container{padding:0 18px}
}
@media (max-width:480px){
  .container{padding:0 16px}
  .section,
  .features-strip,
  .section--vod,
  .section--pricing,
  .section--tutorials,
  .section--reviews,
  .section--devices,
  .section--faq,
  .section--servers,
  .section--world,
  .section--exclusive,
  .section--sports,
  .final-cta,
  .community-band,
  .stats-band,
  .section--how,
  .section--steps,
  .section--allinone,
  .section--info,
  .channels-cat{padding:40px 0}
}

/* --- VOD posters: scale better on phones --- */
@media (max-width:480px){
  .vod-grid{grid-template-columns:repeat(2,1fr);gap:12px}
  .devices-grid{grid-template-columns:repeat(2,1fr);gap:12px}
}
@media (max-width:360px){
  .vod-grid,
  .devices-grid{grid-template-columns:repeat(2,1fr);gap:10px}
}

/* --- Pricing: keep popular card from clipping on mobile --- */
@media (max-width:1024px){
  .pricing-grid{max-width:520px;gap:28px}
  .price-card--popular{
    transform:none;
    margin-top:18px;
    margin-bottom:6px;
  }
  .price-card--popular:hover{transform:translateY(-4px)}
}
@media (max-width:480px){
  .price-card{padding:28px 22px 24px}
  .price-card__price .num{font-size:54px}
  .price-card__features li{font-size:14px}
}

/* --- Trust row: 2 cols on tablet, 1 col on very small phones --- */
@media (max-width:480px){
  .trust-row{grid-template-columns:repeat(2,1fr);gap:12px}
  .trust-item{padding:20px 14px}
  .trust-item .ico{font-size:24px}
  .trust-item b{font-size:13.5px}
  .trust-item span{font-size:12px}
}
@media (max-width:360px){
  .trust-row{grid-template-columns:1fr}
}

/* --- Servers/Sports/World stacked layouts --- */
@media (max-width:1024px){
  .servers-grid,
  .world-grid,
  .sports-grid{gap:32px}
  .servers-grid__media-stack img{aspect-ratio:3/4}
}
@media (max-width:768px){
  .checklist{grid-template-columns:1fr;gap:10px}
  .servers-grid__media-badge{
    left:auto;right:0;bottom:-16px;
    padding:12px 14px;
  }
  .servers-grid__media-badge .ico{width:36px;height:36px;font-size:16px}
  .servers-grid__media-stack img:nth-child(1),
  .servers-grid__media-stack img:nth-child(2){transform:none}
  .servers-grid__media-stack{gap:12px}
  .sports-channels img{height:26px}
  .sports-tv__live{top:14px;left:14px;font-size:11px;padding:5px 10px}
  .sports-tv__score{bottom:14px;left:14px;font-size:12px;padding:8px 12px}
  .sports-tv__score b{font-size:16px}
  .world-grid__map{padding:30px 22px;min-height:auto}
  .flag-chip{padding:10px 14px;font-size:12.5px}
}
@media (max-width:480px){
  .servers-grid__media-badge{
    position:relative;
    inset:auto;
    margin:14px auto 0;
    width:fit-content;
  }
  .servers-grid__media-stack{grid-template-columns:1fr 1fr;gap:10px}
  .servers-grid__media-stack img{height:auto;aspect-ratio:3/4}
}

/* --- Tutorials / Steps cards on mobile --- */
@media (max-width:480px){
  .tutorials-cards{gap:18px}
  .tutorial-card__body{padding:20px}
  .tutorial-card h3{font-size:17px}
  .step-card{padding:24px 20px}
  .step-card__num{width:40px;height:40px;font-size:16px;border-radius:12px}
}

/* --- Reviews: 1 col on phones for readability --- */
@media (max-width:600px){
  .reviews-grid{grid-template-columns:1fr;gap:16px}
  .review-card{padding:22px 20px}
}

/* --- FAQ accordion comfort --- */
@media (max-width:768px){
  .faq-item__q{padding:18px 20px;font-size:15px;gap:10px}
  .faq-item__plus{width:34px;height:34px;flex:0 0 34px;font-size:22px}
  .faq-item__a{padding:0 20px}
  .faq-item.is-open .faq-item__a{padding:0 20px 18px}
}

/* --- Exclusive (dark) section + VS table --- */
@media (max-width:768px){
  .exclusive-card{padding:24px 20px}
  .exclusive-card__ico{width:46px;height:46px;font-size:18px;border-radius:12px}
  .exclusive-card h3{font-size:17px}
  .vs-cell{padding:14px 12px;font-size:13px}
  .vs-yes{font-size:16px}
}
@media (max-width:480px){
  .vs-head,.vs-row{grid-template-columns:1.4fr .8fr .8fr}
  .vs-cell{padding:12px 10px;font-size:12.5px}
  .vs-label{font-size:13px}
  .vs-yes-head,.vs-no-head{font-size:12px}
}

/* --- Promises slab --- */
@media (max-width:768px){
  .section--promises{padding:36px 0}
  .promise-card{grid-template-columns:42px 1fr;column-gap:14px}
  .promise-card__ico{width:42px;height:42px;font-size:18px}
  .promise-card h3{font-size:17px}
  .promise-card p{font-size:14px}
}

/* --- Final CTA + Community band --- */
@media (max-width:768px){
  .final-cta h2,
  .community-band h2{font-size:clamp(26px,6vw,36px)}
  .final-cta p{font-size:15.5px}
  .final-cta__perks{gap:10px 20px}
  .final-cta__perks span{font-size:13px}
}

/* --- Footer reflow on mobile --- */
@media (max-width:768px){
  .footer-top{padding:48px 0 28px}
  .footer-grid{gap:32px}
  .footer-brand p{font-size:13.5px}
  .footer-col h4{font-size:13px}
  .footer-col a{font-size:13.5px}
  .footer-bottom__legal{justify-content:center;flex-wrap:wrap}
}

/* --- WhatsApp sticky stays comfy on small phones --- */
@media (max-width:480px){
  .whatsapp-sticky{
    right:16px;bottom:16px;
    width:52px;height:52px;
    font-size:24px;
  }
}

/* --- Page hero (inner pages) on mobile --- */
@media (max-width:768px){
  .page-hero,
  .page-hero--guide{padding:54px 0 44px}
  .page-hero h1,
  .page-hero--guide h1{font-size:clamp(26px,6.8vw,36px)}
  .page-hero--guide .page-hero__cta .btn{width:100%;max-width:320px;min-width:0}
  .page-hero__sub{font-size:15px}
  .page-hero__cta{gap:10px}
  .page-hero__cta .btn{padding:14px 22px;font-size:14px}
  .not-found-page{padding:48px 0}
  .not-found-card{padding:34px 22px}
  .not-found-links{grid-template-columns:1fr}
  .not-found-actions .btn{width:100%;max-width:320px}
  .faq-hero-stats{gap:12px 22px}
  .faq-hero-stats b{font-size:16px}
}

/* --- Channel category mega-blocks polish --- */
@media (max-width:480px){
  .channels-cat__ico{width:52px;height:52px;font-size:22px;flex:0 0 52px;border-radius:12px}
  .channels-cat__head h2{font-size:22px}
  .channels-cat__head p{font-size:14px}
  .channels-cat__count{padding:8px 14px;font-size:13px}
  .channels-sub{padding:22px 20px}
  .channels-sub h3{font-size:16px}
  .channels-cat__cta{padding:22px 18px}
  .channels-cat__cta p{font-size:15.5px}
  .channels-cat__cta > div{flex-direction:column}
  .channels-cat__cta .btn{width:100%}
}

/* --- Contact page --- */
@media (max-width:480px){
  .contact-card{padding:24px 20px 22px}
  .contact-card__ico{width:54px;height:54px;font-size:24px}
  .contact-card h3{font-size:18px}
  .info-mini-card{padding:18px 18px;gap:14px}
  .info-mini-card__ico{flex:0 0 40px;width:40px;height:40px;font-size:18px}
}

/* --- Stat chips wrap nicely under page hero --- */
@media (max-width:480px){
  .stat-chips{gap:6px}
  .stat-chip{padding:6px 12px;font-size:12.5px}
  .stat-chip b{font-size:13px}
}

/* --- Showcase cards stack on phones --- */
@media (max-width:600px){
  .showcase-card__body{padding:20px 22px 22px}
  .showcase-card__body h3{font-size:18px}
}

/* --- Buttons: full-width on very small phones for cleaner CTA --- */
@media (max-width:420px){
  .hero .btn--lg,
  .final-cta .btn--lg,
  .page-hero__cta .btn--primary{width:100%;max-width:320px}
  .btn{padding:14px 22px;font-size:14.5px}
  .btn--lg{padding:16px 24px;font-size:15px}
}

/* --- Typography micro-fixes --- */
@media (max-width:480px){
  body{font-size:15.5px;line-height:1.55}
  h1{letter-spacing:-.02em}
  .eyebrow{font-size:11px;letter-spacing:.12em}
}

/* --- Tap target accessibility on mobile --- */
@media (hover:none) and (pointer:coarse){
  .site-nav a,
  .footer-col a,
  .mobile-drawer a,
  .faq-item__q,
  .device-chip,
  .btn{min-height:44px}
  .faq-item__plus{min-height:0}
}

/* --- Larger desktops: keep content nicely framed --- */
@media (min-width:1400px){
  :root{--container:1240px}
}
@media (min-width:1700px){
  :root{--container:1320px}
}

/* --- Hard guard against any rogue overflow --- */
html,body{max-width:100%}
img,svg,video,iframe{max-width:100%;height:auto}

/* ============================================================
   CHECKOUT PAGE
   ============================================================ */
.checkout-hero .stat-chip{background:rgba(255,255,255,.14);color:#fff}
.section--checkout{background:var(--bg);padding:54px 0 72px}
.checkout-heading .section-subtitle{margin-bottom:24px}
.checkout-title{
  margin-bottom:26px;
}
.checkout-title h1{
  font-size:clamp(30px,3vw,42px);
  margin:0 0 12px;
  letter-spacing:-.025em;
}
.checkout-title p{
  max-width:620px;
  color:var(--ink-soft);
  font-size:16px;
  font-weight:600;
  line-height:1.6;
  margin:0;
}
.checkout-layout{
  display:grid;
  grid-template-columns:minmax(0,1fr) 360px;
  gap:28px;
  align-items:start;
}
.checkout-main,
.checkout-summary,
.checkout-notice{
  background:#fff;
  border-radius:var(--radius-lg);
  box-shadow:var(--shadow);
}
.checkout-main{padding:34px}
.checkout-summary{position:sticky;top:104px;padding:30px}
.checkout-summary__label,
.checkout-plan__period{
  display:inline-block;
  padding:5px 12px;
  border-radius:var(--pill);
  background:var(--bg-soft);
  color:var(--purple);
  font-size:11px;
  font-weight:800;
  letter-spacing:.08em;
  text-transform:uppercase;
}
.checkout-summary h3{font-size:24px;margin:16px 0 8px}
.checkout-summary p{color:var(--ink-muted);font-weight:500;margin-bottom:18px}
.checkout-summary__price{display:flex;align-items:baseline;gap:5px;margin-bottom:16px}
.checkout-summary__price span{font-size:24px;font-weight:900}
.checkout-summary__price b{font-size:58px;line-height:1;font-weight:900;letter-spacing:-.03em}
.checkout-summary__price small{color:var(--ink-muted);font-size:14px;font-weight:700}
.checkout-plan-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:14px;
  margin-bottom:28px;
}
.checkout-plan{
  position:relative;
  display:flex;
  flex-direction:column;
  gap:8px;
  min-height:148px;
  padding:18px;
  border:2px solid var(--line);
  border-radius:18px;
  background:#fff;
  color:var(--ink);
  transition:border-color .18s ease, transform .18s ease, box-shadow .18s ease;
}
.checkout-plan:hover{color:var(--ink);border-color:var(--purple);transform:translateY(-2px);box-shadow:var(--shadow)}
.checkout-plan.is-active{border-color:var(--purple);box-shadow:var(--shadow)}
.checkout-plan__badge{
  position:absolute;
  top:12px;
  right:12px;
  color:#fff;
  background:var(--pink);
  border-radius:var(--pill);
  padding:4px 9px;
  font-size:10px;
  font-weight:800;
  text-transform:uppercase;
}
.checkout-plan strong{
  font-size:17px;
  font-weight:900;
  line-height:1.2;
  padding-right:54px;
}
.checkout-plan__price{margin-top:auto;color:var(--ink-muted);font-size:13px;font-weight:700}
.checkout-plan__price b{color:var(--ink);font-size:28px;font-weight:900}
.checkout-form{display:flex;flex-direction:column;gap:22px}
.checkout-form__row{display:grid;grid-template-columns:repeat(2,1fr);gap:16px}
.checkout-form label{
  display:flex;
  flex-direction:column;
  gap:8px;
  color:var(--ink);
  font-size:14px;
  font-weight:800;
}
.checkout-field--email{
  display:block!important;
  color:#665f78;
  font-size:18px;
  letter-spacing:-.01em;
}
.checkout-field--email input{
  display:block;
  margin-top:10px;
}
.checkout-form label span{color:var(--pink)}
.checkout-form label small{color:var(--ink-muted);font-size:12px;font-weight:700}
.checkout-form input,
.checkout-form select,
.checkout-form textarea{
  width:100%;
  border:1px solid var(--line);
  border-radius:14px;
  background:#F8F4FF;
  color:var(--ink);
  font:inherit;
  font-weight:600;
  padding:18px 18px;
  outline:0;
  transition:border-color .18s ease, box-shadow .18s ease;
}
.checkout-form textarea{resize:vertical;min-height:118px}
.checkout-form input:focus,
.checkout-form select:focus,
.checkout-form textarea:focus{border-color:var(--purple);box-shadow:0 0 0 3px rgba(81,27,201,.12)}
.checkout-form__row--secondary{margin-top:-4px}
.checkout-payment{
  display:flex;
  flex-direction:column;
  gap:10px;
}
.checkout-payment p{
  margin:0;
  color:#665f78;
  font-size:17px;
  font-weight:900;
  letter-spacing:-.01em;
}
.checkout-payment__option{
  display:flex!important;
  flex-direction:row!important;
  align-items:center;
  gap:14px!important;
  min-height:70px;
  padding:14px;
  border:2px solid var(--purple);
  border-radius:14px;
  background:#fff;
  color:var(--ink);
}
.checkout-payment__option input{
  position:absolute;
  opacity:0;
  pointer-events:none;
  width:1px;
  height:1px;
  padding:0;
  margin:0;
}
.checkout-payment__radio{
  flex:0 0 32px;
  width:32px;
  height:32px;
  border:3px solid var(--purple);
  border-radius:50%;
  box-shadow:inset 0 0 0 5px #fff;
  background:var(--purple);
}
.checkout-payment__name{
  color:var(--ink)!important;
  font-size:17px;
  font-weight:800;
  line-height:1.25;
}
.checkout-payment__cards{
  margin-left:auto;
  display:flex;
  align-items:center;
  gap:10px;
  flex-wrap:wrap;
  justify-content:flex-end;
}
.checkout-card-logo{
  width:54px;
  height:36px;
  border:1px solid #D9D4E8;
  border-radius:6px;
  background:#fff;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  color:#1A1F71!important;
  font-size:13px;
  font-weight:900;
  letter-spacing:-.03em;
  box-shadow:0 1px 2px rgba(0,0,0,.04);
}
.checkout-card-logo--mc,
.checkout-card-logo--maestro{position:relative}
.checkout-card-logo--mc i,
.checkout-card-logo--maestro i{
  width:22px;
  height:22px;
  border-radius:50%;
  display:block;
}
.checkout-card-logo--mc i:first-child{background:#EB001B;margin-right:-7px}
.checkout-card-logo--mc i:last-child{background:#F79E1B}
.checkout-card-logo--maestro i:first-child{background:#EB001B;margin-right:-7px}
.checkout-card-logo--maestro i:last-child{background:#0099DF}
.checkout-card-logo--amex{
  background:#1677C8;
  color:#fff!important;
  font-size:9px;
  letter-spacing:0;
}
.checkout-card-logo--paypal{
  width:70px;
  color:#003087!important;
  font-size:13px;
  letter-spacing:-.02em;
}
.checkout-card-logo--paypal::first-letter{color:#009CDE}
.checkout-submit{
  width:100%;
  min-height:62px;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:20px;
  border-radius:10px;
  background:var(--purple);
  color:#fff;
  box-shadow:var(--shadow);
  font-size:19px;
  font-weight:900;
  line-height:1.15;
  text-align:center;
  transition:background .18s ease, transform .15s ease;
}
.checkout-submit:hover{
  background:var(--purple-deep);
  transform:translateY(-1px);
}
.checkout-submit i{
  font-size:24px;
  line-height:1;
}
.checkout-form__fineprint{color:var(--ink-muted);font-size:13px;margin:0;font-weight:600}
.checkout-summary__save.is-hidden{display:none}
.checkout-thankyou{
  max-width:760px;
  margin:0 auto;
  background:#fff;
  border-radius:var(--radius-lg);
  box-shadow:var(--shadow);
  padding:46px;
  text-align:center;
}
.checkout-thankyou__icon{
  width:64px;
  height:64px;
  display:flex;
  align-items:center;
  justify-content:center;
  margin:0 auto 20px;
  border-radius:50%;
  background:#E7F8EF;
  color:var(--green);
  font-size:28px;
}
.checkout-thankyou h1{
  font-size:clamp(30px,3vw,44px);
  margin:0 0 14px;
}
.checkout-thankyou p{
  max-width:590px;
  margin:0 auto 26px;
  color:var(--ink-soft);
  font-size:17px;
  font-weight:600;
  line-height:1.65;
}
.checkout-thankyou__details{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:14px;
  margin:0 0 28px;
  text-align:left;
}
.checkout-thankyou__details div{
  border:1px solid var(--line);
  border-radius:16px;
  padding:18px;
  background:var(--bg);
}
.checkout-thankyou__details b{
  display:block;
  margin-bottom:6px;
  color:var(--ink);
  font-size:14px;
  font-weight:900;
}
.checkout-thankyou__details span{
  display:block;
  color:var(--ink-soft);
  font-size:14px;
  font-weight:600;
  line-height:1.55;
}
.checkout-thankyou__details a{
  color:var(--purple);
  font-weight:900;
}
.checkout-notice{
  display:flex;
  gap:16px;
  align-items:flex-start;
  padding:22px 24px;
  margin-bottom:24px;
  border:1px solid var(--line);
}
.checkout-notice i{font-size:28px;margin-top:2px}
.checkout-notice h2{font-size:20px;margin:0 0 4px}
.checkout-notice p{margin:0;color:var(--ink-soft);font-weight:600}
.checkout-notice--success i{color:var(--green)}
.checkout-notice--error i{color:var(--pink)}

@media (max-width:1024px){
  .checkout-layout{grid-template-columns:1fr}
  .checkout-summary{position:static;order:-1}
}
@media (max-width:768px){
  .section--checkout{padding:48px 0}
  .checkout-main,.checkout-summary{padding:24px 20px}
  .checkout-title h1{font-size:30px}
  .checkout-title p{font-size:15px}
  .checkout-plan-grid{grid-template-columns:1fr}
  .checkout-form__row{grid-template-columns:1fr}
  .checkout-payment__option{align-items:flex-start;flex-wrap:wrap}
  .checkout-payment__cards{width:100%;margin-left:46px;justify-content:flex-start}
  .checkout-submit{min-height:58px;font-size:16px;gap:12px;padding:0 16px}
  .checkout-submit i{font-size:22px}
  .checkout-thankyou{padding:32px 20px}
  .checkout-thankyou__details{grid-template-columns:1fr}
}
