/* ════════════════════════════════════════════════════════════
   RANK & LEAD — style.css
   Feuille de style partagée — toutes les pages du site
   ════════════════════════════════════════════════════════════ */


/* ── RESET & BASE ────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:          oklch(98%  0.003 80);
  --bg2:         oklch(93%  0.005 80);
  --bg3:         oklch(88%  0.006 80);
  --border:      oklch(82%  0.006 80);
  --text:        oklch(13%  0.004 80);
  --muted:       oklch(48%  0.005 80);
  --dim:         oklch(68%  0.005 80);
  --accent:      oklch(90%  0.23  130);
  --accent-deep: oklch(88%  0.23  130);
  --accent-fg:   oklch(13%  0.04  130);
  --accent-pale: oklch(96%  0.07  130);
  --ink:         oklch(11%  0.004 80);
  --ink-text:    oklch(97%  0.003 80);
  --ink-muted:   oklch(58%  0.005 80);
  --ink-border:  oklch(22%  0.005 80);
  --red-pale:    oklch(95%  0.02  25);
  --red-dim:     oklch(62%  0.12  25);
  --font: 'Bricolage Grotesque', system-ui, sans-serif;
  --pad-x: clamp(20px, 5vw, 64px);
  --max-w: 1120px;
}

html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}


/* ── REVEALS ─────────────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.6s cubic-bezier(0.16,1,0.3,1), transform 0.6s cubic-bezier(0.16,1,0.3,1); }
.reveal.visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }
.reveal-delay-3 { transition-delay: 0.24s; }
.reveal-delay-4 { transition-delay: 0.32s; }


/* ── LAYOUT ──────────────────────────────────────────────── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 var(--pad-x); }
.section { padding-top: clamp(72px, 10vw, 120px); padding-bottom: clamp(72px, 10vw, 120px); border-bottom: 1px solid var(--border); }
.eyebrow { display: inline-block; font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--accent-fg); background: var(--accent); padding: 4px 10px; border-radius: 4px; margin-bottom: 28px; }
.section-title { font-size: clamp(28px, 4vw, 50px); font-weight: 800; line-height: 1.05; letter-spacing: -0.03em; }
.section-title .hl { color: var(--accent-fg); background: var(--accent); padding: 0 4px; border-radius: 4px; }
.section-sub { font-size: 16px; color: var(--muted); line-height: 1.7; max-width: 56ch; margin-top: 10px; }


/* ── NAV ─────────────────────────────────────────────────── */
nav {
  position: sticky; top: 0; z-index: 100;
  height: 58px;
  background: color-mix(in oklch, var(--bg) 92%, transparent);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: var(--max-w); margin: 0 auto; padding: 0 var(--pad-x);
  height: 100%; display: flex; align-items: center;
  justify-content: space-between; gap: 24px;
}
.nav-logo { font-size: 14px; font-weight: 800; letter-spacing: -0.02em; color: var(--text); text-decoration: none; flex-shrink: 0; }
.nav-logo .dot, .nav-logo .amp { color: var(--accent); }
.nav-links { display: flex; gap: 4px; list-style: none; }
.nav-links a { font-size: 13px; font-weight: 500; color: var(--muted); text-decoration: none; padding: 5px 10px; border-radius: 5px; transition: color 0.18s, background 0.18s; white-space: nowrap; }
.nav-links a:hover { color: var(--text); background: var(--bg3); }
.nav-links a.active { color: var(--text); font-weight: 600; }
.nav-right { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.nav-cta { font-size: 13px; font-weight: 700; background: var(--ink); color: var(--ink-text); padding: 7px 18px; border-radius: 6px; text-decoration: none; flex-shrink: 0; transition: filter 0.2s; }
.nav-cta:hover { filter: brightness(1.25); }


/* ── LANG SWITCH ─────────────────────────────────────────── */
.lang-switch { display: flex; gap: 2px; background: var(--bg2); border: 1.5px solid var(--border); border-radius: 6px; padding: 2px; flex-shrink: 0; }
.lang-btn { font-size: 12px; font-weight: 700; color: var(--muted); text-decoration: none; padding: 5px 10px; border-radius: 4px; letter-spacing: 0.05em; transition: color 0.15s, background 0.15s; }
.lang-btn.active { background: var(--ink); color: var(--ink-text); }
.lang-btn:not(.active):hover { color: var(--text); background: var(--bg3); }
.nav-drawer-lang { display: flex; gap: 8px; align-items: center; padding: 14px 0; border-bottom: 1px solid var(--border); }
.nav-drawer-lang-label { font-size: 13px; font-weight: 600; color: var(--muted); }
.nav-drawer-lang .lang-switch { background: var(--bg3); }


/* ── HAMBURGER ───────────────────────────────────────────── */
.nav-hamburger { display: none; flex-direction: column; justify-content: center; align-items: center; gap: 5px; width: 36px; height: 36px; background: none; border: 1.5px solid var(--border); border-radius: 7px; cursor: pointer; padding: 0; flex-shrink: 0; transition: background 0.18s; }
.nav-hamburger:hover { background: var(--bg3); }
.nav-hamburger span { display: block; width: 16px; height: 1.5px; background: var(--text); border-radius: 2px; transition: transform 0.28s cubic-bezier(0.16,1,0.3,1), opacity 0.2s ease; transform-origin: center; }
nav.menu-open .nav-hamburger span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
nav.menu-open .nav-hamburger span:nth-child(2) { opacity: 0; transform: scaleX(0); }
nav.menu-open .nav-hamburger span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }
.nav-drawer { position: absolute; top: 100%; left: 0; right: 0; background: var(--bg); border-bottom: 1px solid var(--border); box-shadow: 0 8px 32px oklch(0% 0 0 / 0.08); overflow: hidden; max-height: 0; transition: max-height 0.38s cubic-bezier(0.16,1,0.3,1); z-index: 99; }
nav.menu-open .nav-drawer { max-height: 560px; }
.nav-drawer-inner { padding: 16px var(--pad-x) 24px; }
.nav-drawer-links { list-style: none; display: flex; flex-direction: column; border-top: 1px solid var(--border); margin-bottom: 16px; }
.nav-drawer-links a { display: block; font-size: 15px; font-weight: 600; color: var(--text); text-decoration: none; padding: 13px 0; border-bottom: 1px solid var(--border); transition: color 0.18s; }
.nav-drawer-cta { display: flex; justify-content: center; width: 100%; padding: 13px; font-size: 15px; font-weight: 700; background: var(--ink); color: var(--ink-text); text-decoration: none; border-radius: 8px; transition: filter 0.2s; }
.nav-drawer-cta:hover { filter: brightness(1.25); }


/* ── BOUTONS ─────────────────────────────────────────────── */
.btn-primary { display: inline-flex; align-items: center; gap: 8px; background: var(--ink); color: var(--ink-text); font-family: var(--font); font-size: 15px; font-weight: 700; padding: 13px 26px; border-radius: 8px; text-decoration: none; border: none; cursor: pointer; transition: filter 0.2s, transform 0.15s cubic-bezier(0.16,1,0.3,1); }
.btn-primary:hover { filter: brightness(1.2); transform: translateY(-2px); }
.btn-accent { display: inline-flex; align-items: center; gap: 8px; background: var(--accent); color: var(--accent-fg); font-family: var(--font); font-size: 15px; font-weight: 700; padding: 13px 26px; border-radius: 8px; text-decoration: none; border: none; cursor: pointer; transition: filter 0.2s, transform 0.15s cubic-bezier(0.16,1,0.3,1); }
.btn-accent:hover { filter: brightness(0.92); transform: translateY(-2px); }
.btn-ghost-ink { display: inline-flex; align-items: center; gap: 8px; background: transparent; color: var(--ink-text); border: 1.5px solid var(--ink-border); font-family: var(--font); font-size: 15px; font-weight: 600; padding: 12px 24px; border-radius: 8px; text-decoration: none; transition: border-color 0.2s; }
.btn-ghost-ink:hover { border-color: var(--ink-text); }


