/* ============================================================
   IRON TV PRO MAX — style.css
   Thème Dark Cinema (inspiré VoxMax)
   Police : Poppins uniquement
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap');

/* ===== VARIABLES ===== */
:root {
  --primary: #e91e8c;
  --primary-dark: #c4186e;
  --accent: #00e5ff;
  --accent-dark: #00b8cc;
  --text: #ffffff;
  --text-light: #8892a4;
  --bg: #0a0e1a;
  --bg-alt: #111827;
  --bg-card: #151e30;
  --bg-dark: #070b14;
  --border: rgba(255, 255, 255, 0.08);
  --border-glow: rgba(233, 30, 140, 0.25);
  --shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
  --shadow-hover: 0 8px 40px rgba(233, 30, 140, 0.25);
  --radius: 12px;
  --radius-btn: 50px;
}

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  color: var(--text-light);
  background: var(--bg);
  line-height: 1.85;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--primary); text-decoration: none; transition: color .2s; }
a:hover { color: var(--accent); }
ul { list-style: none; }

/* ===== TYPOGRAPHIE ===== */
h1, h2, h3, h4 { font-family: 'Poppins', sans-serif; color: var(--text); }

h1 {
  font-weight: 800;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.15;
  text-transform: uppercase;
  letter-spacing: -0.5px;
}

h2 {
  font-weight: 700;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  text-transform: uppercase;
  text-align: center;
  position: relative;
  padding-bottom: 18px;
  margin-bottom: 40px;
}
h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 2px;
  margin: 12px auto 0;
}

h3 { font-weight: 600; font-size: 1.1rem; color: var(--text); }

p { margin-bottom: 1.2rem; line-height: 1.85; }
p:last-child { margin-bottom: 0; }

strong { font-weight: 700; color: var(--text); }

.overline {
  display: inline-block;
  font-weight: 600;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--accent);
  margin-bottom: 16px;
}

/* ===== CONTENEUR ===== */
.container { max-width: 1140px; margin: 0 auto; padding: 0 24px; }
.container--narrow { max-width: 800px; margin: 0 auto; padding: 0 24px; }

/* ===== SECTIONS ===== */
section { padding: 80px 0; }
.section--alt { background: var(--bg-alt); }
.section--dark { background: var(--bg-dark); }
.section--dark h2, .section--dark h3 { color: #ffffff; }
.section--dark p { color: var(--text-light); }

/* ===== BOUTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius-btn);
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  transition: all .25s;
  text-decoration: none;
  white-space: nowrap;
}
.btn--primary {
  background: linear-gradient(135deg, var(--primary) 0%, #c4186e 100%);
  color: #fff;
  box-shadow: 0 4px 20px rgba(233, 30, 140, 0.4);
}
.btn--primary:hover {
  background: linear-gradient(135deg, #c4186e 0%, var(--primary) 100%);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(233, 30, 140, 0.55);
}
.btn--secondary {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
  color: #0a0e1a;
  font-weight: 700;
}
.btn--secondary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0, 229, 255, 0.35);
  color: #0a0e1a;
}
.btn--outline {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}
.btn--outline:hover {
  background: var(--primary);
  color: #fff;
  box-shadow: var(--shadow-hover);
}
.btn--lg { padding: 18px 42px; font-size: 1.1rem; }
.btn--full { width: 100%; justify-content: center; }

.link-arrow {
  font-weight: 600;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap .2s;
}
.link-arrow:hover { gap: 10px; color: var(--primary); }

/* ===== HEADER / NAV ===== */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(10, 14, 26, 0.95);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(12px);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 24px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--text);
  text-decoration: none;
}
.logo:hover { color: var(--primary); }
.logo-icon {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1rem;
  flex-shrink: 0;
}
.logo-text { color: var(--text); }
.logo-text span { color: var(--primary); }

