/* ================================================================
   SimplifIA — styles.css
   ================================================================
   Tokens, base, components, sections, utilities.
   Mobile-first. Manrope. Lighthouse-friendly. WCAG AA.
   ================================================================ */

/* ---------- Reset + tokens ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }

:root {
  /* Palette */
  --navy: #0B2A5B;
  --navy-700: #163B7A;
  --navy-900: #061A33;
  --orange: #FF7A1A;
  --orange-600: #E66400;
  --orange-100: #FFE6D2;
  --cream: #F4F0EA;
  --white: #FFFFFF;
  --ink: #1A2333;
  --ink-soft: #333740;
  --muted: #6B7280;
  --muted-light: #9CA3AF;
  --line: #E5E7EB;
  --line-strong: #D1D5DB;
  --bg-soft: #F9F9F7;

  /* Type scale (mobile-first) */
  --t-h1: clamp(2.1rem, 5.5vw + 1rem, 3.6rem);
  --t-h2: clamp(1.6rem, 3vw + 0.8rem, 2.4rem);
  --t-h3: 1.2rem;
  --t-body: 1rem;
  --t-small: 0.875rem;
  --t-xs: 0.75rem;

  /* Spacing */
  --pad-x: clamp(1.25rem, 4vw, 4rem);
  --section-y: clamp(3.5rem, 8vw, 6rem);
  --max-w: 1200px;

  /* Radii + shadows */
  --r-sm: 6px;
  --r: 10px;
  --r-lg: 16px;
  --r-xl: 24px;
  --sh-sm: 0 1px 2px rgba(11,42,91,0.06);
  --sh: 0 4px 16px rgba(11,42,91,0.08);
  --sh-lg: 0 12px 40px rgba(11,42,91,0.12);
}

/* ---------- Base ---------- */
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: var(--t-body);
  line-height: 1.55;
  color: var(--ink-soft);
  background: var(--white);
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, svg { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }

/* Focus states (WCAG AA) */
:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 3px;
  border-radius: 4px;
}

/* Headings */
h1, h2, h3, h4 {
  color: var(--navy);
  font-weight: 700;
  letter-spacing: -0.015em;
  line-height: 1.1;
}
h1 { font-size: var(--t-h1); }
h2 { font-size: var(--t-h2); }
h3 { font-size: var(--t-h3); }

/* ---------- Layout primitives ---------- */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding-left: var(--pad-x);
  padding-right: var(--pad-x);
}

section { padding-top: var(--section-y); padding-bottom: var(--section-y); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.5rem;
  border-radius: var(--r);
  font-weight: 700;
  font-size: 0.95rem;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform .12s ease, background .15s ease, color .15s ease, box-shadow .15s ease;
  font-family: inherit;
  white-space: nowrap;
}
.btn--primary {
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(255,122,26,0.25);
}
.btn--primary:hover { background: var(--orange-600); transform: translateY(-1px); }
.btn--ghost {
  background: transparent;
  color: var(--navy);
  border-color: var(--line-strong);
}
.btn--ghost:hover { background: var(--navy); color: var(--white); border-color: var(--navy); }
.btn--white-on-orange {
  background: var(--white);
  color: var(--navy);
  box-shadow: 0 4px 14px rgba(11,42,91,0.18);
}
.btn--white-on-orange:hover { background: var(--navy); color: var(--white); }
.btn--sm { padding: 0.55rem 1rem; font-size: 0.875rem; }

/* ---------- NAV ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,0.92);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color .2s ease, background .2s ease;
}
.nav.is-scrolled {
  border-bottom-color: var(--line);
  background: rgba(255,255,255,0.96);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
.nav__logo {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.nav__logo img { height: 28px; }
.nav__links {
  display: none;
  gap: 2rem;
  list-style: none;
}
.nav__links a {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--ink-soft);
  transition: color .15s ease;
  white-space: nowrap;
}
.nav__links a:hover { color: var(--navy); }
.nav__cta-wrap { display: flex; align-items: center; gap: 0.6rem; }
.nav__toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 0;
  width: 40px; height: 40px;
  border-radius: var(--r-sm);
  cursor: pointer;
}
.nav__toggle svg { width: 22px; height: 22px; color: var(--navy); }
.nav__mobile {
  display: none;
  position: fixed;
  top: 68px; left: 0; right: 0;
  background: var(--white);
  border-bottom: 1px solid var(--line);
  padding: 1rem var(--pad-x) 1.5rem;
  box-shadow: var(--sh-lg);
}
.nav__mobile.is-open { display: block; }
.nav__mobile ul { list-style: none; display: flex; flex-direction: column; gap: 0.25rem; }
.nav__mobile a {
  display: block;
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--line);
  font-weight: 600;
  color: var(--ink-soft);
}
.nav__mobile .btn { margin-top: 1rem; width: 100%; justify-content: center; }

@media (min-width: 880px) {
  .nav__links { display: flex; }
  .nav__toggle { display: none; }
}

/* ---------- HERO ---------- */
.hero {
  padding-top: clamp(3rem, 8vw, 5rem);
  padding-bottom: clamp(3.5rem, 8vw, 6rem);
  position: relative;
  overflow: hidden;
  background: var(--white);
}
.hero::before {
  content: "";
  position: absolute;
  top: -120px; right: -120px;
  width: 480px; height: 480px;
  background: radial-gradient(circle, rgba(255,122,26,0.08) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}
.hero__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0.85rem;
  background: var(--cream);
  color: var(--navy);
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(11,42,91,0.08);
}
.hero__badge svg { width: 14px; height: 14px; color: var(--orange); }
.hero h1 {
  margin-bottom: 1.25rem;
  text-wrap: balance;
}
.hero h1 .accent {
  color: var(--orange);
  display: inline-block;
}
.hero__sub {
  font-size: clamp(1rem, 1.1vw + 0.7rem, 1.18rem);
  color: var(--ink-soft);
  margin-bottom: 2rem;
  max-width: 540px;
  text-wrap: pretty;
}
.hero__ctas { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-bottom: 1.75rem; }
.hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  color: var(--muted);
  font-size: 0.85rem;
  font-weight: 500;
}
.hero__meta span { display: inline-flex; align-items: center; gap: 0.4rem; }
.hero__meta svg { width: 14px; height: 14px; color: var(--orange); }

/* Hero illustration (hexagon assembly) */
.hero__visual {
  width: 100%;
  max-width: 460px;
  margin: 0 auto;
  position: relative;
  aspect-ratio: 1 / 1;
}
.hero__visual svg { width: 100%; height: 100%; }

@media (min-width: 980px) {
  .hero__grid { grid-template-columns: 1.1fr 0.9fr; gap: 4rem; }
  .hero__visual { max-width: 520px; }
}

/* ---------- APPROCHE ---------- */
.approche {
  background: var(--bg-soft);
}
.approche__intro {
  max-width: 760px;
  margin-bottom: 2.5rem;
}
.approche__eyebrow {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 0.85rem;
}
.approche h2 { margin-bottom: 1.5rem; text-wrap: balance; }
.approche__lead {
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--ink-soft);
  margin-bottom: 1rem;
}

/* Stack technique */
.stack {
  border-top: 1px solid var(--line);
  padding-top: 2rem;
}
.stack__label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1rem;
}
.stack__list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 2rem;
  margin-bottom: 1rem;
}
.stack__item {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: -0.005em;
  position: relative;
}
.stack__item:not(:last-child)::after {
  content: "·";
  margin-left: 2rem;
  color: var(--muted-light);
  font-weight: 400;
  position: absolute;
  right: -1.6rem;
  top: 0;
}
.stack__note {
  font-size: 0.78rem;
  color: var(--muted);
  font-style: italic;
}

/* ---------- OFFRES ---------- */
.offres__head { margin-bottom: 2.5rem; max-width: 720px; }
.offres__head h2 { margin-bottom: 0.75rem; }
.offres__head p { color: var(--muted); font-size: 1.05rem; }
.offres__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
@media (min-width: 720px) { .offres__grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1080px) { .offres__grid { grid-template-columns: repeat(3, 1fr); gap: 1.25rem; } }

