/* ============================================================
   iapilote — landing production
   Palette : bleu profond (confiance) + ambre chaud (action)
   Typo : Bricolage Grotesque (titres) / Public Sans (texte)
   Mobile-first. Pas d'animations lourdes.
   ============================================================ */

@font-face {
  font-family: "Bricolage Grotesque";
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url("assets/fonts/bricolage-grotesque-latin.woff2") format("woff2");
}
@font-face {
  font-family: "Public Sans";
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url("assets/fonts/public-sans-latin.woff2") format("woff2");
}

:root {
  --blue-950: #0A1B2C;
  --blue-900: #0F2740;
  --blue-800: #16324E;
  --blue-700: #1F4569;
  --blue-100: #D8E4EF;
  --blue-50: #EDF3F8;
  --amber-700: #9A5C06; /* texte ambre sur fond clair (AA) */
  --amber-600: #C97D10;
  --amber-500: #E8940F;
  --amber-400: #F4AC3A;
  --amber-100: #FBEEd6;
  --paper: #FAF7F1;
  --card: #FFFFFF;
  --ink: #1B2935;
  --muted: #55646F;
  --line: #E6DFD2;
  --line-cool: #D9E2EA;
  --font-display: "Bricolage Grotesque", "Avenir Next", "Trebuchet MS", sans-serif;
  --font-body: "Public Sans", "Helvetica Neue", Arial, sans-serif;
  --radius: 14px;
  --radius-lg: 22px;
  --shadow-card: 0 1px 2px rgba(15, 39, 64, 0.06), 0 10px 30px -12px rgba(15, 39, 64, 0.14);
  --shadow-pop: 0 2px 6px rgba(15, 39, 64, 0.10), 0 24px 48px -16px rgba(15, 39, 64, 0.28);
  --container: 72rem;
}

/* ---------- Base ---------- */
*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--paper);
}

h1, h2, h3 {
  font-family: var(--font-display);
  line-height: 1.12;
  letter-spacing: -0.015em;
  color: var(--blue-900);
  margin: 0 0 0.6em;
  text-wrap: balance;
}

p { margin: 0 0 1em; }
ul, ol { margin: 0; padding: 0; }
img, svg { max-width: 100%; display: block; }
a { color: var(--blue-700); }

:focus-visible {
  outline: 2px solid var(--amber-500);
  outline-offset: 2px;
  border-radius: 4px;
}
.btn:focus-visible,
.whatsapp-fab:focus-visible,
.wa-btn:focus-visible { border-radius: 999px; }

.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  margin: -1px; padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap; border: 0;
}

.container {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 1.25rem;
}
.container-narrow { max-width: 50rem; }

section { scroll-margin-top: 5rem; }

.section { padding: 4.5rem 0; }
.section-alt { background: #F3EEE4; }
.section-title {
  font-size: clamp(1.75rem, 4.5vw, 2.6rem);
  font-weight: 800;
}
.section-title--sm { font-size: 1.5rem; }
.section-sub {
  font-size: 1.125rem;
  color: var(--muted);
  max-width: 38rem;
  margin-bottom: 2.5rem;
}

/* ---------- Boutons ---------- */
.btn {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.0625rem;
  letter-spacing: 0.01em;
  padding: 0.85rem 1.75rem;
  border-radius: 999px;
  border: 2px solid transparent;
  text-decoration: none;
  text-align: center;
  cursor: pointer;
  transition: background-color 0.15s ease, transform 0.1s ease, box-shadow 0.15s ease;
}
.btn:active { transform: translateY(1px); }

.btn-primary {
  background: var(--amber-500);
  color: var(--blue-950);
  box-shadow: 0 2px 0 rgba(10, 27, 44, 0.18), 0 10px 24px -10px rgba(232, 148, 15, 0.65);
}
.btn-primary:hover { background: var(--amber-400); }

.btn-outline {
  background: transparent;
  color: var(--blue-800);
  border-color: var(--blue-800);
}
.btn-outline:hover { background: var(--blue-50); }

.btn-lg { padding: 1.05rem 2.3rem; font-size: 1.15rem; }
.btn-block { display: block; width: 100%; }

/* ---------- Nav ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 247, 241, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.nav.is-scrolled {
  border-bottom-color: var(--line);
  box-shadow: 0 6px 20px -14px rgba(15, 39, 64, 0.25);
}
.nav-inner {
  max-width: var(--container);
  margin-inline: auto;
  padding: 0.8rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}
.logo-img {
  height: 2.35rem;
  width: auto;
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}
.nav-links > a:not(.btn) {
  font-weight: 600;
  font-size: 0.98rem;
  color: var(--blue-900);
  text-decoration: none;
}
.nav-links > a:not(.btn):hover { color: var(--amber-600); }
.btn-nav { padding: 0.55rem 1.4rem; font-size: 0.98rem; }

.nav-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px; height: 44px;
  padding: 10px;
  background: none;
  border: 0;
  cursor: pointer;
}
.nav-burger span {
  display: block;
  height: 2.5px;
  border-radius: 2px;
  background: var(--blue-900);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

@media (max-width: 47.9rem) {
  .nav-burger { display: flex; }
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 20px 30px -20px rgba(15, 39, 64, 0.3);
    display: none;
    padding: 0.5rem 1.25rem 1.25rem;
  }
  .nav-links.is-open { display: flex; }
  .nav-links > a:not(.btn) {
    padding: 0.9rem 0.25rem;
    border-bottom: 1px solid var(--line);
    font-size: 1.05rem;
  }
  .btn-nav { margin-top: 1rem; }
  .nav.is-open .nav-burger span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
  .nav.is-open .nav-burger span:nth-child(2) { opacity: 0; }
  .nav.is-open .nav-burger span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }
}

/* ---------- Hero ---------- */
.hero {
  padding: 3.5rem 0 4.5rem;
  background:
    radial-gradient(60rem 30rem at 85% -10%, rgba(232, 148, 15, 0.10), transparent 60%),
    radial-gradient(50rem 28rem at -10% 20%, rgba(22, 50, 78, 0.07), transparent 55%),
    var(--paper);
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3.5rem;
  align-items: center;
}

.eyebrow {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.88rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--amber-700);
  background: var(--amber-100);
  border: 1px solid rgba(201, 125, 16, 0.25);
  padding: 0.3rem 0.85rem;
  border-radius: 999px;
  margin-bottom: 1.25rem;
}

.hero h1 {
  font-size: clamp(2.15rem, 6vw, 3.55rem);
  font-weight: 800;
  margin-bottom: 0.5em;
}
.hero h1 em {
  font-style: normal;
  color: var(--amber-600);
}
.hero-sub {
  font-size: clamp(1.1rem, 2.2vw, 1.28rem);
  color: var(--muted);
  max-width: 34rem;
  margin-bottom: 2rem;
}

