/* ══════════════════════════════════════════════
   STELNEO — article.css
   Feuille de style commune à tous les articles
══════════════════════════════════════════════ */

/* ── 1. TOKENS ────────────────────────────── */
:root {
  --bleu:       #002f4b;
  --bleu-dark:  #001e32;
  --bleu-clair: #185FA5;
  --jaune:      #F6C13C;
  --beige:      #F4EEDF;
  --blanc:      #FFFFFF;
  --gris:       #5a6a78;
  --gris-light: #e8e2d6;

  --font-display: 'Bebas Neue', sans-serif;
  --font-body:    'DM Sans', sans-serif;

  --page-pad:    clamp(24px, 6vw, 112px);
  --content-max: 760px;
  --section-pad: clamp(64px, 8vw, 112px);

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: var(--font-body);
  background: var(--beige);
  color: var(--bleu);
  -webkit-font-smoothing: antialiased;
}

/* ── 2. NAV ───────────────────────────────── */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px var(--page-pad);
  transition: background .3s, padding .3s, box-shadow .3s;
}
#navbar.scrolled {
  background: var(--bleu);
  padding-top: 16px;
  padding-bottom: 16px;
  box-shadow: 0 2px 24px rgba(0,0,0,.18);
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 28px;
  letter-spacing: 2px;
  color: var(--beige);
  text-decoration: none;
}
.nav-logo span { color: var(--jaune); }
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-links a {
  font-size: 14px;
  font-weight: 400;
  letter-spacing: .5px;
  color: rgba(244,238,223,.78);
  text-decoration: none;
  transition: color .2s;
}
.nav-links a:hover,
.nav-links a.active { color: var(--beige); }
.btn-nav {
  background: var(--jaune);
  color: var(--bleu) !important;
  font-weight: 500 !important;
  padding: 9px 22px;
  border-radius: 50px;
  transition: opacity .2s !important;
}
.btn-nav:hover { opacity: .88; }

/* ── 3. HERO ARTICLE ──────────────────────── */
.article-hero {
  background: var(--bleu);
  padding: 140px var(--page-pad) 80px;
  position: relative;
  overflow: hidden;
}
.article-hero::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 480px; height: 480px;
  border-radius: 50%;
  border: 56px solid rgba(246,193,60,.08);
}
.article-hero::after {
  content: '';
  position: absolute;
  bottom: -120px; left: 10%;
  width: 320px; height: 320px;
  border-radius: 50%;
  border: 40px solid rgba(246,193,60,.05);
}
.hero-inner {
  max-width: calc(var(--content-max) + 80px);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.hero-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 50px;
  color: var(--bleu);
  background: var(--jaune);
}
.reading-time {
  font-size: 13px;
  font-weight: 300;
  color: rgba(244,238,223,.55);
}
.article-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(36px, 5.5vw, 64px);
  line-height: .97;
  letter-spacing: .5px;
  color: var(--beige);
  margin-bottom: 24px;
}
.article-hero h1 .accent { color: var(--jaune); }
.hero-intro {
  font-size: clamp(15px, 1.5vw, 17px);
  font-weight: 300;
  line-height: 1.8;
  color: rgba(244,238,223,.72);
  max-width: 580px;
  margin-bottom: 36px;
}

/* Stat banner */
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  border-radius: var(--radius-md);
  overflow: hidden;
  max-width: 640px;
}
.stat-block {
  background: rgba(255,255,255,.07);
  padding: 20px 24px;
  backdrop-filter: blur(4px);
}
.stat-block:first-child { border-radius: var(--radius-md) 0 0 var(--radius-md); }
.stat-block:last-child  { border-radius: 0 var(--radius-md) var(--radius-md) 0; }
.stat-value {
  font-family: var(--font-display);
  font-size: 38px;
  line-height: 1;
  color: var(--jaune);
}
.stat-label {
  font-size: 11px;
  font-weight: 300;
  line-height: 1.5;
  color: rgba(244,238,223,.6);
  margin-top: 4px;
}