/* ── HERO (pages d'accueil & partenariat) ────────────────── */
#hero { padding-top: clamp(32px, 4vw, 60px); padding-bottom: clamp(32px, 4vw, 56px); border-bottom: 1px solid var(--border); }
.hero-inner { display: grid; grid-template-columns: 1fr 420px; gap: clamp(40px, 5vw, 72px); align-items: center; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; background: var(--bg2); border: 1px solid var(--border); border-radius: 100px; padding: 5px 14px; font-size: 12px; font-weight: 600; color: var(--muted); margin-bottom: 24px; }
.hero-badge .pip { width: 6px; height: 6px; border-radius: 50%; background: var(--accent-fg); flex-shrink: 0; animation: pulse-dot 2s ease-in-out infinite; }
@keyframes pulse-dot { 0%,100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.5; transform: scale(0.8); } }
.hero-headline { font-size: clamp(28px, 3.6vw, 52px); font-weight: 800; line-height: 1.02; letter-spacing: -0.03em; text-transform: uppercase; margin-bottom: 20px; }
.hero-headline .mark { background: var(--accent); color: var(--accent-fg); padding: 2px 8px; border-radius: 6px; }
.hero-sub { font-size: clamp(15px, 1.6vw, 17px); color: var(--muted); max-width: 54ch; line-height: 1.65; margin-bottom: 28px; }
.hero-cred { margin-top: 36px; padding-top: 24px; border-top: 1px solid var(--border); display: flex; flex-wrap: wrap; gap: 6px 18px; font-size: 12px; color: var(--dim); font-weight: 500; }
.hero-cred .sep { color: var(--border); }


/* ── HERO PROOF CARD ─────────────────────────────────────── */
.hero-proof { background: var(--ink); border-radius: 20px; overflow: hidden; border: 1px solid var(--ink-border); box-shadow: 0 12px 56px oklch(0% 0 0 / 0.14); }
.proof-head { padding: 14px 20px; border-bottom: 1px solid var(--ink-border); display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.proof-head-live { display: flex; align-items: center; gap: 7px; font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--ink-muted); }
.proof-live-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--accent); flex-shrink: 0; animation: pulse-dot 2s ease-in-out infinite; }
.proof-head-sector { font-size: 12px; font-weight: 600; color: oklch(40% 0.004 80); }
.proof-stats-row { display: grid; grid-template-columns: 1fr 1px 1fr 1px 1fr; background: oklch(13.5% 0.004 80); }
.proof-stat-divider-v { background: var(--ink-border); }
.proof-stat { padding: 18px 16px; text-align: center; }
.proof-stat-num { font-size: clamp(22px, 2.5vw, 30px); font-weight: 900; letter-spacing: -0.04em; color: var(--ink-text); line-height: 1; margin-bottom: 5px; }
.proof-stat-label { font-size: 10px; color: var(--ink-muted); font-weight: 600; text-transform: uppercase; letter-spacing: 0.07em; }
.proof-calc { padding: 4px 20px 0; }
.proof-calc-row { display: flex; align-items: center; justify-content: space-between; padding: 12px 0; border-bottom: 1px solid var(--ink-border); font-size: 13px; }
.proof-calc-row:last-of-type { border-bottom: none; padding-bottom: 16px; }
.proof-calc-label { color: var(--ink-muted); font-weight: 500; }
.proof-calc-val { font-weight: 700; color: var(--ink-text); }
.proof-calc-muted .proof-calc-label { color: oklch(35% 0.004 80); }
.proof-calc-muted .proof-calc-val { color: oklch(35% 0.004 80); }
.proof-total { display: flex; align-items: center; justify-content: space-between; padding: 18px 20px; background: var(--accent); }
.proof-total-label { font-size: 13px; font-weight: 700; color: var(--accent-fg); }
.proof-total-val { font-size: clamp(22px, 2.8vw, 28px); font-weight: 900; letter-spacing: -0.04em; color: var(--accent-fg); }
.proof-footer { padding: 12px 20px; border-top: 1px solid oklch(13% 0.04 130 / 0.25); background: oklch(13% 0.04 130 / 0.08); }
.proof-footer p { font-size: 11px; color: oklch(13% 0.04 130 / 0.7); font-weight: 600; text-align: center; letter-spacing: 0.02em; }


/* ── MARQUEE ─────────────────────────────────────────────── */
.marquee-wrap { overflow: hidden; padding: 14px 0; background: var(--ink); border-bottom: 1px solid var(--ink-border); }
.marquee-track { display: flex; width: max-content; animation: marquee 32s linear infinite; }
.marquee-track:hover { animation-play-state: paused; }
.marquee-item { display: flex; align-items: center; gap: 18px; padding: 0 18px; white-space: nowrap; font-size: 11px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-muted); }
.marquee-item .arrow { color: var(--accent); }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }


/* ── STAT BAND ───────────────────────────────────────────── */
.stat-band { background: var(--ink); padding: clamp(40px, 6vw, 72px) 0; border-top: 1px solid var(--ink-border); border-bottom: 1px solid var(--ink-border); }
.stat-band-inner { display: flex; align-items: center; gap: clamp(32px, 5vw, 72px); }
.stat-band-num { font-size: clamp(64px, 11vw, 120px); font-weight: 800; letter-spacing: -0.04em; color: var(--accent); line-height: 1; flex-shrink: 0; }
.stat-band-divider { width: 2px; height: clamp(48px, 6vw, 72px); background: var(--ink-border); flex-shrink: 0; }
.stat-band-text { font-size: clamp(16px, 2.2vw, 22px); font-weight: 600; color: var(--ink-text); line-height: 1.45; letter-spacing: -0.02em; max-width: 52ch; }
.stat-band-text em { color: var(--accent); font-style: normal; }


/* ── MÉTHODE / COMPARE ───────────────────────────────────── */
.methode-header { max-width: 680px; margin-bottom: 56px; }
.methode-header p { font-size: 16px; color: var(--muted); margin-top: 16px; line-height: 1.7; max-width: 55ch; }
.compare-wrap { display: grid; grid-template-columns: 1fr 1fr; border-radius: 16px; overflow: hidden; border: 1px solid var(--border); box-shadow: 0 4px 32px oklch(0% 0 0 / 0.06); }
.compare-classique { background: var(--bg); padding: 40px 36px; border-right: 1px solid var(--border); }
.compare-classique .compare-label { font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--dim); margin-bottom: 8px; }
.compare-classique .compare-subtitle { font-size: 19px; font-weight: 700; color: var(--dim); margin-bottom: 28px; letter-spacing: -0.02em; }
.compare-classique .ci { display: flex; align-items: flex-start; gap: 12px; padding: 13px 0; border-bottom: 1px solid var(--border); font-size: 14px; color: var(--dim); line-height: 1.5; }
.compare-classique .ci:last-child { border-bottom: none; }
.ci-x { flex-shrink: 0; width: 20px; height: 20px; border-radius: 50%; background: var(--red-pale); display: flex; align-items: center; justify-content: center; font-size: 11px; font-weight: 700; color: var(--red-dim); margin-top: 1px; }
.compare-mine { background: var(--accent); padding: 40px 36px; }
.compare-mine .compare-label { font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--accent-fg); margin-bottom: 8px; opacity: 0.65; }
.compare-mine .compare-subtitle { font-size: 19px; font-weight: 700; color: var(--accent-fg); margin-bottom: 28px; letter-spacing: -0.02em; }
.compare-mine .ci { display: flex; align-items: flex-start; gap: 12px; padding: 13px 0; border-bottom: 1px solid color-mix(in oklch, var(--accent-fg) 15%, transparent); font-size: 14px; color: var(--accent-fg); line-height: 1.5; font-weight: 500; }
.compare-mine .ci:last-child { border-bottom: none; }
.ci-arrow { flex-shrink: 0; font-weight: 900; font-size: 16px; color: var(--accent-fg); line-height: 1.4; }


