/* Vitrine gonigest.com — d'après la maquette « GoniGest Landing v2 »
   Palette : émeraude signature sur neutres chauds (voir écran 1c de la maquette). */

:root {
  --brand-600: #0B8A5C;
  --brand-700: #0B6B48;
  --brand-300: #8FCDB2;
  --brand-100: #CBE5D8;
  --brand-50: #EAF4EF;
  --ink-950: #0F2019;
  --ink-900: #17251F;
  --sand-50: #F7F6F2;
  --sand-100: #F2F1EB;
  --sand-200: #E7E4DB;
  --sand-300: #D8D4C8;
  --gold-400: #F2B735;
  --txt: #3D4A44;
  --txt-soft: #4A574F;
  --txt-muted: #6B7A72;
  --txt-faint: #9AA69F;
  --font-display: "Bricolage Grotesque", sans-serif;
  --font-sans: "Instrument Sans", sans-serif;
  --font-mono: "JetBrains Mono", monospace;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--sand-50);
  color: var(--ink-900);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip; /* le téléphone du hero dépasse volontairement du cadre */
}
a { color: inherit; text-decoration: none; }
h1, h2, h3 { font-family: var(--font-display); letter-spacing: -0.02em; }
.wrap { max-width: 1312px; margin: 0 auto; padding: 0 64px; }

