/* ============================================================
   On S'en Occupe — landing MVP
   Palette (brief §3) : crème #FAF7F2 · encre #1A1A18 · terracotta #C4552D
   Typo : Fraunces (titres, nommée au brief) + Inter (corps)
   Mobile-first strict. Rayons : boutons pill / cartes 16px.
   ============================================================ */

@font-face {
  font-family: "Bricolage Grotesque";
  src: url("fonts/bricolage-latin-wght-normal.woff2") format("woff2-variations");
  font-weight: 200 800;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Figtree";
  src: url("fonts/figtree-latin-wght-normal.woff2") format("woff2-variations");
  font-weight: 300 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Caveat";
  src: url("fonts/caveat-latin-wght-normal.woff2") format("woff2-variations");
  font-weight: 400 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --bg: #FAF7F2;
  --bg-raised: #FFFDF9;
  --ink: #1A1A18;
  --ink-soft: #5C574E;
  --accent: #C4552D;
  --accent-deep: #A84523;
  --accent-tint: #F7E7DE;
  --line: #E8E1D5;
  --mark: #FFE58A;
  --r-card: 16px;
  --r-pill: 999px;
  --shadow-card: 0 2px 6px rgba(84, 62, 44, 0.06), 0 18px 44px -18px rgba(84, 62, 44, 0.18);
  /* --serif = police display (Bricolage Grotesque) — nom de variable conservé */
  --serif: "Bricolage Grotesque", "Avenir Next", -apple-system, sans-serif;
  --sans: "Figtree", -apple-system, system-ui, sans-serif;
  --wrap: 1120px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.65;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.wrap {
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: 20px;
}

/* Placeholders à remplacer (brief §8 : surbrillance jaune) */
mark {
  background: var(--mark);
  color: inherit;
  border-radius: 3px;
  padding: 0 3px;
}

h1, h2, h3 {
  font-family: var(--serif);
  font-weight: 640;
  letter-spacing: -0.022em;
  line-height: 1.1;
  text-wrap: balance;
}

h2 { font-size: clamp(28px, 5.4vw, 34px); }
h3 { font-size: clamp(19px, 3vw, 22px); }

p { text-wrap: pretty; }

a { color: inherit; }

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

section { padding-block: clamp(56px, 8vw, 88px); }

.section-intro {
  max-width: 640px;
  margin-bottom: clamp(28px, 5vw, 48px);
}
.section-intro p {
  margin-top: 14px;
  color: var(--ink-soft);
  font-size: 17px;
}

/* ---------- Boutons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.2;
  padding: 15px 28px;
  border-radius: var(--r-pill);
  border: none;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
  transition: transform 0.15s ease, background-color 0.2s ease, box-shadow 0.2s ease;
}
.btn:active { transform: scale(0.98); }
.btn-primary {
  background: var(--accent);
  color: #FFF8F3;
  box-shadow: 0 10px 24px -10px rgba(196, 85, 45, 0.55);
}
.btn-primary:hover { background: var(--accent-deep); transform: translateY(-1px); }
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--line);
  background: var(--bg-raised);
}
.btn-ghost:hover { border-color: var(--ink-soft); transform: translateY(-1px); }

/* ============================================================
   S1 — Header sticky discret
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 247, 242, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s ease;
}
.site-header.is-stuck { border-bottom-color: var(--line); }
.site-header .bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  height: 68px;
}
.brand {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex: none;
}
.brand img {
  height: 32px;
  width: auto;
}
@media (max-width: 480px) {
  .brand img { height: 26px; }
}
.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 3vw, 28px);
}
.site-nav .nav-link {
  display: none;
  font-size: 15px;
  color: var(--ink-soft);
  text-decoration: none;
  transition: color 0.2s ease;
}
.site-nav .nav-link:hover { color: var(--ink); }
.site-nav .btn { padding: 11px 20px; font-size: 15px; }
@media (min-width: 768px) {
  .site-nav .nav-link { display: inline; }
}

/* ============================================================
   S2 — Hero : split copy / scène de 22 h 47
   ============================================================ */
.hero { padding-block: clamp(36px, 5vw, 72px); overflow: clip; }
.hero .wrap {
  display: grid;
  gap: 40px;
  align-items: center;
}
@media (min-width: 980px) {
  .hero .wrap { grid-template-columns: 0.95fr 1.05fr; gap: 56px; }
}

.eyebrow {
  display: inline-block;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 18px;
}
.hero h1 {
  font-size: clamp(33px, 5vw, 44px);
  font-weight: 700;
  letter-spacing: -0.028em;
  line-height: 1.08;
}
/* Surligneur terracotta qui se dessine au chargement */
.hero h1 .accent {
  color: var(--ink);
  background-image: linear-gradient(rgba(196, 85, 45, 0.32), rgba(196, 85, 45, 0.32));
  background-repeat: no-repeat;
  background-size: 100% 36%;
  background-position: 0 74%;
  padding-inline: 2px;
}
.hero .lede {
  margin-top: 20px;
  font-size: clamp(16.5px, 2.2vw, 17.5px);
  color: var(--ink-soft);
  max-width: 54ch;
}
.hero .cta-row {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}
.hero .micro {
  font-size: 13.5px;
  color: var(--ink-soft);
}

/* ---- Scène flottante : la conversation de 22 h 47, posée sur la page ---- */
.scene-stack {
  position: relative;
  display: grid;
  gap: 20px;
  padding-block: 14px;
  justify-items: start;
}
/* Halo chaud qui ancre les cartes sans conteneur */
.scene-stack::before {
  content: "";
  position: absolute;
  inset: -18% -14%;
  background:
    radial-gradient(closest-side at 58% 38%, rgba(196, 85, 45, 0.16), transparent 68%),
    radial-gradient(closest-side at 30% 75%, rgba(196, 85, 45, 0.07), transparent 60%);
  pointer-events: none;
}
.scene-stack > * { position: relative; }
.scene-title {
  font-family: var(--serif);
  font-size: clamp(21px, 3vw, 28px);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 2px;
}
.scene-title .pasvous { color: var(--accent-deep); }
.mail-card {
  background: var(--bg-raised);
  border: 1px solid var(--line);
  border-radius: var(--r-card);
  padding: 20px 22px;
  box-shadow:
    0 1px 2px rgba(84, 62, 44, 0.08),
    0 14px 34px -12px rgba(84, 62, 44, 0.28),
    0 32px 64px -28px rgba(84, 62, 44, 0.22);
  max-width: 500px;
}
.tilt-l { transform: rotate(-2deg); }
.tilt-r { transform: rotate(1.4deg); }
.mail-card.reply {
  margin-left: clamp(22px, 7%, 64px);
  margin-top: -14px;
  border-left: 3px solid var(--accent);
}
.mail-meta {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 7px;
}
.mail-from { font-size: 13.5px; font-weight: 700; }
.mail-time {
  font-size: 13px;
  color: var(--ink-soft);
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}
.mail-time.late { color: var(--accent-deep); font-weight: 700; }
.mail-subject {
  font-size: 12.5px;
  font-weight: 650;
  color: var(--ink-soft);
  padding-bottom: 8px;
  margin-bottom: 9px;
  border-bottom: 1px solid var(--line);
}
.mail-body { font-size: 14.5px; color: var(--ink-soft); line-height: 1.55; }
.mail-body strong { color: var(--ink); font-weight: 650; }
.badge-check {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 12px;
  font-size: 12.5px;
  font-weight: 700;
  color: #1E5038;
  background: #DDEEDD;
  border-radius: var(--r-pill);
  padding: 5px 13px;
}
.scene-benefit {
  font-size: 14.5px;
  color: var(--ink-soft);
  padding-inline: 4px;
}
.scene-benefit strong { color: var(--ink); font-weight: 700; }


/* ============================================================
   S3 — Barre de preuve
   ============================================================ */
.proof { padding-block: 0; }
.proof .proof-grid {
  border-block: 1px solid var(--line);
  padding-block: clamp(30px, 4.5vw, 48px);
  display: grid;
  gap: 26px 20px;
  grid-template-columns: 1fr 1fr;
}
/* Version courte du texte garde-fou (mobile uniquement) */
.proof .guard .txt-short { display: none; }

/* Mobile : grille 2×2 symétrique — 4 cellules-cartes égales */
@media (max-width: 899px) {
  .proof .proof-grid { gap: 14px; padding-block: 28px; }
  .proof .stat {
    background: var(--bg-raised);
    border: 1px solid var(--line);
    border-radius: var(--r-card);
    padding: 16px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .proof .stat .num { font-size: 30px; }
  .proof .stat.guard { padding: 16px; }
  .proof .stat.guard .num { font-size: 26px; gap: 9px; }
  .proof .stat.guard .lock { width: 20px; height: 20px; }
  .proof .stat p { font-size: 13px; margin-top: 5px; max-width: none; }
  .proof .guard .txt-full { display: none; }
  .proof .guard .txt-short { display: inline; }
}
.proof .stat .num {
  font-family: var(--serif);
  font-size: clamp(34px, 4.6vw, 42px);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.1;
  color: var(--ink);
  font-variant-numeric: tabular-nums;
}
.proof .stat .num mark { font-family: inherit; }
.proof .stat p {
  font-size: 14.5px;
  color: var(--ink-soft);
  margin-top: 7px;
  max-width: 24ch;
  line-height: 1.45;
}
/* Carte garde-fou : le différenciateur, mis en scène */
.proof .stat.guard {
  background: var(--accent-tint);
  border: 1px solid #EBD2C3;
  border-radius: var(--r-card);
  padding: 22px 24px;
}
.proof .stat.guard .num {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: clamp(28px, 3.4vw, 36px);
  color: var(--accent-deep);
}
.proof .stat.guard .lock { width: 25px; height: 25px; flex: none; }
.proof .stat.guard p { max-width: none; }
@media (min-width: 900px) {
  .proof .proof-grid {
    grid-template-columns: 1fr 1fr 1.05fr 1.5fr;
    gap: 0 36px;
    align-items: center;
  }
  .proof .stat:not(.guard) {
    border-right: 1px solid var(--line);
    padding-right: 34px;
  }
  .proof .stat:nth-child(3) { border-right: none; }
}
.proof .src {
  margin-top: 20px;
  font-size: 13.5px;
  color: var(--ink-soft);
}
.proof .src a { color: var(--accent-deep); font-weight: 600; }

/* ============================================================
   S4 — Le problème (3 cartes)
   ============================================================ */
/* Titre S4 en pleine largeur */
.problem .section-intro { max-width: none; }

.problem-grid {
  display: grid;
  gap: 16px;
}
@media (min-width: 820px) {
  .problem .problem-card.big { flex-direction: row; align-items: center; gap: clamp(28px, 5vw, 56px); }
  .problem .problem-card.big .echo-wrap { flex: 1.1; margin-top: 40px; }
  .problem .problem-card.big .big-text { flex: 0.9; }
}
.problem-card {
  background: var(--bg-raised);
  border: 1px solid var(--line);
  border-radius: var(--r-card);
  padding: 26px 24px;
}
.problem-card h3 { margin-bottom: 8px; }
.problem-card p { font-size: 15px; color: var(--ink-soft); }
.problem-card.big { padding: 28px 26px; display: flex; flex-direction: column; }
.problem-card.big .big-text h3 { margin-bottom: 10px; }

/* L'écho : la même question qui revient toute la journée */
.echo-wrap { position: relative; margin: 50px 6px 34px 0; }
.echo-stack { display: grid; }
.echo {
  grid-area: 1 / 1;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 13px 16px;
  font-size: 14px;
  color: var(--ink-soft);
  box-shadow: 0 10px 24px -14px rgba(84, 62, 44, 0.3);
  max-width: 330px;
}
.echo .from {
  display: block;
  font-size: 12px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 3px;
}
.echo.e1 { position: relative; z-index: 3; }
.echo.e2 { transform: translate(18px, -26px) rotate(0.8deg); opacity: 0.6; z-index: 2; }
.echo.e3 { transform: translate(36px, -52px) rotate(1.6deg); opacity: 0.32; z-index: 1; }
.times {
  position: absolute;
  right: 0;
  bottom: -16px;
  z-index: 4;
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(30px, 3.6vw, 42px);
  letter-spacing: -0.02em;
  color: var(--accent);
  line-height: 1;
  text-shadow: 0 2px 12px rgba(250, 247, 242, 0.9);
}
.transition-line {
  margin-top: 34px;
  font-family: var(--serif);
  font-size: clamp(18px, 2.6vw, 19px);
  font-weight: 600;
  color: var(--ink);
  max-width: 56ch;
}
.transition-line .brandword { color: var(--accent-deep); }
.transition-line a { color: var(--accent-deep); }

/* ============================================================
   S5 — Comment ça marche (étapes numérotées)
   ============================================================ */
.how { background: linear-gradient(180deg, rgba(196,85,45,0.045), rgba(196,85,45,0)) ; }
/* Desktop : section centrée dans la page */
@media (min-width: 820px) {
  .how .section-intro {
    margin-inline: auto;
    text-align: center;
    max-width: 720px;
  }
  .how .steps,
  .how .guardrail { margin-inline: auto; }
}
.steps {
  display: grid;
  gap: 0;
  max-width: 760px;
}
.step {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 18px;
  padding-block: 26px;
}
.step + .step { border-top: 1px solid var(--line); }
.step .n {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 600;
  color: var(--accent);
  line-height: 1.3;
}
.step h3 { margin-bottom: 6px; }
.step p { font-size: 15.5px; color: var(--ink-soft); }

/* Artefacts tangibles par étape (langage visuel des cartes email) */
.step .artifact { margin-top: 14px; }
.chips-row { display: flex; flex-wrap: wrap; gap: 8px; }
.a-chip {
  font-size: 13px;
  font-weight: 600;
  padding: 7px 14px;
  border-radius: var(--r-pill);
  background: var(--bg-raised);
  border: 1px solid var(--line);
  color: var(--ink-soft);
}
.a-chip.ok { color: #1E5038; background: #DDEEDD; border-color: #C9E2C9; }
.artifact.mini-exchange {
  display: grid;
  gap: 8px;
  max-width: 560px;
}
.me-line {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 11px 14px;
  font-size: 13.5px;
  color: var(--ink-soft);
}
.me-line.reply {
  background: var(--bg-raised);
  border-left: 3px solid var(--accent);
  margin-left: clamp(12px, 4%, 30px);
}
.me-who {
  display: block;
  font-size: 11.5px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 3px;
}
.me-subject {
  font-size: 12px;
  font-weight: 650;
  color: var(--ink);
  padding-bottom: 7px;
  margin-bottom: 8px;
  border-bottom: 1px solid var(--line);
}
.me-line .badge-check { margin-top: 9px; }
.artifact.report {
  background: var(--bg-raised);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 13px 16px;
  font-size: 13.5px;
  max-width: 560px;
}
.artifact.report .r-head {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 4px 14px;
}
.artifact.report .r-label { font-weight: 700; color: var(--ink); }
.artifact.report .r-stats { color: var(--ink-soft); font-variant-numeric: tabular-nums; }
/* Signal : le motif anormal détecté dans le mois */
.artifact.report .r-signal {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  margin-top: 11px;
  padding-top: 11px;
  border-top: 1px solid var(--line);
  color: var(--ink-soft);
  line-height: 1.5;
}
.artifact.report .r-signal svg {
  width: 16px;
  height: 16px;
  flex: none;
  margin-top: 2px;
  color: var(--accent);
}
.artifact.report .r-signal strong { color: var(--accent-deep); font-weight: 700; }

.guardrail {
  margin-top: 38px;
  max-width: 760px;
  background: var(--accent-tint);
  border: 1px solid #EBD2C3;
  border-radius: var(--r-card);
  padding: 24px 26px;
  display: grid;
  grid-template-columns: 30px 1fr;
  gap: 14px;
  align-items: start;
}
.guardrail .lock { width: 22px; height: 22px; color: var(--accent-deep); margin-top: 2px; }
.guardrail p { font-size: 15.5px; }
.guardrail strong { font-weight: 700; }

/* ============================================================
   S6 — Cas client : trio de cartes en éventail
   ============================================================ */
.case-intro {
  max-width: 760px;
  margin-bottom: clamp(30px, 5vw, 52px);
}
@media (min-width: 900px) {
  .case-intro { margin-inline: auto; text-align: center; }
}
.case-label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}

/* --- L'éventail --- */
.case-fan {
  position: relative;
  display: grid;
  gap: 16px;
}
.case-fan::before {
  content: "";
  position: absolute;
  inset: -14% -8%;
  background: radial-gradient(closest-side at 50% 45%, rgba(196, 85, 45, 0.13), transparent 70%);
  pointer-events: none;
}
/* Le halo dépasse volontairement du fan — on le clippe à la section pour
   qu'il ne crée pas de défilement horizontal de la page (7px sur mobile) */
.case { overflow-x: clip; }
.fan-card {
  position: relative;
  background: var(--bg-raised);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 26px 24px;
  box-shadow:
    0 1px 2px rgba(84, 62, 44, 0.07),
    0 14px 32px -14px rgba(84, 62, 44, 0.24);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease;
}
.fc-title {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.005em;
  color: var(--ink-soft);
  margin-bottom: 18px;
}

@media (min-width: 900px) {
  .case-fan {
    grid-template-columns: 1fr 1.22fr 1fr;
    align-items: center;
    gap: 0;
  }
  .fc-metrics {
    transform: rotate(-2.4deg) translateY(16px);
    margin-right: -22px;
    padding-right: 46px;
    z-index: 1;
  }
  .fc-chart {
    z-index: 3;
    padding: 30px 28px;
    box-shadow:
      0 2px 4px rgba(84, 62, 44, 0.08),
      0 22px 48px -18px rgba(84, 62, 44, 0.3),
      0 44px 80px -40px rgba(84, 62, 44, 0.24);
  }
  .fc-quote {
    transform: rotate(2.2deg) translateY(16px);
    margin-left: -22px;
    padding-left: 48px;
    z-index: 2;
  }
  /* Au survol, la carte se redresse et passe devant */
  .fan-card:hover { z-index: 4; }
  .fc-metrics:hover { transform: rotate(0deg) translateY(8px); }
  .fc-quote:hover { transform: rotate(0deg) translateY(8px); }
  .fc-chart:hover { transform: translateY(-6px); }
}
@media (prefers-reduced-motion: reduce) {
  .fan-card { transition: none; }
}

/* --- Carte gauche : les métriques --- */
.metric-list { list-style: none; display: grid; gap: 20px; }
.metric-list li + li { border-top: 1px solid var(--line); padding-top: 20px; }
.metric-list .v {
  display: block;
  font-family: var(--serif);
  font-size: clamp(30px, 3.4vw, 38px);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.05;
  color: var(--ink);
  font-variant-numeric: tabular-nums;
}
.metric-list .v i { font-style: normal; color: var(--accent); }
.metric-list .k {
  display: block;
  margin-top: 6px;
  font-size: 14px;
  color: var(--ink-soft);
}

/* --- Carte centrale : le graphique --- */
.chart-wrap { position: relative; }
.fc-chart svg {
  display: block;
  width: 100%;
  height: clamp(170px, 20vw, 210px);
  overflow: visible;
}
.fc-chart .chart-wrap { margin-top: 54px; }
.fc-chart .grid { stroke: var(--line); stroke-width: 1; }
.fc-chart .axis { stroke: #D8CFC0; stroke-width: 1; }
.fc-chart .marker { stroke: #CFC4B2; stroke-width: 1.5; stroke-dasharray: 4 5; }
.fc-chart .curve {
  fill: none;
  stroke: var(--accent);
  stroke-width: 3;
  stroke-linejoin: round;
  stroke-linecap: round;
  vector-effect: non-scaling-stroke;
}
.fc-chart .pt { fill: var(--accent); stroke: var(--bg-raised); stroke-width: 3; }
.fc-chart .pt.end { fill: var(--accent-deep); }
.fc-chart .ann {
  position: absolute;
  font-size: 12.5px;
  line-height: 1.35;
  color: var(--ink-soft);
  white-space: nowrap;
}
.fc-chart .ann strong { display: block; color: var(--ink); font-weight: 700; font-size: 13.5px; }
.fc-chart .ann.start strong { display: inline; }
.fc-chart .ann.start { left: 3%; top: -16%; }
.fc-chart .ann.finish { right: 1%; top: 44%; text-align: right; }
/* Dates : collées sous l'axe des abscisses */
.fc-chart .ann.x-start,
.fc-chart .ann.x-end {
  bottom: 9%;
  font-size: 11.5px;
  color: #6F6A5E;
}
.fc-chart .ann.x-start { left: 2%; }
.fc-chart .ann.x-end { right: 0; }
/* Repère « Branchement » : juste au-dessus du trait vertical */
.fc-chart .ann.branch {
  left: 37.5%;
  top: -3%;
  transform: translateX(-50%);
  font-size: 11.5px;
  color: #6F6A5E;
}
@media (max-width: 420px) {
  .fc-chart .ann.branch { display: none; }
}

/* --- Carte droite : la citation --- */
.fc-quote { display: flex; flex-direction: column; justify-content: center; }
.fc-quote blockquote {
  font-family: var(--serif);
  font-size: clamp(17px, 2vw, 20px);
  font-weight: 600;
  line-height: 1.4;
  color: var(--ink);
}
.fc-quote blockquote mark { font-family: var(--sans); font-size: 0.78em; font-weight: 500; }
.fc-quote figcaption {
  margin-top: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.35;
}
.fc-quote figcaption strong { color: var(--ink); font-weight: 700; }
.fc-quote .pic {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--accent-tint);
  border: 1px solid #EBD2C3;
  display: grid;
  place-items: center;
  font-family: var(--serif);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--accent-deep);
  flex: none;
}

/* --- CTA sous l'éventail --- */
.case-cta {
  margin-top: clamp(34px, 5vw, 54px);
  font-size: 16px;
  color: var(--ink-soft);
}
.case-cta a { color: var(--accent-deep); font-weight: 700; white-space: nowrap; }
@media (min-width: 900px) {
  .case-cta { text-align: center; margin-top: 60px; }
}

/* Mobile : pile verticale, le graphique en premier */
@media (max-width: 899px) {
  .fc-chart { order: -1; }
}

/* ============================================================
   S7 — Preuve : échanges réels + témoignages
   ============================================================ */
.proofs-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: clamp(26px, 4vw, 40px);
}
.proofs-head h2 { max-width: none; }
.proofs-head p {
  margin-top: 12px;
  font-size: 17px;
  color: var(--ink-soft);
}
.rail-nav { display: none; gap: 10px; flex: none; padding-bottom: 4px; }
@media (min-width: 900px) { .rail-nav { display: flex; } }
.rail-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1.5px solid var(--line);
  background: var(--bg-raised);
  color: var(--ink);
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  transition: border-color 0.2s ease, transform 0.15s ease, opacity 0.2s ease;
}
.rail-btn:hover { border-color: var(--accent); transform: translateY(-1px); }
.rail-btn:disabled { opacity: 0.35; cursor: default; transform: none; border-color: var(--line); }