.offre {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 1.75rem 1.5rem 1.5rem;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.offre:hover {
  transform: translateY(-3px);
  box-shadow: var(--sh-lg);
  border-color: var(--orange);
}
.offre--active { border-color: var(--orange); background: linear-gradient(180deg, #FFF9F2 0%, var(--white) 100%); }
.offre__status {
  position: absolute;
  top: 1rem; right: 1rem;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  background: var(--cream);
  color: var(--navy);
}
.offre__status--active { background: var(--orange); color: var(--white); }
.offre__icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  background: var(--cream);
  color: var(--navy);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.25rem;
}
.offre--active .offre__icon { background: var(--orange); color: var(--white); }
.offre__icon svg { width: 22px; height: 22px; }
.offre h3 {
  font-size: 1.15rem;
  margin-bottom: 0.4rem;
  line-height: 1.2;
}
.offre__sub {
  font-size: 0.92rem;
  color: var(--muted);
  font-weight: 500;
  margin-bottom: 0.75rem;
  font-style: italic;
}
.offre__body {
  font-size: 0.92rem;
  line-height: 1.5;
  color: var(--ink-soft);
  margin-bottom: 1rem;
  flex: 1;
}
.offre__notice {
  font-size: 0.78rem;
  color: var(--muted);
  background: var(--bg-soft);
  border-radius: var(--r-sm);
  padding: 0.6rem 0.75rem;
  margin-bottom: 1rem;
  line-height: 1.45;
  border-left: 2px solid var(--orange);
}
.offre__link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--navy);
  margin-top: auto;
  transition: gap .15s ease, color .15s ease;
}
.offre__link:hover { gap: 0.6rem; color: var(--orange); }

/* ---------- À PROPOS ---------- */
.about {
  background: var(--cream);
}
.about__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 920px) { .about__grid { grid-template-columns: 1.05fr 0.95fr; gap: 4rem; } }
.about h2 { margin-bottom: 1.5rem; text-wrap: balance; }
.about__lead {
  font-size: 1.05rem;
  line-height: 1.65;
  margin-bottom: 1.25rem;
  color: var(--ink-soft);
}
.about__aides {
  background: var(--white);
  border-radius: var(--r);
  padding: 1rem 1.25rem;
  border-left: 3px solid var(--orange);
  margin-bottom: 1.5rem;
}
.about__aides-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 0.4rem;
}
.about__aides p { font-size: 0.92rem; color: var(--ink-soft); }
.about__entity {
  font-size: 0.8rem;
  color: var(--muted);
  padding-top: 1rem;
  border-top: 1px solid rgba(0,0,0,0.08);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  letter-spacing: 0.01em;
}

/* Team cards */
.team {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 540px) { .team { grid-template-columns: repeat(3, 1fr); gap: 0.75rem; } }
.team-card {
  background: var(--white);
  border-radius: var(--r);
  padding: 1.25rem 1rem 1.1rem;
  text-align: center;
  border: 1px solid rgba(0,0,0,0.05);
}
.team-card__avatar {
  width: 56px; height: 56px;
  border-radius: 50%;
  margin: 0 auto 0.85rem;
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  font-weight: 800;
  font-size: 1.05rem;
  letter-spacing: 0.02em;
}
.team-card__avatar svg { width: 26px; height: 26px; }
.team-card__avatar--navy { background: var(--navy); }
.team-card__avatar--orange { background: var(--orange); }
.team-card__avatar--mix {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy) 50%, var(--orange) 50%, var(--orange) 100%);
}
.team-card__role {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.2rem;
  line-height: 1.2;
}
.team-card__line {
  font-size: 0.78rem;
  color: var(--muted);
  line-height: 1.3;
}

/* Reunion map block */
.about__map {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 1.5rem;
  margin-top: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  border: 1px solid rgba(0,0,0,0.05);
}
.about__map svg { flex-shrink: 0; }
.about__map-text { font-size: 0.88rem; line-height: 1.5; color: var(--ink-soft); }
.about__map-text strong { color: var(--navy); display: block; margin-bottom: 0.2rem; font-size: 0.95rem; }

/* ---------- FAQ ---------- */
.faq {
  background: var(--white);
}
.faq__head { max-width: 720px; margin-bottom: 2.5rem; }
.faq__head h2 { margin-bottom: 0.6rem; }
.faq__head p { color: var(--muted); font-size: 1.05rem; }
.faq__list { display: flex; flex-direction: column; gap: 0.75rem; }
.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--r);
  overflow: hidden;
  background: var(--white);
  transition: border-color .15s ease;
}
.faq-item[open] { border-color: var(--orange); }
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 1.1rem 1.25rem;
  font-weight: 700;
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.98rem;
  line-height: 1.3;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "";
  flex-shrink: 0;
  width: 22px; height: 22px;
  background: var(--cream);
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%230B2A5B' stroke-width='3' stroke-linecap='round'%3E%3Cpath d='M12 5v14M5 12h14'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  transition: transform .2s ease;
}
.faq-item[open] summary::after { transform: rotate(45deg); background-color: var(--orange); background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='3' stroke-linecap='round'%3E%3Cpath d='M12 5v14M5 12h14'/%3E%3C/svg%3E"); }
.faq-item__body {
  padding: 0 1.25rem 1.25rem;
  color: var(--ink-soft);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ---------- CONTACT (orange band) ---------- */
.contact {
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-600) 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.contact::before {
  content: "";
  position: absolute; top: -100px; left: -50px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(255,255,255,0.15) 0%, transparent 70%);
  pointer-events: none;
}
.contact .container { position: relative; z-index: 1; }
.contact h2 { color: var(--white); margin-bottom: 0.75rem; text-wrap: balance; }
.contact__lead {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.92);
  max-width: 600px;
  margin-bottom: 2.25rem;
}

.contact__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}
@media (min-width: 920px) { .contact__grid { grid-template-columns: 0.85fr 1.15fr; gap: 3rem; } }

.contact__direct { display: flex; flex-direction: column; gap: 1rem; }
.contact-card {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.22);
  backdrop-filter: blur(8px);
  border-radius: var(--r);
  padding: 1.25rem 1.4rem;
  display: flex; align-items: center; gap: 1rem;
  color: var(--white);
  transition: background .15s ease, transform .15s ease;
}
.contact-card:hover { background: rgba(255,255,255,0.2); transform: translateY(-2px); }
.contact-card__icon {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--white);
  color: var(--orange);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-card__icon svg { width: 20px; height: 20px; }
.contact-card__label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  display: block;
  margin-bottom: 0.15rem;
}
.contact-card__value {
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  display: block;
}

/* Form */
.contact-form {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 1.75rem 1.5rem 1.5rem;
  color: var(--ink-soft);
  box-shadow: 0 10px 40px rgba(0,0,0,0.12);
}
.contact-form__title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 1rem;
}
.field { display: flex; flex-direction: column; gap: 0.35rem; margin-bottom: 1rem; }
.field label {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 0.02em;
}
.field label .opt {
  color: var(--muted);
  font-weight: 500;
  text-transform: none;
  letter-spacing: 0;
}
.field input,
.field select,
.field textarea {
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--ink-soft);
  background: var(--white);
  border: 1.5px solid var(--line-strong);
  border-radius: var(--r-sm);
  padding: 0.7rem 0.85rem;
  width: 100%;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.field textarea { resize: vertical; min-height: 100px; }
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: 0;
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(255,122,26,0.15);
}
.field-row { display: grid; grid-template-columns: 1fr; gap: 1rem; margin-bottom: 1rem; }
.field-row .field { margin-bottom: 0; }
@media (min-width: 560px) { .field-row { grid-template-columns: 1fr 1fr; } }

.honeypot { position: absolute; left: -9999px; opacity: 0; pointer-events: none; }

.contact-form .btn { width: 100%; justify-content: center; padding: 0.95rem; font-size: 1rem; }
.form-rgpd {
  margin-top: 0.85rem;
  font-size: 0.74rem;
  color: var(--muted);
  line-height: 1.5;
}
.form-rgpd a { color: var(--navy); text-decoration: underline; text-underline-offset: 2px; }
.form-success {
  display: none;
  background: #ECFDF5;
  border: 1px solid #6EE7B7;
  color: #065F46;
  border-radius: var(--r);
  padding: 1rem 1.25rem;
  font-size: 0.95rem;
}
.form-success.is-visible { display: block; }

