/* ── RESET & BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* ── Brand (charte préservée) ── */
  --bleu-nuit:   #0D2455;
  --bleu-marine: #193E75;
  --bleu-pale:   #2A5BA8;
  --or-jasmin:   #C69C55;
  --or-sombre:   #9A7435;
  --or-clair:    #EED590;
  --or-pale:     #F8F0D8;

  /* ── Surfaces ── */
  --fond-creme:  #FDFBF7;
  --gris-doux:   #F6F4EF;
  --white:       #FFFFFF;

  /* ── Encre / texte (ramp neutre chaud, contraste AA) ── */
  --texte-corp:  #2E3038;
  --texte-muted: #5E626C;
  --texte-faint: #8A8D96;
  --border:        rgba(13,36,85,0.08);
  --border-strong: rgba(13,36,85,0.14);

  /* ── Ombres feuilletées (profondeur douce, style Stripe) ── */
  --shadow-xs:   0 1px 2px rgba(13,36,85,.05);
  --shadow-sm:   0 2px 8px rgba(13,36,85,.05), 0 1px 3px rgba(13,36,85,.04);
  --shadow-md:   0 12px 32px rgba(13,36,85,.09), 0 3px 8px rgba(13,36,85,.05);
  --shadow-lg:   0 32px 64px rgba(13,36,85,.13), 0 10px 24px rgba(13,36,85,.06);
  --shadow-gold: 0 10px 30px rgba(198,156,85,.32);

  /* ── Rayons — coins nets = signal luxe éditorial (charte) ── */
  --radius:      2px;
  --radius-lg:   6px;

  /* ── Échelle d'espacement (base 8pt) ── */
  --space-2: 8px;   --space-3: 12px;  --space-4: 16px;  --space-6: 24px;
  --space-8: 32px;  --space-12: 48px; --space-16: 64px; --space-24: 96px;

  /* ── Motion ── */
  --transition:  .25s ease;
  --ease-out:    cubic-bezier(.16,1,.3,1);
  --ease-spring: cubic-bezier(.34,1.56,.64,1);
}

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

body {
  font-family: 'Jost', sans-serif;
  color: var(--texte-corp);
  background: var(--fond-creme);
  line-height: 1.7;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
::selection { background: var(--or-pale); color: var(--bleu-nuit); }

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 32px;
}

/* ── SCROLL REVEAL ── */
.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity .8s var(--ease-out), transform .8s var(--ease-out);
  will-change: opacity, transform;
}
.reveal.visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: .08s; }
.reveal-delay-2 { transition-delay: .16s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: var(--radius);
  font-family: 'Jost', sans-serif;
  font-weight: 500;
  font-size: .85rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  cursor: pointer;
  border: 1px solid transparent;
  transition: all var(--transition);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,.25) 50%, transparent 70%);
  transform: translateX(-120%);
  transition: transform .6s ease;
}
.btn:hover::after { transform: translateX(120%); }

.btn--primary {
  background: linear-gradient(180deg, #D3AC63 0%, var(--or-jasmin) 100%);
  color: var(--white);
  border-color: var(--or-sombre);
  box-shadow: var(--shadow-sm), inset 0 1px 0 rgba(255,255,255,.28);
  transition: transform .3s var(--ease-spring), box-shadow .3s var(--ease-out), background .3s var(--ease-out);
}
.btn--primary:hover:not(:disabled) {
  background: linear-gradient(180deg, var(--or-jasmin) 0%, var(--or-sombre) 100%);
  box-shadow: var(--shadow-gold), inset 0 1px 0 rgba(255,255,255,.2);
  transform: translateY(-2px);
}
.btn--primary:disabled { opacity: .4; cursor: not-allowed; }

.btn--ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.4);
}
.btn--ghost:hover { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.8); }

.btn--ghost-dark {
  background: transparent;
  color: var(--texte-muted);
  border-color: var(--border);
}
.btn--ghost-dark:hover { color: var(--bleu-nuit); border-color: var(--bleu-nuit); }

/* Bouton secondaire (contour doré) — CTA recrutement */
.btn--ghost-gold {
  background: transparent;
  color: var(--or-sombre);
  border-color: var(--or-jasmin);
}
.btn--ghost-gold:hover:not(:disabled) {
  background: var(--or-jasmin);
  color: var(--white);
  border-color: var(--or-jasmin);
  box-shadow: 0 8px 24px rgba(198,156,85,.28);
  transform: translateY(-2px);
}

.btn--lg { padding: 16px 36px; font-size: .88rem; }
.btn--full { width: 100%; }

/* ── TOPBAR ── */
.topbar {
  background: var(--bleu-nuit);
  color: rgba(255,255,255,.65);
  font-size: .78rem;
  letter-spacing: .5px;
  padding: 9px 0;
}
.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.topbar__inner strong { color: var(--or-clair); font-weight: 500; }
.topbar__actions { display: flex; gap: 28px; }
.topbar__actions a {
  color: var(--or-jasmin);
  font-weight: 500;
  letter-spacing: 1px;
  transition: color var(--transition);
}
.topbar__actions a:hover { color: var(--or-clair); }

/* ── HEADER ── */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--transition);
}
.header.scrolled { box-shadow: 0 6px 30px rgba(13,36,85,.10); }
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 84px;
}

.logo { display: flex; align-items: center; }
.logo__img {
  height: 68px;
  width: auto;
  object-fit: contain;
  transition: transform var(--transition);
}
.logo:hover .logo__img { transform: scale(1.03); }

.nav { display: flex; gap: 2px; }
.nav__link {
  padding: 8px 12px;
  font-size: .76rem;
  font-weight: 500;
  letter-spacing: .8px;
  text-transform: uppercase;
  white-space: nowrap;
  color: var(--texte-corp);
  transition: color var(--transition);
  position: relative;
}
.nav__link::after {
  content: '';
  position: absolute;
  left: 12px; right: 12px; bottom: 2px;
  height: 1.5px;
  background: var(--or-jasmin);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s var(--ease-out);
}
.nav__link:hover { color: var(--or-jasmin); }
.nav__link:hover::after { transform: scaleX(1); }

.header__cta { display: flex; align-items: center; gap: 12px; }

/* Lien recrutement réservé au menu burger (caché en desktop) */
.nav__link--mobile-only { display: none; }

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  background: none;
  border: none;
  cursor: pointer;
}
.burger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--bleu-nuit);
  transition: all var(--transition);
}

/* ── SECTION COMMONS ── */
.section { padding: 120px 0; }

.section-header {
  text-align: center;
  max-width: 660px;
  margin: 0 auto 72px;
}

/* ── FOCUS (accessibilité — agency-tier detail) ── */
:focus-visible {
  outline: 2px solid var(--or-jasmin);
  outline-offset: 3px;
  border-radius: var(--radius);
}
:focus:not(:focus-visible) { outline: none; }

.section-tag {
  display: inline-block;
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--or-jasmin);
  margin-bottom: 16px;
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.1rem, 4.2vw, 3rem);
  font-weight: 400;
  color: var(--bleu-nuit);
  line-height: 1.12;
  letter-spacing: -0.01em;
  margin-bottom: 18px;
}

.section-sub {
  color: var(--texte-muted);
  font-size: 1rem;
  line-height: 1.8;
  font-weight: 300;
  max-width: 60ch;
  margin-inline: auto;
}