/* ── 4. BODY LAYOUT ───────────────────────── */
.article-body {
  padding: var(--section-pad) var(--page-pad);
  background: var(--beige);
}
.article-layout {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: var(--content-max) 1fr;
  gap: clamp(40px, 5vw, 80px);
  align-items: start;
}

/* ── 5. CONTENU ARTICLE ───────────────────── */
.article-content h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.2vw, 38px);
  line-height: 1.02;
  letter-spacing: .3px;
  color: var(--bleu);
  margin: 52px 0 18px;
  padding-top: 52px;
  border-top: 1px solid rgba(0,47,75,.1);
}
.article-content h2:first-child {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}
.article-content h3 {
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: .3px;
  color: var(--bleu);
  margin: 32px 0 12px;
}
.article-content p {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.85;
  color: #3a4e5e;
  margin-bottom: 18px;
}
.article-content strong { font-weight: 500; color: var(--bleu); }
.article-content ul {
  list-style: none;
  margin: 12px 0 22px 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.article-content ul li {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.65;
  color: #3a4e5e;
  padding-left: 20px;
  position: relative;
}
.article-content ul li::before {
  content: '';
  position: absolute;
  left: 0; top: 10px;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--jaune);
}

/* ── 6. CALLOUT ───────────────────────────── */
.callout {
  background: var(--bleu);
  border-radius: var(--radius-md);
  padding: 24px 28px;
  margin: 28px 0;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.callout-icon { font-size: 20px; flex-shrink: 0; margin-top: 2px; }
.callout p {
  font-size: 15px !important;
  font-weight: 400 !important;
  color: rgba(244,238,223,.88) !important;
  margin: 0 !important;
  line-height: 1.7 !important;
}
.callout p strong {
  color: var(--jaune) !important;
  font-weight: 500 !important;
}

/* Lien source */
.source-link {
  font-size: 13px;
  color: var(--bleu-clair);
  text-decoration: none;
  font-weight: 400;
  border-bottom: 1px solid rgba(24,95,165,.3);
  transition: border-color .2s;
}
.source-link:hover { border-color: var(--bleu-clair); }

/* ── 7. TABLEAUX ──────────────────────────── */

/* Seuils */
.seuils-table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0 28px;
  border-radius: var(--radius-md);
  overflow: hidden;
}
.seuils-table thead tr { background: var(--bleu); }
.seuils-table thead th {
  padding: 14px 20px;
  text-align: left;
  font-family: var(--font-display);
  font-size: 16px;
  letter-spacing: .5px;
  color: var(--beige);
}
.seuils-table tbody tr {
  border-bottom: 1px solid rgba(0,47,75,.08);
  background: var(--blanc);
  transition: background .18s;
}
.seuils-table tbody tr:hover { background: rgba(246,193,60,.07); }
.seuils-table tbody tr.current { background: rgba(246,193,60,.12); }
.seuils-table tbody td {
  padding: 14px 20px;
  font-size: 15px;
  font-weight: 300;
  color: #3a4e5e;
  vertical-align: top;
}
.seuils-table tbody td:first-child {
  font-family: var(--font-display);
  font-size: 18px;
  color: var(--bleu);
}

/* Badges */
.badge-now {
  display: inline-block;
  background: var(--jaune);
  color: var(--bleu);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 2px 9px;
  border-radius: 50px;
  margin-left: 8px;
  vertical-align: middle;
}
.badge-ok {
  display: inline-block;
  background: rgba(45,125,45,.12);
  color: #2d7d2d;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 2px 9px;
  border-radius: 50px;
}
.badge-soon {
  display: inline-block;
  background: rgba(246,193,60,.18);
  color: #a07800;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 2px 9px;
  border-radius: 50px;
}