.nav { display: flex; align-items: center; gap: 8px; }
.nav__link {
  font-weight: 500;
  font-size: 0.93rem;
  color: var(--text-light);
  padding: 8px 14px;
  border-radius: 8px;
  transition: all .2s;
}
.nav__link:hover { color: var(--text); background: rgba(255,255,255,.05); }
.nav__link.active { color: var(--primary); font-weight: 600; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all .3s;
}
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== HERO ===== */
.hero {
  padding: 100px 0 80px;
  background: radial-gradient(ellipse at 20% 50%, rgba(233, 30, 140, 0.12) 0%, transparent 60%),
              radial-gradient(ellipse at 80% 20%, rgba(0, 229, 255, 0.08) 0%, transparent 60%),
              var(--bg);
  overflow: hidden;
  position: relative;
}
.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}
.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 64px;
  position: relative;
}
.hero__content { max-width: 580px; }
.hero__title { margin-bottom: 24px; }
.hero__subtitle {
  font-size: 1.08rem;
  color: var(--text-light);
  line-height: 1.85;
  margin-bottom: 32px;
}
.hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 36px;
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-btn);
  font-weight: 600;
  font-size: 0.82rem;
  color: var(--text-light);
  box-shadow: var(--shadow);
}
.badge--green {
  border-color: rgba(0, 229, 255, 0.3);
  color: var(--accent);
  background: rgba(0, 229, 255, 0.06);
}
.hero__cta { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.hero__visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero__card {
  background: var(--bg-card);
  border-radius: 20px;
  box-shadow: 0 0 0 1px var(--border), var(--shadow-hover);
  padding: 32px;
  width: 100%;
  max-width: 380px;
  border: 1px solid var(--border-glow);
  position: relative;
  overflow: hidden;
}
.hero__card::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(233, 30, 140, 0.06) 0%, transparent 60%);
  pointer-events: none;
}
.hero__card-title {
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--text);
  margin-bottom: 20px;
  text-align: center;
}
.hero__card-price {
  text-align: center;
  margin-bottom: 24px;
  padding: 16px;
  background: rgba(233, 30, 140, 0.08);
  border: 1px solid rgba(233, 30, 140, 0.2);
  border-radius: 12px;
}
.hero__card-price .price-amount {
  font-size: 3rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
}
.hero__card-price .price-period {
  font-size: 0.9rem;
  color: var(--text-light);
  display: block;
  margin-top: 4px;
}
.hero__card-features { margin-bottom: 24px; }
.hero__card-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-light);
}
.hero__card-features li:last-child { border-bottom: none; }
.check-icon {
  width: 20px;
  height: 20px;
  background: linear-gradient(135deg, var(--primary), #c4186e);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 0.7rem;
  flex-shrink: 0;
}

/* HERO SHORT */
.hero--short {
  padding: 60px 0 50px;
  text-align: center;
}
.hero--short .hero__title { margin-bottom: 16px; }
.hero--short .hero__subtitle { max-width: 680px; margin: 0 auto 28px; }

/* ===== STATS BANDE ===== */
.stats {
  background: linear-gradient(135deg, #0d1220 0%, #111827 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 50px 0;
  position: relative;
  overflow: hidden;
}
.stats::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(90deg, rgba(233,30,140,0.05) 0%, transparent 50%, rgba(0,229,255,0.05) 100%);
  pointer-events: none;
}
.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
  position: relative;
}
.stats__item .number {
  font-weight: 800;
  font-size: 2.4rem;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  display: block;
}
.stats__item .label {
  font-weight: 500;
  font-size: 0.85rem;
  color: var(--text-light);
  margin-top: 6px;
  display: block;
}

/* ===== PRÉSENTATION PRODUIT ===== */
.presentation { padding: 80px 0; }
.presentation__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 64px;
}
.presentation__content h2 { text-align: left; }
.presentation__content h2::after { margin: 12px 0 0; }

/* ===== AVANTAGES ===== */
.features__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: var(--shadow);
  transition: all .25s;
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  opacity: 0;
  transition: opacity .25s;
}
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
  border-color: var(--border-glow);
}
.feature-card:hover::before { opacity: 1; }
.feature-card__icon {
  font-size: 2.2rem;
  margin-bottom: 16px;
  display: block;
}
.feature-card__title {
  font-weight: 700;
  font-size: 1rem;
  color: var(--text);
  margin-bottom: 10px;
}
.feature-card__text {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.7;
  margin: 0;
}