/* ── OFFRES (3 formules) ─────────────────────────────────── */
.offres-intro { max-width: 640px; margin-bottom: 48px; }
.offres-intro p { font-size: 16px; color: var(--muted); margin-top: 16px; line-height: 1.7; }
.offres-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; align-items: stretch; }
.offre-card { border-radius: 16px; border: 1.5px solid var(--border); overflow: hidden; display: flex; flex-direction: column; background: var(--bg); transition: border-color 0.2s, box-shadow 0.2s; }
.offre-card:hover { border-color: var(--accent-deep); }
.offre-card-featured { border-color: var(--accent-fg); box-shadow: 0 6px 40px oklch(0% 0 0 / 0.12); }
.offre-card-featured:hover { border-color: var(--accent-fg); }
.offre-head { padding: 24px 26px 20px; border-bottom: 1px solid var(--border); background: var(--bg2); }
.offre-card-featured .offre-head { background: var(--ink); border-bottom-color: var(--ink-border); }
.offre-tag { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--muted); margin-bottom: 10px; display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.offre-card-featured .offre-tag { color: var(--ink-muted); }
.offre-tag-badge { background: var(--accent); color: var(--accent-fg); font-size: 9px; font-weight: 800; padding: 2px 8px; border-radius: 100px; letter-spacing: 0.06em; }
.offre-name { font-size: clamp(17px, 2vw, 21px); font-weight: 800; letter-spacing: -0.025em; line-height: 1.15; color: var(--text); }
.offre-card-featured .offre-name { color: var(--ink-text); }
.offre-body { padding: 24px 26px; flex: 1; display: flex; flex-direction: column; }
.offre-price { display: flex; align-items: baseline; gap: 4px; margin-bottom: 4px; }
.offre-price-amount { font-size: clamp(28px, 3.5vw, 40px); font-weight: 900; letter-spacing: -0.04em; line-height: 1; color: var(--text); }
.offre-price-period { font-size: 13px; color: var(--muted); font-weight: 500; }
.offre-price-then { font-size: 12px; color: var(--muted); margin-bottom: 20px; line-height: 1.55; padding-top: 4px; }
.offre-price-then strong { font-weight: 700; color: var(--accent-fg); background: var(--accent); padding: 1px 5px; border-radius: 3px; font-size: 11px; }
.offre-items { flex: 1; display: flex; flex-direction: column; gap: 9px; margin-bottom: 24px; }
.offre-item { display: flex; align-items: flex-start; gap: 10px; font-size: 13px; line-height: 1.5; color: var(--text); }
.offre-check { width: 18px; height: 18px; border-radius: 50%; flex-shrink: 0; margin-top: 1px; background: color-mix(in oklch, var(--accent) 20%, transparent); display: flex; align-items: center; justify-content: center; font-size: 9px; font-weight: 900; color: var(--accent-fg); }
.offre-cta { display: flex; align-items: center; justify-content: center; gap: 8px; width: 100%; padding: 12px 20px; border-radius: 8px; font-family: var(--font); font-size: 14px; font-weight: 700; text-decoration: none; transition: filter 0.2s, transform 0.15s; border: none; cursor: pointer; }
.offre-cta-dark { background: var(--ink); color: var(--ink-text); }
.offre-cta-dark:hover { filter: brightness(1.25); transform: translateY(-1px); }
.offre-cta-accent { background: var(--accent); color: var(--accent-fg); }
.offre-cta-accent:hover { filter: brightness(0.92); transform: translateY(-1px); }
.offre-cta-ghost { background: transparent; color: var(--text); border: 1.5px solid var(--border); }
.offre-cta-ghost:hover { border-color: var(--text); }


/* ── INFO BANNER ─────────────────────────────────────────── */
.info-banner { display: flex; gap: 16px; align-items: flex-start; background: var(--bg2); border: 1.5px solid var(--border); border-left: 3px solid var(--accent-fg); border-radius: 12px; padding: 20px 22px; margin-top: 24px; }
.ib-icon { width: 28px; height: 28px; flex-shrink: 0; border-radius: 50%; background: var(--accent); color: var(--accent-fg); font-size: 13px; font-weight: 900; display: flex; align-items: center; justify-content: center; margin-top: 1px; }
.ib-content { display: flex; flex-direction: column; gap: 6px; }
.ib-title { font-size: 13px; font-weight: 800; color: var(--text); }
.ib-text { font-size: 13px; color: var(--muted); line-height: 1.7; }
.ib-text strong { color: var(--text); font-weight: 700; }


/* ── PROCESS (fonctionnement) ────────────────────────────── */
.process-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; background: var(--border); border-radius: 16px; overflow: hidden; margin-bottom: 16px; }
.process-step { background: var(--bg); padding: clamp(24px, 3vw, 38px); display: flex; flex-direction: column; gap: 14px; }
.process-num { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--accent-fg); }
.process-title { font-size: clamp(15px, 1.8vw, 18px); font-weight: 800; letter-spacing: -0.02em; line-height: 1.2; color: var(--text); }
.process-desc { font-size: 13px; color: var(--muted); line-height: 1.65; }


/* ── SCÉNARIOS ───────────────────────────────────────────── */
.process-scenarios { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.process-scenario { border-radius: 14px; padding: clamp(20px, 2.5vw, 28px); display: flex; flex-direction: column; gap: 12px; }
.ps-fast { background: var(--accent-pale); border: 1.5px solid color-mix(in oklch, var(--accent) 40%, transparent); }
.ps-new  { background: var(--bg2); border: 1.5px solid var(--border); }
.ps-badge { display: inline-flex; align-items: center; gap: 6px; font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.09em; padding: 4px 11px; border-radius: 100px; width: fit-content; }
.ps-badge::before { content: ''; width: 6px; height: 6px; border-radius: 50%; flex-shrink: 0; }
.ps-badge-fast { background: var(--accent); color: var(--accent-fg); }
.ps-badge-fast::before { background: var(--accent-fg); opacity: 0.5; }
.ps-badge-new  { background: var(--bg3); color: var(--muted); border: 1px solid var(--border); }
.ps-badge-new::before { background: var(--muted); }
.ps-delay { display: flex; align-items: baseline; gap: 8px; padding-bottom: 12px; border-bottom: 1px solid color-mix(in oklch, var(--accent-fg) 20%, transparent); }
.ps-new .ps-delay { border-bottom-color: var(--border); }
.ps-delay-num { font-size: clamp(32px, 4vw, 44px); font-weight: 900; letter-spacing: -0.04em; line-height: 1; color: var(--accent-fg); }
.ps-new .ps-delay-num { color: var(--text); }
.ps-delay-label { font-size: 13px; font-weight: 600; color: var(--accent-fg); opacity: 0.7; }
.ps-new .ps-delay-label { color: var(--muted); opacity: 1; }
.ps-title { font-size: 14px; font-weight: 800; letter-spacing: -0.01em; line-height: 1.3; color: var(--text); }
.ps-desc { font-size: 13px; color: var(--muted); line-height: 1.7; }
.ps-desc strong { color: var(--text); font-weight: 700; }
.ps-detail { font-size: 11px; font-weight: 600; color: var(--accent-fg); text-transform: uppercase; letter-spacing: 0.07em; }
.ps-new .ps-detail { color: var(--muted); }


/* ── TRACKING GRID (secteurs / features) ─────────────────── */
.tracking-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 48px; }
.tracking-card { background: var(--bg); border: 1.5px solid var(--border); border-radius: 16px; padding: clamp(22px, 2.8vw, 32px); display: flex; flex-direction: column; gap: 14px; transition: border-color 0.2s; }
.tracking-card:hover { border-color: var(--accent-deep); }
.tracking-card-featured { border-color: var(--accent-fg); box-shadow: 0 4px 24px oklch(0% 0 0 / 0.08); }
.tracking-icon { font-size: 28px; line-height: 1; }
.tracking-name { font-size: clamp(15px, 1.8vw, 17px); font-weight: 800; letter-spacing: -0.02em; color: var(--text); line-height: 1.2; margin-bottom: 6px; }
.tracking-desc { font-size: 13px; color: var(--muted); line-height: 1.7; flex: 1; }
.tracking-tags { display: flex; flex-wrap: wrap; gap: 7px; padding-top: 4px; }
.tracking-tag { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.07em; color: var(--accent-fg); background: var(--accent); padding: 3px 10px; border-radius: 100px; }
.tracking-card:not(.tracking-card-featured) .tracking-tag { background: var(--bg2); color: var(--muted); border: 1px solid var(--border); }