/* --- Le rail d'échanges --- */
.exchange-rail {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc(100vw - 88px);
  gap: 16px;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scroll-snap-type: x proximity;
  scroll-behavior: smooth;
  margin-inline: -20px;
  padding: 4px 20px 18px;
  scrollbar-width: thin;
  scrollbar-color: var(--line) transparent;
}
@media (prefers-reduced-motion: reduce) { .exchange-rail { scroll-behavior: auto; } }
@media (min-width: 760px) {
  .exchange-rail { grid-auto-columns: 340px; }
}
.exchange-rail::-webkit-scrollbar { height: 6px; }
.exchange-rail::-webkit-scrollbar-thumb { background: var(--line); border-radius: 999px; }
.exchange-rail::-webkit-scrollbar-track { background: transparent; }
.exchange-rail:focus-visible { outline: 2px solid var(--accent); outline-offset: 4px; border-radius: 8px; }

.exchange-card {
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: var(--bg-raised);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 20px;
  box-shadow: 0 1px 2px rgba(84, 62, 44, 0.06), 0 12px 28px -14px rgba(84, 62, 44, 0.22);
}
.ex-head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 2px;
}
.ex-shop { font-size: 14px; font-weight: 700; color: var(--ink); }
.ex-tag {
  font-size: 11.5px;
  font-weight: 650;
  color: var(--accent-deep);
  background: var(--accent-tint);
  border-radius: var(--r-pill);
  padding: 3px 10px;
}
.ex-meta { flex-basis: 100%; font-size: 12px; color: var(--ink-soft); }
.ex-mail { font-size: 13px; line-height: 1.5; color: var(--ink-soft); }
.ex-mail.client {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 12px 14px;
}
.ex-mail.reply {
  background: #FDF6F1;
  border: 1px solid #F1E3D7;
  border-left: 3px solid var(--accent);
  border-radius: 12px;
  padding: 12px 14px;
  flex: 1;
}
.ex-mail .m-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
}
.ex-mail .m-from { font-size: 12.5px; font-weight: 700; color: var(--ink); }
.ex-mail .m-time {
  font-size: 11.5px;
  color: var(--ink-soft);
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}
.ex-mail .m-subject {
  font-size: 12px;
  font-weight: 650;
  color: var(--ink);
  margin-top: 3px;
  padding-bottom: 8px;
  margin-bottom: 9px;
  border-bottom: 1px solid var(--line);
}
.ex-mail.reply .m-subject { border-bottom-color: #EBDACB; }
.ex-mail .m-body { font-size: 13px; }
.ex-mail .badge-check { margin-top: 11px; }

/* Cas sensible : alerte interne au gérant, aucune réponse envoyée au client */
.ex-mail.internal {
  background: var(--accent-tint);
  border: 1px solid #EBD2C3;
  border-radius: 12px;
  padding: 12px 14px;
  flex: 1;
}
.ex-mail.internal .m-from { color: var(--accent-deep); }
.ex-mail.internal .m-subject { border-bottom-color: #E3CBBA; }
.ex-mail.internal .m-body strong { color: var(--accent-deep); font-weight: 700; }
.m-suggestion {
  margin-top: 11px;
  background: var(--bg-raised);
  border: 1px dashed #DDC5B4;
  border-radius: 10px;
  padding: 10px 12px;
}
.sug-label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-deep);
  margin-bottom: 5px;
}
.m-suggestion p { font-size: 12.5px; line-height: 1.5; color: var(--ink-soft); }
.badge-check.badge-esc { background: var(--accent-tint); color: var(--accent-deep); }

