/* ==========================================================================
   Landing — feuille de style principale.
   Design system déclaré en variables ci-dessous.
   ========================================================================== */

:root {
  /* ===== Couleurs ===== */
  --navy:        #052d57;   /* primaire : fonds sections, CTA, cercles, icônes */
  --navy-dark:   #03203f;   /* hover boutons, overlay */
  --blue-soft:   #97b5d5;   /* bandeau urgence */
  --coral:       #ef8d78;   /* accent chaud (petits repères) */
  --ink:         #222223;   /* texte principal sur fond clair */
  --muted:       #7a7a7a;   /* texte secondaire */
  --bg:          #ffffff;
  --bg-alt:      #f9f9f9;   /* sections claires alternées */
  --white:       #ffffff;
  --star:        #fbbc04;
  --line:        rgba(5, 45, 87, .12);

  /* ===== Typographie ===== */
  --font-heading: 'Figtree', sans-serif;   /* 600/700/800 */
  --font-body:    'Figtree', sans-serif;   /* 400/500 */

  --fs-h1:      clamp(30px, 4vw, 44px);
  --fs-h2:      clamp(22px, 3vw, 30px);
  --fs-display: clamp(36px, 5vw, 52px);
  --fs-body:    17px;
  --fs-small:   13px;
  --lh-heading: 1.2;
  --lh-body:    1.65;

  /* ===== Espacements ===== */
  --section-pad-y: 96px;
  --content-max:   720px;
  --wide-max:      1140px;
  --gap:           24px;

  /* ===== Formes ===== */
  --radius-btn:   0;
  --radius-card:  8px;
  --radius-photo: 20px;
  --shadow-card:  0 4px 16px rgba(5, 45, 87, .08);
}

/* ===== Reset léger ===== */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; }
h1, h2, h3 { font-family: var(--font-heading); line-height: var(--lh-heading); margin: 0; }
p { margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }
strong { font-weight: 700; }

/* ===== Layout ===== */
.section { padding: var(--section-pad-y) 24px; }
@media (max-width: 767px) { .section { padding: 64px 20px; } }
.wrap { max-width: var(--wide-max); margin-inline: auto; }
.prose { max-width: var(--content-max); margin-inline: auto; }
.center { text-align: center; }

.bg       { background: var(--bg); }
.bg-alt   { background: var(--bg-alt); }
.bg-navy  { background: var(--navy); color: var(--white); }
.bg-navy h1, .bg-navy h2, .bg-navy h3 { color: var(--white); }
.bg-soft  { background: var(--blue-soft); }

/* ===== Titres de section ===== */
.section-title { font-size: var(--fs-h2); font-weight: 700; margin-bottom: 16px; }
.section-sub   { font-size: var(--fs-body); color: var(--muted); max-width: var(--content-max); margin: 0 auto 8px; }
.section-sub.sub-ink { color: var(--ink); }
.transfo-title { font-size: 37px; }
@media (max-width: 767px) { .transfo-title { font-size: clamp(20px, 6vw, 30px); } }
.bg-navy .section-sub { color: rgba(255,255,255,.82); }