/* ---------- TRUST BAR ---------- */
.trust-bar {
  background: var(--navy);
  color: rgba(255,255,255,0.7);
  font-size: 0.82rem;
  padding: 1rem 0;
}
.trust-bar__inner {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2rem;
  justify-content: center;
  align-items: center;
}
.trust-bar span {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}
.trust-bar svg { width: 14px; height: 14px; color: var(--orange); flex-shrink: 0; }
.trust-bar strong { color: var(--white); font-weight: 600; }

/* ---------- FOOTER ---------- */
.footer {
  background: var(--navy-900);
  color: rgba(255,255,255,0.6);
  padding: 3.5rem 0 1.5rem;
  font-size: 0.85rem;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}
@media (min-width: 720px) { .footer__grid { grid-template-columns: 1.4fr 0.8fr 1fr; } }
.footer__brand-img { height: 28px; margin-bottom: 1rem; }
.footer__col h4 {
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.85rem;
}
.footer__col a {
  display: block;
  padding: 0.25rem 0;
  color: rgba(255,255,255,0.6);
  transition: color .15s ease;
}
.footer__col a:hover { color: var(--white); }
.footer__legal {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 1.25rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.5rem;
  justify-content: space-between;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
}
.footer__legal-info {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  letter-spacing: 0.02em;
}

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

/* ---------- LEGAL / PRIVACY pages ---------- */
.legal-page {
  padding: 4rem 0 5rem;
  max-width: 820px;
  margin: 0 auto;
}
.legal-page h1 {
  font-size: clamp(1.8rem, 3vw + 1rem, 2.4rem);
  margin-bottom: 0.5rem;
}
.legal-page__eyebrow {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 0.85rem;
  display: block;
}
.legal-page .updated {
  color: var(--muted);
  font-size: 0.85rem;
  margin-bottom: 2.5rem;
  display: block;
}
.legal-page h2 {
  font-size: 1.3rem;
  margin-top: 2.5rem;
  margin-bottom: 0.85rem;
  padding-bottom: 0.4rem;
  border-bottom: 1px solid var(--line);
}
.legal-page h3 {
  font-size: 1.05rem;
  margin-top: 1.5rem;
  margin-bottom: 0.6rem;
  color: var(--ink);
}
.legal-page p, .legal-page li { font-size: 0.95rem; line-height: 1.65; color: var(--ink-soft); }
.legal-page p { margin-bottom: 0.9rem; }
.legal-page ul, .legal-page ol { padding-left: 1.5rem; margin-bottom: 1rem; }
.legal-page li { margin-bottom: 0.45rem; }
.legal-page dl {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.3rem 1.5rem;
  margin-bottom: 1rem;
}
@media (min-width: 600px) {
  .legal-page dl { grid-template-columns: minmax(180px, max-content) 1fr; }
}
.legal-page dt { font-weight: 700; color: var(--navy); font-size: 0.9rem; }
.legal-page dd { font-size: 0.95rem; color: var(--ink-soft); margin-bottom: 0.4rem; }
.legal-page a { color: var(--orange); text-decoration: underline; text-underline-offset: 2px; }
.legal-page .back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 1.5rem;
  text-decoration: none;
  font-size: 0.9rem;
}
.legal-page .back-link:hover { color: var(--orange); }
.legal-page .info-box {
  background: var(--cream);
  border-left: 3px solid var(--orange);
  padding: 1rem 1.25rem;
  border-radius: var(--r-sm);
  margin: 1.25rem 0;
  font-size: 0.9rem;
}

/* ---------- VOICE sub-page hero ---------- */
.voice-hero {
  background: var(--navy);
  color: var(--white);
  padding: 5rem 0 4rem;
  position: relative;
  overflow: hidden;
}
.voice-hero::before {
  content: "";
  position: absolute; top: -100px; right: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(255,122,26,0.2) 0%, transparent 70%);
  pointer-events: none;
}
.voice-hero .container { position: relative; z-index: 1; }
.voice-hero__back {
  display: inline-flex; align-items: center; gap: 0.4rem;
  color: rgba(255,255,255,0.7);
  font-size: 0.88rem; font-weight: 600;
  margin-bottom: 1.5rem;
}
.voice-hero__back:hover { color: var(--orange); }
.voice-hero h1 { color: var(--white); max-width: 720px; margin-bottom: 1rem; }
.voice-hero h1 .accent { color: var(--orange); }
.voice-hero__sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.85);
  max-width: 640px;
  margin-bottom: 1.5rem;
}

/* ================================================================
   VOICE / ASSISTANT DEVIS — styles de la page voice.html
   ================================================================
   Surcharges + sections : hero v2, storytelling, timeline 3 étapes,
   démo live, fait/ne fait pas, pour qui, FAQ, comparaison, sticky CTA.
   Toutes les classes sont préfixées .voice- pour isolation.
   ================================================================ */

/* ---------- Tokens utilitaires Voice ---------- */
.voice-eyebrow-text {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 0.85rem;
}
.voice-eyebrow-text--center { text-align: center; }

.voice-section__head {
  max-width: 760px;
  margin-bottom: 2.5rem;
}
.voice-section__head h2 { margin-bottom: 0.75rem; text-wrap: balance; }
.voice-section__sub {
  font-size: 1.05rem;
  color: var(--ink-soft);
  line-height: 1.55;
  max-width: 620px;
}

/* ---------- HERO V2 ---------- */
.voice-hero--v2 {
  padding: clamp(2.5rem, 6vw, 4.5rem) 0 clamp(3rem, 6vw, 5rem);
  background: linear-gradient(180deg, var(--navy) 0%, #0E3066 100%);
}
.voice-hero--v2::after {
  content: "";
  position: absolute; bottom: -160px; left: -80px;
  width: 420px; height: 420px;
  background: radial-gradient(circle, rgba(255,122,26,0.10) 0%, transparent 70%);
  pointer-events: none;
}
.voice-hero__grid {
  position: relative; z-index: 2;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: start;
}
@media (min-width: 980px) {
  .voice-hero__grid { grid-template-columns: 1.15fr 0.85fr; gap: 3.5rem; align-items: center; }
}
.voice-hero__copy { min-width: 0; }
.voice-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.14);
  padding: 0.4rem 0.85rem 0.4rem 0.5rem;
  border-radius: 10px;
  margin-bottom: 1.5rem;
}
.voice-eyebrow__logo { width: 28px; height: 28px; border-radius: 6px; overflow: hidden; background: var(--white); display: flex; align-items: center; justify-content: center; }
.voice-eyebrow__logo img { width: 110%; height: auto; }
.voice-eyebrow__sep { width: 1px; height: 18px; background: rgba(255,255,255,0.25); }
.voice-eyebrow__label {
  font-size: 0.78rem; font-weight: 800;
  letter-spacing: 0.22em; color: var(--white);
}

.voice-hero--v2 h1 {
  color: var(--white);
  font-size: clamp(2.1rem, 4.2vw + 0.6rem, 3.4rem);
  letter-spacing: -0.02em;
  margin-bottom: 1.25rem;
  text-wrap: balance;
}
.voice-hero--v2 .accent { color: var(--orange); display: inline-block; }
.voice-hero--v2 .voice-hero__sub {
  font-size: clamp(1rem, 0.7vw + 0.85rem, 1.18rem);
  color: rgba(255,255,255,0.9);
  line-height: 1.6;
  max-width: 580px;
  margin-bottom: 1.75rem;
  text-wrap: pretty;
}
.voice-hero--v2 .voice-hero__sub mark {
  background: rgba(255,255,255,0.08);
  color: var(--white);
  border-radius: 4px;
  padding: 0.05em 0.4em;
  font-weight: 600;
}
.voice-hero--v2 .voice-hero__sub .accent-eq {
  color: var(--orange);
  font-weight: 800;
  padding: 0 0.2em;
}
.voice-hero__ctas { margin-bottom: 1.25rem; }
.voice-btn-ghost-dark {
  background: transparent !important;
  color: var(--white) !important;
  border-color: rgba(255,255,255,0.3) !important;
}
.voice-btn-ghost-dark:hover {
  background: rgba(255,255,255,0.08) !important;
  border-color: rgba(255,255,255,0.5) !important;
}

.voice-trust-chips {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}
.voice-trust-chips li {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(255,255,255,0.78);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
}
.voice-trust-chips svg { color: var(--orange); }

