/* =========================================================
   TEST IPTV — main.css  Redesign 2026
   ========================================================= */

/* ---------- Variables ---------- */
:root {
  --bg: #eef2ff;
  --bg-alt: #f4f6ff;
  --text: #0f172a;
  --muted: #64748b;
  --primary: #2563eb;
  --primary-dark: #1d4ed8;
  --secondary: #7c3aed;
  --accent: #f59e0b;
  --dark: #0c0c1e;
  --white: #ffffff;
  --border: #e2e8f0;
  --radius: 1.2rem;
  --radius-sm: 0.6rem;
  --radius-pill: 999px;
  --shadow: 0 2px 12px rgba(0,0,0,0.06);
  --shadow-md: 0 8px 30px rgba(0,0,0,0.1);
  --shadow-lg: 0 16px 50px rgba(0,0,0,0.15);
  --transition: 0.3s ease;
}

/* ---------- Reset ---------- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
body {
  font-family: "Inter", system-ui, -apple-system, Segoe UI, Roboto, "Helvetica Neue", Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }

/* ---------- Typography ---------- */
.h1 { font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 900; line-height: 1.15; margin-bottom: 1.5rem; }
.h2 { font-size: clamp(1.7rem, 4vw, 2.6rem); font-weight: 800; margin-bottom: 1rem; }
.sub { color: var(--muted); margin: .5rem 0 2.5rem; font-size: 1rem; }

/* ---------- Layout ---------- */
.container { width: min(90%, 1200px); margin: 0 auto; }
.section { padding: 5rem 0; }
.section.alt { background: var(--bg-alt); }
.grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.5rem; }

/* ---------- Header ---------- */
.header {
  position: sticky; top: 0; z-index: 1000;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow);
}
.nav { display: flex; justify-content: space-between; align-items: center; padding: .9rem 0; gap: 1rem; }
.brand { display: flex; align-items: center; gap: .6rem; font-weight: 800; font-size: 1.05rem; color: var(--text); text-decoration: none; }
.logo { width: 38px; height: 38px; border-radius: 8px; }
.brand span { color: var(--text); }
.menu { display: flex; gap: 1.5rem; align-items: center; }
.menu a { text-decoration: none; color: var(--muted); font-weight: 500; font-size: .93rem; transition: color var(--transition); }
.menu a:hover { color: var(--text); }

.btn-cta-nav {
  background: var(--dark);
  color: var(--white) !important;
  padding: .5rem 1.2rem;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: .85rem;
  text-decoration: none !important;
  transition: opacity var(--transition);
  white-space: nowrap;
}
.btn-cta-nav:hover { opacity: .82; }

/* Hamburger */
.hamburger { display: none; flex-direction: column; gap: .3rem; background: none; border: none; cursor: pointer; padding: .4rem; }
.hamburger span { width: 22px; height: 2px; background: var(--text); border-radius: 2px; transition: var(--transition); }

/* ---------- Trust Bar ---------- */
.trust-bar {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: .9rem 0;
}
.trust-items { display: flex; flex-direction: row; justify-content: center; align-items: center; gap: 2.5rem; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: .5rem; font-size: .9rem; font-weight: 600; color: var(--muted); white-space: nowrap; }
.trust-icon { display: flex; align-items: center; color: var(--primary); }
.trust-icon svg { display: block; }