.hero-ctas {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.25rem;
  margin-bottom: 2rem;
}
.cta-ghost {
  font-weight: 600;
  padding-block: 0.7rem;
  color: var(--blue-800);
  text-decoration: none;
  border-bottom: 2px solid var(--amber-500);
  padding-bottom: 2px;
}
.cta-ghost:hover { color: var(--amber-600); }

.hero-price-note {
  font-size: 0.95rem;
  color: var(--muted);
  margin: -0.9rem 0 1.6rem;
}
.hero-price-note strong { color: var(--ink); }
.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 1.5rem;
  list-style: none;
}
.hero-badges li {
  font-size: 0.94rem;
  font-weight: 600;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 0.45rem;
}
.hero-badges li::before {
  content: "";
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--amber-500);
  flex: none;
}

/* --- Mockup composite --- */
.hero-visual {
  position: relative;
  display: grid;
  justify-content: center;
  padding: 1rem 0 0.5rem;
}

.mock-phone {
  width: min(272px, 72vw);
  background: var(--blue-950);
  border-radius: 34px;
  padding: 12px;
  box-shadow: var(--shadow-pop);
  position: relative;
  z-index: 1;
}
.mock-phone-notch {
  width: 90px; height: 18px;
  background: var(--blue-950);
  border-radius: 0 0 12px 12px;
  position: absolute;
  top: 12px; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
.mock-site {
  background: #fff;
  border-radius: 24px;
  overflow: hidden;
  padding-bottom: 1.1rem;
}
.mock-site-nav {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1.6rem 1rem 0.75rem;
}
.mock-dot {
  width: 12px; height: 12px;
  border-radius: 4px;
  background: var(--amber-500);
}
.mock-site-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.82rem;
  color: var(--blue-900);
}
.mock-site-photo {
  height: 92px;
  background: linear-gradient(135deg, var(--blue-700), var(--blue-900));
  margin: 0 0.75rem 0.85rem;
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}
.mock-site-photo svg { width: 100%; height: 70%; }
.mock-site-line {
  height: 8px;
  border-radius: 4px;
  background: var(--blue-100);
  margin: 0.55rem 0.75rem 0;
}
.mock-site-line.w80 { width: 78%; }
.mock-site-line.w70 { width: 68%; }
.mock-site-line.w60 { width: 56%; }
.mock-site-line.w50 { width: 46%; }
.mock-site-btn {
  margin: 0.9rem 0.75rem;
  background: var(--amber-500);
  color: var(--blue-950);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.8rem;
  text-align: center;
  padding: 0.55rem;
  border-radius: 999px;
}

.mock-card {
  position: absolute;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow-pop);
  padding: 0.9rem 1rem;
  z-index: 2;
}
.mock-card-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.8rem;
  color: var(--blue-900);
  margin: 0 0 0.4rem;
}