.voice-hero__floor {
  font-size: 0.74rem;
  letter-spacing: 0.22em;
  font-weight: 700;
  color: rgba(255,255,255,0.45);
  margin-top: 0.5rem;
}
.voice-hero__dot { color: rgba(255,255,255,0.3); padding: 0 0.4rem; }

/* ---------- HERO MOCKUP iPhone WhatsApp ---------- */
.voice-mockup {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  min-width: 0;
}
@media (min-width: 980px) { .voice-mockup { align-items: flex-end; } }

.voice-demo-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.16);
  padding: 0.6rem 1.1rem 0.6rem 0.6rem;
  border-radius: 12px;
  text-decoration: none;
  transition: background .15s ease, transform .15s ease, border-color .15s ease;
}
.voice-demo-pill:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.28); transform: translateY(-1px); }
.voice-demo-pill__play {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--orange);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 12px rgba(255,122,26,0.35);
  flex-shrink: 0;
}
.voice-demo-pill__play svg { margin-left: 2px; }
.voice-demo-pill__body { display: flex; flex-direction: column; line-height: 1.1; }
.voice-demo-pill__label {
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: rgba(255,255,255,0.6);
  white-space: nowrap;
}
.voice-demo-pill__num {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.005em;
  margin-top: 2px;
  white-space: nowrap;
}

/* ---------- [2] STORYTELLING ---------- */
.voice-story { background: var(--white); padding-top: clamp(3rem, 7vw, 5rem); padding-bottom: clamp(3rem, 7vw, 5rem); }
.voice-story__inner { max-width: 760px; }
.voice-story h2 {
  font-size: clamp(1.8rem, 2.6vw + 0.8rem, 2.6rem);
  margin-bottom: 1.5rem;
  text-wrap: balance;
}
.voice-story__lead {
  font-size: clamp(1.05rem, 0.6vw + 0.9rem, 1.18rem);
  line-height: 1.7;
  color: var(--ink-soft);
  text-wrap: pretty;
}
.voice-story__lead strong { color: var(--navy); }
.voice-story__stat {
  margin-top: 2rem;
  padding: 1.25rem 1.5rem;
  background: var(--cream);
  border-radius: var(--r-lg);
  border-left: 3px solid var(--orange);
  font-size: 1rem;
  color: var(--ink-soft);
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}

/* ---------- [3] TIMELINE 3 ÉTAPES ---------- */
.voice-steps { background: var(--bg-soft); }
.voice-timeline {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 880px) {
  .voice-timeline {
    grid-template-columns: 1fr auto 1fr auto 1fr;
    align-items: stretch;
    gap: 1rem;
  }
}
.voice-step {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 1.75rem 1.5rem 1.5rem;
  position: relative;
  display: flex;
  flex-direction: column;
}
.voice-step__num {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  color: var(--orange);
  margin-bottom: 0.75rem;
}
.voice-step__icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: var(--cream);
  color: var(--navy);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1rem;
}
.voice-step h3 {
  font-size: 1.15rem;
  color: var(--navy);
  margin-bottom: 0.4rem;
}
.voice-step p {
  font-size: 0.95rem;
  color: var(--ink-soft);
  line-height: 1.55;
}
.voice-step__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  opacity: 0.55;
}
.voice-step__arrow svg { transform: none; }
@media (max-width: 879px) {
  .voice-step__arrow { display: none; }
}

/* ---------- [4] DÉMO BAND ---------- */
.voice-demo-band {
  background: var(--cream);
}
.voice-demo-card {
  max-width: 720px;
  margin: 0 auto;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  padding: clamp(1.75rem, 4vw, 3rem);
  text-align: center;
  box-shadow: 0 10px 40px rgba(11,42,91,0.06);
}
.voice-demo-card h2 {
  font-size: clamp(1.6rem, 2.5vw + 0.8rem, 2.2rem);
  margin-bottom: 1rem;
  text-wrap: balance;
}
.voice-demo-card__lead {
  color: var(--ink-soft);
  font-size: 1.05rem;
  line-height: 1.6;
  margin-bottom: 1.75rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}
.voice-demo-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  background: var(--navy);
  color: var(--white);
  padding: 1rem 1.5rem;
  border-radius: var(--r-lg);
  text-decoration: none;
  font-weight: 800;
  font-size: clamp(1.2rem, 1.5vw + 0.5rem, 1.55rem);
  letter-spacing: -0.01em;
  transition: transform .15s ease, background .15s ease, box-shadow .15s ease;
  box-shadow: 0 8px 24px rgba(11,42,91,0.18);
}
.voice-demo-cta:hover { background: var(--navy-700); transform: translateY(-2px); box-shadow: 0 12px 32px rgba(11,42,91,0.25); }
.voice-demo-cta__num { white-space: nowrap; }
.voice-demo-cta__icon {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--orange);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(255,122,26,0.35);
}
.voice-demo-card__hint {
  margin-top: 1.5rem;
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.55;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}
.voice-demo-card__hint strong { color: var(--navy); }

/* ---------- [5] CE QU'ELLE FAIT / NE FAIT PAS ---------- */
.voice-scope { background: var(--white); }
.voice-scope__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
@media (min-width: 720px) { .voice-scope__grid { grid-template-columns: 1fr 1fr; } }

.voice-scope__col {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 1.75rem 1.75rem 1.5rem;
}
.voice-scope__col--do {
  background: var(--navy);
  color: var(--white);
}
.voice-scope__col--dont {
  background: var(--bg-soft);
  border: 1px solid var(--line);
}
.voice-scope__col-head {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}
.voice-scope__col-head h3 {
  font-size: 1.1rem;
  letter-spacing: 0.02em;
}
.voice-scope__col--do h3 { color: var(--white); }
.voice-scope__col--dont h3 { color: var(--navy); }
.voice-scope__badge {
  width: 28px; height: 28px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.voice-scope__badge--do { background: var(--orange); color: var(--white); }
.voice-scope__badge--dont { background: rgba(11,42,91,0.08); color: var(--navy); }
.voice-scope__col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.voice-scope__col li {
  position: relative;
  padding-left: 1.4rem;
  font-size: 0.98rem;
  line-height: 1.5;
}
.voice-scope__col--do li { color: rgba(255,255,255,0.92); }
.voice-scope__col--dont li { color: var(--ink-soft); }
.voice-scope__col li::before {
  content: "";
  position: absolute;
  left: 0; top: 0.55em;
  width: 8px; height: 8px;
  border-radius: 50%;
}
.voice-scope__col--do li::before { background: var(--orange); }
.voice-scope__col--dont li::before {
  background: transparent;
  border: 1.5px solid #B0B6BF;
  top: 0.5em;
}
.voice-scope__footer {
  margin-top: 1.75rem;
  text-align: center;
  font-size: 1rem;
  color: var(--muted);
  font-style: italic;
}
.voice-scope__footer strong { color: var(--navy); font-style: normal; font-weight: 700; }

/* ---------- [6] POUR QUI ? ---------- */
.voice-who { background: var(--bg-soft); }
.voice-who__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}
.voice-who__card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 1.5rem 1.4rem 1.4rem;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.voice-who__card:hover {
  transform: translateY(-3px);
  box-shadow: var(--sh-lg);
  border-color: var(--orange);
}
.voice-who__icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: var(--cream);
  color: var(--navy);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1rem;
  transition: background .2s ease, color .2s ease;
}
.voice-who__card:hover .voice-who__icon { background: var(--orange); color: var(--white); }
.voice-who__card h3 {
  font-size: 1.05rem;
  color: var(--navy);
  margin-bottom: 0.4rem;
}
.voice-who__example {
  font-size: 0.92rem;
  color: var(--muted);
  font-style: italic;
  line-height: 1.4;
}
.voice-who__floor {
  margin-top: 2rem;
  text-align: center;
  color: var(--muted);
  font-size: 0.95rem;
}
.voice-who__floor a { color: var(--orange); font-weight: 700; text-decoration: underline; text-underline-offset: 3px; }

/* ---------- [9] FAQ Voice ---------- */
.voice-faq { background: var(--white); }
.voice-faq__list { max-width: 820px; }

