/* =====================================================================
   Charte graphique FNAE — parcours guidé
   Bleu primaire #0076A8 · bleu doux #E1EDF3 · fond blanc
   Texte encre #111827 · texte secondaire #6B7280 · Source Sans Pro
   ===================================================================== */
:root {
  --fnae-bg: #ffffff;
  --fnae-card: #ffffff;
  --fnae-border: #e5e9f0;
  --fnae-blue: #0076a8;
  --fnae-blue-dark: #005f87;
  --fnae-blue-soft: #e1edf3;
  --fnae-track: #e1e7ef;
  --fnae-ink: #111827;
  --fnae-muted: #6b7280;
  --fnae-faint: #98a2b3;
  --fnae-radius: 14px;
  --fnae-shadow: 0 1px 2px rgba(17,24,39,0.04), 0 6px 18px rgba(17,24,39,0.05);
}

* { box-sizing: border-box; }
html, body { margin: 0; }
body {
  font-family: 'Source Sans 3', 'Source Sans Pro', 'Segoe UI', sans-serif;
  color: var(--fnae-ink);
  background: var(--fnae-bg);
  -webkit-font-smoothing: antialiased;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* ---------------- Barre supérieure ---------------- */
.fnae-topbar { background: #fff; border-bottom: 1px solid var(--fnae-border); }
.fnae-topbar-inner { width: 80%; max-width: 1200px; margin: 0 auto; padding: 14px 0; display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.fnae-logo { display: flex; align-items: center; text-decoration: none; }
.fnae-logo-img { height: 44px; width: auto; display: block; }
.fnae-topbar-note { color: var(--fnae-muted); font-size: .9em; display: flex; align-items: center; gap: 8px; }
.fnae-topbar-note svg { flex: none; color: var(--fnae-blue); }
.fnae-topbar-link { color: var(--fnae-blue); font-weight: 600; font-size: .92em; text-decoration: none; white-space: nowrap; }
.fnae-topbar-link:hover { text-decoration: underline; }

/* ---------------- Conteneur ---------------- */
.fnae-lp-container { width: 80%; max-width: 1200px; margin: 0 auto; padding: 36px 0 16px; flex: 1; }

/* ---------------- Hero (accueil) ---------------- */
.fnae-header { text-align: left; margin-bottom: 28px; }
.fnae-badge { display: inline-flex; align-items: center; gap: 6px; background: var(--fnae-blue-soft); color: var(--fnae-blue-dark); padding: 6px 14px; border-radius: 999px; font-weight: 700; font-size: .76em; letter-spacing: .6px; text-transform: uppercase; }
.fnae-badge svg { flex: none; }
.fnae-header h1 { font-size: 3.1em; line-height: 1.1; color: var(--fnae-ink); margin: 18px 0 14px; font-weight: 700; letter-spacing: -.5px; }
.fnae-title-accent { color: var(--fnae-blue); display: block; }
.fnae-subtitle { font-size: 1.12em; color: var(--fnae-muted); max-width: 640px; margin: 0 0 24px; line-height: 1.55; }
.fnae-subtitle strong { color: var(--fnae-ink); font-weight: 700; }

/* ---------------- Hero deux colonnes (accueil) ---------------- */
.fnae-hero { display: grid; grid-template-columns: 1.05fr .95fr; gap: 34px; align-items: start; margin-bottom: 30px; }
.fnae-hero .fnae-header { margin-bottom: 0; }
.fnae-hero .fnae-header h1 { font-size: 2.5em; margin: 16px 0 12px; }
.fnae-hero .fnae-subtitle { font-size: 1.05em; margin-bottom: 20px; max-width: none; }

/* Avantages compacts (liste) */
.fnae-benefit-list { list-style: none; margin: 0 0 20px; padding: 0; display: flex; flex-direction: column; gap: 12px; }
.fnae-benefit-list li { display: flex; align-items: flex-start; gap: 11px; font-size: .96em; color: var(--fnae-ink); line-height: 1.4; }
.fnae-benefit-list strong { font-weight: 700; }
.fnae-bl-ico { flex: none; width: 26px; height: 26px; border-radius: 7px; background: var(--fnae-blue-soft); color: var(--fnae-blue); display: flex; align-items: center; justify-content: center; margin-top: 1px; }

/* Chiffres de confiance en ligne (compact) */
.fnae-trust-inline { list-style: none; display: flex; flex-wrap: wrap; gap: 6px 20px; margin: 0; padding: 16px 0 0; border-top: 1px solid var(--fnae-border); font-size: .86em; color: var(--fnae-muted); }
.fnae-trust-inline li { display: inline-flex; align-items: baseline; gap: 5px; }
.fnae-trust-inline strong { color: var(--fnae-blue); font-weight: 700; }

/* Carte de choix mise en avant dans le hero (colonne droite, collante) */
.fnae-hero-aside { position: sticky; top: 24px; }
.fnae-hero .fnae-choice-block { margin-bottom: 0; border-top: 3px solid var(--fnae-blue); }

/* Cartes bénéfices */
.fnae-benefits { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.fnae-benefit-card { background: var(--fnae-card); border: 1px solid var(--fnae-border); border-radius: var(--fnae-radius); padding: 14px 14px; box-shadow: var(--fnae-shadow); }
.fnae-benefit-icon { width: 28px; height: 28px; border-radius: 7px; background: var(--fnae-blue-soft); color: var(--fnae-blue); display: flex; align-items: center; justify-content: center; margin-bottom: 8px; }
.fnae-benefit-icon svg { width: 16px; height: 16px; }
.fnae-benefit-card h3 { margin: 0 0 3px; font-size: .92em; color: var(--fnae-ink); font-weight: 700; }
.fnae-benefit-card p { margin: 0; font-size: .82em; color: var(--fnae-muted); line-height: 1.4; }

/* ---------------- Boutons ---------------- */
.fnae-btn-main { display: inline-flex; align-items: center; gap: 8px; background: var(--fnae-blue); color: #fff; padding: 14px 26px; border-radius: 10px; font-weight: 700; font-size: 1em; text-decoration: none; border: none; cursor: pointer; font-family: inherit; transition: background .15s, transform .15s, box-shadow .15s; box-shadow: 0 6px 16px rgba(0,118,168,.22); }
.fnae-btn-main:hover { background: var(--fnae-blue-dark); transform: translateY(-1px); }
.fnae-btn-green { background: var(--fnae-blue); }
.fnae-btn-green:hover { background: var(--fnae-blue-dark); }

/* Focus clavier visible (accessibilité) */
.fnae-option-row:focus-visible,
.fnae-btn-main:focus-visible,
.fnae-nav-back:focus-visible,
.fnae-sub-btn:focus-visible,
.fnae-topbar-link:focus-visible,
.fnae-header-help:focus-visible,
.fnae-success-support:focus-visible,
.fnae-sitefooter-links a:focus-visible { outline: 2px solid var(--fnae-blue); outline-offset: 2px; border-radius: 8px; }

/* ---------------- Section vidéo ---------------- */
.fnae-video-section { background: var(--fnae-card); border: 1px solid var(--fnae-border); border-radius: var(--fnae-radius); padding: 26px; box-shadow: var(--fnae-shadow); margin-bottom: 28px; }
.fnae-video-section h2 { margin: 0 0 6px; font-size: 1.35em; color: var(--fnae-ink); font-weight: 700; }
.fnae-video-subtitle { margin: 0 0 18px; color: var(--fnae-muted); font-size: .96em; }
.fnae-video-wrapper { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; border-radius: 10px; background: #000; }
.fnae-video-wrapper iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.fnae-video-facade { position: absolute; inset: 0; width: 100%; height: 100%; padding: 0; border: 0; cursor: pointer; background: #000; display: block; }
.fnae-video-cover { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; }
.fnae-video-play { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 76px; height: 76px; border-radius: 50%; background: rgba(0, 118, 168, .92); color: #fff; display: flex; align-items: center; justify-content: center; box-shadow: 0 6px 20px rgba(0, 0, 0, .35); transition: transform .2s ease, background .2s ease; }
.fnae-video-play svg { margin-left: 3px; }
.fnae-video-facade:hover .fnae-video-play, .fnae-video-facade:focus-visible .fnae-video-play { transform: translate(-50%, -50%) scale(1.08); background: var(--fnae-blue); }
.fnae-video-facade:focus-visible { outline: 3px solid var(--fnae-blue); outline-offset: 2px; }
.fnae-create-account { background: var(--fnae-card); border: 1px solid var(--fnae-border); border-radius: var(--fnae-radius); padding: 26px; box-shadow: var(--fnae-shadow); margin-bottom: 28px; scroll-margin-top: 16px; }
.fnae-create-account h2 { margin: 0 0 6px; font-size: 1.35em; color: var(--fnae-ink); font-weight: 700; }
.fnae-create-cta { margin-top: 20px; display: flex; justify-content: center; }

/* ---------------- Diaporama Devis&Factures ---------------- */
.fnae-carousel { margin-top: 18px; }
.fnae-carousel-track { position: relative; width: 100%; aspect-ratio: 1200 / 630; border-radius: 10px; overflow: hidden; background: #0b1220; box-shadow: var(--fnae-shadow); }
.fnae-carousel-slide { position: absolute; inset: 0; margin: 0; opacity: 0; transform: scale(1.015); transition: opacity .6s ease, transform .6s ease; pointer-events: none; }
.fnae-carousel-slide.is-active { opacity: 1; transform: scale(1); pointer-events: auto; }
.fnae-carousel-slide img, .fnae-carousel-slide video { width: 100%; height: 100%; object-fit: contain; display: block; background: #0b1220; }
.fnae-carousel-dots { display: flex; justify-content: center; gap: 8px; margin-top: 14px; }
.fnae-carousel-dot { width: 9px; height: 9px; padding: 0; border: none; border-radius: 50%; background: var(--fnae-track); cursor: pointer; transition: background .3s ease, transform .3s ease; }
.fnae-carousel-dot.is-active { background: var(--fnae-blue); transform: scale(1.25); }
.fnae-carousel-dot:focus-visible { outline: 2px solid var(--fnae-blue); outline-offset: 2px; }
@media (prefers-reduced-motion: reduce) { .fnae-carousel-slide { transition: opacity .2s ease; transform: none; } .fnae-carousel-slide.is-active { transform: none; } }

/* ---------------- Bloc de choix ---------------- */
.fnae-choice-block { background: var(--fnae-card); border: 1px solid var(--fnae-border); border-radius: var(--fnae-radius); padding: 28px; box-shadow: var(--fnae-shadow); margin-bottom: 28px; }
.fnae-choice-block h2 { margin: 0 0 6px; font-size: 1.3em; color: var(--fnae-ink); font-weight: 700; }
.fnae-choice-help { margin: 0 0 20px; color: var(--fnae-muted); font-size: .96em; }
.fnae-choice-buttons { display: flex; flex-direction: column; gap: 12px; }

/* Lignes d'option (style charte : ligne bordée + pastille radio) */
.fnae-option-row { display: flex; align-items: center; justify-content: space-between; gap: 16px; width: 100%; background: var(--fnae-card); border: 1px solid var(--fnae-border); border-radius: 12px; padding: 16px 20px; font-size: 1.02em; font-weight: 600; color: var(--fnae-ink); cursor: pointer; text-align: left; font-family: inherit; transition: border-color .15s, box-shadow .15s, background .15s; }
.fnae-option-row:hover { border-color: var(--fnae-blue); background: #fbfdff; box-shadow: 0 2px 10px rgba(0,118,168,.1); }
.fnae-option-radio { flex: none; width: 22px; height: 22px; border: 2px solid #cbd5e0; border-radius: 50%; transition: border-color .15s, box-shadow .15s; }
.fnae-option-row:hover .fnae-option-radio { border-color: var(--fnae-blue); box-shadow: inset 0 0 0 4px var(--fnae-blue); }

.fnae-header-help-wrap { margin: 18px 0 0; text-align: center; }
.fnae-header-help { color: var(--fnae-blue-dark); font-weight: 600; text-decoration: none; }
.fnae-header-help:hover { text-decoration: underline; }

/* ---------------- Cartes d'étape ---------------- */
.fnae-step-card { position: relative; background: var(--fnae-card); border: 1px solid var(--fnae-border); border-radius: var(--fnae-radius); padding: 28px; box-shadow: var(--fnae-shadow); }
.fnae-step-number { position: absolute; right: 22px; top: 22px; width: 34px; height: 34px; border-radius: 50%; background: var(--fnae-blue-soft); color: var(--fnae-blue-dark); display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: .95em; }
.fnae-step-card h2, .fnae-step-card h3 { margin: 0 0 10px; color: var(--fnae-ink); font-weight: 700; font-size: 1.4em; padding-right: 46px; }
.fnae-step-card p { margin: 0 0 14px; color: var(--fnae-muted); line-height: 1.55; }
.fnae-step-card p:last-child { margin-bottom: 0; }
.fnae-sub-buttons { display: flex; gap: 10px; margin-top: 16px; flex-wrap: wrap; }
.fnae-sub-btn { border: 1px solid var(--fnae-border); padding: 10px 16px; border-radius: 9px; font-size: .92em; color: var(--fnae-blue-dark); font-weight: 600; text-decoration: none; transition: .15s; }
.fnae-sub-btn:hover { border-color: var(--fnae-blue); background: var(--fnae-blue-soft); }
.fnae-siret-box { margin-top: 16px; background: var(--fnae-blue-soft); color: var(--fnae-blue-dark); padding: 12px 14px; border-radius: 10px; font-size: .95em; font-weight: 700; }

/* Bandeau "Partie B" — info box charte (bleu doux) */
.fnae-pa-divider { background: var(--fnae-blue-soft); color: var(--fnae-blue-dark); padding: 12px 16px; border-radius: 10px; font-weight: 700; font-size: .82em; letter-spacing: .5px; margin-bottom: 16px; }

/* ---------------- Succès ---------------- */
.fnae-footer-cta { background: var(--fnae-card); border: 1px solid var(--fnae-border); border-radius: var(--fnae-radius); padding: 36px 28px; text-align: center; box-shadow: var(--fnae-shadow); }
.fnae-success-badge { display: inline-block; background: var(--fnae-blue-soft); color: var(--fnae-blue-dark); padding: 8px 16px; border-radius: 999px; font-size: .85em; font-weight: 700; margin-bottom: 14px; }
.fnae-footer-cta h2 { margin: 0 0 10px; color: var(--fnae-ink); font-weight: 700; }
.fnae-footer-cta p { margin: 0 0 22px; color: var(--fnae-muted); }
.fnae-success-actions { display: flex; flex-direction: column; gap: 12px; align-items: center; }
.fnae-success-support { color: var(--fnae-blue-dark); font-weight: 600; text-decoration: none; }
.fnae-success-support:hover { text-decoration: underline; }

/* Liens d'aide étapes */
.fnae-step-help { margin: 19px 0; padding: 0; font-size: .92em; color: var(--fnae-muted); }
.fnae-step-help a { color: var(--fnae-blue-dark); font-weight: 600; text-decoration: none; }
.fnae-step-help a:hover { text-decoration: underline; }
.fnae-step-card .fnae-btn-main { margin-top: 18px; }

/* ---------------- En-tête de progression (charte) ---------------- */
.fnae-progress-head { margin-bottom: 24px; }
.fnae-progress-head[hidden] { display: none; }
.fnae-progress-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 10px; }
.fnae-section-label { display: inline-flex; align-items: center; gap: 8px; color: var(--fnae-blue); font-weight: 700; font-size: .82em; letter-spacing: 1px; text-transform: uppercase; }
.fnae-section-label svg { flex: none; }
.fnae-progress-count { color: var(--fnae-faint); font-weight: 700; font-size: .9em; }
.fnae-progress-bar { display: flex; gap: 6px; }
.fnae-progress-seg { flex: 1; height: 6px; border-radius: 999px; background: var(--fnae-track); transition: background .25s; }
.fnae-progress-seg.is-active { background: var(--fnae-blue); }

/* ---------------- Parcours / animation ---------------- */
.fnae-wizard { position: relative; }
.fnae-screen[hidden] { display: none; }
.fnae-screen { animation: fnae-fade .25s ease; }
@keyframes fnae-fade { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: none; } }
.fnae-screen h1:focus, .fnae-screen h2:focus { outline: none; }

/* ---------------- Navigation ---------------- */
.fnae-wizard-nav { display: flex; align-items: center; gap: 16px; margin-top: 22px; padding-bottom: 24px; }
.fnae-nav-back { background: none; border: none; color: var(--fnae-muted); font-weight: 600; font-size: .98em; cursor: pointer; font-family: inherit; padding: 8px 4px; display: inline-flex; align-items: center; gap: 6px; transition: color .15s; }
.fnae-nav-back:hover { color: var(--fnae-ink); }
.fnae-nav-back[hidden] { display: none; }
.fnae-nav-next { margin-left: auto; background: #fff; color: var(--fnae-blue-dark); border: 1px solid var(--fnae-border); box-shadow: none; font-weight: 600; padding: 11px 20px; }
.fnae-nav-next:hover { background: var(--fnae-blue-soft); border-color: var(--fnae-blue); color: var(--fnae-blue-dark); transform: none; box-shadow: none; }
.fnae-nav-next[hidden] { display: none; }
.fnae-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; }

/* ---------------- Pied de page ---------------- */
.fnae-sitefooter { background: #fff; border-top: 1px solid var(--fnae-border); }
.fnae-sitefooter-inner { width: 80%; max-width: 1200px; margin: 0 auto; padding: 18px 0; display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: .85em; color: var(--fnae-muted); }
.fnae-sitefooter-links { display: flex; gap: 18px; flex-wrap: wrap; }
.fnae-sitefooter-links a { color: var(--fnae-muted); text-decoration: none; }
.fnae-sitefooter-links a:hover { color: var(--fnae-blue); text-decoration: underline; }

/* ---------------- Bandeau réforme (urgence pédagogique) ---------------- */
.fnae-reform-banner { display: flex; align-items: flex-start; gap: 10px; background: var(--fnae-blue-soft); color: var(--fnae-blue-dark); border: 1px solid #cfe2ec; border-radius: 12px; padding: 12px 16px; margin-bottom: 24px; font-size: .92em; line-height: 1.45; }
.fnae-reform-banner svg { flex: none; margin-top: 1px; color: var(--fnae-blue); }

/* ---------------- Chiffres de confiance (hero) ---------------- */
.fnae-trust-stats { list-style: none; display: flex; flex-wrap: wrap; gap: 14px; margin: 0 0 26px; padding: 0; }
.fnae-trust-stats li { flex: 1 1 0; min-width: 150px; display: flex; flex-direction: column; gap: 2px; padding: 14px 16px; background: var(--fnae-card); border: 1px solid var(--fnae-border); border-left: 3px solid var(--fnae-blue); border-radius: 10px; }
.fnae-trust-num { font-weight: 700; font-size: 1.18em; color: var(--fnae-blue); line-height: 1.15; }
.fnae-trust-lbl { font-size: .85em; color: var(--fnae-muted); line-height: 1.35; }

/* ---------------- Réassurance sous CTA ---------------- */
.fnae-reassurance { list-style: none; display: flex; flex-wrap: wrap; gap: 8px 18px; margin: 18px 0 0; padding: 0; justify-content: center; }
.fnae-reassurance li { display: inline-flex; align-items: center; gap: 6px; font-size: .86em; color: var(--fnae-muted); font-weight: 600; }
.fnae-reassurance li::before { content: "✓"; color: var(--fnae-blue); font-weight: 800; }

/* ---------------- Aperçu parcours 3 étapes ---------------- */
.fnae-steps-overview { background: var(--fnae-card); border: 1px solid var(--fnae-border); border-radius: var(--fnae-radius); padding: 28px; box-shadow: var(--fnae-shadow); margin-bottom: 28px; }
.fnae-steps-overview > h2 { margin: 0 0 6px; font-size: 1.3em; color: var(--fnae-ink); font-weight: 700; }
.fnae-steps-overview-sub { margin: 0 0 22px; color: var(--fnae-muted); font-size: .96em; }
.fnae-steps-list { list-style: none; display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin: 0; padding: 0; }
.fnae-steps-list li { display: flex; gap: 14px; align-items: flex-start; }
.fnae-steps-num { flex: none; width: 34px; height: 34px; border-radius: 50%; background: var(--fnae-blue); color: #fff; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: .98em; }
.fnae-steps-list h3 { margin: 0 0 4px; font-size: 1em; color: var(--fnae-ink); font-weight: 700; }
.fnae-steps-list p { margin: 0; font-size: .88em; color: var(--fnae-muted); line-height: 1.45; }

/* ---------------- Section confiance (différenciant) ---------------- */
.fnae-confiance { background: var(--fnae-card); border: 1px solid var(--fnae-border); border-radius: var(--fnae-radius); padding: 28px; box-shadow: var(--fnae-shadow); margin-bottom: 28px; }
.fnae-confiance > h2 { margin: 0 0 6px; font-size: 1.3em; color: var(--fnae-ink); font-weight: 700; }
.fnae-confiance-sub { margin: 0 0 22px; color: var(--fnae-muted); font-size: .96em; }
.fnae-confiance-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.fnae-confiance-item { padding: 18px; border: 1px solid var(--fnae-border); border-radius: 12px; background: #fbfdff; }
.fnae-confiance-item h3 { margin: 0 0 6px; font-size: 1.02em; color: var(--fnae-blue-dark); font-weight: 700; }
.fnae-confiance-item p { margin: 0; font-size: .88em; color: var(--fnae-muted); line-height: 1.5; }

/* ---------------- FAQ ---------------- */
.fnae-faq { background: var(--fnae-card); border: 1px solid var(--fnae-border); border-radius: var(--fnae-radius); padding: 28px; box-shadow: var(--fnae-shadow); margin-bottom: 28px; }
.fnae-faq > h2 { margin: 0 0 18px; font-size: 1.3em; color: var(--fnae-ink); font-weight: 700; }
.fnae-faq-item { border: 1px solid var(--fnae-border); border-radius: 12px; margin-bottom: 10px; overflow: hidden; }
.fnae-faq-item:last-child { margin-bottom: 0; }
.fnae-faq-item summary { cursor: pointer; padding: 14px 18px; font-weight: 700; color: var(--fnae-ink); font-size: .98em; list-style: none; display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.fnae-faq-item summary::-webkit-details-marker { display: none; }
.fnae-faq-item summary::after { content: "+"; color: var(--fnae-blue); font-weight: 700; font-size: 1.3em; line-height: 1; }
.fnae-faq-item[open] summary::after { content: "–"; }
.fnae-faq-item summary:focus-visible { outline: 2px solid var(--fnae-blue); outline-offset: -2px; }
.fnae-faq-item p { margin: 0; padding: 0 18px 16px; color: var(--fnae-muted); font-size: .92em; line-height: 1.55; }

/* ---------------- Mandat : dédramatisation ---------------- */
.fnae-mandat-explain { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 18px; }
.fnae-mandat-col { padding: 16px 18px; border-radius: 12px; border: 1px solid var(--fnae-border); }
.fnae-mandat-is { background: var(--fnae-blue-soft); border-color: #cfe2ec; }
.fnae-mandat-col h3 { margin: 0 0 8px; font-size: .95em; font-weight: 700; color: var(--fnae-blue-dark); padding-right: 0; }
.fnae-mandat-isnot h3 { color: var(--fnae-ink); }
.fnae-mandat-col ul { margin: 0; padding-left: 18px; }
.fnae-mandat-col li { color: var(--fnae-muted); font-size: .88em; line-height: 1.5; margin-bottom: 6px; }
.fnae-mandat-col li:last-child { margin-bottom: 0; }

/* ---------------- Responsive ---------------- */
@media (max-width: 900px) {
  .fnae-hero { grid-template-columns: 1fr; gap: 22px; }
  .fnae-hero-aside { position: static; }
  .fnae-hero .fnae-header h1 { font-size: 2.2em; }
}
@media (max-width: 640px) {
  .fnae-header h1 { font-size: 2em; }
  .fnae-trust-stats { flex-direction: column; }
  .fnae-steps-list, .fnae-confiance-grid, .fnae-mandat-explain { grid-template-columns: 1fr; }
  .fnae-benefits { grid-template-columns: 1fr; }
  .fnae-topbar-note { display: none; }
  .fnae-logo-img { height: 36px; }
  .fnae-topbar-inner, .fnae-sitefooter-inner, .fnae-lp-container { width: auto; }
  .fnae-topbar-inner, .fnae-sitefooter-inner { padding-left: 16px; padding-right: 16px; }
  .fnae-lp-container { padding: 24px 16px 12px; }
}