.rail-note {
  margin-top: 4px;
  font-size: 13px;
  color: var(--ink-soft);
}

/* ============================================================
   S8 — Tarif
   ============================================================ */
.pricing .card {
  max-width: 620px;
  margin-inline: auto;
  background: var(--bg-raised);
  border: 1.5px solid var(--ink);
  border-radius: 24px;
  padding: clamp(28px, 5vw, 44px);
  box-shadow: var(--shadow-card);
}
.pricing h2 { text-align: center; }
.pricing-sub {
  text-align: center;
  margin: 12px auto 0;
  max-width: 46ch;
  font-size: 16px;
  color: var(--ink-soft);
}
.scarcity {
  text-align: center;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--accent-deep);
  background: var(--accent-tint);
  border: 1px solid #EBD2C3;
  border-radius: var(--r-pill);
  padding: 8px 16px;
  width: fit-content;
  margin: 0 auto 20px;
}
.scarcity strong { font-weight: 700; }
.price-row .amount-link {
  color: var(--accent-deep);
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  border-bottom: 1.5px solid currentColor;
  padding-bottom: 1px;
}
.price-row .amount-link:hover { color: var(--accent); }
.setup-block {
  margin-top: 26px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--r-card);
  padding: 20px 22px;
}
.setup-line { display: flex; align-items: center; justify-content: space-between; gap: 14px; }
.setup-line .what { display: flex; flex-direction: column; gap: 2px; }
.setup-line .what strong { font-size: 17px; font-weight: 700; color: var(--ink); }
.setup-line .what small { font-size: 13.5px; color: var(--ink-soft); }
.setup-line .amount {
  font-family: var(--serif);
  font-size: clamp(24px, 3.6vw, 26px);
  font-weight: 620;
  white-space: nowrap;
}
.monthly-label {
  margin: 24px 0 12px;
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
}
.price-rows { display: grid; gap: 0; }
.price-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 14px;
  padding-block: 14px;
}
.price-row + .price-row { border-top: 1px solid var(--line); }
.price-row .what { font-size: 15.5px; color: var(--ink-soft); }
.price-row .amount {
  font-family: var(--serif);
  font-size: clamp(22px, 3.4vw, 24px);
  font-weight: 620;
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
}
.price-row .amount small { font-size: 0.55em; font-family: var(--sans); font-weight: 600; color: var(--ink-soft); }
.included { margin-top: 18px; display: flex; flex-wrap: wrap; gap: 8px; }
.included .row-break { display: none; }
@media (max-width: 600px) {
  .pricing .card { padding-inline: 14px; }
  .pricing .included { justify-content: center; gap: 6px; }
  .pricing .included li,
  .pricing .included [role="listitem"] { font-size: 10.5px; padding: 5px 9px; }
  .pricing .included .row-break {
    display: block;
    flex-basis: 100%;
    width: 100%;
    height: 0;
    margin: 0;
    padding: 0;
    border: 0;
    background: none;
  }
}
.included li,
.included [role="listitem"] {
  list-style: none;
  font-size: 13.5px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--r-pill);
  padding: 6px 13px;
  color: var(--ink-soft);
}
.pricing .context {
  margin-top: 20px;
  font-size: 13px;
  color: var(--ink-soft);
  line-height: 1.55;
}
.pricing .cta-center { margin-top: 26px; text-align: center; }

