/* article.css */
/* ───────────────────────────────────────────────
   ARTICLE — page éditoriale pleine longueur
   Même DA que le blog : crème, Bricolage + Newsreader
   ─────────────────────────────────────────────── */
:root {
  --cream: #ffffff;
  --cream-2: oklch(97% 0.008 85);
  --ink: oklch(18% 0.025 250);
  --ink-soft: oklch(40% 0.02 250);
  --ink-mute: oklch(58% 0.015 250);
  --rule: oklch(90% 0.008 85);
  --green-v2: oklch(48% 0.13 152);
  --green-soft: oklch(94% 0.04 152);
  --terra: oklch(62% 0.14 40);
}

html, body { background: #ffffff; }
body { color: var(--ink); font-family: 'Plus Jakarta Sans', sans-serif; }

/* nav override (match blog/accueil) */
.site-nav { background: rgba(255,255,255,0.85) !important; border-bottom: 1px solid var(--rule) !important; }
.nav-logo { color: var(--ink) !important; font-family: 'Bricolage Grotesque', sans-serif; font-weight: 700; letter-spacing: -0.8px; }
.nav-logo span { color: var(--green-v2) !important; }
.nav-links a { color: var(--ink-soft) !important; }
.nav-links a:hover, .nav-links a.active { color: var(--ink) !important; }

/* Buttons */
.btn-ink {
  background: var(--ink); color: var(--cream);
  padding: 14px 24px; border-radius: 100px;
  font-size: 14px; font-weight: 600; text-decoration: none;
  display: inline-flex; align-items: center; gap: 10px;
  transition: transform .2s, background .2s; border: none; cursor: pointer;
}
.btn-ink:hover { background: oklch(28% 0.04 250); transform: translateY(-1px); }
.btn-ink .arrow { font-family: 'Newsreader', serif; font-style: italic; font-size: 18px; }
.btn-ghost {
  background: transparent; color: var(--ink);
  padding: 13px 22px; border-radius: 100px; border: 1.5px solid var(--ink);
  font-size: 14px; font-weight: 600; text-decoration: none;
  display: inline-flex; align-items: center; gap: 10px;
  transition: background .2s, color .2s; cursor: pointer;
}
.btn-ghost:hover { background: var(--ink); color: var(--cream); }
.btn-green-v2 {
  background: var(--green-v2); color: white;
  padding: 14px 24px; border-radius: 100px;
  font-size: 14px; font-weight: 600; text-decoration: none;
  display: inline-flex; align-items: center; gap: 10px;
  transition: transform .2s, opacity .2s; border: none; cursor: pointer;
}
.btn-green-v2:hover { opacity: 0.92; transform: translateY(-1px); }

.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 11px; font-weight: 700; letter-spacing: 1.8px; text-transform: uppercase;
  color: var(--ink-mute); font-family: 'Plus Jakarta Sans', sans-serif;
}
.eyebrow::before { content: ''; width: 28px; height: 1px; background: var(--ink-mute); }
.eyebrow.green { color: var(--green-v2); }
.eyebrow.green::before { background: var(--green-v2); }

/* ─── BREADCRUMB + HERO ───────────────────────── */
.art-breadcrumb {
  max-width: 1200px; margin: 0 auto; padding: 100px 32px 0;
  font-size: 13px; color: var(--ink-mute); display: flex; gap: 8px; align-items: center;
}
.art-breadcrumb a { color: var(--ink-mute); text-decoration: none; transition: color .2s; }
.art-breadcrumb a:hover { color: var(--green-v2); }
.art-breadcrumb span { color: var(--rule); }

.art-hero { max-width: 860px; margin: 0 auto; padding: 28px 32px 0; }
.art-cat {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--green-soft); color: var(--green-v2);
  font-size: 11px; font-weight: 700; letter-spacing: 1.2px; text-transform: uppercase;
  padding: 7px 15px; border-radius: 100px; margin-bottom: 24px;
}
.art-hero h1 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-variation-settings: "wdth" 95;
  font-weight: 800; letter-spacing: -0.04em; line-height: 0.98;
  font-size: clamp(38px, 5.6vw, 68px); margin: 0; text-wrap: balance;
}
.art-hero h1 em {
  font-family: 'Newsreader', serif; font-style: italic; font-weight: 500;
  font-variation-settings: normal; color: var(--green-v2);
}
.art-lead {
  font-family: 'Newsreader', serif; font-style: italic;
  font-size: clamp(19px, 2vw, 24px); color: var(--ink-soft);
  font-weight: 400; line-height: 1.5; max-width: 680px;
  text-wrap: pretty; margin: 28px 0 0;
}
.art-byline {
  display: flex; align-items: center; gap: 14px; flex-wrap: wrap;
  margin: 32px 0 0; padding: 22px 0; border-top: 1px solid var(--rule); border-bottom: 1px solid var(--rule);
  font-size: 13px; color: var(--ink-mute); font-weight: 600; letter-spacing: 0.3px;
}
.art-byline .dot { width: 4px; height: 4px; border-radius: 50%; background: var(--ink-mute); }
.art-byline .author { color: var(--ink); display: inline-flex; align-items: center; gap: 10px; }
.art-byline .author .av {
  width: 32px; height: 32px; border-radius: 50%; background: var(--green-v2); color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  font-family: 'Bricolage Grotesque', sans-serif; font-weight: 800; font-size: 13px;
}

/* ─── FEATURE IMAGE ───────────────────────────── */
.art-feature {
  max-width: 1080px; margin: 40px auto 0; padding: 0 32px;
}
.art-feature-inner {
  height: clamp(260px, 38vw, 460px); border-radius: 28px; overflow: hidden;
  background: var(--ink); position: relative; display: flex; align-items: center; justify-content: center;
}
.art-feature-product { width: clamp(180px, 26vw, 300px); height: auto; opacity: 0.9; filter: drop-shadow(0 30px 60px rgba(0,0,0,0.5)); }
.art-feature-glow { position: absolute; width: 560px; height: 560px; border-radius: 50%; background: radial-gradient(circle, oklch(48% 0.13 152 / 0.35), transparent 70%); filter: blur(20px); }
.ph-stripe {
  position: absolute; inset: 0;
  background-image: repeating-linear-gradient(135deg, rgba(255,255,255,0.04) 0 2px, transparent 2px 14px);
}
.art-feature-cap {
  font-family: 'Roboto Mono', monospace; font-size: 11px; letter-spacing: 0.5px;
  color: var(--ink-mute); text-align: center; margin-top: 14px;
}

/* ─── BODY LAYOUT ─────────────────────────────── */
.art-layout {
  max-width: 1200px; margin: 0 auto; padding: 56px 32px 100px;
  display: grid; grid-template-columns: 1fr 300px; gap: 72px; align-items: start;
}
.art-body { max-width: 720px; font-size: 18px; line-height: 1.78; color: var(--ink-soft); }
.art-body > p { margin: 0 0 22px; text-wrap: pretty; }
.art-body > p:first-of-type { font-size: 20px; color: var(--ink); }
.art-body h2 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-variation-settings: "wdth" 95;
  font-size: clamp(26px, 3.2vw, 36px); font-weight: 800; color: var(--ink);
  letter-spacing: -0.03em; line-height: 1.05; margin: 56px 0 18px; text-wrap: balance;
  scroll-margin-top: 90px;
}
.art-body h2 .num {
  font-family: 'Newsreader', serif; font-style: italic; font-weight: 500;
  color: var(--green-v2); font-size: 0.7em; margin-right: 10px;
}
.art-body h3 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 21px; font-weight: 700; color: var(--ink);
  letter-spacing: -0.02em; margin: 36px 0 12px;
}
.art-body a:not(.btn-ink):not(.btn-green-v2):not(.btn-ghost):not(.toc-link):not(.toc-start) {
  color: var(--green-v2); text-decoration: underline; text-underline-offset: 3px; text-decoration-thickness: 1.5px; font-weight: 600;
}
.art-body ul, .art-body ol { padding-left: 4px; margin: 0 0 22px; list-style: none; text-align: left; }
.art-body ul li { position: relative; padding-left: 30px; margin-bottom: 12px; text-wrap: pretty; }
.art-body ul li::before {
  content: ''; position: absolute; left: 4px; top: 11px; width: 8px; height: 8px;
  border-radius: 2px; background: var(--green-v2); transform: rotate(45deg);
}
.art-body ol { counter-reset: li; }
.art-body ol li { position: relative; padding-left: 38px; margin-bottom: 14px; counter-increment: li; text-wrap: pretty; }
.art-body ol li::before {
  content: counter(li); position: absolute; left: 0; top: 1px;
  width: 26px; height: 26px; border-radius: 50%; background: var(--ink); color: #fff;
  font-family: 'Bricolage Grotesque', sans-serif; font-size: 13px; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
}
.art-body strong { color: var(--ink); font-weight: 700; }

.art-quote {
  border-left: 3px solid var(--green-v2); background: var(--cream-2);
  padding: 26px 30px; border-radius: 0 18px 18px 0; margin: 38px 0;
  font-family: 'Newsreader', serif; font-style: italic; font-size: 23px;
  color: var(--ink); line-height: 1.45; text-wrap: pretty;
}
.art-quote cite { display: block; font-family: 'Plus Jakarta Sans', sans-serif; font-style: normal; font-size: 13px; font-weight: 600; color: var(--ink-mute); margin-top: 14px; letter-spacing: 0.3px; }