/* ===== AVIS CLIENTS ===== */
.reviews__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.review-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: var(--shadow);
}
.review-card__stars { color: #fbbf24; font-size: 1.1rem; margin-bottom: 14px; letter-spacing: 2px; }
.review-card__text {
  font-size: 0.93rem;
  color: var(--text-light);
  line-height: 1.75;
  margin-bottom: 20px;
  font-style: italic;
}
.review-card__author { display: flex; align-items: center; gap: 12px; }
.review-card__avatar {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
}
.review-card__name { font-weight: 700; font-size: 0.9rem; color: var(--text); }
.review-card__location { font-size: 0.78rem; color: var(--text-light); }

/* ===== BLOG APERÇU / GRILLE ===== */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.blog-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all .25s;
  display: flex;
  flex-direction: column;
}
.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
  border-color: var(--border-glow);
}
.blog-card__img {
  width: 100%;
  height: 200px;
  background: linear-gradient(135deg, rgba(233,30,140,0.3) 0%, rgba(0,229,255,0.2) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  overflow: hidden;
}
.blog-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .35s ease;
}
.blog-card:hover .blog-card__img img {
  transform: scale(1.04);
}
.blog-card__body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.blog-card__category {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--primary);
  margin-bottom: 10px;
}
.blog-card__title {
  font-weight: 700;
  font-size: 1rem;
  color: var(--text);
  margin-bottom: 12px;
  line-height: 1.45;
}
.blog-card__excerpt {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 20px;
  flex: 1;
}
.blog-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.78rem;
  color: var(--text-light);
  border-top: 1px solid var(--border);
  padding-top: 14px;
}

/* ===== PAGE OFFRE ===== */
.offre-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.offre-card {
  background: var(--bg-card);
  border: 1px solid var(--border-glow);
  border-radius: 20px;
  padding: 40px 32px;
  box-shadow: var(--shadow-hover);
  position: sticky;
  top: 100px;
  position: relative;
  overflow: hidden;
}
.offre-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
}
.offre-card__badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--primary), #c4186e);
  color: #fff;
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 20px;
}
.offre-card__price {
  text-align: center;
  margin-bottom: 28px;
  padding: 20px;
  background: rgba(233, 30, 140, 0.07);
  border: 1px solid rgba(233, 30, 140, 0.2);
  border-radius: 12px;
}
.offre-card__price .big-price {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
}
.offre-card__price .per-year {
  font-size: 0.9rem;
  color: var(--text-light);
  display: block;
  margin-top: 4px;
}
.offre-card__features li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.93rem;
  font-weight: 500;
  color: var(--text-light);
}
.offre-card__features li:last-child { border-bottom: none; }

/* ===== CHECKOUT FORMULAIRE ===== */
.checkout-form {
  background: var(--bg-card);
  border-radius: 20px;
  border: 1px solid var(--border);
  padding: 40px 36px;
  box-shadow: var(--shadow);
}
.checkout-form h2 { text-align: left; font-size: 1.5rem; }
.checkout-form h2::after { margin: 10px 0 0; }
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--text);
  margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 13px 18px;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.93rem;
  color: var(--text);
  background: rgba(255,255,255,0.04);
  transition: border-color .2s;
  outline: none;
}
.form-group input:focus,
.form-group select:focus {
  border-color: var(--primary);
  background: rgba(233,30,140,0.04);
}
.form-group select option { background: var(--bg-card); color: var(--text); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.radio-group { display: flex; gap: 12px; flex-wrap: wrap; }
.radio-label {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  cursor: pointer;
  font-weight: 500;
  font-size: 0.88rem;
  color: var(--text-light);
  transition: all .2s;
}
.radio-label:hover { border-color: var(--primary); background: rgba(233,30,140,.06); color: var(--text); }
.radio-label input[type="radio"] { accent-color: var(--primary); }

/* ===== ÉTAPES COMMENT ÇA MARCHE ===== */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.step-item { position: relative; }
.step-item::after {
  content: '→';
  position: absolute;
  top: 28px;
  right: -16px;
  color: var(--border);
  font-size: 1.4rem;
  font-weight: 300;
}
.step-item:last-child::after { display: none; }
.step-number {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--primary), #c4186e);
  border-radius: 50%;
  color: #fff;
  font-weight: 800;
  font-size: 1.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  box-shadow: 0 4px 16px rgba(233, 30, 140, 0.4);
}
.step-title { font-weight: 700; font-size: 0.95rem; color: var(--text); margin-bottom: 8px; }
.step-text { font-size: 0.85rem; color: var(--text-light); line-height: 1.6; }

/* ===== PAIEMENTS ===== */
.payment-grid { display: flex; gap: 16px; flex-wrap: wrap; justify-content: center; }
.payment-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  background: var(--bg-card);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.9rem;
  box-shadow: var(--shadow);
  color: var(--text-light);
  transition: all .2s;
}
.payment-badge:hover { border-color: var(--border-glow); color: var(--text); }
.payment-badge .pay-icon { font-size: 1.6rem; }