/* ── HERO ── */
.hero {
  background: linear-gradient(135deg, var(--bleu-nuit) 0%, var(--bleu-marine) 60%, #1a4080 100%);
  color: var(--white);
  padding: 110px 0 100px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(198,156,85,.12) 0%, transparent 70%);
  border-radius: 50%;
  animation: drift 18s ease-in-out infinite;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -60px; left: 8%;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(198,156,85,.07) 0%, transparent 70%);
  border-radius: 50%;
  animation: drift 22s ease-in-out infinite reverse;
}
@keyframes drift {
  0%,100% { transform: translate(0,0); }
  50% { transform: translate(-30px, 30px); }
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.badge {
  display: inline-block;
  padding: 5px 16px;
  background: rgba(198,156,85,.15);
  border: 1px solid rgba(198,156,85,.35);
  border-radius: var(--radius);
  color: var(--or-jasmin);
  font-size: .68rem;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.hero__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 300;
  line-height: 1.15;
  margin-bottom: 24px;
  color: var(--white);
}
.hero__title em { font-style: italic; color: var(--or-clair); }

.hero__divider {
  width: 50px; height: 1px;
  background: linear-gradient(90deg, var(--or-jasmin), transparent);
  margin-bottom: 24px;
}

.hero__sub {
  font-size: 1rem;
  color: rgba(255,255,255,.65);
  line-height: 1.85;
  font-weight: 300;
  margin-bottom: 40px;
  max-width: 440px;
}

.hero__actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 56px; }

.hero__trust {
  display: flex;
  align-items: center;
  gap: 32px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,.10);
}
.trust-item strong {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--or-clair);
  line-height: 1;
  margin-bottom: 2px;
}
.trust-item span {
  font-size: .72rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,.45);
}
.trust-sep { width: 1px; height: 40px; background: rgba(255,255,255,.12); }

.hero__visual {
  position: relative;
  height: 480px;
}
.hero__blob {
  position: absolute;
  width: 380px; height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(198,156,85,.14), transparent 70%);
  top: 50%; left: 54%;
  transform: translate(-50%,-50%);
  pointer-events: none;
}

/* Glass card base (positioned via offsets — no transform, so float stays intact) */
.hero__card {
  position: absolute;
  background: rgba(255,255,255,.07);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(198,156,85,.25);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  animation: float 6s ease-in-out infinite;
}
.hero__card strong {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  color: var(--white);
}
@keyframes float {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

/* ── Carte principale — intervenant attitré ── */
.hero__showcase {
  top: 62px; right: 0;
  width: 342px;
  padding: 26px 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  z-index: 2;
}
.showcase__top { display: flex; align-items: center; gap: 15px; }
.showcase__avatar {
  position: relative;
  flex-shrink: 0;
  width: 58px; height: 58px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--or-jasmin), var(--or-sombre));
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  box-shadow: var(--shadow-gold);
}
.showcase__avatar > svg { width: 30px; height: 30px; }
.showcase__verified {
  position: absolute;
  bottom: -3px; right: -3px;
  width: 23px; height: 23px;
  border-radius: 50%;
  background: var(--bleu-nuit);
  border: 2px solid #fff;
  color: var(--or-clair);
  display: flex; align-items: center; justify-content: center;
}
.showcase__verified svg { width: 11px; height: 11px; }
.showcase__id strong { font-size: 1.18rem; font-weight: 600; margin-bottom: 3px; }
.showcase__id span { font-size: .8rem; color: rgba(255,255,255,.6); }
.showcase__chips { display: flex; flex-wrap: wrap; gap: 8px; }
.showcase__chip {
  position: relative;
  font-size: .72rem; font-weight: 500;
  color: var(--or-clair);
  background: rgba(198,156,85,.12);
  border: 1px solid rgba(198,156,85,.28);
  border-radius: 30px;
  padding: 5px 13px 5px 25px;
}
.showcase__chip::before {
  content: '✓';
  position: absolute; left: 11px; top: 50%; transform: translateY(-50%);
  color: var(--or-jasmin); font-size: .72rem; font-weight: 700;
}

/* ── Sceau flottant — crédit d'impôt ── */
.hero__seal {
  top: -6px; left: 6px;
  width: 118px; height: 118px;
  border-radius: 50%;
  background: linear-gradient(140deg, #D3AC63, var(--or-sombre));
  border: 1px solid rgba(255,255,255,.28);
  box-shadow: var(--shadow-gold), var(--shadow-lg);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 1px;
  animation-delay: 1.2s;
  z-index: 3;
}
.hero__seal-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem; font-weight: 700; color: var(--white); line-height: 1;
}
.hero__seal-num small { font-size: 1.1rem; font-weight: 600; }
.hero__seal-label {
  font-size: .6rem; letter-spacing: 1.5px; text-transform: uppercase;
  color: rgba(255,255,255,.92); font-weight: 500;
}

/* ── Micro-carte flottante — réactivité ── */
.hero__mini {
  bottom: 26px; left: 20px;
  width: 254px;
  padding: 15px 20px;
  display: flex; align-items: center; gap: 14px;
  animation-delay: 2.4s;
  z-index: 2;
}
.hero__mini-icon {
  flex-shrink: 0; width: 42px; height: 42px;
  border-radius: 50%;
  background: rgba(198,156,85,.15);
  border: 1px solid rgba(198,156,85,.3);
  display: flex; align-items: center; justify-content: center;
  color: var(--or-clair);
}
.hero__mini-icon svg { width: 20px; height: 20px; }
.hero__mini strong { font-size: 1rem; font-weight: 600; margin-bottom: 1px; }
.hero__mini span { font-size: .72rem; color: rgba(255,255,255,.55); }

.hero__scroll {
  position: absolute;
  bottom: 28px; left: 50%;
  transform: translateX(-50%);
  width: 24px; height: 38px;
  border: 1.5px solid rgba(255,255,255,.3);
  border-radius: 14px;
  z-index: 2;
}
.hero__scroll span {
  position: absolute;
  top: 7px; left: 50%;
  width: 3px; height: 7px;
  margin-left: -1.5px;
  background: var(--or-jasmin);
  border-radius: 2px;
  animation: scrolldot 1.8s ease-in-out infinite;
}
@keyframes scrolldot {
  0% { opacity: 0; transform: translateY(0); }
  40% { opacity: 1; }
  80%,100% { opacity: 0; transform: translateY(14px); }
}

