/* ============================================================
   IPTV PRO — feuille de style principale
   Palette : noir profond + violet (#7c3aed / #a855f7)
   ============================================================ */

:root {
  --bg: #05060c;
  --bg-2: #0a0c16;
  --card: #0e1019;
  --card-2: #12141f;
  --border: rgba(255, 255, 255, 0.07);
  --border-violet: rgba(139, 92, 246, 0.35);
  --violet: #7c3aed;
  --violet-2: #a855f7;
  --violet-soft: #a78bfa;
  --txt: #f2f3f8;
  --muted: #9aa0b4;
  --ok: #22c55e;
  --grad: linear-gradient(135deg, #7c3aed 0%, #a855f7 100%);
  --radius: 16px;
  --shadow-violet: 0 10px 40px rgba(124, 58, 237, 0.35);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background: var(--bg);
  color: var(--txt);
  line-height: 1.6;
  overflow-x: hidden;
}

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

.container { width: min(1180px, 92%); margin: 0 auto; }

.grad-txt {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

/* ---------- Boutons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 0.98rem;
  border: 1px solid transparent;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s, border-color 0.2s;
}
.btn-primary {
  background: var(--grad);
  color: #fff;
  box-shadow: var(--shadow-violet);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 14px 48px rgba(124, 58, 237, 0.5); }
.btn-outline {
  background: rgba(139, 92, 246, 0.08);
  border-color: var(--border-violet);
  color: var(--txt);
}
.btn-outline:hover { background: rgba(139, 92, 246, 0.16); transform: translateY(-2px); }
.btn-ghost {
  background: transparent;
  border-color: var(--border);
  color: var(--txt);
  padding: 10px 20px;
}
.btn-ghost:hover { border-color: var(--border-violet); }

/* ---------- Header ---------- */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 14px 0;
  transition: background 0.3s, box-shadow 0.3s, padding 0.3s;
}
.header.scrolled {
  background: rgba(5, 6, 12, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 6px 30px rgba(0, 0, 0, 0.45);
  padding: 10px 0;
}
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; }

.logo { display: flex; align-items: center; gap: 10px; font-weight: 800; font-size: 1.3rem; letter-spacing: 0.5px; }
.logo svg { width: 34px; height: 34px; }
.logo .pro {
  background: var(--grad);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: 6px;
  letter-spacing: 1px;
}

.nav-links { display: flex; align-items: center; gap: 26px; }
.nav-links a {
  font-size: 0.94rem;
  font-weight: 500;
  color: var(--muted);
  padding-bottom: 3px;
  border-bottom: 2px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--txt); border-color: var(--violet); }

.header-cta { display: flex; align-items: center; gap: 12px; }

.burger {
  display: none;
  background: none;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 8px 10px;
  color: var(--txt);
  font-size: 1.2rem;
}

/* ---------- Hero + slider ---------- */
.hero {
  position: relative;
  padding: 150px 0 90px;
  background:
    radial-gradient(ellipse 60% 50% at 75% 45%, rgba(124, 58, 237, 0.18), transparent 70%),
    radial-gradient(ellipse 40% 40% at 15% 20%, rgba(168, 85, 247, 0.10), transparent 70%),
    var(--bg);
  overflow: hidden;
}

.slide { display: none; animation: fadeSlide 0.7s ease; }
.slide.active { display: block; }
@keyframes fadeSlide {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 50px;
  align-items: center;
}

.hero h1 { font-size: clamp(2.2rem, 4.6vw, 3.6rem); line-height: 1.12; font-weight: 800; margin-bottom: 22px; }
.hero .sous-titre { color: var(--muted); font-size: 1.13rem; max-width: 480px; margin-bottom: 26px; }
.hero .sous-titre b { color: var(--txt); }

.hero-badges { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 30px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 8px 16px;
  font-size: 0.88rem;
  font-weight: 500;
}
.hero-badge svg { width: 17px; height: 17px; flex: none; }

.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 22px; }

.securise { display: flex; align-items: center; gap: 9px; color: var(--muted); font-size: 0.9rem; }
.securise svg { width: 19px; height: 19px; }