.mock-agenda {
  width: 200px;
  left: calc(50% + 78px);
  top: 8%;
}
.mock-slot {
  font-size: 0.72rem;
  color: var(--muted);
  padding: 0.35rem 0.5rem;
  border-left: 3px solid var(--blue-100);
  background: var(--blue-50);
  border-radius: 0 6px 6px 0;
  margin-bottom: 0.35rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.mock-slot.confirmed {
  border-left-color: var(--amber-500);
  background: var(--amber-100);
  color: var(--amber-600);
  font-weight: 600;
}
.mock-slot-time {
  font-weight: 700;
  color: var(--blue-800);
  margin-right: 0.3rem;
}
.mock-slot.confirmed .mock-slot-time { color: var(--amber-600); }

.mock-review {
  width: 210px;
  right: calc(50% + 78px);
  bottom: 10%;
}
.mock-review-head {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.mock-review-head .mock-card-title { margin: 0; }
.mock-review-g {
  width: 30px; height: 30px;
  flex: none;
  border-radius: 50%;
  background: var(--blue-50);
  border: 1px solid var(--line-cool);
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-weight: 800;
  color: var(--blue-700);
}
.mock-stars {
  color: var(--amber-500);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
}
.mock-review-text {
  font-size: 0.74rem;
  color: var(--muted);
  margin: 0.5rem 0 0;
}

@media (max-width: 47.9rem) {
  .mock-agenda { left: auto; right: -6px; top: 4%; width: 172px; }
  .mock-review { right: auto; left: -6px; bottom: 6%; width: 180px; }
  .hero-visual { padding-inline: 0.5rem; }
}

@media (min-width: 60rem) {
  .hero { padding: 5rem 0 6rem; }
  .hero-grid { grid-template-columns: 1.05fr 0.95fr; gap: 2rem; }
  .mock-agenda { left: auto; right: -1rem; }
  .mock-review { right: auto; left: -1.5rem; }
}

/* ---------- Ce que vous recevez : trois mondes ---------- */
.worlds {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  align-items: stretch;
}
.world {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 2.4rem 1.9rem 2.2rem;
  box-shadow: var(--shadow-card);
  transition: box-shadow 0.2s ease, transform 0.3s ease, opacity 0.3s ease;
}
/* bande teintée en tête de carte, une couleur par monde */
.world--vitrine {
  background: linear-gradient(180deg, #E9F0F7 0, #E9F0F7 8.5rem, var(--card) 8.5rem);
  border-color: #D3E0EC;
}
.world--assistant {
  background: linear-gradient(180deg, #FBEED6 0, #FBEED6 8.5rem, var(--card) 8.5rem);
  border-color: #EDDCBB;
}
.world--cockpit {
  background: linear-gradient(180deg, #EFEBE1 0, #EFEBE1 8.5rem, var(--card) 8.5rem);
  border-color: #E0D9C9;
}
.world:hover {
  box-shadow: var(--shadow-pop);
  transform: translateY(-4px);
}
.world-badge {
  display: grid;
  place-items: center;
  width: 4.1rem;
  height: 4.1rem;
  border-radius: 50%;
  background: var(--amber-500);
  color: var(--blue-950);
  margin-bottom: 1.3rem;
  box-shadow: 0 8px 20px -8px rgba(232, 148, 15, 0.8), 0 0 0 5px rgba(255, 255, 255, 0.55);
}
.world--vitrine .world-badge { background: var(--blue-800); color: #fff; box-shadow: 0 8px 20px -8px rgba(22, 50, 78, 0.7), 0 0 0 5px rgba(255, 255, 255, 0.55); }
.world--cockpit .world-badge { background: var(--blue-700); color: #fff; box-shadow: 0 8px 20px -8px rgba(31, 69, 105, 0.7), 0 0 0 5px rgba(255, 255, 255, 0.55); }
.world-badge svg { width: 2rem; height: 2rem; }
.world-title {
  font-size: 1.3rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.015em;
  margin-bottom: 0.15rem;
}
.world-promise {
  color: var(--amber-700);
  font-weight: 600;
  font-size: 0.98rem;
  margin-bottom: 1.5rem;
  min-height: 3.2em; /* aligne les listes entre colonnes */
}
.world-list {
  list-style: none;
  display: grid;
  gap: 1.2rem;
}
.world-list li {
  position: relative;
  padding-left: 2.15rem;
  line-height: 1.6;
  color: var(--muted);
  transition: opacity 0.25s ease, transform 0.25s ease;
}
.world-list li strong {
  color: var(--blue-900);
  font-weight: 700;
}
.world-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.14em;
  width: 1.3rem;
  height: 1.3rem;
  border-radius: 50%;
  background:
    url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path fill="none" stroke="%23C97D10" stroke-width="3.2" stroke-linecap="round" stroke-linejoin="round" d="m6 12.5 4 4 8-9"/></svg>') center / 66% no-repeat,
    var(--amber-100);
  border: 1px solid rgba(201, 125, 16, 0.35);
}

@media (min-width: 60rem) {
  .worlds { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 59.9rem) {
  .world-promise { min-height: 0; }
}

.worlds-close {
  margin: 2.5rem auto 0;
  max-width: fit-content;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.85rem 2rem;
  box-shadow: var(--shadow-card);
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2.6vw, 1.35rem);
  text-align: center;
}
.worlds-close strong {
  font-weight: 800;
  color: var(--blue-900);
}
.worlds-close em {
  font-style: normal;
  font-weight: 800;
  color: var(--amber-700);
}

/* révélation au scroll (uniquement si JS présent) */
.js .worlds .world,
.js .worlds .world-list li {
  opacity: 0;
  transform: translateY(18px);
}
.js .worlds .world-list li { transform: translateY(10px); }
.js .worlds.is-in .world,
.js .worlds.is-in .world-list li {
  opacity: 1;
  transform: translateY(0);
}
.js .worlds.is-in .world:hover { transform: translateY(-4px); }
.js .worlds-close {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.3s ease 0.45s, transform 0.3s ease 0.45s;
}
.js .worlds.is-in + .worlds-close {
  opacity: 1;
  transform: translateY(0);
}

.checklist {
  list-style: none;
  display: grid;
  gap: 0.7rem;
}
.checklist li {
  position: relative;
  padding-left: 2rem;
  color: var(--ink);
}
.checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.22em;
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 50%;
  background:
    url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path fill="none" stroke="%230A1B2C" stroke-width="3.2" stroke-linecap="round" stroke-linejoin="round" d="m6 12.5 4 4 8-9"/></svg>') center / 68% no-repeat,
    var(--amber-500);
}
.checklist-light li { color: #fff; }
.checklist-light li::before {
  background:
    url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path fill="none" stroke="%230A1B2C" stroke-width="3.2" stroke-linecap="round" stroke-linejoin="round" d="m6 12.5 4 4 8-9"/></svg>') center / 68% no-repeat,
    var(--amber-400);
}

/* ---------- Timeline 7 jours ---------- */
.tl {
  position: relative;
  margin-top: 3.5rem;
}

/* trait de progression — vertical (mobile), horizontal (desktop) */
.tl-line {
  position: absolute;
  left: calc(1.75rem - 1.5px);
  top: 0.5rem;
  bottom: 3.5rem;
  width: 3px;
  border-radius: 2px;
  background: linear-gradient(180deg, var(--amber-500), var(--amber-400));
  transform-origin: top;
}

.tl-steps {
  list-style: none;
  display: grid;
  gap: 2.75rem;
  position: relative;
}
.tl-step {
  position: relative;
  padding-left: 5.2rem;
}

.tl-node {
  position: absolute;
  left: 0;
  top: 0;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  background: var(--blue-800);
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 8px 20px -10px rgba(15, 39, 64, 0.55);
}
.tl-node-icon { width: 1.55rem; height: 1.55rem; }
.tl-node-num {
  position: absolute;
  top: -0.45rem;
  right: -0.55rem;
  width: 1.55rem;
  height: 1.55rem;
  border-radius: 50%;
  background: var(--amber-500);
  color: var(--blue-950);
  border: 2px solid var(--paper);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.68rem;
  display: grid;
  place-items: center;
}

.tl-chip {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.03em;
  color: var(--amber-700);
  background: var(--amber-100);
  border: 1px solid rgba(201, 125, 16, 0.3);
  padding: 0.22rem 0.75rem;
  border-radius: 999px;
  margin-bottom: 0.6rem;
}
.tl-body h3 {
  font-size: 1.35rem;
  margin-bottom: 0.35rem;
}
.tl-body p {
  color: var(--muted);
  margin: 0;
  max-width: 26rem;
}


@media (min-width: 48rem) {
  .tl { margin-top: 4.5rem; }
  .tl-line {
    left: 16.666%;
    right: 16.666%;
    top: calc(2.1rem - 1.5px);
    bottom: auto;
    width: auto;
    height: 3px;
    background: linear-gradient(90deg, var(--amber-500), var(--amber-400));
    transform-origin: left;
  }
  .tl-steps {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
  .tl-step {
    padding-left: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .tl-node {
    position: static;
    width: 4.2rem;
    height: 4.2rem;
    margin-bottom: 1.4rem;
    border: 4px solid var(--paper); /* détache le disque du trait */
    box-sizing: content-box;
    background-clip: padding-box;
  }
  .tl-node-icon { width: 1.8rem; height: 1.8rem; }
  .tl-node-num {
    top: -0.3rem;
    right: -0.3rem;
    width: 1.7rem;
    height: 1.7rem;
    font-size: 0.74rem;
  }
  .tl-body p { max-width: 30ch; margin-inline: auto; }
}

/* animation : le trait se dessine, les jalons apparaissent (JS requis) */
.js .tl-line {
  transform: scaleY(0);
  transition: transform 0.4s ease-out;
}
.js .tl.is-in .tl-line { transform: scaleY(1); }
.js .tl-node {
  opacity: 0;
  transform: scale(0.4);
  transition: opacity 0.25s ease, transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.js .tl-body {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.js .tl-step:nth-child(1) .tl-node { transition-delay: 60ms; }
.js .tl-step:nth-child(2) .tl-node { transition-delay: 200ms; }
.js .tl-step:nth-child(3) .tl-node { transition-delay: 340ms; }
.js .tl-step:nth-child(1) .tl-body { transition-delay: 140ms; }
.js .tl-step:nth-child(2) .tl-body { transition-delay: 280ms; }
.js .tl-step:nth-child(3) .tl-body { transition-delay: 420ms; }
.js .tl.is-in .tl-node { opacity: 1; transform: scale(1); }
.js .tl.is-in .tl-body { opacity: 1; transform: translateY(0); }

@media (min-width: 48rem) {
  .js .tl-line { transform: scaleX(0); }
  .js .tl.is-in .tl-line { transform: scaleX(1); }
}

/* ---------- Fuites (dark) ---------- */
.section-dark {
  background:
    radial-gradient(50rem 26rem at 90% 0%, rgba(232, 148, 15, 0.09), transparent 55%),
    var(--blue-900);
  color: var(--blue-100);
}
.section-dark .section-title { color: #fff; }

.leaks {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-top: 2.5rem;
}
.leak {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  padding: 1.9rem 1.6rem;
}
.leak-icon {
  width: 2.2rem;
  height: 2.2rem;
  color: var(--amber-400);
  margin-bottom: 1rem;
}
.leak h3 {
  color: #fff;
  font-size: 1.22rem;
  margin-bottom: 0.5rem;
}
.leak p {
  margin: 0;
  color: var(--blue-100);
  font-size: 0.99rem;
}

.leaks-closing {
  margin: 3rem auto 0;
  max-width: 34rem;
  text-align: center;
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 3vw, 1.6rem);
  font-weight: 600;
  line-height: 1.35;
  color: #fff;
}
.leaks-closing strong { color: var(--amber-400); }

@media (min-width: 48rem) {
  .leaks { grid-template-columns: repeat(3, 1fr); }
}

/* ---------- Comparaison (table premium) ---------- */
.cmp-check {
  display: inline-block;
  vertical-align: -0.2em;
  width: 1.15rem;
  height: 1.15rem;
  margin-right: 0.55rem;
  border-radius: 50%;
  background:
    url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path fill="none" stroke="%230A1B2C" stroke-width="3.4" stroke-linecap="round" stroke-linejoin="round" d="m6 12.5 4 4 8-9"/></svg>') center / 66% no-repeat,
    var(--amber-400);
}

/* mobile : une carte par ligne */
.cmp {
  display: grid;
  gap: 1rem;
}
.cmp-head { display: none; }
.cmp-row {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
.cmp-cell { padding: 0.85rem 1.2rem; }
.cmp-item {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--blue-900);
  padding-bottom: 0.2rem;
}
.row-ico {
  display: inline-block;
  vertical-align: -0.22em;
  width: 1.2rem;
  height: 1.2rem;
  margin-right: 0.55rem;
  color: var(--blue-700);
}
.cmp-reco {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  background: var(--amber-500);
  color: var(--blue-950);
  border-radius: 999px;
  padding: 0.18rem 0.6rem;
  margin-left: 0.6rem;
  vertical-align: 0.1em;
}
.cmp-diy { color: var(--muted); padding-top: 0; }
.cmp-diy::before,
.cmp-ia::before {
  content: attr(data-label);
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  margin-bottom: 0.15rem;
}
.cmp-diy::before { color: var(--muted); }
.cmp-ia {
  background: linear-gradient(135deg, var(--blue-800), var(--blue-900));
  color: #fff;
  font-weight: 600;
}
.cmp-ia::before { color: var(--amber-400); }
.cmp-total .cmp-diy {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.08rem;
  color: var(--ink);
}
.cmp-total .cmp-ia {
  font-family: var(--font-display);
  font-size: 1.2rem;
}

/* coches animées à l'apparition */
.js .cmp .cmp-check {
  transform: scale(0);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.js .cmp.is-in .cmp-check { transform: scale(1); }
.js .cmp-row:nth-child(2) .cmp-check { transition-delay: 0.05s; }
.js .cmp-row:nth-child(3) .cmp-check { transition-delay: 0.13s; }
.js .cmp-row:nth-child(4) .cmp-check { transition-delay: 0.21s; }
.js .cmp-row:nth-child(5) .cmp-check { transition-delay: 0.29s; }
.js .cmp-row:nth-child(6) .cmp-check { transition-delay: 0.37s; }
.js .cmp-row:nth-child(7) .cmp-check { transition-delay: 0.45s; }
.cmp-cta {
  text-align: center;
  margin: 2.25rem 0 0;
}

/* desktop : vraie table, colonne iapilote mise en avant */
@media (min-width: 48rem) {
  .cmp {
    gap: 0;
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card);
    overflow: visible;
  }
  .cmp-row {
    display: grid;
    grid-template-columns: 1fr 1.25fr 1.25fr;
    background: none;
    border: 0;
    border-radius: 0;
    overflow: visible;
  }
  .cmp-row + .cmp-row .cmp-item,
  .cmp-row + .cmp-row .cmp-diy { border-top: 1px dashed var(--line); }
  .cmp-cell { padding: 1.05rem 1.4rem; display: flex; align-items: center; }
  .cmp-item { padding-bottom: 1.05rem; font-size: 1rem; }
  .cmp-diy { padding-top: 1.05rem; }
  .cmp-diy::before, .cmp-ia::before { display: none; }

  .cmp-head { display: grid; }
  .cmp-head .cmp-cell {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    color: var(--muted);
    padding-top: 1.3rem;
    padding-bottom: 1.05rem;
  }
  .cmp-head .cmp-diy { background: none; }

  /* lignes alternées */
  .cmp-row:nth-child(odd):not(.cmp-head):not(.cmp-total) .cmp-item,
  .cmp-row:nth-child(odd):not(.cmp-head):not(.cmp-total) .cmp-diy { background: #FAF6EE; }

  /* colonne accent continue, légèrement dominante */
  .cmp-ia {
    background: var(--blue-800);
    border-inline: 2px solid var(--amber-500);
    margin-inline: -7px;
    position: relative;
    z-index: 1;
    box-shadow:
      16px 0 30px -16px rgba(15, 39, 64, 0.55),
      -16px 0 30px -16px rgba(15, 39, 64, 0.55);
  }
  .cmp-head .cmp-ia {
    color: var(--amber-400);
    background: var(--blue-800);
    border-top: 2px solid var(--amber-500);
    border-radius: var(--radius) var(--radius) 0 0;
    margin-top: -0.8rem;
    padding-top: 1.6rem;
  }
  .cmp-total .cmp-ia {
    border-bottom: 2px solid var(--amber-500);
    border-radius: 0 0 var(--radius) var(--radius);
    margin-bottom: -0.8rem;
    padding-bottom: 1.6rem;
    font-size: 1.25rem;
  }

  /* ligne total : collée en bas à l'écran tant que la table est visible */
  .cmp-total {
    position: sticky;
    bottom: 0;
    z-index: 3;
  }
  .cmp-total .cmp-item,
  .cmp-total .cmp-diy {
    background: var(--card);
    border-top: 2px solid var(--line);
    font-weight: 700;
  }
  .cmp-total .cmp-item { border-bottom-left-radius: var(--radius-lg); }
}

/* ---------- Tarifs ---------- */
.pricing {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  align-items: stretch;
  margin-top: 2.5rem;
}
.price-card {
  position: relative;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 2.4rem 1.9rem 2rem;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-card);
}
.price-card-main {
  border: 2px solid var(--blue-800);
  box-shadow: var(--shadow-pop);
}
.price-badge {
  position: absolute;
  top: -0.85rem;
  left: 1.75rem;
  background: var(--blue-800);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  padding: 0.3rem 0.9rem;
  border-radius: 999px;
}
.price-card h3 {
  font-size: 1.55rem;
  margin-bottom: 0.35rem;
}
.price-desc {
  color: var(--muted);
  margin-bottom: 1.4rem;
}
.price-figures {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 0.6rem;
  font-family: var(--font-display);
  font-weight: 800;
  color: var(--blue-900);
  margin-bottom: 0.4rem;
}
.price-setup { font-size: 1.5rem; }
.price-plus { font-size: 1.2rem; color: var(--muted); font-weight: 600; }
.price-monthly { font-size: 2.1rem; }
.price-figures small {
  font-size: 0.58em;
  font-weight: 600;
  color: var(--muted);
}
.price-note {
  color: var(--amber-700);
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}
.price-card .checklist {
  margin-bottom: 1.75rem;
  gap: 0.55rem;
  font-size: 0.98rem;
}
.price-card .btn { margin-top: auto; }
.price-steps {
  font-size: 0.9rem;
  color: var(--muted);
  text-align: center;
  margin: 0.9rem 0 0;
}

@media (min-width: 48rem) {
  .pricing { grid-template-columns: 1.05fr 0.95fr; }
}

/* ---------- Preuve produit ---------- */
.proof-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
.proof-slot { margin: 0; }
.proof-shot {
  border: 1px solid var(--line-cool);
  border-radius: var(--radius);
  background: var(--blue-50);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
/* barre de navigateur factice */
.shot-bar {
  display: flex;
  gap: 6px;
  padding: 0.6rem 0.9rem;
  background: #EEF0F4;
  border-bottom: 1px solid #E0E4EA;
}
.shot-bar i {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #CBD2DC;
}
.shot-body {
  aspect-ratio: 16 / 10;
  overflow: hidden;
}
.shot-body--pipeline { aspect-ratio: auto; }
.shot-body img,
.proof-shot > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.shot-body--pipeline img { height: auto; }
/* recadrage : la zone la plus parlante de chaque écran */
.img-agenda { object-position: 50% 0; }
.img-form { object-position: 50% 0; }
.proof-slot figcaption {
  margin-top: 0.8rem;
  font-weight: 600;
  font-size: 0.97rem;
  color: var(--ink);
}
.shot-body--pipe2 { aspect-ratio: 2 / 1; }
.shot-body--pipe2 img { object-position: 0 50%; }

/* mobile : le kanban large garde un cadrage lisible */
@media (max-width: 43.9rem) {
  .shot-body--pipeline { aspect-ratio: 2 / 1; }
  .shot-body--pipeline img { height: 100%; object-position: 0 50%; }
}

/* --- Mockup SMS (pur CSS, style iOS) --- */
.proof-shot-sms {
  aspect-ratio: 16 / 10;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding-top: 1.4rem;
  background:
    radial-gradient(30rem 16rem at 80% -20%, rgba(232, 148, 15, 0.12), transparent 60%),
    linear-gradient(165deg, var(--blue-50), #DDE7F0);
}
.sms-phone {
  width: min(78%, 310px);
  background: #fff;
  border: 7px solid var(--blue-950);
  border-bottom: 0;
  border-radius: 30px 30px 0 0;
  box-shadow: var(--shadow-pop);
  overflow: hidden;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", sans-serif;
}
.sms-head {
  display: grid;
  justify-items: center;
  gap: 0.25rem;
  padding: 0.8rem 0.5rem 0.55rem;
  background: #F7F7F9;
  border-bottom: 1px solid #E5E5EA;
}
.sms-avatar {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: linear-gradient(180deg, #A5ACB8, #848B98);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 600;
  display: grid;
  place-items: center;
  letter-spacing: 0.02em;
}
.sms-name {
  font-size: 0.72rem;
  font-weight: 600;
  color: #1C1C1E;
}
.sms-thread {
  display: grid;
  justify-items: start;
  gap: 0.3rem;
  padding: 0.6rem 0.65rem 1.1rem;
}
.sms-time {
  justify-self: center;
  font-size: 0.62rem;
  color: #8E8E93;
  margin: 0.2rem 0 0.05rem;
}
.sms-bubble {
  background: #E9E9EB;
  color: #1C1C1E;
  border-radius: 18px;
  border-bottom-left-radius: 5px;
  padding: 0.5rem 0.7rem;
  font-size: 0.75rem;
  line-height: 1.42;
  max-width: 94%;
  margin: 0;
}


@media (min-width: 44rem) {
  .proof-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem 2rem;
  }
  .proof-slot--wide { grid-column: 1 / -1; }
}
@media (min-width: 64rem) {
  .proof-grid { grid-template-columns: repeat(6, 1fr); }
  .proof-slot { grid-column: span 2; }
  .proof-slot--wide { grid-column: 1 / -1; }
}

/* ---------- FAQ ---------- */
.faq-list {
  display: grid;
  gap: 0.9rem;
}
.faq-item {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  scroll-margin-top: 5.5rem;
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.08rem;
  color: var(--blue-900);
  padding: 1.15rem 3.2rem 1.15rem 1.4rem;
  position: relative;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "";
  position: absolute;
  right: 1.3rem;
  top: 50%;
  width: 0.75rem;
  height: 0.75rem;
  border-right: 2.5px solid var(--amber-600);
  border-bottom: 2.5px solid var(--amber-600);
  transform: translateY(-70%) rotate(45deg);
  transition: transform 0.2s ease;
}
.faq-item[open] summary::after { transform: translateY(-30%) rotate(225deg); }
.faq-item[open] summary { border-bottom: 1px solid var(--line); }
.faq-body {
  padding: 1.1rem 1.4rem 1.3rem;
  color: var(--muted);
}
.faq-body p { margin: 0; }
.faq-body a { color: var(--amber-700); font-weight: 600; }

.faq-more {
  text-align: center;
  margin: 1.75rem 0 0;
}
.faq-more a {
  font-weight: 700;
  color: var(--blue-800);
  text-decoration: none;
  border-bottom: 2px solid var(--amber-500);
  padding-bottom: 2px;
}
.faq-more a:hover { color: var(--amber-700); }

/* ---------- Démo + rappel ---------- */
.section-cta {
  background:
    radial-gradient(46rem 24rem at 10% 0%, rgba(232, 148, 15, 0.08), transparent 55%),
    var(--paper);
}

.calendar-embed {
  background: var(--card);
  border: 1px solid var(--line-cool);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  padding: 0.75rem;
}
.calendar-embed iframe {
  display: block;
  width: 100%;
  border: none;
  min-height: 850px; /* mobile : évite les créneaux coupés avant l'auto-resize */
}
@media (min-width: 48rem) {
  .calendar-embed iframe { min-height: 700px; }
}
.calendar-embed--survey iframe { min-height: 900px; }

.callback {
  margin-top: 2.5rem;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  box-shadow: var(--shadow-card);
  max-width: 34rem;
  margin-inline: auto;
  text-align: center;
}
.callback-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--blue-900);
  margin-bottom: 0.25rem;
}
.callback-sub {
  color: var(--muted);
  margin-bottom: 1.4rem;
}
.callback-form {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.9rem;
}
.callback-form input {
  font: inherit;
  font-size: 1.05rem;
  padding: 0.95rem 1.15rem;
  border: 1.5px solid var(--line-cool);
  border-radius: 12px;
  background: var(--paper);
  color: var(--ink);
  min-width: 0;
  width: 100%;
}
.callback-form input:focus {
  outline: 2px solid var(--amber-500);
  outline-offset: 1px;
  border-color: var(--amber-500);
}
.callback-form .btn { width: 100%; }
.callback-confirm {
  margin: 1rem 0 0;
  font-weight: 700;
  color: var(--blue-800);
}

@media (min-width: 44rem) {
  .callback-form {
    grid-template-columns: 1fr 1.35fr auto;
    align-items: stretch;
  }
  .callback-form .btn {
    width: auto;
    padding-block: 0;
    display: inline-flex;
    align-items: center;
  }
}

/* ---------- Footer ---------- */
.footer {
  background: var(--blue-950);
  color: var(--blue-100);
  padding: 3rem 0 7rem; /* espace pour la barre mobile */
}
.footer-inner {
  display: grid;
  gap: 1.5rem;
  justify-items: start;
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.footer-links a {
  color: var(--blue-100);
  text-decoration: none;
  font-size: 0.95rem;
}
.footer-links a:hover { color: var(--amber-400); }
.footer-id {
  margin: 0;
  font-size: 0.9rem;
  color: rgba(216, 228, 239, 0.7);
}
.footer-id a { color: inherit; }

@media (min-width: 48rem) {
  .footer { padding-bottom: 3rem; }
  .footer-inner {
    grid-template-columns: auto 1fr auto;
    align-items: center;
  }
  .footer-links { justify-self: center; }
}

/* ---------- Flottants ---------- */
.whatsapp-fab {
  position: fixed;
  right: 1.1rem;
  bottom: 5.2rem;
  z-index: 40;
  width: 3.4rem;
  height: 3.4rem;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 6px 18px -6px rgba(18, 140, 74, 0.55);
}
.whatsapp-fab svg { width: 1.9rem; height: 1.9rem; }
.whatsapp-fab:hover { background: #1FB958; }

.sticky-bar {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 45;
  background: rgba(250, 247, 241, 0.96);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-top: 1px solid var(--line);
  padding: 0.7rem 1.1rem calc(0.7rem + env(safe-area-inset-bottom));
  display: flex;
  align-items: center;
  gap: 1.1rem;
  transform: translateY(110%);
  transition: transform 0.25s ease;
}
.sticky-bar.is-visible { transform: translateY(0); }
.sticky-bar .btn { flex: 1; }
.sticky-bar-demo {
  font-weight: 600;
  padding-block: 0.75rem;
  color: var(--blue-800);
  text-decoration: none;
  border-bottom: 2px solid var(--amber-500);
  padding-bottom: 1px;
  white-space: nowrap;
}

@media (min-width: 48rem) {
  .sticky-bar { display: none; }
  .whatsapp-fab { bottom: 1.5rem; right: 1.5rem; }
}

/* ---------- Badge garantie (composant unique) ---------- */
.g-badge {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
  background: var(--amber-100);
  border: 1px solid rgba(201, 125, 16, 0.3);
  border-radius: var(--radius);
  padding: 1.1rem 1.35rem;
}
.g-badge > svg {
  width: 2.1rem;
  height: 2.1rem;
  flex: none;
  color: var(--amber-700);
}
.g-badge-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.08rem;
  color: var(--blue-900);
  margin: 0 0 0.15rem;
}
.g-badge-text {
  margin: 0;
  font-size: 0.93rem;
  line-height: 1.5;
  color: var(--ink);
}
.g-badge--compact { padding: 0.8rem 1.05rem; border-radius: 12px; }
.g-badge--compact > svg { width: 1.7rem; height: 1.7rem; }
.g-badge--compact .g-badge-title { font-size: 0.98rem; }
.g-badge--compact .g-badge-text { font-size: 0.87rem; }
.price-gbadge { margin-top: 1.1rem; }
.tl-gbadge { margin-top: 1.1rem; text-align: left; }
.hero .g-badge {
  max-width: 33rem;
  margin-bottom: 1.7rem;
}

/* ---------- Panneau prix du hero ---------- */
.hero-price {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.45rem 0.9rem;
  margin: -0.7rem 0 1.2rem;
}
.hero-price-main {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.3rem;
  color: var(--blue-900);
}
.hero-price-main small {
  font-weight: 600;
  font-size: 0.7em;
  color: var(--muted);
}
.hero-price-chip {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.82rem;
  color: var(--amber-700);
  background: var(--amber-100);
  border: 1px solid rgba(201, 125, 16, 0.3);
  padding: 0.2rem 0.7rem;
  border-radius: 999px;
}
.hero-price-sub {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--muted);
}

/* ---------- Bandeau de confiance ---------- */
.trust-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.9rem 2.4rem;
  border-top: 1px solid var(--line);
  margin-top: 3.25rem;
  padding-top: 1.6rem;
}
.trust-item {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--muted);
}
.trust-item svg { width: 1.2rem; height: 1.2rem; flex: none; }
.trust-item .mono-ico { color: #7A8794; }

/* ---------- CTA inline (rappel mi-page) ---------- */
.cta-inline {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.9rem 1.6rem;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  padding: 1.4rem 1.75rem;
  margin: 2.75rem 0;
  text-align: center;
}
.cta-inline p {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.12rem;
  color: var(--blue-900);
  flex-basis: 100%;
}
@media (min-width: 60rem) {
  .cta-inline { justify-content: space-between; text-align: left; padding-inline: 2.25rem; }
  .cta-inline p { flex-basis: auto; }
}

/* ---------- Encadré (engagement) ---------- */
.callout {
  border-left: 4px solid var(--amber-500);
  background: var(--card);
  border-radius: 0 var(--radius) var(--radius) 0;
  box-shadow: var(--shadow-card);
  padding: 1.6rem 1.8rem;
  margin-top: 3rem;
}
.callout h2 { font-size: 1.3rem; margin-bottom: 0.5em; }
.callout p:last-child { margin-bottom: 0; }

/* ---------- Pages internes : composants partagés ---------- */
.nav-links a[aria-current="page"] { color: var(--amber-600); }

.page-hero {
  padding: 3.75rem 0 1.25rem;
  background:
    radial-gradient(50rem 22rem at 90% -20%, rgba(232, 148, 15, 0.09), transparent 60%),
    var(--paper);
}
.page-hero h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  margin-bottom: 0.35em;
}
.page-hero .section-sub { margin-bottom: 1rem; }

/* rangées capacités (produit) */
.cap {
  display: grid;
  gap: 1.75rem;
  padding: 3rem 0;
  border-bottom: 1px dashed var(--line);
}
.cap:last-of-type { border-bottom: 0; }
.cap-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.9rem;
  color: var(--amber-700);
  letter-spacing: 0.08em;
  margin-bottom: 0.4rem;
}
.cap h2 { font-size: clamp(1.4rem, 3vw, 1.7rem); }
.cap-lead { color: var(--muted); max-width: 34rem; }
.cap-views { display: grid; gap: 1rem; align-content: start; margin-top: 1.4rem; }
.view-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.2rem 1.35rem;
  box-shadow: var(--shadow-card);
}
.view-card h3 {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--amber-700);
  margin-bottom: 0.35rem;
}
.view-card p { margin: 0; font-size: 0.98rem; color: var(--ink); }
@media (min-width: 48rem) {
  .cap { grid-template-columns: 1.05fr 0.95fr; gap: 3rem; align-items: center; }
  .cap--flip .cap-visual { order: -1; }
}

/* bannière CTA */
.cta-banner {
  background: linear-gradient(160deg, var(--blue-800), var(--blue-950));
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-pop);
  color: #fff;
  text-align: center;
  padding: 3rem 1.75rem;
}
.cta-banner h2 { color: #fff; }
.cta-banner p { color: var(--blue-100); max-width: 34rem; margin-inline: auto; }
.cta-banner .btn { margin-top: 0.75rem; }
.cta-banner-note { font-size: 0.9rem; margin-top: 1rem; color: rgba(216, 228, 239, 0.8); }

/* table "inclus" (prix) */
.inc {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  overflow: hidden;
}
.inc-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  padding: 0.95rem 1.4rem;
  border-bottom: 1px dashed var(--line);
}
.inc-row:last-child { border-bottom: 0; }
.inc-row > span:first-child { font-weight: 600; }
.inc-note { display: block; font-weight: 400; font-size: 0.9rem; color: var(--muted); }
.inc-badge {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--amber-700);
  white-space: nowrap;
}

/* moyens de paiement */
.pay-row { display: flex; flex-wrap: wrap; gap: 0.9rem; }
.pay-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.55rem 1.15rem;
  font-weight: 600;
  font-size: 0.95rem;
}
.pay-chip svg { width: 1.2rem; height: 1.2rem; color: var(--blue-700); }

/* commande */
.order-grid { display: grid; gap: 1.5rem; align-items: start; }
@media (min-width: 48rem) { .order-grid { grid-template-columns: 1.05fr 0.95fr; } }
.order-line {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.8rem 0;
  border-bottom: 1px dashed var(--line);
}
.order-line > span:last-child {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--blue-900);
  white-space: nowrap;
}
.order-note { color: var(--muted); font-size: 0.92rem; margin: 0.9rem 0 1.4rem; }

/* rangée de réassurance */
.assure {
  display: grid;
  gap: 0.9rem;
  margin-top: 1.4rem;
}
@media (min-width: 44rem) { .assure { grid-template-columns: repeat(3, 1fr); } }
.assure-item {
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
  font-size: 0.92rem;
  color: var(--muted);
}
.assure-item svg { width: 1.25rem; height: 1.25rem; flex: none; color: var(--amber-600); margin-top: 0.1rem; }

/* étapes condensées */
.mini-steps { display: grid; gap: 1rem; counter-reset: ms; }
.mini-step {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.2rem 1.35rem;
  box-shadow: var(--shadow-card);
}
.mini-step b {
  display: block;
  font-family: var(--font-display);
  color: var(--blue-900);
  margin-bottom: 0.2rem;
}
.mini-step .tl-chip { margin-bottom: 0.55rem; }
.mini-step p { margin: 0; font-size: 0.95rem; color: var(--muted); }
@media (min-width: 48rem) { .mini-steps--row { grid-template-columns: repeat(3, 1fr); } }

/* progression (bienvenue) */
.prog { display: grid; gap: 0.9rem; margin: 2.25rem 0 2.75rem; }
@media (min-width: 44rem) { .prog { grid-template-columns: repeat(4, 1fr); } }
.prog-step {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.1rem 1rem;
  text-align: center;
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--muted);
}
.prog-step small { display: block; font-weight: 400; font-size: 0.82rem; margin-top: 0.2rem; }
.prog-ico {
  display: grid;
  place-items: center;
  width: 2.1rem;
  height: 2.1rem;
  margin: 0 auto 0.6rem;
  border-radius: 50%;
  background: var(--blue-50);
  color: var(--blue-700);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.85rem;
}
.prog-step--done { border-color: rgba(201, 125, 16, 0.4); background: var(--amber-100); color: var(--ink); }
.prog-step--done .prog-ico { background: var(--amber-500); color: var(--blue-950); }
.prog-step--now { border: 2px solid var(--blue-800); color: var(--ink); box-shadow: var(--shadow-card); }
.prog-step--now .prog-ico { background: var(--blue-800); color: #fff; }

/* emplacement d'intégration (GHL) */
.embed-slot {
  border: 2px dashed var(--line-cool);
  border-radius: var(--radius-lg);
  background: var(--card);
  min-height: 26rem;
  display: grid;
  place-content: center;
  justify-items: center;
  gap: 0.4rem;
  text-align: center;
  color: var(--blue-700);
  padding: 2rem;
}
.embed-slot svg { width: 3rem; height: 3rem; opacity: 0.65; margin-bottom: 0.5rem; }
.embed-slot p { margin: 0; }
.embed-note { color: var(--muted); font-size: 0.95rem; text-align: center; margin-top: 1rem; }

/* contact */
.contact-grid { display: grid; gap: 1.5rem; }
@media (min-width: 48rem) { .contact-grid { grid-template-columns: 1fr 1fr; } }
.contact-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  box-shadow: var(--shadow-card);
}
.contact-card h2 { font-size: 1.3rem; margin-bottom: 0.4rem; }
.contact-card p { color: var(--muted); }
.wa-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: #1DA851;
  color: #fff;
  border-radius: 999px;
  padding: 0.8rem 1.6rem;
  font-family: var(--font-display);
  font-weight: 700;
  text-decoration: none;
}
.wa-btn:hover { background: #178A42; }
.wa-btn svg { width: 1.4rem; height: 1.4rem; }
.mail-link {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--blue-800);
}