/* stat callout */
.stat-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 18px; margin: 36px 0; }
.stat-card { background: var(--cream-2); border: 1px solid var(--rule); border-radius: 18px; padding: 24px 22px; }
.stat-card .big { font-family: 'Bricolage Grotesque', sans-serif; font-size: 44px; font-weight: 800; color: var(--ink); letter-spacing: -0.04em; line-height: 1; }
.stat-card .big em { font-family: 'Newsreader', serif; font-style: italic; font-weight: 500; color: var(--green-v2); }
.stat-card .lab { font-size: 13px; color: var(--ink-soft); line-height: 1.45; margin-top: 10px; }
.src-note { font-size: 13px; color: var(--ink-mute); font-style: italic; }

/* info / source box */
.callout {
  display: flex; gap: 16px; background: var(--green-soft); border-radius: 18px; padding: 22px 24px; margin: 32px 0;
  font-size: 15px; line-height: 1.6; color: var(--ink);
}
.callout .ic { flex-shrink: 0; width: 26px; height: 26px; color: var(--green-v2); }
.callout strong { color: var(--ink); }

/* product inline banner */
.inline-product {
  display: flex; align-items: center; gap: 20px;
  background: var(--ink); border-radius: 22px; padding: 24px 26px; margin: 40px 0;
}
.inline-product img { width: 84px; height: 84px; object-fit: contain; background: #fff; border-radius: 16px; padding: 8px; flex-shrink: 0; }
.inline-product .ip-txt { flex: 1; }
.inline-product .ip-txt h4 { font-family: 'Bricolage Grotesque', sans-serif; color: #fff; font-size: 18px; font-weight: 800; letter-spacing: -0.02em; }
.inline-product .ip-txt p { color: oklch(76% 0.02 250); font-size: 14px; margin-top: 5px; line-height: 1.5; }
.inline-product .ip-price { font-family: 'Bricolage Grotesque', sans-serif; color: oklch(72% 0.10 152); font-weight: 700; font-size: 14px; margin-top: 8px; }
@media (max-width: 560px) { .inline-product { flex-direction: column; text-align: center; } }

/* table */
.art-table-wrap { margin: 32px 0; border: 1px solid var(--rule); border-radius: 18px; overflow: hidden; }
.art-table { width: 100%; border-collapse: collapse; font-size: 15px; }
.art-table th { background: var(--ink); color: #fff; text-align: left; padding: 15px 20px; font-family: 'Bricolage Grotesque', sans-serif; font-weight: 700; font-size: 13px; letter-spacing: 0.3px; }
.art-table td { padding: 14px 20px; border-top: 1px solid var(--rule); color: var(--ink-soft); }
.art-table tr:nth-child(even) td { background: var(--cream-2); }
.art-table td:first-child { font-weight: 700; color: var(--ink); }
.art-table .hl td { background: var(--green-soft); }
.art-table .hl td:first-child { color: var(--green-v2); }

/* ─── SIDEBAR ─────────────────────────────────── */
.art-sidebar { position: sticky; top: 90px; display: flex; flex-direction: column; gap: 22px; }
.toc { border: 1px solid var(--rule); border-radius: 20px; padding: 22px 24px; }
.toc h4 { font-family: 'Bricolage Grotesque', sans-serif; font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: 1.4px; color: var(--ink-mute); margin-bottom: 16px; }
.toc a { display: block; font-size: 14px; color: var(--ink-soft); text-decoration: none; padding: 7px 0 7px 16px; border-left: 2px solid var(--rule); transition: all .2s; line-height: 1.4; }
.toc a:hover, .toc a.active { color: var(--ink); border-left-color: var(--green-v2); }

.side-cta { background: var(--ink); border-radius: 20px; padding: 26px; }
.side-cta h4 { font-family: 'Bricolage Grotesque', sans-serif; color: #fff; font-size: 19px; font-weight: 800; letter-spacing: -0.02em; line-height: 1.1; margin-bottom: 10px; }
.side-cta h4 em { font-family: 'Newsreader', serif; font-style: italic; font-weight: 500; color: oklch(72% 0.10 152); }
.side-cta p { font-size: 13px; color: oklch(75% 0.02 250); margin-bottom: 18px; line-height: 1.6; }

.side-products { border: 1px solid var(--rule); border-radius: 20px; padding: 20px 22px; }
.side-products h4 { font-family: 'Bricolage Grotesque', sans-serif; font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: 1.4px; color: var(--ink-mute); margin-bottom: 14px; }
.side-prod { display: flex; gap: 13px; align-items: center; padding: 11px 0; border-bottom: 1px solid var(--rule); text-decoration: none; }
.side-prod:last-child { border: none; padding-bottom: 0; }
.side-prod img { width: 48px; height: 48px; object-fit: contain; border-radius: 11px; background: var(--cream-2); border: 1px solid var(--rule); padding: 5px; flex-shrink: 0; }
.side-prod .nm { font-family: 'Bricolage Grotesque', sans-serif; font-size: 14px; font-weight: 700; color: var(--ink); line-height: 1.2; }
.side-prod .pr { font-size: 12px; color: var(--ink-mute); margin-top: 3px; }
.side-prod:hover .nm { color: var(--green-v2); }

/* ─── INTERACTIVE WIDGET ──────────────────────── */
.widget {
  border: 1.5px solid var(--ink); border-radius: 26px; overflow: hidden;
  margin: 44px 0; background: #fff;
}
.widget-head { background: var(--ink); padding: 22px 28px; }
.widget-head .wt { font-family: 'Bricolage Grotesque', sans-serif; color: #fff; font-size: 19px; font-weight: 800; letter-spacing: -0.02em; display: flex; align-items: center; gap: 10px; }
.widget-head .wt .ic { width: 22px; height: 22px; color: oklch(72% 0.10 152); }
.widget-head .ws { color: oklch(75% 0.02 250); font-size: 13px; margin-top: 5px; }
.widget-body { padding: 28px; display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.widget-controls { display: flex; flex-direction: column; gap: 22px; }
.wctrl label { display: block; font-size: 14px; font-weight: 700; color: var(--ink); margin-bottom: 4px; }
.wctrl .hint { font-size: 12px; color: var(--ink-mute); margin-bottom: 12px; line-height: 1.4; }
.wctrl .valrow { display: flex; align-items: baseline; justify-content: space-between; margin-bottom: 8px; }
.wctrl .valrow .v { font-family: 'Bricolage Grotesque', sans-serif; font-size: 24px; font-weight: 800; color: var(--green-v2); letter-spacing: -0.02em; }
.wctrl input[type=range] { -webkit-appearance: none; appearance: none; width: 100%; height: 6px; border-radius: 100px; background: var(--rule); outline: none; }
.wctrl input[type=range]::-webkit-slider-thumb { -webkit-appearance: none; appearance: none; width: 22px; height: 22px; border-radius: 50%; background: var(--ink); cursor: pointer; border: 3px solid #fff; box-shadow: 0 2px 8px rgba(0,0,0,0.2); }
.wctrl input[type=range]::-moz-range-thumb { width: 18px; height: 18px; border-radius: 50%; background: var(--ink); cursor: pointer; border: 3px solid #fff; }
.seg { display: flex; gap: 0; border: 1.5px solid var(--rule); border-radius: 100px; padding: 4px; }
.seg button { flex: 1; border: none; background: transparent; padding: 9px 8px; border-radius: 100px; font-family: inherit; font-size: 13px; font-weight: 600; color: var(--ink-soft); cursor: pointer; transition: all .2s; }
.seg button.on { background: var(--ink); color: #fff; }
.num-input { display: inline-flex; align-items: center; border: 1.5px solid var(--rule); border-radius: 100px; overflow: hidden; }
.num-input button { width: 38px; height: 40px; border: none; background: var(--cream-2); font-size: 18px; color: var(--ink); cursor: pointer; }
.num-input button:hover { background: var(--rule); }
.num-input input { width: 56px; text-align: center; border: none; outline: none; font-family: 'Bricolage Grotesque', sans-serif; font-weight: 800; font-size: 16px; color: var(--ink); }

.widget-result { background: var(--cream-2); border-radius: 18px; padding: 26px; display: flex; flex-direction: column; }
.result-big { font-family: 'Bricolage Grotesque', sans-serif; font-size: clamp(52px, 9vw, 76px); font-weight: 800; color: var(--ink); letter-spacing: -0.05em; line-height: 0.9; }
.result-big .u { font-size: 0.3em; font-weight: 700; color: var(--ink-mute); display: block; letter-spacing: 0; margin-top: 6px; }
.result-lab { font-size: 14px; color: var(--ink-soft); margin-top: 4px; line-height: 1.5; }
.result-break { margin-top: 22px; padding-top: 20px; border-top: 1px dashed var(--rule); display: flex; flex-direction: column; gap: 12px; }
.rb-line { display: flex; justify-content: space-between; align-items: baseline; font-size: 14px; }
.rb-line .l { color: var(--ink-soft); }
.rb-line .r { font-family: 'Bricolage Grotesque', sans-serif; font-weight: 800; color: var(--ink); }
.rb-line.free .r { color: var(--green-v2); }
.rb-line.total { margin-top: 4px; padding-top: 14px; border-top: 1px solid var(--rule); font-size: 16px; }
.rb-line.total .r { font-size: 22px; }
.result-cta { margin-top: 22px; }
.result-cta .btn-green-v2 { width: 100%; justify-content: center; }

@media (max-width: 720px) { .widget-body { grid-template-columns: 1fr; } }

/* end CTA band */
.art-end-cta {
  max-width: 1080px; margin: 88px auto 90px; padding: 0 32px;
}
.art-end-cta-inner {
  background: var(--ink); border-radius: 28px; padding: 56px clamp(28px, 6vw, 72px);
  text-align: center; position: relative; overflow: hidden;
}
.art-end-cta-inner .ph-stripe { opacity: 0.5; }
.art-end-cta h3 {
  font-family: 'Bricolage Grotesque', sans-serif; font-variation-settings: "wdth" 95;
  color: #fff; font-size: clamp(28px, 4vw, 44px); font-weight: 800; letter-spacing: -0.03em;
  line-height: 1.0; text-wrap: balance; position: relative;
}
.art-end-cta h3 em { font-family: 'Newsreader', serif; font-style: italic; font-weight: 500; color: oklch(72% 0.10 152); }
.art-end-cta p { color: oklch(78% 0.02 250); font-size: 17px; max-width: 540px; margin: 18px auto 30px; line-height: 1.6; position: relative; }
.art-end-cta .cta-row { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; position: relative; }
.art-end-cta .btn-green-v2 { background: var(--green-v2); }
.art-end-cta .btn-light { background: #fff; color: var(--ink); padding: 14px 24px; border-radius: 100px; font-size: 14px; font-weight: 600; text-decoration: none; display: inline-flex; align-items: center; gap: 10px; transition: transform .2s; }
.art-end-cta .btn-light:hover { transform: translateY(-1px); }

/* related */
.art-related { max-width: 1200px; margin: 0 auto; padding: 0 32px 96px; }
.art-related h3 { font-family: 'Bricolage Grotesque', sans-serif; font-size: 14px; font-weight: 800; text-transform: uppercase; letter-spacing: 1.4px; color: var(--ink-mute); margin-bottom: 22px; padding-bottom: 16px; border-top: 1px solid var(--ink); padding-top: 22px; }
.related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.rel-card { border: 1px solid var(--rule); border-radius: 20px; overflow: hidden; text-decoration: none; transition: transform .25s, box-shadow .25s; display: flex; flex-direction: column; }
.rel-card:hover { transform: translateY(-4px); box-shadow: 0 18px 44px oklch(0% 0 0 / 0.06); }
.rel-img { height: 130px; background: var(--ink); position: relative; overflow: hidden; }
.rel-img .ph-stripe { opacity: 0.6; }
.rel-tag { position: absolute; left: 16px; bottom: 16px; background: rgba(255,255,255,0.94); color: var(--ink); font-size: 10px; font-weight: 700; letter-spacing: 0.8px; text-transform: uppercase; padding: 4px 10px; border-radius: 100px; }
.rel-body { padding: 18px 20px 22px; flex: 1; }
.rel-body .rt { font-family: 'Bricolage Grotesque', sans-serif; font-size: 16px; font-weight: 700; color: var(--ink); line-height: 1.25; letter-spacing: -0.01em; }
.rel-body .rm { font-size: 12px; color: var(--ink-mute); margin-top: 10px; }

/* ─── BLOC AVIS GOOGLE (social proof percutant) ── */
.gproof { max-width: 1080px; margin: 40px auto 0; padding: 0 32px; }
.gproof-inner {
  position: relative; overflow: hidden;
  background: var(--ink); border-radius: 28px;
  padding: clamp(30px, 4vw, 44px) clamp(26px, 4vw, 52px);
  display: grid; grid-template-columns: auto 1px 1fr; align-items: center;
  gap: clamp(28px, 4vw, 52px);
  box-shadow: 0 28px 64px oklch(18% 0.04 250 / 0.24);
}
.gproof-inner .ph-stripe { opacity: 0.45; }
.gproof-score { position: relative; text-align: center; }
.gproof-badge {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'Roboto Mono', monospace; font-size: 11px; letter-spacing: 1.4px;
  text-transform: uppercase; color: oklch(80% 0.02 250); margin-bottom: 14px;
}
.gproof-badge .g {
  width: 20px; height: 20px; border-radius: 50%; flex-shrink: 0;
  display: inline-flex; align-items: center; justify-content: center;
  background: #fff; color: var(--ink);
  font-family: 'Bricolage Grotesque', sans-serif; font-weight: 800; font-size: 13px;
}
.gproof-rate {
  font-family: 'Bricolage Grotesque', sans-serif; font-weight: 800;
  font-size: clamp(64px, 9vw, 96px); letter-spacing: -0.05em; color: #fff;
  line-height: 0.86;
}
.gproof-rate span { font-size: 0.4em; color: oklch(70% 0.02 250); font-weight: 700; }
.gproof-stars {
  position: relative; display: inline-block; margin: 14px 0 6px;
  font-size: 22px; letter-spacing: 3px; line-height: 1;
}
.gproof-stars .base { color: oklch(38% 0.02 250); }
.gproof-stars .fill {
  position: absolute; inset: 0; overflow: hidden; white-space: nowrap;
  color: #f2b01e;
}
.gproof-count {
  font-size: 13px; color: oklch(78% 0.02 250); font-weight: 600; letter-spacing: 0.2px;
}
.gproof-sep { align-self: stretch; background: oklch(100% 0 0 / 0.1); }
.gproof-body { position: relative; }
.gproof-body h3 {
  font-family: 'Bricolage Grotesque', sans-serif; font-variation-settings: "wdth" 95;
  color: #fff; font-size: clamp(24px, 3vw, 34px); font-weight: 800;
  letter-spacing: -0.03em; line-height: 1.06; margin: 0; text-wrap: balance;
}
.gproof-body h3 em { font-family: 'Newsreader', serif; font-style: italic; font-weight: 500; color: oklch(78% 0.12 152); }
.gproof-body p { color: oklch(80% 0.02 250); font-size: 16px; line-height: 1.6; margin: 14px 0 0; text-wrap: pretty; }
.gproof-body .gproof-cta {
  display: inline-flex; align-items: center; gap: 9px; margin-top: 22px;
  background: #fff; color: var(--ink); padding: 12px 22px; border-radius: 100px;
  font-size: 14px; font-weight: 700; text-decoration: none;
  transition: transform .2s, box-shadow .2s;
}
.gproof-body .gproof-cta:hover { transform: translateY(-2px); box-shadow: 0 12px 28px oklch(0% 0 0 / 0.3); }
.gproof-body .gproof-cta .arrow { font-family: 'Newsreader', serif; font-style: italic; font-size: 18px; }
@media (max-width: 720px) {
  .gproof-inner { grid-template-columns: 1fr; gap: 26px; text-align: center; }
  .gproof-sep { display: none; }
  .gproof-body { text-align: center; }
}

.site-footer { background: var(--ink) !important; }

/* reading progress */
.read-progress { position: fixed; top: 0; left: 0; height: 3px; background: var(--green-v2); z-index: 101; width: 0; transition: width .1s; }

/* ─── SOMMAIRE (inline, avant l'intro) ─────────── */
.art-summary {
  border: 1px solid var(--rule); border-radius: 24px; text-align: left;
  background: linear-gradient(180deg, #fff, var(--cream-2));
  padding: 22px 22px 18px; margin: 0 0 44px;
}
.art-summary-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 10px 8px; margin-bottom: 6px; border-bottom: 1px solid var(--rule);
}
.art-summary h4 {
  font-family: 'Bricolage Grotesque', sans-serif; font-size: 12px; font-weight: 800;
  text-transform: uppercase; letter-spacing: 1.6px; color: var(--ink-mute);
  margin: 0; display: flex; align-items: center; gap: 10px;
}
.art-summary h4::before { content: ''; width: 24px; height: 1px; background: var(--green-v2); }
.art-summary-meta {
  font-family: 'Roboto Mono', monospace; font-size: 11px; letter-spacing: 0.5px;
  color: var(--ink-mute);
}
.art-summary ol {
  counter-reset: sum; list-style: none; margin: 0; padding: 0;
}
/* Voir choisir-solution-anti-portable.css : le sommaire vit dans .art-body, donc
   `.art-body ol li` (0,1,2) battait `.art-summary li` (0,1,1) et écrasait le
   compteur `sum` par `li` → « 00 » + pastille noire en double. */
.art-body .art-summary ol li { counter-increment: sum; margin: 0; padding: 0; }
.art-body .art-summary ol li::before { display: none; }
.toc-link {
  display: flex; align-items: center; gap: 18px; text-decoration: none;
  padding: 14px 14px; border-radius: 14px; color: var(--ink);
  transition: background .25s, box-shadow .25s, transform .2s;
}
.toc-link::before {
  content: counter(sum, decimal-leading-zero);
  font-family: 'Newsreader', serif; font-style: italic; font-weight: 500;
  color: var(--green-v2); font-size: 24px; line-height: 1;
  flex-shrink: 0; min-width: 32px;
  transition: transform .25s;
}
.toc-link .t {
  flex: 1; font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 16px; font-weight: 700; line-height: 1.3; letter-spacing: -0.01em;
  transition: color .25s;
}
.toc-arrow {
  font-family: 'Newsreader', serif; font-style: italic; font-size: 19px;
  color: var(--green-v2); opacity: 0; transform: translateX(-8px);
  transition: opacity .25s, transform .25s;
}
.toc-link:hover {
  background: #fff; box-shadow: 0 10px 28px oklch(18% 0.04 250 / 0.08);
}
.toc-link:hover .t { color: var(--green-v2); }
.toc-link:hover .toc-arrow { opacity: 1; transform: translateX(0); }
.toc-link:hover::before { transform: translateY(-2px); }
.toc-link.active {
  background: #fff; box-shadow: inset 3px 0 0 var(--green-v2), 0 6px 20px oklch(18% 0.04 250 / 0.05);
}
.toc-link.active .t { color: var(--green-v2); }
.toc-start {
  display: flex; align-items: center; justify-content: center; gap: 9px;
  margin: 10px 10px 2px; padding-top: 14px; border-top: 1px solid var(--rule);
  text-decoration: none; font-family: 'Roboto Mono', monospace;
  font-size: 12px; letter-spacing: 1px; text-transform: uppercase;
  color: var(--ink-mute); transition: color .25s;
}
.toc-start-ic {
  display: inline-flex; width: 22px; height: 22px; border-radius: 50%;
  align-items: center; justify-content: center; font-family: 'Plus Jakarta Sans', sans-serif;
  background: var(--green-v2); color: #fff; font-size: 13px; font-weight: 700;
  transition: transform .4s;
}
.toc-start:hover { color: var(--green-v2); }
.toc-start:hover .toc-start-ic { transform: translateY(3px); }
@media (prefers-reduced-motion: no-preference) {
  .toc-start-ic { animation: tocBob 1.8s ease-in-out infinite; }
}
@keyframes tocBob { 0%,100% { transform: translateY(0); } 50% { transform: translateY(3px); } }

/* ─── BANDEAU CONFIANCE (social proof Aratice) ─── */
.roi-trust { max-width: 1080px; margin: 44px auto 0; padding: 0 32px; }
.roi-trust-inner {
  display: grid; grid-template-columns: repeat(4, 1fr);
  background: var(--ink); border-radius: 24px; padding: 12px;
  box-shadow: 0 24px 60px oklch(18% 0.04 250 / 0.22);
}
.roi-trust-item {
  display: flex; flex-direction: column; gap: 10px; align-items: flex-start; text-align: left;
  padding: 26px 24px; border-radius: 16px;
  transition: background .2s;
}
.roi-trust-item + .roi-trust-item { box-shadow: inset 1px 0 0 oklch(100% 0 0 / 0.08); }
.roi-trust-item:hover { background: oklch(100% 0 0 / 0.05); }
.roi-trust-ic {
  width: 40px; height: 40px; border-radius: 11px;
  display: inline-flex; align-items: center; justify-content: center;
  background: oklch(72% 0.10 152 / 0.16); color: oklch(78% 0.12 152);
  margin-bottom: 4px;
}
.roi-trust-ic svg { width: 22px; height: 22px; }
.roi-trust-item .num {
  font-family: 'Bricolage Grotesque', sans-serif; font-weight: 800;
  font-size: clamp(26px, 2.6vw, 38px); letter-spacing: -0.04em; color: #fff;
  height: clamp(28px, 2.7vw, 40px); line-height: clamp(28px, 2.7vw, 40px); display: flex; align-items: center;
}
.roi-trust-item .num em { font-family: 'Newsreader', serif; font-style: italic; font-weight: 500; color: oklch(78% 0.12 152); font-size: 1em; }
.roi-trust-item .lab { font-size: 13px; color: oklch(78% 0.02 250); line-height: 1.4; font-weight: 600; text-wrap: pretty; }

/* ─── TÉMOIGNAGE LATÉRAL ──────────────────────── */
.side-proof { border: 1px solid var(--rule); border-radius: 20px; padding: 24px; background: var(--cream-2); }
.side-proof .stars { color: #d4a017; font-size: 13px; letter-spacing: 1px; }
.side-proof blockquote {
  margin: 12px 0 16px; font-family: 'Newsreader', serif; font-style: italic;
  font-size: 16.5px; line-height: 1.5; color: var(--ink); text-wrap: pretty;
}
.side-proof .who { display: flex; align-items: center; gap: 11px; font-size: 12.5px; color: var(--ink-mute); line-height: 1.4; }
.side-proof .who .av { width: 36px; height: 36px; border-radius: 50%; background: var(--green-v2); color: #fff; display: flex; align-items: center; justify-content: center; font-family: 'Bricolage Grotesque', sans-serif; font-weight: 800; font-size: 13px; flex-shrink: 0; }
.side-proof .who strong { color: var(--ink); font-weight: 700; display: block; font-size: 13.5px; }

/* ─── BANDE TÉMOIGNAGES ROI ───────────────────── */
.roi-proof { max-width: 1160px; margin: 0 auto; padding: 96px 32px 0; }
.roi-proof-head { text-align: center; margin-bottom: 44px; }
.roi-proof-head .eyebrow { justify-content: center; }
.roi-proof-head h2 {
  font-family: 'Bricolage Grotesque', sans-serif; font-weight: 800;
  font-size: clamp(26px, 3vw, 38px); letter-spacing: -0.03em; color: var(--ink);
  line-height: 1.08; margin: 14px 0 0; text-wrap: balance;
}
.roi-proof-head h2 em { font-family: 'Newsreader', serif; font-style: italic; font-weight: 500; color: var(--green-v2); }
.roi-proof-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.roi-proof-card {
  position: relative; border: 1px solid var(--rule); border-radius: 24px;
  padding: 30px 28px 26px; background: #fff; display: flex; flex-direction: column;
  transition: transform .25s, box-shadow .25s, border-color .25s; overflow: hidden;
}
.roi-proof-card::before {
  content: '\201C'; position: absolute; top: 6px; right: 22px;
  font-family: 'Newsreader', serif; font-style: italic; font-size: 96px;
  color: var(--green-soft); line-height: 1; pointer-events: none;
}
.roi-proof-card:hover { transform: translateY(-5px); box-shadow: 0 24px 54px oklch(0% 0 0 / 0.08); border-color: transparent; }
.roi-proof-card .stars { color: #d4a017; font-size: 13px; letter-spacing: 1px; margin-bottom: 14px; position: relative; }
.roi-proof-card p { font-family: 'Newsreader', serif; font-style: italic; font-size: 18.5px; line-height: 1.52; color: var(--ink); margin: 0 0 22px; text-wrap: pretty; flex: 1; position: relative; }
.roi-proof-card .who { display: flex; align-items: center; gap: 13px; margin-top: auto; padding-top: 20px; border-top: 1px solid var(--rule); }
.roi-proof-card .who .av { width: 44px; height: 44px; border-radius: 50%; background: var(--green-soft); color: var(--green-v2); display: flex; align-items: center; justify-content: center; font-family: 'Bricolage Grotesque', sans-serif; font-weight: 800; font-size: 15px; flex-shrink: 0; }
.roi-proof-card .who .meta { font-size: 12.5px; color: var(--ink-mute); line-height: 1.4; }
.roi-proof-card .who .meta strong { display: block; color: var(--ink); font-weight: 700; font-size: 14.5px; font-family: 'Bricolage Grotesque', sans-serif; }

/* ─── FAQ (section distinguée, 2 colonnes) ──── */
.faq { background: var(--cream-2); border-top: 1px solid var(--rule); border-bottom: 1px solid var(--rule); padding: 92px 32px; margin-top: 28px; }
.faq-inner { max-width: 1160px; margin: 0 auto; display: grid; grid-template-columns: 400px 1fr; gap: 72px; align-items: start; }
.faq-aside { position: sticky; top: 96px; }
.faq-aside h2 {
  font-family: 'Bricolage Grotesque', sans-serif; font-weight: 800;
  font-size: clamp(28px, 3.2vw, 40px); letter-spacing: -0.03em; color: var(--ink);
  line-height: 1.06; margin: 14px 0 0; text-wrap: balance;
}
.faq-aside h2 em { font-family: 'Newsreader', serif; font-style: italic; font-weight: 500; color: var(--green-v2); }
.faq-cta { background: var(--ink); border-radius: 22px; padding: 28px 28px 26px; margin-top: 32px; }
.faq-cta h4 { font-family: 'Bricolage Grotesque', sans-serif; color: #fff; font-size: 19px; font-weight: 800; letter-spacing: -0.02em; line-height: 1.15; margin: 0 0 10px; }
.faq-cta h4 em { font-family: 'Newsreader', serif; font-style: italic; font-weight: 500; color: oklch(72% 0.10 152); }
.faq-cta p { font-size: 13.5px; color: oklch(75% 0.02 250); margin: 0 0 18px; line-height: 1.6; }
.faq-cta .row { display: flex; flex-wrap: wrap; gap: 10px; }

/* menu déroulant : filtre par thème */
.faq-filter { position: relative; margin-bottom: 18px; }
.faq-filter-label { font-family: 'Bricolage Grotesque', sans-serif; font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: 1.4px; color: var(--ink-mute); margin-bottom: 9px; display: block; }
.faq-filter-btn {
  display: flex; align-items: center; justify-content: space-between; gap: 14px;
  width: 100%; max-width: 340px; padding: 14px 18px; border: 1px solid var(--rule);
  border-radius: 13px; background: #fff; cursor: pointer;
  font-family: 'Plus Jakarta Sans', sans-serif; font-size: 14.5px; font-weight: 600; color: var(--ink);
  transition: border-color .2s, box-shadow .2s;
}
.faq-filter-btn:hover { border-color: var(--green-v2); }
.faq-filter.open .faq-filter-btn { border-color: var(--green-v2); box-shadow: 0 0 0 3px var(--green-soft); }
.faq-filter-btn .chev { width: 18px; height: 18px; color: var(--green-v2); flex-shrink: 0; transition: transform .22s; }
.faq-filter.open .faq-filter-btn .chev { transform: rotate(180deg); }
.faq-filter-menu {
  position: absolute; top: calc(100% + 8px); left: 0; z-index: 20;
  width: 100%; max-width: 340px; background: #fff; border: 1px solid var(--rule);
  border-radius: 15px; box-shadow: 0 24px 54px oklch(0% 0 0 / 0.12); padding: 7px;
  opacity: 0; visibility: hidden; transform: translateY(-6px); transition: opacity .18s, transform .18s, visibility .18s;
}
.faq-filter.open .faq-filter-menu { opacity: 1; visibility: visible; transform: none; }
.faq-filter-menu button {
  display: flex; align-items: center; gap: 9px; width: 100%; text-align: left;
  padding: 11px 14px; border: none; background: none; border-radius: 10px; cursor: pointer;
  font-family: 'Plus Jakarta Sans', sans-serif; font-size: 14.5px; font-weight: 600; color: var(--ink-soft);
  transition: background .15s, color .15s;
}
.faq-filter-menu button::before { content: ''; width: 7px; height: 7px; border-radius: 2px; background: var(--rule); transform: rotate(45deg); transition: background .15s; flex-shrink: 0; }
.faq-filter-menu button:hover { background: var(--cream-2); color: var(--ink); }
.faq-filter-menu button.active { background: var(--green-soft); color: var(--green-v2); }
.faq-filter-menu button.active::before { background: var(--green-v2); }

/* items = cartes dépliantes */
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  border: 1px solid var(--rule); border-radius: 16px; background: #fff;
  transition: border-color .2s, box-shadow .2s;
}
.faq-item.hidden { display: none; }
.faq-item:hover { border-color: oklch(82% 0.04 152); }
.faq-item[open] { border-color: var(--green-v2); box-shadow: 0 16px 40px oklch(0% 0 0 / 0.06); }
.faq-item summary {
  list-style: none; cursor: pointer; padding: 21px 22px;
  display: flex; align-items: center; justify-content: space-between; gap: 18px;
  font-family: 'Bricolage Grotesque', sans-serif; font-size: 16.5px; font-weight: 700;
  color: var(--ink); letter-spacing: -0.01em; line-height: 1.32; transition: color .2s;
}
.faq-item summary:hover { color: var(--green-v2); }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::marker { content: ''; font-size: 0; }
.faq-item .faq-sign {
  flex-shrink: 0; width: 30px; height: 30px; position: relative;
  background: var(--green-soft); border-radius: 50%; transition: background .25s;
}
.faq-item .faq-sign::before {
  content: ''; position: absolute; top: 44%; left: 50%; width: 8px; height: 8px;
  border-right: 2px solid var(--green-v2); border-bottom: 2px solid var(--green-v2);
  transform: translate(-50%, -50%) rotate(45deg); transition: border-color .25s, transform .25s;
}
.faq-item[open] .faq-sign { background: var(--green-v2); }
.faq-item[open] .faq-sign::before { border-color: #fff; transform: translate(-50%, -25%) rotate(-135deg); }
.faq-item .faq-a { padding: 0 22px 24px; font-size: 15.5px; line-height: 1.68; color: var(--ink-soft); text-wrap: pretty; }
.faq-item .faq-a a { color: var(--green-v2); text-decoration: underline; text-underline-offset: 3px; text-decoration-thickness: 1.5px; font-weight: 600; }
.faq-item .faq-a strong { color: var(--ink); font-weight: 700; }

@media (max-width: 960px) {
  .art-layout { grid-template-columns: 1fr; gap: 40px; }
  .art-sidebar { position: static; flex-direction: row; flex-wrap: wrap; }
  .art-sidebar > * { flex: 1; min-width: 240px; }
  .toc { display: none; }
  .related-grid { grid-template-columns: 1fr; }
  .roi-proof-grid { grid-template-columns: 1fr; max-width: 560px; margin: 0 auto; }
  .roi-trust-inner { grid-template-columns: repeat(2, 1fr); }
  .faq-inner { grid-template-columns: 1fr; gap: 36px; }
  .faq-aside { position: static; text-align: center; }
  .faq-aside .eyebrow { justify-content: center; }
  .faq-cta { text-align: left; }
  .faq-cta .row { justify-content: center; }
}
@media (max-width: 680px) {
  .art-breadcrumb { padding-top: 88px; }
  .art-hero, .art-feature, .art-layout { padding-left: 20px; padding-right: 20px; }
  .art-body { font-size: 17px; }
  .art-summary ol { grid-template-columns: 1fr; }
  .roi-trust-sep { display: none; }
  .roi-proof { padding-left: 20px; padding-right: 20px; }
  .faq { padding: 64px 20px; }
}



  /* La carte « Produits cités » suit le scroll jusqu'à la section Témoignages ROI */
  @media (min-width: 961px) {
    .art-layout .art-sidebar { position: static; align-self: stretch; }
    .art-layout .art-sidebar .side-products { position: sticky; top: 90px; }
  }

  /* ─── HERO ROI — landing 2 colonnes ─── */
  .roi-hero {
    max-width: 1200px; margin: 0 auto; padding: 20px 32px 0;
    display: grid; grid-template-columns: 1fr 424px; gap: 56px; align-items: center;
  }
  .roi-hero .art-cat { margin-bottom: 20px; }
  .roi-hero h1 {
    font-family: 'Bricolage Grotesque', sans-serif; font-variation-settings: "wdth" 95;
    font-weight: 800; letter-spacing: -0.04em; line-height: 0.99;
    font-size: clamp(34px, 4.1vw, 55px); margin: 0; text-wrap: balance;
  }
  .roi-hero h1 em { font-family: 'Newsreader', serif; font-style: italic; font-weight: 500; font-variation-settings: normal; color: var(--green-v2); }
  .roi-hero-lead {
    font-family: 'Newsreader', serif; font-style: italic;
    font-size: clamp(18px, 1.5vw, 21px); color: var(--ink-soft);
    line-height: 1.5; margin: 22px 0 0; max-width: 520px; text-wrap: pretty;
  }
  .roi-hero-feats { display: flex; gap: 22px; margin-top: 34px; flex-wrap: nowrap; }
  .roi-hero-feat { display: flex; gap: 10px; align-items: flex-start; flex: 1; min-width: 0; }
  .roi-hero-feat .ic {
    width: 38px; height: 38px; border-radius: 11px; flex-shrink: 0;
    display: inline-flex; align-items: center; justify-content: center;
    background: var(--green-soft); color: var(--green-v2);
  }
  .roi-hero-feat .ic svg { width: 20px; height: 20px; }
  .roi-hero-feat .t strong { display: block; font-family: 'Bricolage Grotesque', sans-serif; font-size: 14px; font-weight: 700; color: var(--ink); letter-spacing: -0.01em; }
  .roi-hero-feat .t span { font-size: 12.5px; color: var(--ink-mute); line-height: 1.4; }

  /* Carte ROI (droite) */
  .roi-card {
    position: relative;
    background: #fff; border: 1px solid var(--rule); border-radius: 24px;
    padding: 30px 30px 26px; box-shadow: 0 30px 70px oklch(18% 0.04 250 / 0.13);
    transform-style: preserve-3d; will-change: transform;
    transition: transform 0.35s cubic-bezier(.22,1,.36,1), box-shadow 0.35s cubic-bezier(.22,1,.36,1);
  }
  /* Bordure animée qui parcourt tout le tour de la carte */
  @property --roi-angle { syntax: '<angle>'; initial-value: 0deg; inherits: false; }
  .roi-card::before {
    content: ""; position: absolute; inset: -1.5px; border-radius: 25.5px;
    padding: 2px; pointer-events: none; z-index: 3;
    background: conic-gradient(from var(--roi-angle),
      transparent 0deg, transparent 250deg,
      color-mix(in oklch, var(--green-v2) 40%, transparent) 300deg,
      var(--green-v2) 340deg,
      oklch(96% 0.08 155) 352deg,
      var(--green-v2) 360deg);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor; mask-composite: exclude;
    animation: roi-border-run 4s linear infinite;
  }
  /* Halo doux qui suit le point lumineux */
  .roi-card::after {
    content: ""; position: absolute; inset: -1.5px; border-radius: 25.5px;
    padding: 2px; pointer-events: none; z-index: 2; filter: blur(6px); opacity: 0.75;
    background: conic-gradient(from var(--roi-angle),
      transparent 0deg, transparent 315deg,
      var(--green-v2) 345deg, var(--green-v2) 360deg);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor; mask-composite: exclude;
    animation: roi-border-run 4s linear infinite;
  }
  @keyframes roi-border-run { to { --roi-angle: 360deg; } }
  .roi-card.is-tilting { transition: box-shadow 0.35s cubic-bezier(.22,1,.36,1); }
  .roi-card:hover { box-shadow: 0 44px 90px oklch(18% 0.04 250 / 0.20); }
  .roi-card:hover::before, .roi-card:hover::after { animation-duration: 2.2s; }
  .roi-card > * { transform: translateZ(28px); }
  @media (prefers-reduced-motion: reduce) {
    .roi-card, .roi-card.is-tilting { transform: none !important; transition: box-shadow 0.35s ease; }
    .roi-card > * { transform: none; }
    .roi-card::before, .roi-card::after { animation: none;
      background: linear-gradient(var(--green-v2), var(--green-v2)); }
    .roi-card::after { display: none; }
  }
  .roi-card h3 {
    font-family: 'Bricolage Grotesque', sans-serif; font-size: 22px; font-weight: 800;
    color: var(--ink); letter-spacing: -0.02em; margin: 0; line-height: 1.15;
  }
  .roi-card h3 em { font-family: 'Newsreader', serif; font-style: italic; font-weight: 500; color: var(--green-v2); }
  .roi-card-sub { font-size: 14px; color: var(--ink-soft); line-height: 1.5; margin: 8px 0 20px; }
  .roi-card-checks { list-style: none; margin: 0 0 24px; padding: 0; display: flex; flex-direction: column; gap: 13px; }
  .roi-card-checks li { display: flex; gap: 11px; align-items: center; font-size: 14px; color: var(--ink); font-weight: 500; text-wrap: pretty; }
  .roi-card-checks .cic {
    width: 22px; height: 22px; border-radius: 50%; flex-shrink: 0;
    background: var(--green-soft); color: var(--green-v2);
    display: inline-flex; align-items: center; justify-content: center; font-size: 12px; font-weight: 800;
  }
  .roi-card .btn-green-v2 { width: 100%; justify-content: center; }
  .roi-card-proof { display: flex; align-items: center; gap: 14px; margin-top: 22px; padding-top: 20px; border-top: 1px solid var(--rule); }
  .roi-card-avatars { display: flex; flex-shrink: 0; }
  .roi-card-avatars img { width: 36px; height: 36px; border-radius: 50%; border: 2.5px solid #fff; object-fit: cover; margin-left: -12px; box-shadow: 0 2px 6px oklch(0% 0 0 / 0.12); background: var(--cream-2); }
  .roi-card-avatars img:first-child { margin-left: 0; }
  .roi-card-proof-txt { font-size: 13px; color: var(--ink-mute); line-height: 1.35; }
  .roi-card-proof-txt strong { display: block; color: var(--ink); font-family: 'Bricolage Grotesque', sans-serif; font-weight: 800; font-size: 15px; }

  /* ─── SOLUTION CLÉ EN MAIN ─── */
  .roi-solution { max-width: 1200px; margin: 60px auto 0; padding: 0 32px; }
  .roi-solution-inner {
    background: oklch(96.5% 0.008 240); border: 1px solid var(--rule); border-radius: 28px;
    display: grid; grid-template-columns: 440px 1fr; gap: 48px; align-items: center;
    padding: 40px; overflow: hidden;
  }
  .roi-solution-visual {
    position: relative; height: 320px; border-radius: 22px; background: var(--ink);
    display: flex; align-items: center; justify-content: center; overflow: hidden;
  }
  .roi-solution-glow { position: absolute; width: 420px; height: 420px; border-radius: 50%; background: radial-gradient(circle, oklch(48% 0.13 152 / 0.32), transparent 70%); filter: blur(20px); }
  .roi-solution-visual .prod { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 2; }
  @media (prefers-reduced-motion: no-preference) {
    .roi-solution-visual .prod-1 { transform: scale(1.35); transform-origin: center; transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1); }
    .roi-solution-visual:hover .prod-1 { transform: scale(1); }
  }
  .roi-solution-txt h2 { font-family: 'Bricolage Grotesque', sans-serif; font-variation-settings: "wdth" 95; font-size: clamp(26px, 3vw, 34px); font-weight: 800; color: var(--ink); letter-spacing: -0.03em; line-height: 1.05; margin: 0; }
  .roi-solution-txt h2 em { font-family: 'Newsreader', serif; font-style: italic; font-weight: 500; color: var(--green-v2); }
  .roi-solution-txt > p { font-size: 16px; color: var(--ink-soft); line-height: 1.6; margin: 16px 0 26px; max-width: 480px; }
  .roi-solution-feats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
  .roi-solution-feats .feat { display: flex; flex-direction: column; gap: 4px; }
  .roi-solution-feats .feat .ic { width: 40px; height: 40px; border-radius: 11px; display: inline-flex; align-items: center; justify-content: center; background: var(--green-soft); color: var(--green-v2); margin-bottom: 6px; }
  .roi-solution-feats .feat .ic svg { width: 21px; height: 21px; }
  .roi-solution-feats .feat strong { font-family: 'Bricolage Grotesque', sans-serif; font-size: 14.5px; font-weight: 700; color: var(--ink); letter-spacing: -0.01em; }
  .roi-solution-feats .feat span:last-child { font-size: 12.5px; color: var(--ink-mute); line-height: 1.4; }
  .roi-solution-btn { margin-top: 28px; }

  @media (max-width: 960px) {
    .roi-hero { grid-template-columns: 1fr; gap: 36px; padding-top: 8px; }
    .roi-solution-inner { grid-template-columns: 1fr; gap: 32px; }
    .roi-solution-visual { height: 280px; }
    .roi-solution-feats { grid-template-columns: 1fr; gap: 18px; }
  }
  @media (max-width: 680px) {
    .roi-hero, .roi-solution { padding-left: 20px; padding-right: 20px; }
    .roi-hero-feats { gap: 20px; }
    .roi-solution-inner { padding: 24px; }
  }
  /* Image produit inline — plus grande + effet dynamique */
  .inline-product img {
    width: 150px !important; height: 150px !important; padding: 14px !important;
    border-radius: 20px !important; cursor: pointer;
    box-shadow: 0 14px 30px oklch(18% 0.04 250 / 0.28);
    transition: transform 0.4s cubic-bezier(.22,1,.36,1), box-shadow 0.4s cubic-bezier(.22,1,.36,1);
    animation: ip-float 4.5s ease-in-out infinite;
  }
  .inline-product img:hover {
    transform: scale(1.12) rotate(-3deg);
    box-shadow: 0 24px 50px oklch(18% 0.04 250 / 0.4);
    animation-play-state: paused;
  }
  @keyframes ip-float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-9px) rotate(1.5deg); }
  }
  @media (prefers-reduced-motion: reduce) {
    .inline-product img { animation: none; }
  }
  @media (max-width: 560px) {
    .inline-product img { width: 130px !important; height: 130px !important; }
  }

  /* ─── CALCULATEUR intégré dans l'article (après le chapitre 1) ─── */
  .art-calc { margin: 48px 0; scroll-margin-top: 90px; text-align: left; }
  .art-calc .eyebrow { justify-content: flex-start; }
  .art-calc-title {
    font-family: 'Bricolage Grotesque', sans-serif; font-variation-settings: "wdth" 95;
    font-size: clamp(26px, 3vw, 34px); font-weight: 800; color: var(--ink);
    letter-spacing: -0.03em; line-height: 1.08; margin: 12px 0 0; text-wrap: balance;
  }
  .art-calc-title em { font-family: 'Newsreader', serif; font-style: italic; font-weight: 500; color: var(--green-v2); }
  .art-calc-lead { font-size: 16px; color: var(--ink-soft); line-height: 1.6; margin: 12px 0 0; max-width: 560px; text-wrap: pretty; }
  .art-calc .widget { margin: 22px 0 0; }
  .art-calc .roi-calc-note { text-align: left; max-width: none; margin: 16px 0 0; }
  .art-calc .result-big { font-size: clamp(46px, 6vw, 66px); }

  /* ─── ENCADRÉ « À RETENIR » (featured-snippet, juste après le hero) ─── */
  .roi-takeaway { max-width: 1200px; margin: 46px auto 0; padding: 0 32px; }
  .roi-takeaway-inner {
    position: relative; display: grid; grid-template-columns: 1.12fr 0.88fr; gap: 0;
    background: #fff; border: 1px solid var(--rule); border-radius: 26px; overflow: hidden;
    box-shadow: 0 20px 48px oklch(18% 0.04 250 / 0.08);
  }
  .roi-takeaway-content { position: relative; padding: 26px 34px 28px; }
  .roi-takeaway-content::before {
    content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 5px; background: var(--green-v2);
  }
  .roi-takeaway-badge {
    display: inline-flex; align-items: center; gap: 9px;
    font-family: 'Bricolage Grotesque', sans-serif; font-weight: 800;
    font-size: 12px; letter-spacing: 0.05em; text-transform: uppercase; color: var(--green-v2);
  }
  .roi-takeaway-badge .ic {
    width: 30px; height: 30px; border-radius: 9px; flex-shrink: 0;
    display: inline-flex; align-items: center; justify-content: center;
    background: var(--green-soft); color: var(--green-v2);
  }
  .roi-takeaway-badge .ic svg { width: 17px; height: 17px; }
  .roi-takeaway-q {
    font-family: 'Bricolage Grotesque', sans-serif; font-variation-settings: "wdth" 95;
    font-weight: 800; font-size: clamp(20px, 2vw, 25px); letter-spacing: -0.03em;
    line-height: 1.12; margin: 12px 0 0; color: var(--ink); text-wrap: balance;
  }
  .roi-takeaway-q em { font-family: 'Newsreader', serif; font-style: italic; font-weight: 500; color: var(--green-v2); }
  .roi-takeaway-answer {
    font-size: 14.5px; line-height: 1.55; color: var(--ink-soft);
    margin: 11px 0 0; max-width: 560px; text-wrap: pretty;
  }
  .roi-takeaway-answer strong { color: var(--ink); font-weight: 700; }
  /* Formule ROI compacte */
  .roi-takeaway-formula { display: flex; align-items: center; flex-wrap: nowrap; gap: 7px; margin-top: 18px; }
  .rt-term {
    display: inline-flex; flex-direction: column; gap: 1px; padding: 7px 11px; border-radius: 11px;
    border: 1px solid var(--rule); background: oklch(98.5% 0.004 240); min-width: 0;
  }
  .rt-term .rt-cap { font-size: 9.5px; font-weight: 600; letter-spacing: 0.02em; text-transform: uppercase; color: var(--ink-mute); white-space: nowrap; }
  .rt-term .rt-val { font-family: 'Bricolage Grotesque', sans-serif; font-weight: 800; font-size: 12px; letter-spacing: -0.01em; color: var(--ink); line-height: 1.15; white-space: nowrap; }
  .rt-term.result { background: var(--green-soft); border-color: color-mix(in oklch, var(--green-v2) 30%, transparent); }
  .rt-term.result .rt-cap { color: color-mix(in oklch, var(--green-v2) 75%, var(--ink)); }
  .rt-term.result .rt-val { color: var(--green-v2); }
  .rt-op { font-family: 'Bricolage Grotesque', sans-serif; font-weight: 800; font-size: 16px; color: var(--ink-mute); flex-shrink: 0; }
  .rt-eq-group { display: inline-flex; align-items: center; gap: 7px; min-width: 0; }
  /* Colonne image */
  .roi-takeaway-media { position: relative; min-height: 300px; overflow: hidden; background: oklch(94% 0.01 250); }
  .roi-takeaway-media img {
    position: absolute; inset: 0; width: 100%; height: 100%;
    object-fit: cover; object-position: 50% 22%;
    transition: transform 1.1s cubic-bezier(.22,1,.36,1);
  }
  .roi-takeaway-inner:hover .roi-takeaway-media img { transform: scale(1.05); }
  .roi-takeaway-media::after {
    content: ""; position: absolute; inset: 0; pointer-events: none;
    background: linear-gradient(to top, oklch(18% 0.04 250 / 0.55) 0%, transparent 42%);
  }
  .roi-takeaway-stat {
    position: absolute; left: 18px; right: 18px; bottom: 18px; z-index: 2;
    display: flex; align-items: center; gap: 15px;
    background: oklch(20% 0.03 250 / 0.72); backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid oklch(100% 0 0 / 0.14); border-radius: 16px; padding: 13px 17px;
  }
  .roi-takeaway-stat .big {
    font-family: 'Bricolage Grotesque', sans-serif; font-weight: 800;
    font-size: clamp(30px, 3.2vw, 40px); letter-spacing: -0.03em; line-height: 1;
    color: oklch(88% 0.14 152); flex-shrink: 0; white-space: nowrap;
  }
  .roi-takeaway-stat .big .u { font-size: 0.42em; font-weight: 600; color: oklch(90% 0.02 152); }
  .roi-takeaway-stat .kt { font-size: 13px; line-height: 1.4; color: oklch(92% 0.01 240); text-wrap: pretty; }
  .roi-takeaway-stat .kt strong { color: #fff; font-weight: 700; }
  /* Révélation au scroll */
  @media (prefers-reduced-motion: no-preference) {
    .roi-takeaway.reveal-armed [data-reveal] { opacity: 0; transform: translateY(16px); transition: opacity .6s ease, transform .6s cubic-bezier(.22,1,.36,1); }
    .roi-takeaway.reveal-armed.is-in [data-reveal] { opacity: 1; transform: none; }
    .roi-takeaway.reveal-armed.is-in [data-reveal="1"] { transition-delay: .06s; }
    .roi-takeaway.reveal-armed.is-in [data-reveal="2"] { transition-delay: .12s; }
    .roi-takeaway.reveal-armed.is-in [data-reveal="3"] { transition-delay: .18s; }
    .roi-takeaway.reveal-armed .roi-takeaway-media img { opacity: 0; transform: scale(1.08); transition: opacity .8s ease, transform 1.1s cubic-bezier(.22,1,.36,1); }
    .roi-takeaway.reveal-armed.is-in .roi-takeaway-media img { opacity: 1; transform: scale(1); }
  }
  @media (max-width: 900px) {
    .roi-takeaway-inner { grid-template-columns: 1fr; }
    .roi-takeaway-content { padding: 30px 26px 30px 30px; order: 2; }
    .roi-takeaway-media { min-height: 260px; order: 1; }
    .roi-takeaway-media img { object-position: 50% 18%; }
  }
  @media (max-width: 680px) {
    .roi-takeaway { padding-left: 20px; padding-right: 20px; }
    .roi-takeaway-formula { gap: 6px; }
    .roi-takeaway-stat { flex-direction: column; align-items: flex-start; gap: 6px; }
  }

  /* Bouton contour clair sur fond sombre (encart FAQ) */
  .faq-cta .btn-outline-light {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    padding: 13px 22px; border-radius: 100px; border: 1.5px solid oklch(100% 0 0 / 0.25);
    color: #fff; font-size: 14px; font-weight: 600; text-decoration: none;
    transition: background .2s, border-color .2s;
  }
  .faq-cta .btn-outline-light:hover { background: oklch(100% 0 0 / 0.08); border-color: oklch(100% 0 0 / 0.55); }

  /* ─── COMPARATIF DES SOLUTIONS — tableau décisionnel ─── */
  .roi-compare { max-width: 1200px; margin: 74px auto 0; padding: 0 32px; }
  .roi-compare-head { text-align: center; max-width: 760px; margin: 0 auto 36px; }
  .roi-compare-head .eyebrow { justify-content: center; }
  .roi-compare-head h2 {
    font-family: 'Bricolage Grotesque', sans-serif; font-variation-settings: "wdth" 95;
    font-size: clamp(28px, 3.2vw, 40px); font-weight: 800; letter-spacing: -0.03em;
    line-height: 1.05; margin: 12px 0 0; color: var(--ink); text-wrap: balance;
  }
  .roi-compare-head h2 em { font-family: 'Newsreader', serif; font-style: italic; font-weight: 500; color: var(--green-v2); }
  .roi-compare-head p { font-size: 16px; color: var(--ink-soft); line-height: 1.6; margin: 14px auto 0; max-width: 620px; text-wrap: pretty; }

  .roi-ct-wrap {
    border: 1px solid var(--rule); border-radius: 22px; overflow: hidden; background: #fff;
    box-shadow: 0 22px 52px oklch(18% 0.04 250 / 0.08);
  }
  .roi-compare-table { width: 100%; border-collapse: separate; border-spacing: 0; table-layout: fixed; }
  .roi-compare-table col.c-sol { width: 21%; }
  .roi-compare-table col.c-ideal { width: 19%; }
  .roi-compare-table col.c-adv { width: 24%; }
  .roi-compare-table col.c-lim { width: 18%; }
  .roi-compare-table col.c-prod { width: 18%; }
  .roi-compare-table thead th {
    text-align: left; padding: 16px 20px; vertical-align: middle;
    font-family: 'Bricolage Grotesque', sans-serif; font-size: 11.5px; font-weight: 800;
    text-transform: uppercase; letter-spacing: 0.06em; color: var(--ink-mute);
    background: oklch(97.5% 0.005 240); border-bottom: 1px solid var(--rule);
  }
  .roi-compare-table thead th:first-child { border-radius: 0; }
  .roi-compare-table tbody td {
    padding: 20px; vertical-align: top; border-bottom: 1px solid var(--rule);
    font-size: 13.5px; color: var(--ink-soft); line-height: 1.5;
    transition: background 0.2s ease;
  }
  .roi-compare-table tbody tr:last-child td { border-bottom: none; }
  .roi-compare-table tbody tr:hover td { background: oklch(98.6% 0.004 240); }
  .roi-compare-table tbody tr.is-reco td { background: var(--green-soft); }
  .roi-compare-table tbody tr.is-reco:hover td { background: color-mix(in oklch, var(--green-soft) 78%, var(--green-v2) 6%); }

  /* Colonne solution */
  .roi-ct-sol { display: flex; gap: 13px; align-items: flex-start; }
  .roi-ct-thumb {
    width: 50px; height: 50px; border-radius: 13px; flex-shrink: 0; object-fit: contain;
    background: oklch(97% 0.004 240); border: 1px solid var(--rule); padding: 5px;
  }
  .roi-ct-name {
    display: block; font-family: 'Bricolage Grotesque', sans-serif; font-size: 15px;
    font-weight: 700; color: var(--ink); letter-spacing: -0.01em; line-height: 1.2;
  }
  .roi-ct-reco-tag {
    display: inline-flex; align-items: center; gap: 5px; margin-top: 5px;
    font-family: 'Bricolage Grotesque', sans-serif; font-size: 10.5px; font-weight: 800;
    text-transform: uppercase; letter-spacing: 0.04em; color: var(--green-v2);
  }
  .roi-ct-reco-tag svg { width: 12px; height: 12px; }

  /* Listes avantages / limites */
  .roi-ct-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 8px; }
  .roi-ct-list li { display: flex; gap: 8px; align-items: flex-start; text-wrap: pretty; }
  .roi-ct-list .mk { flex-shrink: 0; margin-top: 1px; width: 15px; height: 15px; display: inline-flex; align-items: center; justify-content: center; }
  .roi-ct-list.adv .mk { color: var(--green-v2); }
  .roi-ct-list.adv .mk svg { width: 14px; height: 14px; }
  .roi-ct-list.lim { color: var(--ink-mute); }
  .roi-ct-list.lim .mk { color: var(--ink-mute); opacity: 0.7; }
  .roi-ct-list.lim .mk svg { width: 13px; height: 13px; }

  /* Colonne produit recommandé */
  .roi-ct-prod { display: flex; flex-direction: column; gap: 8px; align-items: flex-start; }
  .roi-ct-prod .pn { font-family: 'Bricolage Grotesque', sans-serif; font-size: 13.5px; font-weight: 700; color: var(--ink); letter-spacing: -0.01em; line-height: 1.2; }
  .roi-ct-prod .pp { font-size: 12px; color: var(--green-v2); font-weight: 600; }
  .roi-ct-link {
    display: inline-flex; align-items: center; gap: 6px; margin-top: 2px;
    padding: 8px 14px; border-radius: 100px; text-decoration: none;
    font-size: 12.5px; font-weight: 600; color: #fff; background: var(--ink);
    transition: background 0.2s ease, transform 0.2s ease;
  }
  .roi-ct-link:hover { background: var(--green-v2); transform: translateY(-1px); }
  .roi-ct-link .ar { transition: transform 0.2s ease; }
  .roi-ct-link:hover .ar { transform: translateX(3px); }
  .is-reco .roi-ct-link { background: var(--green-v2); }
  .is-reco .roi-ct-link:hover { background: var(--ink); }

  /* Note bas de tableau */
  .roi-compare-note { font-size: 13px; color: var(--ink-mute); line-height: 1.5; margin: 18px auto 0; max-width: 760px; text-align: center; text-wrap: pretty; }
  .roi-compare-note a { color: var(--green-v2); font-weight: 600; }

  /* Révélation au scroll */
  @media (prefers-reduced-motion: no-preference) {
    .roi-compare.reveal-armed .roi-ct-wrap { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .7s cubic-bezier(.22,1,.36,1); }
    .roi-compare.reveal-armed.is-in .roi-ct-wrap { opacity: 1; transform: none; }
    .roi-compare.reveal-armed tbody tr { opacity: 0; transform: translateY(10px); transition: opacity .5s ease, transform .5s cubic-bezier(.22,1,.36,1); }
    .roi-compare.reveal-armed.is-in tbody tr { opacity: 1; transform: none; }
    .roi-compare.reveal-armed.is-in tbody tr:nth-child(1) { transition-delay: .10s; }
    .roi-compare.reveal-armed.is-in tbody tr:nth-child(2) { transition-delay: .16s; }
    .roi-compare.reveal-armed.is-in tbody tr:nth-child(3) { transition-delay: .22s; }
    .roi-compare.reveal-armed.is-in tbody tr:nth-child(4) { transition-delay: .28s; }
    .roi-compare.reveal-armed.is-in tbody tr:nth-child(5) { transition-delay: .34s; }
    .roi-compare.reveal-armed.is-in tbody tr:nth-child(6) { transition-delay: .40s; }
  }

  /* Responsive — cartes empilées */
  @media (max-width: 880px) {
    .roi-compare { padding-left: 20px; padding-right: 20px; }
    .roi-ct-wrap { border: none; background: transparent; box-shadow: none; overflow: visible; }
    .roi-compare-table, .roi-compare-table tbody, .roi-compare-table tr, .roi-compare-table td { display: block; width: auto; }
    .roi-compare-table colgroup, .roi-compare-table thead { display: none; }
    .roi-compare-table tr {
      background: #fff; border: 1px solid var(--rule); border-radius: 18px;
      margin-bottom: 16px; overflow: hidden; box-shadow: 0 14px 34px oklch(18% 0.04 250 / 0.07);
    }
    .roi-compare-table tbody tr.is-reco { border-color: color-mix(in oklch, var(--green-v2) 40%, transparent); box-shadow: 0 14px 34px oklch(48% 0.13 152 / 0.14); }
    .roi-compare-table tbody td { padding: 14px 18px; border-bottom: 1px solid var(--rule); }
    .roi-compare-table tbody tr td:last-child { border-bottom: none; }
    .roi-compare-table tbody tr:hover td, .roi-compare-table tbody tr.is-reco:hover td { background: transparent; }
    .roi-compare-table tbody tr.is-reco td:first-child { background: var(--green-soft); }
    td[data-label]::before {
      content: attr(data-label); display: block; margin-bottom: 8px;
      font-family: 'Bricolage Grotesque', sans-serif; font-size: 10.5px; font-weight: 800;
      text-transform: uppercase; letter-spacing: 0.06em; color: var(--ink-mute);
    }
  }



  .prodcard {
    position: relative; background: #fff; border: 1px solid var(--rule);
    border-radius: 24px; padding: 22px; overflow: hidden;
    box-shadow: 0 24px 60px oklch(18% 0.04 250 / 0.12);
  }
  .prodcard-chip {
    position: absolute; top: 20px; left: 20px; z-index: 3;
    display: inline-flex; align-items: center; gap: 7px;
    background: var(--green-soft); color: var(--green-v2);
    font-family: 'Bricolage Grotesque', sans-serif; font-weight: 800;
    font-size: 11px; letter-spacing: 0.03em; text-transform: uppercase;
    padding: 7px 12px; border-radius: 100px;
  }
  .prodcard-chip svg { width: 13px; height: 13px; }
  .prodcard-stage {
    position: relative; border-radius: 16px; height: 264px;
    background: radial-gradient(120% 90% at 50% 16%, oklch(95% 0.055 152) 0%, oklch(97.5% 0.008 240) 55%, #fff 100%);
    display: flex; align-items: center; justify-content: center; overflow: hidden;
  }
  .prodcard-stage::after {
    content: ""; position: absolute; left: 50%; bottom: 32px; transform: translateX(-50%);
    width: 158px; height: 26px; border-radius: 50%;
    background: oklch(30% 0.04 250 / 0.20); filter: blur(15px);
  }
  .prodcard-stage img {
    position: relative; z-index: 1; width: 206px; height: 206px; object-fit: contain;
    filter: drop-shadow(0 22px 34px oklch(18% 0.06 250 / 0.28));
  }
  @media (prefers-reduced-motion: no-preference) {
    .prodcard-stage img { animation: pc-float 5s ease-in-out infinite; transition: transform .5s cubic-bezier(.22,1,.36,1); }
    .prodcard:hover .prodcard-stage img { transform: scale(1.06) rotate(-2deg); animation-play-state: paused; }
    @keyframes pc-float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
  }
  .prodcard-meta {
    display: flex; align-items: center; justify-content: space-between; gap: 14px;
    margin-top: 18px; padding: 0 4px;
  }
  .prodcard-meta .pm-name { font-family: 'Bricolage Grotesque', sans-serif; font-size: 16px; font-weight: 800; color: var(--ink); letter-spacing: -0.02em; line-height: 1.15; }
  .prodcard-meta .pm-sub { font-size: 12.5px; color: var(--ink-mute); margin-top: 3px; }
  .prodcard-meta .pm-price { flex-shrink: 0; text-align: right; font-family: 'Bricolage Grotesque', sans-serif; font-weight: 800; font-size: 22px; color: var(--green-v2); letter-spacing: -0.02em; line-height: 1; }
  .prodcard-meta .pm-price span { display: block; font-size: 11px; color: var(--ink-mute); font-weight: 700; margin-top: 4px; }



  .refs { max-width: 1200px; margin: 68px auto 0; padding: 0 32px; }
  .refs-head { text-align: center; max-width: 720px; margin: 0 auto 40px; }
  .refs-head .eyebrow { justify-content: center; }
  .refs-head h2 {
    font-family: 'Bricolage Grotesque', sans-serif; font-variation-settings: "wdth" 95;
    font-size: clamp(28px, 3.2vw, 40px); font-weight: 800; letter-spacing: -0.03em;
    line-height: 1.05; margin: 12px 0 0; color: var(--ink); text-wrap: balance;
  }
  .refs-head h2 em { font-family: 'Newsreader', serif; font-style: italic; font-weight: 500; color: var(--green-v2); }
  .refs-head p { font-size: 16px; color: var(--ink-soft); line-height: 1.6; margin: 14px auto 0; max-width: 560px; text-wrap: pretty; }

  .refs-grid {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
  }
  .ref-card {
    display: flex; align-items: center; gap: 14px;
    background: #fff; border: 1px solid var(--rule); border-radius: 18px;
    padding: 18px 20px;
    transition: transform 0.35s cubic-bezier(.22,1,.36,1), box-shadow 0.35s cubic-bezier(.22,1,.36,1), border-color 0.35s ease;
  }
  .ref-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 40px oklch(18% 0.04 250 / 0.1);
    border-color: color-mix(in oklch, var(--green-v2) 32%, var(--rule));
  }
  .ref-crest {
    width: 46px; height: 46px; border-radius: 12px; flex-shrink: 0;
    display: inline-flex; align-items: center; justify-content: center;
    background: var(--green-soft); color: var(--green-v2);
    font-family: 'Bricolage Grotesque', sans-serif; font-weight: 800; font-size: 15px;
    letter-spacing: -0.02em;
  }
  .ref-txt { min-width: 0; }
  .ref-txt .rn {
    display: block; font-family: 'Bricolage Grotesque', sans-serif; font-size: 14.5px;
    font-weight: 700; color: var(--ink); letter-spacing: -0.01em; line-height: 1.2; text-wrap: balance;
  }
  .ref-txt .rl { font-size: 12.5px; color: var(--ink-mute); margin-top: 3px; }

  .refs-note {
    display: flex; align-items: center; justify-content: center; gap: 10px; flex-wrap: wrap;
    margin: 30px auto 0; font-size: 14px; color: var(--ink-mute); text-wrap: pretty; text-align: center;
  }
  .refs-note strong { color: var(--green-v2); font-family: 'Bricolage Grotesque', sans-serif; font-weight: 800; }
  .refs-note .sep { width: 4px; height: 4px; border-radius: 50%; background: var(--rule); flex-shrink: 0; }

  @media (prefers-reduced-motion: no-preference) {
    .refs.reveal-armed .ref-card { opacity: 0; transform: translateY(16px); transition: opacity .55s ease, transform .6s cubic-bezier(.22,1,.36,1); }
    .refs.reveal-armed.is-in .ref-card { opacity: 1; transform: none; }
    .refs.reveal-armed.is-in .ref-card:nth-child(1) { transition-delay: .04s; }
    .refs.reveal-armed.is-in .ref-card:nth-child(2) { transition-delay: .08s; }
    .refs.reveal-armed.is-in .ref-card:nth-child(3) { transition-delay: .12s; }
    .refs.reveal-armed.is-in .ref-card:nth-child(4) { transition-delay: .16s; }
    .refs.reveal-armed.is-in .ref-card:nth-child(5) { transition-delay: .20s; }
    .refs.reveal-armed.is-in .ref-card:nth-child(6) { transition-delay: .24s; }
    .refs.reveal-armed.is-in .ref-card:nth-child(7) { transition-delay: .28s; }
    .refs.reveal-armed.is-in .ref-card:nth-child(8) { transition-delay: .32s; }
  }
  @media (max-width: 900px) { .refs-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .refs-grid { grid-template-columns: 1fr; } }
  @media (max-width: 680px) { .refs { padding-left: 20px; padding-right: 20px; } }



#nav .nav-inner { position: relative; }
#nav .nav-ctas { position: absolute; top: 8px; right: 24px; margin-left: auto; justify-content: flex-end; }
#nav .cart-trigger .cart-trigger-count { background: #d92d20 !important; color: #fff !important; }
#nav .nav-ctas .cart-trigger { background: #000000 !important; color: #fff !important; }