/* ── ICP / POUR QUI ──────────────────────────────────────── */
.icp-intro { font-size: clamp(26px, 3.5vw, 44px); font-weight: 800; letter-spacing: -0.03em; line-height: 1.05; max-width: 680px; margin-bottom: 56px; }
.icp-grid { display: flex; flex-direction: column; }
.icp-item { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; padding: 40px 0; border-bottom: 1px solid var(--border); align-items: start; }
.icp-item:first-child { border-top: 1px solid var(--border); }
.icp-label { font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); margin-bottom: 12px; }
.icp-title { font-size: clamp(20px, 2.5vw, 26px); font-weight: 800; letter-spacing: -0.025em; line-height: 1.1; margin-bottom: 14px; }
.icp-desc { font-size: 15px; color: var(--muted); line-height: 1.7; }
.icp-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 20px; }
.icp-chip { font-size: 12px; font-weight: 600; color: var(--text); background: var(--bg2); border: 1px solid var(--border); border-radius: 100px; padding: 5px 14px; }
.icp-signal { font-size: 14px; color: var(--muted); line-height: 1.65; padding-top: 16px; border-top: 1px solid var(--border); }
.icp-signal strong { color: var(--text); font-weight: 600; }


/* ── FORMULAIRE MULTI-STEPS ──────────────────────────────── */
.contact-layout { display: grid; grid-template-columns: 5fr 7fr; gap: clamp(48px, 6vw, 80px); align-items: start; }
.contact-context > p { font-size: 16px; color: var(--muted); line-height: 1.75; max-width: 44ch; }
.contact-trust { margin-top: 28px; display: flex; flex-direction: column; gap: 10px; padding-top: 28px; border-top: 1px solid var(--border); }
.contact-trust-item { display: flex; align-items: center; gap: 10px; font-size: 14px; font-weight: 500; color: var(--muted); }
.contact-trust-item .tick { width: 20px; height: 20px; border-radius: 50%; background: var(--accent); color: var(--accent-fg); font-size: 10px; font-weight: 900; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.form-fields { display: flex; flex-direction: column; gap: 14px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: 11px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); }
.form-group input, .form-group select, .form-group textarea { background: var(--bg2); border: 1.5px solid var(--border); border-radius: 8px; padding: 10px 14px; font-family: var(--font); font-size: 14px; color: var(--text); outline: none; transition: border-color 0.2s, box-shadow 0.2s; width: 100%; resize: vertical; appearance: none; -webkit-appearance: none; }
.form-group input::placeholder, .form-group textarea::placeholder { color: var(--dim); }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--accent-deep); background: var(--bg); box-shadow: 0 0 0 3px var(--accent-pale); }
.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.form-submit-row { margin-top: 20px; padding-top: 20px; border-top: 1px solid var(--border); }
.form-success { text-align: center; padding: 40px 16px; display: none; }
.form-success.show { display: block; }
.form-success-icon { width: 56px; height: 56px; border-radius: 50%; background: var(--accent); color: var(--accent-fg); font-size: 22px; font-weight: 800; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; }
.form-success-title { font-size: 22px; font-weight: 800; color: var(--text); letter-spacing: -0.02em; margin-bottom: 8px; }
.form-success-text { font-size: 15px; color: var(--muted); line-height: 1.65; }
.form-step-header { margin-bottom: 20px; }
.form-step-label { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--muted); margin-bottom: 6px; }
.form-step-title { font-size: 17px; font-weight: 800; letter-spacing: -0.02em; color: var(--text); }
.form-progress { height: 3px; background: var(--border); border-radius: 2px; margin-bottom: 24px; overflow: hidden; }
.form-progress-bar { height: 100%; background: var(--accent-fg); border-radius: 2px; transition: width 0.45s cubic-bezier(0.16,1,0.3,1); }
.form-step-panel { display: none; flex-direction: column; gap: 14px; }
.form-step-panel.active { display: flex; }
.radio-cards { display: flex; flex-direction: column; gap: 7px; }
.radio-card { position: relative; }
.radio-card input[type="radio"] { position: absolute; opacity: 0; width: 0; height: 0; pointer-events: none; }
.radio-card label { display: flex; align-items: center; gap: 12px; padding: 11px 16px; border: 1.5px solid var(--border); border-radius: 10px; cursor: pointer; font-size: 14px; font-weight: 500; color: var(--text); background: var(--bg); transition: border-color 0.18s, background 0.18s; user-select: none; }
.radio-card label:hover { border-color: var(--accent-deep); background: var(--accent-pale); }
.radio-card input:checked + label { border-color: var(--accent-fg); background: var(--accent-pale); font-weight: 700; }
.rc-dot { width: 16px; height: 16px; border-radius: 50%; border: 2px solid var(--border); flex-shrink: 0; display: flex; align-items: center; justify-content: center; transition: border-color 0.18s, background 0.18s; }
.radio-card input:checked + label .rc-dot { border-color: var(--accent-fg); background: var(--accent-fg); }
.radio-card input:checked + label .rc-dot::after { content: ''; width: 5px; height: 5px; border-radius: 50%; background: var(--accent); display: block; }
.form-nav { display: flex; gap: 10px; margin-top: 6px; padding-top: 20px; border-top: 1px solid var(--border); }
.btn-step-prev { background: transparent; color: var(--text); border: 1.5px solid var(--border); font-family: var(--font); font-size: 14px; font-weight: 600; padding: 11px 20px; border-radius: 8px; cursor: pointer; transition: border-color 0.2s; flex-shrink: 0; }
.btn-step-prev:hover { border-color: var(--text); }
.btn-step-next { flex: 1; }