/* Termes */
.terms-table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0 24px;
  border-radius: var(--radius-md);
  overflow: hidden;
}
.terms-table thead tr { background: var(--bleu); }
.terms-table thead th {
  padding: 12px 18px;
  text-align: left;
  font-family: var(--font-display);
  font-size: 15px;
  letter-spacing: .5px;
  color: var(--beige);
}
.terms-table tbody tr { border-bottom: 1px solid rgba(0,47,75,.07); background: var(--blanc); }
.terms-table tbody td { padding: 12px 18px; font-size: 14px; font-weight: 300; color: #3a4e5e; }
.terms-table tbody td:first-child { font-weight: 500; color: var(--bleu); }

/* Valeurs colorées */
.val-green   { color: #2d7d2d; font-weight: 500; }
.val-red     { color: #b93a3a; font-weight: 500; }
.val-neutral { color: var(--gris); }

/* ROI */
.roi-wrapper {
  margin: 32px 0;
  background: var(--blanc);
  border: 1px solid rgba(0,47,75,.1);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.roi-header {
  background: var(--bleu);
  padding: 20px 28px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.roi-header-icon { font-size: 22px; }
.roi-header h3 {
  font-family: var(--font-display) !important;
  font-size: 20px !important;
  letter-spacing: .3px !important;
  color: var(--beige) !important;
  margin: 0 !important;
}
.roi-header span {
  font-size: 12px;
  font-weight: 300;
  color: rgba(244,238,223,.55);
  margin-left: auto;
}
.roi-table { width: 100%; border-collapse: collapse; }
.roi-table thead tr { background: rgba(0,47,75,.04); }
.roi-table thead th {
  padding: 12px 20px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gris);
  text-align: left;
}
.roi-table thead th:not(:first-child) { text-align: right; }
.roi-table tbody tr { border-bottom: 1px solid rgba(0,47,75,.06); }
.roi-table tbody td { padding: 13px 20px; font-size: 14px; font-weight: 300; color: #3a4e5e; }
.roi-table tbody td:not(:first-child) { text-align: right; font-variant-numeric: tabular-nums; }
.roi-table tbody tr.total-row {
  background: rgba(246,193,60,.1);
  border-top: 2px solid var(--jaune);
}
.roi-table tbody tr.total-row td { font-weight: 500; color: var(--bleu); }
.roi-note {
  padding: 14px 20px;
  background: rgba(246,193,60,.06);
  font-size: 12px;
  font-weight: 300;
  color: var(--gris);
  line-height: 1.6;
  border-top: 1px solid rgba(0,47,75,.06);
}

/* ── 8. SCHÉMA REVERSE LOGISTICS ──────────── */
.schema-wrapper {
  margin: 32px 0;
  background: var(--blanc);
  border: 1px solid rgba(0,47,75,.1);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.schema-header {
  background: var(--bleu-clair);
  padding: 18px 28px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.schema-header h3 {
  font-family: var(--font-display) !important;
  font-size: 18px !important;
  color: var(--beige) !important;
  margin: 0 !important;
}
.schema-body { padding: 32px 28px; }
.flow-steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  position: relative;
}
.flow-step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
}
.flow-step:not(:last-child)::after {
  content: '→';
  position: absolute;
  right: -12px;
  top: 14px;
  font-size: 18px;
  color: var(--gris);
  z-index: 1;
}
.step-icon {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--bleu);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  margin-bottom: 12px;
  flex-shrink: 0;
}
.step-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--bleu);
  margin-bottom: 4px;
}
.step-desc {
  font-size: 11px;
  font-weight: 300;
  color: var(--gris);
  line-height: 1.5;
  padding: 0 6px;
}
.flow-return {
  margin-top: 20px;
  display: flex;
  align-items: center;
  background: rgba(0,47,75,.04);
  border-radius: var(--radius-sm);
  padding: 10px 16px;
}
.return-arrow {
  font-size: 13px;
  font-weight: 400;
  color: var(--bleu-clair);
  letter-spacing: .3px;
  flex: 1;
  text-align: center;
}
.return-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gris);
  padding: 0 14px;
}

/* ── 9. CRITÈRES & LISTES ─────────────────── */
.criteria-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 20px 0 24px;
}
.criteria-item {
  background: var(--blanc);
  border: 1px solid rgba(0,47,75,.08);
  border-radius: var(--radius-sm);
  padding: 16px 18px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.criteria-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--jaune);
  flex-shrink: 0;
  margin-top: 6px;
}
.criteria-text {
  font-size: 14px;
  font-weight: 300;
  color: #3a4e5e;
  line-height: 1.5;
}
.criteria-text strong {
  font-weight: 500;
  color: var(--bleu);
  font-size: 13px;
  display: block;
  margin-bottom: 2px;
}