/* ── SERVICES ── */
.services { background: var(--white); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
}
.service-card {
  grid-column: span 2;
  position: relative;
  background: var(--fond-creme);
  border: 1px solid var(--border);
  border-top: 3px solid var(--or-jasmin);
  border-radius: var(--radius);
  padding: 36px 30px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform .4s var(--ease-out), box-shadow .4s var(--ease-out), background .4s;
}
/* Dernière rangée (2 cartes) centrée dans la grille à 3 colonnes visuelles */
.service-card--center-a { grid-column: 2 / span 2; }
.service-card--center-b { grid-column: 4 / span 2; }
.service-card:hover {
  background: var(--white);
  box-shadow: var(--shadow-md);
  border-color: transparent;
  transform: translateY(-8px);
}
.service-card__icon {
  width: 54px; height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--or-sombre);
  background: linear-gradient(150deg, #FCF3DC, var(--or-pale));
  border: 1px solid rgba(198,156,85,.28);
  border-radius: var(--radius);
  box-shadow: var(--shadow-xs);
  margin-bottom: 6px;
  transition: transform .5s var(--ease-spring), background .4s var(--ease-out), color .4s var(--ease-out), box-shadow .4s;
}
.service-card__icon svg { width: 28px; height: 28px; }
.service-card__icon img { width: 36px; height: 36px; object-fit: contain; }
.service-card:hover .service-card__icon {
  background: linear-gradient(150deg, var(--bleu-marine), var(--bleu-nuit));
  border-color: var(--bleu-nuit);
  color: var(--or-clair);
  box-shadow: var(--shadow-sm);
  transform: rotate(-6deg) scale(1.05);
}
.service-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--bleu-nuit);
}
.service-card p {
  font-size: .88rem;
  color: var(--texte-muted);
  line-height: 1.75;
  font-weight: 300;
  flex: 1;
}
.service-card__list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 6px;
}
.service-card__list li {
  font-size: .82rem;
  color: var(--texte-muted);
  padding-left: 22px;
  position: relative;
  font-weight: 300;
}
.service-card__list li::before {
  content: '';
  position: absolute;
  left: 0; top: 8px;
  width: 12px; height: 12px;
  background: var(--or-jasmin);
  border-radius: 50%;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E") center/9px no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E") center/9px no-repeat;
}
.service-card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--or-jasmin);
  align-self: flex-start;
  transition: transform .3s var(--ease-out), color .3s var(--ease-out);
}
.service-card__link:hover { color: var(--or-sombre); transform: translateX(4px); }

/* Carte phare — Ménage */
.service-card--featured {
  background: linear-gradient(180deg, var(--white), var(--fond-creme));
  box-shadow: var(--shadow-sm);
}
.service-card__badge {
  position: absolute;
  top: 18px; right: 18px;
  font-size: .62rem;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--white);
  background: linear-gradient(135deg, var(--or-jasmin), var(--or-sombre));
  border-radius: 30px;
  padding: 5px 12px;
  box-shadow: var(--shadow-gold);
}

/* ── WHY ── */
.why { background: var(--gris-doux); }
.why__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.why__content .section-title { text-align: left; }
.why__content .section-tag { display: block; }
.why__items { display: flex; flex-direction: column; gap: 32px; margin-top: 36px; }
.why-item { display: flex; gap: 20px; align-items: flex-start; }
.why-item__icon {
  flex-shrink: 0;
  width: 48px; height: 48px;
  background: var(--white);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  color: var(--or-jasmin);
  transition: all var(--transition);
}
.why-item__icon svg { width: 24px; height: 24px; }
.why-item:hover .why-item__icon { background: var(--bleu-nuit); color: var(--or-clair); }
.why-item h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--bleu-nuit);
  margin-bottom: 6px;
}
.why-item p { font-size: .85rem; color: var(--texte-muted); line-height: 1.75; font-weight: 300; }
.why__stats { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.stat-card {
  background: var(--bleu-nuit);
  border-radius: var(--radius);
  padding: 36px 28px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: all var(--transition);
}
.stat-card:hover { background: var(--bleu-marine); transform: translateY(-3px); }
.stat-card__number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.6rem;
  font-weight: 600;
  color: var(--or-clair);
  line-height: 1;
}
.stat-card__number small { font-size: 1.3rem; }
.stat-card__label {
  font-size: .72rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,.45);
}

/* ── DEVIS / FUNNEL ── */
.devis {
  background: linear-gradient(135deg, var(--bleu-nuit) 0%, var(--bleu-marine) 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.devis::before {
  content: '';
  position: absolute;
  top: -120px; right: -120px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(198,156,85,.08), transparent 70%);
  border-radius: 50%;
}

.funnel {
  max-width: 720px;
  margin: 0 auto;
  background: var(--white);
  border-radius: 4px;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  position: relative;
  z-index: 2;
}

.funnel__progress { padding: 28px 40px 0; }
.funnel__bar {
  height: 4px;
  background: var(--gris-doux);
  border-radius: 4px;
  overflow: hidden;
}
.funnel__bar span {
  display: block;
  height: 100%;
  width: 20%;
  background: linear-gradient(90deg, var(--or-jasmin), var(--or-clair));
  border-radius: 4px;
  transition: width .5s var(--ease-out);
}
.funnel__steps {
  display: flex;
  justify-content: space-between;
  margin-top: 18px;
}
.funnel__steps span {
  width: 30px; height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .8rem;
  font-weight: 500;
  background: var(--gris-doux);
  color: var(--texte-muted);
  transition: all .4s var(--ease-out);
}
.funnel__steps span.active {
  background: var(--or-jasmin);
  color: var(--white);
  transform: scale(1.1);
}
.funnel__steps span.done {
  background: var(--bleu-nuit);
  color: var(--or-clair);
}

.funnel__body {
  padding: 40px;
  min-height: 340px;
  position: relative;
}

.funnel-step { display: none; }
.funnel-step.active {
  display: block;
  animation: stepIn .5s var(--ease-out);
}
@keyframes stepIn {
  from { opacity: 0; transform: translateX(24px); }
  to { opacity: 1; transform: none; }
}
.funnel-step__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.7rem;
  font-weight: 600;
  color: var(--bleu-nuit);
  text-align: center;
}
.funnel-step__hint {
  text-align: center;
  color: var(--texte-muted);
  font-size: .88rem;
  margin: 6px 0 28px;
}

/* Choices */
.choice-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.choice-grid--3 { grid-template-columns: repeat(3, 1fr); }
.choice-grid--2 { grid-template-columns: repeat(2, 1fr); }
/* Grille "service" (étape 1) : 6 colonnes techniques pour permettre de centrer
   la dernière rangée de 2 boutons (Jardinage, Bricolage) sous la rangée du dessus. */
.choice-grid[data-field="service"] { grid-template-columns: repeat(6, 1fr); }
.choice-grid[data-field="service"] .choice { grid-column: span 2; }
.choice-grid[data-field="service"] .choice--center-a { grid-column: 2 / span 2; }
.choice-grid[data-field="service"] .choice--center-b { grid-column: 4 / span 2; }
.choice {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 22px 12px;
  background: var(--fond-creme);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  cursor: pointer;
  font-family: 'Jost', sans-serif;
  transition: all .3s var(--ease-out);
}
.choice svg { width: 30px; height: 30px; color: var(--or-jasmin); transition: transform .3s var(--ease-out); }
.choice img { width: 36px; height: 36px; object-fit: contain; transition: transform .3s var(--ease-out); }
.choice:hover img { transform: scale(1.12); }
.choice span { font-size: .85rem; font-weight: 500; color: var(--bleu-nuit); }
.choice:hover {
  border-color: var(--or-jasmin);
  background: var(--white);
  transform: translateY(-3px);
  box-shadow: var(--shadow-sm);
}
.choice:hover svg { transform: scale(1.15); }
.choice.selected {
  border-color: var(--or-jasmin);
  background: var(--or-pale);
  box-shadow: 0 0 0 3px rgba(198,156,85,.18);
}
.choice--lg { padding: 32px 16px; }
.choice--lg svg { width: 38px; height: 38px; }
.choice--row {
  flex-direction: row;
  justify-content: flex-start;
  text-align: left;
  padding: 20px 22px;
  gap: 16px;
}
.choice__emoji { font-size: 1.6rem; }
.choice--row span:last-child { display: flex; flex-direction: column; }
.choice--row strong { font-size: .95rem; color: var(--bleu-nuit); font-weight: 600; }
.choice--row small { font-size: .78rem; color: var(--texte-muted); }