/* ---------- [10] COMPARAISON Avec / Sans ---------- */
.voice-compare { background: var(--bg-soft); }
.voice-compare__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 720px) { .voice-compare__grid { grid-template-columns: 1fr 1fr; gap: 1.25rem; } }
.voice-compare__col {
  border-radius: var(--r-lg);
  padding: 1.75rem 1.75rem 1.5rem;
  display: flex;
  flex-direction: column;
}
.voice-compare__col--without {
  background: var(--white);
  border: 1px solid var(--line);
}
.voice-compare__col--with {
  background: var(--navy);
  color: var(--white);
  box-shadow: 0 18px 40px rgba(11,42,91,0.18);
}
.voice-compare__col header { margin-bottom: 1.25rem; }
.voice-compare__tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  background: rgba(11,42,91,0.08);
  color: var(--muted);
  padding: 0.4rem 0.7rem;
  border-radius: 6px;
  white-space: nowrap;
}
.voice-compare__tag--with {
  background: var(--orange);
  color: var(--white);
}
.voice-compare__col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.voice-compare__col li {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  font-size: 0.98rem;
  line-height: 1.5;
}
.voice-compare__col--without li { color: var(--ink-soft); }
.voice-compare__col--without li svg { color: #B0B6BF; flex-shrink: 0; margin-top: 4px; }
.voice-compare__col--with li { color: rgba(255,255,255,0.95); }
.voice-compare__col--with li svg { color: var(--orange); flex-shrink: 0; margin-top: 4px; }

/* ---------- [11] CTA FINAL POLISH ---------- */
.voice-final__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}
.voice-final__phone {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.45);
}
.voice-final__phone:hover { background: rgba(255,255,255,0.08); border-color: var(--white); color: var(--white); }
.voice-final__whatsapp {
  background: #25D366;
  color: var(--white);
  border-color: #25D366;
}
.voice-final__whatsapp:hover { background: #1ebe5a; border-color: #1ebe5a; color: var(--white); transform: translateY(-1px); }

/* ---------- [13] STICKY CTA MOBILE ---------- */
.voice-sticky-cta {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  display: none;
  align-items: stretch;
  gap: 0.5rem;
  padding: 0.6rem 0.75rem calc(0.6rem + env(safe-area-inset-bottom, 0));
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-top: 1px solid var(--line);
  box-shadow: 0 -8px 24px rgba(11,42,91,0.08);
  z-index: 60;
  transform: translateY(110%);
  transition: transform .25s cubic-bezier(.4,0,.2,1);
}
.voice-sticky-cta.is-visible {
  transform: translateY(0);
}
.voice-sticky-cta__primary,
.voice-sticky-cta__secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  font-weight: 800;
  font-size: 0.92rem;
  text-decoration: none;
  border-radius: var(--r);
  padding: 0.85rem 0.9rem;
  letter-spacing: -0.005em;
  white-space: nowrap;
}
.voice-sticky-cta__primary {
  flex: 0 0 70%;
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(255,122,26,0.35);
}
.voice-sticky-cta__primary:active { transform: translateY(1px); }
.voice-sticky-cta__secondary {
  flex: 1 1 auto;
  background: var(--white);
  color: var(--navy);
  border: 1.5px solid var(--line-strong);
}
@media (max-width: 720px) {
  .voice-sticky-cta { display: flex; aria-hidden: false; }
  body.has-sticky-cta main { padding-bottom: 64px; }
}


/* =========================================
   HOMEPAGE — OFFRE ACTIVE (Voice wedge)
   ========================================= */
.active-offer {
  padding: clamp(3rem, 6vw, 5rem) 0;
  background: var(--cream);
  border-top: 1px solid rgba(11,42,91,0.06);
  border-bottom: 1px solid rgba(11,42,91,0.06);
}
.active-offer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 980px) {
  .active-offer__grid { grid-template-columns: 1.15fr 0.85fr; gap: 4rem; }
}
.active-offer__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.85rem;
  background: var(--white);
  color: var(--navy);
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
  border: 1px solid rgba(11,42,91,0.1);
}
.active-offer__dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 4px rgba(255,122,26,0.18);
  flex-shrink: 0;
}
.active-offer__copy h2 {
  font-size: clamp(1.7rem, 2.5vw + 0.6rem, 2.6rem);
  line-height: 1.15;
  margin-bottom: 1rem;
  text-wrap: balance;
}
.active-offer__copy h2 .accent { color: var(--orange); }
.active-offer__sub {
  font-size: 1.08rem;
  line-height: 1.55;
  color: var(--ink-soft);
  margin-bottom: 1.5rem;
  max-width: 520px;
}
.active-offer__bullets {
  list-style: none;
  padding: 0;
  margin: 0 0 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.active-offer__bullets li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.95rem;
  color: var(--ink-soft);
}
.active-offer__bullets svg { color: var(--orange); flex-shrink: 0; }
.active-offer__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.active-offer__mockup {
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (min-width: 980px) {
  .active-offer__mockup { justify-content: flex-end; }
}

/* Domaines d'expertise — label */
.team__label {
  grid-column: 1 / -1;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange);
  margin: 0 0 0.25rem;
}


/* =========================================
   HOMEPAGE — Voice flagship block additions
   ========================================= */

/* Demo number card — prominent phone CTA inside the flagship block */
.active-offer__demo {
  display: flex;
  align-items: stretch;
  gap: 1rem;
  margin: 1.5rem 0 1.75rem;
  padding: 0;
  background: var(--white);
  border: 1.5px solid var(--orange);
  border-radius: 14px;
  text-decoration: none;
  color: var(--navy);
  box-shadow: 0 10px 30px -16px rgba(255,122,26,0.45), 0 2px 8px rgba(11,42,91,0.06);
  transition: transform .18s ease, box-shadow .18s ease;
  max-width: 520px;
  overflow: hidden;
}
.active-offer__demo:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 36px -14px rgba(255,122,26,0.55), 0 4px 12px rgba(11,42,91,0.08);
}
.active-offer__demo-side {
  flex-shrink: 0;
  width: 64px;
  background: var(--orange);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
}
.active-offer__demo-side svg { width: 26px; height: 26px; }
.active-offer__demo-body {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  padding: 0.85rem 1.1rem 0.95rem;
  min-width: 0;
  flex: 1;
}
.active-offer__demo-label {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
}
.active-offer__demo-num {
  font-size: clamp(1.6rem, 2.2vw + 0.6rem, 2.2rem);
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.01em;
  line-height: 1.1;
  font-variant-numeric: tabular-nums;
}
.active-offer__demo-hint {
  font-size: 0.88rem;
  color: var(--ink-soft);
  font-weight: 500;
}