/* --- Mockup TV --- */
.tv-wrap { position: relative; }
.tv-mockup {
  position: relative;
  background: #101018;
  border: 10px solid #1a1a24;
  border-radius: 18px;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6), 0 0 90px rgba(124, 58, 237, 0.25);
}
.tv-stand {
  width: 42%; height: 12px;
  margin: 14px auto 0;
  background: linear-gradient(180deg, #1a1a24, #0c0c14);
  border-radius: 0 0 12px 12px;
}
.tv-glow {
  position: absolute;
  left: 8%; right: 8%; bottom: -34px;
  height: 60px;
  background: radial-gradient(ellipse at center, rgba(124, 58, 237, 0.5), transparent 70%);
  filter: blur(14px);
  z-index: -1;
}

.tv-ui { display: grid; grid-template-columns: 118px 1fr; height: 100%; font-size: 0.68rem; }
.tv-menu { background: rgba(10, 11, 18, 0.96); padding: 12px 8px; display: flex; flex-direction: column; gap: 4px; border-right: 1px solid var(--border); }
.tv-brand { font-weight: 800; font-size: 0.78rem; padding: 4px 8px 10px; letter-spacing: 0.5px; }
.tv-brand span { color: var(--violet-soft); }
.tv-menu-item {
  display: flex; align-items: center; gap: 7px;
  padding: 6px 9px;
  border-radius: 7px;
  color: var(--muted);
  white-space: nowrap;
}
.tv-menu-item.active { background: var(--grad); color: #fff; font-weight: 600; }
.tv-main { padding: 10px 12px; overflow: hidden; display: flex; flex-direction: column; gap: 8px; }
.tv-screen-img { position: relative; border-radius: 9px; overflow: hidden; flex: none; }
.tv-screen-img img { width: 100%; height: 108px; object-fit: cover; }
.tv-screen-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 20%, rgba(5, 6, 12, 0.85));
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 8px 10px;
}
.tv-screen-overlay b { font-size: 0.8rem; letter-spacing: 0.4px; }
.badge-live {
  display: inline-block;
  background: #e11d48;
  color: #fff;
  font-weight: 700;
  font-size: 0.58rem;
  padding: 2px 7px;
  border-radius: 4px;
  width: fit-content;
  margin-top: 3px;
  letter-spacing: 1px;
}
.tv-label { color: var(--muted); font-size: 0.62rem; letter-spacing: 0.4px; }
.tv-chips { display: flex; gap: 6px; }
.tv-chip {
  flex: 1;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 5px;
  display: flex; align-items: center; justify-content: center;
  min-width: 0;
}
.tv-chip img { height: 16px; width: auto; max-width: 100%; object-fit: contain; }
.tv-posters { display: flex; gap: 6px; }
.tv-posters img {
  flex: 1; min-width: 0;
  height: 56px;
  object-fit: cover;
  border-radius: 5px;
}

/* --- Collage d'affiches (slide 2) --- */
.poster-collage {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 380px;
}
.poster-collage img {
  width: 168px;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid var(--border);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.55);
  position: absolute;
  transition: transform 0.3s;
}
.poster-collage img:nth-child(1) { transform: translateX(-150px) rotate(-9deg); z-index: 1; }
.poster-collage img:nth-child(2) { transform: translateX(-75px) rotate(-4deg); z-index: 2; }
.poster-collage img:nth-child(3) { transform: none; z-index: 3; width: 186px; box-shadow: 0 26px 70px rgba(124, 58, 237, 0.4); }
.poster-collage img:nth-child(4) { transform: translateX(75px) rotate(4deg); z-index: 2; }
.poster-collage img:nth-child(5) { transform: translateX(150px) rotate(9deg); z-index: 1; }

/* --- Contrôles slider --- */
.slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-top: 46px;
}
.slider-arrow {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
  color: var(--txt);
  width: 42px; height: 42px;
  border-radius: 50%;
  font-size: 1.05rem;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s, border-color 0.2s;
}
.slider-arrow:hover { background: rgba(139, 92, 246, 0.2); border-color: var(--border-violet); }
.slider-dots { display: flex; gap: 10px; }
.slider-dot {
  width: 34px; height: 6px;
  border-radius: 999px;
  border: none;
  background: rgba(255, 255, 255, 0.14);
  overflow: hidden;
  position: relative;
}
.slider-dot::after {
  content: "";
  position: absolute; inset: 0;
  background: var(--grad);
  transform: scaleX(0);
  transform-origin: left;
}
.slider-dot.active::after { animation: dotFill 7s linear forwards; }
@keyframes dotFill { to { transform: scaleX(1); } }