/* Surface */
.surface { max-width: 480px; margin: 0 auto; text-align: center; }
.surface__value {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.6rem;
  font-weight: 600;
  color: var(--or-jasmin);
  margin-bottom: 20px;
}
.surface__value span { color: var(--bleu-nuit); }
input[type="range"] {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 6px;
  border-radius: 4px;
  background: var(--gris-doux);
  outline: none;
}
input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--or-jasmin);
  border: 3px solid var(--white);
  box-shadow: 0 2px 8px rgba(198,156,85,.5);
  cursor: pointer;
  transition: transform .2s;
}
input[type="range"]::-webkit-slider-thumb:hover { transform: scale(1.15); }
input[type="range"]::-moz-range-thumb {
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--or-jasmin);
  border: 3px solid var(--white);
  cursor: pointer;
}
.surface__scale {
  display: flex;
  justify-content: space-between;
  margin-top: 10px;
  font-size: .75rem;
  color: var(--texte-muted);
}
.surface__quick {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-top: 28px;
}
.chip {
  padding: 8px 18px;
  border: 1.5px solid var(--border);
  border-radius: 30px;
  background: var(--white);
  font-family: 'Jost', sans-serif;
  font-size: .82rem;
  font-weight: 500;
  color: var(--bleu-nuit);
  cursor: pointer;
  transition: all .3s var(--ease-out);
}
.chip:hover { border-color: var(--or-jasmin); color: var(--or-jasmin); }
.chip.selected { background: var(--or-jasmin); color: var(--white); border-color: var(--or-jasmin); }

/* Recap */
.funnel-recap {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-bottom: 24px;
}
.funnel-recap__item {
  font-size: .76rem;
  padding: 6px 14px;
  background: var(--or-pale);
  border-radius: 30px;
  color: var(--or-sombre);
  font-weight: 500;
}
.funnel-recap__item strong { color: var(--bleu-nuit); font-weight: 600; }

/* Form */
.funnel-form { display: flex; flex-direction: column; gap: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 7px; }
.form-group label {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--bleu-nuit);
}
.form-group input {
  padding: 12px 16px;
  border: 1px solid rgba(13,36,85,.15);
  border-radius: var(--radius);
  font-size: .9rem;
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  color: var(--texte-corp);
  background: var(--fond-creme);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
.form-group input:focus {
  border-color: var(--or-jasmin);
  box-shadow: 0 0 0 3px rgba(198,156,85,.12);
  background: var(--white);
}

/* Funnel nav */
.funnel__nav {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 24px 40px 36px;
}
.funnel__nav.hidden { display: none; }
#funnel-prev.hidden { visibility: hidden; }

/* Success */
.funnel-success { text-align: center; padding-top: 20px; }
.funnel-success__icon { display: flex; justify-content: center; margin-bottom: 20px; }
.funnel-success__icon svg { width: 84px; height: 84px; }
.success-circle {
  stroke: var(--or-jasmin);
  stroke-width: 2;
  stroke-dasharray: 151;
  stroke-dashoffset: 151;
  animation: drawCircle .6s var(--ease-out) forwards;
}
.success-check {
  stroke: var(--or-jasmin);
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 40;
  stroke-dashoffset: 40;
  animation: drawCheck .4s var(--ease-out) .5s forwards;
}
@keyframes drawCircle { to { stroke-dashoffset: 0; } }
@keyframes drawCheck { to { stroke-dashoffset: 0; } }

.devis__guarantees {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 28px;
  margin-top: 36px;
}
.devis__guarantees li {
  color: rgba(255,255,255,.75);
  font-size: .85rem;
  letter-spacing: .3px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.devis__guarantees li::before {
  content: '✓';
  color: var(--or-jasmin);
  font-weight: 700;
}

/* Bandeau sécurité & confidentialité (près du formulaire) */
.devis__security {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px 30px;
  margin-top: 28px;
  padding-top: 26px;
  border-top: 1px solid rgba(255,255,255,.10);
}
.devis__security-item {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: .8rem;
  color: rgba(255,255,255,.55);
  letter-spacing: .2px;
}
.devis__security-item svg {
  width: 17px; height: 17px;
  flex-shrink: 0;
  color: var(--or-jasmin);
}

/* ── GARANTIE — RÉVERSION DU RISQUE ── */
.guarantee {
  background: linear-gradient(135deg, var(--or-pale), #FBF3DD);
  border-top: 1px solid rgba(198,156,85,.28);
  border-bottom: 1px solid rgba(198,156,85,.28);
  padding: 80px 0;
}
.guarantee__inner {
  display: flex;
  align-items: center;
  gap: 56px;
  max-width: 940px;
}
.guarantee__seal {
  flex-shrink: 0;
  width: 168px; height: 168px;
  border-radius: 50%;
  background: linear-gradient(140deg, #D3AC63, var(--or-sombre));
  border: 3px solid rgba(255,255,255,.45);
  box-shadow: var(--shadow-gold), var(--shadow-md);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--white);
  text-align: center;
}
.guarantee__seal svg { width: 40px; height: 40px; }
.guarantee__seal span {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: .5px;
}
.guarantee__body .section-tag { display: block; }
.guarantee__body h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  font-weight: 400;
  color: var(--bleu-nuit);
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin-bottom: 14px;
}
.guarantee__body p {
  color: var(--texte-muted);
  font-size: .98rem;
  line-height: 1.8;
  margin-bottom: 22px;
  max-width: 54ch;
}
.guarantee__points { display: flex; flex-direction: column; gap: 11px; }
.guarantee__points li {
  position: relative;
  padding-left: 30px;
  font-size: .92rem;
  color: var(--texte-corp);
}
.guarantee__points li::before {
  content: '✓';
  position: absolute;
  left: 0; top: 1px;
  width: 20px; height: 20px;
  background: var(--or-jasmin);
  color: var(--white);
  border-radius: 50%;
  font-size: .68rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ── REVIEWS ── */
.reviews { background: var(--fond-creme); }
.reviews__score {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 12px;
}
.stars { color: var(--or-jasmin); font-size: 1.1rem; letter-spacing: 3px; }
.reviews__score strong { font-family: 'Cormorant Garamond', serif; font-size: 1.3rem; color: var(--bleu-nuit); }
.reviews__score span { color: var(--texte-muted); font-size: .82rem; letter-spacing: .5px; }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.review-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  box-shadow: var(--shadow-sm);
  transition: all .4s var(--ease-out);
}
.review-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.review-card__stars { color: var(--or-jasmin); font-size: 1rem; letter-spacing: 2px; }
.review-card p {
  font-size: .9rem;
  color: var(--texte-corp);
  line-height: 1.8;
  font-style: italic;
  font-weight: 300;
  flex: 1;
}
.review-card__author { display: flex; align-items: center; gap: 14px; }
.author-avatar {
  width: 44px; height: 44px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--bleu-nuit), var(--bleu-marine));
  color: var(--or-clair);
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: .9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.review-card__author strong { display: block; font-size: .9rem; font-weight: 500; color: var(--bleu-nuit); }
.review-card__author span { font-size: .75rem; color: var(--texte-muted); }

/* ── ZONES ── */
.zones { background: var(--white); }
.zone-tag {
  flex-shrink: 0;
  padding: 10px 22px;
  background: var(--fond-creme);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: 1px;
  color: var(--bleu-nuit);
  transition: all .3s var(--ease-out);
  cursor: default;
}
.zone-tag:hover {
  border-color: var(--or-jasmin);
  color: var(--or-jasmin);
  background: var(--or-pale);
  transform: translateY(-2px);
}
.zones__more { text-align: center; color: var(--texte-muted); font-size: .88rem; }
.zones__more a { color: var(--or-jasmin); font-weight: 500; text-decoration: underline; }

/* ── FOOTER ── */
.footer {
  background: var(--bleu-nuit);
  color: rgba(255,255,255,.55);
  padding-top: 80px;
}
.footer__inner {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer__logo {
  height: 110px;
  width: auto;
  margin: -14px 0 12px -6px;
  filter: brightness(0) invert(1);
  opacity: .95;
}
.footer__brand p {
  margin: 0 0 24px;
  font-size: .85rem;
  line-height: 1.8;
  font-weight: 300;
  max-width: 280px;
}
.footer__social { display: flex; gap: 8px; }
.footer__social a {
  width: 36px; height: 36px;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: .75rem;
  color: rgba(255,255,255,.55);
  transition: all var(--transition);
}
.footer__social a:hover { border-color: var(--or-jasmin); color: var(--or-jasmin); transform: translateY(-2px); }
.footer__col h5 {
  color: var(--white);
  font-size: .68rem;
  font-weight: 600;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 2.5px;
}
.footer__col ul { display: flex; flex-direction: column; gap: 12px; }
.footer__col li { font-size: .85rem; font-weight: 300; }
.footer__col a { color: rgba(255,255,255,.5); transition: color var(--transition); }
.footer__col a:hover { color: var(--or-clair); }
.footer__bottom { padding: 22px 0; }
.footer__bottom .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.footer__bottom span { font-size: .75rem; font-weight: 300; }
.footer__legal { display: flex; gap: 24px; }
.footer__legal a { font-size: .75rem; color: rgba(255,255,255,.3); transition: color var(--transition); }
.footer__legal a:hover { color: var(--white); }

/* ── HERO PRICE HOOK ── */
.hero__price {
  display: inline-block;
  margin-bottom: 32px;
  padding: 10px 18px;
  background: rgba(198,156,85,.12);
  border: 1px solid rgba(198,156,85,.3);
  border-radius: var(--radius);
  font-size: .92rem;
  color: rgba(255,255,255,.8);
}
.hero__price strong { color: var(--or-clair); font-weight: 600; }

/* ── TRUST BAR / CREDENTIALS ── */
.trustbar {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 54px 0;
}
.trustbar__lead {
  text-align: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-style: italic;
  color: var(--texte-muted);
  margin-bottom: 34px;
}
.trustbar__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.credential {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 4px 28px;
  border-left: 1px solid var(--border);
}
.credential:first-child { border-left: none; }
.credential__mark {
  position: relative;
  flex-shrink: 0;
  width: 56px; height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
  box-shadow: var(--shadow-xs);
  color: var(--or-jasmin);
  transition: transform .35s var(--ease-spring), box-shadow .35s var(--ease-out), border-color .35s var(--ease-out);
}
.credential__mark > svg { width: 27px; height: 27px; }
.credential__check {
  position: absolute;
  top: -8px; right: -8px;
  width: 21px; height: 21px;
  border-radius: 50%;
  background: var(--or-jasmin);
  border: 2px solid var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  box-shadow: var(--shadow-xs);
}
.credential__check svg { width: 11px; height: 11px; }
.credential:hover .credential__mark {
  transform: translateY(-3px);
  box-shadow: var(--shadow-sm);
  border-color: var(--or-jasmin);
}
.credential__text strong {
  display: block;
  font-size: .92rem;
  font-weight: 600;
  color: var(--bleu-nuit);
  line-height: 1.25;
  margin-bottom: 3px;
}
.credential__text span {
  font-size: .78rem;
  color: var(--texte-muted);
  line-height: 1.45;
}

/* ── COMMENT ÇA MARCHE ── */
.how { background: var(--white); }
.how-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  position: relative;
}
/* Ligne de progression reliant les étapes (desktop) */
.how-line {
  position: absolute;
  top: 59px;
  left: 12.5%;
  right: 12.5%;
  height: 2px;
  background: var(--border-strong);
  z-index: 0;
  overflow: hidden;
}
.how-line__fill {
  display: block;
  height: 100%;
  width: 100%;
  background: linear-gradient(90deg, var(--or-jasmin), var(--or-clair));
  transform: scaleX(1);
  transform-origin: left;
}
.how-step {
  position: relative;
  z-index: 1;
  background: var(--fond-creme);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 26px 34px;
  text-align: center;
  transition: transform .4s var(--ease-out), box-shadow .4s var(--ease-out), background .4s;
}
.how-step:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); background: var(--white); }
.how-step__num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px; height: 52px;
  margin: 0 auto 20px;
  background: var(--bleu-nuit);
  color: var(--or-clair);
  border: 1px solid rgba(198,156,85,.4);
  border-radius: 50%;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 600;
  box-shadow: 0 0 0 8px var(--white);
  transition: background .4s var(--ease-out), color .4s var(--ease-out), transform .4s var(--ease-spring);
}
.how-step:hover .how-step__num {
  background: linear-gradient(135deg, var(--or-jasmin), var(--or-sombre));
  color: var(--white);
  transform: translateY(-3px) scale(1.06);
}
.how-step h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--bleu-nuit);
  margin-bottom: 10px;
}
.how-step p { font-size: .86rem; color: var(--texte-muted); line-height: 1.75; font-weight: 300; }
.how-cta { text-align: center; margin-top: 52px; }