.obligations-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 20px 0;
}
.obligation-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: var(--blanc);
  border: 1px solid rgba(0,47,75,.08);
  border-radius: var(--radius-sm);
  padding: 18px 20px;
}
.obligation-num {
  font-family: var(--font-display);
  font-size: 32px;
  line-height: 1;
  color: rgba(0,47,75,.12);
  flex-shrink: 0;
  width: 32px;
}
.obligation-content h4 {
  font-size: 15px;
  font-weight: 500;
  color: var(--bleu);
  margin-bottom: 6px;
}
.obligation-content p {
  font-size: 14px !important;
  font-weight: 300 !important;
  color: var(--gris) !important;
  line-height: 1.6 !important;
  margin: 0 !important;
}

.steps-list {
  counter-reset: steps;
  list-style: none;
  margin: 16px 0 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.steps-list li {
  counter-increment: steps;
  font-size: 15px;
  font-weight: 300;
  color: #3a4e5e;
  line-height: 1.6;
  padding-left: 36px;
  position: relative;
}
.steps-list li::before {
  content: counter(steps);
  position: absolute;
  left: 0; top: -1px;
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--jaune);
  color: var(--bleu);
  font-size: 12px;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
}

.risques-list {
  list-style: none;
  margin: 14px 0 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.risques-list li {
  font-size: 15px;
  font-weight: 300;
  color: #3a4e5e;
  line-height: 1.6;
  padding-left: 26px;
  position: relative;
}
.risques-list li::before {
  content: '⚠';
  position: absolute;
  left: 0;
  color: #c0392b;
  font-size: 13px;
}

/* ── 10. SIDEBAR ──────────────────────────── */
.article-sidebar {
  position: sticky;
  top: 100px;
}
.sommaire {
  background: var(--blanc);
  border: 1px solid rgba(0,47,75,.1);
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 24px;
}
.sommaire-header {
  background: var(--bleu);
  padding: 14px 20px;
  font-family: var(--font-display);
  font-size: 14px;
  letter-spacing: 2px;
  color: var(--beige);
  text-transform: uppercase;
}
.sommaire-list { list-style: none; padding: 8px 0; }
.sommaire-list li a {
  display: block;
  padding: 9px 20px;
  font-size: 13px;
  font-weight: 300;
  color: #3a4e5e;
  text-decoration: none;
  border-left: 2px solid transparent;
  transition: border-color .2s, color .2s, background .2s;
  line-height: 1.4;
}
.sommaire-list li a:hover {
  border-left-color: var(--jaune);
  color: var(--bleu);
  background: rgba(246,193,60,.06);
}
.sommaire-list li a.active {
  border-left-color: var(--jaune);
  color: var(--bleu);
  font-weight: 500;
}
.sidebar-cta {
  background: var(--bleu);
  border-radius: var(--radius-md);
  padding: 24px 20px;
  text-align: center;
}
.sidebar-cta p {
  font-size: 13px !important;
  font-weight: 300 !important;
  color: rgba(244,238,223,.7) !important;
  line-height: 1.6 !important;
  margin-bottom: 16px !important;
}
.sidebar-cta strong {
  display: block;
  font-family: var(--font-display);
  font-size: 20px;
  letter-spacing: .3px;
  color: var(--beige) !important;
  margin-bottom: 10px;
}
.btn-yellow {
  display: inline-block;
  background: var(--jaune);
  color: var(--bleu);
  font-size: 13px;
  font-weight: 500;
  padding: 11px 22px;
  border-radius: 50px;
  text-decoration: none;
  transition: opacity .2s;
}
.btn-yellow:hover { opacity: .88; }
.btn-ghost-sm {
  display: inline-block;
  color: rgba(244,238,223,.6);
  font-size: 12px;
  font-weight: 300;
  text-decoration: none;
  margin-top: 10px;
  border-bottom: 1px solid rgba(244,238,223,.2);
}

/* ── 11. CONCLUSION ───────────────────────── */
.article-conclusion {
  background: var(--bleu);
  border-radius: var(--radius-lg);
  padding: 40px;
  margin-top: 48px;
}
.article-conclusion h2 {
  font-family: var(--font-display);
  font-size: clamp(26px, 3vw, 34px);
  color: var(--beige);
  margin-bottom: 20px;
  border: none !important;
  padding: 0 !important;
  margin-top: 0 !important;
}
.conclusion-points {
  list-style: none !important;
  padding-left: 0 !important;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
}
.conclusion-points li {
  font-size: 15px;
  font-weight: 400;
  color: #f4eedf !important;
  line-height: 1.6;
  padding-left: 24px;
  position: relative;
  list-style: none !important;
}
.conclusion-points li::marker { display: none; }
.conclusion-points li::before {
  content: '→';
  position: absolute;
  left: 0;
  top: 0;
  width: auto;
  height: auto;
  border-radius: 0;
  background: none;
  color: var(--jaune);
  font-weight: 500;
  font-size: 15px;
}
.conclusion-cta-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}
.btn-primary-lg {
  display: inline-block;
  background: var(--jaune);
  color: var(--bleu);
  font-size: 14px;
  font-weight: 500;
  padding: 13px 28px;
  border-radius: 50px;
  text-decoration: none;
  transition: opacity .2s;
}
.btn-primary-lg:hover { opacity: .88; }
.btn-ghost-lg {
  display: inline-block;
  color: rgba(244,238,223,.68);
  font-size: 14px;
  font-weight: 300;
  padding: 13px 24px;
  border-radius: 50px;
  border: 1px solid rgba(244,238,223,.2);
  text-decoration: none;
  transition: border-color .2s, color .2s;
}
.btn-ghost-lg:hover { color: var(--beige); border-color: rgba(244,238,223,.4); }