/* ---------- Boutons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 13px 24px; border-radius: 12px; border: none; cursor: pointer;
  font-family: var(--font-sans); font-size: 16px; font-weight: 700;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
}
.btn-primary { background: var(--brand-600); color: #fff; box-shadow: 0 10px 24px rgba(11,138,92,.32); }
.btn-primary:hover { background: var(--brand-700); transform: translateY(-1px); }
.btn-ghost { background: transparent; color: var(--ink-900); border: 1px solid var(--sand-300); font-weight: 600; }
.btn-ghost:hover { background: #fff; }
.btn-ghost-dark { background: transparent; color: var(--sand-50); border: 1px solid rgba(255,255,255,.25); font-weight: 600; }
.btn-ghost-dark:hover { background: rgba(255,255,255,.08); }

/* ---------- Navigation ---------- */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(247,246,242,.92); backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--sand-200);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 76px; }
.logo { display: flex; align-items: center; gap: 11px; }
.logo-mark {
  width: 34px; height: 34px; border-radius: 10px; background: var(--brand-600);
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-family: var(--font-display); font-weight: 800; font-size: 19px;
}
.logo-name { font-family: var(--font-display); font-weight: 700; font-size: 21px; letter-spacing: -0.02em; }
.nav-links { display: flex; align-items: center; gap: 36px; font-size: 15.5px; font-weight: 500; color: var(--txt); }
.nav-links a:hover { color: var(--brand-700); }
.nav-actions { display: flex; align-items: center; gap: 12px; }
.nav-actions .btn { padding: 10px 20px; font-size: 15px; }
.burger {
  display: none; width: 40px; height: 40px; border: 1px solid var(--sand-300); border-radius: 10px;
  background: #fff; cursor: pointer; flex-direction: column; align-items: center; justify-content: center; gap: 4px;
}
.burger span { width: 16px; height: 2px; background: var(--ink-900); border-radius: 2px; }
.mobile-menu {
  display: none; position: absolute; top: 100%; left: 0; right: 0;
  background: #fff; border-bottom: 1px solid var(--sand-200);
  box-shadow: 0 24px 40px rgba(15,30,24,.14); padding: 8px 20px 20px 20px;
}
.mobile-menu.open { display: block; }
.mobile-menu a.mm-link { display: block; padding: 15px 4px; border-bottom: 1px solid #F1EFE8; font-size: 16.5px; font-weight: 600; }
.mobile-menu .mm-ctas { display: flex; flex-direction: column; gap: 10px; margin-top: 14px; }

/* ---------- Hero ---------- */
.hero { background: linear-gradient(180deg, var(--sand-50) 0%, #EFF4EF 100%); }
.hero-inner { display: flex; gap: 64px; align-items: center; padding-top: 72px; padding-bottom: 88px; }
.hero-copy { flex: 0 0 520px; }
.pill {
  display: inline-flex; align-items: center; gap: 8px; padding: 7px 14px; border-radius: 999px;
  background: var(--brand-50); border: 1px solid var(--brand-100); color: var(--brand-700);
  font-size: 14px; font-weight: 600;
}
.hero h1 { font-weight: 800; font-size: 54px; line-height: 1.06; letter-spacing: -0.025em; margin: 22px 0 0 0; text-wrap: balance; }
.hero-sub { font-size: 19px; line-height: 1.55; color: var(--txt-soft); margin: 20px 0 0 0; max-width: 520px; }
.hero-cta { margin-top: 32px; }
.hero-cta .btn { padding: 16px 28px; font-size: 17px; }
.hero-reassure { display: flex; align-items: center; gap: 8px; margin-top: 14px; color: var(--txt-muted); font-size: 14.5px; }
.check-dot {
  width: 16px; height: 16px; flex: 0 0 auto; border-radius: 999px; background: var(--brand-50);
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--brand-600); font-size: 11px; font-weight: 700;
}

/* Visuel produit du hero (navigateur + téléphone) */
.hero-visual { flex: 1; position: relative; min-width: 0; }
.browser-bar {
  background: var(--ink-950); border-radius: 16px 16px 0 0; padding: 10px 16px;
  display: flex; gap: 7px; align-items: center;
}
.browser-bar i { width: 10px; height: 10px; border-radius: 99px; background: var(--txt); }
.browser-url { margin-left: 12px; font-family: var(--font-mono); font-size: 11.5px; color: #8FA69B; }
.browser-body {
  display: flex; background: #fff; border: 1px solid #E1DED4; border-top: none;
  border-radius: 0 0 16px 16px; overflow: hidden; box-shadow: 0 30px 60px rgba(15,30,24,.16);
}
.mock-side { flex: 0 0 148px; background: var(--ink-950); padding: 18px 14px; display: flex; flex-direction: column; gap: 6px; }
.mock-side .ms-logo { color: #fff; font-family: var(--font-display); font-weight: 700; font-size: 14px; margin-bottom: 10px; }
.mock-side .ms-item { color: #8FA69B; font-size: 12px; padding: 7px 10px; }
.mock-side .ms-item.on { background: var(--brand-600); color: #fff; font-weight: 600; border-radius: 8px; }
.mock-main { flex: 1; padding: 20px; background: #FAFAF7; }
.mock-hello { font-weight: 700; font-size: 15px; margin-bottom: 14px; }
.mock-kpis { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 10px; }
.kpi { background: #fff; border: 1px solid #ECE9E0; border-radius: 12px; padding: 12px 14px; }
.kpi .k-label { font-size: 11px; color: var(--txt-muted); }
.kpi .k-value { font-family: var(--font-display); font-weight: 700; font-size: 18px; margin-top: 4px; }
.kpi .k-value.bad { color: #B4380D; }
.mock-chart { background: #fff; border: 1px solid #ECE9E0; border-radius: 12px; padding: 14px; margin-top: 10px; }
.mock-chart .c-title { font-size: 12px; font-weight: 600; color: var(--txt); margin-bottom: 10px; }
.bars { display: flex; align-items: flex-end; gap: 8px; height: 74px; }
.bars i { flex: 1; border-radius: 4px 4px 0 0; background: var(--brand-100); }
.bars i.b2 { background: var(--brand-300); }
.bars i.b3 { background: var(--brand-600); }
.hero-phone {
  position: absolute; right: -14px; bottom: -34px; width: 158px;
  background: var(--ink-950); border-radius: 22px; padding: 8px;
  box-shadow: 0 24px 44px rgba(15,30,24,.3);
}
.hero-phone .hp-in { background: var(--sand-50); border-radius: 16px; padding: 12px 10px; }
.hero-phone .hp-title { font-size: 10px; font-weight: 700; margin-bottom: 8px; }
.hero-phone .hp-card { background: #fff; border: 1px solid #ECE9E0; border-radius: 8px; padding: 8px; }
.hero-phone .hp-label { font-size: 8.5px; color: var(--txt-muted); }
.hero-phone .hp-value { font-family: var(--font-display); font-weight: 700; font-size: 13px; }
.hero-phone .hp-btns { display: flex; gap: 5px; margin-top: 7px; }
.hero-phone .hp-btns i {
  flex: 1; font-style: normal; font-size: 8.5px; font-weight: 600; text-align: center;
  padding: 6px 0; border-radius: 6px; background: var(--brand-50); color: var(--brand-700);
}
.hero-phone .hp-btns i.on { background: var(--brand-600); color: #fff; }

/* ---------- Bande de confiance ---------- */
.trust {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px;
  background: var(--sand-200); border-top: 1px solid var(--sand-200); border-bottom: 1px solid var(--sand-200);
}
.trust-item { background: var(--sand-100); padding: 22px 28px; display: flex; align-items: center; gap: 14px; }
.trust-item .t-glyph {
  width: 38px; height: 38px; flex: 0 0 auto; border-radius: 10px; background: var(--brand-50);
  color: var(--brand-700); display: flex; align-items: center; justify-content: center;
  font-family: var(--font-mono); font-size: 12px; font-weight: 500;
}
.trust-item .t-text { font-size: 14.5px; font-weight: 600; color: var(--txt); line-height: 1.35; }

/* ---------- Sections ---------- */
.section-head { text-align: center; max-width: 680px; margin: 0 auto 24px auto; }
.eyebrow {
  display: inline-flex; padding: 6px 14px; border-radius: 999px; background: var(--brand-50);
  color: var(--brand-700); font-size: 13.5px; font-weight: 600; letter-spacing: .04em; text-transform: uppercase;
}
.section-head h2 { font-weight: 800; font-size: 42px; line-height: 1.1; margin: 16px 0 0 0; }
.section-head p { font-size: 17.5px; color: var(--txt-soft); line-height: 1.55; margin: 14px 0 0 0; }

/* ---------- Fonctionnalités ---------- */
.features { padding: 88px 0 32px 0; }
.feature { display: flex; gap: 80px; align-items: center; padding: 52px 0; border-top: 1px solid var(--sand-200); }
.feature.reverse { flex-direction: row-reverse; }
.feature-copy { flex: 1; min-width: 0; }
.f-meta { display: flex; align-items: center; gap: 10px; }
.f-num { font-family: var(--font-mono); font-size: 13px; font-weight: 500; }
.f-tag { display: inline-flex; padding: 5px 13px; border-radius: 999px; font-size: 13.5px; font-weight: 700; }
.feature h3 { font-weight: 700; font-size: 30px; letter-spacing: -0.015em; line-height: 1.15; margin: 16px 0 18px 0; text-wrap: balance; }
.f-benefits { display: flex; flex-direction: column; gap: 12px; }
.f-benefit { display: flex; gap: 12px; align-items: flex-start; }
.f-benefit .fb-check {
  width: 20px; height: 20px; flex: 0 0 auto; margin-top: 2px; border-radius: 999px;
  display: flex; align-items: center; justify-content: center; font-size: 12px; font-weight: 700;
}
.f-benefit p { font-size: 16.5px; line-height: 1.5; color: var(--txt); margin: 0; }
.feature-shot { flex: 0 0 520px; min-width: 0; border-radius: 24px; padding: 28px 28px 16px 28px; }
.shot-card {
  background: #fff; border: 1px solid rgba(15,30,24,.06); border-radius: 16px;
  overflow: hidden; box-shadow: 0 14px 34px rgba(15,30,24,.12);
}
.shot-head { display: flex; align-items: center; gap: 7px; padding: 12px 16px; background: #FAFAF7; border-bottom: 1px solid #ECE9E0; }
.shot-head i { width: 8px; height: 8px; border-radius: 99px; background: #DAD6CA; }
.shot-head b { font-size: 13px; font-weight: 700; color: var(--txt); margin-left: 8px; }
.shot-row { display: flex; align-items: center; gap: 14px; padding: 14px 18px; border-bottom: 1px solid #F1EFE8; }
.shot-row:last-child { border-bottom: none; }
.shot-row .sr-label { flex: 1; font-size: 14.5px; font-weight: 600; color: var(--ink-900); }
.shot-row .sr-value { font-family: var(--font-mono); font-size: 13.5px; color: var(--txt); }
.chip { display: inline-flex; padding: 4px 10px; border-radius: 999px; font-size: 12px; font-weight: 700; }
.chip.ok { background: var(--brand-50); color: var(--brand-700); }
.chip.warn { background: #FBF3DC; color: #A16207; }
.chip.bad { background: #FCEBE4; color: #B4380D; }
.shot-cap { font-family: var(--font-mono); font-size: 11.5px; margin-top: 12px; text-align: center; }

/* ---------- Pensé pour l'Afrique ---------- */
.africa { padding: 80px 0; background: var(--sand-100); border-top: 1px solid var(--sand-200); }
.africa-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 44px; }
.africa-card { background: #fff; border: 1px solid var(--sand-200); border-radius: 16px; padding: 26px; }
.africa-card .a-glyph {
  display: inline-flex; padding: 8px 12px; border-radius: 10px; background: var(--ink-950);
  color: var(--brand-300); font-family: var(--font-mono); font-size: 13px; font-weight: 500;
}
.africa-card h3 { font-weight: 700; font-size: 19px; margin: 14px 0 0 0; }
.africa-card p { font-size: 15px; color: var(--txt-soft); line-height: 1.5; margin: 6px 0 0 0; }

/* ---------- Assistant IA ---------- */
.ia { padding: 88px 0; background: var(--ink-950); color: var(--sand-50); }
.ia-inner { display: flex; gap: 80px; align-items: center; }
.ia-phone-col { flex: 0 0 360px; display: flex; justify-content: center; }
.chat-phone { width: 330px; background: #050D0A; border-radius: 36px; padding: 10px; box-shadow: 0 40px 80px rgba(0,0,0,.45); }
.chat-in { background: var(--sand-50); border-radius: 28px; overflow: hidden; color: var(--ink-900); }
.chat-head { display: flex; align-items: center; gap: 10px; padding: 16px 16px 12px 16px; border-bottom: 1px solid #ECE9E0; background: #fff; }
.chat-avatar {
  width: 32px; height: 32px; border-radius: 999px; background: var(--brand-600); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 800; font-size: 15px;
}
.chat-head b { display: block; font-weight: 700; font-size: 14px; }
.chat-head .ch-status { font-size: 11px; color: var(--brand-600); font-weight: 600; }
.chat-body { padding: 14px 12px 16px 12px; display: flex; flex-direction: column; gap: 10px; background: var(--sand-50); }
.msg-user { align-self: flex-end; max-width: 82%; background: var(--brand-600); color: #fff; padding: 9px 13px; border-radius: 16px 16px 4px 16px; font-size: 13px; line-height: 1.4; }
.msg-bot { align-self: flex-start; max-width: 88%; background: #fff; border: 1px solid #ECE9E0; padding: 10px 13px; border-radius: 16px 16px 16px 4px; font-size: 13px; line-height: 1.5; }
.msg-bot .muted { color: var(--txt-muted); }
.msg-voice { align-self: flex-end; max-width: 82%; background: var(--brand-600); color: #fff; padding: 9px 13px; border-radius: 16px 16px 4px 16px; font-size: 13px; display: flex; align-items: center; gap: 8px; }
.msg-voice .play { width: 20px; height: 20px; border-radius: 99px; background: rgba(255,255,255,.22); display: flex; align-items: center; justify-content: center; font-size: 10px; }
.msg-voice .wave { display: flex; align-items: center; gap: 2px; }
.msg-voice .wave i { width: 3px; background: rgba(255,255,255,.8); border-radius: 2px; }
.msg-voice .dur { font-size: 11px; opacity: .85; }
.msg-caption { align-self: flex-end; font-size: 10.5px; color: var(--txt-faint); margin-top: -4px; }
.msg-devis { align-self: flex-start; max-width: 92%; background: #fff; border: 1px solid #ECE9E0; border-radius: 16px 16px 16px 4px; overflow: hidden; font-size: 13px; }
.msg-devis .md-intro { padding: 10px 13px 8px 13px; }
.msg-devis .md-card { margin: 0 10px 10px 10px; border: 1px solid #E1DED4; border-radius: 10px; overflow: hidden; }
.msg-devis .md-title { background: #FAFAF7; padding: 8px 12px; font-weight: 700; font-size: 12.5px; border-bottom: 1px solid #ECE9E0; }
.msg-devis .md-line { padding: 8px 12px; display: flex; justify-content: space-between; font-size: 12.5px; }
.msg-devis .md-line span:last-child { font-family: var(--font-mono); }
.msg-devis .md-total { padding: 8px 12px; display: flex; justify-content: space-between; font-weight: 700; font-size: 12.5px; border-top: 1px solid #ECE9E0; }
.msg-devis .md-actions { display: flex; gap: 8px; padding: 10px 12px; background: #FAFAF7; border-top: 1px solid #ECE9E0; }
.msg-devis .md-ok { flex: 1; background: var(--brand-600); color: #fff; text-align: center; padding: 8px 0; border-radius: 8px; font-weight: 700; font-size: 12.5px; }
.msg-devis .md-edit { flex: 1; border: 1px solid var(--sand-300); text-align: center; padding: 8px 0; border-radius: 8px; font-weight: 600; font-size: 12.5px; color: var(--txt); }
.ia-copy { flex: 1; min-width: 0; }
.eyebrow-dark {
  display: inline-flex; padding: 6px 14px; border-radius: 999px; background: rgba(11,138,92,.22);
  border: 1px solid rgba(143,205,178,.35); color: var(--brand-300);
  font-size: 13.5px; font-weight: 600; letter-spacing: .04em; text-transform: uppercase;
}
.ia-copy h2 { font-weight: 800; font-size: 42px; line-height: 1.1; margin: 18px 0 0 0; text-wrap: balance; }
.ia-copy > p { font-size: 17.5px; color: #B9C6BF; line-height: 1.6; margin: 16px 0 34px 0; max-width: 540px; }
.ia-points { display: flex; flex-direction: column; gap: 22px; }
.ia-point { display: flex; gap: 16px; align-items: flex-start; }
.ia-point .ip-glyph {
  width: 40px; height: 40px; flex: 0 0 auto; border-radius: 12px; background: rgba(11,138,92,.22);
  border: 1px solid rgba(143,205,178,.3); color: var(--brand-300);
  display: flex; align-items: center; justify-content: center; font-family: var(--font-mono); font-size: 13px;
}
.ia-point b { font-family: var(--font-display); font-weight: 700; font-size: 19px; display: block; }
.ia-point p { font-size: 15.5px; color: #B9C6BF; line-height: 1.5; margin: 4px 0 0 0; max-width: 480px; }
.ia-included {
  display: inline-flex; margin-top: 34px; padding: 9px 16px; border-radius: 10px;
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12);
  font-size: 14px; color: #B9C6BF;
}
.ia-included b { color: var(--sand-50); }

/* ---------- Comment ça marche ---------- */
.steps { padding: 88px 0; }
.steps h2 { font-weight: 800; font-size: 40px; text-align: center; margin: 0 0 48px 0; }
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.step-card { background: #fff; border: 1px solid var(--sand-200); border-radius: 16px; padding: 30px; }
.step-card .s-num { font-family: var(--font-display); font-weight: 800; font-size: 44px; color: var(--brand-100); }
.step-card h3 { font-weight: 700; font-size: 21px; margin: 8px 0 0 0; }
.step-card p { font-size: 15.5px; color: var(--txt-soft); line-height: 1.55; margin: 8px 0 0 0; }
.steps-cta { display: flex; justify-content: center; margin-top: 40px; }

/* ---------- Tarifs ---------- */
.pricing { padding: 88px 0; background: var(--sand-100); border-top: 1px solid var(--sand-200); }
.billing-toggle { display: flex; justify-content: center; margin: 36px 0 44px 0; }
.billing-toggle .bt-in { display: flex; background: #fff; border: 1px solid #E1DED4; border-radius: 999px; padding: 5px; gap: 4px; }
.billing-toggle button {
  border: none; cursor: pointer; padding: 10px 24px; border-radius: 999px;
  font-family: var(--font-sans); font-size: 15px; font-weight: 700;
  background: transparent; color: var(--txt); display: flex; align-items: center; gap: 8px;
}
.billing-toggle button.on { background: var(--brand-600); color: #fff; }
.bt-badge { padding: 3px 9px; border-radius: 999px; background: var(--gold-400); color: #5C420A; font-size: 11.5px; font-weight: 700; }
.plans { display: flex; gap: 20px; align-items: stretch; }
.plan {
  flex: 1; position: relative; background: #fff; color: var(--ink-900);
  border: 1px solid #E1DED4; border-radius: 20px; padding: 34px 30px;
  box-shadow: 0 12px 30px rgba(15,30,24,.07); display: flex; flex-direction: column;
}
.plan.hl {
  background: var(--ink-950); color: var(--sand-50); border: 2px solid var(--brand-600);
  transform: translateY(-14px); box-shadow: 0 28px 60px rgba(15,32,25,.35);
}
.plan-badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  padding: 6px 16px; border-radius: 999px; background: var(--gold-400); color: #5C420A;
  font-size: 12.5px; font-weight: 800; white-space: nowrap;
}
.plan h3 { font-weight: 700; font-size: 22px; margin: 0; }
.plan .p-desc { font-size: 14.5px; color: var(--txt-muted); margin-top: 4px; min-height: 40px; }
.plan.hl .p-desc { color: rgba(247,246,242,.6); }
.p-price-row { display: flex; align-items: baseline; gap: 8px; margin-top: 18px; }
.p-price { font-family: var(--font-display); font-weight: 800; font-size: 38px; letter-spacing: -0.02em; }
.p-per { font-size: 14px; color: var(--txt-muted); }
.plan.hl .p-per { color: rgba(247,246,242,.6); }
.p-sub { font-size: 13.5px; color: var(--txt-muted); margin-top: 4px; min-height: 18px; }
.plan.hl .p-sub { color: rgba(247,246,242,.6); }
.p-divider { height: 1px; background: #EDEBE3; margin: 20px 0; }
.plan.hl .p-divider { background: rgba(255,255,255,.12); }
.p-feats { display: flex; flex-direction: column; gap: 11px; flex: 1; }
.p-feat { display: flex; gap: 10px; align-items: flex-start; font-size: 15px; line-height: 1.4; }
.p-feat .mark { font-weight: 700; color: var(--brand-600); }
.p-feat span:last-child { color: var(--txt); }
.plan.hl .p-feat span:last-child { color: #DCE8E1; }
.p-feat.off .mark { color: #B9B5A8; }
.p-feat.off span:last-child { color: var(--txt-faint); }
.p-cta {
  display: block; margin-top: 26px; text-align: center; padding: 13px 0; border-radius: 12px;
  font-size: 15.5px; font-weight: 700; background: var(--brand-50); color: var(--brand-700);
}
.p-cta:hover { background: var(--brand-100); }
.plan.hl .p-cta { background: var(--brand-600); color: #fff; }
.plan.hl .p-cta:hover { background: var(--brand-700); }
.pricing-note { text-align: center; margin-top: 32px; font-size: 15px; color: var(--txt-soft); line-height: 1.7; }
.pricing-note .dim { color: var(--txt-muted); }

/* ---------- Témoignages (masqués tant qu'il n'y a pas de vrais clients) ---------- */
.temoins { padding: 88px 0; }
.temoins h2 { font-weight: 800; font-size: 40px; text-align: center; margin: 0 0 48px 0; }
.temoins-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.temoin-card { background: #fff; border: 1px solid var(--sand-200); border-radius: 16px; padding: 28px; display: flex; flex-direction: column; gap: 18px; }
.temoin-card .stars { color: var(--gold-400); font-size: 16px; letter-spacing: 2px; }
.temoin-card .quote { font-size: 16px; line-height: 1.6; color: var(--txt); flex: 1; }
.temoin-card .who { display: flex; align-items: center; gap: 12px; }
.temoin-card .who b { display: block; font-size: 15px; }
.temoin-card .who .role { font-size: 13.5px; color: var(--txt-muted); }

/* ---------- FAQ ---------- */
.faq { padding: 80px 0; background: var(--sand-100); border-top: 1px solid var(--sand-200); }
.faq h2 { font-weight: 800; font-size: 40px; text-align: center; margin: 0 0 44px 0; }
.faq-list { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 10px; }
.faq-item { background: #fff; border: 1px solid var(--sand-200); border-radius: 14px; overflow: hidden; }
.faq-q {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 19px 24px; background: none; border: none; cursor: pointer; text-align: left;
  font-family: var(--font-sans); font-size: 16.5px; font-weight: 700; color: var(--ink-900);
}
.faq-q .sym {
  width: 26px; height: 26px; flex: 0 0 auto; border-radius: 999px; background: var(--brand-50);
  color: var(--brand-700); display: flex; align-items: center; justify-content: center;
  font-size: 15px; font-weight: 700;
}
.faq-a { display: none; padding: 0 24px 20px 24px; font-size: 15.5px; line-height: 1.6; color: var(--txt-soft); }
.faq-item.open .faq-a { display: block; }

/* ---------- CTA final ---------- */
.final-cta { padding: 64px 0; }
.final-card {
  background: var(--ink-950); border-radius: 24px; padding: 72px 64px;
  text-align: center; position: relative; overflow: hidden;
}
.final-card::before {
  content: ""; position: absolute; top: -120px; right: -80px; width: 340px; height: 340px;
  border-radius: 999px; background: radial-gradient(circle, rgba(11,138,92,.35), transparent 70%);
}
.final-card h2 { font-weight: 800; font-size: 44px; color: var(--sand-50); margin: 0; position: relative; }
.final-card p { font-size: 17.5px; color: #B9C6BF; margin: 16px auto 36px auto; max-width: 520px; position: relative; }
.final-card .fc-btns { display: flex; justify-content: center; gap: 14px; position: relative; }
.final-card .btn { padding: 16px 28px; font-size: 17px; }

/* ---------- Formulaire de demande d'essai ---------- */
.trial { padding: 24px 0 96px 0; }
.trial-card {
  max-width: 620px; margin: 0 auto; background: #fff; border: 1px solid var(--sand-200);
  border-radius: 20px; padding: 40px 44px; box-shadow: 0 18px 44px rgba(15,30,24,.10);
}
.trial-card h2 { font-weight: 800; font-size: 30px; margin: 0; text-align: center; }
.trial-card .t-sub { font-size: 15.5px; color: var(--txt-soft); text-align: center; margin: 10px 0 28px 0; line-height: 1.55; }
.field { margin-bottom: 16px; }
.field label { display: block; font-size: 14px; font-weight: 600; color: var(--txt); margin-bottom: 6px; }
.field input, .field textarea {
  width: 100%; border: 1px solid var(--sand-300); border-radius: 11px; padding: 12px 14px;
  font-family: var(--font-sans); font-size: 15.5px; color: var(--ink-900); background: var(--sand-50);
}
.field input:focus, .field textarea:focus { outline: 3px solid rgba(11,138,92,.25); border-color: var(--brand-600); }
.field textarea { resize: vertical; min-height: 84px; }
.trial-card .btn { width: 100%; padding: 15px 0; font-size: 16.5px; margin-top: 6px; }
.form-msg { display: none; margin-top: 14px; padding: 12px 16px; border-radius: 11px; font-size: 14.5px; }
.form-msg.err { display: block; background: #FCEBE4; color: #B4380D; border: 1px solid #F5D5C8; }
.trial-success { display: none; text-align: center; padding: 24px 0 8px 0; }
.trial-success .ts-check {
  width: 56px; height: 56px; margin: 0 auto 16px auto; border-radius: 999px; background: var(--brand-50);
  color: var(--brand-600); display: flex; align-items: center; justify-content: center; font-size: 26px; font-weight: 800;
}
.trial-success h3 { font-weight: 800; font-size: 24px; margin: 0; }
.trial-success p { font-size: 15.5px; color: var(--txt-soft); margin: 10px 0 0 0; line-height: 1.6; }

/* ---------- Pied de page ---------- */
.footer { padding: 56px 0 40px 0; border-top: 1px solid var(--sand-200); background: var(--sand-50); }
.footer-inner { display: flex; gap: 80px; }
.footer-brand { flex: 0 0 320px; }
.footer-brand p { font-size: 14.5px; color: var(--txt-muted); line-height: 1.55; margin: 14px 0 0 0; }
.footer-cols { flex: 1; display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; font-size: 14.5px; }
.footer-col { display: flex; flex-direction: column; gap: 11px; }
.footer-col .fc-title { font-weight: 700; font-size: 13px; letter-spacing: .05em; text-transform: uppercase; color: var(--txt-faint); }
.footer-col a, .footer-col span { color: var(--txt); }
.footer-col a:hover { color: var(--brand-700); }
.footer-bottom { border-top: 1px solid var(--sand-200); margin-top: 40px; padding-top: 20px; font-size: 13.5px; color: var(--txt-faint); }

/* ---------- Page légale ---------- */
.legal-page { max-width: 760px; margin: 0 auto; padding: 56px 24px 80px 24px; }
.legal-page h1 { font-weight: 800; font-size: 36px; }
.legal-page h2 { font-weight: 700; font-size: 24px; margin-top: 40px; }
.legal-page p, .legal-page li { font-size: 15.5px; line-height: 1.65; color: var(--txt-soft); }
.legal-note { background: var(--brand-50); border: 1px solid var(--brand-100); border-radius: 12px; padding: 14px 18px; font-size: 14.5px; color: var(--brand-700); }

/* =========================================================
   MOBILE (d'après l'écran 1b — 390px)
   ========================================================= */
@media (max-width: 960px) {
  .wrap { padding: 0 20px; }

  .nav-inner { height: 60px; }
  .nav-links { display: none; }
  .nav-actions .btn-ghost { display: none; }
  .nav-actions .btn { padding: 8px 14px; font-size: 13.5px; }
  .burger { display: flex; }

  .hero-inner { flex-direction: column; gap: 32px; padding-top: 36px; padding-bottom: 44px; }
  .hero-copy { flex: none; }
  .hero h1 { font-size: 33px; }
  .hero-sub { font-size: 16px; }
  .hero-cta .btn { width: 100%; padding: 15px 0; font-size: 16px; }
  .hero-reassure { justify-content: center; }
  .hero-visual { width: 100%; max-width: 560px; }
  .hero-phone { display: none; }
  .mock-side { flex: 0 0 108px; padding: 12px 8px; }
  .mock-kpis { grid-template-columns: 1fr 1fr; }
  .mock-kpis .kpi:nth-child(3) { grid-column: span 2; }

  .trust { grid-template-columns: 1fr 1fr; }
  .trust-item { flex-direction: column; align-items: flex-start; gap: 9px; padding: 16px; }
  .trust-item .t-text { font-size: 12.5px; }

  .features { padding: 52px 0 12px 0; }
  .section-head h2 { font-size: 27px; }
  .section-head p { font-size: 15.5px; }
  .feature, .feature.reverse { flex-direction: column; gap: 20px; align-items: stretch; padding: 32px 0; }
  .feature h3 { font-size: 21px; }
  .f-benefit p { font-size: 14.5px; }
  .feature-shot { flex: none; padding: 16px 16px 10px 16px; border-radius: 18px; }
  .shot-row { padding: 11px 14px; gap: 10px; }
  .shot-row .sr-label { font-size: 12.5px; }
  .shot-row .sr-value { font-size: 11.5px; }
  .chip { font-size: 10.5px; padding: 3px 8px; }

  .africa { padding: 52px 0; }
  .africa-grid { grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 24px; }
  .africa-card { padding: 16px; border-radius: 14px; }
  .africa-card h3 { font-size: 14.5px; line-height: 1.25; margin-top: 10px; }
  .africa-card p { display: none; }

  .ia { padding: 52px 0; }
  .ia-inner { flex-direction: column-reverse; gap: 28px; }
  .ia-phone-col { flex: none; }
  .chat-phone { width: 280px; }
  .ia-copy h2 { font-size: 27px; }
  .ia-copy > p { font-size: 15px; margin-bottom: 24px; }
  .ia-point b { font-size: 16px; }
  .ia-point p { font-size: 13.5px; }

  .steps { padding: 52px 0; }
  .steps h2 { font-size: 26px; margin-bottom: 24px; }
  .steps-grid { grid-template-columns: 1fr; gap: 12px; }
  .step-card { display: flex; gap: 16px; padding: 20px; }
  .step-card .s-num { font-size: 30px; }
  .step-card h3 { font-size: 17px; margin-top: 0; }

  .pricing { padding: 52px 0; }
  .plans { flex-direction: column; gap: 22px; }
  .plan.hl { transform: none; }
  .p-price { font-size: 31px; }

  .temoins { padding: 52px 0; }
  .temoins-grid { grid-template-columns: 1fr; gap: 12px; }

  .faq { padding: 52px 0; }
  .faq h2 { font-size: 26px; margin-bottom: 22px; }
  .faq-q { font-size: 14.5px; padding: 15px 16px; }
  .faq-a { font-size: 13.5px; padding: 0 16px 15px 16px; }

  .final-cta { padding: 20px 0; }
  .final-card { padding: 40px 24px; border-radius: 20px; }
  .final-card h2 { font-size: 26px; }
  .final-card p { font-size: 15px; }
  .final-card .fc-btns { flex-direction: column; gap: 10px; }
  .final-card .btn { width: 100%; }

  .trial { padding: 20px 0 60px 0; }
  .trial-card { padding: 28px 20px; }
  .trial-card h2 { font-size: 24px; }

  .footer-inner { flex-direction: column; gap: 28px; }
  .footer-brand { flex: none; }
  .footer-cols { grid-template-columns: 1fr 1fr; }
}
