
/* =========================================================================
   LOOKAHEAD — Feuille de style globale
   Palette claire, minimaliste, accent #4B49EC, esprit "journal / brouillon".
   ========================================================================= */

:root {
  --bg: #ffffff;
  --soft: #fafafb;
  --ink: #0a0a0a;
  --body: #44464f;
  --body2: #5a5c66;
  --muted: #8a8c96;
  --muted2: #a0a2ac;
  --line: #ececf1;
  --line2: #f2f2f5;
  --accent: #4b49ec;
  --accent-2: #6361f0;
  --accent-soft: rgba(75, 73, 236, 0.06);
  --accent-soft2: rgba(75, 73, 236, 0.12);
  --lilac: #a9a8f5;
  --dark: #0a0a0a;
  --green: #16a34a;
  --radius: 24px;
  --radius-lg: 32px;
  --shadow-card: 0 24px 60px -20px rgba(75, 73, 236, 0.22);
  --sans: "Plus Jakarta Sans", system-ui, -apple-system, sans-serif;
  --serif: "Instrument Serif", Georgia, serif;
  --maxw: 1152px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
::selection { background: rgba(75, 73, 236, 0.18); }

/* ---------- Layout ---------- */
.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.section { padding: 96px 0; }
.bg-soft { background: var(--soft); }
.bg-dark { background: var(--dark); }
.maxw-2 { max-width: 640px; }
.maxw-3 { max-width: 760px; }
.center { text-align: center; }

/* ---------- Typographie ---------- */
h1, h2, h3, h4 { letter-spacing: -0.02em; font-weight: 800; line-height: 1.08; color: var(--ink); }
.h1 { font-size: clamp(2.5rem, 5.2vw, 4rem); line-height: 1.05; }
.h2 { font-size: clamp(2rem, 4vw, 3rem); line-height: 1.1; }
.h3 { font-size: 1.25rem; font-weight: 700; }
.lead { font-size: clamp(1.05rem, 1.6vw, 1.25rem); color: var(--body2); line-height: 1.7; }
p { color: var(--body); }

/* Mot mis en avant : MÊME taille (un poil plus grande) que le titre, pas plus petit */
.accent {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  color: var(--accent);
  font-size: 1.06em;       /* agrandi pour compenser la x-height du serif */
  line-height: 0.9;
  letter-spacing: 0;
  display: inline-block;
  vertical-align: baseline;
}
.accent--light { color: var(--lilac); }

.eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
}
.eyebrow--light { color: var(--lilac); }

/* ---------- Éléments "stylo / journal" ---------- */
/* Soulignement tracé à la main */
.pen-underline { position: relative; display: inline-block; }
.pen-underline svg { position: absolute; left: -2%; bottom: -0.32em; width: 104%; height: 0.5em; pointer-events: none; overflow: visible; }
.pen-underline path { stroke: var(--accent); stroke-width: 3; fill: none; stroke-linecap: round; }

/* Cercle dessiné au stylo autour d'un mot */
.pen-circle { position: relative; display: inline-block; padding: 0 0.12em; }
.pen-circle svg { position: absolute; left: -10%; top: -28%; width: 120%; height: 156%; pointer-events: none; overflow: visible; }
.pen-circle path { stroke: var(--accent); stroke-width: 2.5; fill: none; stroke-linecap: round; }

/* Surligneur */
.mark { background: linear-gradient(180deg, transparent 56%, rgba(75, 73, 236, 0.20) 56%); padding: 0 0.12em; }

/* Rature (mot barré au stylo) */
.rature { position: relative; display: inline-block; color: var(--muted); }
.rature svg { position: absolute; left: -4%; top: 42%; width: 108%; height: 0.6em; pointer-events: none; overflow: visible; }
.rature path { stroke: var(--accent); stroke-width: 2.5; fill: none; stroke-linecap: round; }