/* ---------- Hero ---------- */
.hero {
  background: linear-gradient(135deg, #eef2ff 0%, #f0f4ff 50%, #e8f0fe 100%);
  text-align: center;
  padding: 7rem 1rem 6rem;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  top: -120px; left: -120px;
  width: 420px; height: 420px;
  background: radial-gradient(circle, rgba(99,102,241,.13) 0%, transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: "";
  position: absolute;
  bottom: -80px; right: -80px;
  width: 360px; height: 360px;
  background: radial-gradient(circle, rgba(124,58,237,.1) 0%, transparent 70%);
  pointer-events: none;
}
.hero__content { position: relative; z-index: 1; }

/* Hero floating decorations */
.hero-deco {
  position: absolute;
  pointer-events: none;
  z-index: 0;
}
.hero-deco--play {
  top: 18%; left: 8%;
  width: 64px; height: 64px;
  background: linear-gradient(135deg, #f9a8d4, #fb7185);
  border-radius: 18px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 24px rgba(251,113,133,.35);
  animation: float-anim 4s ease-in-out infinite;
}
.hero-deco--play::after {
  content: "▶";
  color: white; font-size: 1.4rem; margin-left: 3px;
}
.hero-deco--tv {
  top: 25%; right: 8%;
  width: 72px; height: 72px;
  background: linear-gradient(135deg, #818cf8, #a78bfa);
  border-radius: 18px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 24px rgba(129,140,248,.35);
  animation: float-anim 4s ease-in-out infinite 1.5s;
  font-size: 1.7rem;
}
.hero-deco--tv::after { content: "📺"; }
.hero-deco--sport {
  bottom: 18%; left: 5%;
  width: 54px; height: 54px;
  background: linear-gradient(135deg, #f59e0b, #fbbf24);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 24px rgba(245,158,11,.35);
  animation: float-anim 4s ease-in-out infinite .8s;
  font-size: .65rem; font-weight: 900; color: white;
  letter-spacing: .02em;
}
.hero-deco--sport::after { content: "SPORT"; color: white; font-weight: 900; }
.hero-deco--dot {
  top: 14%; right: 22%;
  width: 22px; height: 22px;
  background: #c7d2fe; border-radius: 50%;
  animation: float-anim 6s ease-in-out infinite 2s;
}
.hero-deco--dot2 {
  bottom: 22%; right: 6%;
  width: 42px; height: 42px;
  background: #bfdbfe; border-radius: 50%;
  animation: float-anim 5s ease-in-out infinite 1s;
}
@keyframes float-anim {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-13px); }
}

.badge-top {
  display: inline-block;
  background: linear-gradient(135deg, #fce7f3, #fbcfe8);
  color: #be185d;
  padding: .4rem 1rem;
  border-radius: var(--radius-pill);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.lead { font-size: 1.15rem; color: var(--muted); margin-bottom: 1rem; max-width: 600px; margin-left: auto; margin-right: auto; }
.clients { font-size: 1rem; margin-bottom: 1.5rem; color: var(--primary); font-weight: 700; }
.seo-intro {
  font-size: .82rem;
  color: #94a3b8;
  max-width: 680px;
  margin: 0 auto 2rem;
  line-height: 1.75;
  text-align: center;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  padding: .85rem 1.8rem;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: .95rem;
  text-decoration: none;
  transition: all var(--transition);
  cursor: pointer;
  border: none;
}
.btn--primary {
  background: var(--primary);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(37,99,235,.3);
}
.btn--primary:hover { background: var(--primary-dark); transform: translateY(-2px); box-shadow: 0 6px 22px rgba(37,99,235,.4); }
.btn--ghost {
  border: 2px solid var(--text);
  color: var(--text);
  background: transparent;
  padding: .75rem 1.8rem;
}
.btn--ghost:hover { background: var(--text); color: var(--white); }
.cta { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ---------- Channels Strip ---------- */
.channels-strip {
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: .9rem 0;
  overflow: hidden;
}
.channels-track {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  width: max-content;
  animation: scroll-channels 40s linear infinite;
}
.channels-track:hover { animation-play-state: paused; }
.channel-item {
  display: flex;
  align-items: center;
  gap: .4rem;
  white-space: nowrap;
  font-weight: 600;
  font-size: .8rem;
  color: var(--muted);
  padding: .3rem .9rem;
  background: var(--bg);
  border-radius: var(--radius-pill);
  border: 1px solid var(--border);
  transition: all var(--transition);
}
.channel-item:hover { color: var(--primary); border-color: var(--primary); }
.channel-item .ch-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}
@keyframes scroll-channels {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ---------- Cards ---------- */
.card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  text-align: center;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
  border: 1px solid rgba(226,232,240,.6);
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.card h3 { font-weight: 700; margin-bottom: .5rem; font-size: 1.02rem; }
.card p { color: var(--muted); font-size: .88rem; }

/* Card icon container */
.card-icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: #eef2ff;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.2rem;
  flex-shrink: 0;
}
.card-icon svg {
  width: 26px; height: 26px;
  stroke: var(--primary);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  display: block;
}


/* ---------- Steps ---------- */
.steps { display: flex; gap: 2rem; justify-content: center; flex-wrap: wrap; margin: 3rem 0; }
.step { flex: 1; min-width: 200px; text-align: center; }
.step__num {
  display: inline-flex;
  width: 48px; height: 48px;
  align-items: center; justify-content: center;
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
  margin-bottom: .8rem;
  font-weight: 800;
  font-size: 1.1rem;
  box-shadow: 0 4px 14px rgba(37,99,235,.3);
}
.step h3 { font-weight: 600; font-size: .93rem; color: var(--muted); }

/* ---------- Devices ---------- */
#devices .h2 { text-align: center; }
#devices .sub { text-align: center; }
.devices-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1.2rem;
  margin-top: 1rem;
}
.device-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.8rem 1rem;
  text-align: center;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: transform var(--transition), box-shadow var(--transition);
}
.device-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.device-card img { width: 48px; height: 48px; object-fit: contain; margin: 0 auto .9rem; }
.device-card span { font-weight: 600; font-size: .82rem; color: var(--muted); display: block; }

/* ---------- Tarifs ---------- */
.tabs {
  display: flex; justify-content: center; margin-bottom: 2.5rem;
  gap: 0; flex-wrap: wrap;
  background: var(--white);
  padding: .35rem;
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow);
  width: fit-content; margin-left: auto; margin-right: auto;
  border: 1px solid var(--border);
}
.tab-btn {
  background: transparent;
  border: none;
  padding: .55rem 1.4rem;
  border-radius: var(--radius-pill);
  cursor: pointer;
  font-weight: 600;
  font-size: .88rem;
  color: var(--muted);
  transition: all var(--transition);
}
.tab-btn.active { background: var(--primary); color: var(--white); box-shadow: 0 2px 10px rgba(37,99,235,.3); }
.tab-content { display: none; }
.tab-content.active { display: block; }

.pricing { display: grid; gap: 1.5rem; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); align-items: start; }
.p-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2.5rem 2rem;
  text-align: center;
  box-shadow: var(--shadow);
  position: relative;
  transition: transform var(--transition), box-shadow var(--transition);
  border: 1px solid var(--border);
}
.p-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }

.p-card--recommended {
  background: var(--dark);
  color: var(--white);
  border: none;
  box-shadow: var(--shadow-lg);
}
.p-card--recommended:hover { transform: translateY(-5px); box-shadow: 0 20px 60px rgba(0,0,0,.2); }

.p-name {
  font-weight: 700; font-size: .76rem;
  text-transform: uppercase; letter-spacing: .08em;
  color: var(--muted); display: block; margin-bottom: .5rem;
}
.p-card--recommended .p-name { color: rgba(255,255,255,.45); }
.p-price { font-size: 2.2rem; font-weight: 900; margin: .8rem 0; color: var(--text); }
.p-card--recommended .p-price { color: var(--white); }
.p-feats { list-style: none; text-align: left; margin: 1.2rem 0 1.5rem; }
.p-feats li {
  display: flex; align-items: flex-start; gap: .5rem;
  padding: .45rem 0; font-size: .88rem; color: var(--muted);
  border-bottom: 1px solid var(--border);
}
.p-feats li:last-child { border-bottom: none; }
.p-feats li::before { content: "✓"; color: var(--primary); font-weight: 800; flex-shrink: 0; margin-top: .05rem; }
.p-card--recommended .p-feats li { color: rgba(255,255,255,.7); border-bottom-color: rgba(255,255,255,.08); }
.p-card--recommended .p-feats li::before { color: var(--primary); }