/* ---------- Produit : visuels par capacité ---------- */
.cap-visual { align-self: center; }
.mock-panel {
  background:
    radial-gradient(24rem 14rem at 85% -15%, rgba(232, 148, 15, 0.12), transparent 60%),
    linear-gradient(165deg, var(--blue-50), #DDE7F0);
  border: 1px solid var(--line-cool);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  aspect-ratio: 16 / 11;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.75rem;
  overflow: hidden;
  position: relative;
}
/* mockup avis Google */
.rev-stack { position: relative; width: min(100%, 300px); }
.rev-card {
  position: relative;
  z-index: 1;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow-pop);
  padding: 1.1rem 1.25rem;
}
.rev-card--behind {
  position: absolute;
  inset: 0;
  z-index: 0;
  transform: rotate(-4deg) translate(-12px, 14px);
  opacity: 0.5;
  box-shadow: var(--shadow-card);
}
.rev-head { display: flex; align-items: center; gap: 0.6rem; margin-bottom: 0.5rem; }
.rev-g {
  width: 32px; height: 32px; flex: none;
  border-radius: 50%;
  background: var(--blue-50);
  border: 1px solid var(--line-cool);
  display: grid; place-items: center;
  font-family: var(--font-display);
  font-weight: 800;
  color: var(--blue-700);
}
.rev-title { font-family: var(--font-display); font-weight: 700; font-size: 0.85rem; color: var(--blue-900); margin: 0; }
.rev-stars { color: var(--amber-500); font-size: 0.85rem; letter-spacing: 0.12em; }
.rev-text { font-size: 0.8rem; color: var(--muted); margin: 0.4rem 0 0; }
.rev-count {
  position: absolute;
  right: -8px; bottom: -14px;
  z-index: 2;
  background: var(--blue-800);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.72rem;
  border-radius: 999px;
  padding: 0.3rem 0.8rem;
  box-shadow: var(--shadow-card);
}
/* mockup relances J+3 / J+7 */
.mini-tl { display: grid; gap: 0.75rem; width: min(100%, 300px); }
.mini-tl-step {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  background: #fff;
  border-radius: 12px;
  box-shadow: var(--shadow-card);
  padding: 0.65rem 0.95rem;
  font-size: 0.84rem;
  color: var(--ink);
}
.mini-tl-step b { font-family: var(--font-display); color: var(--blue-900); white-space: nowrap; }
.mini-tl-dot {
  width: 11px; height: 11px; flex: none;
  border-radius: 50%;
  background: var(--blue-100);
}
.mini-tl-step--auto .mini-tl-dot { background: var(--amber-500); }
.mini-tl-step--won {
  background: var(--amber-100);
  border: 1px solid rgba(201, 125, 16, 0.35);
  font-weight: 700;
}
.mini-tl-step--won .mini-tl-dot { background: var(--amber-500); }