/* ── FAQ ─────────────────────────────────────────────────── */
.faq-list { display: flex; flex-direction: column; gap: 8px; }
.faq-item { border: 1.5px solid var(--border); border-radius: 12px; overflow: hidden; }
.faq-q { display: flex; align-items: center; justify-content: space-between; padding: 18px 22px; font-size: 15px; font-weight: 700; color: var(--text); cursor: pointer; gap: 16px; background: var(--bg2); border: none; width: 100%; font-family: var(--font); text-align: left; transition: background 0.2s; }
.faq-q:hover { background: var(--bg3); }
.faq-q.open { background: var(--accent); color: var(--accent-fg); }
.faq-icon { width: 24px; height: 24px; flex-shrink: 0; border-radius: 50%; background: var(--border); display: flex; align-items: center; justify-content: center; font-size: 16px; font-weight: 700; line-height: 1; transition: transform 0.25s, background 0.2s; }
.faq-q.open .faq-icon { transform: rotate(45deg); background: color-mix(in oklch, var(--accent-fg) 20%, transparent); color: var(--accent-fg); }
.faq-a { font-size: 14px; line-height: 1.75; color: var(--muted); max-height: 0; overflow: hidden; padding: 0 22px; transition: max-height 0.35s ease, padding 0.35s ease; }
.faq-a.open { max-height: 400px; padding: 18px 22px; }


/* ── CTA FINAL (grande section sombre) ───────────────────── */
#cta-final { background: var(--bg2); border-bottom: none; }
#cta-final .cta-inner { background: var(--ink); border-radius: 20px; padding: clamp(48px, 8vw, 96px) clamp(36px, 6vw, 72px); overflow: hidden; position: relative; }
#cta-final .cta-inner::before { content: ''; position: absolute; top: -120px; right: -80px; width: 480px; height: 480px; border-radius: 50%; background: radial-gradient(circle, color-mix(in oklch, var(--accent) 12%, transparent) 0%, transparent 70%); pointer-events: none; }
.cta-headline { font-size: clamp(36px, 5.5vw, 72px); font-weight: 800; text-transform: uppercase; letter-spacing: -0.035em; line-height: 0.96; color: var(--ink-text); max-width: 820px; margin-bottom: 28px; position: relative; }
.cta-headline .mark { background: var(--accent); color: var(--accent-fg); padding: 0 8px; border-radius: 6px; }
.cta-sub { font-size: 17px; color: var(--ink-muted); max-width: 50ch; line-height: 1.65; margin-bottom: 40px; position: relative; }
.cta-btns { display: flex; gap: 12px; flex-wrap: wrap; position: relative; }
.cta-note { margin-top: 18px; font-size: 13px; color: var(--ink-muted); position: relative; }


/* ── CALCULATOR (page lead-value-calculator) ─────────────── */
.calc-page-hero { padding: clamp(48px, 7vw, 88px) 0 clamp(40px, 6vw, 64px); border-bottom: 1px solid var(--border); }
.calc-hero-tag { display: inline-flex; align-items: center; gap: 8px; background: var(--accent); color: var(--accent-fg); font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; padding: 4px 12px; border-radius: 100px; margin-bottom: 22px; }
.calc-hero-title { font-size: clamp(30px, 5vw, 58px); font-weight: 800; letter-spacing: -0.035em; line-height: 1.05; max-width: 720px; margin-bottom: 18px; }
.calc-hero-title .mark { background: var(--accent); padding: 0 6px; border-radius: 4px; }
.calc-hero-sub { font-size: clamp(15px, 1.8vw, 17px); color: var(--muted); line-height: 1.7; max-width: 56ch; margin-bottom: 32px; }
.calc-hero-stats { display: flex; flex-wrap: wrap; gap: 10px 32px; }
.calc-hero-stat { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--muted); font-weight: 500; }
.calc-hero-stat-num { font-size: 20px; font-weight: 800; letter-spacing: -0.03em; color: var(--text); }
.calc-wrap { display: grid; grid-template-columns: 1fr 420px; gap: clamp(32px, 5vw, 56px); align-items: start; padding: clamp(40px, 6vw, 64px) 0; }
.calc-inputs { display: flex; flex-direction: column; gap: 36px; }
.input-group { display: flex; flex-direction: column; gap: 10px; }
.input-group-header { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; }
.input-label { font-size: 14px; font-weight: 700; color: var(--text); letter-spacing: -0.01em; }
.input-label-hint { font-size: 12px; color: var(--dim); font-weight: 400; }
.input-value-display { font-size: 22px; font-weight: 800; letter-spacing: -0.03em; color: var(--accent-fg); background: var(--accent); padding: 2px 10px; border-radius: 6px; min-width: 90px; text-align: right; line-height: 1.4; }
.range-wrap { position: relative; }
input[type="range"] { -webkit-appearance: none; appearance: none; width: 100%; height: 5px; border-radius: 3px; outline: none; cursor: pointer; background: linear-gradient(to right, var(--accent-fg) var(--pct, 30%), var(--border) var(--pct, 30%)); transition: background 0.1s; }
input[type="range"]::-webkit-slider-thumb { -webkit-appearance: none; appearance: none; width: 20px; height: 20px; border-radius: 50%; background: var(--accent-fg); border: 3px solid var(--bg); box-shadow: 0 0 0 2px var(--accent-fg), 0 2px 6px oklch(0% 0 0 / 0.15); cursor: pointer; transition: transform 0.15s; }
input[type="range"]::-webkit-slider-thumb:hover { transform: scale(1.15); }
input[type="range"]::-moz-range-thumb { width: 20px; height: 20px; border-radius: 50%; background: var(--accent-fg); border: 3px solid var(--bg); box-shadow: 0 0 0 2px var(--accent-fg); cursor: pointer; }
.range-bounds { display: flex; justify-content: space-between; margin-top: 5px; }
.range-bounds span { font-size: 11px; color: var(--dim); font-weight: 500; }
.calc-section-title { font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); padding-bottom: 18px; border-bottom: 1px solid var(--border); margin-bottom: 4px; }
.calc-results-wrap { align-self: stretch; }
.calc-results-sticky { position: sticky; top: 78px; }
.results-card { background: var(--ink); border-radius: 20px; overflow: hidden; border: 1px solid var(--ink-border); }
.results-head { padding: 20px 22px 16px; border-bottom: 1px solid var(--ink-border); }
.results-head-label { font-size: 10px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-muted); margin-bottom: 4px; }
.results-lead-value { display: flex; align-items: center; gap: 12px; }
.results-lead-num { font-size: clamp(38px, 5vw, 52px); font-weight: 800; letter-spacing: -0.04em; color: var(--accent); line-height: 1; }
.grade-badge { display: inline-flex; align-items: center; padding: 4px 10px; border-radius: 6px; font-size: 11px; font-weight: 800; letter-spacing: 0.06em; text-transform: uppercase; }
.grade-low   { background: oklch(25% 0.03 25);  color: oklch(70% 0.1 25); }
.grade-ok    { background: oklch(25% 0.03 65);  color: oklch(78% 0.1 65); }
.grade-good  { background: oklch(22% 0.04 130); color: var(--accent); }
.grade-great { background: oklch(22% 0.06 130); color: var(--accent); }
.results-head-sub { font-size: 12px; color: var(--ink-muted); margin-top: 8px; line-height: 1.5; }
.results-metrics { display: grid; grid-template-columns: 1fr 1fr; border-bottom: 1px solid var(--ink-border); }
.metric-cell { padding: 16px 20px; }
.metric-cell:not(:last-child) { border-right: 1px solid var(--ink-border); }
.metric-cell:nth-child(3), .metric-cell:nth-child(4) { border-top: 1px solid var(--ink-border); }
.metric-label { font-size: 10px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-muted); margin-bottom: 5px; }
.metric-value { font-size: 22px; font-weight: 800; letter-spacing: -0.03em; color: var(--ink-text); line-height: 1; }
.metric-value.accent { color: var(--accent); }
.metric-value.muted  { color: oklch(55% 0.005 80); font-size: 18px; }
.results-bar-section { padding: 16px 20px; border-bottom: 1px solid var(--ink-border); }
.results-bar-label { display: flex; justify-content: space-between; font-size: 11px; color: var(--ink-muted); margin-bottom: 8px; font-weight: 600; }
.results-bar-label span:last-child { color: var(--ink-text); }
.results-bar-track { height: 8px; background: var(--ink-border); border-radius: 4px; overflow: hidden; }
.results-bar-fill { height: 100%; background: var(--accent); border-radius: 4px; transition: width 0.4s cubic-bezier(0.16,1,0.3,1); min-width: 4px; }
.results-net { display: flex; align-items: center; justify-content: space-between; padding: 18px 22px; background: var(--accent); }
.results-net-label { font-size: 13px; font-weight: 700; color: var(--accent-fg); }
.results-net-value { font-size: 26px; font-weight: 800; letter-spacing: -0.03em; color: var(--accent-fg); }
.results-annual { padding: 14px 20px; }
.results-annual-row { display: flex; justify-content: space-between; align-items: center; font-size: 12px; color: var(--ink-muted); padding: 5px 0; }
.results-annual-row:not(:last-child) { border-bottom: 1px solid oklch(18% 0.004 80); }
.results-annual-row strong { color: var(--ink-text); font-weight: 700; }
.results-roi { padding: 12px 20px 16px; }
.roi-pill { display: flex; align-items: center; gap: 10px; background: oklch(16% 0.005 80); border-radius: 10px; padding: 12px 16px; }
.roi-icon { width: 32px; height: 32px; border-radius: 8px; background: oklch(22% 0.06 130); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.roi-text { font-size: 12px; color: var(--ink-muted); line-height: 1.5; }
.roi-text strong { color: var(--accent); font-size: 14px; font-weight: 800; display: block; letter-spacing: -0.02em; }
.calc-info-section { padding: clamp(48px, 7vw, 80px) 0; border-top: 1px solid var(--border); }
.calc-info-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 36px; }
.calc-info-card { background: var(--bg2); border: 1.5px solid var(--border); border-radius: 14px; padding: 22px 24px; }
.calc-info-card-icon { font-size: 22px; margin-bottom: 12px; }
.calc-info-card-title { font-size: 15px; font-weight: 800; letter-spacing: -0.02em; color: var(--text); margin-bottom: 8px; }
.calc-info-card-text { font-size: 13px; color: var(--muted); line-height: 1.7; }
.calc-cta-section { background: var(--ink); padding: clamp(48px, 7vw, 80px) 0; }
.calc-cta-inner { display: grid; grid-template-columns: 1fr auto; gap: 32px; align-items: center; }
.calc-cta-eyebrow { font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--accent); margin-bottom: 12px; }
.calc-cta-title { font-size: clamp(22px, 3.5vw, 36px); font-weight: 800; letter-spacing: -0.03em; line-height: 1.1; color: var(--ink-text); margin-bottom: 10px; }
.calc-cta-sub { font-size: 14px; color: var(--ink-muted); line-height: 1.65; max-width: 52ch; }
.calc-cta-btn { display: inline-flex; align-items: center; gap: 8px; background: var(--accent); color: var(--accent-fg); font-family: var(--font); font-size: 15px; font-weight: 700; padding: 14px 28px; border-radius: 10px; text-decoration: none; white-space: nowrap; transition: filter 0.2s; flex-shrink: 0; }
.calc-cta-btn:hover { filter: brightness(0.92); }