.p-card .btn--primary {
  width: 100%; margin-top: .5rem;
  background: transparent; color: var(--primary);
  border: 2px solid var(--primary);
  box-shadow: none;
}
.p-card .btn--primary:hover { background: var(--primary); color: var(--white); }
.p-card--recommended .btn--primary {
  background: var(--primary); color: var(--white);
  border: none; box-shadow: 0 4px 16px rgba(37,99,235,.4);
}
.p-card--recommended .btn--primary:hover { background: var(--primary-dark); }

.badge {
  position: absolute; top: 14px; right: 14px;
  background: var(--primary);
  color: var(--white);
  padding: .25rem .75rem;
  border-radius: var(--radius-pill);
  font-size: .72rem; font-weight: 700;
  letter-spacing: .06em; text-transform: uppercase;
}

/* Shimmer fix inside dark card */
.p-card--recommended .shimmer {
  background: none;
  -webkit-background-clip: initial;
  background-clip: initial;
  color: var(--white);
}
.p-card--recommended .shimmer::before { display: none; }

/* ---------- Stats ---------- */
.stat { text-align: center; }
.stat h3 { font-size: 2.4rem; font-weight: 900; margin-bottom: .3rem; }
.stat p { color: var(--muted); font-size: .88rem; }

/* ---------- Comparatif ---------- */
.comparatif { width: 100%; border-collapse: collapse; margin-top: 2rem; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.comparatif th, .comparatif td { border: none; border-bottom: 1px solid var(--border); padding: 1rem 1.5rem; text-align: center; }
.comparatif tr:last-child td { border-bottom: none; }
.comparatif th { background: var(--dark); color: var(--white); font-weight: 700; }
.comparatif tr:nth-child(even) td { background: var(--bg-alt); }
.comparatif td:first-child { text-align: left; font-weight: 500; }

/* ---------- Avis / Testimonials ---------- */
#avis .h2 { text-align: center; }
#avis .sub { text-align: center; }
.testis-wrapper { overflow: hidden; }
.testis {
  display: flex;
  gap: 1.4rem;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-bottom: .5rem;
  cursor: grab;
  user-select: none;
}
.testis:active { cursor: grabbing; }
.testis::-webkit-scrollbar { display: none; }
.testi {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.8rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  flex: 0 0 340px;
  transition: box-shadow var(--transition);
  flex-shrink: 0;
}
.testi:hover { box-shadow: var(--shadow-md); }
.testi-stars { color: #f59e0b; font-size: 1.1rem; letter-spacing: 3px; margin-bottom: 1rem; display: block; }
.testi blockquote {
  font-size: .88rem; line-height: 1.65;
  color: var(--muted); margin-bottom: 1.4rem;
  font-style: normal;
}
.testi blockquote::before { content: "\201C"; }
.testi blockquote::after { content: "\201D"; }
.testi-author { display: flex; align-items: center; gap: .8rem; }
.testi-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: var(--white);
  font-weight: 800; font-size: .88rem;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.testi-name { font-weight: 700; font-size: .88rem; }
.testi-verified { font-size: .75rem; color: #10b981; font-weight: 600; display: flex; align-items: center; gap: .2rem; margin-top: .1rem; }
.testi-verified::before { content: "✓"; }

/* ---------- Movie Slider ---------- */
#vod .h2 { margin-bottom: 1.5rem; }
.movies-slider {
  overflow-x: auto;
  display: flex;
  gap: 1rem;
  padding-bottom: 1rem;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  cursor: grab;
}
.movies-slider:active { cursor: grabbing; }
.movies-slider::-webkit-scrollbar { display: none; }
.movie-poster {
  flex: 0 0 172px;
  border-radius: .9rem;
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-md);
  transition: transform var(--transition);
}
.movie-poster:hover { transform: scale(1.04); }
.movie-poster img {
  width: 172px; height: 244px;
  object-fit: cover; display: block;
}
.movie-title {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(0,0,0,.82) 0%, transparent 100%);
  color: white; font-size: .66rem; font-weight: 800;
  padding: .9rem .5rem .4rem;
  text-align: center; text-transform: uppercase; letter-spacing: .05em;
}

/* ---------- WhatsApp CTA Block ---------- */
.whatsapp-cta-block {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2.5rem 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  margin: 2rem 0;
}
.whatsapp-cta-icon { display: flex; align-items: center; flex-shrink: 0; }
.whatsapp-cta-text h3 { font-weight: 800; font-size: 1.25rem; margin-bottom: .3rem; }
.whatsapp-cta-text p { color: var(--muted); font-size: .88rem; }
.btn-whatsapp {
  background: #25d366;
  color: var(--white);
  padding: .85rem 2rem;
  border-radius: var(--radius-pill);
  font-weight: 700; font-size: .9rem;
  text-decoration: none;
  transition: all var(--transition);
  white-space: nowrap;
  box-shadow: 0 4px 16px rgba(37,211,102,.3);
  display: inline-block;
}
.btn-whatsapp:hover { background: #22c55e; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(37,211,102,.4); }

/* ---------- Garanties ---------- */
#garanties .card h3 { margin-bottom: .4rem; color: var(--primary); }

/* ---------- Revendeur teaser ---------- */
#revendeur-teaser { text-align: center; }
#revendeur-teaser p { margin: 1rem 0 2rem; color: var(--muted); }

/* ---------- FAQ ---------- */
#faq .h2 { text-align: center; }
.faq {
  margin-bottom: .7rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: box-shadow var(--transition);
}
.faq:hover { box-shadow: var(--shadow-md); }
.faq summary {
  font-weight: 700; font-size: .97rem;
  cursor: pointer;
  padding: 1.3rem 1.8rem;
  display: flex; align-items: center; justify-content: space-between;
  list-style: none; user-select: none;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+"; font-size: 1.4rem; font-weight: 300;
  color: var(--primary); transition: transform var(--transition);
  flex-shrink: 0; margin-left: 1rem;
}
.faq[open] summary::after { transform: rotate(45deg); }
.faq p { padding: 0 1.8rem 1.3rem; color: var(--muted); font-size: .88rem; line-height: 1.7; }

/* ---------- Contact ---------- */
.contact-list { list-style: none; }
.contact-list li { margin-bottom: 1rem; font-size: .97rem; }
.contact-list a { color: var(--primary); font-weight: 600; text-decoration: none; }
.contact-list a:hover { text-decoration: underline; }

/* ---------- Footer ---------- */
.footer { background: var(--white); padding: 2.5rem 0; border-top: 1px solid var(--border); }
.foot { display: flex; flex-direction: column; align-items: center; gap: 1rem; text-align: center; }
.foot p { color: var(--muted); font-size: .88rem; }
.footer nav { display: flex; gap: 1.5rem; flex-wrap: wrap; justify-content: center; }
.footer nav a { color: var(--muted); text-decoration: none; font-size: .82rem; transition: color var(--transition); }
.footer nav a:hover { color: var(--text); }

/* ---------- WhatsApp Float ---------- */
.whatsapp-float {
  position: fixed; bottom: 80px; right: 20px;
  background: #25d366; color: var(--white);
  width: 56px; height: 56px; border-radius: 50%;
  box-shadow: 0 4px 16px rgba(37,211,102,.4);
  z-index: 1000; text-decoration: none;
  display: flex; align-items: center; justify-content: center;
  transition: transform var(--transition), box-shadow var(--transition);
}
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 6px 22px rgba(37,211,102,.5); }

/* ---------- Sticky Bar ---------- */
.sticky-bar {
  position: fixed; bottom: 0; left: 0; width: 100%;
  background: var(--white);
  border-top: 1px solid var(--border);
  box-shadow: 0 -4px 20px rgba(0,0,0,.07);
  padding: .75rem 1.5rem;
  display: flex; justify-content: space-between; align-items: center;
  z-index: 999;
}
.sticky-bar a { font-weight: 600; text-decoration: none; color: var(--text); font-size: .88rem; }

/* ---------- Shimmer ---------- */
.shimmer {
  position: relative;
  display: inline-block;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  overflow: hidden;
}
.shimmer::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(120deg, transparent 0%, rgba(255,255,255,.4) 50%, transparent 100%);
  transform: translateX(-100%);
  animation: shimmer-move 3s infinite;
  pointer-events: none;
}
@keyframes shimmer-move {
  0% { transform: translateX(-100%); }
  50% { transform: translateX(100%); }
  100% { transform: translateX(100%); }
}

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 768px) {
  .menu {
    display: none; flex-direction: column; gap: .8rem;
    background: var(--white);
    padding: 1.5rem;
    position: absolute; top: 62px; right: 0; left: 0;
    box-shadow: var(--shadow-md); z-index: 100;
    border-bottom: 1px solid var(--border);
  }
  .menu.show { display: flex; }
  .hamburger { display: flex; }
  .btn-cta-nav { display: none; }

  .hero-deco--play { top: 5%; left: 3%; width: 48px; height: 48px; border-radius: 14px; }
  .hero-deco--play::after { font-size: 1.1rem; }
  .hero-deco--tv { top: 5%; right: 3%; width: 54px; height: 54px; border-radius: 14px; }
  .hero-deco--sport { display: none; }
  .hero-deco--dot, .hero-deco--dot2 { display: none; }

  .trust-items { gap: 1rem; }

  .whatsapp-cta-block { flex-direction: column; text-align: center; padding: 2rem 1.5rem; }
  .btn-whatsapp { width: 100%; text-align: center; }

  .testi { flex: 0 0 310px; }

  .movie-poster { flex: 0 0 150px; }
  .movie-poster img { width: 150px; height: 214px; }
}