/* ---------- Boutons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  border-radius: 999px; font-weight: 600; font-size: 0.95rem;
  padding: 14px 26px; transition: background .2s ease, transform .2s ease, border-color .2s ease, box-shadow .2s ease;
  will-change: transform;
}
.btn svg { width: 18px; height: 18px; }
.btn--dark { background: var(--ink); color: #fff; }
.btn--dark:hover { background: #222; transform: translateY(-1px); }
.btn--primary { background: var(--accent); color: #fff; }
.btn--primary:hover { background: var(--accent-2); transform: translateY(-1px); box-shadow: 0 16px 40px -12px rgba(75,73,236,.45); }
.btn--outline { background: #fff; color: var(--ink); border: 1px solid var(--line); }
.btn--outline:hover { border-color: rgba(75,73,236,.4); transform: translateY(-1px); }
.btn--ghost { background: rgba(255,255,255,.1); color: #fff; border: 1px solid rgba(255,255,255,.15); }
.btn--ghost:hover { background: rgba(255,255,255,.16); }

/* ---------- Navigation ---------- */
.nav {
  position: fixed; top: 12px; left: 50%; transform: translateX(-50%);
  width: calc(100% - 24px); max-width: var(--maxw); z-index: 50;
}
.nav__inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 20px; border-radius: 20px;
  background: rgba(255,255,255,.6); border: 1px solid var(--line);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  transition: background .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.nav.is-scrolled .nav__inner { background: rgba(255,255,255,.88); box-shadow: 0 8px 30px -12px rgba(10,10,10,.12); }