/* ---------- FAQ : chips + colonnes + état ouvert ---------- */
.faq-chips { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-bottom: 2.25rem; }
.faq-chip {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--blue-900);
  background: var(--card);
  border: 1.5px solid var(--line);
  border-radius: 999px;
  padding: 0.55rem 1.25rem;
  text-decoration: none;
}
.faq-chip:hover { border-color: var(--amber-500); color: var(--amber-700); }
.faq-item[open] {
  border-color: rgba(201, 125, 16, 0.55);
  box-shadow: inset 3px 0 0 var(--amber-500), var(--shadow-card);
}
@media (min-width: 60rem) {
  .faq-list--cols {
    display: block;
    column-count: 2;
    column-gap: 1.1rem;
  }
  .faq-list--cols .faq-item {
    break-inside: avoid;
    margin-bottom: 0.9rem;
  }
}

/* ---------- Formulaire de contact ---------- */
.contact-form-card { margin-bottom: 2.5rem; }
.contact-form {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.9rem;
  margin-top: 1.25rem;
}
.contact-form input,
.contact-form textarea {
  font: inherit;
  font-size: 1.02rem;
  padding: 0.9rem 1.1rem;
  border: 1.5px solid var(--line-cool);
  border-radius: 12px;
  background: var(--paper);
  color: var(--ink);
  width: 100%;
}
.contact-form textarea { resize: vertical; min-height: 7.5rem; }
.contact-form input:focus,
.contact-form textarea:focus {
  outline: 2px solid var(--amber-500);
  outline-offset: 1px;
  border-color: var(--amber-500);
}
.consent {
  display: flex;
  gap: 0.65rem;
  align-items: flex-start;
  font-size: 0.88rem;
  color: var(--muted);
}
.consent input {
  width: 1.15rem;
  height: 1.15rem;
  margin-top: 0.15rem;
  flex: none;
  accent-color: var(--amber-500);
}
.consent--order { margin: 0 0 1.1rem; }
.btn--disabled {
  opacity: 0.45;
  pointer-events: none;
  box-shadow: none;
}
@media (min-width: 44rem) {
  .contact-form { grid-template-columns: 1fr 1fr; }
  .contact-form .span-2 { grid-column: 1 / -1; }
  .contact-form .btn { justify-self: start; }
}