/* ── CRÉDIT D'IMPÔT ── */
.credit { background: var(--gris-doux); }
.credit__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.credit__content .section-title { text-align: left; }
.credit__content .section-tag { display: block; }
.credit__lead {
  font-size: .98rem;
  color: var(--texte-muted);
  line-height: 1.85;
  margin-bottom: 24px;
}
.credit__lead strong { color: var(--or-sombre); font-weight: 600; }
.credit__points { display: flex; flex-direction: column; gap: 12px; }
.credit__points li {
  font-size: .9rem;
  color: var(--texte-corp);
  padding-left: 28px;
  position: relative;
}
.credit__points li::before {
  content: '✓';
  position: absolute;
  left: 0; top: -1px;
  width: 20px; height: 20px;
  background: var(--or-jasmin);
  color: var(--white);
  border-radius: 50%;
  font-size: .7rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.credit__calc {
  background: var(--bleu-nuit);
  border-radius: 4px;
  padding: 40px;
  box-shadow: var(--shadow-lg);
}
.credit__calc h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--white);
  text-align: center;
}
.credit__calc-sub { text-align: center; color: rgba(255,255,255,.5); font-size: .82rem; margin: 4px 0 28px; }
.calc__display {
  background: rgba(255,255,255,.05);
  border-radius: var(--radius);
  padding: 8px 20px;
  margin-bottom: 24px;
}
.calc__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.calc__row:last-child { border-bottom: none; }
.calc__row span { font-size: .85rem; color: rgba(255,255,255,.65); }
.calc__row strong { font-size: 1.05rem; color: var(--white); font-weight: 500; }
.calc__row--credit strong { color: var(--or-jasmin); }
.calc__row--net span { color: var(--white); font-weight: 500; }
.calc__row--net strong {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--or-clair);
}
.calc__scale {
  display: flex;
  justify-content: space-between;
  margin-top: 10px;
  font-size: .72rem;
  color: rgba(255,255,255,.4);
}

.calc__note {
  text-align: center;
  font-size: .78rem;
  font-weight: 500;
  color: var(--or-clair);
  letter-spacing: .3px;
  margin: 14px 0 2px;
}