/* ---------- Sections génériques ---------- */
.section { padding: 90px 0; }
.section-alt { background: var(--bg-2); }
.section-head { text-align: center; max-width: 640px; margin: 0 auto 54px; }
.section-head h2 { font-size: clamp(1.7rem, 3.4vw, 2.5rem); font-weight: 800; margin-bottom: 12px; }
.section-head p { color: var(--muted); font-size: 1.05rem; }

/* ---------- Statistiques ---------- */
.stats {
  padding: 34px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg-2);
}
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.stat-card {
  text-align: center;
  padding: 26px 14px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: transform 0.25s, border-color 0.25s;
}
.stat-card:hover { transform: translateY(-4px); border-color: var(--border-violet); }
.stat-num { font-size: 2.1rem; font-weight: 800; }
.stat-num .grad-txt { font-size: inherit; }
.stat-label { color: var(--muted); font-size: 0.94rem; margin-top: 4px; }

/* ---------- Marquees (chaînes + films) ---------- */
.marquee {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
  padding: 8px 0;
}
.marquee + .marquee { margin-top: 6px; }
.marquee-track {
  display: flex;
  gap: 14px;
  width: max-content;
  animation: defile 55s linear infinite;
}
.marquee-track.reverse { animation-direction: reverse; }
.marquee-track.lent { animation-duration: 70s; }
.marquee:hover .marquee-track { animation-play-state: paused; }
@keyframes defile { to { transform: translateX(-50%); } }

.kanal-chip {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 12px 18px;
  white-space: nowrap;
  transition: border-color 0.25s, transform 0.25s;
}
.kanal-chip:hover { border-color: var(--border-violet); transform: translateY(-3px); }
.kanal-logo {
  width: 52px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 9px;
  padding: 5px;
  flex: none;
}
.kanal-logo img { max-height: 30px; max-width: 42px; object-fit: contain; }
.kanal-chip b { font-size: 0.92rem; display: block; }
.kanal-chip small { color: var(--muted); font-size: 0.78rem; }

/* --- Affiches de films --- */
.plakat { flex: none; width: 162px; }
.plakat-art {
  position: relative;
  aspect-ratio: 2 / 3;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border);
  transition: transform 0.3s, box-shadow 0.3s;
}
.plakat-art:hover { transform: translateY(-6px) scale(1.02); box-shadow: 0 18px 44px rgba(124, 58, 237, 0.35); }
.plakat-art img { width: 100%; height: 100%; object-fit: cover; }
.kvalitet {
  position: absolute; top: 8px; left: 8px;
  background: var(--grad);
  color: #fff;
  font-size: 0.66rem;
  font-weight: 800;
  padding: 3px 7px;
  border-radius: 6px;
  letter-spacing: 0.5px;
}
.stjerne {
  position: absolute; top: 8px; right: 8px;
  background: rgba(5, 6, 12, 0.8);
  color: #fbbf24;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 3px 7px;
  border-radius: 6px;
}
.plakat-info {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 26px 10px 9px;
  background: linear-gradient(180deg, transparent, rgba(5, 6, 12, 0.95));
}
.plakat-info b { font-size: 0.84rem; display: block; line-height: 1.25; }
.plakat-info small { color: var(--muted); font-size: 0.72rem; }

/* ---------- Abonnements ---------- */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  align-items: stretch;
}
.prix-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 32px 26px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 0.25s, border-color 0.25s, box-shadow 0.25s;
}
.prix-card:hover { transform: translateY(-6px); border-color: var(--border-violet); }
.prix-card.populaire {
  border-color: var(--violet);
  background: linear-gradient(180deg, rgba(124, 58, 237, 0.12), var(--card) 45%);
  box-shadow: var(--shadow-violet);
  animation: flotter 3.5s ease-in-out infinite;
}
@keyframes flotter {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-9px); }
}
@media (prefers-reduced-motion: reduce) {
  .prix-card.populaire { animation: none; }
}
.populaire-badge {
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  background: var(--grad);
  color: #fff;
  font-size: 0.76rem;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 999px;
  white-space: nowrap;
}
.prix-duree { font-size: 1.18rem; font-weight: 700; text-align: center; margin-bottom: 10px; }
.prix-montant { text-align: center; margin-bottom: 10px; }
.prix-economie {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 20px;
  font-size: 0.86rem;
  color: var(--muted);
  min-height: 26px;
}
.prix-economie s { opacity: 0.75; }
.eco-badge {
  background: rgba(34, 197, 94, 0.12);
  border: 1px solid rgba(34, 197, 94, 0.35);
  color: #4ade80;
  padding: 3px 11px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.78rem;
  white-space: nowrap;
}
.eco-neutre {
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--border);
  color: var(--muted);
  font-weight: 600;
}
.prix-montant .euro { font-size: 2.6rem; font-weight: 800; }
.prix-montant .par { color: var(--muted); font-size: 0.92rem; }
.prix-features { flex: 1; display: flex; flex-direction: column; gap: 12px; margin-bottom: 26px; }
.prix-features li { display: flex; align-items: center; gap: 10px; font-size: 0.93rem; }
.prix-features svg { width: 19px; height: 19px; flex: none; }
.prix-card .btn { width: 100%; }
.prix-card:not(.populaire) .btn-primary {
  background: rgba(139, 92, 246, 0.1);
  border: 1px solid var(--border-violet);
  box-shadow: none;
}
.prix-card:not(.populaire) .btn-primary:hover { background: var(--grad); border-color: transparent; }