/* ── BLOG GRID ───────────────────────────────────────────── */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.blog-card { display: flex; flex-direction: column; border: 1.5px solid var(--border); border-radius: 16px; overflow: hidden; background: var(--bg); text-decoration: none; transition: border-color 0.2s, box-shadow 0.2s; }
.blog-card:hover { border-color: var(--accent-deep); box-shadow: 0 4px 24px oklch(0% 0 0 / 0.06); }
.blog-card-img { aspect-ratio: 16/9; background: var(--bg2); display: flex; align-items: center; justify-content: center; font-size: 32px; border-bottom: 1px solid var(--border); }
.blog-card-body { padding: 20px 22px; flex: 1; display: flex; flex-direction: column; gap: 8px; }
.blog-card-cat { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--accent-fg); background: var(--accent); padding: 3px 9px; border-radius: 100px; width: fit-content; }
.blog-card-title { font-size: 15px; font-weight: 700; letter-spacing: -0.015em; line-height: 1.35; color: var(--text); flex: 1; }
.blog-card-meta { font-size: 12px; color: var(--dim); margin-top: 4px; }


/* ── CALC TEASER (bloc sombre sur page d'accueil) ────────── */
.calc-teaser { display: grid; grid-template-columns: 1fr auto; gap: 40px; align-items: center; background: var(--ink); border-radius: 20px; padding: clamp(32px, 5vw, 56px); margin-top: 48px; }
.calc-teaser-eyebrow { font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--accent); margin-bottom: 12px; }
.calc-teaser-title { font-size: clamp(20px, 2.5vw, 28px); font-weight: 800; letter-spacing: -0.03em; line-height: 1.1; color: var(--ink-text); margin-bottom: 10px; }
.calc-teaser-sub { font-size: 14px; color: var(--ink-muted); line-height: 1.65; max-width: 48ch; }


/* ── ARTICLE (template blog) ─────────────────────────────── */
.breadcrumb { padding: 14px 0; border-bottom: 1px solid var(--border); }
.breadcrumb-inner { display: flex; align-items: center; gap: 8px; font-size: 12px; color: var(--dim); }
.breadcrumb-inner a { color: var(--muted); text-decoration: none; transition: color 0.18s; }
.breadcrumb-inner a:hover { color: var(--text); }
.breadcrumb-sep { color: var(--border); }

.article-header { padding: clamp(40px, 6vw, 72px) 0 clamp(32px, 5vw, 56px); border-bottom: 1px solid var(--border); }
.article-category { display: inline-flex; align-items: center; gap: 8px; background: var(--accent); color: var(--accent-fg); font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; padding: 4px 12px; border-radius: 100px; margin-bottom: 22px; text-decoration: none; }
.article-title { font-size: clamp(28px, 5vw, 60px); font-weight: 800; letter-spacing: -0.035em; line-height: 1.05; max-width: 820px; margin-bottom: 18px; }
.article-excerpt { font-size: clamp(15px, 1.8vw, 18px); color: var(--muted); line-height: 1.7; max-width: 64ch; margin-bottom: 28px; }
.article-meta { display: flex; align-items: center; gap: 6px 20px; flex-wrap: wrap; padding-top: 20px; border-top: 1px solid var(--border); }
.meta-author { display: flex; align-items: center; gap: 10px; }
.meta-author-avatar { width: 36px; height: 36px; border-radius: 50%; background: var(--ink); color: var(--accent); font-size: 13px; font-weight: 800; display: flex; align-items: center; justify-content: center; flex-shrink: 0; letter-spacing: -0.02em; }
.meta-author-name { font-size: 13px; font-weight: 700; color: var(--text); }
.meta-sep { color: var(--border); font-size: 18px; font-weight: 300; }
.meta-item { display: flex; align-items: center; gap: 5px; font-size: 13px; color: var(--dim); font-weight: 500; }

.article-hero-img { width: 100%; aspect-ratio: 16/7; background: var(--bg2); border-radius: 16px; overflow: hidden; margin: clamp(28px, 4vw, 44px) 0; border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; position: relative; }
.article-hero-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.hero-img-placeholder { display: flex; flex-direction: column; align-items: center; gap: 12px; color: var(--dim); }
.hero-img-placeholder-icon { font-size: 40px; line-height: 1; }
.hero-img-placeholder p { font-size: 13px; font-weight: 500; }