/* ============================================================
   S9 — La lettre du fondateur
   ============================================================ */
.founder .letter {
  max-width: 900px;
  margin-inline: auto;
  background: var(--bg-raised);
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: 0 2px 6px rgba(84, 62, 44, 0.06), 0 26px 60px -30px rgba(84, 62, 44, 0.3);
  padding: clamp(26px, 4.5vw, 48px);
  display: grid;
  gap: clamp(24px, 4vw, 44px);
}
@media (min-width: 860px) {
  .founder .letter:has(.letter-photo) { grid-template-columns: 260px 1fr; align-items: start; }
}

/* Sans photo : carte resserrée, plus de vide à droite */
.founder .letter:not(:has(.letter-photo)) { max-width: 760px; }

/* Photo candid */
.letter-photo { position: relative; }
@media (min-width: 860px) { .letter-photo { position: sticky; top: 90px; } }
.photo-ph {
  aspect-ratio: 4 / 5;
  border-radius: 16px;
  background:
    radial-gradient(120% 80% at 30% 20%, rgba(196, 85, 45, 0.1), transparent 60%),
    var(--accent-tint);
  border: 1px solid #EBD2C3;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 20px;
  font-size: 13px;
  color: var(--accent-deep);
}
.photo-ph mark { background: var(--mark); }