/* Bandeau économie annuelle */
.calc__annual {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin: 16px 0 26px;
  padding: 13px 20px;
  background: linear-gradient(135deg, rgba(198,156,85,.18), rgba(198,156,85,.07));
  border: 1px solid rgba(198,156,85,.32);
  border-radius: var(--radius);
}
.calc__annual span {
  font-size: .8rem;
  color: rgba(255,255,255,.72);
  letter-spacing: .3px;
}
.calc__annual strong {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.55rem;
  font-weight: 700;
  color: var(--or-clair);
  line-height: 1;
}
/* Piste du curseur crédit d'impôt (remplissage doré injecté en JS) */
#calc-range {
  height: 8px;
  background: rgba(255,255,255,.16);
}
#calc-range::-webkit-slider-thumb:active { transform: scale(1.2); }

/* ── FAQ ── */
.faq { background: var(--fond-creme); }
.faq-list {
  max-width: 780px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: box-shadow var(--transition);
}
.faq-item[open] { box-shadow: var(--shadow-sm); border-color: rgba(198,156,85,.4); }
.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 26px;
  cursor: pointer;
  font-size: .98rem;
  font-weight: 500;
  color: var(--bleu-nuit);
  list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item__icon {
  position: relative;
  width: 18px; height: 18px;
  flex-shrink: 0;
}
.faq-item__icon::before,
.faq-item__icon::after {
  content: '';
  position: absolute;
  background: var(--or-jasmin);
  transition: transform var(--transition);
}
.faq-item__icon::before { top: 8px; left: 0; width: 18px; height: 2px; }
.faq-item__icon::after { top: 0; left: 8px; width: 2px; height: 18px; }
.faq-item[open] .faq-item__icon::after { transform: rotate(90deg); opacity: 0; }
.faq-item__body {
  padding: 0 26px 24px;
  animation: faqReveal .35s var(--ease-out);
}
.faq-item__body p { font-size: .9rem; color: var(--texte-muted); line-height: 1.8; font-weight: 300; }
@keyframes faqReveal { from { opacity: 0; transform: translateY(-6px); } to { opacity: 1; transform: none; } }
.faq__cta { text-align: center; margin-top: 40px; color: var(--texte-muted); font-size: .92rem; }
.faq__cta a { color: var(--or-jasmin); font-weight: 500; text-decoration: underline; }

/* ── NOS INTERVENANTS / VETTING ── */
.vetting { background: var(--white); }
.vetting .section-sub strong { color: var(--or-sombre); font-weight: 600; }
.vetting-flow {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  counter-reset: v;
}
.vetting-step {
  padding: 30px 22px;
  border-radius: var(--radius);
  background: var(--fond-creme);
  border-bottom: 3px solid var(--or-jasmin);
  transition: transform .4s var(--ease-out), box-shadow .4s var(--ease-out), background .4s;
}
.vetting-step:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); background: var(--white); }
.vetting-step__n {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--or-jasmin);
  line-height: 1;
  margin-bottom: 14px;
}
.vetting-step h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--bleu-nuit);
  margin-bottom: 8px;
}
.vetting-step p { font-size: .82rem; color: var(--texte-muted); line-height: 1.7; font-weight: 300; }
.vetting-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px 32px;
  margin-top: 44px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
}
.vetting-badges span {
  font-size: .88rem;
  color: var(--bleu-nuit);
  font-weight: 500;
}

/* ── FUNNEL REASSURE ── */
.funnel-reassure {
  text-align: center;
  font-size: .76rem;
  color: var(--texte-muted);
  margin-top: 4px;
}

/* ── FUNNEL — améliorations ── */
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

/* Réassurance persistante sous la barre de progression */
.funnel__reassure-top {
  text-align: center;
  font-size: .72rem;
  letter-spacing: .4px;
  color: var(--texte-faint);
  margin-top: 14px;
}

/* Icône SVG des choix fréquence (remplace les emojis) */
.choice__ico {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--or-pale);
  color: var(--or-sombre);
  transition: background .3s var(--ease-out), color .3s var(--ease-out);
}
.choice__ico svg { width: 21px; height: 21px; }
.choice--row.selected .choice__ico { background: var(--bleu-nuit); color: var(--or-clair); }

/* Honeypot anti-spam (invisible pour l'humain) */
.hp-field {
  position: absolute !important;
  left: -9999px !important;
  width: 1px; height: 1px;
  opacity: 0; pointer-events: none;
}

/* Champ facultatif */
.form-group .optional {
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  color: var(--texte-faint);
  font-size: .9em;
}

/* Erreurs de validation inline */
.form-group input.is-invalid {
  border-color: #C0392B;
  box-shadow: 0 0 0 3px rgba(192,57,43,.12);
}
.field-error {
  display: block;
  min-height: 0;
  font-size: .72rem;
  color: #C0392B;
  margin-top: 5px;
}
.field-error:empty { margin-top: 0; }

/* Qualification code postal */
.cp-feedback {
  display: block;
  font-size: .74rem;
  margin-top: 6px;
  font-weight: 500;
}
.cp-feedback.ok { color: #1E8A4C; }
.cp-feedback.warn { color: var(--or-sombre); }

/* ── STICKY MOBILE CTA ── */
.mobile-cta {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 90;
  padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
  gap: 10px;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--border);
  box-shadow: 0 -6px 24px rgba(13,36,85,.1);
}
.mobile-cta__call,
.mobile-cta__quote {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: .82rem;
  letter-spacing: .5px;
  text-transform: uppercase;
}
.mobile-cta__call {
  flex: 0 0 42%;
  border: 1.5px solid var(--bleu-nuit);
  color: var(--bleu-nuit);
}
.mobile-cta__call svg { width: 18px; height: 18px; }
.mobile-cta__quote {
  flex: 1;
  background: var(--or-jasmin);
  color: var(--white);
}

/* ── FINAL CTA ── */
.final-cta {
  background: linear-gradient(135deg, var(--bleu-nuit) 0%, var(--bleu-marine) 100%);
  color: var(--white);
  text-align: center;
  padding: 96px 0;
  position: relative;
  overflow: hidden;
}
.final-cta::before {
  content: '';
  position: absolute;
  top: -100px; left: 50%;
  transform: translateX(-50%);
  width: 520px; height: 520px;
  background: radial-gradient(circle, rgba(198,156,85,.1), transparent 70%);
  border-radius: 50%;
}
.final-cta__inner { position: relative; z-index: 2; max-width: 620px; margin: 0 auto; }
.final-cta h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.9rem, 4vw, 2.6rem);
  font-weight: 400;
  color: var(--white);
  margin-bottom: 16px;
}
.final-cta p {
  color: rgba(255,255,255,.65);
  font-size: 1rem;
  line-height: 1.85;
  font-weight: 300;
  margin-bottom: 32px;
}
.final-cta__reassure {
  margin: 22px 0 0;
  font-size: .8rem;
  color: rgba(255,255,255,.4);
  letter-spacing: .3px;
}

/* ── HERO SPLIT-TEXT WORDS ── */
.hero__title .word {
  display: inline-block;
  overflow: hidden;
}
.hero__title .word > span {
  display: inline-block;
  will-change: transform;
}

