/* ============================================================
   DICTAVIS — Landing
   Style : épuré premium clair (navy + or)
   Type  : Space Grotesk (display) + DM Sans (texte)
   ============================================================ */

/* ---------- Tokens ---------- */
:root {
  /* Couleurs */
  --navy: #1E3A5F;
  --navy-700: #16304f;
  --navy-900: #0f2136;
  --navy-ink: #0B1B2E;
  --gold: #A16207;
  --gold-bright: #C8912A;
  --gold-soft: #FBF3E1;
  --gold-line: #EAD9AE;

  --ink: #0F172A;
  --ink-700: #334155;
  --ink-500: #5A6B80;
  --ink-400: #7A899C;

  --bg: #F7F9FC;
  --bg-2: #EEF3F9;
  --surface: #FFFFFF;
  --surface-2: #FBFCFE;
  --border: #E4EAF1;
  --border-2: #D3DCE7;

  --success: #15803D;
  --success-soft: #E7F4EC;

  /* Rayons */
  --r-xs: 8px;
  --r-sm: 10px;
  --r: 14px;
  --r-lg: 18px;
  --r-xl: 24px;
  --r-pill: 999px;

  /* Ombres — douces, premium */
  --sh-xs: 0 1px 2px rgba(15,33,54,.06);
  --sh-sm: 0 2px 8px rgba(15,33,54,.06), 0 1px 2px rgba(15,33,54,.05);
  --sh: 0 10px 30px -12px rgba(15,33,54,.18), 0 2px 8px rgba(15,33,54,.05);
  --sh-lg: 0 30px 60px -20px rgba(15,33,54,.28), 0 8px 24px -12px rgba(15,33,54,.14);
  --sh-gold: 0 14px 40px -14px rgba(161,98,7,.45);

  /* Type */
  --font-display: "Space Grotesk", system-ui, sans-serif;
  --font-sans: "DM Sans", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  /* Layout */
  --maxw: 1200px;
  --maxw-narrow: 760px;
  --gutter: clamp(20px, 5vw, 40px);

  /* Motion */
  --ease: cubic-bezier(.22, .61, .36, 1);
  --ease-out: cubic-bezier(.16, 1, .3, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; cursor: pointer; background: none; border: none; }
ul, ol { list-style: none; }
:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; border-radius: 4px; }

/* Icônes SVG (trait) */
.ico { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 1.9; stroke-linecap: round; stroke-linejoin: round; }
.ico--check { stroke-width: 2.4; }

.skip-link {
  position: fixed; left: 16px; top: -60px; z-index: 200;
  background: var(--navy); color: #fff; padding: 10px 16px; border-radius: var(--r-sm);
  transition: top .2s var(--ease);
}
.skip-link:focus { top: 16px; }

/* ---------- Layout ---------- */
.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.container--narrow { max-width: var(--maxw-narrow); }
.section { padding-block: clamp(72px, 11vw, 130px); }
.br-desk { display: none; }
@media (min-width: 720px) { .br-desk { display: inline; } }

/* ---------- Typo helpers ---------- */
.u-gold { color: var(--gold); }
.eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--font-sans);
  font-size: 13.5px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase;
  color: var(--gold);
}
.eyebrow--muted { color: var(--ink-500); }
.eyebrow__dot { width: 7px; height: 7px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 0 4px var(--gold-soft); }

.section__head { max-width: 720px; margin-bottom: clamp(40px, 6vw, 64px); }
.section__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.9rem, 4.6vw, 3.15rem);
  line-height: 1.08;
  letter-spacing: -.02em;
  color: var(--ink);
  margin-top: 18px;
}
.section__lead { margin-top: 18px; font-size: 1.18rem; color: var(--ink-500); max-width: 56ch; }

/* ============================================================
   BOUTONS
   ============================================================ */