/* ===== FAQ ===== */
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
  background: var(--bg-card);
}
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text);
  background: var(--bg-card);
  transition: background .2s;
  user-select: none;
}
.faq-question:hover { background: rgba(233,30,140,.04); }
.faq-icon {
  width: 28px;
  height: 28px;
  background: linear-gradient(135deg, var(--primary), #c4186e);
  border-radius: 50%;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
  transition: transform .3s;
}
.faq-item.active .faq-icon { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease;
}
.faq-answer-inner {
  padding: 0 24px 20px;
  font-size: 0.93rem;
  color: var(--text-light);
  line-height: 1.8;
  background: rgba(255,255,255,.02);
  border-top: 1px solid var(--border);
}
.faq-item.active .faq-answer { max-height: 500px; }

/* ===== PAGE SEO LONGUE ===== */
.seo-content { max-width: 820px; margin: 0 auto; }
.seo-content h2 { text-align: left; font-size: 1.5rem; }
.seo-content h2::after { margin: 8px 0 0; }
.seo-content h3 { font-size: 1.05rem; margin-bottom: 12px; margin-top: 28px; color: var(--accent); }
.seo-content ul, .seo-content ol { margin: 16px 0 20px 20px; }
.seo-content ul { list-style: disc; }
.seo-content ol { list-style: decimal; }
.seo-content li { margin-bottom: 8px; font-size: 0.93rem; line-height: 1.75; }
.seo-content code {
  background: rgba(255,255,255,.06);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 2px 8px;
  font-size: 0.85rem;
  color: var(--accent);
}

.toc {
  background: rgba(0, 229, 255, 0.04);
  border-left: 4px solid var(--accent);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 24px 28px;
  margin: 36px 0;
}
.toc h3 { font-size: 0.95rem; color: var(--text); margin-bottom: 14px; margin-top: 0; }
.toc ol { margin: 0 0 0 16px; }
.toc li { margin-bottom: 6px; }
.toc a { color: var(--accent); font-size: 0.9rem; font-weight: 500; }
.toc a:hover { color: var(--primary); text-decoration: underline; }

/* ===== ARTICLE BLOG ===== */
.article-content { max-width: 820px; margin: 0 auto; }
.article-content h2 { text-align: left; font-size: 1.4rem; }
.article-content h2::after { margin: 8px 0 0; }
.article-content h3 { margin-top: 28px; margin-bottom: 12px; color: var(--accent); }
.article-content ul, .article-content ol { margin: 16px 0 20px 20px; }
.article-content ul { list-style: disc; }
.article-content ol { list-style: decimal; }
.article-content li { margin-bottom: 8px; font-size: 0.93rem; line-height: 1.75; }
.article-content code {
  background: rgba(255,255,255,.06);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 2px 8px;
  font-size: 0.85rem;
  color: var(--accent);
}

.breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 0.82rem; color: var(--text-light); margin-bottom: 28px; flex-wrap: wrap; }
.breadcrumb a { color: var(--primary); font-weight: 500; }
.breadcrumb span.sep { color: var(--border); }

.article-meta {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 0.82rem;
  color: var(--text-light);
  margin-bottom: 32px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}
.article-meta span { display: flex; align-items: center; gap: 6px; }

/* ===== CTA SECTION ===== */
.cta-section {
  background: linear-gradient(135deg, #0d1220 0%, #111827 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(ellipse at center, rgba(233,30,140,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.cta-section h2 { color: var(--text); position: relative; }
.cta-section h2::after { background: linear-gradient(90deg, var(--primary), var(--accent)); margin: 12px auto 0; }
.cta-section p { color: var(--text-light); max-width: 600px; margin: 0 auto 36px; position: relative; }

.cta-box {
  background: var(--bg-card);
  border: 1px solid var(--border-glow);
  border-radius: 20px;
  padding: 48px 40px;
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}
.cta-box::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
}
.cta-box h2 { text-align: center; }

/* ===== URGENCE / SOCIAL PROOF ===== */
.urgency-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(233, 30, 140, 0.1);
  border: 1px solid rgba(233, 30, 140, 0.3);
  color: var(--primary);
  padding: 10px 20px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.85rem;
  margin-bottom: 24px;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--bg-dark);
  border-top: 1px solid var(--border);
  color: var(--text-light);
  padding: 60px 0 30px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer__brand .logo { color: var(--text); margin-bottom: 16px; }