/* ── FLOATING ACTION RAIL ── */
.side-rail {
  position: fixed;
  right: 28px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 95;
  display: flex;
  flex-direction: column;
  gap: 14px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .4s var(--ease-out);
}
.side-rail.visible { opacity: 1; pointer-events: auto; }
.side-rail__btn {
  position: relative;
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--bleu-nuit);
  color: var(--or-clair);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(198,156,85,.3);
  cursor: pointer;
  transition: background .3s var(--ease-out), color .3s var(--ease-out), box-shadow .3s var(--ease-out);
}
.side-rail__btn svg { width: 22px; height: 22px; }
.side-rail__btn:hover {
  background: var(--or-jasmin);
  color: var(--white);
  box-shadow: 0 10px 30px rgba(198,156,85,.4);
}
.side-rail__btn::before {
  content: attr(data-label);
  position: absolute;
  right: 66px;
  top: 50%;
  transform: translateY(-50%) translateX(8px);
  background: var(--bleu-nuit);
  color: var(--white);
  font-size: .74rem;
  font-weight: 500;
  letter-spacing: .5px;
  white-space: nowrap;
  padding: 8px 14px;
  border-radius: var(--radius);
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s var(--ease-out), transform .25s var(--ease-out);
}
.side-rail__btn:hover::before { opacity: 1; transform: translateY(-50%) translateX(0); }
@media (max-width: 1024px) { .side-rail { display: none; } }

/* ── MARQUEE ── */
.marquee {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  margin-bottom: 28px;
}
.marquee__track {
  display: inline-flex;
  gap: 10px;
  width: max-content;
  animation: marquee 32s linear infinite;
}
.marquee:hover .marquee__track { animation-play-state: paused; }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .marquee__track { animation: none; }
  .marquee { overflow-x: auto; }
}

/* ── MAGNETIC / PRESS FEEDBACK ── */
.btn--primary, .side-rail__btn { will-change: transform; }
.btn:active { transform: scale(.96); }

@media (prefers-reduced-motion: reduce) {
  .hero::before, .hero::after, .hero__card, .hero__scroll span { animation: none !important; }
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .hero__inner { grid-template-columns: 1fr; gap: 0; }
  .hero__visual { display: none; }
  .services-grid { grid-template-columns: repeat(4, 1fr); }
  .service-card--center-a, .service-card--center-b { grid-column: span 2; }
  .why__inner { grid-template-columns: 1fr; gap: 48px; }
  .why__stats { grid-template-columns: repeat(4, 1fr); }
  .footer__inner { grid-template-columns: 1fr 1fr; }
  .trustbar__grid { grid-template-columns: repeat(2, 1fr); row-gap: 32px; }
  .credential { padding: 4px 24px; }
  .credential:nth-child(odd) { border-left: none; }
  .how-grid { grid-template-columns: repeat(2, 1fr); }
  .how-line { display: none; }
  .how-step__num { box-shadow: none; }
  .credit__inner { grid-template-columns: 1fr; gap: 40px; }
  .vetting-flow { grid-template-columns: repeat(3, 1fr); }
}

/* Nav → menu burger dès 1080px (évite la nav tassée sur écrans intermédiaires) */
@media (max-width: 1080px) {
  .nav {
    display: none;
    position: absolute;
    top: 84px; left: 0; right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 16px 24px;
    box-shadow: var(--shadow-md);
    border-top: 1px solid var(--border);
  }
  .nav.open { display: flex; }
  .nav__link { white-space: normal; }
  .nav__link--mobile-only { display: block; color: var(--or-sombre); }
  .header__recrute { display: none; }
  .burger { display: flex; }
}

@media (max-width: 768px) {
  .topbar { display: none; }
  .logo__img { height: 56px; }
  .services-grid { grid-template-columns: 1fr; }
  .service-card, .service-card--center-a, .service-card--center-b { grid-column: span 1; }
  .reviews-grid { grid-template-columns: 1fr; }
  .why__stats { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr; gap: 32px; }
  .footer__bottom .container { flex-direction: column; text-align: center; }
  .footer__legal { flex-wrap: wrap; justify-content: center; }
  .hero__actions { flex-direction: column; }
  .section { padding: 72px 0; }
  .funnel__body { padding: 28px 24px; }
  .funnel__progress { padding: 24px 24px 0; }
  .funnel__nav { padding: 18px 18px 24px; gap: 9px; }
  .funnel__nav .btn { font-size: .72rem; letter-spacing: .2px; padding: 13px 12px; }
  #funnel-prev { flex: 0 0 auto; }
  #funnel-next { flex: 1 1 auto; }
  .choice-grid, .choice-grid--3 { grid-template-columns: repeat(2, 1fr); }
  .choice-grid--2 { grid-template-columns: 1fr; }
  .choice-grid[data-field="service"] { grid-template-columns: repeat(2, 1fr); }
  .choice-grid[data-field="service"] .choice,
  .choice-grid[data-field="service"] .choice--center-a,
  .choice-grid[data-field="service"] .choice--center-b { grid-column: span 1; }
  .devis__guarantees { gap: 16px; }
  .devis__security { gap: 12px 20px; }
  .guarantee { padding: 56px 0; }
  .guarantee__inner { flex-direction: column; gap: 32px; text-align: center; }
  .guarantee__seal { width: 140px; height: 140px; }
  .guarantee__body p { margin-inline: auto; }
  .guarantee__points { text-align: left; max-width: 340px; margin: 0 auto; }
  .trustbar { padding: 40px 0; }
  .trustbar__lead { font-size: 1.08rem; margin-bottom: 26px; }
  .trustbar__grid { grid-template-columns: 1fr; row-gap: 22px; }
  .credential { border-left: none; padding: 0 6px; }
  .how-grid { grid-template-columns: 1fr; }
  .mobile-cta { display: flex; }
  body { padding-bottom: 74px; }
  .faq-item summary { padding: 18px 20px; font-size: .92rem; }
  .credit__calc { padding: 28px 22px; }
  .vetting-flow { grid-template-columns: 1fr; }
  .vetting-badges { flex-direction: column; align-items: center; gap: 12px; }
}

/* ── PAGES LÉGALES ── */
.legal-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.legal-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  height: 76px;
}
.legal-header .logo__img { height: 56px; width: auto; }
.legal-back {
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--or-jasmin);
  transition: color var(--transition), transform var(--transition);
  display: inline-flex; align-items: center; gap: 6px;
}
.legal-back:hover { color: var(--or-sombre); transform: translateX(-3px); }

.legal { max-width: 820px; margin: 0 auto; padding: 64px 32px 96px; }
.legal__tag {
  display: inline-block;
  font-size: .68rem; font-weight: 600; letter-spacing: 3px;
  text-transform: uppercase; color: var(--or-jasmin);
  margin-bottom: 14px;
}
.legal h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 400; color: var(--bleu-nuit);
  line-height: 1.12; letter-spacing: -.01em;
  margin-bottom: 12px;
}
.legal__updated { font-size: .82rem; color: var(--texte-faint); margin-bottom: 40px; }
.legal__notice {
  background: var(--or-pale);
  border: 1px solid rgba(198,156,85,.3);
  border-radius: var(--radius);
  padding: 16px 20px;
  font-size: .84rem;
  color: var(--or-sombre);
  line-height: 1.7;
  margin-bottom: 44px;
}
.legal h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem; font-weight: 600; color: var(--bleu-nuit);
  margin: 40px 0 14px; line-height: 1.2;
}
.legal h3 {
  font-size: .95rem; font-weight: 600; color: var(--bleu-nuit);
  margin: 24px 0 8px;
}
.legal p, .legal li {
  font-size: .92rem; color: var(--texte-corp);
  line-height: 1.85; font-weight: 300;
}
.legal p { margin-bottom: 14px; }
.legal ul { margin: 0 0 16px; padding-left: 4px; }
.legal ul li {
  position: relative; padding-left: 22px; margin-bottom: 8px;
}
.legal ul li::before {
  content: ''; position: absolute; left: 2px; top: 11px;
  width: 6px; height: 6px; border-radius: 50%; background: var(--or-jasmin);
}
.legal a { color: var(--or-jasmin); text-decoration: underline; }
.legal a:hover { color: var(--or-sombre); }
.legal a.btn { color: var(--white); text-decoration: none; }
.legal strong { font-weight: 600; color: var(--bleu-nuit); }
.legal .placeholder {
  background: rgba(198,156,85,.16);
  border-radius: 3px; padding: 1px 6px;
  font-weight: 500; color: var(--or-sombre);
}
@media (max-width: 768px) {
  .legal { padding: 44px 22px 72px; }
  .legal-header__inner { height: 66px; }
}