.article-body-wrap { display: grid; grid-template-columns: 300px 1fr; gap: clamp(40px, 5vw, 64px); align-items: start; padding: clamp(40px, 6vw, 64px) 0; }

/* Prose */
.prose { max-width: 72ch; }
.prose .lead { font-size: clamp(16px, 1.8vw, 18px); color: var(--muted); line-height: 1.8; margin-bottom: 32px; padding-bottom: 32px; border-bottom: 1px solid var(--border); }
.prose h2 { font-size: clamp(20px, 2.5vw, 28px); font-weight: 800; letter-spacing: -0.025em; line-height: 1.15; margin-top: 48px; margin-bottom: 16px; color: var(--text); scroll-margin-top: 80px; }
.prose h2:first-child { margin-top: 0; }
.prose h3 { font-size: clamp(16px, 1.8vw, 20px); font-weight: 700; letter-spacing: -0.015em; line-height: 1.25; margin-top: 32px; margin-bottom: 12px; color: var(--text); scroll-margin-top: 80px; }
.prose p { font-size: 16px; line-height: 1.85; color: var(--text); margin-bottom: 20px; }
.prose p:last-child { margin-bottom: 0; }
.prose strong { font-weight: 700; color: var(--text); }
.prose em { font-style: italic; }
.prose a { color: var(--accent-fg); text-decoration: underline; text-decoration-thickness: 1.5px; text-underline-offset: 3px; transition: color 0.18s; }
.prose a:hover { color: var(--text); }
.prose ul, .prose ol { margin: 0 0 20px 0; padding-left: 0; list-style: none; display: flex; flex-direction: column; gap: 8px; }
.prose ul li, .prose ol li { font-size: 16px; line-height: 1.75; color: var(--text); padding-left: 24px; position: relative; }
.prose ul li::before { content: ''; position: absolute; left: 0; top: 10px; width: 7px; height: 7px; border-radius: 50%; background: var(--accent); flex-shrink: 0; }
.prose ol { counter-reset: ol-counter; }
.prose ol li { counter-increment: ol-counter; }
.prose ol li::before { content: counter(ol-counter) '.'; position: absolute; left: 0; top: 0; font-size: 13px; font-weight: 800; color: var(--accent-fg); background: var(--accent); width: 18px; height: 18px; border-radius: 4px; display: flex; align-items: center; justify-content: center; margin-top: 3px; }
.prose blockquote { margin: 32px 0; padding: 24px 28px; border-left: 3px solid var(--accent); background: var(--accent-pale); border-radius: 0 12px 12px 0; }
.prose blockquote p { font-size: clamp(16px, 1.8vw, 18px); font-weight: 600; color: var(--text); line-height: 1.65; margin-bottom: 0; font-style: normal; }
.prose blockquote cite { display: block; margin-top: 12px; font-size: 13px; font-weight: 500; color: var(--muted); font-style: normal; }
.prose figure { margin: 32px 0; }
.prose figure img { width: 100%; border-radius: 12px; border: 1px solid var(--border); display: block; }
.prose figcaption { font-size: 12px; color: var(--dim); text-align: center; margin-top: 10px; line-height: 1.6; }
.prose hr { border: none; border-top: 1px solid var(--border); margin: 40px 0; }
.prose .intro-figure { margin: 28px 0 36px; }
.prose .intro-figure img { width: 100%; max-height: 340px; object-fit: cover; border-radius: 12px; border: 1px solid var(--border); display: block; }
.prose .intro-figure figcaption { font-size: 12px; color: var(--dim); margin-top: 9px; line-height: 1.6; }

/* Callout */
.callout { display: flex; gap: 14px; align-items: flex-start; background: var(--bg2); border: 1.5px solid var(--border); border-left: 3px solid var(--accent-fg); border-radius: 12px; padding: 18px 20px; margin: 28px 0; }
.callout-icon { width: 26px; height: 26px; flex-shrink: 0; border-radius: 50%; background: var(--accent); color: var(--accent-fg); font-size: 13px; font-weight: 900; display: flex; align-items: center; justify-content: center; margin-top: 1px; }
.callout-body { display: flex; flex-direction: column; gap: 4px; }
.callout-title { font-size: 13px; font-weight: 800; color: var(--text); }
.callout p { font-size: 13px; color: var(--muted); line-height: 1.7; margin-bottom: 0 !important; }

/* Warning block */
.prose .warning-block { margin: 32px 0; padding: 22px 26px; border-left: 3px solid oklch(58% 0.14 25); background: oklch(97% 0.018 25); border-radius: 0 12px 12px 0; }
.prose .warning-block-title { font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.09em; color: oklch(48% 0.14 25); margin-bottom: 8px; }
.prose .warning-block p { font-size: 15px; font-weight: 500; color: var(--text); line-height: 1.7; margin-bottom: 0 !important; }

/* Stat highlight */
.stat-highlight { background: var(--ink); border-radius: 14px; padding: 24px 28px; margin: 32px 0; display: flex; align-items: center; gap: 20px; }
.stat-highlight-num { font-size: clamp(40px, 6vw, 56px); font-weight: 800; letter-spacing: -0.04em; color: var(--accent); line-height: 1; flex-shrink: 0; }
.stat-highlight-divider { width: 2px; height: 48px; background: var(--ink-border); flex-shrink: 0; }
.stat-highlight-text { font-size: 15px; font-weight: 600; color: var(--ink-text); line-height: 1.5; }
.stat-highlight-text em { color: var(--accent); font-style: normal; }

/* Image placeholder */
.img-placeholder { width: 100%; aspect-ratio: 16/9; background: var(--bg2); border: 1px dashed var(--border); border-radius: 12px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px; color: var(--dim); margin: 28px 0; }
.img-placeholder-label { font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; }

/* Author bio */
.author-bio { display: flex; align-items: flex-start; gap: 20px; background: var(--bg2); border: 1.5px solid var(--border); border-radius: 16px; padding: 24px; margin-top: 40px; }
.author-bio-avatar { width: 56px; height: 56px; border-radius: 50%; background: var(--ink); color: var(--accent); font-size: 18px; font-weight: 800; display: flex; align-items: center; justify-content: center; flex-shrink: 0; letter-spacing: -0.02em; }
.author-bio-content { flex: 1; }
.author-bio-label { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--muted); margin-bottom: 4px; }
.author-bio-name { font-size: 16px; font-weight: 800; letter-spacing: -0.02em; color: var(--text); margin-bottom: 8px; }
.author-bio-text { font-size: 14px; color: var(--muted); line-height: 1.7; }
.author-bio-links { display: flex; gap: 10px; margin-top: 12px; }
.author-bio-link { font-size: 12px; font-weight: 600; color: var(--accent-fg); background: var(--accent); padding: 4px 12px; border-radius: 100px; text-decoration: none; transition: filter 0.2s; }
.author-bio-link:hover { filter: brightness(0.92); }