/* ---------- Avis clients ---------- */
.avis-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.avis-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px;
  transition: transform 0.25s, border-color 0.25s;
}
.avis-card:hover { transform: translateY(-4px); border-color: var(--border-violet); }
.avis-stars { color: #fbbf24; letter-spacing: 3px; margin-bottom: 13px; font-size: 0.95rem; }
.avis-txt { color: #c9cddc; font-size: 0.95rem; margin-bottom: 18px; }
.avis-auteur { display: flex; align-items: center; gap: 12px; }
.avis-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--grad);
  display: flex; align-items: center; justify-content: center;
  font-weight: 800;
  font-size: 1rem;
  color: #fff;
  flex: none;
}
.avis-auteur b { display: block; font-size: 0.94rem; }
.avis-auteur small { color: var(--muted); font-size: 0.8rem; }

/* ---------- FAQ ---------- */
.faq-liste { max-width: 780px; margin: 0 auto; display: flex; flex-direction: column; gap: 14px; }
.faq-item {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  transition: border-color 0.25s;
}
.faq-item.open { border-color: var(--border-violet); }
.faq-sp {
  width: 100%;
  background: none;
  border: none;
  color: var(--txt);
  font-size: 1rem;
  font-weight: 600;
  text-align: left;
  padding: 19px 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
}
.faq-sp::after {
  content: "+";
  font-size: 1.4rem;
  color: var(--violet-soft);
  transition: transform 0.3s;
  flex: none;
}
.faq-item.open .faq-sp::after { transform: rotate(45deg); }
.faq-sv {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.faq-sv p { padding: 0 22px 20px; color: var(--muted); font-size: 0.95rem; }

/* ---------- Blog ---------- */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.blog-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s, border-color 0.25s;
}
.blog-card:hover { transform: translateY(-5px); border-color: var(--border-violet); }
.blog-thumb {
  height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.6rem;
}
.blog-thumb-1 { background: linear-gradient(135deg, rgba(124, 58, 237, 0.35), rgba(5, 6, 12, 0.2)), radial-gradient(circle at 70% 30%, rgba(168, 85, 247, 0.5), #12141f); }
.blog-thumb-2 { background: linear-gradient(135deg, rgba(168, 85, 247, 0.3), rgba(5, 6, 12, 0.2)), radial-gradient(circle at 30% 70%, rgba(124, 58, 237, 0.5), #12141f); }
.blog-thumb-3 { background: linear-gradient(135deg, rgba(139, 92, 246, 0.3), rgba(5, 6, 12, 0.2)), radial-gradient(circle at 50% 20%, rgba(124, 58, 237, 0.45), #12141f); }
.blog-body { padding: 22px; display: flex; flex-direction: column; flex: 1; }
.blog-cat {
  color: var(--violet-soft);
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 9px;
}
.blog-body h3 { font-size: 1.08rem; margin-bottom: 10px; line-height: 1.35; }
.blog-body p { color: var(--muted); font-size: 0.9rem; flex: 1; margin-bottom: 16px; }
.blog-lien { color: var(--violet-soft); font-weight: 600; font-size: 0.9rem; }
.blog-lien:hover { text-decoration: underline; }

/* ---------- Appareils ---------- */
.appareils-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px;
}
.appareil {
  text-align: center;
  padding: 26px 12px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: transform 0.25s, border-color 0.25s;
}
.appareil:hover { transform: translateY(-4px); border-color: var(--border-violet); }
.appareil svg { width: 40px; height: 40px; margin: 0 auto 12px; display: block; }
.appareil b { display: block; font-size: 0.95rem; }
.appareil small { color: var(--muted); font-size: 0.78rem; }

/* ---------- CTA WhatsApp flottant ---------- */
.wa-flottant {
  position: fixed;
  right: 22px; bottom: 22px;
  z-index: 90;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: #25d366;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
  transition: transform 0.2s;
}
.wa-flottant:hover { transform: scale(1.08); }
.wa-flottant svg { width: 30px; height: 30px; }

/* ---------- Footer ---------- */
.footer {
  background: #04050a;
  border-top: 1px solid var(--border);
  padding: 64px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 44px;
}
.footer h4 { font-size: 1rem; margin-bottom: 18px; }
.footer-desc { color: var(--muted); font-size: 0.92rem; margin: 16px 0 20px; max-width: 280px; }
.footer-liens { display: flex; flex-direction: column; gap: 11px; }
.footer-liens a { color: var(--muted); font-size: 0.92rem; transition: color 0.2s; }
.footer-liens a:hover { color: var(--violet-soft); }
.footer-contact { display: flex; flex-direction: column; gap: 16px; }
.footer-contact-item { display: flex; gap: 12px; align-items: flex-start; }
.footer-contact-item svg { width: 20px; height: 20px; flex: none; margin-top: 2px; }
.footer-contact-item b { display: block; font-size: 0.9rem; }
.footer-contact-item small, .footer-contact-item a { color: var(--muted); font-size: 0.86rem; }
.footer-contact-item a:hover { color: var(--violet-soft); }
.social { display: flex; gap: 10px; }
.social a {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
}
.social a:hover { background: rgba(139, 92, 246, 0.2); border-color: var(--border-violet); transform: translateY(-2px); }
.social svg { width: 17px; height: 17px; }
.footer-bas {
  border-top: 1px solid var(--border);
  padding: 20px 0;
  text-align: center;
  color: var(--muted);
  font-size: 0.86rem;
}

/* ---------- Révélation au scroll ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.vist { opacity: 1; transform: none; }

/* ---------- Pages article (blog) ---------- */
.article-page { padding: 140px 0 80px; max-width: 760px; }
.article-page h1 { font-size: clamp(1.7rem, 3.5vw, 2.4rem); line-height: 1.2; margin-bottom: 14px; }
.article-meta { color: var(--muted); font-size: 0.88rem; margin-bottom: 34px; }
.article-page h2 { font-size: 1.35rem; margin: 34px 0 12px; }
.article-page p, .article-page li { color: #c9cddc; margin-bottom: 14px; font-size: 1rem; }
.article-page ul, .article-page ol { padding-left: 22px; margin-bottom: 14px; }
.article-page ul li { list-style: disc; }
.article-page ol li { list-style: decimal; }
.article-cta {
  margin-top: 40px;
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.15), var(--card));
  border: 1px solid var(--border-violet);
  border-radius: var(--radius);
  padding: 28px;
  text-align: center;
}
.article-cta p { margin-bottom: 18px; }
.retour { color: var(--violet-soft); font-weight: 600; font-size: 0.92rem; display: inline-block; margin-bottom: 26px; }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 44px; }
  .tv-wrap { max-width: 560px; margin: 0 auto; }
  .stats-grid, .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .avis-grid, .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .appareils-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .nav-links {
    position: fixed;
    top: 62px; left: 0; right: 0;
    background: rgba(5, 6, 12, 0.97);
    backdrop-filter: blur(14px);
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 10px 5%;
    display: none;
    border-bottom: 1px solid var(--border);
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 13px 0; width: 100%; border-bottom: 1px solid var(--border); }
  .burger { display: block; }
  .header-cta .btn-ghost { display: none; }
  .hero { padding-top: 120px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid, .avis-grid, .blog-grid { grid-template-columns: 1fr; }
  .appareils-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .poster-collage { min-height: 320px; }
  .poster-collage img { width: 130px; }
  .poster-collage img:nth-child(1) { transform: translateX(-105px) rotate(-9deg); }
  .poster-collage img:nth-child(2) { transform: translateX(-52px) rotate(-4deg); }
  .poster-collage img:nth-child(3) { width: 148px; }
  .poster-collage img:nth-child(4) { transform: translateX(52px) rotate(4deg); }
  .poster-collage img:nth-child(5) { transform: translateX(105px) rotate(9deg); }
}