/* ── 12. BACK LINK ────────────────────────── */
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 400;
  color: rgba(244,238,223,.6);
  text-decoration: none;
  margin-bottom: 36px;
  transition: color .2s;
}
.back-link:hover { color: var(--beige); }
.back-link svg { transition: transform .2s; }
.back-link:hover svg { transform: translateX(-3px); }

/* ── 13. FOOTER ───────────────────────────── */
footer {
  background: var(--bleu-dark);
  padding: 64px var(--page-pad) 32px;
  color: rgba(244,238,223,.6);
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(244,238,223,.08);
}
.footer-brand .logo {
  font-family: var(--font-display);
  font-size: 32px;
  letter-spacing: 3px;
  color: var(--beige);
  text-decoration: none;
  display: block;
  margin-bottom: 14px;
}
.footer-brand p { font-size: 14px; font-weight: 300; line-height: 1.75; max-width: 280px; }
.footer-col h4 { font-size: 11px; font-weight: 500; letter-spacing: 2px; text-transform: uppercase; color: var(--beige); margin-bottom: 16px; }
.footer-col a { display: block; font-size: 14px; font-weight: 300; color: rgba(244,238,223,.55); text-decoration: none; margin-bottom: 10px; transition: color .2s; }
.footer-col a:hover { color: var(--beige); }
.footer-col a.highlight { color: var(--jaune); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-copy { font-size: 13px; font-weight: 300; }
.footer-legal { display: flex; gap: 24px; }
.footer-legal a { font-size: 13px; font-weight: 300; color: rgba(244,238,223,.4); text-decoration: none; }

/* ── 14. REVEAL ───────────────────────────── */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .55s ease, transform .55s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* ── 15b. TABLEAU COMPARATIF ──────────────── */
.comparatif-table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0 28px;
  border-radius: var(--radius-md);
  overflow: hidden;
}
.comparatif-table thead tr { background: var(--bleu); }
.comparatif-table thead th {
  padding: 14px 18px;
  text-align: left;
  font-family: var(--font-display);
  font-size: 15px;
  letter-spacing: .5px;
  color: var(--beige);
}
.comparatif-table thead th.col-stelneo {
  background: rgba(246,193,60,.18);
  color: var(--jaune);
}
.comparatif-table tbody tr {
  border-bottom: 1px solid rgba(0,47,75,.08);
  background: var(--blanc);
  transition: background .18s;
}
.comparatif-table tbody tr:hover { background: rgba(246,193,60,.05); }
.comparatif-table tbody tr.highlight-row { background: rgba(0,47,75,.03); }
.comparatif-table tbody td {
  padding: 13px 18px;
  font-size: 14px;
  font-weight: 300;
  color: #3a4e5e;
  vertical-align: middle;
}
.comparatif-table tbody td:first-child {
  font-weight: 500;
  color: var(--bleu);
  font-size: 14px;
}
.comparatif-table tbody td.col-stelneo {
  background: rgba(246,193,60,.06);
  font-weight: 400;
  color: var(--bleu);
}
.comparatif-table tbody tr.highlight-row td.col-stelneo {
  background: rgba(246,193,60,.14);
  font-weight: 500;
}