/* Sidebar */
.article-sidebar { display: flex; flex-direction: column; gap: 24px; align-self: stretch; }
.sidebar-sticky { position: sticky; top: 78px; display: flex; flex-direction: column; gap: 24px; }
.toc { background: var(--bg2); border: 1.5px solid var(--border); border-radius: 14px; overflow: hidden; }
.toc-header { padding: 14px 18px; border-bottom: 1px solid var(--border); font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--muted); display: flex; align-items: center; gap: 8px; cursor: pointer; user-select: none; transition: background 0.18s; }
.toc-header:hover { background: var(--bg3); }
.toc-header::before { content: ''; width: 8px; height: 8px; border-radius: 2px; background: var(--accent); flex-shrink: 0; }
.toc-chevron { margin-left: auto; font-size: 11px; color: var(--dim); transition: transform 0.3s cubic-bezier(0.16,1,0.3,1); line-height: 1; }
.toc--collapsed .toc-chevron { transform: rotate(-90deg); }
.toc--collapsed .toc-header { border-bottom-color: transparent; }
.toc-body { max-height: 600px; overflow: hidden; transition: max-height 0.38s cubic-bezier(0.16,1,0.3,1); }
.toc--collapsed .toc-body { max-height: 0; }
.toc-list { list-style: none; padding: 8px 0; }
.toc-item a { display: block; font-size: 13px; font-weight: 500; color: var(--muted); text-decoration: none; padding: 7px 18px; transition: color 0.18s, background 0.18s; line-height: 1.45; border-left: 2px solid transparent; }
.toc-item a:hover { color: var(--text); background: var(--bg3); }
.toc-item.active a { color: var(--text); font-weight: 700; border-left-color: var(--accent-fg); background: var(--accent-pale); }
.toc-item-h3 a { padding-left: 30px; font-size: 12px; color: var(--dim); }
.sidebar-cta { background: var(--ink); border-radius: 14px; padding: 22px; overflow: hidden; position: relative; }
.sidebar-cta::before { content: ''; position: absolute; top: -60px; right: -40px; width: 200px; height: 200px; border-radius: 50%; background: radial-gradient(circle, color-mix(in oklch, var(--accent) 12%, transparent) 0%, transparent 70%); pointer-events: none; }
.sidebar-cta-eyebrow { font-size: 10px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--accent); margin-bottom: 10px; position: relative; }
.sidebar-cta-title { font-size: 17px; font-weight: 800; letter-spacing: -0.02em; line-height: 1.2; color: var(--ink-text); margin-bottom: 10px; position: relative; }
.sidebar-cta-text { font-size: 13px; color: var(--ink-muted); line-height: 1.65; margin-bottom: 18px; position: relative; }
.sidebar-cta-btn { display: flex; align-items: center; justify-content: center; background: var(--accent); color: var(--accent-fg); font-family: var(--font); font-size: 13px; font-weight: 700; padding: 11px 18px; border-radius: 8px; text-decoration: none; position: relative; transition: filter 0.2s; }
.sidebar-cta-btn:hover { filter: brightness(0.92); }
.sidebar-share { background: var(--bg2); border: 1.5px solid var(--border); border-radius: 14px; padding: 16px 18px; }
.sidebar-share-title { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--muted); margin-bottom: 12px; }
.share-btns { display: flex; gap: 8px; }
.share-btn { flex: 1; display: flex; align-items: center; justify-content: center; gap: 6px; padding: 9px; border-radius: 8px; font-size: 12px; font-weight: 700; text-decoration: none; border: 1.5px solid var(--border); color: var(--muted); transition: border-color 0.18s, color 0.18s; background: var(--bg); }
.share-btn:hover { border-color: var(--text); color: var(--text); }

/* Articles liés */
.related { padding: clamp(48px, 7vw, 80px) 0; border-top: 1px solid var(--border); }
.related-header { display: flex; align-items: baseline; justify-content: space-between; gap: 16px; margin-bottom: 32px; }
.related-title { font-size: clamp(20px, 2.5vw, 28px); font-weight: 800; letter-spacing: -0.025em; }
.related-all { font-size: 13px; font-weight: 600; color: var(--muted); text-decoration: none; transition: color 0.18s; }
.related-all:hover { color: var(--text); }
.related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.related-card { display: flex; flex-direction: column; border: 1.5px solid var(--border); border-radius: 14px; overflow: hidden; background: var(--bg); text-decoration: none; transition: border-color 0.2s, box-shadow 0.2s; }
.related-card:hover { border-color: var(--accent-deep); box-shadow: 0 4px 24px oklch(0% 0 0 / 0.06); }
.related-card-img { aspect-ratio: 16/9; background: var(--bg2); display: flex; align-items: center; justify-content: center; border-bottom: 1px solid var(--border); font-size: 28px; color: var(--dim); overflow: hidden; }
.related-card-img img { width: 100%; height: 100%; object-fit: cover; }
.related-card-body { padding: 18px 20px; flex: 1; display: flex; flex-direction: column; gap: 8px; }
.related-card-cat { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--accent-fg); background: var(--accent); padding: 2px 8px; border-radius: 100px; width: fit-content; }
.related-card-title { font-size: 15px; font-weight: 700; letter-spacing: -0.015em; line-height: 1.35; color: var(--text); flex: 1; }
.related-card-meta { font-size: 12px; color: var(--dim); margin-top: 4px; }


/* ── FOOTER ──────────────────────────────────────────────── */
footer { background: var(--ink); border-top: 1px solid var(--ink-border); }
.footer-inner { max-width: var(--max-w); margin: 0 auto; padding: 32px var(--pad-x); display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px; }
.footer-logo { font-size: 14px; font-weight: 800; color: var(--ink-text); text-decoration: none; letter-spacing: -0.02em; }
.footer-logo .dot { color: var(--accent); }
.footer-right { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
.footer-links { display: flex; gap: 12px 20px; list-style: none; flex-wrap: wrap; }
.footer-links a { font-size: 13px; color: var(--ink-muted); text-decoration: none; transition: color 0.18s; }
.footer-links a:hover { color: var(--ink-text); }
.footer-copy { font-size: 12px; color: var(--ink-muted); }


/* ── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 960px) {
  .article-body-wrap { grid-template-columns: 1fr; }
  .article-sidebar { display: none; }
  .related-grid { grid-template-columns: 1fr 1fr; }
  .calc-wrap { grid-template-columns: 1fr; }
  .calc-results-sticky { position: static; }
  .calc-cta-inner { grid-template-columns: 1fr; }
  .calc-info-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
  .hero-inner { grid-template-columns: 1fr; }
  .compare-wrap { grid-template-columns: 1fr; }
  .compare-classique { border-right: none; border-bottom: 1px solid var(--border); }
  .offres-grid, .tracking-grid, .process-grid, .process-scenarios, .icp-item { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
  .calc-teaser { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr 1fr; }
  .footer-right { flex-direction: column; align-items: flex-start; gap: 12px; }
  .footer-links { gap: 8px 14px; }
}

@media (max-width: 720px) {
  .blog-grid, .related-grid, .calc-info-grid { grid-template-columns: 1fr; }
  .author-bio { flex-direction: column; gap: 14px; }
  .stat-highlight { flex-direction: column; align-items: flex-start; gap: 12px; }
  .stat-highlight-divider { width: 40px; height: 2px; }
}

@media (max-width: 560px) {
  .hero-headline { font-size: clamp(30px, 9.5vw, 48px); }
  .cta-headline  { font-size: clamp(28px, 9vw, 44px); }
  .section-title { font-size: clamp(24px, 7vw, 36px); }
  .section { padding-top: clamp(48px, 9vw, 80px); padding-bottom: clamp(48px, 9vw, 80px); }
  #cta-final .cta-inner { padding: clamp(36px, 8vw, 64px) clamp(20px, 5vw, 48px); }
  .compare-classique, .compare-mine { padding: 28px 22px; }
  .cta-btns { flex-direction: column; }
  .stat-band-inner { flex-direction: column; align-items: flex-start; gap: 16px; }
  .stat-band-divider { width: clamp(48px, 20vw, 80px); height: 2px; }
  .form-row-2 { grid-template-columns: 1fr; }
}