/* Corps de lettre : colonne de lecture étroite, aérée */
.letter-body { max-width: 60ch; }
.letter-eyebrow {
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}
.letter-title {
  font-size: clamp(28px, 4.4vw, 33px);
  margin-bottom: 22px;
}
.letter-body p {
  font-size: clamp(16px, 1.9vw, 17px);
  line-height: 1.72;
  color: var(--ink-soft);
}
.letter-body p + p { margin-top: 18px; }
.letter-body p strong { color: var(--ink); font-weight: 650; }

/* Signature manuscrite */
.letter-sign {
  margin-top: 30px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.sign-name {
  font-family: "Caveat", cursive;
  font-size: 46px;
  font-weight: 600;
  line-height: 0.9;
  color: var(--accent);
}
.sign-role { font-size: 14px; color: var(--ink-soft); margin-top: 6px; }
.sign-mail { font-size: 14.5px; font-weight: 600; color: var(--accent-deep); text-decoration: none; }
.sign-mail:hover { text-decoration: underline; }

/* ============================================================
   S10 — FAQ
   ============================================================ */
.faq .list { max-width: 760px; }
.faq details {
  border-top: 1px solid var(--line);
}
.faq details:last-child { border-bottom: 1px solid var(--line); }
.faq summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-block: 20px;
  font-weight: 600;
  font-size: 16.5px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary .plus {
  flex: none;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 1.5px solid var(--line);
  display: grid;
  place-items: center;
  color: var(--accent);
  font-size: 16px;
  line-height: 1;
  transition: transform 0.25s ease, background-color 0.2s ease;
}
.faq details[open] summary .plus { transform: rotate(45deg); background: var(--accent-tint); }
.faq .answer {
  padding-bottom: 22px;
  font-size: 15.5px;
  color: var(--ink-soft);
  max-width: 62ch;
}

/* ============================================================
   S11 — CTA final + formulaire
   ============================================================ */
.final { background: linear-gradient(180deg, rgba(196,85,45,0), rgba(196,85,45,0.05)); }
.final .inner { max-width: 660px; margin-inline: auto; }
.final h2 { text-align: center; }
.final .pitch {
  margin-top: 16px;
  text-align: center;
  color: var(--ink-soft);
  font-size: 16px;
}
.essai-form {
  margin-top: 34px;
  background: var(--bg-raised);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: clamp(24px, 4.5vw, 38px);
  box-shadow: var(--shadow-card);
  display: grid;
  gap: 18px;
}
@media (min-width: 640px) {
  .essai-form { grid-template-columns: 1fr 1fr; }
  .essai-form .span-2 { grid-column: span 2; }
}
.field { display: grid; gap: 7px; }
.field label { font-size: 14px; font-weight: 600; }
.field input,
.field select,
.field textarea {
  font-family: var(--sans);
  font-size: 16px;
  color: var(--ink);
  background: var(--bg);
  border: 1.5px solid var(--line);
  border-radius: 10px;
  padding: 12px 14px;
  width: 100%;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.field input::placeholder,
.field textarea::placeholder { color: #7A7468; }
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(196, 85, 45, 0.18);
}
.field .error {
  display: none;
  font-size: 13px;
  color: #A8321E;
}
.field.invalid input, .field.invalid select { border-color: #A8321E; }
.field.invalid .error { display: block; }
.hp { position: absolute; left: -9999px; opacity: 0; pointer-events: none; }
.essai-form .actions { display: grid; gap: 12px; justify-items: center; }
.essai-form .btn { width: 100%; max-width: 380px; }
.form-note { font-size: 13px; color: var(--ink-soft); text-align: center; }
.form-note a { color: var(--accent-deep); font-weight: 600; }
.rgpd { font-size: 12.5px; color: var(--ink-soft); text-align: center; }
.form-status {
  display: none;
  text-align: center;
  font-size: 15px;
  font-weight: 600;
  padding: 12px;
  border-radius: 10px;
}
.form-status.ok { display: block; background: #E4EFE5; color: #22563E; }
.form-status.err { display: block; background: #F9E3DE; color: #A8321E; }

/* ============================================================
   S12 — Footer
   ============================================================ */
.site-footer {
  border-top: 1px solid var(--line);
  padding-block: 40px 56px;
  font-size: 13.5px;
  color: var(--ink-soft);
}
.site-footer .cols {
  display: grid;
  gap: 22px;
}
@media (min-width: 820px) {
  .site-footer .cols { grid-template-columns: 1.2fr 0.8fr; align-items: start; }
}
.site-footer .footer-logo { height: 28px; width: auto; margin-bottom: 12px; }
.site-footer .tagline { font-size: 14.5px; color: var(--ink); font-weight: 550; }
.site-footer .legal-links { display: flex; flex-wrap: wrap; gap: 14px; }
.site-footer a { color: var(--ink-soft); }
.site-footer a:hover { color: var(--ink); }
.site-footer .transparency {
  margin-top: 18px;
  font-size: 12.5px;
  line-height: 1.6;
  max-width: 62ch;
}

/* ============================================================
   Animations — entrée du hero (chorégraphie produit), parallaxe,
   reveals au scroll. Tout est désactivé sous prefers-reduced-motion.
   Uniquement transform/opacity (accéléré GPU).
   ============================================================ */
@media (prefers-reduced-motion: no-preference) {

  /* -- Effet scroll : les cartes dérivent à des vitesses différentes
        quand le hero quitte l'écran (profondeur). CSS scroll-driven natif,
        zéro JS — les navigateurs sans support restent simplement statiques. -- */
  /* -- Effet scroll (JS, script.js) : « la réponse prend le dessus ».
        Seuls le titre de scène et les 2 cartes bougent — la ligne bénéfice
        et les pills restent fixes. -- */
  .tilt-l, .tilt-r, .scene-title { will-change: transform, opacity; }
  .mail-card.reply { z-index: 2; }

  /* -- Reveals au scroll (sections) -- */
  html.js .reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  }
  html.js .reveal.in { opacity: 1; transform: none; }
}


/* ============================================================
   Audit concurrentiel — nouveaux éléments (v63)
   ============================================================ */

/* Hero : ligne de réassurance 🇫🇷 / UE / +30 boutiques */
.hero .badges {
  margin-top: 10px;
  font-size: 13px;
  color: var(--ink-soft);
  letter-spacing: 0.01em;
}

/* S3 : note sous le 89 % */
.stat-note {
  display: block;
  margin-top: 4px;
  font-size: 11.5px;
  line-height: 1.4;
  color: #6F6A5E;
}

/* S4 : légende sous le ×80 % */
.times-cap {
  position: absolute;
  right: 0;
  bottom: -34px;
  z-index: 4;
  font-size: 12px;
  font-weight: 600;
  color: var(--ink-soft);
  text-shadow: 0 2px 12px rgba(250, 247, 242, 0.9);
}
@media (max-width: 819px) {
  .problem-card.big .echo-wrap { margin-bottom: 52px; }
}

/* S5 : frise Jour 1 → Jour 5 */
.frise {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 12px 14px;
  font-size: 14px;
  line-height: 1.6;
  color: var(--ink-soft);
  margin-bottom: 10px;
}
.frise strong { color: var(--ink); }

/* S6 : méthodologie des chiffres */
.proofs .methode {
  max-width: 68ch;
  margin: 26px auto 0;
  font-size: 13px;
  line-height: 1.55;
  color: var(--ink-soft);
  text-align: center;
  background: var(--bg-raised);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 10px 16px;
}
.chart-concrete {
  margin-top: 10px;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  text-align: center;
}

/* Rail : points de position (mobile surtout) */
.rail-dots {
  display: flex;
  justify-content: center;
  gap: 7px;
  margin-top: 14px;
}
.rail-dots .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--line);
  transition: background 0.25s ease, transform 0.25s ease;
}
.rail-dots .dot.on { background: var(--accent); transform: scale(1.25); }
@media (min-width: 900px) { .rail-dots { display: none; } }

/* Tarif : badge 1er mois offert */
.offer-badge {
  width: fit-content;
  max-width: 100%;
  margin: 12px auto 0;
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
  color: #22563E;
  background: #E4EFE5;
  border: 1px solid #C9DFCB;
  border-radius: var(--r-pill);
  padding: 7px 15px;
}
@media (max-width: 420px) {
  .offer-badge { font-size: 12px; padding: 6px 12px; letter-spacing: -0.01em; }
}

/* Tarif : renversement de risque sous le CTA */
.cta-risk {
  margin-top: 10px;
  font-size: 13px;
  color: var(--ink-soft);
  text-align: center;
}

/* Formulaire : label facultatif + textarea */
.field label small { font-weight: 500; color: var(--ink-soft); }
.field textarea { resize: vertical; min-height: 92px; font-family: var(--sans); }

/* Confirmation riche après envoi */
.form-status.ok { text-align: center; }
.confirm-title {
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 700;
  margin-bottom: 6px;
}
.confirm-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 14px;
}
.form-status.ok .btn { font-size: 14px; padding: 10px 18px; }
.form-status.ok .btn-ghost { background: transparent; }

/* CTA collant mobile */
.sticky-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 60;
  padding: 10px 16px calc(10px + env(safe-area-inset-bottom, 0px));
  background: rgba(250, 247, 242, 0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-top: 1px solid var(--line);
}
.sticky-cta .btn { display: block; width: 100%; text-align: center; }
.sticky-cta[hidden] { display: none; }
@media (min-width: 900px) { .sticky-cta { display: none; } }


/* ============================================================
   Essai gratuit — chargement + résultats sur la page (v68)
   ============================================================ */
.essai-form[hidden] { display: none !important; }

.essai-loading {
  text-align: center;
  padding: 34px 10px 26px;
}
.load-spin {
  width: 34px;
  height: 34px;
  margin: 0 auto 20px;
  border-radius: 50%;
  border: 3px solid var(--accent-tint);
  border-top-color: var(--accent);
  animation: essai-spin 0.9s linear infinite;
}
@keyframes essai-spin { to { transform: rotate(360deg); } }
.load-step {
  font-size: 14.5px;
  color: var(--ink-soft);
  opacity: 0.35;
  transition: opacity 0.4s ease;
  margin-top: 7px;
}
.load-step.on { opacity: 1; font-weight: 600; color: var(--ink); }
@media (prefers-reduced-motion: reduce) {
  .load-spin { animation: none; border-top-color: var(--accent-tint); }
}

.essai-results { text-align: left; }
.results-title {
  font-family: var(--serif);
  font-size: clamp(21px, 2.8vw, 26px);
  font-weight: 700;
  letter-spacing: -0.015em;
  margin-bottom: 8px;
}
.results-sub {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--ink-soft);
  max-width: 62ch;
  margin-bottom: 22px;
}
.result-exchange {
  display: grid;
  gap: 10px;
  margin-bottom: 18px;
}
.result-exchange .r-mail,
.result-exchange .r-reply {
  border-radius: 14px;
  padding: 14px 16px;
  font-size: 14.5px;
  line-height: 1.6;
}
.result-exchange .r-mail {
  background: var(--bg);
  border: 1px solid var(--line);
  color: var(--ink-soft);
}
.result-exchange .r-reply {
  background: var(--bg-raised);
  border: 1px solid #EBD2C3;
  border-left: 3px solid var(--accent);
  box-shadow: 0 10px 24px -16px rgba(84, 62, 44, 0.3);
}
.result-exchange .r-meta {
  font-size: 12.5px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 5px;
}
.result-exchange .r-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent-deep);
  background: var(--accent-tint);
  border-radius: var(--r-pill);
  padding: 3px 10px;
  margin-bottom: 8px;
}
.result-exchange .r-body { white-space: pre-line; }
@media (min-width: 760px) {
  .result-exchange { grid-template-columns: 1fr 1.15fr; align-items: start; }
}