@media (max-width: 480px) {
  html, body { overflow-x: hidden; }
  .section { padding: 3.5rem 0; }
  .hero { padding: 4.5rem 1rem 3.5rem; }

  .cta { flex-direction: column; align-items: center; }
  .btn { max-width: 320px; width: 100%; text-align: center; }

  .trust-items { flex-direction: column; align-items: center; gap: .8rem; }

  .grid-3 { grid-template-columns: 1fr; gap: 1rem; }
  .card { padding: 1.5rem; }

  .devices-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }

  .steps { flex-direction: column; gap: 1.5rem; }

  .pricing { grid-template-columns: 1fr; }
  .p-card--recommended { transform: none; }

  .comparatif { font-size: .8rem; }
  .comparatif th, .comparatif td { padding: .65rem .8rem; }

  .testis { gap: 1rem; }
  .testi { flex: 0 0 290px; }

  .movie-poster { flex: 0 0 130px; }
  .movie-poster img { width: 130px; height: 185px; }

  .sticky-bar { flex-direction: column; gap: .5rem; padding: .8rem; text-align: center; }
  .sticky-bar a { width: 100%; }

  .whatsapp-float { bottom: 90px; right: 14px; }

  .promo-popup { width: 240px; padding: 1rem; bottom: 10px; right: 10px; }

  .footer nav { flex-direction: column; gap: .5rem; }
}

