/* ─────────────────────────────────────────────────────────────────
   components.css — Composants UI réutilisables
   Lot3 — 2026-05-02
   À charger APRÈS main.css et home.css
   ───────────────────────────────────────────────────────────── */

/* ===== CITY CARD — couverture zone par zone ===== */
.city-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 22px 24px;
  margin: 16px 0;
  transition: border-color 0.2s, transform 0.2s;
}
.city-card:hover {
  border-color: rgba(212,175,55,0.4);
  transform: translateY(-2px);
}
.city-card-header {
  display: flex; align-items: flex-start; justify-content: space-between;
  gap: 16px; margin-bottom: 12px; flex-wrap: wrap;
}
.city-card-title {
  font-family: var(--font-display);
  font-size: 18px; font-weight: 500; color: var(--ivory);
  flex: 1; min-width: 200px;
}
.city-card p {
  margin: 0 0 14px;
  color: var(--muted);
  line-height: 1.65;
  font-size: 14.5px;
}
.city-badges { display: flex; gap: 6px; flex-wrap: wrap; }
.cb {
  display: inline-block;
  font-size: 11px; font-weight: 600;
  padding: 4px 10px; border-radius: 20px;
  text-transform: uppercase; letter-spacing: 0.4px;
}
.cb-5g { background: rgba(16,185,129,0.12); color: #10B981; border: 1px solid rgba(16,185,129,0.3); }
.cb-warn { background: rgba(243,106,42,0.10); color: #F36A2A; border: 1px solid rgba(243,106,42,0.3); }
.cb-info { background: rgba(99,102,241,0.12); color: #818cf8; border: 1px solid rgba(99,102,241,0.3); }

.city-stats {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px;
  margin-top: 14px; padding-top: 14px;
  border-top: 1px dashed var(--border);
}
@media(max-width: 560px) { .city-stats { grid-template-columns: 1fr; gap: 6px; } }
.city-stat {
  background: var(--bg2); border-radius: 10px;
  padding: 10px 12px; text-align: center;
}
.city-stat-val {
  font-family: var(--font-display);
  font-size: 16px; font-weight: 600; color: var(--gold);
  line-height: 1.2;
}
.city-stat-label {
  font-size: 11px; color: var(--muted);
  text-transform: uppercase; letter-spacing: 0.5px;
  margin-top: 4px;
}

/* ===== SPEED GRID — combien de Go par profil ===== */
.speed-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 14px; margin: 20px 0;
}
@media(max-width: 640px) { .speed-grid { grid-template-columns: 1fr; } }
.speed-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 14px; padding: 20px 22px;
  transition: border-color 0.2s;
}
.speed-card:hover { border-color: rgba(212,175,55,0.4); }
.speed-card h4 {
  font-size: 13px; font-weight: 700; color: var(--gold);
  text-transform: uppercase; letter-spacing: 0.6px;
  margin: 0 0 10px;
}
.speed-val {
  font-family: var(--font-display);
  font-size: 28px; font-weight: 600; color: var(--ivory);
  margin-bottom: 8px;
}
.speed-card p {
  margin: 0; color: var(--muted);
  font-size: 14px; line-height: 1.6;
}

/* ===== COMPARE TABLE — tableaux opérateurs / comparatifs ===== */
.compare-table {
  width: 100%; border-collapse: separate; border-spacing: 0;
  margin: 20px 0; background: var(--surface);
  border: 1px solid var(--border); border-radius: 14px;
  overflow: hidden;
}
.compare-table thead { background: var(--bg2); }
.compare-table th {
  font-family: var(--font-display);
  font-size: 12px; font-weight: 600; color: var(--gold);
  text-transform: uppercase; letter-spacing: 0.6px;
  padding: 14px 16px; text-align: left;
  border-bottom: 1px solid var(--border);
}
.compare-table td {
  padding: 14px 16px; font-size: 14px;
  color: var(--text);
  border-bottom: 1px solid var(--border);
  line-height: 1.5;
}
.compare-table tr:last-child td { border-bottom: none; }
.compare-table tr:hover td { background: rgba(212,175,55,0.04); }
.compare-table td.ok { color: #10B981; font-weight: 600; }
.compare-table td.mid { color: #F4B942; font-weight: 600; }
.compare-table td.ko { color: #F36A2A; font-weight: 600; }
.compare-table td strong { color: var(--ivory); }
@media(max-width: 640px) {
  .compare-table { font-size: 13px; display: block; overflow-x: auto; }
  .compare-table th, .compare-table td { padding: 10px 12px; }
}

/* ===== APP GRID — applications indispensables (cards) ===== */
.app-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 12px; margin: 18px 0;
}
.app-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 12px; padding: 14px 16px;
  transition: border-color 0.2s, transform 0.2s;
}
.app-card:hover {
  border-color: rgba(212,175,55,0.4);
  transform: translateY(-2px);
}
.app-card-name {
  font-weight: 700; color: var(--gold);
  font-size: 14px; margin-bottom: 6px;
}
.app-card-desc {
  font-size: 13.5px; color: var(--muted);
  line-height: 1.55;
}

/* ===== WARNING BOX (au cas où — pas redéfini si déjà présent) ===== */
.warning-box {
  background: rgba(243,106,42,0.08);
  border: 1px solid rgba(243,106,42,0.3);
  border-radius: 14px;
  padding: 16px 20px; margin: 20px 0;
  font-size: 14.5px; color: var(--muted); line-height: 1.7;
}
.warning-box strong { color: #F36A2A; }

/* ─────────────────────────────────────────────────────────────────
   Lot4 — ALIASES & EXTENSIONS
   ───────────────────────────────────────────────────────────── */

/* Alias zone-card / zone-grid (Hanoï, Tokyo, etc.) → même style que city-card */
.zone-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 14px; margin: 18px 0;
}
.zone-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 18px 20px;
  transition: border-color 0.2s, transform 0.2s;
}
.zone-card:hover {
  border-color: rgba(212,175,55,0.4);
  transform: translateY(-2px);
}
.zone-card-header {
  display: flex; align-items: flex-start; justify-content: space-between;
  gap: 12px; margin-bottom: 10px; flex-wrap: wrap;
}
.zone-card-name {
  font-family: var(--font-display);
  font-size: 15.5px; font-weight: 600; color: var(--ivory);
  flex: 1; min-width: 160px; line-height: 1.3;
}
.zone-card p {
  margin: 0; color: var(--muted);
  line-height: 1.6; font-size: 13.5px;
}
.zb {
  display: inline-block;
  font-size: 10px; font-weight: 700;
  padding: 3px 8px; border-radius: 20px;
  text-transform: uppercase; letter-spacing: 0.4px;
}
.zb-5g { background: rgba(16,185,129,0.15); color: #10B981; border: 1px solid rgba(16,185,129,0.3); }
.zb-4g { background: rgba(212,175,55,0.15); color: var(--gold); border: 1px solid rgba(212,175,55,0.3); }
.zb-warn { background: rgba(243,106,42,0.10); color: #F36A2A; border: 1px solid rgba(243,106,42,0.3); }

/* Alias data-usage-table, app-table → compare-table */
.data-usage-table,
.app-table {
  width: 100%; border-collapse: separate; border-spacing: 0;
  margin: 20px 0; background: var(--surface);
  border: 1px solid var(--border); border-radius: 14px;
  overflow: hidden;
}
.data-usage-table thead, .app-table thead { background: var(--bg2); }
.data-usage-table th, .app-table th {
  font-family: var(--font-display);
  font-size: 12px; font-weight: 600; color: var(--gold);
  text-transform: uppercase; letter-spacing: 0.6px;
  padding: 14px 16px; text-align: left;
  border-bottom: 1px solid var(--border);
}
.data-usage-table td, .app-table td {
  padding: 14px 16px; font-size: 14px;
  color: var(--text);
  border-bottom: 1px solid var(--border);
  line-height: 1.5;
}
.data-usage-table tr:last-child td,
.app-table tr:last-child td { border-bottom: none; }
.data-usage-table tr:hover td,
.app-table tr:hover td { background: rgba(212,175,55,0.04); }
.data-usage-table td strong,
.app-table td strong { color: var(--ivory); }
@media(max-width: 640px) {
  .data-usage-table, .app-table { font-size: 13px; display: block; overflow-x: auto; }
  .data-usage-table th, .data-usage-table td,
  .app-table th, .app-table td { padding: 10px 12px; }
}

/* Pricing list — listes de prix stylées (itinerance, comparatifs) */
.pricing-list {
  list-style: none; padding: 0; margin: 0;
}
.pricing-list li {
  display: flex; justify-content: space-between; align-items: center;
  padding: 10px 0;
  border-bottom: 1px dashed var(--border);
  gap: 12px;
}
.pricing-list li:last-child { border-bottom: none; }
.price-bad { color: #F36A2A; font-weight: 600; font-size: 13.5px; flex-shrink: 0; }
.price-good { color: #10B981; font-weight: 600; font-size: 13.5px; flex-shrink: 0; }

/* Terrain images (test-terrain Thaïlande) */
.terrain-img {
  display: block; max-width: 100%;
  height: auto !important; /* override les width/height attributes natifs */
  border-radius: 12px;
  margin: 12px auto;
  border: 1px solid var(--border);
}
.terrain-img-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
  margin: 20px 0;
}
.terrain-img-grid .terrain-img { margin: 0; max-height: 380px; object-fit: cover; }

/* Generic table fix mobile (toutes tables sans classe overflow) */
@media(max-width: 640px) {
  .article-body table:not(.compare-table):not(.app-table):not(.data-usage-table):not(.forfait-table) {
    display: block; overflow-x: auto; max-width: 100%;
  }
}

/* ===== STATS BAR — chiffres clés en hero (Corée, US, etc.) ===== */
.stats-bar {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 12px;
  margin: 24px 0 32px;
  padding: 20px 22px;
  background: linear-gradient(135deg, rgba(212,175,55,0.06), rgba(212,175,55,0.02));
  border: 1px solid var(--border);
  border-radius: 16px;
}
.stat-item {
  text-align: center;
  padding: 4px 8px;
}
.stat-value {
  font-family: var(--font-display);
  font-size: clamp(24px, 4vw, 34px);
  font-weight: 600;
  color: var(--gold);
  line-height: 1.1;
  margin-bottom: 6px;
}
.stat-label {
  font-size: 11px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  line-height: 1.35;
}

/* compare-table-wrap : wrapper pour scroll mobile (Corée) */
.compare-table-wrap {
  overflow-x: auto;
  margin: 20px 0;
  -webkit-overflow-scrolling: touch;
}
.compare-table-wrap .compare-table { margin: 0; min-width: 480px; }

/* ============================================================
   EXTENSION compare-table — fix 2 mai
   - Variantes : compat-table, error-table, forfait-table (mêmes styles de base)
   - Cellules sémantiques manquantes : .warn .best .conso-* .badge-*
   ============================================================ */

.compat-table, .error-table, .forfait-table {
  width: 100%; border-collapse: separate; border-spacing: 0;
  margin: 20px 0; background: var(--surface);
  border: 1px solid var(--border); border-radius: 14px;
  overflow: hidden;
}
.compat-table thead, .error-table thead, .forfait-table thead { background: var(--bg2); }
.compat-table th, .error-table th, .forfait-table th {
  font-family: var(--font-display);
  font-size: 12px; font-weight: 600; color: var(--gold);
  text-transform: uppercase; letter-spacing: 0.6px;
  padding: 14px 16px; text-align: left;
  border-bottom: 1px solid var(--border);
}
.compat-table td, .error-table td, .forfait-table td {
  padding: 14px 16px; font-size: 14px;
  color: var(--text);
  border-bottom: 1px solid var(--border);
  line-height: 1.5;
}
.compat-table tr:last-child td,
.error-table tr:last-child td,
.forfait-table tr:last-child td { border-bottom: none; }
.compat-table tr:hover td,
.error-table tr:hover td,
.forfait-table tr:hover td { background: rgba(212,175,55,0.04); }
.compat-table td strong,
.error-table td strong,
.forfait-table td strong { color: var(--ivory); }

/* Cellules sémantiques — compare-table ET variantes */
.compare-table td.warn,
.compat-table td.warn,
.error-table td.warn,
.forfait-table td.warn { color: #F4B942; font-weight: 600; }

.compare-table td.best,
.compat-table td.best,
.forfait-table td.best { color: var(--gold); font-weight: 700; }

.compare-table td.conso-low,
.compat-table td.conso-low { color: #10B981; font-weight: 600; }

.compare-table td.conso-mid,
.compat-table td.conso-mid { color: #F4B942; font-weight: 600; }

.compare-table td.conso-high,
.compat-table td.conso-high { color: #F36A2A; font-weight: 600; }

.compare-table td.badge-ok,
.compat-table td.badge-ok { color: #10B981; font-weight: 700; }

.compare-table td.badge-no,
.compat-table td.badge-no { color: #F36A2A; font-weight: 700; }

/* Mobile : scroll horizontal pour les variantes */
@media(max-width: 640px) {
  .compat-table, .error-table, .forfait-table {
    font-size: 13px; display: block; overflow-x: auto;
  }
  .compat-table th, .compat-table td,
  .error-table th, .error-table td,
  .forfait-table th, .forfait-table td { padding: 10px 12px; }
}

/* ===== INFO / SUCCESS BOX — fix 2 mai (warning-box déjà défini plus haut) ===== */
.info-box {
  background: rgba(30, 144, 255, 0.06);
  border: 1px solid rgba(30, 144, 255, 0.25);
  border-left: 4px solid #1E90FF;
  border-radius: 0 14px 14px 0;
  padding: 16px 22px; margin: 24px 0;
  font-size: 14px; line-height: 1.7; color: var(--text);
}
.info-box strong { color: #1E90FF; }

.success-box {
  background: rgba(16, 185, 129, 0.06);
  border: 1px solid rgba(16, 185, 129, 0.25);
  border-left: 4px solid #10B981;
  border-radius: 0 14px 14px 0;
  padding: 16px 22px; margin: 24px 0;
  font-size: 14px; line-height: 1.7; color: var(--text);
}
.success-box strong { color: #10B981; }

/* ===== FIX SCROLL HORIZONTAL MOBILE — guide-card / guide-grid (2 mai) ===== */
.guide-card { min-width: 0; overflow: hidden; }
.guide-grid { min-width: 0; }
.guide-card .compare-table,
.guide-card .app-table,
.guide-card .data-usage-table,
.guide-card .forfait-table {
  max-width: 100%;
}


/* === Hero trust line === */
.hero-trust {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px 10px;
  font-size: 13px;
  color: var(--muted, #6b6b6b);
  font-weight: 500;
}
.hero-trust-item {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  white-space: nowrap;
}
.ht-check {
  color: var(--gold, #e8804a);
  font-weight: 700;
  font-size: 12px;
}
.hero-trust-sep {
  color: rgba(0, 0, 0, 0.2);
}
@media (max-width: 540px) {
  .hero-trust { font-size: 12px; gap: 4px 8px; }
  .hero-trust-sep { display: none; }
}

/* === FAQ accordéon (piliers blog) === */
.faq-section { margin: 48px 0; }
.faq-list { margin-top: 16px; border-top: 1px solid var(--border, #e5e5e5); }
.faq-item summary {
  cursor: pointer;
  font-weight: 600;
  font-size: 1.05em;
  list-style: none;
  padding: 18px 36px 18px 0;
  position: relative;
  color: var(--text, #1a1a1a);
  transition: color .15s;
}
.faq-item summary:hover { color: var(--gold, #c9a96a); }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 4px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.6em;
  font-weight: 300;
  line-height: 1;
  color: var(--gold, #c9a96a);
  transition: transform .2s;
}
.faq-item[open] summary::after { content: "−"; }
.faq-item .faq-answer {
  padding: 0 0 18px;
  color: var(--text-muted, #555);
  line-height: 1.65;
}
.faq-item .faq-answer p:first-child { margin-top: 0; }
.faq-item .faq-answer p:last-child { margin-bottom: 0; }


/* ═══════════════════════════════════════════════════════════════
   COMPARATIF-HERO STACK + AEO — Phase 3 final layout
   ─────────────────────────────────────────────────────────────── */

/* Hero stack vertical : texte au-dessus, image en-dessous */
.comparatif-hero-stack {
  display: flex;
  flex-direction: column;
  gap: 36px;
  padding: 60px 32px 40px;
  max-width: 1100px;
  margin: 0 auto;
  align-items: stretch;
}
.comparatif-hero-stack .hero-text-block {
  display: flex;
  flex-direction: column;
  gap: 18px;
  max-width: 760px;
}
.comparatif-hero-stack .hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
}
.comparatif-hero-stack .hero-eyebrow .dot {
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
}
.comparatif-hero-stack h1.display-lg {
  font-size: clamp(36px, 5.5vw, 60px);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -1px;
  color: var(--ivory);
  margin: 0;
}
.comparatif-hero-stack .hero-lead {
  font-size: clamp(16px, 1.4vw, 19px);
  line-height: 1.6;
  color: var(--muted);
  max-width: 680px;
  margin: 0;
}
.comparatif-hero-stack .hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 8px;
}
.comparatif-hero-stack .hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  margin-top: 8px;
  font-size: 13px;
  color: var(--muted);
}
.comparatif-hero-stack .hero-trust-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.comparatif-hero-stack .hero-trust-item .ht-check {
  color: var(--gold);
  font-weight: 700;
}
.comparatif-hero-stack .hero-trust-sep {
  color: var(--dim);
}

/* Image bandeau pleine largeur sous le texte */
.comparatif-hero-stack .hero-image-block {
  width: 100%;
  aspect-ratio: 21 / 9;
  max-height: 380px;
  border-radius: 24px;
  overflow: hidden;
  background: var(--bg3);
}
.comparatif-hero-stack .hero-image-block img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (max-width: 900px) {
  .comparatif-hero-stack {
    padding: 40px 20px 28px;
    gap: 28px;
  }
  .comparatif-hero-stack .hero-image-block {
    aspect-ratio: 16 / 10;
    max-height: 240px;
    border-radius: 16px;
  }
}
@media (max-width: 640px) {
  .comparatif-hero-stack {
    padding: 28px 16px 20px;
    gap: 22px;
  }
  .comparatif-hero-stack h1.display-lg {
    font-size: clamp(28px, 8vw, 38px);
  }
  .comparatif-hero-stack .hero-image-block {
    aspect-ratio: 16 / 11;
    max-height: 200px;
    border-radius: 14px;
  }
  .comparatif-hero-stack .hero-trust-sep {
    display: none;
  }
}

/* AEO Réponse directe — bloc gold pour featured snippets */
.aeo-answer {
  margin: 24px auto 60px;
  max-width: 1100px;
  padding: 0 32px;
}
.aeo-card {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  background: linear-gradient(135deg, var(--gold-glow), var(--gold-dim) 80%);
  border: 1px solid var(--gold-dim);
  border-radius: 18px;
  padding: 24px 28px;
}
.aeo-icon {
  font-size: 28px;
  color: var(--gold);
  font-weight: 700;
  line-height: 1;
  flex-shrink: 0;
  margin-top: 2px;
}
.aeo-body {
  flex: 1;
}
.aeo-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
.aeo-text {
  font-size: 15px;
  line-height: 1.65;
  color: var(--text);
  margin: 0;
}
.aeo-text strong {
  color: var(--ivory);
  font-weight: 600;
}

@media (max-width: 640px) {
  .aeo-answer { padding: 0 16px; margin: 16px auto 40px; }
  .aeo-card { padding: 20px 18px; gap: 12px; flex-direction: column; }
  .aeo-icon { font-size: 22px; margin-top: 0; }
  .aeo-text { font-size: 14px; }
}

/* ═══ FIN PATCH PHASE 3 FINAL ═══ */

/* ═══════════════════════════════════════════════════════════════
   COMPARATIF-PAYS — RESTORATION CSS (Phase 3 fix mai 2026)
   ─────────────────────────────────────────────────────────────── */

.comparatif-intro { margin: 60px auto; max-width: 880px; padding: 0 32px; }
.intro-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 32px 36px;
}
.intro-card .label {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
.intro-card h2 { margin: 4px 0 12px; }
.intro-card .lead {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
}

.comparatif-table {
  margin: 60px auto;
  max-width: 1100px;
  padding: 0 32px;
}
.section-lead {
  font-size: 15px;
  color: var(--muted);
  margin-bottom: 24px;
  max-width: 760px;
}
.table-disclaimer {
  font-size: 12px;
  color: var(--muted);
  margin-top: 12px;
  font-style: italic;
}

.verdict-section { margin: 80px auto; max-width: 1100px; padding: 0 32px; }
.verdict-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 22px;
  margin-top: 32px;
}
.verdict-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 28px 26px;
  transition: var(--transition);
}
.verdict-card:hover {
  border-color: var(--border2);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}
.verdict-card.us {
  border-color: var(--gold);
  box-shadow: var(--shadow-gold);
}
.verdict-card .vc-tag {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  background: var(--bg2);
  color: var(--ivory-dim);
  margin-bottom: 12px;
}
.verdict-card.us .vc-tag {
  background: var(--gold-dim);
  color: var(--gold);
}
.verdict-card h3 {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 500;
  color: var(--ivory);
  margin: 0 0 4px;
}
.verdict-card .vc-sub {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 20px;
}
.verdict-card .vc-section-title {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gold);
  margin: 16px 0 8px;
}
.verdict-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.verdict-card ul li {
  padding: 4px 0 4px 22px;
  position: relative;
  font-size: 14px;
  line-height: 1.55;
  color: var(--text);
}
.verdict-card ul.pros li::before {
  content: '+';
  position: absolute;
  left: 0;
  top: 4px;
  color: var(--green);
  font-weight: 700;
}
.verdict-card ul.cons li::before {
  content: '−';
  position: absolute;
  left: 0;
  top: 4px;
  color: var(--red);
  font-weight: 700;
}
.verdict-card .vc-conclusion {
  background: var(--bg2);
  border-left: 3px solid var(--gold);
  padding: 12px 16px;
  margin-top: 20px;
  font-size: 14px;
  line-height: 1.55;
  color: var(--text);
  border-radius: 0 8px 8px 0;
}

.profiles-section { margin: 80px auto; max-width: 1100px; padding: 0 32px; }
.profiles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 18px;
  margin-top: 28px;
}
.profile-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 22px 20px;
  transition: var(--transition);
}
.profile-card:hover {
  border-color: var(--gold);
  transform: translateY(-2px);
}
.profile-card.highlight {
  background: var(--surface2);
  border-color: var(--gold-dim);
}
.profile-card .pc-icon {
  font-size: 28px;
  margin-bottom: 10px;
  line-height: 1;
}
.profile-card .pc-title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 500;
  color: var(--ivory);
  margin: 0 0 8px;
  line-height: 1.3;
}
.profile-card p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
  margin: 0 0 12px;
}
.profile-card .pc-pick {
  font-size: 13px;
  font-weight: 600;
  color: var(--gold);
  padding-top: 10px;
  border-top: 1px solid var(--border);
}

.faq-section { margin: 80px auto; max-width: 880px; padding: 0 32px; }
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 28px;
}

.final-cta { margin: 80px auto; max-width: 880px; padding: 0 32px; }
.final-cta-card {
  background: linear-gradient(135deg, var(--gold-glow), var(--gold-dim));
  border: 1px solid var(--gold-dim);
  border-radius: 24px;
  padding: 48px 40px;
  text-align: center;
}
.final-cta-card h2 { margin: 0 0 12px; }
.final-cta-card p {
  font-size: 16px;
  color: var(--text);
  margin: 0 auto 28px;
  max-width: 560px;
}
.final-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.go-further {
  margin: 80px auto 60px;
  max-width: 1100px;
  padding: 36px 32px;
  background: var(--bg2);
  border-radius: 18px;
}
.go-further-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  color: var(--ivory);
  margin: 0 0 4px;
}
.go-further-lead {
  font-size: 13px;
  color: var(--muted);
  margin: 0 0 24px;
}
.go-further-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
}
.gf-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 20px 18px;
  transition: var(--transition);
  display: block;
  text-decoration: none;
}
.gf-card:hover {
  border-color: var(--gold);
  transform: translateY(-2px);
}
.gf-icon { font-size: 24px; margin-bottom: 8px; line-height: 1; }
.gf-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
}
.gf-title {
  font-size: 14px;
  color: var(--ivory);
  line-height: 1.4;
}

@media (max-width: 640px) {
  .comparatif-intro,
  .comparatif-table,
  .verdict-section,
  .profiles-section,
  .faq-section,
  .final-cta { padding: 0 16px; margin: 50px auto; }
  .verdict-grid,
  .profiles-grid,
  .go-further-grid { grid-template-columns: 1fr; }
  .final-cta-card { padding: 32px 24px; }
  .intro-card { padding: 24px 20px; }
  .go-further { padding: 24px 20px; margin: 50px auto 40px; }
  .verdict-card { padding: 22px 20px; }
}

/* ═══ FIN RESTORATION CSS ═══ */

/* ═══════════════════════════════════════════════════════════════
   COMPARATIF-HERO-IMAGE — bandeau image après AEO (Phase 3 v2)
   ─────────────────────────────────────────────────────────────── */
.comparatif-hero-image {
  margin: 0 auto 60px;
  max-width: 1100px;
  padding: 0 32px;
}
.comparatif-hero-image .hero-image-block {
  width: 100%;
  aspect-ratio: 21 / 9;
  max-height: 380px;
  border-radius: 24px;
  overflow: hidden;
  background: var(--bg3);
}
.comparatif-hero-image .hero-image-block img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Hero stack : ajuster padding bottom pour transition douce vers AEO */
.comparatif-hero-stack {
  padding-bottom: 24px !important;
}

@media (max-width: 900px) {
  .comparatif-hero-image {
    padding: 0 20px;
    margin-bottom: 40px;
  }
  .comparatif-hero-image .hero-image-block {
    aspect-ratio: 16 / 10;
    max-height: 240px;
    border-radius: 16px;
  }
}
@media (max-width: 640px) {
  .comparatif-hero-image {
    padding: 0 16px;
    margin-bottom: 32px;
  }
  .comparatif-hero-image .hero-image-block {
    aspect-ratio: 16 / 11;
    max-height: 200px;
    border-radius: 14px;
  }
}
/* ═══ FIN HERO IMAGE ═══ */

/* ═══════════════════════════════════════════════════════════════
   FAQ ACCORDÉON — <details><summary> natif (Phase 3 fix)
   ─────────────────────────────────────────────────────────────── */
details.faq-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 0;
  overflow: hidden;
  transition: var(--transition);
}
details.faq-item[open] {
  border-color: var(--gold-dim);
  box-shadow: var(--shadow);
}
details.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 18px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  user-select: none;
  transition: background var(--transition);
}
details.faq-item summary::-webkit-details-marker { display: none; }
details.faq-item summary::marker { display: none; content: ''; }
details.faq-item summary { list-style: none !important; list-style-type: none !important; }
details.faq-item summary > * { list-style: none; }
details.faq-item summary:hover { background: var(--bg2); }
details.faq-item summary h3 {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 500;
  color: var(--ivory);
  margin: 0;
  line-height: 1.3;
  flex: 1;
}
details.faq-item .faq-chevron {
  font-size: 22px;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  flex-shrink: 0;
  transition: transform var(--transition);
  transform-origin: center;
}
details.faq-item[open] .faq-chevron {
  transform: rotate(45deg);
}
details.faq-item .faq-answer {
  padding: 0 22px 20px;
  border-top: 1px solid var(--border);
  margin-top: -1px;
  padding-top: 16px;
}
details.faq-item .faq-answer p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text);
  margin: 0;
}
@media (max-width: 640px) {
  details.faq-item summary { padding: 16px 18px; }
  details.faq-item summary h3 { font-size: 15px; }
  details.faq-item .faq-answer { padding: 14px 18px 18px; }
}
/* ═══ FIN FAQ ACCORDÉON ═══ */
