/* ══════════════════════════════════════════════════════════════
   INSCULPE — site commercial, direction « Apple »
   Blanc dominant, cartes 28px, typographie système SF,
   visuels produit intégrés (mockups UI), carrousel à palettes.
   ══════════════════════════════════════════════════════════════ */
:root {
  --blanc: #ffffff;
  --gris: #f5f5f7;          /* fond de section Apple */
  --encre: #1d1d1f;         /* texte principal */
  --encre-2: #6e6e73;       /* texte secondaire */
  --nuit: #0b0b0e;          /* cartes sombres */
  --bleu: #0071e3;          /* action */
  --bleu-h: #0077ed;
  --sceau: #b08d57;         /* bronze INSCULPE, accent rare */
  --vert: #30d158;
  --r-card: 28px;
  --r-ui: 16px;
  --ombre: 0 6px 30px rgba(0,0,0,.07);
  --sans: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "Segoe UI", Helvetica, Arial, sans-serif;
  --mono: "SF Mono", ui-monospace, Menlo, Consolas, monospace;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--blanc);
  color: var(--encre);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
::selection { background: rgba(0,113,227,.18); }
a { color: inherit; }
.wrap { max-width: 1200px; margin: 0 auto; padding: 0 32px; }

/* ── Typo ────────────────────────────────────────────────────── */
h1, h2, h3 { letter-spacing: -.015em; text-wrap: balance; }
.eyebrow { font-size: 14px; font-weight: 600; color: var(--encre-2); letter-spacing: .01em; }
.sect-title { font-size: clamp(34px, 4.6vw, 56px); font-weight: 700; line-height: 1.08; }
.sect-sub { font-size: clamp(19px, 2vw, 24px); color: var(--encre-2); font-weight: 500; margin-top: 14px; max-width: 640px; }
.tlink { color: var(--bleu); text-decoration: none; font-size: 17px; font-weight: 500; }
.tlink:hover { text-decoration: underline; }
.tlink::after { content: " ›"; }

