/* ═══════════════════════════════════════════════════════════════════════
   Template AFFILIATION — Style Comparateur Moderne
   ═══════════════════════════════════════════════════════════════════════ */

:root {
  --primary: #5B6CFF;
  --primary-dark: #4655d8;
  --primary-light: #eef1ff;
  --primary-soft: #f7f8ff;
  --secondary: #0F172A;
  --bg: #ffffff;
  --bg-alt: #f9fafb;
  --bg-soft: #f3f4f6;
  --text: #0f172a;
  --text-muted: #475569;
  --text-light: #94a3b8;
  --border: #e5e7eb;
  --border-light: #f1f5f9;
  --success: #10b981;
  --warning: #f59e0b;
  --danger: #ef4444;
  --gold: #fbbf24;

  --shadow-xs: 0 1px 2px rgba(15,23,42,.04);
  --shadow-sm: 0 2px 8px rgba(15,23,42,.06);
  --shadow-md: 0 8px 24px rgba(15,23,42,.08);
  --shadow-lg: 0 20px 50px rgba(15,23,42,.10);
  --shadow-glow: 0 12px 32px color-mix(in srgb, var(--primary) 25%, transparent);

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;

  --container-max: 1180px;
  --container-pad: 24px;

  --font-body: 'Inter', system-ui, -apple-system, sans-serif;
  --font-heading: 'Plus Jakarta Sans', 'Inter', sans-serif;

  --transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
}

img { max-width: 100%; height: auto; display: block; }

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 800;
  line-height: 1.2;
  color: var(--secondary);
  margin: 0 0 .5em;
  letter-spacing: -0.02em;
}
h1 { font-size: clamp(2rem, 4vw, 3rem); }
h2 { font-size: clamp(1.5rem, 2.6vw, 2.1rem); margin-top: 2em; }
h3 { font-size: 1.35rem; margin-top: 1.5em; }
p  { margin: 0 0 1em; color: var(--text); }
strong { font-weight: 700; color: var(--secondary); }
a  { color: var(--primary); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--primary-dark); }

/* ═══ HEADER ═══ */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,0.85);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.site-header.scrolled { border-color: var(--border); box-shadow: var(--shadow-xs); }
.nav-spacer { height: 0; }
.nav {
  display: flex; align-items: center; justify-content: space-between;
  height: 72px; gap: 24px;
}
.brand { display: flex; align-items: center; gap: 10px; font-weight: 800; font-family: var(--font-heading); color: var(--secondary); }
.brand-mark { color: var(--primary); font-size: 1.4rem; }
.brand-name { font-size: 1.15rem; }
/* Logo tricolore = nom de domaine décomposé */
.brand-logo { font-family: var(--font-heading); font-weight: 800; font-size: 1.3rem; letter-spacing: -0.01em; }
.brand-logo .brand-p1  { color: var(--primary); }
.brand-logo .brand-p2  { color: var(--secondary); }
.brand-logo .brand-tld { color: var(--text-light); font-weight: 700; }
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links > a { color: var(--text); font-weight: 500; font-size: 0.95rem; }
.nav-links > a:hover { color: var(--primary); }

.nav-cta, .cta, .cta-primary {
  background: var(--primary);
  color: #fff !important;
  padding: 11px 22px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  box-shadow: var(--shadow-glow);
  transition: transform var(--transition), box-shadow var(--transition);
  display: inline-block;
  border: 0;
  cursor: pointer;
}
.nav-cta:hover, .cta:hover, .cta-primary:hover {
  transform: translateY(-1px);
  background: var(--primary-dark);
  box-shadow: 0 16px 40px color-mix(in srgb, var(--primary) 35%, transparent);
}
.cta-secondary {
  background: #fff; color: var(--primary) !important;
  padding: 11px 22px; border-radius: 999px;
  font-weight: 700; font-size: 0.95rem;
  border: 2px solid var(--primary);
  display: inline-block;
}
.cta-secondary:hover { background: var(--primary-light); }

/* Lang switcher */
.lang-switcher { position: relative; }
.lang-current {
  background: var(--bg-soft); border: 0; border-radius: 8px;
  padding: 6px 10px; font-weight: 600; color: var(--text); cursor: pointer; font-size: 0.85rem;
}
.lang-dropdown {
  display: none; position: absolute; top: calc(100% + 6px); right: 0;
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius-md);
  padding: 6px; min-width: 180px; box-shadow: var(--shadow-md); flex-direction: column; gap: 2px;
}
.lang-dropdown a {
  display: flex; align-items: center; gap: 10px; padding: 8px 10px; border-radius: 6px;
  color: var(--text); font-weight: 500;
}
.lang-dropdown a:hover { background: var(--primary-light); }
.lang-code { background: var(--primary); color: #fff; font-size: 11px; font-weight: 700; padding: 2px 6px; border-radius: 4px; min-width: 28px; text-align: center; }

/* Hamburger mobile */
.nav-hamburger {
  display: none; width: 40px; height: 40px; background: transparent; border: 0; padding: 0; cursor: pointer;
  flex-direction: column; align-items: center; justify-content: center; gap: 5px;
}
.nav-hamburger span { display: block; width: 22px; height: 2px; background: var(--text); border-radius: 2px; transition: var(--transition); }
.nav-mobile {
  display: none; position: fixed; top: 72px; left: 0; right: 0; background: #fff;
  border-top: 1px solid var(--border); padding: 20px 24px; flex-direction: column; gap: 14px;
  max-height: calc(100vh - 72px); overflow-y: auto;
}
.nav-mobile.open { display: flex; }
.nav-mobile > a { color: var(--text); font-weight: 500; padding: 8px 0; border-bottom: 1px solid var(--border-light); }
.nav-cta-mobile { background: var(--primary); color: #fff !important; padding: 14px 22px; border-radius: 999px; font-weight: 700; text-align: center; margin-top: 8px; }
.nav-mobile-langs { display: flex; flex-wrap: wrap; gap: 8px; padding: 12px 0; border-bottom: 1px solid var(--border-light); }
.nav-mobile-lang { display: flex; align-items: center; gap: 6px; padding: 6px 10px; background: var(--bg-soft); border-radius: 8px; font-size: 0.85rem; color: var(--text); }
.nav-mobile-lang--active { background: var(--primary); color: #fff !important; }
.nav-mobile-lang--active .lang-code { background: rgba(255,255,255,.25); }

@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
}

/* ═══ HERO ═══ */
.hero {
  padding: 64px 0 48px;
  position: relative;
  isolation: isolate;
  background: radial-gradient(circle at 20% 0%, var(--primary-light) 0%, transparent 50%),
              radial-gradient(circle at 80% 100%, color-mix(in srgb, var(--primary) 12%, transparent) 0%, transparent 50%);
  overflow: hidden;
}
/* Image de fond niche (générée par Nano Banana) */
.hero-bg {
  position: absolute; inset: 0; z-index: -1;
  background-size: cover; background-position: center;
  opacity: 0.18;
  filter: saturate(1.1);
}
.hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(90deg, var(--bg) 0%, color-mix(in srgb, var(--bg) 80%, transparent) 60%, transparent 100%);
}
@media (max-width: 900px) {
  .hero-bg { opacity: 0.10; }
  .hero-bg::after { background: linear-gradient(180deg, transparent 0%, var(--bg) 95%); }
}
/* Hero secondaire pour pages internes (prix/comparatif/alternative/about) */
.page-hero {
  position: relative; isolation: isolate; overflow: hidden;
  padding: 48px 0 32px;
  margin-bottom: 8px;
}
.page-hero-bg {
  position: absolute; inset: 0; z-index: -1;
  background-size: cover; background-position: center;
  opacity: 0.12;
}
.page-hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 0%, color-mix(in srgb, var(--bg) 70%, transparent) 60%, var(--bg) 100%);
}
.hero-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 56px; align-items: center; }
.hero-eyebrow {
  display: inline-block; background: var(--primary-light); color: var(--primary);
  padding: 6px 14px; border-radius: 999px; font-size: 0.85rem; font-weight: 700;
  margin-bottom: 16px; letter-spacing: 0.02em;
}
.hero h1 { font-size: clamp(2.2rem, 4.2vw, 3.4rem); margin-bottom: 18px; }
.hero h1 .accent { color: var(--primary); }
.hero-subtitle { font-size: 1.15rem; color: var(--text-muted); max-width: 540px; margin: 0 0 24px; }
.hero-cta-row { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }
.hero-rating { display: flex; align-items: center; gap: 10px; margin-top: 22px; font-size: 0.9rem; color: var(--text-muted); }
.hero-rating .stars { color: var(--gold); font-size: 1.05rem; letter-spacing: 1px; }
.hero-image { position: relative; }
.hero-image img {
  width: 100%; border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
}
.hero-badge {
  position: absolute; bottom: -18px; right: -10px;
  background: #fff; padding: 14px 18px; border-radius: var(--radius-md);
  box-shadow: var(--shadow-md); font-weight: 700; font-size: 0.9rem;
  display: flex; align-items: center; gap: 8px;
}
.hero-badge-icon { color: var(--success); font-size: 1.4rem; }