/* WhatsApp notification — dark mockup */
.wa-notif {
  width: 100%;
  max-width: 360px;
  background: #0B141A;
  border-radius: 26px;
  padding: 0;
  color: #E9EDEF;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  box-shadow:
    0 24px 60px -18px rgba(11,42,91,0.35),
    0 8px 22px rgba(0,0,0,0.18);
  overflow: hidden;
  position: relative;
  border: 1px solid rgba(255,255,255,0.04);
}
.wa-notif__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 18px 6px;
  font-size: 0.78rem;
  font-weight: 600;
  color: #E9EDEF;
  font-variant-numeric: tabular-nums;
}
.wa-notif__bar-icons {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #E9EDEF;
}
.wa-notif__bar-icons svg { width: 14px; height: 14px; }
.wa-notif__header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px 12px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.wa-notif__logo {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: #25D366;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.wa-notif__logo svg { width: 18px; height: 18px; }
.wa-notif__app {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
  flex: 1;
  min-width: 0;
}
.wa-notif__app strong {
  font-size: 0.82rem;
  font-weight: 600;
  color: #E9EDEF;
}
.wa-notif__app span {
  font-size: 0.7rem;
  color: #8696A0;
}
.wa-notif__brand {
  font-size: 0.7rem;
  color: #8696A0;
  font-weight: 500;
}
.wa-notif__bubble {
  background: #1F2C34;
  margin: 12px 14px 16px;
  padding: 14px 16px 10px;
  border-radius: 14px 14px 14px 4px;
  position: relative;
  box-shadow: 0 1px 0 rgba(255,255,255,0.02);
}
.wa-notif__line {
  margin: 0 0 6px;
  font-size: 0.86rem;
  line-height: 1.45;
  color: #E9EDEF;
  display: flex;
  align-items: flex-start;
  gap: 7px;
  flex-wrap: wrap;
}
.wa-notif__line strong {
  font-weight: 700;
  color: #FFFFFF;
}
.wa-notif__emo {
  flex-shrink: 0;
  font-size: 0.95rem;
  line-height: 1.3;
  font-family: "Apple Color Emoji", "Segoe UI Emoji", "Noto Color Emoji", "Twemoji", sans-serif;
}
.wa-notif__line--head {
  font-size: 0.9rem;
  margin-bottom: 4px;
}
.wa-notif__fields {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-bottom: 10px;
}
.wa-notif__fields .wa-notif__line {
  margin-bottom: 4px;
}
.wa-notif__footer {
  font-size: 0.72rem;
  color: #8696A0;
  font-style: italic;
  margin-top: 8px;
  margin-bottom: 2px;
}
.wa-notif__time {
  position: absolute;
  bottom: 6px;
  right: 10px;
  display: inline-flex;
  align-items: center;
  gap: 3px;
  font-size: 0.66rem;
  color: #8696A0;
  font-variant-numeric: tabular-nums;
}
.wa-notif__time svg {
  width: 14px;
  height: 10px;
  color: #53BDEB; /* WhatsApp "read" blue */
}

/* Mockup container: replace voice-phone constraint with wa-notif sizing */
.active-offer__mockup .wa-notif {
  max-width: 360px;
}

/* Mobile tweaks for the demo card */
@media (max-width: 560px) {
  .active-offer__demo { max-width: 100%; }
  .active-offer__demo-side { width: 52px; }
  .active-offer__demo-side svg { width: 22px; height: 22px; }
}


/* =========================================================================
   REPOSITIONING — Assistant Devis : new sections
   ========================================================================= */

/* ---- Le problème ---- */
.probleme {
  background: var(--navy);
  color: #fff;
  padding: clamp(3rem, 7vw, 5rem) 0;
}
.probleme__inner { max-width: 920px; }
.probleme__eyebrow {
  color: var(--orange);
  font-weight: 800;
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin: 0 0 1rem;
}
.probleme h2 {
  color: #fff;
  font-size: clamp(1.7rem, 3.2vw + 0.8rem, 2.7rem);
  line-height: 1.12;
  letter-spacing: -0.01em;
  margin: 0 0 1.1rem;
  text-wrap: balance;
}
.probleme__lead {
  color: rgba(255,255,255,0.82);
  font-size: clamp(1.05rem, 1.1vw + 0.7rem, 1.3rem);
  line-height: 1.55;
  margin: 0;
  max-width: 760px;
}
.probleme__lead strong { color: #fff; font-weight: 700; }

/* ---- Comment ça marche — 3 étapes ---- */
.etapes { padding: var(--section-y) 0; background: var(--white); }
.etapes__head { max-width: 720px; margin-bottom: clamp(2rem, 4vw, 3rem); }
.etapes__head h2 {
  color: var(--navy);
  margin: 0.6rem 0 0;
  letter-spacing: -0.01em;
  text-wrap: balance;
}
.etapes__grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: none;
}
@media (min-width: 880px) {
  .etapes__grid { grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
}
.etape {
  position: relative;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 1.75rem 1.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.etape__num {
  position: absolute;
  top: 1.25rem;
  right: 1.4rem;
  font-size: 2.6rem;
  font-weight: 800;
  line-height: 1;
  color: var(--orange-100);
  letter-spacing: -0.03em;
}
.etape__icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--navy);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.85rem;
}
.etape__icon svg { width: 24px; height: 24px; }
.etape h3 {
  color: var(--navy);
  font-size: 1.2rem;
  font-weight: 800;
  margin: 0 0 0.15rem;
  letter-spacing: -0.01em;
}
.etape p { color: var(--ink-soft); font-size: 0.98rem; line-height: 1.55; margin: 0; }

/* ---- wa-notif : variante « pré-devis à valider » (vert) ---- */
.wa-notif--devis { border-top: 3px solid #25D366; }
.wa-notif--devis .wa-notif__line--head strong { color: #fff; }
.wa-notif__muted { color: #8696A0; font-weight: 500; white-space: nowrap; }
.wa-notif__estimate {
  background: rgba(37,211,102,0.12);
  border-left: 3px solid #25D366;
  padding: 8px 10px;
  border-radius: 4px;
  margin: 8px 0 12px;
  font-size: 0.88rem;
  color: #D7F7E4;
}
.wa-notif__estimate strong { color: #fff; font-weight: 800; white-space: nowrap; }
.wa-notif__caption {
  margin: 0.85rem auto 0;
  max-width: 360px;
  font-size: 0.8rem;
  color: var(--muted);
  text-align: center;
  line-height: 1.45;
}
.wa-notif__caption strong { color: var(--navy); font-weight: 700; }

/* ---- L'architecture duplicable ---- */
.archi { padding: var(--section-y) 0; background: var(--cream); }
.archi__head { max-width: 760px; margin-bottom: clamp(2rem, 4vw, 3rem); }
.archi__head h2 { color: var(--navy); margin: 0.6rem 0 0.5rem; letter-spacing: -0.01em; text-wrap: balance; }
.archi__head p { color: var(--muted); font-size: 1.05rem; margin: 0; }

.archi__flow {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.85rem;
  max-width: 540px;
  margin: 0 auto;
}
.archi__col {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.archi__col-label {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 0.1rem;
  text-align: center;
}
.archi__chip {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  background: var(--white);
  border: 1px solid var(--line-strong);
  border-radius: 12px;
  padding: 0.85rem 1.1rem;
  font-weight: 700;
  color: var(--navy);
  font-size: 1rem;
  box-shadow: var(--sh-sm);
}
.archi__chip--out { border-color: var(--orange); background: #fff; }
.archi__chip-emo {
  font-size: 1.2rem;
  line-height: 1;
  flex-shrink: 0;
  font-family: "Apple Color Emoji","Segoe UI Emoji","Noto Color Emoji",sans-serif;
}
.archi__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  transform: rotate(90deg);
  height: 26px;
}
.archi__arrow svg { width: 34px; height: 16px; }
.archi__engine {
  background: var(--navy);
  color: #fff;
  border-radius: 16px;
  padding: 1.4rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.15rem;
  box-shadow: 0 12px 30px -12px rgba(11,42,91,0.5);
  position: relative;
}
.archi__engine-emo { font-size: 1.9rem; line-height: 1; margin-bottom: 0.3rem; font-family: "Apple Color Emoji","Segoe UI Emoji","Noto Color Emoji",sans-serif; }
.archi__engine-title { font-size: 1.3rem; font-weight: 800; letter-spacing: -0.01em; }
.archi__engine-sub {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--orange);
}
.archi__caption {
  max-width: 640px;
  margin: clamp(1.75rem, 4vw, 2.5rem) auto 0;
  text-align: center;
  color: var(--ink-soft);
  font-size: 1.02rem;
  line-height: 1.6;
  text-wrap: pretty;
}

/* Desktop : flux horizontal */
@media (min-width: 900px) {
  .archi__flow {
    flex-direction: row;
    align-items: stretch;
    max-width: 100%;
    gap: 1.25rem;
  }
  .archi__col { flex: 1; justify-content: center; }
  .archi__col--in, .archi__col--out { max-width: 280px; }
  .archi__arrow { transform: none; height: auto; align-items: center; flex-shrink: 0; }
  .archi__engine { flex-shrink: 0; min-width: 220px; justify-content: center; }
}


/* ---- voice.html : carte métier vedette + CTA ---- */
.voice-who__card--lead {
  border-color: var(--orange);
  box-shadow: 0 10px 30px -16px rgba(255,122,26,0.5);
  position: relative;
}
.voice-who__card--lead .voice-who__icon { background: var(--orange); color: #fff; }
.voice-who__tag-lead {
  display: inline-block;
  margin-left: 0.5rem;
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--orange);
  background: var(--orange-100);
  padding: 0.2rem 0.5rem;
  border-radius: 999px;
  vertical-align: middle;
}
.voice-who__card--cta {
  border-style: dashed;
  border-color: var(--line-strong);
  background: var(--bg-soft);
}
.voice-who__card--cta .voice-who__icon { background: var(--navy); color: #fff; }
.voice-who__card--cta .voice-who__example { font-style: normal; color: var(--ink-soft); }

/* =========================================================================
   DÉMO EN LIBRE-SERVICE (#demo) — WhatsApp + Voix
   Bloc isolé : pour le masquer, supprimer <section id="demo"> dans le HTML.
   Vert WhatsApp réservé au bouton WA + au mini-fil de chat (UI WhatsApp).
   ========================================================================= */
.demo { background: var(--white); }
.demo__card {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 980px;
  margin: 0 auto;
  background: var(--white);
  border: 1px solid var(--line);
  border-top: 4px solid var(--orange);
  border-radius: var(--r-xl);
  padding: clamp(1.6rem, 4vw, 3rem);
  box-shadow: var(--sh-lg);
}
@media (min-width: 900px) {
  .demo__card { grid-template-columns: 1.12fr 0.88fr; gap: 3rem; align-items: center; }
}
.demo__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--navy);
  background: var(--bg-soft);
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  border: 1px solid rgba(11,42,91,0.1);
}
.demo__dot { width: 8px; height: 8px; border-radius: 50%; background: var(--orange); flex-shrink: 0; }
.demo__copy h2 {
  font-size: clamp(1.7rem, 2.5vw + 0.6rem, 2.5rem);
  line-height: 1.13;
  margin: 1rem 0 0;
  text-wrap: balance;
}
.demo__copy h2 .accent { color: var(--orange); }
.demo__lead {
  font-size: 1.06rem;
  line-height: 1.55;
  color: var(--ink-soft);
  margin-top: 0.9rem;
  max-width: 46ch;
}
.demo__lead strong { color: var(--navy); font-weight: 700; }

/* Twin CTAs */
.demo__ctas { display: flex; flex-wrap: wrap; gap: 0.85rem; margin-top: 1.6rem; }
.demo__wa, .demo__voice {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.85rem 1.35rem;
  border-radius: var(--r);
  font-weight: 700;
  font-size: 1rem;
  border: 1.5px solid transparent;
  font-family: inherit;
  transition: transform .12s ease, background .15s ease, border-color .15s ease, box-shadow .15s ease;
}
.demo__wa {
  background: #25D366;
  color: #fff;
  box-shadow: 0 4px 14px rgba(37,211,102,0.3);
}
.demo__wa:hover { background: #1ebe5a; transform: translateY(-1px); }
.demo__wa svg { width: 20px; height: 20px; flex-shrink: 0; }
.demo__voice {
  background: var(--white);
  color: var(--navy);
  border-color: var(--line-strong);
  padding-top: 0.6rem;
  padding-bottom: 0.6rem;
}
.demo__voice:hover { border-color: var(--navy); transform: translateY(-1px); }
.demo__voice-ic { display: inline-flex; color: var(--orange); flex-shrink: 0; }
.demo__voice-ic svg { width: 22px; height: 22px; }
.demo__voice-txt { display: flex; flex-direction: column; line-height: 1.2; text-align: left; }
.demo__voice-num { font-size: 0.8rem; font-weight: 600; color: var(--muted); font-variant-numeric: tabular-nums; }
.demo__reassure { margin-top: 0.95rem; font-size: 0.84rem; font-weight: 600; color: var(--muted); }

/* Clim + adaptable callout */
.demo__adapt {
  margin-top: 1.5rem;
  padding: 1rem 1.15rem;
  background: var(--bg-soft);
  border-left: 3px solid var(--orange);
  border-radius: 0 var(--r) var(--r) 0;
  font-size: 0.92rem;
  line-height: 1.5;
  color: var(--ink-soft);
}
.demo__adapt strong { color: var(--navy); font-weight: 700; }

/* Mini WhatsApp thread (illustratif) */
.demo__thread { position: relative; }
.demo__thread-tag {
  position: absolute;
  top: -11px;
  left: 16px;
  z-index: 2;
  background: var(--navy);
  color: #fff;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.32rem 0.7rem;
  border-radius: 999px;
}
.demo__chat {
  background: #0B141A;
  border: 1px solid rgba(255,255,255,0.04);
  border-radius: 18px;
  padding: 1.9rem 1rem 1.1rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  box-shadow: var(--sh-lg);
}
.demo__msg {
  max-width: 86%;
  padding: 0.55rem 0.72rem;
  border-radius: 10px;
  font-size: 0.85rem;
  line-height: 1.42;
  margin: 0;
}
.demo__msg--in { align-self: flex-start; background: #1F2C34; color: #E9EDEF; border-top-left-radius: 3px; }
.demo__msg--out { align-self: flex-end; background: #005C4B; color: #E9EDEF; border-top-right-radius: 3px; }
.demo__msg strong { color: #fff; font-weight: 700; }
.demo__msg time { display: block; text-align: right; font-size: 0.62rem; color: #8696A0; margin-top: 0.2rem; }

/* Human path — distinct du chemin automatisé */
.demo__human {
  max-width: 980px;
  margin: 1.5rem auto 0;
  text-align: center;
  font-size: 0.9rem;
  color: var(--muted);
}
.demo__human a { color: var(--navy); font-weight: 700; border-bottom: 1.5px solid var(--orange); }
.demo__human a:hover { color: var(--orange); }

/* =========================================================================
   PAGE /voice — refonte « parcours complet »
   ========================================================================= */

/* ---- [1] HERO text-led (navy, mono-colonne) ---- */
.voice-hero--lead { padding-bottom: clamp(2.5rem, 5vw, 4rem); }
.voice-hero__lead-inner { max-width: 760px; }
.voice-hero--lead h1 {
  font-size: clamp(2rem, 3.2vw + 1rem, 3.3rem);
  line-height: 1.08;
  margin: 1.1rem 0 0;
  text-wrap: balance;
}
.voice-hero--lead .voice-hero__sub { max-width: 620px; margin-top: 1.1rem; }
.voice-hero--lead .voice-hero__ctas { margin-bottom: 1.1rem; flex-wrap: wrap; }
.voice-hero__reassure {
  font-size: 0.86rem;
  font-weight: 600;
  color: rgba(255,255,255,0.66);
}
.voice-hero__reassure span { color: rgba(255,255,255,0.32); padding: 0 0.35rem; }

/* ---- [3] PARCOURS 5 étapes (vertical, mobile-first) ---- */
.voice-journey { background: var(--bg-soft); }
.voice-journey__list {
  list-style: none;
  max-width: 820px;
  margin: 0 auto;
  display: grid;
  gap: 0.9rem;
  counter-reset: jstep;
}
.voice-jstep {
  display: flex;
  align-items: flex-start;
  gap: 1.1rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 1.25rem 1.4rem;
  box-shadow: 0 4px 18px rgba(11,42,91,0.04);
  position: relative;
  transition: transform .15s ease, box-shadow .15s ease;
}
.voice-jstep:hover { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(11,42,91,0.08); }
.voice-jstep__num {
  flex-shrink: 0;
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  font-weight: 800;
  font-size: 1.05rem;
  display: flex; align-items: center; justify-content: center;
  font-variant-numeric: tabular-nums;
}
.voice-jstep__body { min-width: 0; }
.voice-jstep__icon {
  display: inline-flex;
  color: var(--orange);
  margin-bottom: 0.4rem;
}
.voice-jstep__body h3 {
  font-size: 1.12rem;
  color: var(--navy);
  margin: 0 0 0.35rem;
  line-height: 1.25;
}
.voice-jstep__body h3 .accent { color: var(--orange); }
.voice-jstep__body p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.97rem;
  line-height: 1.55;
}
.voice-journey__note {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  justify-content: center;
  max-width: 820px;
  margin: 1.4rem auto 0;
  padding: 0.85rem 1.1rem;
  background: rgba(11,42,91,0.04);
  border-radius: var(--r);
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--navy);
  text-align: center;
  text-wrap: balance;
}
.voice-journey__note svg { color: var(--orange); flex-shrink: 0; }

@media (min-width: 760px) {
  .voice-jstep { padding: 1.4rem 1.7rem; gap: 1.3rem; }
  .voice-jstep__body h3 { font-size: 1.2rem; }
}

/* ---- [5] EXEMPLE CONCRET — carte WhatsApp (crème, en-tête vert) ---- */
.voice-example { background: var(--white); }
.voice-example__card {
  max-width: 480px;
  margin: 0 auto;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 18px 50px rgba(11,42,91,0.12);
  border: 1px solid var(--line);
}
.voice-example__head {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  background: #075E54;
  padding: 0.8rem 1rem;
}
.voice-example__avatar {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.voice-example__avatar svg { width: 20px; height: 20px; }
.voice-example__id { display: flex; flex-direction: column; line-height: 1.2; }
.voice-example__id strong { color: #fff; font-size: 0.95rem; }
.voice-example__id span { color: rgba(255,255,255,0.7); font-size: 0.75rem; }
.voice-example__body {
  background: #F4F0EA;
  padding: 1.2rem 1.15rem 1.5rem;
  position: relative;
}
.voice-example__line {
  margin: 0 0 0.5rem;
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--ink);
  display: flex;
  gap: 0.5rem;
  align-items: baseline;
}
.voice-example__line span[aria-hidden] { flex-shrink: 0; }
.voice-example__line--head {
  font-size: 1rem;
  padding-bottom: 0.7rem;
  margin-bottom: 0.7rem;
  border-bottom: 1px solid rgba(11,42,91,0.1);
}
.voice-example__muted { color: var(--muted); font-weight: 500; }
.voice-example__estimate {
  margin-top: 0.7rem;
  padding-top: 0.7rem;
  border-top: 1px solid rgba(11,42,91,0.1);
  font-size: 1rem;
}
.voice-example__estimate strong { color: var(--orange); }
.voice-example__foot {
  font-style: italic;
  color: var(--ink-soft);
  font-size: 0.88rem;
  margin-top: 0.6rem;
}
.voice-example__time {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  justify-content: flex-end;
  font-size: 0.68rem;
  color: var(--muted);
  margin-top: 0.4rem;
}
.voice-example__time svg { width: 14px; height: 11px; color: #34B7F1; }
.voice-example__mention {
  max-width: 480px;
  margin: 1.1rem auto 0;
  text-align: center;
  font-size: 0.86rem;
  color: var(--muted);
  line-height: 1.5;
}
.voice-example__mention strong { color: var(--navy); }

/* ---- [6] DÉMO — centrage des CTA jumeaux dans la carte ---- */
.demo__ctas--center { justify-content: center; margin-top: 1.6rem; }

/* ---- [9] COMMENT ON TRAVAILLE ---- */
.voice-method { background: var(--white); }
.voice-method__inner { max-width: 720px; }
.voice-method h2 {
  font-size: clamp(1.7rem, 2.5vw + 0.7rem, 2.4rem);
  color: var(--navy);
  margin: 0.6rem 0 1rem;
  text-wrap: balance;
}
.voice-method__lead {
  font-size: 1.08rem;
  line-height: 1.6;
  color: var(--ink-soft);
  margin: 0 0 1.6rem;
}
.voice-method__lead strong { color: var(--navy); font-weight: 700; }
.voice-method__cta { display: inline-flex; }

/* ---- [10] CTA FINAL — note rappel ---- */
.voice-final__note {
  margin-top: 1.1rem;
  font-size: 0.92rem;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
}
.voice-final__note strong { color: var(--white); }

/* =========================================================
   AJOUTS — Calculateur · Avant/Avec · Comment ça se passe
   ========================================================= */

/* ---- [2b] CALCULATEUR ---- */
.calc { background: var(--cream); }
.calc__card {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1.5rem, 4vw, 2.75rem);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  padding: clamp(1.5rem, 4vw, 2.5rem);
  box-shadow: var(--sh);
}
@media (min-width: 860px) {
  .calc__card { grid-template-columns: 1.1fr 0.9fr; align-items: stretch; }
}
.calc__sliders { display: flex; flex-direction: column; gap: 1.5rem; }
.calc__row-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  margin-bottom: 0.7rem;
}
.calc__row-head label {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--ink-soft);
  line-height: 1.35;
}
.calc__val {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.01em;
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
}
.calc__range {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 6px;
  border-radius: 999px;
  background: var(--line);
  accent-color: var(--orange);
  cursor: pointer;
}
.calc__range::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--orange);
  border: 3px solid var(--white);
  box-shadow: 0 2px 8px rgba(255,122,26,0.4);
  cursor: pointer;
}
.calc__range::-moz-range-thumb {
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--orange);
  border: 3px solid var(--white);
  box-shadow: 0 2px 8px rgba(255,122,26,0.4);
  cursor: pointer;
}
.calc__result {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  background: var(--navy);
  border-radius: var(--r-lg);
  padding: clamp(1.5rem, 3vw, 2rem);
  color: rgba(255,255,255,0.85);
}
.calc__result-label {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-bottom: 0.5rem;
}
.calc__result-num {
  font-size: clamp(2.4rem, 6vw, 3.4rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--orange);
  font-variant-numeric: tabular-nums;
  margin-bottom: 1rem;
}
.calc__disclaimer {
  font-size: 0.85rem;
  line-height: 1.55;
  color: rgba(255,255,255,0.7);
  margin-bottom: 1.5rem;
  text-wrap: pretty;
}
.calc__cta { align-self: stretch; justify-content: center; }
@media (min-width: 520px) { .calc__cta { align-self: flex-start; } }

/* ---- [3b] AVANT / AVEC ---- */
.compare { background: var(--white); }
.compare__grid { display: flex; flex-direction: column; gap: 0.85rem; }
.compare__head-row { display: none; }
.compare__row {
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 1.25rem;
  background: var(--bg-soft);
}
.compare__task {
  font-size: 1.05rem;
  color: var(--navy);
  margin-bottom: 1rem;
  line-height: 1.3;
}
.compare__cell { padding: 0.5rem 0; }
.compare__cell + .compare__cell { border-top: 1px solid var(--line); margin-top: 0.25rem; }
.compare__tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.3rem;
}
.compare__cell--today .compare__tag { color: var(--muted); }
.compare__cell--with .compare__tag { color: var(--orange); }
.compare__cell p { font-size: 0.95rem; line-height: 1.5; color: var(--ink-soft); }
.compare__cell--today p { color: var(--muted); }
.compare__cell--with p { color: var(--ink-soft); font-weight: 600; }

@media (min-width: 800px) {
  .compare__grid { gap: 0; border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; }
  .compare__head-row {
    display: grid;
    grid-template-columns: 1.1fr 1fr 1fr;
    background: var(--navy);
  }
  .compare__head-cell {
    padding: 1rem 1.25rem;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.9);
  }
  .compare__head-cell--with { color: var(--white); background: rgba(255,122,26,0.18); }
  .compare__row {
    display: grid;
    grid-template-columns: 1.1fr 1fr 1fr;
    align-items: stretch;
    border: 0;
    border-top: 1px solid var(--line);
    border-radius: 0;
    padding: 0;
    background: var(--white);
  }
  .compare__row:first-of-type { border-top: 0; }
  .compare__task {
    padding: 1.25rem 1.25rem;
    margin: 0;
    font-size: 1rem;
    display: flex;
    align-items: center;
    background: var(--bg-soft);
  }
  .compare__cell {
    padding: 1.25rem;
    border: 0;
    margin: 0;
  }
  .compare__cell--with { background: #FFF9F2; }
  .compare__cell + .compare__cell { border-top: 0; border-left: 1px solid var(--line); margin: 0; }
  .compare__row .compare__tag { display: none; }
}

/* ---- [9b] COMMENT ÇA SE PASSE — timeline 4 étapes ---- */
.howto { background: var(--bg-soft); }
.howto__steps {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 600px) { .howto__steps { grid-template-columns: 1fr 1fr; } }
@media (min-width: 980px) { .howto__steps { grid-template-columns: repeat(4, 1fr); } }
.howto__step {
  position: relative;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 1.75rem 1.5rem 1.5rem;
  display: flex;
  flex-direction: column;
}
.howto__num {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  font-size: 1.6rem;
  font-weight: 800;
  line-height: 1;
  color: var(--line-strong);
  letter-spacing: -0.02em;
}
.howto__icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: var(--cream);
  color: var(--navy);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1rem;
}
.howto__step h3 {
  font-size: 1.1rem;
  color: var(--navy);
  margin-bottom: 0.4rem;
  line-height: 1.25;
}
.howto__meta {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--orange);
  margin-top: 0.2rem;
}
.howto__step p { font-size: 0.95rem; color: var(--ink-soft); line-height: 1.55; }
.howto__step p strong { color: var(--navy); }
.howto__note {
  margin-top: 2rem;
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--ink-soft);
  max-width: 640px;
  padding-left: 1rem;
  border-left: 3px solid var(--orange);
}