/* ══════════════════════════════════════════
   RECRUTEMENT
   ══════════════════════════════════════════ */

/* Lien nav actif */
.nav__link--active { color: var(--or-jasmin); }
.nav__link--active::after { transform: scaleX(1); }

/* Hero recrutement (clair, contraste avec le funnel navy) */
.rec-hero {
  background: linear-gradient(180deg, var(--gris-doux), var(--fond-creme));
  padding: 80px 0 90px;
  text-align: center;
}
.rec-hero__inner { max-width: 780px; margin: 0 auto; }
.rec-hero__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 4.6vw, 3.4rem);
  font-weight: 300;
  color: var(--bleu-nuit);
  line-height: 1.12;
  letter-spacing: -0.01em;
  margin: 20px 0 22px;
}
.rec-hero__title em { font-style: italic; color: var(--or-jasmin); }
.rec-hero__sub {
  color: var(--texte-muted);
  font-size: 1.05rem;
  line-height: 1.8;
  font-weight: 300;
  max-width: 640px;
  margin: 0 auto 28px;
}
.rec-hero__perks {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 28px;
  margin-bottom: 36px;
}
.rec-hero__perks span { font-size: .9rem; color: var(--texte-corp); font-weight: 500; }

/* Choix texte seul (expérience / heures) */
.choice--text { min-height: 92px; }
.choice--text span { font-size: 1.02rem; font-weight: 600; color: var(--bleu-nuit); }

/* Upload CV */
.cv-upload { text-align: center; max-width: 480px; margin: 0 auto; }
.cv-upload__btn { cursor: pointer; }
.cv-upload__name { margin-top: 18px; font-size: .92rem; color: var(--bleu-nuit); font-weight: 600; word-break: break-word; }
.cv-upload__hint { margin-top: 14px; font-size: .78rem; color: var(--texte-muted); }

/* Encart « Rejoignez-nous » sur la home */
.join {
  background: linear-gradient(135deg, var(--bleu-nuit) 0%, var(--bleu-marine) 100%);
  color: var(--white);
  padding: 84px 0;
  position: relative;
  overflow: hidden;
}
.join::before {
  content: '';
  position: absolute;
  top: -120px; right: -100px;
  width: 460px; height: 460px;
  background: radial-gradient(circle, rgba(198,156,85,.12), transparent 70%);
  border-radius: 50%;
}
.join__inner {
  position: relative; z-index: 2;
  display: flex; align-items: center; justify-content: space-between;
  gap: 48px; flex-wrap: wrap;
}
.join__text { flex: 1 1 420px; }
.join__text .section-tag { display: block; color: var(--or-jasmin); }
.join__text h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 3.4vw, 2.6rem);
  font-weight: 400; color: var(--white);
  line-height: 1.15; letter-spacing: -0.01em; margin-bottom: 14px;
}
.join__text p { color: rgba(255,255,255,.65); font-size: 1rem; line-height: 1.8; font-weight: 300; max-width: 560px; }
.join__cta { flex: 0 0 auto; }

@media (max-width: 768px) {
  .rec-hero { padding: 56px 0 64px; }
  .rec-hero__perks { gap: 10px 20px; }
  .join { padding: 60px 0; }
  .join__inner { flex-direction: column; text-align: center; gap: 28px; }
  .join__text p { margin-inline: auto; }
}

/* ══════════════════════════════════════════
   MODALE OFFRE (bienvenue) — web & mobile
   ══════════════════════════════════════════ */
.promo {
  position: fixed;
  inset: 0;
  z-index: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.promo[hidden] { display: none; }

.promo__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(13, 36, 85, .55);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  opacity: 0;
  transition: opacity .35s var(--ease-out);
}
.promo.is-open .promo__backdrop { opacity: 1; }

.promo__card {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 440px;
  padding: 46px 34px 30px;
  text-align: center;
  color: #fff;
  background: linear-gradient(180deg, #12295C 0%, var(--bleu-nuit) 100%);
  border: 1px solid rgba(198, 156, 85, .35);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  opacity: 0;
  transform: translateY(24px) scale(.96);
  transition: opacity .4s var(--ease-out), transform .5s var(--ease-spring);
}
.promo.is-open .promo__card { opacity: 1; transform: none; }

.promo__glow {
  position: absolute;
  top: -42%;
  left: 50%;
  width: 340px;
  height: 340px;
  transform: translateX(-50%);
  pointer-events: none;
  background: radial-gradient(circle, rgba(198, 156, 85, .28) 0%, transparent 60%);
}

.promo__close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  color: rgba(255, 255, 255, .75);
  background: rgba(255, 255, 255, .08);
  transition: background var(--transition), color var(--transition);
}
.promo__close:hover { background: rgba(255, 255, 255, .16); color: #fff; }
.promo__close svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
}

.promo__badge {
  position: relative;
  width: 66px;
  height: 66px;
  margin: 0 auto 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, var(--or-clair), var(--or-jasmin));
  box-shadow: var(--shadow-gold);
  animation: promoPulse 2.6s var(--ease-out) infinite;
}
@keyframes promoPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(198, 156, 85, .45); }
  70%      { box-shadow: 0 0 0 16px rgba(198, 156, 85, 0); }
}

.promo__eyebrow {
  display: inline-block;
  margin-bottom: 10px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--or-clair);
}
.promo__title {
  margin-bottom: 12px;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 500;
  font-size: clamp(28px, 7vw, 34px);
  line-height: 1.1;
}
.promo__title em { font-style: italic; color: var(--or-clair); }
.promo__desc {
  margin-bottom: 24px;
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255, 255, 255, .72);
}
.promo__desc strong { color: #fff; font-weight: 500; white-space: nowrap; }

.promo__actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.promo__cta { width: 100%; }
.promo__link {
  font-size: 14px;
  color: var(--or-jasmin);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color var(--transition);
}
.promo__link:hover { color: var(--or-clair); }
.promo__foot {
  margin-top: 20px;
  font-size: 12px;
  letter-spacing: .02em;
  color: rgba(255, 255, 255, .5);
}

/* Mobile : la carte remonte du bas comme une feuille */
@media (max-width: 560px) {
  .promo { align-items: flex-end; padding: 0; }
  .promo__card {
    max-width: none;
    padding: 40px 24px 26px;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    transform: translateY(100%);
  }
  .promo.is-open .promo__card { transform: none; }
}

body.promo-lock { overflow: hidden; }

@media (prefers-reduced-motion: reduce) {
  .promo__backdrop, .promo__card { transition: none; }
  .promo__card { transform: none; }
  .promo__badge { animation: none; }
}