@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 32px; }
  .hero { padding: 40px 0 32px; }
}

/* ═══ POST-IT REPONSE DIRECTE ═══ */
.direct-answer {
  background: linear-gradient(135deg, #fffbeb 0%, #fef3c7 100%);
  border: 1px solid #fde68a;
  border-left: 4px solid var(--gold);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  margin: 28px 0;
  box-shadow: var(--shadow-sm);
}
.direct-answer-label {
  font-size: 0.8rem; font-weight: 800; color: #92400e; text-transform: uppercase; letter-spacing: 0.08em;
  margin-bottom: 8px;
}
.direct-answer p:last-child { margin-bottom: 0; }
.direct-answer strong { color: #78350f; }

/* ═══ TABLEAU COMPARATIF (refonte aérée 2026-05-27) ═══ */
.comparison-wrapper {
  margin: 40px 0; overflow-x: auto;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
  background: #fff;
}
.comparison-table {
  width: 100%; border-collapse: separate; border-spacing: 0;
  background: #fff; min-width: 780px;
  font-size: 1rem;
}
.comparison-table thead {
  background: var(--secondary);
  color: #fff;
}
.comparison-table th {
  padding: 22px 20px;
  text-align: left;
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: 0.01em;
  font-family: var(--font-heading);
  vertical-align: middle;
}
.comparison-table th:first-child { padding-left: 28px; }
.comparison-table th:last-child  { padding-right: 28px; }
.comparison-table th.featured,
.comparison-table thead th:nth-child(2) {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  position: relative;
  font-size: 1.05rem;
}
.comparison-table thead th:nth-child(2)::after,
.comparison-table th.featured::after {
  content: '★ N°1';
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--gold); color: var(--secondary);
  font-size: 0.7rem; font-weight: 800;
  padding: 4px 10px; border-radius: 999px;
  white-space: nowrap;
  box-shadow: var(--shadow-xs);
  letter-spacing: 0.02em;
}
.comparison-table td {
  padding: 22px 20px;
  border-bottom: 1px solid var(--border-light);
  vertical-align: middle;
  font-size: 0.98rem;
  line-height: 1.5;
}
.comparison-table td:first-child { padding-left: 28px; }
.comparison-table td:last-child  { padding-right: 28px; }
.comparison-table tr:last-child td { border-bottom: 0; }

/* Zebra striping : alterne fond sur les lignes paires */
.comparison-table tbody tr:nth-child(even) {
  background: var(--bg-soft);
}
.comparison-table tbody tr:hover {
  background: var(--primary-light) !important;
}

/* Colonne featured (2ème colonne = produit principal) — fond plus marqué */
.comparison-table tbody td:nth-child(2) {
  background: var(--primary-soft);
  font-weight: 600;
  color: var(--secondary);
  border-left: 2px solid var(--primary);
  border-right: 2px solid var(--primary);
}
.comparison-table tbody tr:last-child td:nth-child(2) {
  border-bottom: 2px solid var(--primary);
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

/* Première colonne (labels) — fond très léger + bold */
.comparison-table tbody td:first-child {
  font-weight: 700;
  color: var(--secondary);
  background: var(--bg-alt);
  font-family: var(--font-heading);
  font-size: 0.95rem;
}
.comparison-table tbody tr:nth-child(even) td:first-child {
  background: var(--bg-soft);
}

.comparison-table .product-cell { font-weight: 700; color: var(--secondary); display: flex; align-items: center; gap: 12px; }
.comparison-table .product-cell img { width: 36px; height: 36px; border-radius: 8px; object-fit: cover; border: 1px solid var(--border); }
.comparison-table .featured-row {
  background: var(--primary-soft) !important;
}
.comparison-table .featured-row td {
  font-weight: 700;
}
.comparison-table .rating-cell {
  font-size: 1rem;
  white-space: nowrap;
}
.comparison-table .rating-cell .stars { color: var(--gold); font-size: 1.05rem; letter-spacing: 1px; margin-right: 4px; }
.comparison-table .pro { color: var(--success); font-weight: 700; }
.comparison-table .con { color: var(--danger); font-weight: 700; }
.comparison-table .cta-cell {
  text-align: center;
}
.comparison-table .cta-cell .cta,
.comparison-table .cta-cell .cta-secondary {
  padding: 10px 18px; font-size: 0.88rem;
  display: inline-block;
}

/* ═══ PRODUCT CARDS (grid alternatives) ═══ */
.product-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px; margin: 32px 0;
}
.product-card {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 24px; transition: transform var(--transition), box-shadow var(--transition);
  display: flex; flex-direction: column;
}
.product-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.product-card.featured { border-color: var(--primary); box-shadow: var(--shadow-glow); position: relative; }
.product-card.featured::before {
  content: '★ ' attr(data-label); position: absolute; top: -12px; left: 20px;
  background: var(--primary); color: #fff; padding: 4px 12px; border-radius: 999px;
  font-size: 0.75rem; font-weight: 700;
}
.product-card-header { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.product-card-logo { width: 48px; height: 48px; border-radius: 10px; object-fit: cover; border: 1px solid var(--border); }
.product-card-name { font-weight: 700; font-size: 1.15rem; color: var(--secondary); }
.product-card-price { font-weight: 700; color: var(--primary); margin: 8px 0; }
.product-card-rating { display: flex; align-items: center; gap: 6px; font-size: 0.85rem; color: var(--text-muted); margin-bottom: 12px; }
.product-card-rating .stars { color: var(--gold); }
.product-card-pros, .product-card-cons { list-style: none; padding: 0; margin: 8px 0; font-size: 0.9rem; }
.product-card-pros li::before { content: '✓ '; color: var(--success); font-weight: 700; }
.product-card-cons li::before { content: '✗ '; color: var(--danger); font-weight: 700; }
.product-card .cta { margin-top: auto; text-align: center; }

/* ═══ RATING BOX (verdict) — refonte aérée 2026-05-27 ═══ */
.rating-box {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius-xl);
  padding: 48px 40px; margin: 40px 0;
  box-shadow: var(--shadow-md);
  display: grid; grid-template-columns: 220px 1fr; gap: 48px;
  align-items: stretch;
}
.rating-score {
  text-align: center;
  background: linear-gradient(135deg, var(--primary-soft) 0%, var(--primary-light) 100%);
  border: 1px solid var(--primary-light);
  border-radius: var(--radius-lg);
  padding: 32px 18px;
  display: flex; flex-direction: column; justify-content: center; align-items: center;
}
.rating-score-value {
  font-family: var(--font-heading);
  font-size: 4.5rem; font-weight: 900;
  color: var(--primary); line-height: 1;
  letter-spacing: -0.03em;
}
.rating-score-max {
  color: var(--text-muted);
  font-size: 1.1rem; font-weight: 600;
  margin-top: -4px;
}
.rating-score-stars {
  color: var(--gold);
  margin-top: 12px; letter-spacing: 3px;
  font-size: 1.3rem;
}
.rating-score-count {
  color: var(--text-muted);
  font-size: 0.82rem; font-weight: 600;
  margin-top: 8px;
  padding-top: 12px; border-top: 1px solid color-mix(in srgb, var(--primary) 25%, transparent);
  width: 100%;
}

.rating-breakdown { font-size: 1rem; line-height: 1.65; }
.rating-breakdown > div:first-child {
  margin-bottom: 24px;
  color: var(--text);
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border-light);
}
.rating-breakdown-title {
  font-family: var(--font-heading);
  font-weight: 800; color: var(--secondary);
  margin-bottom: 14px; font-size: 1.05rem;
  display: flex; align-items: center; gap: 8px;
}
.rating-pros-cons {
  display: grid; grid-template-columns: 1fr 1fr; gap: 24px;
  margin-top: 4px;
}
.rating-pros-cons > div {
  padding: 20px;
  border-radius: var(--radius-md);
}
.rating-pros-cons > div:first-child {
  background: linear-gradient(135deg, #ecfdf5 0%, #fff 100%);
  border: 1px solid #a7f3d0;
}
.rating-pros-cons > div:first-child .rating-breakdown-title { color: #065f46; }
.rating-pros-cons > div:first-child .rating-breakdown-title::before { content: '✓'; color: var(--success); }
.rating-pros-cons > div:last-child {
  background: linear-gradient(135deg, #fef2f2 0%, #fff 100%);
  border: 1px solid #fecaca;
}
.rating-pros-cons > div:last-child .rating-breakdown-title { color: #991b1b; }
.rating-pros-cons > div:last-child .rating-breakdown-title::before { content: '✗'; color: var(--danger); }
.rating-pros, .rating-cons { list-style: none; padding: 0; margin: 0; }
.rating-pros li, .rating-cons li {
  padding: 8px 0;
  font-size: 0.95rem; line-height: 1.55;
  position: relative;
  padding-left: 24px;
}
.rating-pros li:not(:last-child),
.rating-cons li:not(:last-child) {
  border-bottom: 1px dashed rgba(0,0,0,0.05);
}
.rating-pros li::before {
  content: '✓'; color: var(--success); font-weight: 800;
  position: absolute; left: 0; top: 8px;
}
.rating-cons li::before {
  content: '✗'; color: var(--danger); font-weight: 800;
  position: absolute; left: 0; top: 8px;
}

@media (max-width: 800px) {
  .rating-box { grid-template-columns: 1fr; gap: 28px; padding: 32px 24px; }
  .rating-pros-cons { grid-template-columns: 1fr; gap: 16px; }
}

/* ═══ REVIEW QUOTES (Trustpilot/G2/Reddit) ═══ */
.reviews-section { margin: 40px 0; }
.review-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; }
.review-card {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius-md);
  padding: 22px; box-shadow: var(--shadow-xs);
}
.review-source { display: flex; align-items: center; gap: 8px; margin-bottom: 10px; font-size: 0.8rem; }
.review-source-badge { background: var(--bg-soft); padding: 3px 8px; border-radius: 4px; font-weight: 600; color: var(--secondary); }
.review-source-link { color: var(--text-light); text-decoration: underline; }
.review-rating { color: var(--gold); margin-bottom: 8px; }
.review-quote { color: var(--text); font-style: italic; margin-bottom: 8px; }
.review-author { font-size: 0.85rem; color: var(--text-muted); }

/* ═══ FAQ ═══ */
.faq-section { margin: 40px 0; }
.faq-item {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius-md);
  margin-bottom: 12px; overflow: hidden;
}
.faq-question {
  width: 100%; text-align: left; background: transparent; border: 0; cursor: pointer;
  padding: 18px 22px; font-weight: 700; color: var(--secondary); font-size: 1rem;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  font-family: var(--font-heading);
}
.faq-question::after { content: '+'; font-size: 1.6rem; color: var(--primary); font-weight: 400; transition: transform var(--transition); }
.faq-item.open .faq-question::after { transform: rotate(45deg); }
.faq-answer { padding: 0 22px 0; max-height: 0; overflow: hidden; transition: max-height 0.3s ease, padding 0.3s ease; color: var(--text-muted); }
.faq-item.open .faq-answer { padding: 0 22px 18px; max-height: 800px; }

/* ═══ CTA SECTION (entre-deux) ═══ */
.cta-banner {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  border-radius: var(--radius-xl); padding: 40px; margin: 48px 0;
  display: grid; grid-template-columns: 1fr auto; gap: 24px; align-items: center;
  color: #fff;
}
.cta-banner h3 { color: #fff; margin: 0 0 6px; font-size: 1.5rem; }
.cta-banner p { color: rgba(255,255,255,.85); margin: 0; }
.cta-banner .cta { background: #fff; color: var(--primary) !important; box-shadow: 0 12px 28px rgba(0,0,0,0.2); }
.cta-banner .cta:hover { background: #f8fafc; }
@media (max-width: 700px) { .cta-banner { grid-template-columns: 1fr; text-align: center; } }

/* ═══ AUTEUR (footer card) ═══ */
.author-card-section { background: var(--bg-alt); padding: 40px 0; margin-top: 48px; border-top: 1px solid var(--border); }
.author-card { display: flex; gap: 24px; align-items: center; max-width: 720px; margin: 0 auto; background: #fff; padding: 24px; border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); border: 1px solid var(--border); }
.author-photo { width: 96px; height: 96px; border-radius: 50%; object-fit: cover; border: 3px solid var(--primary-light); }
.author-label { font-size: 0.75rem; font-weight: 700; color: var(--primary); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 4px; }
.author-name { font-family: var(--font-heading); font-weight: 800; font-size: 1.25rem; color: var(--secondary); }
.author-role { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 8px; }
.author-bio { color: var(--text-muted); font-size: 0.92rem; margin: 0 0 8px; }
.author-link { font-size: 0.9rem; font-weight: 600; }
@media (max-width: 600px) { .author-card { flex-direction: column; text-align: center; } }

/* ═══ FOOTER ═══ */
.site-footer { background: var(--secondary); color: rgba(255,255,255,.75); padding: 48px 0 0; margin-top: 48px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 36px; padding-bottom: 32px; }
.footer-col-title { color: #fff; font-weight: 700; font-family: var(--font-heading); margin-bottom: 12px; font-size: 0.95rem; letter-spacing: 0.02em; }
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { padding: 4px 0; }
.footer-col a { color: rgba(255,255,255,.75); font-size: 0.9rem; }
.footer-col a:hover { color: #fff; }
.footer-brand-name { color: #fff; font-family: var(--font-heading); font-weight: 800; font-size: 1.3rem; margin-bottom: 8px; }
.footer-tagline { font-size: 0.9rem; color: rgba(255,255,255,.65); margin: 0; }
.footer-disclosure { font-size: 0.75rem; color: rgba(255,255,255,.55); margin-top: 12px; line-height: 1.5; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding: 20px 0; font-size: 0.85rem; color: rgba(255,255,255,.55); }
@media (max-width: 800px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 500px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* ═══ CONTENT WRAPPER (pages éditoriales) ═══ */
.site-main { min-height: 60vh; }
.content { max-width: 880px; margin: 0 auto; padding: 32px var(--container-pad); }
.content > * { margin-left: auto; margin-right: auto; }
.content h2 { margin-top: 2.2em; }
.content ul, .content ol { padding-left: 24px; }
.content li { margin-bottom: 6px; }
.content a:not(.cta):not(.cta-secondary) { border-bottom: 1px solid color-mix(in srgb, var(--primary) 40%, transparent); }
.content blockquote {
  border-left: 4px solid var(--primary);
  background: var(--primary-soft);
  margin: 24px 0; padding: 16px 22px; border-radius: 0 var(--radius-md) var(--radius-md) 0;
  font-style: italic; color: var(--text);
}

/* Section title with eyebrow */
.section-eyebrow {
  display: inline-block; background: var(--primary-light); color: var(--primary);
  padding: 6px 14px; border-radius: 999px; font-size: 0.8rem; font-weight: 700;
  margin-bottom: 12px; text-transform: uppercase; letter-spacing: 0.06em;
}

/* Breadcrumb */
.breadcrumb { font-size: 0.85rem; color: var(--text-muted); margin: 16px 0 8px; }
.breadcrumb a { color: var(--text-muted); }
.breadcrumb a:hover { color: var(--primary); }
.breadcrumb-sep { margin: 0 8px; color: var(--text-light); }

/* ═══ PLANS GRID (page prix) ═══ */
.plans-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px; margin: 32px 0;
}
.plan-card {
  background: #fff; border: 2px solid var(--border); border-radius: var(--radius-lg);
  padding: 28px 24px; display: flex; flex-direction: column; gap: 12px;
  transition: var(--transition); position: relative;
}
.plan-card:hover { border-color: var(--primary); transform: translateY(-3px); box-shadow: var(--shadow-md); }
.plan-card.featured { border-color: var(--primary); box-shadow: var(--shadow-glow); }
.plan-card.featured::before {
  content: '★ ' attr(data-label); position: absolute; top: -14px; left: 50%;
  transform: translateX(-50%);
  background: var(--primary); color: #fff; padding: 5px 14px; border-radius: 999px;
  font-size: 0.78rem; font-weight: 800; white-space: nowrap;
}
.plan-name { font-family: var(--font-heading); font-weight: 800; font-size: 1.25rem; color: var(--secondary); }
.plan-price { font-family: var(--font-heading); font-weight: 900; font-size: 2.4rem; color: var(--primary); line-height: 1; }
.plan-unit { font-size: 1rem; color: var(--text-muted); font-weight: 600; }
.plan-desc { color: var(--text-muted); font-size: 0.95rem; margin: 0; }
.plan-features { list-style: none; padding: 0; margin: 8px 0 16px; }
.plan-features li { padding: 6px 0; font-size: 0.92rem; }
.plan-features li::before { content: '✓ '; color: var(--success); font-weight: 700; }
.plan-card .cta { margin-top: auto; text-align: center; }

/* ═══ VS GRID (page alternative) ═══ */
.vs-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin: 32px 0;
}
.vs-card {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 24px; position: relative;
}
.vs-card-featured { border-color: var(--primary); box-shadow: var(--shadow-glow); }
.vs-card-featured::before {
  content: '★ ' attr(data-label); position: absolute; top: -12px; left: 20px;
  background: var(--primary); color: #fff; padding: 4px 12px; border-radius: 999px;
  font-size: 0.75rem; font-weight: 700;
}
.vs-card-header { display: flex; align-items: center; gap: 14px; margin-bottom: 14px; }
.vs-card-logo { width: 56px; height: 56px; border-radius: 10px; object-fit: cover; border: 1px solid var(--border); flex-shrink: 0; }
.vs-card-name { font-family: var(--font-heading); font-weight: 800; font-size: 1.2rem; color: var(--secondary); }
.vs-card-rating { font-size: 0.9rem; color: var(--text-muted); }
.vs-card-rating .stars { color: var(--gold); }
.vs-card-price { font-weight: 700; color: var(--primary); font-size: 1.05rem; margin: 8px 0 14px; }
.vs-card .cta { display: block; text-align: center; margin-top: 14px; }
@media (max-width: 700px) {
  .vs-grid { grid-template-columns: 1fr; gap: 32px; }
}

/* ═══ AUTHOR HERO (page a-propos) ═══ */
.author-hero {
  display: flex; justify-content: center; margin: 24px 0;
}
.author-hero img {
  width: 200px; height: 200px; border-radius: 50%; object-fit: cover;
  border: 4px solid var(--primary-light); box-shadow: var(--shadow-md);
}
.lead {
  font-size: 1.15rem; color: var(--text); text-align: center; margin: 12px 0 24px;
}
.lead strong { color: var(--secondary); }

/* ═══ MENU DEROULANT (Top Marques) ═══ */
.menu-dropdown { position: relative; }
.menu-dropdown-trigger {
  display: inline-flex; align-items: center; gap: 4px;
  color: var(--text); font-weight: 500; font-size: 0.95rem;
  padding: 6px 0;
}
.menu-dropdown-trigger:hover { color: var(--primary); }
.menu-caret { font-size: 0.7em; opacity: 0.7; transition: transform var(--transition); }
.menu-dropdown:hover .menu-caret { transform: rotate(180deg); }

.menu-dropdown-panel {
  display: none;
  position: absolute; top: calc(100% + 8px); left: 50%; transform: translateX(-50%);
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius-md);
  padding: 8px; min-width: 320px;
  box-shadow: var(--shadow-md);
  z-index: 200;
}
.menu-dropdown:hover .menu-dropdown-panel,
.menu-dropdown:focus-within .menu-dropdown-panel {
  display: block;
}
/* Pont invisible pour pas perdre le hover entre trigger et panel */
.menu-dropdown::after {
  content: ''; position: absolute; top: 100%; left: 0; right: 0; height: 12px;
}
.menu-dropdown-item {
  display: block; padding: 10px 12px; border-radius: 6px;
  color: var(--text); font-size: 0.9rem;
}
.menu-dropdown-item:hover { background: var(--primary-light); color: var(--primary); }
.menu-dropdown-head { background: var(--primary-soft); }
.menu-dropdown-label { font-weight: 600; display: block; }
.menu-dropdown-sub { font-size: 0.75rem; color: var(--text-muted); display: block; margin-top: 2px; }
.menu-dropdown-divider { height: 1px; background: var(--border-light); margin: 6px 0; }
.menu-dropdown-section-label {
  font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.06em;
  color: var(--text-light); padding: 8px 12px 4px; font-weight: 700;
}

/* Mobile : details/summary natif */
.nav-mobile-dropdown { padding: 0; border-bottom: 1px solid var(--border-light); }
.nav-mobile-dropdown summary {
  cursor: pointer; padding: 8px 0; font-weight: 500; color: var(--text);
  display: flex; align-items: center; gap: 6px; list-style: none;
}
.nav-mobile-dropdown summary::-webkit-details-marker { display: none; }
.nav-mobile-dropdown[open] summary { color: var(--primary); }
.nav-mobile-dropdown a {
  display: block; padding: 8px 0 8px 16px; font-size: 0.9rem;
  border-bottom: 0;
  color: var(--text-muted);
}
.nav-mobile-dropdown a:hover { color: var(--primary); }

/* ═══ MEGA TABLE (page Top Marques) ═══ */
.brands-megatable tbody td { font-size: 0.9rem; }
.brand-badge {
  display: inline-block; padding: 3px 8px; border-radius: 999px;
  font-size: 0.75rem; font-weight: 700; letter-spacing: 0.02em;
}
.badge-low      { background: #ecfdf5; color: #065f46; }
.badge-mid      { background: #eff6ff; color: #1e40af; }
.badge-premium  { background: #fdf4ff; color: #86198f; }
.badge-luxe     { background: #fef3c7; color: #92400e; }

/* ═══ SCOREBOARD VS (page /vs/[concurrent]) ═══ */
.vs-scoreboard {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 20px; align-items: stretch;
  margin: 28px 0;
}
.vs-score-card {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 24px;
  display: flex; flex-direction: column;
}
.vs-score-card-main { border-color: var(--primary); box-shadow: var(--shadow-glow); position: relative; }
.vs-score-card-main::before {
  content: '★ Recommandé'; position: absolute; top: -12px; left: 20px;
  background: var(--primary); color: #fff; padding: 4px 12px; border-radius: 999px;
  font-size: 0.75rem; font-weight: 700;
}
.vs-score-header { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 14px; }
.vs-score-name { font-family: var(--font-heading); font-weight: 800; font-size: 1.4rem; color: var(--secondary); }
.vs-score-value { font-family: var(--font-heading); font-weight: 900; font-size: 2.2rem; color: var(--primary); line-height: 1; }
.vs-score-card ul { list-style: none; padding: 0; margin: 0 0 14px; font-size: 0.92rem; }
.vs-score-card li { padding: 5px 0; }
.vs-score-card li::before { content: '✓ '; color: var(--success); font-weight: 700; }
.vs-score-card .cta { margin-top: auto; text-align: center; }
.vs-score-divider {
  align-self: center; font-family: var(--font-heading); font-weight: 900;
  font-size: 1.5rem; color: var(--text-light); padding: 0 8px;
}
@media (max-width: 700px) {
  .vs-scoreboard { grid-template-columns: 1fr; gap: 12px; }
  .vs-score-divider { text-align: center; padding: 4px 0; }
}

/* ═══════════════════════════════════════════════════════════════════════
   HOME — Composants pro (refonte 2026-05-27)
   ═══════════════════════════════════════════════════════════════════════ */

/* ─── STAT BAR (preuves rapides sous le hero) ─── */
.stat-bar {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 24px 32px;
  margin: -32px auto 32px;
  max-width: var(--container-max);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  box-shadow: var(--shadow-md);
  position: relative;
  z-index: 5;
}
.stat-bar-item { text-align: center; position: relative; }
.stat-bar-item:not(:last-child)::after {
  content: ''; position: absolute; right: -12px; top: 8px; bottom: 8px; width: 1px;
  background: var(--border-light);
}
.stat-bar-value {
  font-family: var(--font-heading); font-weight: 900; font-size: 1.8rem;
  color: var(--secondary); line-height: 1; margin-bottom: 4px;
  display: flex; align-items: baseline; justify-content: center; gap: 4px;
}
.stat-bar-value .stat-suffix { font-size: 0.9rem; color: var(--text-muted); font-weight: 600; }
.stat-bar-label { font-size: 0.78rem; color: var(--text-muted); font-weight: 600; letter-spacing: 0.02em; }
.stat-bar-icon { color: var(--primary); font-size: 1.1rem; margin-bottom: 4px; display: inline-block; }
@media (max-width: 700px) {
  .stat-bar { grid-template-columns: 1fr 1fr; gap: 16px; padding: 20px; margin: -24px 12px 24px; }
  .stat-bar-item::after { display: none !important; }
  .stat-bar-item:nth-child(2n)::before {
    content: ''; position: absolute; left: -8px; top: 0; bottom: 0; width: 1px;
    background: var(--border-light);
  }
  .stat-bar-value { font-size: 1.4rem; }
}

/* ─── USP CARDS (3 bénéfices clés) ─── */
.usp-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin: 40px 0;
}
.usp-card {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 28px 24px;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.usp-card:hover {
  transform: translateY(-3px); border-color: var(--primary-light);
  box-shadow: var(--shadow-md);
}
.usp-icon {
  width: 52px; height: 52px; border-radius: 14px;
  background: var(--primary-soft);
  color: var(--primary);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; margin-bottom: 16px;
}
.usp-title {
  font-family: var(--font-heading); font-weight: 800; font-size: 1.15rem;
  color: var(--secondary); margin-bottom: 8px;
}
.usp-desc { font-size: 0.95rem; color: var(--text-muted); line-height: 1.55; margin: 0; }
@media (max-width: 800px) { .usp-grid { grid-template-columns: 1fr; gap: 16px; } }

/* ─── PROCESS STEPS (timeline numérotée) ─── */
.process-section {
  background: var(--bg-alt); padding: 56px 0; margin: 48px 0;
  border-radius: var(--radius-xl);
}
.process-section .content { padding: 0 24px; }
.process-section h2 { text-align: center; margin-top: 0; }
.process-lede { text-align: center; color: var(--text-muted); margin: 0 auto 36px; max-width: 600px; }
.process-steps {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; position: relative;
}
.process-steps::before {
  content: ''; position: absolute; top: 24px; left: 12.5%; right: 12.5%; height: 2px;
  background: linear-gradient(to right, var(--primary-light) 0%, var(--primary-light) 100%);
  z-index: 0;
}
.process-step { position: relative; z-index: 1; text-align: center; }
.process-step-number {
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--primary); color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--font-heading); font-weight: 900; font-size: 1.1rem;
  margin-bottom: 14px; box-shadow: var(--shadow-glow);
  border: 3px solid var(--bg-alt);
}
.process-step-title {
  font-family: var(--font-heading); font-weight: 800; font-size: 1.05rem;
  color: var(--secondary); margin-bottom: 6px;
}
.process-step-desc { font-size: 0.88rem; color: var(--text-muted); margin: 0; line-height: 1.55; }
@media (max-width: 800px) {
  .process-steps { grid-template-columns: 1fr 1fr; row-gap: 32px; }
  .process-steps::before { display: none; }
}
@media (max-width: 500px) { .process-steps { grid-template-columns: 1fr; } }

/* ─── USE CASE CARDS (pour qui c'est fait) ─── */
.usecase-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px; margin: 32px 0;
}
.usecase-card {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius-md);
  padding: 22px;
  display: flex; flex-direction: column; gap: 10px;
  transition: border-color var(--transition);
}
.usecase-card:hover { border-color: var(--primary); }
.usecase-emoji { font-size: 1.8rem; line-height: 1; }
.usecase-title {
  font-family: var(--font-heading); font-weight: 800; font-size: 1.05rem;
  color: var(--secondary); margin: 0;
}
.usecase-reco {
  font-size: 0.9rem; color: var(--text); line-height: 1.55; margin: 0;
}
.usecase-verdict {
  margin-top: auto; padding-top: 10px; border-top: 1px solid var(--border-light);
  font-size: 0.82rem; font-weight: 700;
}
.usecase-verdict-yes  { color: var(--success); }
.usecase-verdict-no   { color: var(--danger); }
.usecase-verdict-warn { color: var(--warning); }

/* ─── PRICING TABS (par profil) ─── */
.pricing-tabs-section { margin: 40px 0; }
.pricing-tabs {
  display: flex; gap: 8px; background: var(--bg-soft); padding: 6px;
  border-radius: 999px; max-width: 560px; margin: 0 auto 28px;
}
.pricing-tab {
  flex: 1; padding: 12px 16px; border: 0; background: transparent;
  font-weight: 700; font-size: 0.92rem; color: var(--text-muted);
  border-radius: 999px; cursor: pointer; transition: var(--transition);
}
.pricing-tab:hover { color: var(--text); }
.pricing-tab.active { background: #fff; color: var(--primary); box-shadow: var(--shadow-xs); }
.pricing-panel { display: none; }
.pricing-panel.active { display: block; }
.pricing-panel-grid {
  display: grid; grid-template-columns: 1fr 1.4fr; gap: 32px; align-items: center;
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 32px;
}
.pricing-amount {
  text-align: center; padding: 24px; background: var(--primary-soft); border-radius: var(--radius-md);
}
.pricing-amount-value { font-family: var(--font-heading); font-weight: 900; font-size: 3rem; color: var(--primary); line-height: 1; }
.pricing-amount-unit  { font-size: 0.95rem; color: var(--text-muted); margin-top: 4px; }
.pricing-amount-monthly { font-size: 1.1rem; color: var(--secondary); margin-top: 12px; font-weight: 700; }
.pricing-amount-promo {
  display: inline-block; margin-top: 12px; padding: 4px 10px;
  background: #fef3c7; color: #92400e; border-radius: 999px;
  font-size: 0.75rem; font-weight: 700;
}
.pricing-details ul { list-style: none; padding: 0; margin: 0 0 16px; }
.pricing-details li {
  padding: 8px 0; border-bottom: 1px dashed var(--border-light);
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  font-size: 0.92rem;
}
.pricing-details li strong { color: var(--secondary); }
.pricing-details li:last-child { border-bottom: 0; }
@media (max-width: 800px) {
  .pricing-tabs { flex-wrap: wrap; }
  .pricing-tab { flex: 1 1 calc(50% - 4px); }
  .pricing-panel-grid { grid-template-columns: 1fr; gap: 20px; padding: 24px; }
}

/* ─── TRUST BADGES (bandeau confiance) ─── */
.trust-section {
  background: linear-gradient(135deg, var(--primary-soft) 0%, var(--bg-alt) 100%);
  padding: 32px; border-radius: var(--radius-lg);
  margin: 40px 0; text-align: center;
}
.trust-section h3 { font-size: 1.1rem; margin: 0 0 16px; color: var(--text); font-weight: 700; }
.trust-badges { display: flex; gap: 24px; justify-content: center; flex-wrap: wrap; }
.trust-badge {
  display: flex; align-items: center; gap: 10px; padding: 12px 18px;
  background: #fff; border-radius: var(--radius-md); box-shadow: var(--shadow-xs);
  font-size: 0.9rem; font-weight: 600;
}
.trust-badge-icon { font-size: 1.3rem; }

/* ─── PROMO BANNER (codes promo inline soft) ─── */
.promo-banner {
  background: #fff7ed; border: 1px dashed #f59e0b; border-radius: var(--radius-md);
  padding: 18px 22px; margin: 32px 0;
  display: flex; align-items: center; gap: 16px; flex-wrap: wrap;
}
.promo-banner-icon { font-size: 1.8rem; }
.promo-banner-text { flex: 1; min-width: 200px; }
.promo-banner-title { font-weight: 700; color: #92400e; font-size: 0.95rem; }
.promo-banner-detail { color: var(--text); font-size: 0.85rem; margin-top: 2px; }
.promo-banner-code {
  font-family: monospace; font-weight: 800; font-size: 1.1rem; color: #92400e;
  background: #fef3c7; padding: 6px 14px; border-radius: 6px; border: 1px dashed #f59e0b;
  user-select: all;
}

/* ─── METHODOLOGY (notre test approfondi) ─── */
.methodology-section {
  background: var(--secondary); color: rgba(255,255,255,0.85); padding: 48px 32px;
  border-radius: var(--radius-xl); margin: 48px 0;
}
.methodology-section h2 { color: #fff; text-align: center; margin-top: 0; }
.methodology-lede { text-align: center; color: rgba(255,255,255,0.7); margin: 0 auto 32px; max-width: 640px; }
.methodology-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.methodology-stat { text-align: center; }
.methodology-stat-value { font-family: var(--font-heading); font-weight: 900; font-size: 2.4rem; color: var(--gold); line-height: 1; }
.methodology-stat-label { font-size: 0.85rem; color: rgba(255,255,255,0.7); margin-top: 6px; }
@media (max-width: 700px) { .methodology-grid { grid-template-columns: 1fr 1fr; row-gap: 24px; } }

/* ─── AUTHOR PREVIEW (mini-card auteur dans le flow) ─── */
.author-preview {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 24px; margin: 32px 0;
  display: flex; gap: 24px; align-items: center;
}
.author-preview img {
  width: 96px; height: 96px; border-radius: 50%; object-fit: cover;
  border: 3px solid var(--primary-light);
  flex-shrink: 0;
}
.author-preview-content { flex: 1; }
.author-preview-eyebrow {
  font-size: 0.72rem; font-weight: 800; color: var(--primary);
  text-transform: uppercase; letter-spacing: 0.08em;
  margin-bottom: 4px;
}
.author-preview-name {
  font-family: var(--font-heading); font-weight: 800; font-size: 1.2rem;
  color: var(--secondary); margin-bottom: 4px;
}
.author-preview-role { color: var(--text-muted); font-size: 0.88rem; margin-bottom: 10px; }
.author-preview-bio { font-size: 0.92rem; color: var(--text); margin: 0 0 8px; }
.author-preview-link { font-size: 0.88rem; font-weight: 700; color: var(--primary); }
@media (max-width: 600px) { .author-preview { flex-direction: column; text-align: center; } }

/* ─── SECTION TITLES UNIFORMISÉS ─── */
.section-block { margin: 64px 0; }
.section-block h2 {
  font-size: clamp(1.5rem, 2.6vw, 2.1rem);
  margin-top: 0;
}
.section-block .section-lede {
  color: var(--text-muted); font-size: 1.05rem; line-height: 1.6;
  max-width: 720px; margin: -8px 0 28px;
}

/* ─── BAND ALT (alternance de fonds) ─── */
.band-alt {
  background: var(--bg-alt);
  padding: 48px 0;
  margin: 64px 0;
}
.band-alt .section-block {
  margin: 0;
}
.band-alt + .band-alt { margin-top: 0; }

/* Pour mettre une section dans le wrap "section-block" avec fond alt léger */
.section-block.section-block-alt {
  background: var(--bg-soft);
  padding: 40px;
  border-radius: var(--radius-xl);
  margin: 64px 0;
}

/* ─── REVIEW CARDS — version plus pro ─── */
.review-card {
  position: relative;
  padding: 24px;
}
.review-card .review-source-badge {
  background: var(--primary-soft); color: var(--primary);
  border-radius: 6px; padding: 4px 10px; font-weight: 700; font-size: 0.75rem;
  display: inline-flex; align-items: center; gap: 6px;
}
.review-card .review-verified {
  display: inline-flex; align-items: center; gap: 4px;
  font-size: 0.7rem; color: var(--success); font-weight: 700;
  margin-left: 8px;
}
.review-card .review-quote {
  margin: 14px 0 12px; font-size: 0.95rem; line-height: 1.6; font-style: normal; color: var(--text);
}
.review-card .review-quote::before { content: '"'; color: var(--primary); font-size: 1.4rem; font-weight: 900; margin-right: 4px; }
.review-card .review-quote::after  { content: '"'; color: var(--primary); font-size: 1.4rem; font-weight: 900; margin-left: 4px; }

/* ─── KEY POINTS — bulles colorées (raisons quitter / forces) ─── */
.key-points {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px; margin: 24px 0;
}
.key-point {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius-md);
  padding: 18px;
}
.key-point-num {
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--primary-soft); color: var(--primary);
  font-weight: 800; display: flex; align-items: center; justify-content: center;
  margin-bottom: 10px;
  font-family: var(--font-heading);
}
.key-point-title {
  font-family: var(--font-heading); font-weight: 700; font-size: 1rem;
  color: var(--secondary); margin-bottom: 6px;
}
.key-point-desc { font-size: 0.88rem; color: var(--text-muted); line-height: 1.55; margin: 0; }

/* ─── PAIN POINTS — frustrations concrètes du concurrent ─── */
.pain-points {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px; margin: 24px 0;
}
.pain-point {
  display: flex; gap: 14px; align-items: flex-start;
  background: #fff;
  border: 1px solid var(--border);
  border-left: 4px solid var(--danger);
  border-radius: var(--radius-md);
  padding: 18px 20px;
}
.pain-point-icon { font-size: 1.3rem; line-height: 1.4; flex-shrink: 0; }
.pain-point-title {
  font-family: var(--font-heading); font-weight: 800; font-size: 1rem;
  color: var(--secondary); margin-bottom: 6px;
}
.pain-point-desc { font-size: 0.9rem; color: var(--text-muted); line-height: 1.55; margin: 0; }

/* ─── FEATURE-VS TABLE — comparaison fonctionnelle ligne par ligne ─── */
.feature-vs-table tbody td { font-size: 0.95rem; }
/* La colonne featured (produit promu) est nth-child(2) → déjà stylée violet par .comparison-table-wide */
.feature-vs-table .fv-win {
  font-weight: 700;
}
.feature-vs-table td.fv-win { color: var(--secondary); }
.feature-vs-table .fv-check {
  display: inline-flex; align-items: center; justify-content: center;
  width: 20px; height: 20px; border-radius: 50%;
  background: var(--success); color: #fff;
  font-size: 0.72rem; font-weight: 900;
  margin-right: 6px; vertical-align: middle;
}
/* La 3e colonne (concurrent) n'est pas featured : on neutralise le style violet hérité */
.feature-vs-table tbody td:nth-child(3) {
  background: #fff;
}
.feature-vs-table tbody tr:nth-child(even) td:nth-child(3) {
  background: #fafbfc;
}
.feature-vs-table tbody td:nth-child(3).fv-win {
  background: #ecfdf5;
}

/* ─── GAME CHANGERS — atouts décisifs (cards) ─── */
.game-changers {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px; margin: 24px 0;
}
.game-changer {
  background: linear-gradient(135deg, var(--primary-soft) 0%, #fff 100%);
  border: 1px solid var(--primary-light);
  border-radius: var(--radius-md);
  padding: 22px;
}
.game-changer-icon {
  font-size: 1.8rem; line-height: 1; margin-bottom: 10px;
}
.game-changer-title {
  font-family: var(--font-heading); font-weight: 800; font-size: 1.05rem;
  color: var(--secondary); margin-bottom: 8px;
}
.game-changer-desc { font-size: 0.9rem; color: var(--text); line-height: 1.6; margin: 0; }

/* ─── PRICE VERDICT — confrontation des prix ─── */
.price-verdict {
  background: var(--bg-alt); border-radius: var(--radius-lg);
  padding: 28px; margin: 24px 0;
}
.price-verdict-cols {
  display: grid; grid-template-columns: 1fr auto 1fr; gap: 18px; align-items: center;
}
.price-verdict-card {
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius-md); padding: 22px 18px; text-align: center;
}
.price-verdict-card.featured {
  border: 2px solid var(--primary);
  box-shadow: 0 6px 20px var(--primary-soft);
}
.price-verdict-name {
  font-family: var(--font-heading); font-weight: 800; font-size: 1rem;
  color: var(--secondary); margin-bottom: 8px;
}
.price-verdict-price {
  font-family: var(--font-heading); font-weight: 900; font-size: 1.3rem;
  color: var(--primary); line-height: 1.3;
}
.price-verdict-vs {
  font-family: var(--font-heading); font-weight: 900; color: var(--text-light);
  font-size: 0.9rem;
}
.price-verdict-text {
  margin: 20px 0 0; font-size: 0.95rem; line-height: 1.65; color: var(--text);
}
@media (max-width: 600px) {
  .price-verdict-cols { grid-template-columns: 1fr; }
  .price-verdict-vs { padding: 4px 0; }
}

/* ─── DECISION MATRIX (matrice de décision : si X → Y) ─── */
.decision-matrix {
  display: grid; grid-template-columns: 1fr 24px 1fr; gap: 12px;
  background: var(--bg-alt); border-radius: var(--radius-lg); padding: 24px;
  margin: 32px 0;
}
.decision-row {
  display: contents;
}
.decision-condition {
  background: #fff; padding: 14px 16px; border-radius: var(--radius-md);
  border-left: 4px solid var(--text-light);
  font-size: 0.92rem;
}
.decision-condition strong { color: var(--secondary); }
.decision-arrow {
  align-self: center; text-align: center; color: var(--primary);
  font-size: 1.2rem; font-weight: 800;
}
.decision-result {
  background: var(--primary-soft); padding: 14px 16px; border-radius: var(--radius-md);
  border-left: 4px solid var(--primary);
  font-size: 0.92rem; font-weight: 600; color: var(--secondary);
}
.decision-result.alt { background: #fef3c7; border-left-color: #f59e0b; color: #92400e; }
@media (max-width: 700px) {
  .decision-matrix { grid-template-columns: 1fr; gap: 6px; }
  .decision-arrow { padding: 4px 0; }
}

/* ─── TIMELINE — Parcours auteur ou évolution prix ─── */
.timeline {
  position: relative; padding-left: 32px; margin: 32px 0;
}
.timeline::before {
  content: ''; position: absolute; left: 8px; top: 8px; bottom: 8px; width: 2px;
  background: var(--primary-light);
}
.timeline-item {
  position: relative; margin-bottom: 28px;
}
.timeline-item::before {
  content: ''; position: absolute; left: -28px; top: 6px; width: 12px; height: 12px;
  border-radius: 50%; background: var(--primary); box-shadow: 0 0 0 3px var(--primary-soft);
}
.timeline-date {
  font-size: 0.8rem; font-weight: 700; color: var(--primary);
  text-transform: uppercase; letter-spacing: 0.05em;
}
.timeline-title {
  font-family: var(--font-heading); font-weight: 800; font-size: 1.05rem;
  color: var(--secondary); margin: 2px 0;
}
.timeline-desc { font-size: 0.92rem; color: var(--text-muted); margin: 0; }

/* ─── INCLUDED LIST (ce que comprend / ne comprend pas) ─── */
.included-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin: 24px 0;
}
.included-col {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius-md);
  padding: 20px;
}
.included-col-title {
  font-family: var(--font-heading); font-weight: 800; font-size: 0.95rem;
  margin: 0 0 12px;
  display: flex; align-items: center; gap: 8px;
}
.included-col-title.yes { color: var(--success); }
.included-col-title.no  { color: var(--danger); }
.included-col ul { list-style: none; padding: 0; margin: 0; }
.included-col li { padding: 6px 0; font-size: 0.9rem; line-height: 1.5; }
.included-col.yes-col li::before { content: '✓ '; color: var(--success); font-weight: 700; }
.included-col.no-col  li::before { content: '✗ '; color: var(--danger);  font-weight: 700; }
@media (max-width: 700px) { .included-grid { grid-template-columns: 1fr; } }

/* ─── TIPS BOX (astuces "comment payer moins cher") ─── */
.tips-section { margin: 40px 0; }
.tips-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
}
.tip-card {
  background: linear-gradient(135deg, #ecfdf5 0%, #fff 100%);
  border: 1px solid #a7f3d0;
  border-radius: var(--radius-md);
  padding: 22px;
  display: flex; flex-direction: column; gap: 8px;
}
.tip-card-num {
  font-family: var(--font-heading); font-weight: 900;
  color: var(--success); font-size: 1.4rem; line-height: 1;
}
.tip-card-title { font-weight: 700; color: var(--secondary); font-size: 1rem; }
.tip-card-desc { font-size: 0.88rem; color: var(--text); margin: 0; line-height: 1.55; }
.tip-card-saving { font-size: 0.82rem; color: var(--success); font-weight: 700; margin-top: auto; }

/* ─── METHODOLOGY MINI (version compacte pour pages internes) ─── */
.methodo-mini {
  background: var(--bg-alt); border-radius: var(--radius-md);
  padding: 20px 24px; margin: 28px 0;
  display: flex; gap: 20px; align-items: center;
}
.methodo-mini-icon {
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--primary); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; flex-shrink: 0;
}
.methodo-mini-title { font-weight: 700; color: var(--secondary); font-size: 0.95rem; margin: 0 0 4px; }
.methodo-mini-text { font-size: 0.88rem; color: var(--text-muted); margin: 0; }

/* ─── EXPERTISE TAGS (a-propos) ─── */
.expertise-tags { display: flex; flex-wrap: wrap; gap: 10px; margin: 16px 0 24px; }
.expertise-tag {
  background: var(--primary-soft); color: var(--primary);
  padding: 8px 14px; border-radius: 999px;
  font-size: 0.88rem; font-weight: 600;
}

/* ─── CREDENTIALS (a-propos diplômes) ─── */
.credentials-list { list-style: none; padding: 0; margin: 16px 0; }
.credentials-list li {
  padding: 10px 0; border-bottom: 1px solid var(--border-light);
  display: flex; align-items: center; gap: 12px; font-size: 0.92rem;
}
.credentials-list li::before {
  content: '🎓'; font-size: 1.2rem; flex-shrink: 0;
}
.credentials-list li:last-child { border-bottom: 0; }

/* ═══ COMPARISON TABLE WIDE (pleine largeur 1180px) ─── refonte 2026-05-27 ═══ */
.comparison-wrapper.wide {
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--border);
  /* Breakout centré : prend ~1130px même si le parent (.content) ne fait que 880px */
  width: min(1130px, 94vw);
  margin-left: 50%;
  transform: translateX(-50%);
}
@media (max-width: 900px) {
  /* sur mobile, le wrapper reprend la largeur du parent (pas de breakout) */
  .comparison-wrapper.wide { width: 100%; margin-left: 0; transform: none; }
}
.comparison-table-wide {
  width: 100%;
  table-layout: fixed; /* colonnes équilibrées */
  border-collapse: separate; border-spacing: 0;
  min-width: 0;
}

/* Header — gradient sombre élégant */
.comparison-table-wide thead {
  background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
}
.comparison-table-wide thead th {
  padding: 32px 24px;
  text-align: center;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.15rem;
  color: #fff;
  letter-spacing: -0.005em;
  vertical-align: middle;
  border-bottom: 4px solid transparent;
  word-break: keep-all;
}
.comparison-table-wide thead th:first-child {
  text-align: left;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.55);
  font-weight: 700;
  background: #0f172a;
  width: 14%;
}

/* Colonne featured — gradient violet + badge ★ N°1 */
.comparison-table-wide thead th.featured {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  position: relative;
  border-bottom: 4px solid var(--gold);
  font-size: 1.25rem;
  padding-top: 44px;
}
/* Neutralise les badges hérités du CSS standard (.comparison-table) quand on est en .wide
   — sinon double/triple badge ★N°1 (::after standard + ::after nth-child(2) + ::before wide) */
.comparison-table-wide thead th::after { content: none !important; }
/* Format "lignes par produit" (comparatif, top-marques) : pas de badge sur l'en-tête
   (la 2e colonne n'est pas le produit principal mais "Note"/"Marque") */
.comparison-table-rows thead th::after { content: none !important; }
.comparison-table-wide thead th.featured::before {
  content: '★ N°1';
  position: absolute;
  top: 14px; left: 50%; transform: translateX(-50%);
  background: var(--gold); color: var(--secondary);
  font-size: 0.7rem; font-weight: 800;
  padding: 4px 12px; border-radius: 999px;
  letter-spacing: 0.04em;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  white-space: nowrap;
}

/* Body cells — beaucoup d'air */
.comparison-table-wide tbody td {
  padding: 28px 24px;
  text-align: center;
  vertical-align: middle;
  font-size: 1rem;
  line-height: 1.55;
  border-bottom: 1px solid var(--border-light);
  color: var(--text);
  background: #fff;
}
.comparison-table-wide tbody tr:last-child td { border-bottom: 0; }

/* Première colonne (labels) — fond léger + uppercase */
.comparison-table-wide tbody td:first-child {
  text-align: left;
  background: var(--bg-alt);
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--secondary);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-right: 1px solid var(--border-light);
}

/* Colonne featured — fond violet pâle + texte plus marqué */
.comparison-table-wide tbody td:nth-child(2) {
  background: var(--primary-soft);
  border-left: 2px solid var(--primary);
  border-right: 2px solid var(--primary);
  font-weight: 600;
  color: var(--secondary);
  position: relative;
}
.comparison-table-wide tbody tr:last-child td:nth-child(2) {
  border-bottom: 2px solid var(--primary);
}

/* Zebra striping subtil sur les lignes non-featured */
.comparison-table-wide tbody tr:nth-child(even) td {
  background: #fafbfc;
}
.comparison-table-wide tbody tr:nth-child(even) td:first-child {
  background: var(--bg-soft);
}
.comparison-table-wide tbody tr:nth-child(even) td:nth-child(2) {
  background: color-mix(in srgb, var(--primary) 9%, white);
}

/* Hover row */
.comparison-table-wide tbody tr:hover td {
  background: var(--primary-light) !important;
}
.comparison-table-wide tbody tr:hover td:first-child {
  background: color-mix(in srgb, var(--primary) 14%, white) !important;
}

/* Rating cell — étoiles bien lisibles */
.comparison-table-wide .rating-cell {
  font-size: 1rem;
  white-space: nowrap;
}
.comparison-table-wide .rating-cell .stars {
  display: block; color: var(--gold);
  font-size: 1.15rem; letter-spacing: 2px;
  margin-bottom: 6px;
}
.comparison-table-wide .rating-cell strong {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  color: var(--secondary);
}

/* CTA cells */
.comparison-table-wide .cta-cell {
  padding: 24px 16px !important;
}
.comparison-table-wide .cta-cell .cta {
  padding: 12px 20px; font-size: 0.9rem;
  white-space: nowrap;
  display: inline-block;
}
.comparison-table-wide .cta-cell .cta-secondary {
  padding: 10px 16px; font-size: 0.85rem;
  white-space: nowrap;
  display: inline-block;
}

/* Responsive : sur mobile/tablette, fallback scroll horizontal */
@media (max-width: 900px) {
  .comparison-wrapper.wide {
    overflow-x: auto;
    border-radius: var(--radius-md);
  }
  .comparison-table-wide {
    min-width: 760px;
    table-layout: auto;
  }
  .comparison-table-wide thead th { padding: 20px 14px; font-size: 0.95rem; }
  .comparison-table-wide thead th.featured { padding-top: 36px; font-size: 1.05rem; }
  .comparison-table-wide tbody td { padding: 18px 14px; font-size: 0.92rem; }
}

/* Print */
@media print {
  .site-header, .nav-mobile, .cta-banner, .cta, .nav-cta, .menu-dropdown-panel { display: none !important; }
}