/* ---------- Page merci ---------- */
.merci {
  text-align: center;
  padding: 4.5rem 0 5rem;
}
.merci-check {
  width: 5.5rem;
  height: 5.5rem;
  margin: 0 auto 1.6rem;
  border-radius: 50%;
  background: var(--amber-500);
  color: var(--blue-950);
  display: grid;
  place-items: center;
  box-shadow: 0 0 0 10px var(--amber-100), 0 14px 30px -12px rgba(232, 148, 15, 0.7);
}
.merci-check svg { width: 2.7rem; height: 2.7rem; }
.merci h1 { font-size: clamp(1.9rem, 5vw, 2.8rem); }
.merci .section-sub { margin-inline: auto; }
.merci .mini-steps {
  text-align: left;
  max-width: 60rem;
  margin: 2.5rem auto;
}
.merci-mail {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--muted);
  font-size: 0.95rem;
  margin-bottom: 2.25rem;
}
.merci-mail svg { width: 1.25rem; height: 1.25rem; flex: none; color: var(--amber-700); }
.merci-count {
  color: var(--muted);
  font-size: 0.95rem;
  margin: 1.1rem 0 0;
}

/* ---------- Pages légales ---------- */
.legal-main {
  padding: 3.5rem 0 5rem;
  min-height: 60vh;
}
.legal-main h1 {
  font-size: clamp(1.9rem, 5vw, 2.6rem);
  margin-bottom: 0.4em;
}
.legal-updated {
  color: var(--muted);
  font-size: 0.95rem;
  margin-bottom: 2.5rem;
}
.legal-main h2 {
  font-size: 1.3rem;
  margin: 2.2em 0 0.5em;
}
.legal-main p, .legal-main li { color: var(--ink); }
.legal-main ul { padding-left: 1.2rem; margin-bottom: 1em; }
.legal-placeholder {
  background: var(--amber-100);
  border: 1px dashed rgba(201, 125, 16, 0.45);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  color: var(--amber-700);
  font-weight: 600;
  font-size: 0.95rem;
}
.footer-simple { padding: 2.5rem 0; }

/* ---------- Confort ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; }
  .js .worlds .world,
  .js .worlds .world-list li,
  .js .worlds-close,
  .js .tl-node,
  .js .tl-body {
    opacity: 1 !important;
    transform: none !important;
  }
  .js .tl-line { transform: none !important; }
  .js .cmp .cmp-check { transform: none !important; }
}
