/* ===================================================================
   HÆVEN Flow — Landing (executive cockpit / SaaS premium)
   Direction : business calm, clair, structuré, productif.
   Palette : pearl chaud · graphite · encre/ardoise (accent principal)
             champagne = signature très discrète, jamais dominante.
   Typo : Manrope (titres) + Inter (texte).
   =================================================================== */

:root {
  /* surfaces */
  --canvas:    #F3F5F4;   /* pearl chaud */
  --canvas-2:  #FAFBFA;   /* pearl très clair */
  --surface:   #FFFFFF;   /* cards */
  --stone:     #ECEEEB;   /* gris pierre */
  --line:      #E2E5E2;
  --line-2:    #EDEFEC;

  /* texte */
  --ink:       #1E242B;   /* graphite profond */
  --ink-soft:  #39424D;
  --muted:     #5E6671;
  --muted-2:   #8A929B;

  /* accents */
  --navy:      #27374D;   /* encre / ardoise — accent principal */
  --navy-2:    #324A6B;
  --slate:     #44587A;   /* bleu ardoise interactif */
  --slate-bg:  #EAEEF4;
  --champagne: #C2A878;   /* signature discrète (détail uniquement) */

  /* statuts sobres */
  --new:     #3E5C82;  --new-bg:     #E9EFF6;
  --pending: #B5852B;  --pending-bg: #F6EFDC;
  --paid:    #3C8A66;  --paid-bg:    #E7F1EC;
  --late:    #BF553F;  --late-bg:    #F7E8E3;

  --font-head: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  --maxw: 1200px;
  --radius: 18px;
  --radius-sm: 12px;
  --radius-xs: 9px;
  --shadow: 0 22px 60px -32px rgba(30, 40, 55, 0.30);
  --shadow-soft: 0 12px 34px -22px rgba(30, 40, 55, 0.22);
  --shadow-cockpit: 0 44px 110px -48px rgba(30, 45, 70, 0.42), 0 16px 44px -28px rgba(30,45,70,.22);
  --ease: cubic-bezier(.22,.61,.36,1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: clip; }
body {
  margin: 0; font-family: var(--font-body); color: var(--ink); background: var(--canvas);
  line-height: 1.62; font-size: 17px; -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility;
  overflow-x: clip;
}
img, svg, video { max-width: 100%; }
h1, h2, h3 { font-family: var(--font-head); font-weight: 700; line-height: 1.14; letter-spacing: -0.02em; margin: 0; overflow-wrap: break-word; }
p { margin: 0; }
a { color: inherit; text-decoration: none; }
ul, ol { margin: 0; padding: 0; list-style: none; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

/* ---------- Conteneurs ---------- */
.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.container--narrow { max-width: 800px; }

/* ---------- Boutons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5em;
  font-family: var(--font-body); font-weight: 600; font-size: .98rem;
  padding: 14px 26px; border-radius: 12px; border: 1px solid transparent; cursor: pointer;
  transition: transform .22s var(--ease), background .22s var(--ease), box-shadow .22s var(--ease), color .22s var(--ease), border-color .22s var(--ease);
  white-space: nowrap;
}
.btn--primary { background: var(--navy); color: #fff; }
.btn--primary:hover { background: var(--navy-2); transform: translateY(-2px); box-shadow: var(--shadow-soft); }
.btn--ghost { background: var(--surface); color: var(--ink); border-color: var(--line); }
.btn--ghost:hover { border-color: var(--navy); color: var(--navy); transform: translateY(-2px); }
.btn--small { padding: 10px 18px; font-size: .9rem; background: var(--navy); color: #fff; border-radius: 10px; }
.btn--small:hover { background: var(--navy-2); }
.btn--block { display: flex; width: 100%; }

/* ---------- Typo partagée ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .76rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  color: var(--slate); margin-bottom: 18px;
}
.eyebrow__dot { width: 6px; height: 6px; border-radius: 50%; background: var(--champagne); flex: none; }
.eyebrow--light { color: #AFC0D8; }
.accent { color: var(--slate); }
.section__title { font-size: clamp(1.7rem, 3.6vw, 2.5rem); max-width: 22ch; margin-bottom: 18px; font-weight: 800; }
.section__title--light { color: var(--canvas); }
.section__intro { font-size: 1.08rem; color: var(--muted); max-width: 62ch; margin-bottom: 48px; }

/* ---------- Wordmark ---------- */
.brand { display: inline-flex; align-items: center; gap: 11px; }
.brand__logo svg { display: block; }
.brand__word { display: inline-flex; align-items: baseline; gap: 2px; }
/* Wordmark lockup « Le Palier » : entièrement navy sur fond clair — le jalon du signe
   reste l'unique accent champagne. « Flow » n'est ni champagne ni gris secondaire. */
.brand__mark { font-family: var(--font-head); font-weight: 800; font-size: 1.12rem; letter-spacing: .12em; color: var(--navy); }
.brand__mark--light { color: var(--canvas); }
.brand__flow { font-family: var(--font-head); font-weight: 600; font-size: 1.12rem; letter-spacing: -.01em; color: var(--navy); margin-left: 4px; }
/* Sur fond navy (footer) : wordmark entièrement blanc. */
.footer .brand__flow { color: var(--canvas); }

/* ---------- Nav ---------- */
.nav { position: sticky; top: 0; z-index: 50; background: rgba(243,245,244,0.94); backdrop-filter: saturate(140%) blur(14px); border-bottom: 1px solid var(--line); }
.nav__inner { display: flex; align-items: center; justify-content: space-between; height: 74px; gap: 24px; }
.nav__links { display: flex; gap: 28px; }
.nav__links a { font-size: .94rem; color: var(--muted); font-weight: 500; transition: color .2s var(--ease); }
.nav__links a:hover { color: var(--ink); }

/* ===================================================================
   HERO + COCKPIT
   =================================================================== */
.hero {
  position: relative; overflow: hidden;
  padding: clamp(52px, 7vw, 88px) 0 clamp(60px, 8vw, 96px);
  background:
    radial-gradient(1100px 560px at 82% -10%, rgba(68,88,122,0.10), transparent 56%),
    radial-gradient(820px 520px at -6% 40%, rgba(39,55,77,0.05), transparent 55%),
    var(--canvas);
}
.hero__inner { display: grid; grid-template-columns: 0.92fr 1.28fr; gap: 52px; align-items: center; }
.hero__title { font-size: clamp(2rem, 4.2vw, 3.25rem); margin-bottom: 22px; font-weight: 800; letter-spacing: -0.03em; }
.hero__lead { font-size: clamp(1.02rem, 1.4vw, 1.18rem); color: var(--muted); max-width: 52ch; margin-bottom: 30px; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 20px; }
.hero__note { font-size: .9rem; color: var(--muted); }

/* ---- Cockpit window ---- */
.cockpit {
  background: var(--surface); border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-cockpit); border: 1px solid rgba(39,55,77,.07);
  transform: perspective(1700px) rotateY(-2.2deg); transform-origin: left center;
  transition: transform .55s var(--ease);
}
.cockpit:hover { transform: perspective(1700px) rotateY(0deg); }
.cockpit__bar { display: flex; align-items: center; gap: 12px; padding: 11px 15px; background: var(--navy); color: rgba(243,245,244,.72); }
.cockpit__dots { display: inline-flex; gap: 6px; }
.cockpit__dots i { width: 10px; height: 10px; border-radius: 50%; background: rgba(243,245,244,.26); }
.cockpit__dots i:first-child { background: #D98E7E; } .cockpit__dots i:nth-child(2){ background:#D9B777; } .cockpit__dots i:nth-child(3){ background:#86B79B; }
.cockpit__addr { font-size: .74rem; letter-spacing: .02em; background: rgba(255,255,255,.08); padding: 4px 12px; border-radius: 999px; margin: 0 auto; }
.cockpit__body { display: grid; grid-template-columns: 172px 1fr; background: var(--canvas-2); }
.cockpit__nav { display: flex; flex-direction: column; gap: 2px; padding: 14px 11px; background: var(--surface); border-right: 1px solid var(--line-2); }
.cnav { display: flex; align-items: center; gap: 9px; font-size: .8rem; color: var(--muted); padding: 8px 10px; border-radius: var(--radius-xs); white-space: nowrap; }
.cnav--active { background: var(--slate-bg); color: var(--navy); font-weight: 700; }
.cnav__ic { flex: none; width: 16px; height: 16px; }

/* Icônes SVG (système V3) — couleur héritée via currentColor */
.node__icon svg { width: 20px; height: 20px; }
.benefit__icon svg { width: 24px; height: 24px; }

.cockpit__main { padding: 16px 16px 18px; display: flex; flex-direction: column; gap: 12px; }

/* top : greeting + montant à encaisser */
.cockpit__top { display: flex; align-items: stretch; justify-content: space-between; gap: 12px; }
.cockpit__greeting { display: flex; flex-direction: column; gap: 6px; }
.cockpit__hello { font-family: var(--font-head); font-weight: 700; font-size: 1.02rem; color: var(--ink); }
.cockpit__period { align-self: flex-start; font-size: .72rem; color: var(--muted-2); background: var(--surface); border: 1px solid var(--line-2); padding: 3px 10px; border-radius: 999px; }
.encaisser { text-align: right; background: var(--navy); color: #fff; border-radius: var(--radius-sm); padding: 10px 16px; display: flex; flex-direction: column; gap: 1px; min-width: 150px; position: relative; }
.encaisser::after { content: ""; position: absolute; left: 16px; right: 16px; bottom: 8px; height: 2px; background: var(--champagne); border-radius: 2px; opacity: .8; }
.encaisser__label { font-size: .68rem; color: rgba(243,245,244,.62); }
.encaisser__value { font-family: var(--font-head); font-weight: 800; font-size: 1.55rem; line-height: 1.1; letter-spacing: -.02em; }
.encaisser__sub { font-size: .68rem; color: rgba(243,245,244,.7); }
.encaisser__sub strong { color: #E6B9AC; }

/* KPI tiles */
.kpis { display: grid; grid-template-columns: repeat(3, 1fr); gap: 9px; }
.kpi { background: var(--surface); border: 1px solid var(--line-2); border-radius: var(--radius-sm); padding: 11px 12px; display: flex; flex-direction: column; gap: 5px; }
.kpi__label { font-size: .7rem; color: var(--muted); }
.kpi__value { font-family: var(--font-head); font-weight: 800; font-size: 1.55rem; color: var(--ink); line-height: 1; letter-spacing: -.02em; }

/* Badges de statut */
.badge { display: inline-flex; align-items: center; align-self: flex-start; font-size: .67rem; font-weight: 600; padding: 3px 9px; border-radius: 999px; white-space: nowrap; }
.badge--new     { color: var(--new);     background: var(--new-bg); }
.badge--pending { color: var(--pending); background: var(--pending-bg); }
.badge--paid    { color: var(--paid);    background: var(--paid-bg); }
.badge--late    { color: var(--late);    background: var(--late-bg); }
.badge--info    { color: var(--ink-soft);background: var(--stone); }

/* Two columns */
.cockpit__cols { display: grid; grid-template-columns: 1.08fr .92fr; gap: 9px; }

/* Panels */
.panel { background: var(--surface); border: 1px solid var(--line-2); border-radius: var(--radius-sm); overflow: hidden; display: flex; flex-direction: column; }
.panel__head { display: flex; align-items: center; justify-content: space-between; padding: 10px 13px; border-bottom: 1px solid var(--line-2); font-family: var(--font-head); font-size: .8rem; font-weight: 700; color: var(--ink); }
.panel__link { font-family: var(--font-body); font-size: .72rem; font-weight: 500; color: var(--slate); }
.panel__count { font-family: var(--font-body); font-size: .68rem; font-weight: 700; color: var(--navy); background: var(--slate-bg); border-radius: 999px; padding: 1px 8px; }

/* tasks list */
.tasks { display: flex; flex-direction: column; }
.task { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 9px; padding: 9px 13px; border-top: 1px solid var(--line-2); }
.task:first-child { border-top: none; }
.task__tick { width: 8px; height: 8px; border-radius: 50%; background: var(--muted-2); flex: none; }
.task__tick[data-late]{ background: var(--late); } .task__tick[data-pending]{ background: var(--pending); }
.task__tick[data-paid]{ background: var(--paid); } .task__tick[data-new]{ background: var(--new); }
.task__body { display: flex; flex-direction: column; gap: 1px; min-width: 0; }
.task__title { font-size: .78rem; font-weight: 600; color: var(--ink); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.task__meta { font-size: .68rem; color: var(--muted); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.task__action { font-size: .7rem; font-weight: 700; color: #fff; background: var(--navy); border-radius: 7px; padding: 4px 10px; white-space: nowrap; }

/* rows (demandes) */
.rows { display: flex; flex-direction: column; }
.row { display: grid; grid-template-columns: 1.3fr 1fr auto; align-items: center; gap: 8px; padding: 9px 13px; font-size: .78rem; border-top: 1px solid var(--line-2); }
.row:first-child { border-top: none; }
.row__who { display: inline-flex; align-items: center; gap: 8px; font-weight: 600; color: var(--ink); white-space: nowrap; overflow: hidden; }
.ava { width: 21px; height: 21px; border-radius: 50%; background: var(--slate); color: #fff; font-size: .66rem; font-weight: 700; display: inline-flex; align-items: center; justify-content: center; font-style: normal; flex: none; }
.row__what { color: var(--muted); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.panel__foot { margin-top: auto; display: flex; align-items: center; gap: 8px; padding: 9px 13px; font-size: .68rem; color: var(--muted); border-top: 1px solid var(--line-2); background: var(--canvas-2); }
.dotline { width: 7px; height: 7px; border-radius: 50%; background: var(--paid); flex: none; }

/* ---------- Pitch ---------- */
.pitch { padding: 52px 0; border-bottom: 1px solid var(--line); background: var(--canvas-2); }
.pitch__text { font-family: var(--font-head); font-weight: 600; font-size: clamp(1.25rem, 2.6vw, 1.85rem); line-height: 1.4; max-width: 30ch; margin: 0 auto; text-align: center; color: var(--ink-soft); letter-spacing: -.02em; }
.pitch__text strong { color: var(--ink); font-weight: 800; }

/* ---------- Sections ---------- */
.section { padding: clamp(60px, 9vw, 112px) 0; }
.section--alt { background: var(--canvas-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }

/* ---------- Grilles ---------- */
.grid { display: grid; gap: 22px; }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }

/* ---------- Cartes ---------- */
.card { position: relative; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 30px; transition: transform .28s var(--ease), box-shadow .28s var(--ease), border-color .28s var(--ease); }
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--line); }
.card h3 { font-size: 1.24rem; margin-bottom: 11px; font-weight: 700; }
.card p { color: var(--muted); }
.card__tag { display: inline-block; font-size: .75rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--muted-2); background: var(--stone); padding: 3px 10px; border-radius: 999px; margin-bottom: 14px; }
.card--feature { padding-top: 34px; }
.card__num { font-family: var(--font-head); font-size: 1rem; font-weight: 800; color: var(--slate); letter-spacing: .04em; display: inline-block; margin-bottom: 14px; }
.mini { margin-top: 16px; display: grid; gap: 8px; }
.mini li { position: relative; padding-left: 22px; font-size: .92rem; color: var(--ink-soft); }
.mini li::before { content: "✓"; position: absolute; left: 0; color: var(--slate); font-weight: 700; }

/* ===================================================================
   PIPELINE
   =================================================================== */
.pipeline { background: radial-gradient(900px 460px at 82% -12%, rgba(68,88,122,0.45), transparent 55%), linear-gradient(180deg, #223247, var(--navy)); color: var(--canvas); }
.pipeline__intro { font-size: 1.08rem; color: rgba(243,245,244,.72); max-width: 56ch; margin-bottom: 50px; }
.rail { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.node { position: relative; background: rgba(255,255,255,.045); border: 1px solid rgba(255,255,255,.10); border-radius: var(--radius-sm); padding: 20px 18px; display: flex; flex-direction: column; gap: 6px; transition: transform .28s var(--ease), border-color .28s var(--ease), background .28s var(--ease); }
.node:hover { transform: translateY(-4px); border-color: rgba(255,255,255,.22); background: rgba(255,255,255,.07); }
.node__icon { width: 38px; height: 38px; border-radius: 10px; background: rgba(255,255,255,.08); color: #C9D6E8; display: inline-flex; align-items: center; justify-content: center; font-size: 1.1rem; margin-bottom: 4px; }
.node__step { font-size: .75rem; letter-spacing: .12em; text-transform: uppercase; color: rgba(243,245,244,.48); }
.node__title { font-family: var(--font-head); font-weight: 700; font-size: 1.12rem; color: var(--canvas); letter-spacing: -.01em; }
.node__desc { font-size: .85rem; color: rgba(243,245,244,.66); }
.node--end { border-color: rgba(194,168,120,.5); }
.node--end .node__icon { background: rgba(194,168,120,.18); color: var(--champagne); }

/* ---------- Au quotidien (bénéfices) ---------- */
.benefit { display: flex; gap: 18px; padding: 26px 0; border-top: 1px solid var(--line); }
.benefit__icon { flex: none; width: 46px; height: 46px; border-radius: 12px; background: var(--slate-bg); color: var(--slate); display: inline-flex; align-items: center; justify-content: center; font-size: 1.25rem; }
.benefit h3 { font-size: 1.2rem; margin-bottom: 7px; font-weight: 700; letter-spacing: -.01em; }
.benefit p { color: var(--muted); }

/* ---------- Assistant ---------- */
.assistant__inner { display: grid; grid-template-columns: 1.2fr 1fr; gap: 56px; align-items: center; }
.pill { display: inline-block; font-size: .75rem; letter-spacing: .06em; padding: 3px 10px; border: 1px solid var(--line); color: var(--muted); border-radius: 999px; margin-left: 8px; vertical-align: middle; font-weight: 600; text-transform: none; }
.checklist { margin: 28px 0; display: grid; gap: 14px; }
.checklist li { position: relative; padding-left: 34px; color: var(--ink-soft); }
.checklist li::before { content: "✓"; position: absolute; left: 0; top: 1px; width: 22px; height: 22px; border-radius: 50%; background: var(--navy); color: #fff; font-size: .78rem; font-weight: 700; display: flex; align-items: center; justify-content: center; }
.assistant__vote { color: var(--muted); font-style: italic; }

.assistant__chat { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 18px; box-shadow: var(--shadow); display: flex; flex-direction: column; gap: 9px; }
.chat__head { display: flex; align-items: center; gap: 12px; padding-bottom: 14px; border-bottom: 1px solid var(--line-2); margin-bottom: 4px; }
.chat__head strong { display: block; font-size: .92rem; font-family: var(--font-head); }
.chat__head small { color: var(--paid); font-size: .76rem; }
.assistant__avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--navy); display: inline-flex; align-items: center; justify-content: center; flex: none; }
.assistant__avatar span { font-family: var(--font-head); font-weight: 700; font-size: 1.02rem; color: var(--canvas); }
.assistant__avatar .slash { color: var(--champagne); margin: 0 1px; }
.bubble { max-width: 88%; padding: 10px 14px; border-radius: 14px; font-size: .9rem; line-height: 1.5; }
.bubble--in { align-self: flex-start; background: var(--canvas); border: 1px solid var(--line-2); border-bottom-left-radius: 4px; color: var(--ink-soft); }
.bubble--out { align-self: flex-end; background: var(--navy); color: var(--canvas); border-bottom-right-radius: 4px; }

/* ---------- Cercle Fondateur ---------- */
.founder { background: radial-gradient(820px 420px at 85% -5%, rgba(68,88,122,0.5), transparent 55%), linear-gradient(180deg, #223247, var(--navy)); color: var(--canvas); }
.founder__intro { font-size: 1.08rem; color: rgba(243,245,244,0.76); max-width: 56ch; margin-bottom: 44px; }
.founder__card { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.12); border-radius: var(--radius); padding: clamp(28px, 5vw, 46px); max-width: 560px; backdrop-filter: blur(4px); }
.founder__badge { display: inline-block; font-size: .74rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--navy); background: var(--champagne); padding: 6px 16px; border-radius: 999px; margin-bottom: 24px; }
.founder__price { display: flex; align-items: baseline; gap: 12px; margin-bottom: 28px; }
.founder__amount { font-family: var(--font-head); font-weight: 800; font-size: 3.2rem; color: #fff; letter-spacing: -.03em; }
.founder__unit { color: rgba(243,245,244,0.7); font-size: .95rem; }
.founder__list { display: grid; gap: 13px; margin-bottom: 30px; }
.founder__list li { position: relative; padding-left: 28px; color: rgba(243,245,244,0.9); }
.founder__list li::before { content: "—"; position: absolute; left: 0; color: var(--champagne); font-weight: 700; }
.founder__list strong { color: #fff; font-weight: 700; }
.founder .btn--primary { background: #fff; color: var(--navy); }
.founder .btn--primary:hover { background: var(--canvas); }
/* P2-08 — carte fondatrice recentrée : plus d'espace vide massif à droite.
   Bloc « une offre » focalisé et équilibré ; contenu de la carte aligné à gauche pour la lecture. */
.founder .container { display: flex; flex-direction: column; align-items: center; text-align: center; }
.founder .eyebrow--light { justify-content: center; }
.founder__intro { margin-left: auto; margin-right: auto; }
.founder__card { margin-left: auto; margin-right: auto; text-align: left; width: 100%; }
.founder__after { margin-top: 22px; font-size: .88rem; color: rgba(243,245,244,0.62); text-align: center; max-width: 46ch; margin-left: auto; margin-right: auto; }
.founder__then { margin: -14px 0 24px; font-size: 1.02rem; color: rgba(243,245,244,0.9); }
.founder__then strong { color: #fff; font-weight: 700; }
.founder__reassure { margin: 22px 0 26px; max-width: 52ch; font-size: .95rem; color: rgba(243,245,244,0.72); }

/* ===================================================================
   TARIFS
   =================================================================== */
.pricing__head { max-width: 760px; margin-bottom: 48px; }
.pricing__head .section__intro { margin-bottom: 14px; }
.pricing__ttc { font-size: .86rem; color: var(--muted-2); }
.pricing__access { margin-top: 12px; font-size: .9rem; line-height: 1.5; color: var(--muted); max-width: 56ch; }

/* Cartes à hauteur égale sur desktop : tops alignés, CTA sur la même ligne */
.price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; align-items: stretch; }

.price-card { position: relative; display: flex; flex-direction: column; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 32px 28px; transition: transform .28s var(--ease), box-shadow .28s var(--ease), border-color .28s var(--ease); }
.price-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.price-card__name { font-family: var(--font-head); font-size: 1.22rem; font-weight: 800; letter-spacing: -.01em; margin-bottom: 14px; }
.price-card__price { display: flex; align-items: baseline; flex-wrap: wrap; gap: 6px; margin-bottom: 14px; }
.price-card__from { width: 100%; margin-bottom: -2px; font-size: .82rem; font-weight: 600; color: var(--muted); }
.price-card__amount { font-family: var(--font-head); font-weight: 800; font-size: 2.4rem; line-height: 1; letter-spacing: -.03em; color: var(--ink); }
.price-card__period { font-size: .92rem; color: var(--muted); }
.price-card__setup { display: inline-block; margin-bottom: 16px; padding: 5px 13px; font-size: .82rem; color: var(--ink-soft); background: var(--stone); border-radius: 999px; }
.price-card__for { padding-bottom: 22px; border-bottom: 1px solid var(--line-2); font-size: .95rem; color: var(--muted); }
.price-card__promise { margin: 22px 0 18px; font-family: var(--font-head); font-weight: 600; font-size: 1.04rem; line-height: 1.4; color: var(--ink-soft); }
.price-card__list { display: grid; gap: 11px; margin-bottom: 26px; }
.price-card__list li { position: relative; padding-left: 26px; font-size: .92rem; line-height: 1.5; color: var(--ink-soft); }
.price-card__list li::before { content: "✓"; position: absolute; left: 0; top: 1px; color: var(--slate); font-weight: 700; }
.price-card__list strong { color: var(--ink); font-weight: 700; }
.price-card__foot { margin-top: auto; }
/* Sélecteur d'offres : masqué hors mobile (le mobile l'active via .tabs-on) */
.price-tabs { display: none; }
.price-card__meta { margin-bottom: 18px; font-size: .84rem; color: var(--muted); }
.price-card .btn--block { justify-content: center; }

/* Pro : choix mis en avant discrètement (bordure ardoise + élévation douce) */
.price-card--featured { border-color: var(--slate); box-shadow: var(--shadow-soft); }
.price-card__badge {
  position: absolute; top: 0; left: 50%; transform: translate(-50%, -50%);
  padding: 5px 14px; font-family: var(--font-head); font-weight: 700;
  font-size: .72rem; letter-spacing: .01em; white-space: nowrap;
  color: var(--ink); background: #F5EEDF;
  border: 1px solid rgba(194,168,120,0.55); border-radius: 999px;
  box-shadow: var(--shadow-soft);
}

/* Signature : carte claire premium, accent champagne discret (jamais un bloc navy opaque) */
.price-card--signature { background: linear-gradient(180deg, #FBF7F0, var(--surface)); border-color: rgba(30,36,43,0.22); }
.price-card--signature .price-card__setup { background: rgba(194,168,120,0.18); color: #8A6D3B; }
.price-card--signature .price-card__list li::before { color: var(--champagne); }

.pricing__legal { margin-top: 36px; max-width: 760px; font-size: .84rem; line-height: 1.6; color: var(--muted-2); }

/* ---------- FAQ ---------- */
.faq { display: grid; gap: 12px; }
.faq__item { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-sm); overflow: hidden; transition: box-shadow .25s var(--ease); }
.faq__item[open] { box-shadow: var(--shadow-soft); }
.faq__item summary { list-style: none; cursor: pointer; padding: 20px 24px; font-family: var(--font-head); font-weight: 600; font-size: 1.02rem; color: var(--ink); display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after { content: "+"; font-family: var(--font-head); font-weight: 500; font-size: 1.5rem; color: var(--slate); transition: transform .3s var(--ease); line-height: 1; }
.faq__item[open] summary::after { transform: rotate(45deg); }
.faq__answer { padding: 0 24px 22px; }
.faq__answer p { color: var(--muted); }

/* ---------- CTA final ---------- */
.cta-final { padding: clamp(68px, 10vw, 124px) 0 clamp(44px, 7vw, 96px); text-align: center; background: radial-gradient(700px 380px at 50% 120%, rgba(68,88,122,0.10), transparent 60%), var(--canvas-2); border-top: 1px solid var(--line); }
.cta-final__inner { max-width: 660px; margin: 0 auto; }
.cta-final__title { font-size: clamp(1.8rem, 4.2vw, 2.8rem); margin-bottom: 16px; font-weight: 800; }
.cta-final__lead { font-size: 1.1rem; color: var(--muted); margin-bottom: 32px; }
.cta-form { display: flex; gap: 12px; max-width: 480px; margin: 0 auto; }
.cta-form input { flex: 1; padding: 14px 18px; border: 1px solid var(--line); border-radius: 12px; font-family: var(--font-body); font-size: 1rem; background: var(--surface); color: var(--ink); transition: border-color .2s var(--ease), box-shadow .2s var(--ease); }
.cta-form input:focus { outline: none; border-color: var(--slate); box-shadow: 0 0 0 4px rgba(68,88,122,0.14); }
.cta-form__hint { margin-top: 14px; font-size: .9rem; color: var(--muted); }
.cta-form__hint.is-success { color: var(--paid); font-weight: 600; }
.cta-form__hint.is-error { color: var(--late); font-weight: 600; }

/* ---------- Formulaire de qualification fondateur ---------- */
.qual-form { max-width: 620px; margin: 0 auto; text-align: left; }
.qual-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.qual-field { display: flex; flex-direction: column; gap: 6px; }
.qual-field--full { grid-column: 1 / -1; }
.qual-field label, .qual-needs legend { font-size: .82rem; font-weight: 600; color: var(--ink-soft); }
.qual-opt { font-weight: 400; color: var(--muted-2); }
.qual-field input, .qual-field select, .qual-field textarea {
  width: 100%; padding: 12px 14px; border: 1px solid var(--line); border-radius: 10px;
  font-family: var(--font-body); font-size: .95rem; background: var(--surface); color: var(--ink);
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease); }
.qual-field input:focus, .qual-field select:focus, .qual-field textarea:focus {
  outline: none; border-color: var(--slate); box-shadow: 0 0 0 4px rgba(68,88,122,0.14); }
.qual-field input.is-invalid, .qual-field select.is-invalid { border-color: var(--late); }
.qual-field textarea { resize: vertical; min-height: 74px; }
.qual-needs { border: 0; padding: 0; margin: 18px 0 4px; }
.qual-needs legend { margin-bottom: 10px; padding: 0; }
.qual-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.qual-chip { position: relative; display: inline-flex; }
.qual-chip input { position: absolute; inset: 0; opacity: 0; cursor: pointer; margin: 0; }
.qual-chip span { display: inline-block; padding: 8px 15px; border: 1px solid var(--line); border-radius: 999px;
  font-size: .88rem; color: var(--muted); background: var(--surface); transition: all .18s var(--ease); }
.qual-chip input:checked + span { border-color: var(--slate); background: var(--slate-bg); color: var(--navy); font-weight: 600; }
.qual-chip input:focus-visible + span { box-shadow: 0 0 0 4px rgba(68,88,122,0.14); }
.qual-form .btn--block { margin-top: 20px; }
@media (max-width: 620px) { .qual-grid { grid-template-columns: 1fr; } }

/* ---------- Bloc final fermé (Option D+) ---------- */
.btn--lg { padding: 16px 34px; font-size: 1.05rem; }
.cta-mail-link { color: var(--navy); font-weight: 600; text-decoration: underline; text-underline-offset: 2px; }
.cta-mail-link:hover { color: var(--slate); }

/* ---------- Modal / bottom sheet du formulaire fondateur ---------- */
.fmodal { position: fixed; inset: 0; z-index: 100; display: flex; align-items: center; justify-content: center; padding: 24px; }
.fmodal[hidden] { display: none; }
.fmodal__scrim { position: absolute; inset: 0; background: rgba(30,36,43,0.55); -webkit-backdrop-filter: blur(3px); backdrop-filter: blur(3px); animation: fmodalFade .2s var(--ease); }
.fmodal__panel { position: relative; z-index: 1; width: 100%; max-width: 680px; max-height: calc(100vh - 48px);
  background: var(--surface); border-radius: 20px; box-shadow: 0 24px 70px rgba(30,36,43,0.28);
  display: flex; flex-direction: column; animation: fmodalPop .24s var(--ease); }
.fmodal__close { position: absolute; top: 14px; right: 14px; z-index: 2; width: 40px; height: 40px;
  display: inline-flex; align-items: center; justify-content: center; border: 0; border-radius: 10px;
  background: var(--stone); color: var(--ink-soft); cursor: pointer; transition: background .18s var(--ease); }
.fmodal__close:hover { background: var(--line); }
.fmodal__close:focus-visible { outline: none; box-shadow: 0 0 0 4px rgba(68,88,122,0.18); }
.fmodal__body { flex: 1 1 auto; min-height: 0; padding: 34px 34px 34px; overflow-y: auto; -webkit-overflow-scrolling: touch; overscroll-behavior: contain; }
.fmodal__title { font-size: 1.5rem; font-weight: 800; padding-right: 40px; }
.fmodal__intro { margin: 8px 0 22px; color: var(--muted); font-size: .96rem; }
body.fmodal-open { overflow: hidden; }
@keyframes fmodalFade { from { opacity: 0; } }
@keyframes fmodalPop { from { opacity: 0; transform: translateY(12px) scale(.98); } }
@keyframes fmodalUp { from { transform: translateY(100%); } }
@media (max-width: 620px) {
  .fmodal { padding: 0; align-items: flex-end; }
  .fmodal__panel { max-width: 100%; max-height: 92vh; border-radius: 20px 20px 0 0; animation: fmodalUp .26s var(--ease); }
  .fmodal__body { padding: 30px 20px calc(24px + env(safe-area-inset-bottom)); }
}
@media (prefers-reduced-motion: reduce) {
  .fmodal__scrim, .fmodal__panel { animation: none; }
}

.cta-or { display: flex; align-items: center; gap: 14px; max-width: 360px; margin: 26px auto 22px; color: var(--muted-2); font-size: .82rem; }
.cta-or::before, .cta-or::after { content: ""; flex: 1; height: 1px; background: var(--line); }
.cta-talk { padding: 13px 24px; }
.cta-talk__hint { margin-top: 12px; font-size: .86rem; color: var(--muted); }

/* ---------- Footer ---------- */
.footer { background: var(--navy); color: rgba(243,245,244,0.7); padding: 54px 0 40px; border-top: 3px solid var(--champagne); }
.footer__inner { display: grid; grid-template-columns: 1.4fr 1fr; gap: 32px; align-items: start; }
.footer__brand p { margin-top: 12px; font-size: .92rem; max-width: 32ch; }
.footer__links { display: flex; flex-wrap: wrap; gap: 20px; justify-content: flex-end; }
.footer__links a { font-size: .92rem; transition: color .2s var(--ease); }
.footer__links a:hover { color: #fff; }
.footer__copy { grid-column: 1 / -1; border-top: 1px solid rgba(243,245,244,0.12); padding-top: 24px; font-size: .85rem; }

/* ===================================================================
   Menu mobile (hamburger) — masqué sur desktop
   =================================================================== */
.nav__toggle {
  display: none; width: 44px; height: 44px; padding: 0;
  border: 1px solid var(--line); border-radius: 10px; background: var(--surface);
  cursor: pointer; flex-direction: column; align-items: center; justify-content: center; gap: 4px;
}
.nav__toggle-bar { width: 19px; height: 2px; background: var(--ink); border-radius: 2px; transition: transform .25s var(--ease), opacity .2s var(--ease); }
.nav__toggle[aria-expanded="true"] .nav__toggle-bar:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] .nav__toggle-bar:nth-child(2) { opacity: 0; }
.nav__toggle[aria-expanded="true"] .nav__toggle-bar:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
.nav__cta-mobile { display: none; }

/* ===================================================================
   Cockpit mobile (composition dédiée) — masqué sur desktop/tablette
   =================================================================== */
.cockpit-m { display: none; }
.cockpit-m {
  background: var(--surface); border-radius: var(--radius); overflow: hidden;
  border: 1px solid rgba(39,55,77,.08); box-shadow: var(--shadow-cockpit);
}
.cockpit-m__bar { display: flex; align-items: center; justify-content: space-between; gap: 10px; padding: 13px 16px; background: var(--navy); }
.cockpit-m__hello { font-family: var(--font-head); font-weight: 700; font-size: .95rem; color: #fff; }
.cockpit-m__period { font-size: .7rem; color: rgba(243,245,244,.72); border: 1px solid rgba(255,255,255,.18); padding: 3px 10px; border-radius: 999px; white-space: nowrap; flex: none; }
.cockpit-m__hero { position: relative; padding: 18px 16px 20px; background: linear-gradient(180deg, #26384F, #223247); color: #fff; display: flex; flex-direction: column; gap: 3px; }
.cockpit-m__hero::after { content: ""; position: absolute; left: 16px; bottom: 12px; width: 46px; height: 2px; background: var(--champagne); border-radius: 2px; opacity: .85; }
.cockpit-m__label { font-size: .72rem; color: rgba(243,245,244,.64); }
.cockpit-m__value { font-family: var(--font-head); font-weight: 800; font-size: 2.15rem; line-height: 1.05; letter-spacing: -.02em; }
.cockpit-m__sub { font-size: .74rem; color: rgba(243,245,244,.74); }
.cockpit-m__sub strong { color: #E6B9AC; }
.cockpit-m__list { display: flex; flex-direction: column; }
.mtask { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 12px; padding: 13px 16px; min-height: 60px; border-top: 1px solid var(--line-2); }
.mtask:first-child { border-top: none; }
.mtask__tick { width: 9px; height: 9px; border-radius: 50%; background: var(--muted-2); flex: none; }
.mtask__tick[data-late] { background: var(--late); } .mtask__tick[data-pending] { background: var(--pending); }
.mtask__tick[data-paid] { background: var(--paid); } .mtask__tick[data-new] { background: var(--new); }
.mtask__body { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.mtask__title { font-size: .9rem; font-weight: 600; color: var(--ink); }
.mtask__meta { font-size: .76rem; color: var(--muted); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.mtask__action { font-size: .8rem; font-weight: 700; color: #fff; background: var(--navy); border-radius: 9px; padding: 0 14px; min-height: 38px; display: inline-flex; align-items: center; white-space: nowrap; }
.mtask__action--ghost { background: var(--slate-bg); color: var(--navy); }

/* ===================================================================
   Responsive — breakpoints : 1440 / 1024 / 768 / 430 / 390 / 375
   Desktop = construire · Tablette = consulter · Mobile = agir
   =================================================================== */

/* ---- Desktop large (≥1440) : on évite d'étirer les contenus ---- */
@media (min-width: 1441px) {
  .hero__lead, .section__intro, .pipeline__intro, .founder__intro { max-width: 60ch; }
}

/* ---- Tablette + en dessous (≤1023) : cockpit à plat, héro 1 colonne ---- */
@media (max-width: 1023px) {
  .hero__inner { grid-template-columns: 1fr; gap: 40px; max-width: 760px; margin: 0 auto; }
  .cockpit { transform: none; }
  .cockpit:hover { transform: none; }
  /* moins de panneaux ouverts simultanément : on empile les deux colonnes */
  .cockpit__cols { grid-template-columns: 1fr; }
  .grid--3 { grid-template-columns: repeat(2, 1fr); }

  /* tarifs : cartes empilées et centrées dès la tablette */
  .price-grid { grid-template-columns: 1fr; max-width: 560px; margin: 0 auto; }

  /* parcours = rail horizontal tactile scrollable + indicateur discret */
  .rail {
    display: flex; grid-template-columns: none;
    overflow-x: auto; gap: 14px;
    padding-bottom: 14px; scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin; scrollbar-color: rgba(255,255,255,.35) transparent;
  }
  .rail::-webkit-scrollbar { height: 6px; }
  .rail::-webkit-scrollbar-thumb { background: rgba(255,255,255,.28); border-radius: 999px; }
  .rail::-webkit-scrollbar-track { background: rgba(255,255,255,.06); border-radius: 999px; }
  .node { flex: 0 0 230px; scroll-snap-align: start; }
}

/* ---- Navigation : bascule en menu mobile (≤920) ---- */
@media (max-width: 920px) {
  .nav__cta { display: none; }
  .nav__toggle { display: inline-flex; }
  .nav__inner { position: relative; }

  .nav__links {
    position: absolute; top: calc(100% + 1px); left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 4px;
    background: var(--canvas-2); border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-soft);
    padding: 12px 24px 18px;
    max-height: 0; overflow: hidden; opacity: 0; visibility: hidden;
    transform: translateY(-6px); transition: opacity .22s var(--ease), transform .22s var(--ease), max-height .28s var(--ease), visibility .22s var(--ease);
  }
  .nav__links.is-open { max-height: 80vh; opacity: 1; visibility: visible; transform: translateY(0); }
  .nav__links a { display: flex; align-items: center; min-height: 48px; font-size: 1rem; color: var(--ink); padding: 0 4px; border-bottom: 1px solid var(--line-2); }
  .nav__links a:last-child { border-bottom: none; }
  .nav__cta-mobile { display: flex; justify-content: center; margin-top: 10px; min-height: 48px; }

  .assistant__inner { grid-template-columns: 1fr; gap: 40px; }
  .assistant__visual { order: -1; }
  .footer__inner { grid-template-columns: 1fr; }
  .footer__links { justify-content: flex-start; }
}

/* ---- Mobile (<768) : composition dédiée, une colonne, pouce-friendly ---- */
@media (max-width: 767px) {
  body { font-size: 16px; }
  .container { padding: 0 20px; }

  /* cockpit : on masque la version desktop, on montre la version mobile */
  .cockpit { display: none; }
  .cockpit-m { display: block; }

  .grid--3, .grid--2 { grid-template-columns: 1fr; }
  /* CTA : pleine largeur et libellés qui reviennent à la ligne si besoin */
  .btn { white-space: normal; }
  .hero__cta { flex-direction: column; }
  .hero__cta .btn { width: 100%; }

  /* parcours : timeline verticale claire (pas de scroll horizontal) */
  .rail { display: grid; grid-template-columns: 1fr; overflow: visible; gap: 12px; padding-bottom: 0; }
  .node { flex: none; }

  /* bénéfices : icône au-dessus du texte, plus aéré */
  .benefit { gap: 14px; padding: 22px 0; }

  /* formulaire : champ + bouton empilés, confortables */
  .cta-form { flex-direction: column; }
  .cta-form input, .cta-form .btn { width: 100%; min-height: 52px; }
  .cta-talk { width: 100%; min-height: 52px; }

  .founder__card { padding: 26px 22px; }
  .founder__price { flex-direction: column; align-items: flex-start; gap: 4px; }

  /* tarifs : sélecteur compact + une seule carte affichée à la fois.
     La visibilité est pilotée par CSS (media query) : le desktop affiche
     toujours les 3 cartes, indépendamment de tout état JS mobile. */
  .pricing.tabs-on .price-tabs {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 4px;
    max-width: 560px; margin: 0 auto 22px; padding: 4px;
    background: var(--stone); border: 1px solid var(--line); border-radius: 999px;
  }
  .pricing.tabs-on .price-card { display: none; }
  .pricing.tabs-on .price-card.is-active { display: flex; }
  .price-tab {
    appearance: none; -webkit-appearance: none; cursor: pointer;
    border: none; background: transparent; min-height: 44px; padding: 0 6px;
    font-family: var(--font-head); font-weight: 700; font-size: .9rem; letter-spacing: -.01em;
    color: var(--muted); border-radius: 999px;
    transition: background .2s var(--ease), color .2s var(--ease), box-shadow .2s var(--ease);
  }
  .price-tab.is-active { background: var(--navy); color: #fff; box-shadow: var(--shadow-soft); }
  .price-tab:focus-visible { outline: 2px solid var(--navy); outline-offset: 2px; }
}

/* ---- Grands iPhone (≤430) ---- */
@media (max-width: 430px) {
  .hero__title { font-size: clamp(1.85rem, 8.4vw, 2.3rem); }
  .cockpit-m__value { font-size: 2rem; }
}

/* ---- iPhone standard (≤390) ---- */
@media (max-width: 390px) {
  .container { padding: 0 16px; }
  .section__title { font-size: clamp(1.55rem, 7.6vw, 1.95rem); }
  .cockpit-m__value { font-size: 1.9rem; }
  .mtask { gap: 10px; padding: 12px 14px; }
  .mtask__action { padding: 0 12px; }
}

/* ---- Petit iPhone (≤375) ---- */
@media (max-width: 375px) {
  .hero__title { font-size: clamp(1.7rem, 8vw, 2.05rem); }
  .founder__amount { font-size: 2.7rem; }
  .cockpit-m__hero { padding: 16px 14px 18px; }
  .cockpit-m__bar { padding: 12px 14px; }
  .cockpit-m__period { font-size: .66rem; }
}

/* ---------- Reveal ---------- */
@media (prefers-reduced-motion: no-preference) {
  .reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
  .reveal.is-visible { opacity: 1; transform: none; }
}

/* ===================================================================
   Mini-démo cockpit (héro) — une demande arrive, est qualifiée,
   l'action se prépare, l'activité avance jusqu'au paiement.
   État replié par défaut (visible une fois la classe .is-in posée).
   =================================================================== */
.demo-row, .demo-task, .demo-mtask { overflow: hidden; }
.demo-row:not(.is-in),
.demo-task:not(.is-in),
.demo-mtask:not(.is-in) {
  max-height: 0; opacity: 0;
  padding-top: 0; padding-bottom: 0;
  border-top-color: transparent;
}
.demo-row.is-in  { max-height: 60px; }
.demo-task.is-in { max-height: 64px; }
.demo-mtask.is-in { max-height: 96px; }

@media (prefers-reduced-motion: no-preference) {
  .demo-row, .demo-task, .demo-mtask {
    transition: max-height .55s var(--ease), opacity .5s var(--ease),
                padding-top .55s var(--ease), padding-bottom .55s var(--ease);
  }
  .demo-flash { animation: demoFlash 1.7s var(--ease); }
  .kpi__value.is-bumped, .panel__count.is-bumped { animation: demoBump 1.1s var(--ease); }
  @keyframes demoFlash { 0% { background: var(--new-bg); } 18% { background: var(--new-bg); } 100% { background: transparent; } }
  @keyframes demoBump  { from { color: var(--new); } to { color: var(--ink); } }
}

/* Contrôle « Rejouer la démo » — apparaît une fois la séquence terminée */
.cockpit__replay {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--font-body); font-size: .72rem; font-weight: 600;
  color: rgba(243,245,244,.82); background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.18); border-radius: 999px;
  padding: 3px 11px; cursor: pointer; white-space: nowrap;
  transition: background .2s var(--ease), color .2s var(--ease), opacity .3s var(--ease);
}
.cockpit__replay:hover { background: rgba(255,255,255,.20); color: #fff; }
.cockpit__replay:focus-visible { outline: 2px solid rgba(255,255,255,.9); outline-offset: 2px; }
.cockpit__replay[hidden] { display: none; }
.cockpit__replay-ic { font-size: .9rem; line-height: 1; }

.cockpit-m__foot { display: flex; justify-content: center; padding: 12px 16px 14px; border-top: 1px solid var(--line-2); }
.cockpit-m__foot .cockpit__replay {
  color: var(--navy); background: var(--slate-bg); border-color: var(--line); font-size: .82rem; padding: 7px 16px; min-height: 38px;
}
.cockpit-m__foot .cockpit__replay:hover { background: var(--stone); color: var(--navy); }
.cockpit-m__foot .cockpit__replay:focus-visible { outline: 2px solid var(--navy); outline-offset: 2px; }

/* Ancres : atterrir sous le header sticky */
[id] { scroll-margin-top: 88px; }


/* ============ Alignement des cartes d'offres (3 colonnes, ≥1024px) ============
   Même hauteur, zones partagées (subgrid) : titres, prix (ligne de base commune),
   descriptions, promesses, listes et CTA strictement alignés. Contenu inchangé. */
@media (min-width: 1024px) {
  @supports (grid-template-rows: subgrid) {
    .price-grid { grid-template-rows: auto auto auto auto auto 1fr auto; }
    .price-card { display: grid; grid-template-rows: subgrid; grid-row: span 7; align-content: start; }
    .price-card__top { display: contents; }
    .price-card__name { grid-row: 1; margin-bottom: 0; }
    .price-card__price { grid-row: 2; align-self: end; margin: 12px 0 0; }
    .price-card__setup { grid-row: 3; justify-self: start; align-self: start; margin: 12px 0 0; }
    .price-card__for { grid-row: 4; margin-top: 14px; }
    .price-card__promise { grid-row: 5; margin: 20px 0 0; }
    .price-card__list { grid-row: 6; align-content: start; margin: 18px 0 24px; }
    .price-card__foot { grid-row: 7; margin-top: 0; display: flex; flex-direction: column; }
    .price-card__foot .price-card__meta { margin-bottom: 14px; }
    .price-card__foot .btn { margin-top: auto; }
  }
}

/* ============ Modal contact — choix du canal ============ */
.fmodal__panel--sm { max-width: 480px; }
.contact-list { display: grid; gap: 10px; margin-top: 14px; }
.contact-opt {
  display: flex; align-items: center; gap: 13px; width: 100%; min-height: 56px;
  padding: 11px 15px; border: 1px solid var(--line); border-radius: 12px;
  background: var(--surface); cursor: pointer; text-align: left; font: inherit;
  color: var(--ink); text-decoration: none;
  transition: border-color .2s var(--ease), background .2s var(--ease), transform .2s var(--ease);
}
.contact-opt[hidden] { display: none; }
.contact-opt:hover { border-color: var(--slate); background: var(--stone); }
.contact-opt:focus-visible { outline: 2px solid var(--navy); outline-offset: 2px; }
.contact-opt b { display: block; font-size: .95rem; font-weight: 700; }
.contact-opt small { display: block; color: var(--muted); font-size: .8rem; margin-top: 1px; }
.contact-opt .co-ic { width: 36px; height: 36px; border-radius: 10px; background: var(--stone); color: var(--slate); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-opt.is-copied { border-color: var(--paid); }
.contact-opt.is-copied b { color: var(--paid); }

/* ============ Formulaire — mode Signature ============ */
.qual-signature { margin-top: 16px; padding-top: 16px; border-top: 1px solid var(--line-2); }
.qual-sig-note { margin-bottom: 12px; font-size: .88rem; font-weight: 600; color: var(--ink-soft); }