/* ── Boutons ─────────────────────────────────────────────────── */
.btn {
  display: inline-block;
  background: var(--bleu);
  color: #fff;
  font-size: 16px; font-weight: 500;
  text-decoration: none;
  padding: 13px 26px;
  border-radius: 999px;
  border: 0; cursor: pointer;
  transition: background .2s;
}
.btn:hover { background: var(--bleu-h); }
.btn--ghost { background: transparent; color: var(--bleu); border: 1px solid var(--bleu); }
.btn--ghost:hover { background: var(--bleu); color: #fff; }
.btn--blanc { background: #fff; color: var(--encre); }
.btn--blanc:hover { background: #e8e8ed; }

/* ── Nav ─────────────────────────────────────────────────────── */
header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.72);
  -webkit-backdrop-filter: saturate(1.8) blur(20px);
  backdrop-filter: saturate(1.8) blur(20px);
  border-bottom: 1px solid rgba(0,0,0,.06);
}
.nav {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 32px; height: 52px;
}
.wordmark {
  font-weight: 700; font-size: 19px; letter-spacing: .14em;
  text-decoration: none; color: var(--encre);
}
.wordmark b { color: var(--sceau); font-weight: 700; }
.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links a:not(.btn) {
  font-size: 13px; color: var(--encre); opacity: .85; text-decoration: none;
}
.nav-links a:not(.btn):hover { opacity: 1; color: var(--bleu); }
.nav .btn { padding: 7px 16px; font-size: 13px; }

/* ── Hero ────────────────────────────────────────────────────── */
.hero { padding: 108px 0 0; text-align: center; }
.hero .eyebrow { color: var(--sceau); font-size: 15px; }
.hero h1 {
  font-size: clamp(48px, 8vw, 96px);
  font-weight: 700;
  line-height: 1.02;
  margin: 14px 0 18px;
}
.hero .sect-sub { margin: 0 auto; max-width: 680px; }
.hero-ctas { margin: 36px 0 24px; display: flex; gap: 18px; justify-content: center; flex-wrap: wrap; align-items: center; }

/* Mockup fenêtre produit */
.window {
  max-width: 1080px;
  margin: 56px auto 0;
  background: #fbfbfd;
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 20px;
  box-shadow: 0 30px 80px rgba(0,0,0,.12);
  overflow: hidden;
  text-align: left;
}
.window-bar {
  display: flex; align-items: center; gap: 8px;
  padding: 13px 18px;
  background: #f0f0f2;
  border-bottom: 1px solid rgba(0,0,0,.07);
}
.dot { width: 12px; height: 12px; border-radius: 50%; }
.dot:nth-child(1) { background: #ff5f57; }
.dot:nth-child(2) { background: #febc2e; }
.dot:nth-child(3) { background: #28c840; }
.window-title { flex: 1; text-align: center; font-size: 12.5px; color: var(--encre-2); margin-right: 44px; }
.window-body {
  display: grid; grid-template-columns: 1fr 1fr 1fr;
  gap: 0; min-height: 380px;
}
.pane { padding: 26px 26px 30px; border-right: 1px solid rgba(0,0,0,.06); display: flex; flex-direction: column; }
.pane:last-child { border-right: 0; }
.pane-label { font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--encre-2); margin-bottom: 18px; }

/* bulle whatsapp */
.bubble {
  background: #e9f8e7;
  border-radius: 18px 18px 18px 5px;
  padding: 13px 16px;
  font-size: 14.5px; line-height: 1.45;
  max-width: 92%;
  position: relative;
}
.bubble time { display: block; text-align: right; font-size: 10.5px; color: #7aa874; margin-top: 5px; }
.bubble--out {
  background: #f0f0f3;
  border-radius: 18px 18px 5px 18px;
  margin: 12px 0 0 auto;
}
.bubble--out time { color: #9b9ba1; }

/* carte décision */
.dcard { background: #fff; border: 1px solid rgba(0,0,0,.08); border-radius: var(--r-ui); padding: 18px; }
.dcard .drow { display: flex; justify-content: space-between; gap: 10px; font-size: 13.5px; padding: 8px 0; border-bottom: 1px solid rgba(0,0,0,.05); }
.dcard .drow:last-child { border-bottom: 0; }
.dcard .drow b { font-weight: 600; text-align: right; }
.pill { display: inline-block; font-size: 11px; font-weight: 700; padding: 4px 10px; border-radius: 999px; }
.pill--ok { background: rgba(48,209,88,.14); color: #1d9d45; }
.pill--info { background: rgba(0,113,227,.1); color: var(--bleu); }
.conf-meter { margin-top: 14px; }
.conf-meter .cm-track { height: 6px; border-radius: 99px; background: #ececf0; overflow: hidden; }
.conf-meter .cm-fill { height: 100%; width: 92%; border-radius: 99px; background: linear-gradient(90deg, #34c759, #30d158); }
.conf-meter .cm-txt { display: flex; justify-content: space-between; font-size: 11.5px; color: var(--encre-2); margin-top: 6px; }

/* historique sombre */
.pane--noir { background: var(--nuit); color: #f5f5f7; border-right: 0; }
.pane--noir .pane-label { color: #86868b; }
.verify-line { margin-top: 14px; font-size: 12.5px; color: #1d9d45; font-weight: 600; }
.timeline { font-size: 13.5px; }
.tl-row {
  display: flex; align-items: baseline; gap: 12px;
  padding: 10px 0; border-bottom: 1px solid rgba(255,255,255,.09);
}
.tl-row time { color: #86868b; font-size: 12px; font-variant-numeric: tabular-nums; }
.tl-row span { flex: 1; }
.tl-row i { font-style: normal; color: var(--vert); font-weight: 700; }
.tl-seal { padding-top: 16px; font-size: 12.5px; color: var(--vert); font-weight: 600; line-height: 1.5; }

/* ── Carrousel « Découvrez » ─────────────────────────────────── */
.discover { padding: 130px 0 90px; }
.discover-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; margin-bottom: 40px; }
.rail-outer { position: relative; }
.rail {
  display: flex; gap: 22px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 6px 32px 34px;
  margin: 0 -32px;
  scrollbar-width: none;
}
.rail::-webkit-scrollbar { display: none; }
.card {
  flex: 0 0 400px;
  height: 620px;
  border-radius: var(--r-card);
  background: var(--gris);
  box-shadow: var(--ombre);
  scroll-snap-align: start;
  overflow: hidden;
  display: flex; flex-direction: column;
  position: relative;
}
.card-head { padding: 30px 30px 8px; position: relative; z-index: 3; }
.card-head .eyebrow { font-size: 13px; margin-bottom: 6px; display: block; }
.card-head h3 { font-size: 27px; font-weight: 700; line-height: 1.15; }
.card--noir { background: var(--nuit); color: #f5f5f7; }
.card--noir .eyebrow { color: #86868b; }
.card-visual { flex: 1; position: relative; overflow: hidden; }

/* Carte 1 — scène nocturne (astro) */
.scene-nuit {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 120% 55% at 50% 108%, #2a3348 0%, #141a2b 45%, #0a0d18 75%, #05060c 100%);
}
.scene-nuit .stars { position: absolute; inset: 0; }
.scene-nuit .lune {
  position: absolute; top: 34px; right: 44px;
  width: 46px; height: 46px; border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #fdfdf6, #d8d8ce 70%, #b9b9b0);
  box-shadow: 0 0 44px 10px rgba(253,253,246,.18);
}
.scene-nuit .colline {
  position: absolute; bottom: -2px; left: 0; right: 0; height: 130px;
  background: radial-gradient(ellipse 130% 100% at 50% 115%, #10131c 55%, transparent 56%);
}
.fenetre {
  position: absolute; bottom: 70px; left: 50%; transform: translateX(-50%);
  background: rgba(10, 13, 24, .82);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 14px;
  padding: 14px 18px;
  font-size: 13px; line-height: 1.5;
  width: 78%;
  -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
}
.fenetre .fh { display: flex; justify-content: space-between; font-size: 10.5px; color: #86868b; margin-bottom: 8px; }
.fenetre .fv { color: #f5f5f7; }
.fenetre .fs { color: var(--vert); font-size: 11.5px; margin-top: 8px; font-weight: 600; }

/* Carte 2 — règles (qui paie quoi) */
.scene-regles {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 90% 60% at 50% 0%, #1c1c22 0%, #0b0b0e 60%), var(--nuit);
  padding: 20px 28px;
  display: flex; flex-direction: column; justify-content: center;
}
.regle-row {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  padding: 15px 2px;
  border-bottom: 1px solid rgba(255,255,255,.09);
  font-size: 14px;
}
.regle-row:last-of-type { border-bottom: 0; }
.regle-row .rq { color: #f5f5f7; font-weight: 600; }
.regle-row .rq small { display: block; font-weight: 400; color: #86868b; font-size: 11.5px; margin-top: 1px; }
.pill--gris { background: rgba(255,255,255,.12); color: #f5f5f7; }
.regle-foot {
  margin-top: 22px; text-align: center;
  font-size: 12.5px; color: #86868b; line-height: 1.6;
}
.regle-foot b { color: #f5f5f7; }

/* Carte 3 — journal (registre) */
.scene-journal { position: absolute; inset: 0; padding: 22px 30px; }
.scene-journal .jrow {
  display: flex; justify-content: space-between; align-items: baseline; gap: 10px;
  padding: 13px 2px;
  border-bottom: 1px solid rgba(0,0,0,.07);
  font-size: 13px;
}
.scene-journal .jrow .jt { font-weight: 600; }
.scene-journal .jrow .jh { font-family: var(--mono); font-size: 10.5px; color: var(--encre-2); }
.scene-journal .jrow .js { color: #1d9d45; font-weight: 700; font-size: 12px; }
.scene-journal .jfoot {
  margin-top: 18px; text-align: center;
  font-size: 12.5px; color: var(--encre-2);
}
.scene-journal .jfoot b { color: #1d9d45; }

/* Carte 4 — cockpit escalade */
.scene-cockpit { position: absolute; inset: 0; padding: 20px 26px; background: linear-gradient(180deg, #f5f5f7, #eaeaef); }
.esc {
  background: #fff; border-radius: 14px; padding: 15px 17px; margin-bottom: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,.05);
  font-size: 13px;
}
.esc .eh { display: flex; justify-content: space-between; align-items: center; margin-bottom: 5px; }
.esc .eh b { font-size: 13.5px; }
.esc .em { color: var(--encre-2); font-size: 12.5px; }
.pill--warn { background: rgba(255,159,10,.15); color: #c07600; }
.pill--rouge { background: rgba(255,69,58,.12); color: #d70015; }
.esc-actions { display: flex; gap: 8px; margin-top: 10px; }
.esc-actions span {
  flex: 1; text-align: center; font-size: 12px; font-weight: 600;
  padding: 8px 0; border-radius: 9px; background: #f0f0f3;
}
.esc-actions .go { background: var(--bleu); color: #fff; }

/* Carte 5 — canaux (grille d'icônes) */
.scene-canaux {
  position: absolute; inset: 0;
  background: linear-gradient(160deg, #dfe9f7 0%, #e9e3f5 55%, #f3e8ec 100%);
  display: flex; align-items: center; justify-content: center;
}
.icon-grid { display: grid; grid-template-columns: repeat(3, 88px); gap: 22px; transform: rotate(-4deg); }
.app-ico {
  width: 88px; height: 88px; border-radius: 22px;
  display: flex; align-items: center; justify-content: center;
  font-size: 15px; font-weight: 700; color: #fff;
  box-shadow: 0 10px 24px rgba(30,40,80,.18);
}
.app-ico small { font-size: 26px; font-weight: 700; }
.ico-wa { background: linear-gradient(180deg, #45d465, #23a940); }
.ico-sms { background: linear-gradient(180deg, #4fd964, #2fbf4c); }
.ico-mail { background: linear-gradient(180deg, #4aa8ff, #1f7cf5); }
.ico-pdf { background: linear-gradient(180deg, #ff6b62, #e33b31); }
.ico-cal { background: #fff; color: #e33b31; }
.ico-cal small { font-size: 34px; line-height: 1; }
.ico-ins { background: linear-gradient(180deg, #cbab77, #a9834b); letter-spacing: .1em; }

/* Carte 6 — quittance */
.scene-quittance {
  position: absolute; inset: 0; background: linear-gradient(180deg, #f7f6f3, #efede8);
  display: flex; align-items: flex-end; justify-content: center;
}
.doc {
  background: #fff; width: 74%; border-radius: 14px 14px 0 0;
  box-shadow: 0 -14px 40px rgba(0,0,0,.10);
  padding: 26px 28px 34px;
}
.doc .d-mark { font-size: 13px; font-weight: 700; letter-spacing: .18em; color: var(--sceau); }
.doc .d-title { font-size: 17px; font-weight: 700; margin: 8px 0 2px; }
.doc .d-sub { font-size: 11.5px; color: var(--encre-2); }
.doc .d-line { display: flex; justify-content: space-between; font-size: 12px; padding: 8px 0; border-bottom: 1px solid rgba(0,0,0,.06); font-variant-numeric: tabular-nums; }
.doc .d-line:first-of-type { margin-top: 16px; }
.doc .d-line b { font-weight: 600; }
.doc .d-stamp {
  margin-top: 16px; display: inline-block;
  border: 1.5px solid var(--sceau); color: var(--sceau);
  border-radius: 8px; font-size: 10.5px; font-weight: 700; letter-spacing: .1em;
  padding: 5px 10px; transform: rotate(-3deg);
}
.chrono {
  position: absolute; top: 24px; right: 26px;
  background: #fff; border-radius: 999px; padding: 8px 16px;
  font-size: 13px; font-weight: 700; box-shadow: 0 4px 16px rgba(0,0,0,.08);
}
.chrono b { color: #1d9d45; }

/* Palettes du carrousel */
.paddles { display: flex; gap: 12px; }
.paddle {
  width: 40px; height: 40px; border-radius: 50%;
  border: 0; background: #e8e8ed; color: var(--encre);
  font-size: 18px; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s, opacity .2s;
}
.paddle:hover { background: #dcdce1; }
.paddle:disabled { opacity: .35; cursor: default; }

/* ── Pipeline ────────────────────────────────────────────────── */
.pipeline, .parcours-bande { padding: 110px 0 120px; background: var(--gris); }
.pipeline .head, .parcours-bande .head { text-align: center; max-width: 720px; margin: 0 auto 70px; }
.flow {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  align-items: stretch;
  position: relative;
}
.flow-step { position: relative; padding: 0 20px; text-align: center; }
.flow-step + .flow-step::before {
  content: "";
  position: absolute; left: -14px; top: 34px;
  width: 28px; height: 2px; background: #d2d2d7;
}
.flow-ico {
  width: 68px; height: 68px; margin: 0 auto 20px;
  border-radius: 20px; background: #fff;
  box-shadow: var(--ombre);
  display: flex; align-items: center; justify-content: center;
  font-size: 15px; font-weight: 800; color: var(--encre);
}
.flow-ico.f-noir { background: var(--nuit); color: #fff; }
.flow-ico.f-sceau { background: var(--sceau); color: #fff; letter-spacing: .04em; }
.flow-step h3 { font-size: 18px; font-weight: 700; margin-bottom: 8px; }
.flow-step p { font-size: 13.5px; color: var(--encre-2); line-height: 1.55; }
.flow-note { text-align: center; margin-top: 60px; color: var(--encre-2); font-size: 15px; }
.flow-note b { color: var(--encre); }

/* ── Bande sombre : journal ──────────────────────────────────── */
.forever {
  background: var(--nuit); color: #f5f5f7;
  padding: 140px 0 0; text-align: center; overflow: hidden;
}
.forever .eyebrow { color: var(--sceau); }
.forever .sect-title {
  background: linear-gradient(92deg, #f5f5f7 20%, #cbab77 50%, #f5f5f7 80%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}
.forever .sect-sub { margin: 16px auto 0; color: #a1a1a6; }
.hash-ticker {
  margin-top: 90px; padding: 16px 0;
  border-top: 1px solid rgba(255,255,255,.1);
  border-bottom: 1px solid rgba(255,255,255,.1);
  overflow: hidden; white-space: nowrap;
}
.hash-track {
  display: inline-block;
  font-family: var(--mono); font-size: 12px; letter-spacing: .06em;
  color: #6e6e73;
  animation: tick 90s linear infinite;
}
.hash-track b { color: var(--sceau); font-weight: 500; }
@keyframes tick { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ── Métriques ───────────────────────────────────────────────── */
.metrics { padding: 130px 0; }
.metrics-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; text-align: center; }
.metric .num {
  font-size: clamp(44px, 5vw, 72px); font-weight: 700; letter-spacing: -.03em;
  display: block; line-height: 1;
}
.metric .num em { font-style: normal; color: var(--sceau); }
.metric p { color: var(--encre-2); font-size: 15px; margin-top: 12px; }
.metrics-note { text-align: center; color: var(--encre-2); font-size: 14px; margin-top: 56px; }

/* ── Trois espaces : propriétaire / gestionnaire / locataire ──── */
.duo { padding: 20px 0 130px; }
.duo .head { text-align: center; margin-bottom: 56px; }
.duo-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 22px; }
.duo-card {
  border-radius: var(--r-card); overflow: hidden;
  background: var(--gris); box-shadow: var(--ombre);
  padding: 42px 36px 0; text-align: center;
  display: flex; flex-direction: column; min-height: 600px;
}
.duo-card .eyebrow { margin-bottom: 8px; }
.duo-card h3 { font-size: 26px; font-weight: 700; margin-bottom: 10px; }
.duo-card > p { color: var(--encre-2); font-size: 14.5px; max-width: 340px; margin: 0 auto 28px; }
.duo-visual { flex: 1; display: flex; align-items: flex-end; justify-content: center; }
.mini-cockpit { width: 92%; }
.mini-cockpit .esc { text-align: left; }
.mini-cockpit .esc:last-child { border-radius: 14px 14px 0 0; margin-bottom: 0; }
.releve {
  background: #fff; border-radius: 16px 16px 0 0;
  box-shadow: 0 -12px 36px rgba(0,0,0,.08);
  width: 88%; padding: 26px 30px 30px; text-align: left;
}
.releve .r-h { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 14px; }
.releve .r-t { font-weight: 700; font-size: 15px; letter-spacing: .1em; }
.releve .r-p { font-size: 11px; color: var(--encre-2); }
.releve .r-line { display: flex; justify-content: space-between; font-size: 13px; padding: 9px 0; border-top: 1px solid rgba(0,0,0,.06); font-variant-numeric: tabular-nums; }
.releve .r-line span:first-child { color: var(--encre-2); }
.releve .r-line.total { border-top: 2px solid var(--encre); font-weight: 700; }
.releve .r-line.total span:first-child { color: var(--encre); }
.phone {
  width: 258px; border-radius: 34px 34px 0 0;
  background: #0d0d10; padding: 12px 12px 0;
  box-shadow: 0 -16px 44px rgba(0,0,0,.16);
}
.phone-screen { background: #f7f7f9; border-radius: 24px 24px 0 0; padding: 42px 14px 26px; min-height: 330px; position: relative; text-align: left; }
.phone-notch { position: absolute; top: 10px; left: 50%; transform: translateX(-50%); width: 86px; height: 22px; border-radius: 12px; background: #0d0d10; }
.app-title { font-size: 12px; font-weight: 800; letter-spacing: .14em; color: var(--sceau); margin-bottom: 12px; }
.app-row {
  background: #fff; border-radius: 12px; padding: 11px 13px;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 12.5px; font-weight: 600; margin-bottom: 8px;
  box-shadow: 0 1px 6px rgba(0,0,0,.05);
}
.app-row .dl { color: var(--bleu); font-size: 15px; font-weight: 700; }
.app-row small { display: block; font-weight: 400; color: var(--encre-2); font-size: 10.5px; }
.app-cta {
  display: block; text-align: center; background: var(--bleu); color: #fff;
  font-size: 13px; font-weight: 700; border-radius: 12px; padding: 12px 0;
  margin-top: 12px;
}
.app-status { margin-top: 10px; font-size: 11px; color: var(--encre-2); text-align: center; }
.app-status b { color: #1d9d45; }

/* ── Conformité ──────────────────────────────────────────────── */
.conf { background: var(--gris); padding: 120px 0; }
.conf .head { text-align: center; margin-bottom: 64px; }
.conf-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.conf-card { background: #fff; border-radius: 22px; padding: 32px 28px; box-shadow: var(--ombre); }
.conf-card .ci {
  width: 46px; height: 46px; border-radius: 14px;
  background: var(--gris); color: var(--sceau);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; font-weight: 800; margin-bottom: 18px;
}
.conf-card h3 { font-size: 17px; font-weight: 700; margin-bottom: 8px; }
.conf-card p { font-size: 13.5px; color: var(--encre-2); line-height: 1.6; }

/* ── Tarifs ──────────────────────────────────────────────────── */
.pricing { padding: 130px 0; }
.pricing .head { text-align: center; margin-bottom: 70px; }
.plans { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; align-items: stretch; }
.plan {
  border: 1px solid rgba(0,0,0,.1); border-radius: var(--r-card);
  padding: 40px 36px; display: flex; flex-direction: column;
  background: #fff;
}
.plan--star { background: var(--nuit); color: #f5f5f7; border-color: var(--nuit); position: relative; }
.plan .eyebrow { margin-bottom: 16px; }
.plan--star .eyebrow { color: var(--sceau); }
.plan .price { font-size: 44px; font-weight: 700; letter-spacing: -.02em; line-height: 1; }
.plan .price small { font-size: 14px; font-weight: 500; color: var(--encre-2); letter-spacing: 0; }
.plan--star .price small { color: #a1a1a6; }
.plan .p-desc { font-size: 14px; color: var(--encre-2); margin: 18px 0 24px; line-height: 1.6; }
.plan--star .p-desc { color: #a1a1a6; }
.plan ul { list-style: none; flex: 1; }
.plan li { font-size: 14px; padding: 9px 0 9px 26px; position: relative; }
.plan li::before { content: "✓"; position: absolute; left: 0; color: var(--bleu); font-weight: 700; }
.plan--star li::before { color: var(--vert); }
.plan .btn { margin-top: 30px; text-align: center; }
.pricing-note { text-align: center; color: var(--encre-2); font-size: 13.5px; margin-top: 44px; }

/* ── FAQ ─────────────────────────────────────────────────────── */
.faq { background: var(--gris); padding: 120px 0; }
.faq .head { text-align: center; margin-bottom: 56px; }
.faq-list { max-width: 780px; margin: 0 auto; }
.faq details {
  background: #fff; border-radius: 18px; margin-bottom: 12px;
  box-shadow: var(--ombre); overflow: hidden;
}
.faq summary {
  font-size: 17px; font-weight: 600;
  padding: 22px 56px 22px 28px;
  cursor: pointer; list-style: none; position: relative;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+"; position: absolute; right: 26px; top: 18px;
  font-size: 24px; font-weight: 300; color: var(--encre-2);
  transition: transform .25s;
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { padding: 0 28px 24px; font-size: 15px; color: var(--encre-2); line-height: 1.65; }

/* ── CTA final ───────────────────────────────────────────────── */
.final { padding: 150px 0; text-align: center; }
.final .eyebrow { color: var(--sceau); }
.final h2 { font-size: clamp(38px, 5.4vw, 68px); font-weight: 700; margin: 14px 0 16px; line-height: 1.05; }
.final p { color: var(--encre-2); font-size: 19px; max-width: 560px; margin: 0 auto 40px; }
.final-ctas { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ── Footer ──────────────────────────────────────────────────── */
footer { background: var(--gris); border-top: 1px solid rgba(0,0,0,.08); padding: 44px 0 40px; }
.foot-grid { display: flex; justify-content: space-between; gap: 32px; flex-wrap: wrap; align-items: baseline; }
.foot-links { display: flex; gap: 26px; flex-wrap: wrap; }
.foot-links a { font-size: 12px; color: var(--encre-2); text-decoration: none; }
.foot-links a:hover { color: var(--encre); }
.foot-legal { margin-top: 26px; font-size: 12px; color: var(--encre-2); }

/* ── Révélation ──────────────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .hash-track { animation: none; }
  .gauge .g-val { transition: none; }
}

/* ── Responsive ──────────────────────────────────────────────── */
@media (max-width: 1020px) {
  .window-body { grid-template-columns: 1fr; }
  .pane { border-right: 0; border-bottom: 1px solid rgba(0,0,0,.06); }
  .flow { grid-template-columns: 1fr 1fr; row-gap: 48px; }
  .flow-step + .flow-step::before { display: none; }
  .metrics-grid { grid-template-columns: 1fr 1fr; row-gap: 56px; }
  .duo-grid { grid-template-columns: 1fr; }
  .conf-grid { grid-template-columns: 1fr 1fr; }
  .plans { grid-template-columns: 1fr; }
  .nav-links a:not(.btn) { display: none; }
}
@media (max-width: 640px) {
  .wrap { padding: 0 20px; }
  .card { flex: 0 0 86vw; height: 560px; }
  .rail { padding-left: 20px; padding-right: 20px; margin: 0 -20px; }
  .flow { grid-template-columns: 1fr; }
  .metrics-grid, .conf-grid { grid-template-columns: 1fr; }
}

/* ══════════════════════════════════════════════════════════════
   Composants multi-pages : personas, splits, réassurance
   ══════════════════════════════════════════════════════════════ */

/* ── Cartes persona (homepage) ───────────────────────────────── */
.personas { padding: 120px 0 30px; }
.personas .head { text-align: center; margin-bottom: 56px; }
.persona-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.persona-card {
  display: flex; flex-direction: column;
  background: var(--gris);
  border-radius: var(--r-card);
  padding: 40px 36px;
  min-height: 280px;
  text-decoration: none;
  color: var(--encre);
  box-shadow: var(--ombre);
  transition: transform .35s cubic-bezier(.22,.8,.26,.99), box-shadow .35s;
}
.persona-card:hover { transform: translateY(-6px); box-shadow: 0 18px 48px rgba(0,0,0,.12); }
.persona-card .pc-ico {
  width: 52px; height: 52px; border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 17px; font-weight: 800; color: #fff;
  margin-bottom: 22px;
}
.pc-ico--noir { background: var(--nuit); }
.pc-ico--bleu { background: var(--bleu); }
.pc-ico--sceau { background: var(--sceau); }
.persona-card .eyebrow { margin-bottom: 6px; }
.persona-card h3 { font-size: 24px; font-weight: 700; line-height: 1.18; margin-bottom: 10px; }
.persona-card p { font-size: 14px; color: var(--encre-2); line-height: 1.6; flex: 1; }
.persona-card .pc-link { margin-top: 20px; color: var(--bleu); font-weight: 600; font-size: 15px; }
.persona-card .pc-link::after { content: " ›"; }

/* ── Hero de page persona ────────────────────────────────────── */
.page-hero { padding: 96px 0 24px; text-align: center; }
.page-hero .eyebrow { color: var(--sceau); font-size: 15px; }
.page-hero h1 {
  font-size: clamp(40px, 6.4vw, 76px);
  font-weight: 700; line-height: 1.04;
  margin: 14px 0 18px;
}
.page-hero .sect-sub { margin: 0 auto; max-width: 640px; }
.crumb {
  display: inline-block; margin-bottom: 8px;
  font-size: 13px; color: var(--encre-2); text-decoration: none;
}
.crumb:hover { color: var(--bleu); }

/* ── Bande de réassurance (3 colonnes) ───────────────────────── */
.assure { background: var(--gris); padding: 90px 0; }
.assure .head { text-align: center; margin-bottom: 56px; }
.assure-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.assure-card { background: #fff; border-radius: 22px; padding: 34px 30px; box-shadow: var(--ombre); }
.assure-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 10px; }
.assure-card p { font-size: 14px; color: var(--encre-2); line-height: 1.65; }
.assure-card .ai {
  width: 44px; height: 44px; border-radius: 13px;
  background: var(--gris); color: var(--sceau);
  display: flex; align-items: center; justify-content: center;
  font-size: 15px; font-weight: 800; margin-bottom: 16px;
}

/* ── Sections split texte / visuel ───────────────────────────── */
.splits { padding: 60px 0 80px; }
.split {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 72px; align-items: center;
  padding: 56px 0;
}
.split .txt .eyebrow { display: block; margin-bottom: 12px; }
.split .txt h2 { font-size: clamp(28px, 3.4vw, 42px); font-weight: 700; line-height: 1.12; margin-bottom: 16px; }
.split .txt p { font-size: 16px; color: var(--encre-2); line-height: 1.65; max-width: 460px; }
.split.rev .txt { order: 2; }
.split.rev .viz { order: 1; }
.viz {
  background: var(--gris);
  border-radius: var(--r-card);
  min-height: 400px;
  padding: 44px 40px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--ombre);
  overflow: hidden; position: relative;
}
.viz--noir { background: var(--nuit); color: #f5f5f7; }
.viz--bas { align-items: flex-end; padding-bottom: 0; }
.viz > * { width: 100%; max-width: 400px; }
.viz .phone { margin: 0 auto; }
.viz .releve { width: 100%; }
.ticks { list-style: none; margin-top: 22px; }
.ticks li { font-size: 15px; padding: 8px 0 8px 28px; position: relative; color: var(--encre); }
.ticks li::before { content: "✓"; position: absolute; left: 0; color: var(--bleu); font-weight: 700; }

/* dcard posée sur fond viz */
.viz .dcard { background: #fff; box-shadow: 0 8px 30px rgba(0,0,0,.08); border: 0; padding: 24px; }
.viz .dcard .drow { font-size: 14px; padding: 10px 0; }

/* timeline claire (carnet) */
.carnet { background: #fff; border-radius: 16px; padding: 26px 28px; box-shadow: 0 8px 30px rgba(0,0,0,.08); }
.carnet .c-title { font-size: 12px; font-weight: 800; letter-spacing: .14em; color: var(--sceau); margin-bottom: 14px; }
.carnet .tl-row { border-bottom-color: rgba(0,0,0,.07); }
.carnet .tl-row time { color: var(--encre-2); min-width: 74px; }
.carnet .tl-row i { color: #1d9d45; }
.carnet .tl-seal { color: #1d9d45; }

/* rappels (liste app) */
.rappels { background: #fff; border-radius: 16px; padding: 24px 26px; box-shadow: 0 8px 30px rgba(0,0,0,.08); }
.rappels .r-title { font-size: 12px; font-weight: 800; letter-spacing: .14em; color: var(--sceau); margin-bottom: 14px; }
.rappels .app-row { box-shadow: none; border: 1px solid rgba(0,0,0,.07); font-size: 13.5px; }

/* ── Responsive multi-pages ──────────────────────────────────── */
@media (max-width: 1020px) {
  .persona-grid, .assure-grid { grid-template-columns: 1fr; }
  .split, .split.rev { grid-template-columns: 1fr; gap: 40px; padding: 40px 0; }
  .split.rev .txt { order: 1; }
  .split.rev .viz { order: 2; }
}
