/* We Make Smart — feuille de style du site statique
   Palette et dosages identiques à la version en production (réglages anti-fadeur inclus).
   Navy #0B1F3F / Navy fond sombre #0B1426 / Accent #1A56DB / Glacier #F2F6FC / Texte #1E2D4A / Muted #4B5563 */

:root {
  --navy: #0B1F3F;
  --navy-dark: #0B1426;
  --navy-card: #0F1D35;
  --heading: #0D1B3E;
  --accent: #1A56DB;
  --accent-hover: #1544B5;
  --accent-light: #2563EB;
  --glacier: #F2F6FC;
  --ice: #EAF0FB;
  --body: #1E2D4A;
  --muted: #4B5563;
  --line: #E5E7EB;
  --gray-note: #C3CCDA;
  --shadow-card: 0 4px 20px rgba(11, 31, 63, 0.08);
  --shadow-card-hover: 0 6px 24px rgba(11, 31, 63, 0.12);
  --radius: 0.5rem;
  --radius-lg: 0.75rem;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', ui-sans-serif, system-ui, sans-serif;
  color: var(--body);
  background: #fff;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3.serif, .serif { font-family: 'DM Serif Display', Georgia, serif; font-weight: 400; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font: inherit; background: none; border: 0; cursor: pointer; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }

/* ---------- Boutons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .375rem;
  padding: .875rem 1.5rem; border-radius: var(--radius);
  font-size: .875rem; font-weight: 600; transition: background .2s, color .2s;
}
.btn-primary { background: var(--accent); color: #fff; }
.btn-primary:hover { background: var(--accent-hover); }
.btn-white { background: #fff; color: var(--heading); }
.btn-white:hover { background: #f3f4f6; }
.btn-sm { padding: .625rem 1.25rem; }
.link-accent { color: var(--accent); font-size: .875rem; font-weight: 500; display: inline-flex; align-items: center; gap: .25rem; }
.link-accent:hover { text-decoration: underline; }
.link-muted { color: var(--muted); font-size: .875rem; font-weight: 500; display: inline-flex; align-items: center; gap: .25rem; transition: color .2s; }
.link-muted:hover { color: var(--accent); }

/* ---------- En-têtes de section ---------- */
.kicker { font-size: .75rem; font-weight: 600; text-transform: uppercase; letter-spacing: .08em; color: var(--accent); margin-bottom: .75rem; }
.kicker-gray { color: #9CA3AF; }
.bar { width: 2.5rem; height: 4px; background: var(--accent); margin-bottom: 1.5rem; }
.bar-center { margin-left: auto; margin-right: auto; }
.section { padding: 4rem 0; }
@media (min-width: 1024px) { .section { padding: 6rem 0; } }
.section-glacier { background: var(--glacier); }
.section-navy { background: var(--navy-dark); color: #fff; }

h2.section-title { font-size: 1.875rem; line-height: 1.2; color: var(--navy); }
@media (min-width: 768px) { h2.section-title { font-size: 2.25rem; } }
@media (min-width: 1024px) { h2.section-title { font-size: 2.75rem; } }
.section-navy h2.section-title { color: #fff; }
.section-sub { font-size: 1rem; color: var(--body); margin-top: 1rem; max-width: 42rem; }
.text-center { text-align: center; }
.mt-10 { margin-top: 2.5rem; }
.mt-8 { margin-top: 2rem; }
.mb-12 { margin-bottom: 3rem; }

/* ---------- Header ---------- */
.site-header { position: fixed; inset: 0 0 auto 0; z-index: 50; background: #fff; transition: box-shadow .2s, background .2s; }
.site-header.scrolled { background: rgba(255,255,255,.95); backdrop-filter: blur(4px); box-shadow: 0 1px 2px rgba(0,0,0,.05); }
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 4rem; }
@media (min-width: 1024px) { .header-inner { height: 5rem; } }
.header-logo img { height: 2.5rem; width: 2.5rem; }
@media (min-width: 1024px) { .header-logo img { height: 3rem; width: 3rem; } }
.header-nav { display: none; }
.header-cta { display: none; }
@media (min-width: 1024px) {
  .header-nav { display: flex; align-items: center; gap: 1.5rem; }
  .header-nav a { font-size: .875rem; font-weight: 500; color: var(--heading); text-underline-offset: 4px; transition: color .2s; }
  .header-nav a:hover { color: var(--accent); text-decoration: underline; }
  .header-cta { display: inline-flex; }
  .menu-btn { display: none; }
}
.menu-btn { padding: .5rem; color: var(--heading); }
.mobile-nav { display: none; background: #fff; border-top: 1px solid #f3f4f6; padding: 1rem 0; }
.mobile-nav.open { display: block; }
.mobile-nav nav { display: flex; flex-direction: column; gap: 1rem; }
.mobile-nav a { font-size: .875rem; font-weight: 500; color: var(--heading); }

/* ---------- Hero ---------- */
.hero { padding-top: 6rem; padding-bottom: 2rem; background: #fff; }
@media (min-width: 1024px) { .hero { padding-top: 8rem; padding-bottom: 4rem; } }
.hero-topbar { display: flex; flex-wrap: wrap; align-items: center; gap: .5rem; font-size: .75rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--accent); margin-bottom: 1.5rem; }
.hero-topbar .dot { color: #d1d5db; }
.hero-grid { display: grid; gap: 3rem; align-items: start; }
@media (min-width: 1024px) { .hero-grid { grid-template-columns: 1fr 1fr; } }
.hero h1 { font-size: 2.25rem; line-height: 1.1; color: var(--heading); margin-bottom: 1.5rem; }
@media (min-width: 768px) { .hero h1 { font-size: 3rem; } }
@media (min-width: 1024px) { .hero h1 { font-size: 3.5rem; } }
.hero-sub { font-size: 1rem; color: var(--muted); max-width: 32rem; }
@media (min-width: 1024px) { .hero-sub { font-size: 1.125rem; } }
.hero-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 1rem; margin: 2rem 0; }
.hero-badges { display: flex; flex-wrap: wrap; align-items: center; gap: 1rem; font-size: .875rem; color: var(--muted); }
.hero-badges span { display: inline-flex; align-items: center; gap: .375rem; }
.hero-badges svg { width: 1rem; height: 1rem; color: var(--accent); flex-shrink: 0; }
.hero-media { position: relative; display: none; }
@media (min-width: 1024px) { .hero-media { display: block; } }
.video-thumb { position: relative; width: 100%; aspect-ratio: 4/3; border-radius: var(--radius-lg); overflow: hidden; box-shadow: 0 20px 25px -5px rgba(0,0,0,.1), 0 8px 10px -6px rgba(0,0,0,.1); cursor: pointer; display: block; padding: 0; }
.video-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s; }
.video-thumb:hover img { transform: scale(1.05); }
.video-thumb .overlay { position: absolute; inset: 0; background: rgba(0,0,0,.3); transition: background .2s; }
.video-thumb:hover .overlay { background: rgba(0,0,0,.4); }
.play-wrap { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; }
.play-circle { width: 4rem; height: 4rem; border-radius: 9999px; background: rgba(255,255,255,.9); display: flex; align-items: center; justify-content: center; box-shadow: 0 10px 15px -3px rgba(0,0,0,.1); transition: transform .2s; }
.video-thumb:hover .play-circle { transform: scale(1.1); }
.play-circle svg { width: 1.75rem; height: 1.75rem; color: var(--accent); margin-left: .25rem; }
.video-label { position: absolute; left: 1rem; right: 1rem; bottom: 1rem; text-align: left; color: #fff; font-size: .875rem; font-weight: 500; text-shadow: 0 2px 8px rgba(0,0,0,.6); }
.slot-card { margin-top: 1rem; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 1rem; box-shadow: 0 1px 2px rgba(0,0,0,.05); }
.slot-card .kicker { margin-bottom: .25rem; }
.slot-card p:last-child { font-size: .875rem; font-weight: 500; color: var(--heading); }
.deco-circle { position: absolute; top: -1.5rem; right: -1.5rem; width: 6rem; height: 6rem; border-radius: 9999px; border: 2px solid var(--line); opacity: .5; }
.hero-banner { margin-top: 3rem; padding: 1rem 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); text-align: center; font-size: .875rem; color: var(--muted); }
.hero-banner strong { color: var(--heading); }

/* ---------- Modale vidéo ---------- */
.video-modal { position: fixed; inset: 0; z-index: 100; display: none; align-items: center; justify-content: center; background: rgba(0,0,0,.8); backdrop-filter: blur(4px); padding: 1rem; }
.video-modal.open { display: flex; }
.video-modal-inner { position: relative; width: 100%; max-width: 56rem; }
.video-close { position: absolute; top: -3rem; right: 0; color: #fff; }
.video-close:hover { color: #d1d5db; }
.video-close svg { width: 2rem; height: 2rem; }
.video-frame { border-radius: var(--radius-lg); overflow: hidden; box-shadow: 0 25px 50px -12px rgba(0,0,0,.25); }
.video-frame video { width: 100%; height: auto; display: block; }

/* ---------- Cartes (douleurs, méthode) ---------- */
.cards-4 { display: grid; grid-template-columns: 1fr; gap: 1rem; }
.cards-3 { display: grid; grid-template-columns: 1fr; gap: 1rem; }
@media (min-width: 768px) { .cards-3 { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 768px) { .cards-4 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .cards-4 { grid-template-columns: repeat(4, 1fr); } }
.card {
  background: #fff; border-radius: var(--radius); padding: 1.25rem;
  border-top: 3px solid var(--accent);
  box-shadow: var(--shadow-card);
  transition: box-shadow .2s, transform .2s;
}
.card:hover { box-shadow: var(--shadow-card-hover); transform: translateY(-2px); }
.card-icon { width: 2.5rem; height: 2.5rem; border-radius: var(--radius); background: var(--accent); display: flex; align-items: center; justify-content: center; margin-bottom: 1rem; }
.card-icon svg { width: 1.25rem; height: 1.25rem; color: #fff; }
.card h3 { font-family: 'DM Sans', sans-serif; font-weight: 700; font-size: .875rem; color: var(--navy); margin-bottom: .5rem; }
.card p { font-size: .875rem; color: var(--body); line-height: 1.65; }
.cards-note { margin-top: 2rem; text-align: center; font-size: .875rem; color: var(--muted); font-style: italic; max-width: 48rem; margin-left: auto; margin-right: auto; }

.step-card { padding: 1.5rem; }
.step-num { width: 2.5rem; height: 2.5rem; border-radius: 9999px; display: flex; align-items: center; justify-content: center; font-size: .75rem; font-weight: 700; background: var(--navy); color: #fff; margin-bottom: 1rem; }
.step-card h3 { font-family: 'DM Serif Display', serif; font-weight: 400; font-size: 1.125rem; }
.step-card p { margin-bottom: 1rem; }

/* ---------- Positionnement (navy) ---------- */
.pos-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; margin-bottom: 3rem; }
@media (min-width: 768px) { .pos-grid { grid-template-columns: repeat(2, 1fr); } }
.pos-card { border: 1px solid #374151; border-radius: var(--radius-lg); padding: 1.5rem; background: var(--navy-card); }
.pos-card svg { width: 2rem; height: 2rem; color: var(--accent-light); margin-bottom: 1rem; }
.pos-card h3 { font-family: 'DM Sans', sans-serif; font-weight: 700; color: #fff; font-size: 1.125rem; margin-bottom: .5rem; }
.pos-card p { font-size: .875rem; color: #d1d5db; line-height: 1.65; }
.section-navy .section-sub, .navy-sub { color: #d1d5db; margin-left: auto; margin-right: auto; }
.accent-line { color: var(--accent-light); }
.gray-line { color: #9CA3AF; }

/* ---------- Résultats ---------- */
.stats-grid { display: grid; grid-template-columns: 1fr; gap: 2rem; margin-bottom: 3rem; }
@media (min-width: 768px) { .stats-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .stats-grid { grid-template-columns: repeat(4, 1fr); } }
.stat { text-align: center; }
@media (min-width: 1024px) { .stat { text-align: left; } }
.stat-value { display: flex; align-items: baseline; gap: .25rem; flex-wrap: wrap; justify-content: center; }
@media (min-width: 1024px) { .stat-value { justify-content: flex-start; } }
.stat-prefix { font-size: .875rem; color: #9CA3AF; }
.stat-num { font-family: 'DM Serif Display', serif; font-size: 3rem; line-height: 1; color: var(--accent-light); }
.stat-suffix { font-family: 'DM Serif Display', serif; font-size: 1.5rem; color: var(--accent-light); }
.stat-label { font-weight: 600; color: #fff; font-size: .9375rem; margin-top: .75rem; }
.stat-mention { font-size: .8125rem; color: #9CA3AF; margin-top: .5rem; line-height: 1.5; }
.stats-footnote { text-align: center; font-size: .8125rem; color: #9CA3AF; max-width: 52rem; margin: 0 auto; line-height: 1.6; }

/* ---------- Qualification ---------- */
.qual-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
@media (min-width: 768px) { .qual-grid { grid-template-columns: 1fr 1fr; } }
.qual-card { border-radius: var(--radius-lg); padding: 1.5rem; box-shadow: var(--shadow-card); }
.qual-yes { background: var(--ice); border-left: 3px solid var(--accent); }
.qual-no { background: #fff; border-left: 3px solid var(--gray-note); }
.qual-head { display: flex; align-items: center; gap: .75rem; margin-bottom: 1.5rem; }
.qual-head svg { width: 1.5rem; height: 1.5rem; flex-shrink: 0; }
.qual-yes svg { color: var(--accent); }
.qual-no svg { color: var(--gray-note); }
.qual-head h3 { font-family: 'DM Sans', sans-serif; font-weight: 700; font-size: 1.125rem; color: var(--navy); }
.qual-card ul { display: flex; flex-direction: column; gap: 1rem; }
.qual-card li { display: flex; align-items: flex-start; gap: .75rem; font-size: .875rem; }
.qual-card li svg { width: 1.25rem; height: 1.25rem; flex-shrink: 0; margin-top: .125rem; }
.qual-yes li { color: var(--body); }
.qual-no li { color: var(--muted); }
.qual-note { margin-top: 1.5rem; font-size: .75rem; color: var(--muted); }
.qual-note a { color: var(--accent); }
.qual-note a:hover { text-decoration: underline; }
.qual-sub { font-family: 'DM Serif Display', serif; font-size: 1.5rem; color: var(--muted); margin-top: .5rem; }

/* ---------- Fondateur ---------- */
.founder-grid { display: grid; gap: 3rem; align-items: center; }
@media (min-width: 1024px) { .founder-grid { grid-template-columns: 1fr 1fr; } }
.founder-photo { display: flex; justify-content: center; }
.founder-photo .ring { width: 16rem; height: 16rem; border-radius: 9999px; overflow: hidden; border: 3px solid var(--navy); box-shadow: 0 4px 20px rgba(11,31,63,.12); }
@media (min-width: 1024px) { .founder-photo .ring { width: 20rem; height: 20rem; } }
.founder-photo img { width: 100%; height: 100%; object-fit: cover; }
.founder h2 { font-size: 1.875rem; color: var(--navy); margin-bottom: .5rem; }
@media (min-width: 768px) { .founder h2 { font-size: 2.25rem; } }
.founder-role { color: var(--accent); font-weight: 500; margin-bottom: 1.5rem; }
.founder-text { display: flex; flex-direction: column; gap: 1rem; color: var(--body); line-height: 1.7; margin-bottom: 2rem; }
.founder blockquote { border-left: 4px solid var(--accent); padding-left: 1.25rem; margin-bottom: 2rem; }
.founder blockquote p { font-family: 'DM Serif Display', serif; font-size: 1.125rem; font-style: italic; color: var(--navy); }
.founder blockquote footer { margin-top: .5rem; font-size: .875rem; color: var(--muted); }
.guarantees { border-top: 1px solid var(--line); padding-top: 1.5rem; }
.guarantees .label { font-size: .75rem; font-weight: 600; text-transform: uppercase; letter-spacing: .08em; color: var(--muted); margin-bottom: 1rem; }
.guarantees ul { display: flex; flex-direction: column; gap: .75rem; }
.guarantees li { display: flex; align-items: flex-start; gap: .75rem; font-size: .875rem; color: var(--body); }
.guarantees li .dot { color: var(--accent); font-weight: 700; }
.founder-linkedin { margin-top: 1.5rem; }
.founder-linkedin a, .li-link { display: inline-flex; align-items: center; gap: .5rem; font-size: .875rem; color: var(--accent); font-weight: 500; }
.founder-linkedin a:hover { text-decoration: underline; }
.founder-linkedin svg { width: 1rem; height: 1rem; }

/* ---------- FAQ ---------- */
.faq-grid { display: grid; gap: 3rem; }
@media (min-width: 1024px) { .faq-grid { grid-template-columns: 1fr 2fr; } }
.faq-intro h2 { color: var(--heading); margin-bottom: 1.5rem; }
.faq-intro p { font-size: .875rem; color: var(--muted); margin-bottom: 1.5rem; }
.faq-list { display: flex; flex-direction: column; gap: .5rem; }
.faq-item { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 0 1.5rem; transition: border-color .2s, box-shadow .2s; }
.faq-item[open] { border-color: rgba(26,86,219,.3); box-shadow: 0 1px 2px rgba(0,0,0,.05); }
.faq-item summary { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 1.25rem 0; font-size: .875rem; font-weight: 600; color: var(--heading); cursor: pointer; list-style: none; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item[open] summary { color: var(--accent); }
.faq-item summary .chev { flex-shrink: 0; width: 1rem; height: 1rem; transition: transform .2s; color: var(--muted); }
.faq-item[open] summary .chev { transform: rotate(180deg); }
.faq-item .answer { font-size: .875rem; color: var(--muted); line-height: 1.7; padding-bottom: 1.25rem; white-space: pre-line; }

/* ---------- CTA / Cal.com ---------- */
.cta-head h2 { color: #fff; margin-bottom: 1.5rem; }
.cta-points { display: flex; flex-wrap: wrap; justify-content: center; gap: 1.5rem; font-size: .875rem; color: #9CA3AF; margin-bottom: 2rem; }
.cta-points span { display: inline-flex; align-items: center; gap: .5rem; }
.cta-points .dot { width: .375rem; height: .375rem; border-radius: 9999px; background: var(--accent); display: inline-block; }
.cal-wrap { max-width: 48rem; margin: 0 auto; border-radius: var(--radius-lg); background: #fff; overflow: visible; }
#cal-inline { width: 100%; min-height: 700px; }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy-dark); color: #fff; padding: 4rem 0 2rem; }
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 2.5rem; margin-bottom: 3rem; }
@media (min-width: 768px) { .footer-grid { grid-template-columns: repeat(3, 1fr); } }
.footer-brand img { height: 3rem; width: 3rem; margin-bottom: 1rem; }
.footer-brand p { font-size: .875rem; color: #d1d5db; line-height: 1.65; }
.footer-col h3 { font-size: .75rem; font-weight: 600; text-transform: uppercase; letter-spacing: .08em; color: #9CA3AF; margin-bottom: 1rem; }
.footer-col ul { display: flex; flex-direction: column; gap: .75rem; }
.footer-col a { display: inline-flex; align-items: center; gap: .5rem; font-size: .875rem; color: #d1d5db; transition: color .2s; }
.footer-col a:hover { color: #fff; }
.footer-col svg { width: 1rem; height: 1rem; }
.footer-seo { font-size: .75rem; color: #6b7280; text-align: center; margin-bottom: 1.5rem; }
.footer-bottom { border-top: 1px solid #1f2937; padding-top: 1.5rem; display: flex; flex-direction: column; align-items: center; justify-content: space-between; gap: 1rem; font-size: .75rem; color: #6b7280; }
@media (min-width: 768px) { .footer-bottom { flex-direction: row; } }
.footer-bottom .links { display: flex; align-items: center; gap: 1.5rem; }
.footer-bottom a:hover { color: #d1d5db; }

/* ---------- Pages intérieures ---------- */
.page-main { padding-top: 6rem; padding-bottom: 4rem; }
.page-main h1 { font-size: 2rem; line-height: 1.2; color: var(--heading); margin-bottom: 1rem; }
@media (min-width: 768px) { .page-main h1 { font-size: 2.5rem; } }
@media (min-width: 1024px) { .page-main h1 { font-size: 2.75rem; } }
.prose { max-width: 46rem; }
.prose p { margin-bottom: 1rem; }
.prose h2 { font-size: 1.5rem; color: var(--navy); margin: 2rem 0 .75rem; }

/* ---------- Encart question (Formspree) ---------- */
.question-box { max-width: 34rem; margin: 2.5rem auto 0; text-align: center; padding-top: 2rem; border-top: 1px solid #1f2937; }
.question-title { font-weight: 600; color: #fff; font-size: .9375rem; }
.question-sub { font-size: .8125rem; color: #9CA3AF; margin: .25rem 0 1.25rem; }
.question-form { display: flex; flex-direction: column; gap: .75rem; text-align: left; }
.question-form input[type="text"]:not([name="_gotcha"]), .question-form input[type="email"], .question-form select, .question-form textarea {
  width: 100%; padding: .75rem 1rem; border-radius: .5rem; border: 1px solid #374151;
  background: #0F1D35; color: #fff; font: inherit; font-size: .875rem;
}
.question-form input::placeholder, .question-form textarea::placeholder { color: #6b7280; }
.question-form input:focus, .question-form textarea:focus { outline: 2px solid #1A56DB; outline-offset: 0; border-color: #1A56DB; }
.question-form textarea { resize: vertical; min-height: 5rem; }
.question-form button { align-self: center; margin-top: .25rem; }
.question-form select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='none' stroke='%236b7280' stroke-width='2'%3E%3Cpath d='m4 6 4 4 4-4'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1rem center; }
.question-form select:invalid { color: #6b7280; }
.question-form select option { color: #fff; background: #0F1D35; }
.question-success { max-width: 28rem; margin: 0 auto; padding: 1.5rem; border-radius: .5rem; background: #0F1D35; border: 1px solid #1A56DB; text-align: center; }
.question-success p { font-size: .875rem; color: #d1d5db; }
.question-success p:first-child { color: #fff; margin-bottom: .375rem; }

/* ---------- Rubrique Conseils ---------- */
.article { max-width: 46rem; }
.article h1 { font-size: 2rem; line-height: 1.2; color: var(--heading); margin-bottom: .75rem; }
@media (min-width: 768px) { .article h1 { font-size: 2.5rem; } }
.article-meta { font-size: .8125rem; color: var(--muted); margin-bottom: 2rem; }
.article p { margin-bottom: 1.1rem; line-height: 1.75; color: var(--body); }
.article h2 { font-family: 'DM Serif Display', serif; font-weight: 400; font-size: 1.5rem; color: var(--navy); margin: 2.25rem 0 1rem; }
.article a { color: var(--accent); text-decoration: underline; text-underline-offset: 3px; }
.article a.btn { color: #fff; text-decoration: none; }
.article-cta { margin-top: 2.5rem; padding: 1.5rem; background: var(--glacier); border-left: 3px solid var(--accent); border-radius: var(--radius); }
.article-cta p { margin-bottom: 1rem; }
.article-list { display: flex; flex-direction: column; gap: 1.5rem; margin-top: 2.5rem; max-width: 46rem; }
.article-card { display: block; background: #fff; border-radius: var(--radius); padding: 1.75rem; border-top: 3px solid var(--accent); box-shadow: var(--shadow-card); transition: box-shadow .2s, transform .2s; }
.article-card:hover { box-shadow: var(--shadow-card-hover); transform: translateY(-2px); }
.article-card-meta { font-size: .75rem; color: var(--muted); margin-bottom: .5rem; }
.article-card h2 { font-family: 'DM Serif Display', serif; font-weight: 400; font-size: 1.375rem; color: var(--navy); margin-bottom: .5rem; }
.article-card p { font-size: .875rem; color: var(--body); line-height: 1.65; margin-bottom: .75rem; }


/* ---------- Mention audit de reprise ---------- */
.hero-reprise { margin-top: 1rem; font-size: .8125rem; }
.hero-reprise a { color: var(--accent); text-decoration: underline; text-underline-offset: 3px; }
.hero-reprise a:hover { color: var(--accent-hover); }
.method-reprise { margin-top: 2rem; text-align: center; font-size: .875rem; color: var(--muted); }
.method-reprise a { color: var(--accent); text-decoration: underline; text-underline-offset: 3px; }


/* ---------- Fil d'Ariane ---------- */
.breadcrumb { margin-bottom: 1.5rem; font-size: .8125rem; color: var(--muted); }
.breadcrumb a { color: var(--muted); }
.breadcrumb a:hover { color: var(--accent); text-decoration: underline; }
.bc-sep { margin: 0 .5rem; color: var(--gray-note); }
.bc-current { color: var(--heading); font-weight: 500; }