/* Badges score */
.score-good   { color: #2d7d2d; font-weight: 500; }
.score-bad    { color: #b93a3a; font-weight: 500; }
.score-medium { color: #a07800; font-weight: 400; }

/* ── 15c. ARTICLE QUALIF (CTA bloc bas) ───── */
.article-qualif {
  background: var(--blanc);
  border: 1px solid rgba(0,47,75,.1);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-top: 48px;
}
.article-qualif-header {
  background: var(--bleu-clair);
  padding: 18px 28px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.article-qualif-header h3 {
  font-family: var(--font-display) !important;
  font-size: 18px !important;
  color: var(--beige) !important;
  margin: 0 !important;
  letter-spacing: .3px !important;
}
.article-qualif-body {
  padding: 24px 28px 28px;
}
.article-qualif-body > p {
  font-size: 14px;
  font-weight: 300;
  color: var(--gris);
  line-height: 1.7;
  margin-bottom: 20px;
}
.qualif-items {
  counter-reset: qualif-counter;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
}
.qualif-items li {
  counter-increment: qualif-counter;
  font-size: 14px;
  font-weight: 300;
  color: #3a4e5e;
  line-height: 1.6;
  padding: 12px 16px 12px 46px;
  position: relative;
  background: rgba(0,47,75,.025);
  border-radius: var(--radius-sm);
  border-left: 3px solid var(--jaune);
}
.qualif-items li::before {
  content: counter(qualif-counter);
  position: absolute;
  left: 14px;
  top: 12px;
  font-family: var(--font-display);
  font-size: 20px;
  line-height: 1;
  color: rgba(0,47,75,.18);
}
.qualif-cta-row {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}

/* ── 15d. SOURCES LIST ────────────────────── */
.sources-list {
  margin: 18px 0 42px;
  padding-left: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.sources-list li {
  font-size: 14px;
  line-height: 1.7;
  color: var(--gris);
  font-weight: 300;
}
.sources-list a {
  color: var(--bleu);
  text-decoration: none;
  border-bottom: 1px solid rgba(0,47,75,.18);
  transition: border-color .2s;
}
.sources-list a:hover { border-color: var(--bleu); }

/* Sidebar sommaire scrollable */
.sommaire-list {
  max-height: calc(100vh - 320px);
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: rgba(0,47,75,.15) transparent;
}
.sommaire-list::-webkit-scrollbar { width: 3px; }
.sommaire-list::-webkit-scrollbar-thumb { background: rgba(0,47,75,.18); border-radius: 2px; }

/* ── 15. RESPONSIVE ───────────────────────── */
@media (max-width: 960px) {
  .article-layout { grid-template-columns: 1fr; }
  .article-sidebar { position: static; }
  .sommaire { display: none; }
}
@media (max-width: 640px) {
  .flow-steps { flex-direction: column; gap: 12px; }
  .flow-step:not(:last-child)::after {
    content: '↓';
    right: auto; top: auto;
    bottom: -16px; left: 50%;
    transform: translateX(-50%);
  }
  .criteria-grid { grid-template-columns: 1fr; }
  .hero-stats { grid-template-columns: 1fr; max-width: 280px; }
  .stat-block:first-child { border-radius: var(--radius-md) var(--radius-md) 0 0; }
  .stat-block:last-child  { border-radius: 0 0 var(--radius-md) var(--radius-md); }
  .footer-top { grid-template-columns: 1fr 1fr; }
}