.results-cta {
  margin-top: 26px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  text-align: center;
}
.results-hook {
  font-family: var(--serif);
  font-size: clamp(17px, 2.2vw, 20px);
  font-weight: 650;
  margin-bottom: 14px;
}
.calendly-embed {
  width: 100%;
  height: 680px;
  border: 0;
  border-radius: 14px;
  background: var(--bg-raised);
}
.calendly-ph {
  font-size: 14px;
  padding: 26px 12px;
  border: 1.5px dashed var(--line);
  border-radius: 14px;
}

/* Page resultats.html */
.page-resultats main { min-height: 62vh; }
.results-page { padding-top: clamp(34px, 6vw, 64px); }
.site-footer.slim { padding: 22px 0; }
.site-footer.slim .transparency { text-align: center; }
.site-footer.slim a { color: var(--ink-soft); }


/* CTA flottant « Réserver un appel » (resultats.html) — visible aussi desktop */
@media (min-width: 900px) {
  .sticky-cta.sticky-call {
    display: block;
    left: auto;
    right: 22px;
    bottom: 22px;
    padding: 0;
    background: none;
    border-top: 0;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
  .sticky-cta.sticky-call .btn {
    width: auto;
    box-shadow: 0 16px 36px -12px rgba(196, 85, 45, 0.55);
  }
}
.sticky-cta.sticky-call[hidden] { display: none; }


/* Upgrade « collez vos vrais emails » (resultats.html) */
.paste-block {
  margin-top: 26px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}
.paste-title {
  font-family: var(--serif);
  font-size: clamp(17px, 2.2vw, 20px);
  font-weight: 650;
  text-align: center;
  max-width: 46ch;
  margin: 0 auto 16px;
}
.paste-block textarea {
  width: 100%;
  font-size: 15px;
  color: var(--ink);
  background: var(--bg);
  border: 1.5px solid var(--line);
  border-radius: 10px;
  padding: 12px 14px;
  resize: vertical;
  min-height: 110px;
  font-family: var(--sans);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.paste-block textarea::placeholder { color: #7A7468; }
.paste-block textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(196, 85, 45, 0.18);
}
.paste-actions {
  margin-top: 12px;
  text-align: center;
}
.paste-note {
  margin-top: 10px;
  font-size: 13px;
  line-height: 1.55;
  color: var(--ink-soft);
}
.paste-out { margin-top: 20px; }
.draft-note {
  font-size: 13px;
  line-height: 1.55;
  color: var(--ink-soft);
  text-align: center;
  background: var(--accent-tint);
  border-radius: 10px;
  padding: 10px 14px;
}


/* 4. Frontière rail → cas client resserrée sur mobile (le double padding
      de section créait un trou entre la note du rail et le bloc méthode) */
@media (max-width: 700px) {
  .proofs { padding-block-end: 30px; }
  .case { padding-block-start: 26px; }
}

/* 5. Étapes S5 sur mobile : le numéro passe au-dessus du titre — le texte
      récupère toute la largeur au lieu d'être décalé de 70px */
@media (max-width: 700px) {
  .step { grid-template-columns: 1fr; gap: 6px; }
  .step .n { font-size: 21px; line-height: 1; }
}


/* FAQ desktop : intro à gauche (sticky), questions à droite */
@media (min-width: 1000px) {
  .faq .wrap {
    display: grid;
    grid-template-columns: 0.75fr 1.25fr;
    column-gap: clamp(48px, 6vw, 96px);
    align-items: start;
  }
  .faq .section-intro {
    position: sticky;
    top: 96px;
    margin-bottom: 0;
  }
  .faq .list { max-width: none; }
}

/* Tarif desktop : carte élargie, chiffres à gauche / réassurance à droite,
   action en bas — compacte pour tenir dans un écran */
@media (min-width: 960px) {
  .pricing .card {
    max-width: 960px;
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    column-gap: clamp(40px, 4.5vw, 60px);
    padding: 30px 44px 34px;
  }
  .pricing .scarcity,
  .pricing h2,
  .pricing .offer-badge,
  .pricing .cta-center { grid-column: 1 / -1; }
  .pricing .scarcity { margin-bottom: 14px; }
  .pricing h2 { margin-bottom: 2px; }
  .pricing .offer-badge { margin-top: 10px; }

  .price-col-left { grid-column: 1; margin-top: 26px; }
  .price-col-right {
    grid-column: 2;
    margin-top: 26px;
    display: flex;
    flex-direction: column;
  }

  .pricing .setup-block { margin-top: 0; padding: 16px 18px; }
  .pricing .monthly-label { margin: 18px 0 6px; }
  .pricing .price-row { padding-block: 12px; }

  .pricing .included {
    margin-top: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
  }
  .pricing .included [role="listitem"] {
    font-size: 14.5px;
    padding: 9px 15px;
    border-radius: 12px;
  }
  .pricing .included [role="listitem"]::before {
    content: "✓";
    font-weight: 800;
    color: var(--accent);
    margin-right: 10px;
  }
  .pricing .context { margin-top: 16px; }
  .pricing .cta-center { margin-top: 24px; }
}