@media (min-width: 481px) and (max-width: 768px) {
  .devices-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ---------- Blog Article Page ---------- */
.article-page { max-width: 840px; margin: 0 auto; padding: 3rem 1rem 5rem; }
.article-meta { font-size: .82rem; color: var(--muted); margin-bottom: 1rem; display: flex; gap: .6rem; align-items: center; }
.article-meta span { background: #eef2ff; color: var(--primary); padding: .2rem .7rem; border-radius: 20px; font-weight: 600; }
.article-intro { font-size: 1.08rem; color: #4b5563; margin: 1rem 0 2rem; line-height: 1.85; }
.toc { background: var(--white); border: 1px solid var(--border); border-radius: 12px; padding: 1.4rem 1.8rem; margin: 2rem 0; }
.toc-title { font-size: 1rem; font-weight: 700; margin-bottom: .8rem; color: var(--primary); }
.toc ol { padding-left: 1.4rem; margin: 0; }
.toc li { margin-bottom: .35rem; }
.toc a { color: var(--primary); text-decoration: none; font-size: .9rem; }
.toc a:hover { text-decoration: underline; }
.article-body h2 { font-size: 1.4rem; font-weight: 700; color: var(--dark); margin: 2.5rem 0 .8rem; padding-bottom: .4rem; border-bottom: 2px solid #eef2ff; }
.article-body h3 { font-size: 1.1rem; font-weight: 600; color: var(--dark); margin: 1.6rem 0 .5rem; }
.article-body p { line-height: 1.85; margin-bottom: 1.1rem; color: #374151; }
.article-body ul, .article-body ol { padding-left: 1.5rem; margin-bottom: 1.1rem; }
.article-body li { line-height: 1.8; margin-bottom: .3rem; color: #374151; }
.article-body strong { color: var(--dark); }
.article-body a { color: var(--primary); }
.article-body a:hover { text-decoration: underline; }
.article-img { width: 100%; border-radius: 14px; margin: 2.2rem 0; display: block; aspect-ratio: 16/9; object-fit: cover; }
.article-pricing { margin: 3rem 0 2rem; }
.article-pricing .h2 { text-align: center; margin-bottom: 1.5rem; }
.article-links-box { background: var(--white); border: 1px solid var(--border); border-left: 4px solid var(--primary); border-radius: 0 12px 12px 0; padding: 1.2rem 1.5rem; margin: 2rem 0; }
.article-links-box h3 { font-size: .95rem; font-weight: 700; margin-bottom: .7rem; color: var(--dark); }
.article-links-box ul { list-style: none; padding: 0; margin: 0; }
.article-links-box li { margin-bottom: .4rem; }
.article-links-box a { color: var(--primary); text-decoration: none; font-size: .9rem; }
.article-links-box a::before { content: "→ "; }
.article-links-box a:hover { text-decoration: underline; }
.article-faq { margin: 2.5rem 0; }
.article-faq details { border: 1px solid var(--border); border-radius: 10px; padding: .9rem 1.2rem; margin-bottom: .7rem; background: var(--white); cursor: pointer; }
.article-faq summary { font-weight: 600; color: var(--dark); font-size: .97rem; }
.article-faq details p { margin: .7rem 0 0; color: #374151; font-size: .95rem; line-height: 1.7; }
.article-breadcrumb { font-size: .82rem; color: var(--muted); margin-bottom: 2rem; }
.article-breadcrumb a { color: var(--primary); text-decoration: none; }
.article-breadcrumb a:hover { text-decoration: underline; }
@media (max-width: 600px) {
  .article-page { padding: 2rem .8rem 4rem; }
  .article-body h2 { font-size: 1.2rem; }
}

/* Fix badge position above hero title */
.hero .badge-top {
  display: block;
  width: fit-content;
  margin: 0 auto 1rem auto;
  text-align: center;
}

.hero .h1.shimmer,
.hero h1.shimmer {
  display: block;
  width: 100%;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.hero .lead,
.hero .seo-intro,
.hero .seo-intro--small {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}