.btn {
  --btn-h: 48px;
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  height: var(--btn-h); padding-inline: 22px;
  font-family: var(--font-sans); font-weight: 600; font-size: .98rem; letter-spacing: -.01em;
  border-radius: var(--r-sm);
  border: 1px solid transparent;
  white-space: nowrap;
  transition: transform .18s var(--ease), box-shadow .22s var(--ease), background-color .18s var(--ease), border-color .18s var(--ease), color .18s var(--ease);
}
.btn .ico { width: 19px; height: 19px; }
.btn:active { transform: translateY(1px); }
.btn--sm { --btn-h: 40px; padding-inline: 16px; font-size: .92rem; }
.btn--lg { --btn-h: 56px; padding-inline: 30px; font-size: 1.05rem; }
.btn--block { display: flex; width: 100%; }

.btn--primary { background: var(--navy); color: #fff; box-shadow: var(--sh-sm); }
.btn--primary:hover { background: var(--navy-700); box-shadow: var(--sh); transform: translateY(-1px); }

.btn--gold { background: var(--gold); color: #fff; box-shadow: var(--sh-gold); }
.btn--gold:hover { background: #8f560a; transform: translateY(-1px); }

.btn--ghost { background: var(--surface); color: var(--ink); border-color: var(--border-2); box-shadow: var(--sh-xs); }
.btn--ghost:hover { border-color: var(--navy); color: var(--navy); transform: translateY(-1px); box-shadow: var(--sh-sm); }

.btn--onDark { background: rgba(255,255,255,.08); color: #fff; border-color: rgba(255,255,255,.28); backdrop-filter: blur(4px); }
.btn--onDark:hover { background: rgba(255,255,255,.16); border-color: rgba(255,255,255,.5); transform: translateY(-1px); }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(247,249,252,.72);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .25s var(--ease), background-color .25s var(--ease), box-shadow .25s var(--ease);
}
.nav.is-scrolled { border-bottom-color: var(--border); background: rgba(247,249,252,.9); box-shadow: 0 1px 0 rgba(15,33,54,.02); }
.nav__inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; height: 72px; }

.brand { display: inline-flex; align-items: center; gap: 10px; font-family: var(--font-display); font-weight: 600; font-size: 1.28rem; letter-spacing: -.02em; color: var(--ink); }
.brand__mark { display: inline-flex; filter: drop-shadow(0 2px 5px rgba(30,58,95,.22)); }

.nav__links { display: none; align-items: center; gap: 4px; }
.nav__links a {
  position: relative; padding: 8px 14px; border-radius: var(--r-xs);
  font-size: .96rem; font-weight: 500; color: var(--ink-700);
  transition: color .18s var(--ease), background-color .18s var(--ease);
}
.nav__links a:hover { color: var(--ink); background: var(--bg-2); }

.nav__actions { display: none; align-items: center; gap: 10px; }
@media (min-width: 900px) {
  .nav__links, .nav__actions { display: flex; }
  .nav__toggle { display: none; }
}

/* Burger */
.nav__toggle { display: inline-flex; flex-direction: column; justify-content: center; gap: 5px; width: 44px; height: 44px; align-items: center; border-radius: var(--r-xs); }
.nav__toggle span { width: 22px; height: 2px; background: var(--ink); border-radius: 2px; transition: transform .25s var(--ease), opacity .2s var(--ease); }
.nav__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu { display: flex; flex-direction: column; gap: 4px; padding: 8px var(--gutter) 24px; border-bottom: 1px solid var(--border); background: var(--bg); }
.mobile-menu[hidden] { display: none; }
.mobile-menu a { padding: 13px 14px; border-radius: var(--r-xs); font-weight: 500; color: var(--ink-700); }
.mobile-menu a:hover { background: var(--bg-2); }
.mobile-menu .btn { margin-top: 8px; }

/* ============================================================
   HERO
   ============================================================ */
.hero { position: relative; padding-top: clamp(48px, 7vw, 84px); padding-bottom: clamp(56px, 8vw, 96px); overflow: hidden; }
.hero__bg {
  position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(60% 50% at 78% 18%, rgba(200,145,42,.10), transparent 70%),
    radial-gradient(55% 55% at 12% 6%, rgba(30,58,95,.09), transparent 68%);
}
.hero__bg::after {
  content: ""; position: absolute; inset: 0;
  background-image: linear-gradient(var(--border) 1px, transparent 1px), linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 48px 48px;
  -webkit-mask-image: radial-gradient(70% 60% at 50% 30%, #000 0%, transparent 80%);
  mask-image: radial-gradient(70% 60% at 50% 30%, #000 0%, transparent 80%);
  opacity: .5;
}
.hero__inner { display: grid; grid-template-columns: 1fr; gap: clamp(48px, 6vw, 72px); align-items: center; }
@media (min-width: 980px) { .hero__inner { grid-template-columns: 1.05fr .95fr; } }

.hero__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2.5rem, 6.2vw, 4.4rem);
  line-height: 1.02;
  letter-spacing: -.035em;
  color: var(--ink);
  margin-top: 22px;
}
.hero__sub { margin-top: 24px; font-size: clamp(1.08rem, 1.6vw, 1.28rem); line-height: 1.6; color: var(--ink-500); max-width: 46ch; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.hero__trust { display: flex; flex-wrap: wrap; gap: 8px 22px; margin-top: 30px; }
.hero__trust li { display: inline-flex; align-items: center; gap: 8px; font-size: .95rem; font-weight: 500; color: var(--ink-700); }
.hero__trust .ico { width: 17px; height: 17px; color: var(--success); }

/* ---------- Hero visual : téléphone WhatsApp ---------- */
.hero__visual { position: relative; }

.phone {
  --wa-header: #075E54;
  --wa-bg: #E6DED4;
  --wa-out: #DCF8C6;
  --wa-in: #FFFFFF;
  --wa-text: #111B21;
  --wa-muted: #667781;
  --wa-tick: #53BDEB;
  --wa-green: #00A884;

  position: relative;
  width: min(320px, 82vw);
  margin-inline: auto;
  aspect-ratio: 300 / 624;
  padding: 11px;
  border-radius: 46px;
  background: linear-gradient(158deg, #26374d, #0B1B2E);
  box-shadow: 0 0 0 1px rgba(255,255,255,.06) inset, var(--sh-lg), 0 44px 80px -34px rgba(11,27,46,.55);
}
.phone::before { content: ""; position: absolute; inset: 4px; border-radius: 42px; border: 1px solid rgba(255,255,255,.05); pointer-events: none; z-index: 6; }
.phone__island { position: absolute; top: 20px; left: 50%; transform: translateX(-50%); width: 92px; height: 24px; border-radius: 14px; background: #05101d; z-index: 5; }
.phone__screen { position: relative; height: 100%; border-radius: 36px; overflow: hidden; background: var(--wa-bg); display: flex; }
.wa { display: flex; flex-direction: column; width: 100%; height: 100%; font-family: var(--font-sans); }

/* En-tête */
.wa__head { display: flex; align-items: center; gap: 9px; padding: 46px 12px 11px; background: var(--wa-header); color: #fff; }
.wa__back { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0; opacity: .95; }
.wa__avatar { display: grid; place-items: center; width: 34px; height: 34px; border-radius: 50%; background: linear-gradient(150deg, var(--navy), var(--navy-900)); color: #fff; font-family: var(--font-display); font-weight: 600; font-size: .84rem; flex-shrink: 0; box-shadow: 0 0 0 2px rgba(255,255,255,.22); }
.wa__who { display: flex; flex-direction: column; line-height: 1.2; margin-right: auto; }
.wa__who strong { font-size: .92rem; font-weight: 600; }
.wa__who span { font-size: .72rem; color: rgba(255,255,255,.78); }
.wa__act { width: 19px; height: 19px; fill: #fff; opacity: .92; flex-shrink: 0; }

/* Corps du chat */
.wa__body { flex: 1; padding: 12px 10px; display: flex; flex-direction: column; gap: 8px; overflow: hidden; }
.wa__day { align-self: center; margin: 2px 0 4px; padding: 4px 12px; border-radius: 8px; background: rgba(255,255,255,.85); color: var(--wa-muted); font-size: .66rem; font-weight: 600; letter-spacing: .02em; box-shadow: 0 1px 1px rgba(0,0,0,.05); }

.wa-msg { position: relative; max-width: 84%; padding: 7px 9px 6px; border-radius: 11px; background: var(--wa-in); color: var(--wa-text); box-shadow: 0 1px 1px rgba(0,0,0,.09); }
.wa-msg--in { align-self: flex-start; border-top-left-radius: 4px; }
.wa-msg--out { align-self: flex-end; background: var(--wa-out); border-top-right-radius: 4px; }
.wa-msg--card { padding: 5px; max-width: 90%; }

.wa-meta { display: flex; align-items: center; justify-content: flex-end; gap: 3px; margin-top: 3px; font-size: .6rem; color: var(--wa-muted); font-variant-numeric: tabular-nums; }
.wa-meta--in { padding-right: 2px; }
.wa-tick { width: 15px; height: 9px; fill: none; stroke: var(--wa-tick); stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

/* Message vocal */
.wa-voice { display: flex; align-items: center; gap: 8px; }
.wa-voice__play { display: grid; place-items: center; width: 24px; height: 24px; flex-shrink: 0; color: var(--wa-header); }
.wa-voice__play svg { width: 22px; height: 22px; fill: currentColor; }
.wa-wave { display: flex; align-items: center; gap: 2px; flex: 1; height: 22px; }
.wa-wave i { flex: 1; min-width: 2px; height: 42%; border-radius: 2px; background: #9AA6A0; }
.wa-wave i:nth-child(2n) { height: 64%; }
.wa-wave i:nth-child(3n) { height: 88%; }
.wa-wave i:nth-child(4n) { height: 32%; }
.wa-wave i:nth-child(5n) { height: 74%; }
.wa-wave i:nth-child(-n+7) { background: var(--wa-header); }
.wa-voice__dur { font-size: .62rem; color: var(--wa-muted); flex-shrink: 0; font-variant-numeric: tabular-nums; }

/* Carte devis dans une bulle */
.wa-card { display: flex; flex-direction: column; }
.wa-card__top { display: flex; align-items: baseline; gap: 8px; padding: 6px 6px 8px; border-bottom: 1px solid #EEF0F1; }
.wa-card__label { font-size: .58rem; letter-spacing: .08em; text-transform: uppercase; color: var(--wa-muted); font-weight: 700; }
.wa-card__num { font-family: var(--font-display); font-size: .95rem; color: var(--wa-text); margin-left: auto; }
.wa-card__row { display: flex; justify-content: space-between; gap: 10px; padding: 8px 6px 3px; font-size: .72rem; color: #3B4A54; }
.wa-card__row b { font-variant-numeric: tabular-nums; }
.wa-card__ttc { display: flex; justify-content: space-between; gap: 10px; padding: 2px 6px 8px; font-size: .78rem; font-weight: 600; color: var(--wa-text); }
.wa-card__ttc b { font-family: var(--font-display); color: var(--navy); font-variant-numeric: tabular-nums; }
.wa-card__btn { display: flex; align-items: center; justify-content: center; gap: 6px; margin-top: 2px; padding: 9px; border-top: 1px solid #EEF0F1; color: var(--wa-green); font-weight: 600; font-size: .78rem; }
.wa-card__btn svg { width: 15px; height: 15px; fill: none; stroke: currentColor; stroke-width: 2.4; stroke-linecap: round; stroke-linejoin: round; }

/* Bulle de confirmation */
.wa-text { font-size: .78rem; line-height: 1.45; color: var(--wa-text); }
.wa-text b { font-weight: 700; }
.wa-ok { display: inline-block; vertical-align: -2px; width: 13px; height: 13px; margin-right: 4px; fill: none; stroke: var(--wa-green); stroke-width: 2.6; stroke-linecap: round; stroke-linejoin: round; }

/* Barre de saisie */
.wa__bar { display: flex; align-items: center; gap: 7px; padding: 8px 10px 12px; }
.wa__input { flex: 1; height: 34px; display: flex; align-items: center; padding: 0 14px; background: #fff; border-radius: 18px; color: #9AA6A0; font-size: .78rem; box-shadow: 0 1px 1px rgba(0,0,0,.05); }
.wa__send { display: grid; place-items: center; width: 34px; height: 34px; border-radius: 50%; background: var(--wa-header); flex-shrink: 0; }
.wa__send svg { width: 17px; height: 17px; fill: none; stroke: #fff; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

/* Entrée des messages (finie, au scroll) */
.js .wa-msg { opacity: 0; }
.hero__visual.is-in .wa-msg { animation: waMsgIn .5s var(--ease-out) forwards; }
.hero__visual.is-in .wa-msg--out { animation-delay: .25s; }
.hero__visual.is-in .wa-msg--card { animation-delay: .75s; }
.hero__visual.is-in .wa-msg--in:last-child { animation-delay: 1.15s; }
@keyframes waMsgIn { from { opacity: 0; transform: translateY(10px) scale(.98); } to { opacity: 1; transform: none; } }
@media (prefers-reduced-motion: reduce) { .wa-msg { opacity: 1 !important; animation: none !important; } }

/* ============================================================
   MÉTIERS STRIP
   ============================================================ */
.metiers { padding-block: 40px; border-block: 1px solid var(--border); background: var(--surface-2); }
.metiers__label { text-align: center; font-size: .82rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--ink-400); }
.metiers__list { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px 12px; margin-top: 20px; }
.metiers__list li {
  padding: 9px 18px; border-radius: var(--r-pill);
  background: var(--surface); border: 1px solid var(--border);
  font-size: .92rem; font-weight: 500; color: var(--ink-700);
  transition: transform .18s var(--ease), border-color .18s var(--ease), color .18s var(--ease);
}
.metiers__list li:hover { transform: translateY(-2px); border-color: var(--gold-line); color: var(--gold); }

/* ============================================================
   PROBLÈME
   ============================================================ */
.problem__grid { display: grid; gap: 22px; grid-template-columns: 1fr; }
@media (min-width: 720px) { .problem__grid { grid-template-columns: repeat(3, 1fr); } }
.prob {
  padding: 30px 28px;
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-lg);
  box-shadow: var(--sh-xs);
  transition: transform .22s var(--ease), box-shadow .22s var(--ease);
}
.prob:hover { transform: translateY(-3px); box-shadow: var(--sh); }
.prob__ico { display: grid; place-items: center; width: 46px; height: 46px; border-radius: var(--r); background: var(--gold-soft); color: var(--gold); margin-bottom: 18px; }
.prob__ico svg { width: 23px; height: 23px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.prob h3 { font-family: var(--font-display); font-weight: 600; font-size: 1.2rem; letter-spacing: -.01em; margin-bottom: 8px; }
.prob p { color: var(--ink-500); font-size: 1rem; }

/* ============================================================
   FONCTIONNEMENT (steps)
   ============================================================ */
.steps { display: grid; gap: 20px; grid-template-columns: 1fr; counter-reset: step; }
@media (min-width: 640px) { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .steps { grid-template-columns: repeat(4, 1fr); } }
.step { position: relative; }
.step__n {
  display: inline-grid; place-items: center; width: 34px; height: 34px; border-radius: 50%;
  background: var(--navy); color: #fff; font-family: var(--font-display); font-weight: 600; font-size: .95rem;
  margin-bottom: 20px; box-shadow: var(--sh-sm);
}
.step__body { position: relative; padding: 28px 24px; background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-lg); height: 100%; box-shadow: var(--sh-xs); }
.step__ico { display: inline-grid; place-items: center; width: 44px; height: 44px; border-radius: var(--r); background: var(--bg-2); color: var(--navy); margin-bottom: 16px; }
.step__ico svg { width: 22px; height: 22px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.step__body h3 { font-family: var(--font-display); font-weight: 600; font-size: 1.15rem; margin-bottom: 8px; }
.step__body p { color: var(--ink-500); font-size: .98rem; }
.step__body em { font-style: italic; color: var(--gold); }
.step__body strong { color: var(--ink); font-weight: 600; }
/* connector */
@media (min-width: 1000px) {
  .step:not(:last-child) .step__n::after {
    content: ""; position: absolute; top: 17px; left: 34px; width: calc(100% - 20px); height: 2px;
    background: linear-gradient(90deg, var(--border-2), transparent);
  }
}

/* ============================================================
   FONCTIONNALITÉS — bento
   ============================================================ */
.bento { display: grid; gap: 20px; grid-template-columns: 1fr; }
@media (min-width: 640px) { .bento { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .bento { grid-template-columns: repeat(4, 1fr); } }

.feat {
  padding: 26px 24px; background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-lg);
  box-shadow: var(--sh-xs);
  transition: transform .22s var(--ease), box-shadow .22s var(--ease), border-color .22s var(--ease);
}
.feat:hover { transform: translateY(-3px); box-shadow: var(--sh); border-color: var(--border-2); }
.feat__ico { display: grid; place-items: center; width: 46px; height: 46px; border-radius: var(--r); background: var(--bg-2); color: var(--navy); margin-bottom: 18px; }
.feat__ico svg { width: 23px; height: 23px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.feat__ico--gold { background: var(--gold-soft); color: var(--gold); }
.feat h3 { font-family: var(--font-display); font-weight: 600; font-size: 1.15rem; letter-spacing: -.01em; margin-bottom: 8px; }
.feat p { color: var(--ink-500); font-size: .98rem; }

/* carte vedette relances */
.feat--hero {
  grid-column: 1 / -1;
  background:
    radial-gradient(120% 140% at 100% 0%, rgba(200,145,42,.10), transparent 55%),
    linear-gradient(180deg, var(--navy), var(--navy-900));
  border-color: var(--navy-900);
  color: #fff;
  display: flex; flex-direction: column;
}
@media (min-width: 640px) { .feat--hero { grid-column: span 2; grid-row: span 2; } }
.feat--hero .feat__ico { background: rgba(200,145,42,.18); color: var(--gold-bright); width: 54px; height: 54px; }
.feat--hero .feat__ico svg { width: 27px; height: 27px; }
.feat--hero h3 { font-size: clamp(1.5rem, 2.5vw, 2rem); margin-top: 6px; }
.feat--hero p { color: rgba(233,240,248,.82); font-size: 1.08rem; max-width: 40ch; margin-bottom: auto; }
.feat__tag {
  display: inline-flex; align-self: flex-start; margin-top: 26px;
  padding: 7px 15px; border-radius: var(--r-pill);
  background: rgba(200,145,42,.16); color: var(--gold-bright);
  font-size: .82rem; font-weight: 600; letter-spacing: .01em;
  border: 1px solid rgba(200,145,42,.28);
}

/* ============================================================
   ROI
   ============================================================ */
.roi__card {
  display: grid; grid-template-columns: 1fr; gap: clamp(32px, 5vw, 56px); align-items: center;
  padding: clamp(32px, 5vw, 60px);
  background:
    radial-gradient(90% 120% at 8% 0%, rgba(30,58,95,.05), transparent 60%),
    var(--surface);
  border: 1px solid var(--border); border-radius: var(--r-xl);
  box-shadow: var(--sh);
}
@media (min-width: 900px) { .roi__card { grid-template-columns: 1.1fr .9fr; } }
.roi__title { font-family: var(--font-display); font-weight: 600; font-size: clamp(1.7rem, 3.4vw, 2.5rem); line-height: 1.1; letter-spacing: -.02em; margin: 16px 0 16px; }
.roi__lead { color: var(--ink-500); font-size: 1.08rem; max-width: 48ch; }

.roi__calc { background: var(--bg); border: 1px solid var(--border); border-radius: var(--r-lg); padding: 26px; }
.roi__field { display: block; }
.roi__field > span { display: block; font-size: .9rem; font-weight: 600; color: var(--ink-700); margin-bottom: 14px; }
.roi__value { display: block; font-family: var(--font-display); font-weight: 600; font-size: 1.5rem; color: var(--navy); font-variant-numeric: tabular-nums; margin-top: 12px; }

/* Range slider */
.roi__input input[type="range"] { -webkit-appearance: none; appearance: none; width: 100%; height: 6px; border-radius: var(--r-pill); background: var(--border-2); outline-offset: 6px; }
.roi__input input[type="range"]::-webkit-slider-thumb { -webkit-appearance: none; appearance: none; width: 24px; height: 24px; border-radius: 50%; background: var(--navy); border: 3px solid #fff; box-shadow: var(--sh-sm); cursor: grab; transition: transform .15s var(--ease); }
.roi__input input[type="range"]::-webkit-slider-thumb:active { cursor: grabbing; transform: scale(1.12); }
.roi__input input[type="range"]::-moz-range-thumb { width: 24px; height: 24px; border-radius: 50%; background: var(--navy); border: 3px solid #fff; box-shadow: var(--sh-sm); cursor: grab; }

.roi__result { margin-top: 26px; padding-top: 24px; border-top: 1px solid var(--border); }
.roi__result-label { display: block; font-size: .88rem; color: var(--ink-500); }
.roi__result-num { display: block; font-family: var(--font-display); font-weight: 700; font-size: clamp(2.4rem, 6vw, 3.4rem); line-height: 1; letter-spacing: -.02em; color: var(--gold); font-variant-numeric: tabular-nums; margin: 8px 0 6px; }
.roi__result-sub { font-size: .95rem; color: var(--ink-500); }
.roi__disclaimer { margin-top: 16px; font-size: .8rem; color: var(--ink-400); }

/* ============================================================
   TARIFS
   ============================================================ */
.plans { display: grid; gap: 22px; grid-template-columns: 1fr; align-items: start; }
@media (min-width: 860px) { .plans { grid-template-columns: repeat(3, 1fr); } }
.plans--duo { max-width: 720px; margin-inline: auto; }
@media (min-width: 720px) { .plans--duo { grid-template-columns: repeat(2, 1fr); } }
.plan {
  position: relative; padding: 32px 28px;
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-xl);
  box-shadow: var(--sh-xs);
  transition: transform .22s var(--ease), box-shadow .22s var(--ease);
}
.plan:hover { transform: translateY(-4px); box-shadow: var(--sh); }
.plan--featured {
  border-color: var(--navy);
  box-shadow: var(--sh-lg);
  background: linear-gradient(180deg, var(--surface), var(--surface-2));
}
@media (min-width: 860px) { .plan--featured { transform: scale(1.035); } .plan--featured:hover { transform: scale(1.035) translateY(-4px); } }
.plan__badge {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  padding: 6px 16px; border-radius: var(--r-pill);
  background: var(--gold); color: #fff; font-size: .78rem; font-weight: 600; white-space: nowrap;
  box-shadow: var(--sh-gold);
}
.plan__name { font-family: var(--font-display); font-weight: 600; font-size: 1.4rem; }
.plan__for { color: var(--ink-500); font-size: .95rem; margin-top: 6px; min-height: 2.8em; }
.plan__price { display: flex; align-items: baseline; gap: 6px; margin: 18px 0 22px; }
.plan__amount { font-family: var(--font-display); font-weight: 700; font-size: 3rem; line-height: 1; letter-spacing: -.03em; color: var(--ink); }
.plan__per { color: var(--ink-500); font-size: 1rem; }
.plan__feats { margin-top: 26px; display: flex; flex-direction: column; gap: 13px; }
.plan__feats li { position: relative; padding-left: 30px; font-size: .96rem; color: var(--ink-700); }
.plan__feats li b { color: var(--ink); font-weight: 700; }
.plan__feats li::before {
  content: ""; position: absolute; left: 0; top: 2px; width: 20px; height: 20px; border-radius: 50%;
  background: var(--success-soft) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2315803D' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3C/svg%3E") center / 12px no-repeat;
}
.plan__feats li:first-child:has(b)::before { display: none; }
.plan__feats li:first-child:has(b) { padding-left: 0; margin-bottom: 2px; }
.pricing__note { text-align: center; margin-top: 28px; font-size: .9rem; color: var(--ink-400); }

/* ============================================================
   FAQ
   ============================================================ */
.acc { display: flex; flex-direction: column; gap: 12px; }
.acc__item { background: var(--surface); border: 1px solid var(--border); border-radius: var(--r); overflow: hidden; transition: border-color .2s var(--ease), box-shadow .2s var(--ease); }
.acc__item[open] { border-color: var(--border-2); box-shadow: var(--sh-xs); }
.acc__item summary {
  display: flex; align-items: center; justify-content: space-between; gap: 18px;
  padding: 20px 22px; cursor: pointer; list-style: none;
  font-family: var(--font-display); font-weight: 500; font-size: 1.08rem; color: var(--ink);
}
.acc__item summary::-webkit-details-marker { display: none; }
.acc__chevron { position: relative; flex-shrink: 0; width: 18px; height: 18px; }
.acc__chevron::before, .acc__chevron::after { content: ""; position: absolute; top: 50%; width: 11px; height: 2px; background: var(--ink-500); border-radius: 2px; transition: transform .28s var(--ease); }
.acc__chevron::before { left: 0; transform: translateY(-50%) rotate(45deg); }
.acc__chevron::after { right: 0; transform: translateY(-50%) rotate(-45deg); }
.acc__item[open] .acc__chevron::before { transform: translateY(-50%) rotate(-45deg); }
.acc__item[open] .acc__chevron::after { transform: translateY(-50%) rotate(45deg); }
.acc__panel { padding: 0 22px 22px; }
.acc__panel p { color: var(--ink-500); font-size: 1rem; max-width: 64ch; }

/* ============================================================
   CTA FINAL
   ============================================================ */
.cta-final { padding-block: clamp(20px, 4vw, 40px) clamp(72px, 10vw, 120px); }
.cta-final__card {
  position: relative; overflow: hidden;
  padding: clamp(48px, 8vw, 96px) clamp(28px, 6vw, 40px);
  text-align: center;
  background: linear-gradient(160deg, var(--navy), var(--navy-900) 70%);
  border-radius: var(--r-xl);
  box-shadow: var(--sh-lg);
}
.cta-final__glow { position: absolute; inset: 0; z-index: 0; background: radial-gradient(50% 70% at 50% -10%, rgba(200,145,42,.28), transparent 60%); }
.cta-final__card > * { position: relative; z-index: 1; }
.cta-final__card h2 { font-family: var(--font-display); font-weight: 600; font-size: clamp(1.9rem, 4.8vw, 3.2rem); line-height: 1.08; letter-spacing: -.025em; color: #fff; }
.cta-final__card p { margin-top: 16px; font-size: 1.18rem; color: rgba(233,240,248,.82); }
.cta-final__actions { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; margin-top: 34px; }
.cta-final__micro { margin-top: 22px !important; font-size: .9rem; color: rgba(233,240,248,.6) !important; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { border-top: 1px solid var(--border); background: var(--surface-2); padding-block: clamp(48px, 7vw, 72px) 32px; }
.footer__inner { display: grid; grid-template-columns: 1fr; gap: 40px; }
@media (min-width: 720px) { .footer__inner { grid-template-columns: 2fr 1fr 1fr 1fr; gap: 32px; } }
.footer__brand p { margin-top: 16px; color: var(--ink-500); font-size: .96rem; }
.footer__col h4 { font-family: var(--font-display); font-weight: 600; font-size: .95rem; margin-bottom: 14px; color: var(--ink); }
.footer__col a { display: block; padding: 5px 0; color: var(--ink-500); font-size: .95rem; transition: color .16s var(--ease); }
.footer__col a:hover { color: var(--navy); }
.footer__bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px; margin-top: 44px; padding-top: 24px; border-top: 1px solid var(--border); font-size: .88rem; color: var(--ink-400); }

/* ============================================================
   REVEAL (scroll animation)
   ============================================================ */
.js .reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s var(--ease-out), transform .7s var(--ease-out); will-change: opacity, transform; }
.js .reveal.is-in { opacity: 1; transform: none; }
.reveal.is-stagger { transition-delay: var(--d, 0ms); }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; transition: none; }
  .wave span, .spinner, .mock-toast { animation: none !important; transition: none !important; }
  .mock-toast { opacity: 1; transform: translateX(-50%); }
  .btn:hover, .prob:hover, .feat:hover, .plan:hover, .metiers__list li:hover { transform: none; }
}