.nav__logo { font-size: 1.25rem; font-weight: 800; letter-spacing: -.02em; }
.nav__logo span { color: var(--accent); }
.nav__links { display: flex; align-items: center; gap: 28px; list-style: none; }
.nav__links a { font-size: .9rem; font-weight: 500; color: var(--body); transition: color .2s; }
.nav__links a:hover { color: var(--accent); }
.nav__actions { display: flex; align-items: center; gap: 8px; }
.nav__burger { width: 40px; height: 40px; border: 1px solid var(--line); border-radius: 12px; display: none; align-items: center; justify-content: center; }
.nav__burger svg { width: 20px; height: 20px; }
.nav__mobile { display: none; margin-top: 8px; background: #fff; border: 1px solid var(--line); border-radius: 20px; padding: 14px; box-shadow: 0 20px 40px -16px rgba(10,10,10,.15); }
.nav__mobile.is-open { display: block; }
.nav__mobile a { display: block; padding: 11px 12px; border-radius: 12px; font-size: .95rem; font-weight: 500; color: var(--body); }
.nav__mobile a:hover { background: var(--soft); }
.nav__mobile .btn { width: 100%; margin-top: 6px; }

/* ---------- Hero ---------- */
.hero { position: relative; padding: 150px 0 96px; overflow: hidden; }
.hero__glow { position: absolute; inset: 0; z-index: -2; background: radial-gradient(60% 50% at 50% 0%, rgba(75,73,236,.10) 0%, transparent 70%); }
.hero__dots { position: absolute; inset: 0; z-index: -1; opacity: .5;
  background-image: radial-gradient(circle at 1px 1px, rgba(10,10,10,.05) 1px, transparent 0); background-size: 26px 26px;
  -webkit-mask-image: radial-gradient(70% 60% at 50% 0%, #000, transparent); mask-image: radial-gradient(70% 60% at 50% 0%, #000, transparent); }
.hero .badge {
  display: inline-flex; align-items: center; gap: 8px; background: #fff; border: 1px solid var(--line);
  border-radius: 999px; padding: 7px 16px; font-size: .9rem; font-weight: 500; color: var(--body);
  box-shadow: 0 2px 8px rgba(10,10,10,.04);
}
.hero .badge .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--accent); }
.hero h1 { margin-top: 28px; }
.hero__sub { margin: 24px auto 0; max-width: 640px; }
.hero__actions { margin-top: 36px; display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.hero__trust { margin-top: 48px; display: flex; flex-wrap: wrap; gap: 12px 32px; justify-content: center; font-size: .9rem; color: var(--muted); }
.hero__trust span { display: inline-flex; align-items: center; gap: 8px; }
.hero__trust svg { width: 16px; height: 16px; color: var(--accent); }

/* ---------- Cartes génériques ---------- */
.card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; height: 100%; }
.card--hover { transition: border-color .3s ease, box-shadow .3s ease, transform .3s ease; }
.card--hover:hover { border-color: rgba(75,73,236,.3); box-shadow: 0 20px 50px -24px rgba(75,73,236,.3); transform: translateY(-2px); }
.icon-box { width: 48px; height: 48px; border-radius: 16px; background: var(--accent-soft); display: flex; align-items: center; justify-content: center; margin-bottom: 20px; }
.icon-box svg { width: 22px; height: 22px; color: var(--accent); }

.grid { display: grid; gap: 24px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-services { grid-template-columns: repeat(3, 1fr); gap: 20px; }
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }

/* ---------- Avant / Après ---------- */
.ba-card { padding: 28px; border-radius: var(--radius); height: 100%; }
.ba-card--before { background: #fff; border: 1px solid var(--line); }
.ba-card--after { background: var(--dark); }
.ba-head { display: flex; align-items: center; gap: 8px; font-weight: 600; margin-bottom: 20px; }
.ba-card--before .ba-head { color: #b4453c; }
.ba-card--after .ba-head { color: var(--lilac); }
.ba-head svg { width: 20px; height: 20px; }
.ba-list { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.ba-list li { display: flex; align-items: center; gap: 12px; font-size: .95rem; }
.ba-card--before li { color: var(--body); }
.ba-card--after li { color: rgba(255,255,255,.85); }
.ba-bullet { width: 20px; height: 20px; border-radius: 50%; flex-shrink: 0; }
.ba-card--before .ba-bullet { border: 2px solid #e4b5b0; }
.ba-check { width: 20px; height: 20px; border-radius: 50%; background: var(--accent); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.ba-check svg { width: 11px; height: 11px; }
.ba-card--after li .txt { text-decoration: line-through; text-decoration-color: rgba(75,73,236,.6); text-decoration-thickness: 2px; }
.ba-foot { margin-top: 24px; font-size: .875rem; }
.ba-card--before .ba-foot { color: var(--muted); }
.ba-card--after .ba-foot { color: rgba(255,255,255,.55); }

/* ---------- Timeline diagnostic ---------- */
.timeline { position: relative; max-width: 760px; margin: 0 auto; }
.timeline__track { position: absolute; left: 24px; top: 8px; bottom: 8px; width: 2px; background: var(--line); }
.timeline__fill { position: absolute; left: 24px; top: 8px; width: 2px; background: var(--accent); transform-origin: top; transform: scaleY(0); transition: transform .1s linear; height: calc(100% - 16px); }
.step { position: relative; padding-left: 64px; padding-bottom: 44px; }
.step:last-child { padding-bottom: 0; }
.step__node { position: absolute; left: 0; top: 0; width: 50px; height: 50px; border-radius: 16px; background: #fff; border: 1px solid var(--line); box-shadow: 0 2px 8px rgba(10,10,10,.05); display: flex; align-items: center; justify-content: center; z-index: 2; }
.step__node svg { width: 20px; height: 20px; color: var(--accent); }
.step__tag { font-size: .75rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; color: var(--accent); }
.step__title { font-size: clamp(1.25rem, 2.2vw, 1.5rem); font-weight: 800; margin-top: 8px; }
.step__body { margin-top: 8px; max-width: 560px; color: var(--body2); font-size: .95rem; }
.chip { display: inline-flex; align-items: center; gap: 8px; margin-top: 16px; border-radius: 999px; background: var(--accent-soft); border: 1px solid rgba(75,73,236,.15); padding: 7px 14px; font-size: .9rem; font-weight: 600; color: var(--accent); }

/* ---------- Section service (voicebot / chatbot / automatisation) ---------- */
.feature-list { margin-top: 32px; display: flex; flex-direction: column; gap: 20px; }
.feature-item { display: flex; gap: 16px; }
.feature-item .fi-ic { width: 40px; height: 40px; border-radius: 12px; background: var(--accent-soft); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.feature-item .fi-ic svg { width: 18px; height: 18px; color: var(--accent); }
.feature-item h4, .feature-item .feat__t { font-size: 1rem; font-weight: 700; }
.feature-item p { font-size: .95rem; color: var(--body2); margin-top: 2px; }
.bullets { margin-top: 32px; list-style: none; display: flex; flex-direction: column; gap: 12px; }
.bullets li { display: flex; gap: 12px; align-items: flex-start; font-size: 1rem; color: var(--body); }
.bullets .b-check { width: 20px; height: 20px; border-radius: 50%; background: var(--accent-soft2); display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 2px; }
.bullets .b-check svg { width: 11px; height: 11px; color: var(--accent); }

/* ---------- Démo VOICE ---------- */
.voice { width: 100%; max-width: 560px; margin: 0 auto; }
.voice__tabs { display: flex; gap: 8px; justify-content: center; margin-bottom: 24px; }
.voice__tab { padding: 9px 16px; border-radius: 999px; font-size: .9rem; font-weight: 600; background: #fff; color: var(--body); border: 1px solid var(--line); transition: .2s; }
.voice__tab.is-active { background: var(--accent); color: #fff; border-color: var(--accent); }
.voice__card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: 0 24px 60px -20px rgba(75,73,236,.25); overflow: hidden; }
.voice__header { display: flex; align-items: center; justify-content: space-between; padding: 16px 24px; border-bottom: 1px solid var(--line2); background: var(--soft); }
.voice__id { display: flex; align-items: center; gap: 12px; }
.voice__avatar { width: 40px; height: 40px; border-radius: 50%; background: rgba(75,73,236,.1); display: flex; align-items: center; justify-content: center; }
.voice__avatar svg { width: 20px; height: 20px; color: var(--accent); }
.voice__name { font-size: .9rem; font-weight: 600; }
.voice__meta { font-size: .8rem; color: var(--muted); }
.voice__status { display: inline-flex; align-items: center; gap: 6px; font-size: .8rem; font-weight: 500; color: var(--green); }
.voice__status .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--green); animation: blink 1.6s infinite; }
/* Hauteur FIXE -> aucun décalage du reste de la page */
.voice__convo { height: 320px; overflow: hidden; padding: 24px; display: flex; flex-direction: column; gap: 16px; justify-content: flex-end; }
.turn { display: flex; }
.turn.ia { justify-content: flex-start; }
.turn.client { justify-content: flex-end; }
.turn__wrap { max-width: 85%; }
.turn__who { font-size: .68rem; font-weight: 600; text-transform: uppercase; letter-spacing: .06em; margin-bottom: 6px; }
.turn.ia .turn__who { color: var(--accent); }
.turn.client .turn__who { color: var(--muted); }
.bubble { border-radius: 18px; padding: 12px 16px; font-size: .95rem; line-height: 1.5; }
.turn.ia .bubble { background: var(--accent-soft); color: var(--ink); border-top-left-radius: 6px; }
.turn.client .bubble { background: #f4f4f6; color: var(--ink); border-top-right-radius: 6px; }
.bubble .word { color: transparent; transition: color .15s ease; }
.bubble .word.spoken { color: var(--ink); }
.turn.ia .bubble .word.speaking { color: var(--accent); font-weight: 600; }
.turn.client .bubble .word.speaking { color: var(--ink); font-weight: 600; }
.voice__foot { display: flex; align-items: center; gap: 12px; padding: 16px 24px; border-top: 1px solid var(--line2); background: var(--soft); }
.voice__foot > svg { width: 16px; height: 16px; color: var(--accent); flex-shrink: 0; }
.wave { display: flex; align-items: flex-end; gap: 3px; height: 20px; flex: 1; }
.wave span { flex: 1; border-radius: 999px; background: rgba(75,73,236,.4); height: 20%; transition: height .18s ease; }
.voice__speaking { font-size: .8rem; color: var(--muted); white-space: nowrap; }

/* ---------- Démo CHAT ---------- */
.chat { width: 100%; max-width: 420px; margin: 0 auto; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: 0 24px 60px -20px rgba(75,73,236,.22); overflow: hidden; }
.chat__header { display: flex; align-items: center; gap: 12px; padding: 16px 20px; border-bottom: 1px solid var(--line2); background: var(--soft); }
.chat__avatar { width: 36px; height: 36px; border-radius: 50%; background: var(--accent); color: #fff; font-weight: 700; display: flex; align-items: center; justify-content: center; }
.chat__name { font-size: .9rem; font-weight: 600; }
.chat__meta { font-size: .8rem; color: var(--green); }
/* Hauteur FIXE -> nouveaux messages apparaissent, anciens disparaissent vers le haut, page stable */
.chat__body { height: 360px; overflow: hidden; padding: 20px; display: flex; flex-direction: column; gap: 12px; justify-content: flex-end; }
.cmsg { display: flex; opacity: 0; transform: translateY(8px); transition: opacity .3s ease, transform .3s ease; }
.cmsg.show { opacity: 1; transform: none; }
.cmsg.bot { justify-content: flex-start; }
.cmsg.user { justify-content: flex-end; }
.cmsg .b { max-width: 80%; border-radius: 18px; padding: 10px 15px; font-size: .92rem; line-height: 1.45; }
.cmsg.bot .b { background: var(--accent-soft); color: var(--ink); border-top-left-radius: 6px; }
.cmsg.user .b { background: var(--ink); color: #fff; border-top-right-radius: 6px; }
.typing { display: flex; gap: 4px; padding: 12px 16px; background: var(--accent-soft); border-radius: 18px; border-top-left-radius: 6px; width: fit-content; }
.typing span { width: 6px; height: 6px; border-radius: 50%; background: rgba(75,73,236,.6); animation: bounce 1s infinite; }
.typing span:nth-child(2) { animation-delay: .15s; }
.typing span:nth-child(3) { animation-delay: .3s; }

/* ---------- Démo AUTOMATION ---------- */
.auto { width: 100%; max-width: 420px; margin: 0 auto; }
.auto__rows { position: relative; padding-left: 2px; display: flex; flex-direction: column; gap: 12px; }
.auto__line { position: absolute; left: 27px; top: 26px; bottom: 26px; width: 2px; background: var(--line); }
.auto__row { position: relative; display: flex; align-items: center; gap: 16px; }
.auto__node { position: relative; z-index: 2; width: 52px; height: 52px; border-radius: 16px; display: flex; align-items: center; justify-content: center; border: 1px solid var(--line); background: #fff; transition: .3s; }
.auto__node svg { width: 20px; height: 20px; color: #c9cad2; transition: color .3s; }
.auto__card { flex: 1; border-radius: 16px; border: 1px solid var(--line); background: var(--soft); padding: 12px 16px; transition: .3s; }
.auto__card .t { font-size: .9rem; font-weight: 600; color: #a0a2ac; transition: color .3s; }
.auto__card .s { font-size: .78rem; color: #c0c2cb; transition: color .3s; }
.auto__row.on .auto__node { background: var(--accent); border-color: var(--accent); box-shadow: 0 8px 24px -6px rgba(75,73,236,.5); }
.auto__row.on .auto__node svg { color: #fff; }
.auto__row.on .auto__card { background: #fff; border-color: rgba(75,73,236,.3); box-shadow: 0 2px 8px rgba(10,10,10,.04); }
.auto__row.on .auto__card .t { color: var(--ink); }
.auto__row.on .auto__card .s { color: var(--body2); }
.auto__note { margin-top: 20px; text-align: center; font-size: .9rem; color: var(--muted); }
.auto__note b { color: var(--accent); }

/* ---------- Pourquoi nous (dark) ---------- */
.why-card { background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.1); border-radius: var(--radius); padding: 28px; height: 100%; }
.why-card .num { font-family: var(--serif); font-style: italic; font-size: 1.6rem; color: var(--accent); margin-bottom: 16px; }
.why-card h3 { color: #fff; font-size: 1.25rem; margin-bottom: 12px; }
.why-card p { color: rgba(255,255,255,.65); font-size: .95rem; }
.eyebrow--light { color: var(--lilac); }

/* ---------- Résultats ---------- */
.stat-card { background: var(--soft); border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; height: 100%; }
.stat-card .big { font-size: 2.25rem; font-weight: 800; color: var(--accent); letter-spacing: -.02em; }
.stat-card .lab { margin-top: 8px; font-size: .95rem; font-weight: 600; }
.stat-card .pf { margin-top: 8px; font-size: .875rem; color: var(--muted); }
.cases { border: 1px solid var(--line); border-radius: var(--radius); display: grid; grid-template-columns: repeat(3, 1fr); overflow: hidden; }
.cases > div { padding: 28px; }
.cases > div + div { border-left: 1px solid var(--line); }
.cases .n { font-size: 1.5rem; font-weight: 800; }
.cases .l { font-size: .875rem; font-weight: 500; color: var(--accent); margin-top: 4px; }
.cases .s { font-size: .875rem; color: var(--body2); margin-top: 12px; }

/* ---------- Tarifs ---------- */
.ai-cost { margin-top: 32px; display: flex; gap: 12px; align-items: flex-start; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 20px; }
.ai-cost svg { width: 20px; height: 20px; color: var(--accent); flex-shrink: 0; margin-top: 2px; }
.ai-cost p { font-size: .95rem; color: var(--body); }
.ai-cost strong { color: var(--ink); }
.tiers { margin-top: 48px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: start; }
.tier { position: relative; border-radius: var(--radius-lg); padding: 28px; display: flex; flex-direction: column; background: #fff; border: 1px solid var(--line); }
.tier--featured { background: var(--ink); color: #fff; box-shadow: 0 30px 70px -25px rgba(75,73,236,.55); transform: translateY(-12px); }
.tier__badge { position: absolute; top: -12px; left: 28px; background: var(--accent); color: #fff; font-size: .75rem; font-weight: 800; padding: 4px 12px; border-radius: 999px; }
.tier__name { font-size: .9rem; font-weight: 600; color: var(--accent); }
.tier--featured .tier__name { color: var(--lilac); }
.tier__tag { font-size: .95rem; color: var(--body2); margin-top: 4px; }
.tier--featured .tier__tag { color: rgba(255,255,255,.7); }
.tier__price { font-size: 1.875rem; font-weight: 800; margin-top: 20px; letter-spacing: -.02em; }
.tier--featured .tier__price { color: #fff; }
.tier__setup { font-size: .875rem; color: var(--muted); margin-top: 4px; }
.tier--featured .tier__setup { color: rgba(255,255,255,.55); }
.tier__list { list-style: none; margin: 24px 0; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.tier__list li { display: flex; gap: 10px; align-items: flex-start; font-size: .92rem; color: var(--body); }
.tier--featured .tier__list li { color: rgba(255,255,255,.85); }
.tier__list svg { width: 16px; height: 16px; color: var(--accent); flex-shrink: 0; margin-top: 2px; }
.tier--featured .tier__list svg { color: var(--lilac); }
.tier .btn { width: 100%; }
.custom { margin-top: 24px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 36px; display: flex; gap: 24px; align-items: center; justify-content: space-between; flex-wrap: wrap; }
.custom__txt { max-width: 640px; }
.custom h3 { font-size: 1.5rem; margin-top: 4px; }
.custom p { font-size: .95rem; color: var(--body2); margin-top: 12px; }

/* ---------- Tableau comparatif ---------- */
.compare-wrap { margin-top: 56px; overflow-x: auto; }
.compare { width: 100%; min-width: 680px; border-collapse: collapse; }
.compare th { text-align: center; padding-bottom: 16px; font-size: .9rem; font-weight: 800; color: var(--ink); }
.compare th.lab { text-align: left; color: var(--muted); width: 40%; }
.compare th.feat { color: var(--accent); }
.compare .sec td { padding: 24px 0 8px; font-size: .75rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; color: var(--accent); }
.compare td { padding: 12px 0; border-top: 1px solid var(--line2); font-size: .92rem; color: var(--body); }
.compare td.c { text-align: center; }
.compare td.featcol { background: rgba(75,73,236,.03); }
.compare svg { width: 16px; height: 16px; }
.compare .yes { color: var(--accent); }
.compare .no { color: #c9cad2; }

/* ---------- Message intuition ---------- */
.intuition { margin-top: 80px; max-width: 640px; margin-left: auto; margin-right: auto; text-align: center; }
.intuition .lead-serif { font-family: var(--serif); font-size: clamp(1.25rem, 2.4vw, 1.6rem); line-height: 1.4; color: var(--ink); }
.intuition p { margin-top: 20px; font-size: 1rem; color: var(--body2); }

/* ---------- Lettre fondateur ---------- */
.letter { max-width: 660px; margin: 0 auto; }
.letter__body { margin-top: 32px; display: flex; flex-direction: column; gap: 20px; }
.letter__body p { font-size: 1.06rem; line-height: 1.85; color: #3a3c44; }
.letter__sign { margin-top: 32px; display: flex; align-items: center; gap: 16px; }
.letter__sign .a { width: 48px; height: 48px; border-radius: 50%; background: rgba(75,73,236,.1); color: var(--accent); font-weight: 700; display: flex; align-items: center; justify-content: center; }
.letter__sign .n { font-weight: 600; }
.letter__sign .r { font-size: .875rem; color: var(--muted); }

/* ---------- Témoignages (marquee fluide) ---------- */
.testi__cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; height: 520px; overflow: hidden;
  -webkit-mask-image: linear-gradient(to bottom, transparent, #000 12%, #000 88%, transparent);
  mask-image: linear-gradient(to bottom, transparent, #000 12%, #000 88%, transparent); }
.testi__col { position: relative; }
.testi__track { display: flex; flex-direction: column; gap: 16px; animation: scrollY linear infinite; will-change: transform; }
.testi__col:hover .testi__track { animation-play-state: paused; }
.testi-card { background: #fff; border: 1px solid var(--line); border-radius: 18px; padding: 24px; }
.testi-card .q { width: 20px; height: 20px; color: rgba(75,73,236,.4); margin-bottom: 12px; }
.testi-card p { font-size: .95rem; color: #3a3c44; }
.testi-card .who { margin-top: 16px; display: flex; align-items: center; gap: 12px; }
.testi-card .av { width: 36px; height: 36px; border-radius: 50%; background: rgba(75,73,236,.1); color: var(--accent); font-weight: 700; display: flex; align-items: center; justify-content: center; font-size: .9rem; }
.testi-card .nm { font-size: .875rem; font-weight: 600; }
.testi-card .rl { font-size: .78rem; color: var(--muted); }
.stars { display: flex; gap: 4px; margin-bottom: 12px; }
.stars svg { width: 16px; height: 16px; color: var(--accent); fill: var(--accent); }

/* ---------- CTA finale ---------- */
.cta-box { position: relative; border-radius: var(--radius-lg); background: var(--ink); padding: 56px 40px; text-align: center; overflow: hidden; }
.cta-box__glow { position: absolute; inset: 0; background: radial-gradient(70% 80% at 50% 0%, rgba(75,73,236,.25) 0%, transparent 70%); }
.cta-box > * { position: relative; }
.cta-box h2 { color: #fff; }
.cta-box p { margin: 20px auto 0; max-width: 520px; color: rgba(255,255,255,.65); font-size: 1.05rem; }
.cta-box__actions { margin-top: 32px; display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.cta-box .fine { margin-top: 20px; font-size: .875rem; color: rgba(255,255,255,.4); }

/* ---------- Footer ---------- */
.footer { background: #fff; border-top: 1px solid var(--line); padding: 56px 0; }
.footer__grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer__brand .logo { font-size: 1.25rem; font-weight: 800; }
.footer__brand .logo span { color: var(--accent); }
.footer__brand p { margin-top: 12px; font-size: .875rem; color: var(--muted); max-width: 280px; }
.footer__social { display: flex; gap: 12px; margin-top: 20px; }
.footer__social a { width: 36px; height: 36px; border-radius: 50%; border: 1px solid var(--line); display: flex; align-items: center; justify-content: center; transition: border-color .2s; }
.footer__social a:hover { border-color: rgba(75,73,236,.4); }
.footer__social svg { width: 16px; height: 16px; color: var(--muted); }
.footer__col h5, .footer__col .footer__h { font-size: .75rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; color: var(--muted2); margin-bottom: 16px; }
.footer__col a { display: block; font-size: .875rem; color: var(--body2); margin-bottom: 10px; transition: color .2s; }
.footer__col a:hover { color: var(--accent); }
.footer__bottom { display: flex; justify-content: space-between; align-items: center; gap: 12px; padding-top: 32px; border-top: 1px solid var(--line); font-size: .85rem; color: var(--muted2); flex-wrap: wrap; }
.footer__legal { display: flex; gap: 20px; flex-wrap: wrap; }
.footer__legal a:hover { color: var(--accent); }

/* ---------- Animations d'apparition ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .6s cubic-bezier(.16,1,.3,1), transform .6s cubic-bezier(.16,1,.3,1); will-change: opacity, transform; }
.reveal.is-visible { opacity: 1; transform: none; }
.fade { opacity: 0; transform: translateY(24px); transition: opacity .55s cubic-bezier(.16,1,.3,1), transform .55s cubic-bezier(.16,1,.3,1); will-change: opacity, transform; }
.fade.is-in { opacity: 1; transform: none; }

@keyframes blink { 0%,100% { opacity: 1; } 50% { opacity: .4; } }
@keyframes bounce { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-4px); } }
@keyframes scrollY { from { transform: translateY(0); } to { transform: translateY(-50%); } }

/* ---------- Pages légales ---------- */
.legal-hero { padding: 130px 0 32px; }
.legal-back { display: inline-flex; align-items: center; gap: 8px; font-size: .9rem; font-weight: 600; color: var(--accent); margin-bottom: 24px; }
.legal-back svg { width: 16px; height: 16px; }
.legal { max-width: 820px; margin: 0 auto; padding-bottom: 96px; }
.legal h1 { font-size: clamp(2rem, 4vw, 3rem); }
.legal .updated { color: var(--muted); margin-top: 12px; font-size: .95rem; }
.legal h2 { font-size: 1.4rem; margin-top: 40px; margin-bottom: 12px; }
.legal h3 { font-size: 1.1rem; font-weight: 700; margin-top: 24px; margin-bottom: 8px; }
.legal p { color: var(--body); margin-bottom: 14px; line-height: 1.8; }
.legal strong { color: var(--ink); }
.legal a { color: var(--accent); text-decoration: underline; }

/* ---------- Page réservation ---------- */
.booking { padding: 130px 0 96px; }
.booking__frame { max-width: 760px; margin: 24px auto 0; border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; background: #fff; box-shadow: var(--shadow-card); }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .nav__links { display: none; }
  .nav__burger { display: flex; }
  .nav__actions .btn--dark { display: none; }
  .grid-3, .grid-services, .tiers, .cases { grid-template-columns: 1fr; }
  .grid-2, .split { grid-template-columns: 1fr; gap: 32px; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .tier--featured { transform: none; }
  .testi__cols { grid-template-columns: 1fr; }
  .testi__col:nth-child(2), .testi__col:nth-child(3) { display: none; }
  .split .order-1 { order: 1; }
  .split .order-2 { order: 2; }
}
@media (max-width: 560px) {
  .section { padding: 72px 0; }
  .footer__grid { grid-template-columns: 1fr; }
  .cta-box { padding: 40px 24px; }
  .custom { padding: 28px; }
}

/* ---------- Accessibilité : mouvement réduit ---------- */
@media (prefers-reduced-motion: reduce) {
  * { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
  .reveal, .fade { opacity: 1 !important; transform: none !important; }
  .testi__track { animation: none !important; }
}


/* ---------- FAQ (accordéon natif, sans JS) ---------- */
.faq { max-width: 860px; margin-inline: auto; }
.faq__item {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  margin-bottom: 12px;
  overflow: hidden;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.faq__item[open] { border-color: var(--accent); box-shadow: 0 12px 32px -18px rgba(75,73,236,.35); }
.faq__q {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 22px 26px; cursor: pointer; list-style: none; user-select: none;
}
.faq__q::-webkit-details-marker { display: none; }
.faq__q::marker { content: ""; }
.faq__q h3 { font-size: 17px; font-weight: 600; line-height: 1.45; margin: 0; color: var(--ink); }
.faq__item:hover .faq__q h3 { color: var(--accent); }
.faq__ico { position: relative; flex: 0 0 20px; height: 20px; }
.faq__ico::before, .faq__ico::after {
  content: ""; position: absolute; inset: 0; margin: auto;
  background: var(--accent); border-radius: 2px; transition: transform .25s ease, opacity .25s ease;
}
.faq__ico::before { width: 14px; height: 2px; }
.faq__ico::after  { width: 2px; height: 14px; }
.faq__item[open] .faq__ico::after { transform: rotate(90deg); opacity: 0; }
.faq__a { padding: 0 26px 24px; }
.faq__a p { color: var(--body); line-height: 1.75; margin: 0; font-size: 15.5px; }
@media (max-width: 640px) {
  .faq__q { padding: 18px 20px; }
  .faq__q h3 { font-size: 16px; }
  .faq__a { padding: 0 20px 20px; }
}