/* Fond bleu contrasté (section « organiser sa vie ») */
.bg-blue { background: #214F80; color: var(--white); }
.bg-blue .section-title { color: var(--white); font-size: 37px; }
@media (max-width: 767px) { .bg-blue .section-title { font-size: clamp(20px, 6vw, 30px); } }
.bg-blue .section-sub { color: rgba(255,255,255,.85); }
.bg-blue .cta-tagline { color: rgba(255,255,255,.85); }

/* Pricing / offre — 2 colonnes sur fond bleu */
.pricing-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 48px; align-items: center; }
@media (max-width: 767px) {
  .pricing-grid { grid-template-columns: minmax(0, 1fr); gap: 28px; }
  .pricing-card .card { text-align: center; padding: 22px 18px; }
  .pricing-card .btn { padding-left: 6px; padding-right: 6px; }
  .offer-title { text-align: center; }
}
.pricing-eyebrow { display: inline-block; font-family: var(--font-heading); font-weight: 700; font-size: 14px; text-transform: uppercase; letter-spacing: .06em; color: var(--navy); background: rgba(5, 45, 87, .08); padding: 6px 14px; border-radius: 999px; margin-bottom: 16px; }
.pricing-title { font-size: clamp(26px, 3vw, 34px); font-weight: 700; line-height: 1.2; color: var(--ink); margin-bottom: 8px; }
.pricing-feats { list-style: none; margin: 22px 0 0; padding: 0; display: grid; gap: 20px; }
.pricing-feats li { display: flex; gap: 14px; align-items: flex-start; }
.pricing-feats .feat-ico { flex: none; width: 44px; height: 44px; border-radius: 50%; background: var(--navy); display: grid; place-items: center; color: #fff; }
.pricing-feats .feat-ico svg { width: 22px; height: 22px; color: #fff; stroke: currentColor; fill: none; stroke-width: 2; }
.pricing-feats h3 { color: var(--ink); font-size: 18px; margin-bottom: 4px; }
.pricing-feats p { color: var(--muted); font-size: 16px; line-height: 1.5; }
.pricing-card .card { border: 2px solid var(--navy); }
.offer-title { font-size: 22px; color: var(--navy); margin-bottom: 8px; }
.offer-row { display: flex; justify-content: space-between; align-items: center; gap: 16px; padding: 13px 0; border-bottom: 1px solid var(--line); }
.offer-row .k { display: inline-flex; align-items: center; gap: 9px; color: var(--muted); font-size: 16px; }
.offer-row .k svg { width: 18px; height: 18px; flex: none; color: var(--navy); stroke: currentColor; fill: none; stroke-width: 2; }
.offer-row .v { font-weight: 700; color: var(--ink); }
.offer-row .v.price { font-size: 20px; color: var(--navy); }
.pricing-card .btn { width: 100%; margin-top: 20px; }
.pricing-card .cta-tagline { max-width: none; margin-top: 10px; }
.offer-note { font-size: 13px; color: var(--muted); margin-top: 12px; line-height: 1.4; }

/* Cartes « problème » — 3 colonnes, blanches à texte foncé */
.problem-grid { margin-top: 28px; text-align: left; }
.problem-card { display: flex; flex-direction: column; }
.problem-head { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.problem-ico { width: 40px; height: 40px; border-radius: 50%; background: var(--navy); color: #fff; display: grid; place-items: center; flex: none; }
.problem-ico svg { width: 20px; height: 20px; }
.problem-card h3 { font-size: 19px; color: var(--ink); }
.problem-card .check-item { margin-bottom: 11px; }
.problem-card .check-item:last-child { margin-bottom: 0; }

/* ==========================================================================
   COMPOSANT CENTRAL — cta-block (répété 6×)
   ========================================================================== */
.cta-block { display: flex; flex-wrap: wrap; gap: 20px; justify-content: center; margin-top: 32px; }
.cta-item { display: flex; flex-direction: column; align-items: center; gap: 6px; }
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  padding: 14px 28px; border-radius: var(--radius-btn);
  font-family: var(--font-heading); font-weight: 600; font-size: 14px;
  letter-spacing: .5px; text-transform: uppercase; cursor: pointer;
  border: 2px solid transparent; transition: background-color .2s ease, color .2s ease, border-color .2s ease;
  min-width: 240px; white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; flex: none; }
.cta-sub { font-size: var(--fs-small); font-style: italic; color: var(--muted); }
.cta-note { font-size: 13px; color: var(--muted); margin-top: 3px; max-width: 320px; line-height: 1.4; text-align: center; }
/* Bouton empilé : label principal + réassurance à l'intérieur */
.btn--stack { flex-direction: column; gap: 3px; padding-top: 11px; padding-bottom: 11px; line-height: 1.15; }
.btn-main { display: inline-flex; align-items: center; gap: 9px; }
.btn-note { font-size: 11px; font-weight: 400; text-transform: none; letter-spacing: 0; opacity: .8; }
/* Ligne de réassurance sous le bouton : 3 items + icônes, une seule ligne, largeur du bouton */
.cta-trust { display: flex; justify-content: space-between; align-self: stretch; gap: 6px; margin-top: 9px; }
.cta-trust span { display: inline-flex; align-items: center; gap: 4px; font-size: 11px; color: var(--muted); white-space: nowrap; }
.cta-trust svg { width: 13px; height: 13px; flex: none; }
.cta-tagline { font-style: italic; font-size: 16px; color: var(--ink); line-height: 1.4; text-align: center; align-self: stretch; max-width: 390px; }
/* Ligne d'urgence sous le bouton (même style que l'ancien bouton, sans cadre) */
.urgency-note { display: inline-flex; align-items: center; gap: 9px; font-family: var(--font-heading); font-weight: 600; font-size: 14px; letter-spacing: .5px; text-transform: uppercase; color: var(--navy); }
/* Boutons : jamais de retour à la ligne — on réduit la police sur mobile pour que le texte long tienne */
@media (max-width: 767px) { .btn { font-size: clamp(12px, 3.4vw, 17px); letter-spacing: .2px; padding-left: 12px; padding-right: 12px; gap: 6px; } .btn svg { width: 1.1em; height: 1.1em; } }
@media (max-width: 767px) { .cta-single { align-items: stretch; } .cta-single .cta-item { width: 100%; } .cta-single .btn { width: 100%; } }

/* variante fond clair */
.btn--soft { background: var(--white); border-color: var(--navy); color: var(--navy); }
.btn--soft:hover { background: var(--navy); color: var(--white); }
.btn--hard { background: var(--navy); color: var(--white); }
.btn--hard:hover { background: var(--navy-dark); }

/* Badge de rareté : style contour (comme l'ancien bouton) + petit rond pulsant */
.urgency-badge { cursor: default; }
.urgency-badge:hover { background: var(--white); color: var(--navy); }
.pulse-dot { display: inline-block; width: 9px; height: 9px; border-radius: 50%; background: var(--coral); flex: none; animation: pulse-dot 1.5s ease-out infinite; }
@keyframes pulse-dot { 0% { box-shadow: 0 0 0 0 rgba(239, 141, 120, .6); } 100% { box-shadow: 0 0 0 8px rgba(239, 141, 120, 0); } }
@media (prefers-reduced-motion: reduce) { .pulse-dot { animation: none; } }

/* variante sur fond navy (inversion voulue) */
.on-navy .btn--soft { background: var(--white); border-color: var(--white); color: var(--navy); }
.on-navy .btn--soft:hover { background: rgba(255,255,255,.85); }
.on-navy .btn--hard { background: transparent; border-color: var(--white); color: var(--white); }
.on-navy .btn--hard:hover { background: rgba(255,255,255,.12); }
.on-navy .cta-sub { color: rgba(255,255,255,.78); }

/* ==========================================================================
   check-item
   ========================================================================== */
.check-list { display: grid; gap: 16px; }
.check-item { display: flex; align-items: flex-start; gap: 13px; }
.check-item .tick {
  flex: none; width: 28px; height: 28px; border-radius: 50%;
  background: var(--navy); display: grid; place-items: center;
}
.check-item .tick svg { width: 15px; height: 15px; color: #fff; stroke: currentColor; }
.check-item p { font-size: 17px; }
/* version navy : coche bordée blanche */
.on-navy .check-item .tick { background: transparent; border: 2px solid rgba(255,255,255,.7); }
.on-navy .check-item p { color: #fff; }
/* check-item DANS une carte blanche (même sur fond navy) → repasse en sombre */
.on-navy .card .check-item .tick { background: var(--navy); border: none; }
.on-navy .card .check-item p { color: var(--ink); }

/* ==========================================================================
   icon-circle
   ========================================================================== */
.icon-circle {
  width: 72px; height: 72px; border-radius: 50%; background: var(--navy);
  display: grid; place-items: center; margin: 0 auto 16px;
}
.icon-circle svg { width: 34px; height: 34px; color: #fff; stroke: currentColor; fill: none; stroke-width: 2; }
.benefit-domain { font-size: 19px; font-weight: 700; color: var(--navy); margin-bottom: 8px; }

/* ===== Cards ===== */
.card { background: var(--white); border-radius: var(--radius-card); box-shadow: var(--shadow-card); padding: 24px; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: var(--gap); }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--gap); }
@media (max-width: 767px) { .grid-2, .grid-3 { grid-template-columns: 1fr; } }

/* ==========================================================================
   HEADER (non sticky, zéro nav)
   ========================================================================== */
.site-header { background: var(--bg); border-bottom: 1px solid var(--line); }
.site-header .wrap { display: flex; flex-direction: column; align-items: center; padding: 16px 24px; }
.brand { font-family: var(--font-heading); font-weight: 600; font-size: 18px; color: var(--navy); }
.brand-sub { font-size: 11px; color: var(--muted); margin-top: 2px; }
.logo { height: 54px; width: auto; max-width: 100%; display: block; }
@media (max-width: 767px) { .logo { height: 42px; } }
.logo--foot { height: 46px; margin: 0 auto 10px; }

/* ===== Bandeau d'urgence (au-dessus du header) ===== */
.topbar { position: relative; background: #c62828; color: #fff; overflow: hidden;
  padding: 9px 18px; line-height: 1.35; display: flex; align-items: center; justify-content: center; }
.topbar-track { display: flex; }
.topbar-text { font-family: var(--font-heading); font-weight: 700; font-size: 14px; letter-spacing: .3px; white-space: nowrap; }
.topbar-dot { display: inline-block; width: 8px; height: 8px; border-radius: 50%; background: #fff;
  margin-right: 9px; vertical-align: middle; animation: topbar-pulse 1.6s ease-out infinite; }
@keyframes topbar-pulse { 0% { box-shadow: 0 0 0 0 rgba(255,255,255,.7); } 100% { box-shadow: 0 0 0 7px rgba(255,255,255,0); } }
/* Desktop : statique, centré, une seule copie visible */
.topbar-text + .topbar-text { display: none; }
/* Mobile : défilement infini, la pastille défile avec le texte */
@media (max-width: 767px) {
  .topbar { display: block; padding: 8px 0; }
  .topbar-track { width: max-content; animation: topbar-marquee 11s linear infinite; }
  .topbar-text { font-size: 12.5px; padding-right: 2.75rem; }
  .topbar-text + .topbar-text { display: block; }
}
@keyframes topbar-marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .topbar-dot { animation: none; } .topbar-track { animation: none; } }

/* ==========================================================================
   S1 — HERO
   ========================================================================== */
.hero { padding-top: 56px; padding-bottom: 56px; }
.hero .wrap { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 48px; }
.hero-photo { display: flex; justify-content: center; order: 2; }
.hero-photo img { width: 100%; max-width: 440px; aspect-ratio: 1 / 1; object-fit: cover; border-radius: var(--radius-photo); }
.hero-body { display: flex; flex-direction: column; justify-content: center; order: 1; }
.geo-pin { display: block; font-size: 17px; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: var(--navy); margin-bottom: 14px; }
.geo-pin svg { width: 16px; height: 16px; vertical-align: -3px; margin-right: 6px; }
.geo-pin--m { display: none; }
@media (max-width: 767px) { .geo-pin--d { display: none; } .geo-pin--m { display: block; } }
.hero h1 { font-size: var(--fs-h1); font-weight: 700; margin-bottom: 16px; }
.hero-sub { font-size: 17px; margin-bottom: 8px; }
.m-br { display: none; }
@media (max-width: 767px) { .m-br { display: inline; } }
.d-br { display: none; }
@media (min-width: 768px) { .d-br { display: inline; } }
.m-only { display: none; }
@media (max-width: 767px) { .d-only { display: none; } .m-only { display: inline; } }
.hero .cta-block { flex-direction: column; align-items: flex-start; gap: 16px; }
@media (max-width: 767px) {
  .hero { padding: 16px 20px 36px; }
  .hero h1 { font-size: clamp(23px, 7vw, 34px); }
  .hero .wrap { grid-template-columns: 1fr; gap: 28px; }
  .hero-photo { margin: 0 -20px -36px; }
  .hero-photo img { max-width: none; width: 100%; border-radius: 0; }
  .hero-body { text-align: center; }
  .hero .cta-block { flex-direction: column; align-items: stretch; }
  .hero .cta-item { width: 100%; }
  .hero .cta-item .btn { width: 100%; }
}

/* ==========================================================================
   S2 — Bandeau urgence
   ========================================================================== */
.urgency { text-align: center; padding: 32px 24px; }
.urgency .info-ico { width: 40px; height: 40px; border-radius: 50%; background: #fff; display: grid; place-items: center; margin: 0 auto 12px; color: var(--navy); font-weight: 700; }
.urgency-text { font-size: 16px; color: var(--ink); }
.urgency-label { font-style: italic; font-size: 12px; margin-top: 10px; }
.urgency-date { font-weight: 700; font-size: 14px; }

/* ==========================================================================
   S3 — Preuve sociale
   ========================================================================== */
.stars { display: inline-flex; gap: 3px; }
.stars svg { width: 20px; height: 20px; fill: var(--star); }
.proof-head { display: flex; flex-direction: column; align-items: center; gap: 8px; margin-bottom: 20px; }
.google-logo { font-family: var(--font-heading); font-weight: 700; font-size: 20px; letter-spacing: -.5px; }
.section-lead { max-width: 52ch; margin: 0 auto; color: var(--muted); font-size: 17px; }

/* Témoignages — 1 rangée marquee, cartes façon avis Google */
@media (min-width: 768px) { .sep-top { border-top: 1px solid var(--line); } }
.proof-bubbles { display: flex; justify-content: center; margin-bottom: 16px; }
.proof-bubbles img { width: 36px; height: 36px; border-radius: 50%; object-fit: cover; border: 2px solid var(--white); }
.proof-bubbles img + img { margin-left: -11px; }
.tmq-title { font-size: 37px; }
@media (max-width: 767px) { .tmq-title { font-size: clamp(20px, 6vw, 30px); } }
.tmq { margin-top: 40px; }
.tmq-track { display: flex; gap: 16px; overflow-x: auto; scroll-behavior: auto; scrollbar-width: none; -webkit-overflow-scrolling: touch; padding: 6px 2px; cursor: grab;
  -webkit-mask-image: linear-gradient(to right, transparent 0, #000 5%, #000 95%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0, #000 5%, #000 95%, transparent 100%); }
.tmq-track::-webkit-scrollbar { display: none; }
.tmq-track.tmq-grabbing { cursor: grabbing; user-select: none; }
.tmq-track img { -webkit-user-drag: none; user-drag: none; }
.tmq-card { flex: 0 0 min(380px, 84vw); min-height: 285px; text-align: left; display: flex; flex-direction: column; gap: 14px; align-self: flex-start; box-shadow: none; background: #F4F4F4; }
.tmq-top { display: grid; grid-template-columns: auto 1fr; align-items: center; gap: 12px; }
.tmq-avatar { width: 46px; height: 46px; border-radius: 50%; background: var(--av, var(--navy)); color: #fff; font-family: var(--font-heading); font-weight: 700; font-size: 19px; display: flex; align-items: center; justify-content: center; flex: none; overflow: hidden; }
.tmq-avatar--img { background: none; }
.tmq-avatar--img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.tmq-id { display: flex; flex-direction: column; min-width: 0; gap: 2px; }
.tmq-name { font-family: var(--font-heading); font-weight: 700; color: var(--ink); line-height: 1.15; }
.tmq-date { font-size: 13px; color: var(--muted); }
.tmq-rating { display: flex; align-items: center; gap: 8px; }
.tmq-stars { display: inline-flex; gap: 2px; }
.tmq-stars svg { width: 17px; height: 17px; display: block; }
.tmq-verified { width: 17px; height: 17px; flex: none; }
.tmq-text { margin: 0; line-height: 1.55; color: var(--ink);
  display: -webkit-box; -webkit-line-clamp: 4; -webkit-box-orient: vertical; overflow: hidden;
  transition: max-height .38s ease; }
.tmq-card.is-open .tmq-text { -webkit-line-clamp: unset; }
@media (prefers-reduced-motion: reduce) { .tmq-text { transition: none; } }
.tmq-more { align-self: flex-start; background: none; border: 0; padding: 0; color: var(--muted); font: inherit; font-size: 16px; cursor: pointer; }
.tmq-more:hover { color: var(--navy); text-decoration: underline; }
.tmq-nav { display: flex; justify-content: center; gap: 12px; margin-top: 22px; }
.tmq-arrow { width: 46px; height: 46px; border-radius: 50%; border: 1px solid var(--navy); background: var(--navy); color: #fff; display: inline-flex; align-items: center; justify-content: center; cursor: pointer; transition: background .2s ease, color .2s ease, border-color .2s ease; }
.tmq-arrow:hover { background: #214F80; border-color: #214F80; color: #fff; }
.tmq-arrow svg { width: 20px; height: 20px; }

/* ==========================================================================
   S5 — Mécanisme
   ========================================================================== */
.mecanisme-name { font-size: var(--fs-display); font-weight: 700; text-align: center; margin: 8px 0 16px; color: var(--navy); }
.mecanisme-title { font-size: 37px; }
@media (max-width: 767px) { .mecanisme-title { font-size: clamp(20px, 6vw, 30px); } }
.mecanisme-grid { display: grid; grid-template-columns: 40% minmax(0, 520px); justify-content: center; gap: 48px; align-items: center; margin-top: 32px; }
.mecanisme-grid img { border-radius: var(--radius-photo); max-height: 420px; width: 100%; object-fit: cover; }
@media (max-width: 767px) { .mecanisme-grid { grid-template-columns: 1fr; } }

/* ==========================================================================
   S7 — Autorité
   ========================================================================== */
.autorite-grid { display: grid; grid-template-columns: 40% minmax(0, 520px); justify-content: center; gap: 48px; align-items: stretch; }
.autorite-grid picture { display: block; height: 100%; }
.autorite-grid img { border-radius: var(--radius-photo); width: 100%; height: 100%; object-fit: cover; display: block; }
.autorite-grid h3 { color: var(--navy); font-size: 24px; margin-bottom: 20px; }
@media (max-width: 767px) { .autorite-grid { grid-template-columns: 1fr; align-items: start; } .autorite-grid picture { height: auto; } .autorite-grid img { height: auto; max-height: 75vh; } }
.autorite-title { font-size: 37px; }
@media (max-width: 767px) { .autorite-title { font-size: clamp(20px, 6vw, 30px); } }
.autorite-copy { text-align: left; }
.rpps-badge { display: inline-flex; align-items: center; gap: 8px; padding: 7px 14px; border-radius: 999px; background: rgba(5, 45, 87, .08); color: var(--navy); font-family: var(--font-heading); font-weight: 700; font-size: 14px; margin-bottom: 16px; }
.rpps-badge svg { width: 16px; height: 16px; color: var(--navy); }
.tabs { display: flex; gap: 24px; border-bottom: 1px solid var(--line); margin: 0 0 18px; }
.tab { appearance: none; background: none; border: none; border-bottom: 2px solid transparent; padding: 0 0 10px; margin-bottom: -1px; font: inherit; font-weight: 600; color: var(--muted); cursor: pointer; transition: color .2s, border-color .2s; }
.tab:hover { color: var(--ink); }
.tab.is-active { color: var(--navy); border-bottom-color: var(--navy); }
.tab-panel[hidden] { display: none; }
.tab-panel p { margin-bottom: 14px; }
.tab-panel p:last-child { margin-bottom: 0; }
.parcours { list-style: none; margin: 0; padding: 0; }
.parcours li { position: relative; padding: 0 0 20px 26px; }
.parcours li:last-child { padding-bottom: 0; }
.parcours li::before { content: ""; position: absolute; left: 3px; top: 5px; width: 11px; height: 11px; border-radius: 50%; background: var(--navy); z-index: 1; }
.parcours li::after { content: ""; position: absolute; left: 8px; top: 14px; bottom: 0; width: 2px; background: var(--line); }
.parcours li:last-child::after { display: none; }
.p-title { font-weight: 700; color: var(--ink); }
.p-meta { font-size: 15px; color: var(--muted); }
.autorite-btn { margin-top: 24px; }
@media (max-width: 767px) { .autorite-btn { width: 100%; } }

/* ==========================================================================
   S8 — Cabinet / ancrage
   ========================================================================== */
.cabinet { text-align: center; }
.visio-title { font-size: 37px; }
@media (max-width: 767px) { .visio-title { font-size: clamp(20px, 6vw, 30px); } }
.cabinet .house-ico { width: 56px; height: 56px; margin: 0 auto 16px; color: var(--navy); }
.cabinet img { max-width: 560px; width: 100%; border-radius: var(--radius-photo); margin: 20px auto 0; }

/* ==========================================================================
   S9 — FAQ
   ========================================================================== */
.faq-title { font-size: 37px; }
@media (max-width: 767px) { .faq-title { font-size: clamp(20px, 6vw, 30px); } }
.faq { max-width: 760px; margin: 32px auto 0; }
.faq-tabs { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; margin-bottom: 24px; }
.faq-tab { font-family: var(--font-heading); font-size: 15px; font-weight: 600; cursor: pointer; padding: 9px 20px; border-radius: 999px; border: 1px solid var(--line); background: var(--white); color: var(--muted); transition: color .2s, border-color .2s, background .2s; }
.faq-tab:hover { color: var(--ink); border-color: var(--navy); }
.faq-tab.is-active { background: var(--navy); border-color: var(--navy); color: #fff; }
@media (max-width: 767px) {
  .faq-tabs { flex-wrap: nowrap; justify-content: flex-start; overflow-x: auto; scrollbar-width: none; -webkit-overflow-scrolling: touch; padding-bottom: 2px; }
  .faq-tabs::-webkit-scrollbar { display: none; }
  .faq-tab { flex: none; }
  .faq-tabs.fade-right { -webkit-mask-image: linear-gradient(to right, #000 calc(100% - 32px), transparent); mask-image: linear-gradient(to right, #000 calc(100% - 32px), transparent); }
  .faq-tabs.fade-both { -webkit-mask-image: linear-gradient(to right, transparent, #000 32px, #000 calc(100% - 32px), transparent); mask-image: linear-gradient(to right, transparent, #000 32px, #000 calc(100% - 32px), transparent); }
  .faq-tabs.fade-left { -webkit-mask-image: linear-gradient(to right, transparent, #000 32px); mask-image: linear-gradient(to right, transparent, #000 32px); }
}
.faq-list { display: grid; }
details.qa { border-bottom: 1px solid var(--line); }
details.qa[hidden] { display: none; }
details.qa summary { list-style: none; cursor: pointer; padding: 20px 4px; display: flex; align-items: center; justify-content: space-between; gap: 16px; font-weight: 600; font-size: 17px; color: var(--muted); transition: color .2s; }
details.qa summary::-webkit-details-marker { display: none; }
details.qa summary:hover { color: var(--navy); }
details.qa[open] summary { color: var(--navy); padding-bottom: 12px; }
details.qa summary .chev { flex: none; width: 20px; height: 20px; color: var(--muted); transition: transform .25s ease, color .2s ease; }
details.qa[open] summary .chev { transform: rotate(180deg); color: var(--navy); }
details.qa .answer { padding: 0 4px 22px; color: var(--ink); line-height: 1.6; }

/* ==========================================================================
   S10 — CTA final full-bleed
   ========================================================================== */
.cta-final { position: relative; padding: 120px 24px; text-align: center; background-size: cover; background-position: center; }
.cta-final::before { content: ""; position: absolute; inset: 0; background: rgba(5, 45, 87, .6); }
.cta-final > * { position: relative; }
.cta-final h2 { color: #fff; font-size: 37px; line-height: 1.2; margin-bottom: 8px; }
@media (max-width: 767px) { .cta-final h2 { font-size: clamp(20px, 6vw, 30px); } }
.on-navy .cta-tagline { color: rgba(255, 255, 255, .85); }

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer { text-align: center; padding: 40px 24px; border-top: 1px solid var(--line); }
.site-footer .brand { display: block; margin-bottom: 8px; }
.legal-line { font-size: 12px; color: var(--muted); margin-top: 10px; }
.legal-line a { text-decoration: underline; }

/* ==========================================================================
   STICKY CTA MOBILE
   ========================================================================== */
.sticky-cta { position: fixed; left: 0; right: 0; bottom: 0; background: #fff; box-shadow: 0 -4px 16px rgba(5,45,87,.12); z-index: 100; display: none;
  padding: 10px max(14px, env(safe-area-inset-right)) calc(10px + env(safe-area-inset-bottom)) max(14px, env(safe-area-inset-left));
  transform: translateY(100%); transition: transform .25s ease; }
.sticky-cta.visible { transform: translateY(0); }
.sticky-cta .btn { width: 100%; min-width: 0; }
@media (max-width: 767px) { .sticky-cta { display: block; } body { padding-bottom: calc(80px + env(safe-area-inset-bottom)); } }

/* ===== Placeholder image ===== */
.ph-img { background: repeating-linear-gradient(45deg, #e9edf2, #e9edf2 12px, #e1e6ec 12px, #e1e6ec 24px); display: grid; place-items: center; color: var(--muted); font-size: 13px; font-family: var(--font-heading); min-height: 200px; }