.footer__brand .logo-text { color: var(--text); }
.footer__tagline { font-size: 0.88rem; line-height: 1.75; color: var(--text-light); }
.footer__title {
  font-weight: 700;
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text);
  margin-bottom: 20px;
}
.footer__links li { margin-bottom: 10px; }
.footer__links a {
  color: var(--text-light);
  font-size: 0.88rem;
  transition: color .2s;
}
.footer__links a:hover { color: var(--primary); }
.footer__bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.82rem;
  color: rgba(255,255,255,.3);
  flex-wrap: wrap;
  gap: 12px;
}
.footer__bottom a { color: rgba(255,255,255,.3); }
.footer__bottom a:hover { color: var(--primary); }

/* ===== WIDGET WHATSAPP FLOTTANT ===== */
.wa-widget {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
}
.wa-widget a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: #25d366;
  border-radius: 50%;
  box-shadow: 0 6px 24px rgba(37, 211, 102, .45);
  transition: transform .25s, box-shadow .25s;
  font-size: 1.8rem;
  text-decoration: none;
}
.wa-widget a:hover { transform: scale(1.1); box-shadow: 0 10px 36px rgba(37, 211, 102, .55); }

/* ===== LEGAL PAGES ===== */
.legal-content {
  max-width: 820px;
  margin: 0 auto;
  padding: 60px 0;
}
.legal-content h1 { font-size: 1.9rem; margin-bottom: 36px; }
.legal-content h2 { text-align: left; font-size: 1.2rem; margin-top: 36px; }
.legal-content h2::after { margin: 6px 0 0; }
.legal-content p { font-size: 0.93rem; }
.legal-content ul { list-style: disc; margin: 12px 0 16px 20px; }
.legal-content li { font-size: 0.93rem; margin-bottom: 6px; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero__inner { gap: 40px; }
  .presentation__grid { gap: 40px; }
  .features__grid { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .stats__grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .step-item::after { display: none; }
}

@media (max-width: 768px) {
  section { padding: 56px 0; }
  .hero { padding: 70px 0 56px; }

  .header__inner { height: 64px; }
  .nav {
    display: none;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: rgba(10,14,26,0.98);
    flex-direction: column;
    padding: 16px 24px 24px;
    border-bottom: 1px solid var(--border);
    box-shadow: 0 8px 24px rgba(0,0,0,.4);
    align-items: flex-start;
    gap: 4px;
    backdrop-filter: blur(12px);
  }
  .nav.open { display: flex; }
  .nav__link { width: 100%; padding: 12px 16px; }
  .hamburger { display: flex; }

  .hero__inner { grid-template-columns: 1fr; gap: 40px; }
  .hero__visual { display: none; }
  .hero__content { max-width: 100%; }

  .features__grid { grid-template-columns: 1fr; }
  .reviews__grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .offre-grid { grid-template-columns: 1fr; }
  .offre-card { position: static; }
  .form-row { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .stats__grid { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr; gap: 28px; }
  .footer__bottom { flex-direction: column; text-align: center; }

  .presentation__grid { grid-template-columns: 1fr; }
  .presentation__content h2 { text-align: center; }
  .presentation__content h2::after { margin: 12px auto 0; }

  .hero__cta { flex-direction: column; align-items: flex-start; }
  .hero__cta .btn--lg { width: 100%; justify-content: center; }
}

@media (max-width: 480px) {
  h1 { font-size: 1.7rem; }
  h2 { font-size: 1.4rem; }
  .stats__item .number { font-size: 1.8rem; }
  .cta-box { padding: 32px 20px; }
  .checkout-form { padding: 28px 20px; }
  .offre-card { padding: 28px 20px; }
}

/* ===== UTILITAIRES ===== */
.text-center { text-align: center; }
.text-left { text-align: left; }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.mb-8 { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mb-48 { margin-bottom: 48px; }

.highlight-box {
  background: rgba(0, 229, 255, 0.04);
  border: 1px solid rgba(0, 229, 255, 0.15);
  border-radius: var(--radius);
  padding: 24px 28px;
  margin: 24px 0;
}
.highlight-box p { margin: 0; }

.info-list { list-style: none !important; margin-left: 0 !important; }
.info-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.93rem;
  color: var(--text-light);
}
.info-list li:last-child { border-bottom: none; }
.info-list .icon { font-size: 1.1rem; flex-shrink: 0; margin-top: 2px; }
