/* ===== Charte AN Rénovation — vert dominant, bleu en accent, désaturés, style "T1" ===== */
:root {
  --color-primary: #3f7a5e;
  --color-primary-dark: #2c5943;
  --color-secondary: #4a7f9c;
  --color-accent: #4a7f9c;
  --color-bg: #ffffff;
  --color-bg-alt: #f4f6f5;
  --color-bg-alt-deep: #e8ede9;
  --color-text: #1e2422;
  --color-text-soft: #3a4542;
  --color-text-muted: #6a7674;
  --color-line: #e1e6e4;
  --radius: 14px;
  --radius-porthole: 56px;
  --radius-soft: 20px;
  --shadow: none;
  --container-width: 1180px;
  --section-pad: clamp(64px, 9vw, 128px);
  --sidebar-w: 236px;
}
/* Le site paraît long sur mobile en grande partie à cause des marges verticales entre
   sections, calculées pour du desktop. On les resserre nettement sur petit écran. */
@media (max-width: 640px) {
  :root { --section-pad: 40px; }
  .section-head, .section-intro { margin-bottom: 32px; }
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Public Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 28px;
}

h1, h2, h3 { margin: 0 0 0.5em; font-family: "Sora", sans-serif; font-weight: 300; letter-spacing: 0.005em; text-wrap: balance; }
h2 { font-size: clamp(1.7rem, 3vw, 2.5rem); line-height: 1.15; margin-bottom: 0.3em; }
.section-sub { text-align: center; color: var(--color-text-muted); margin-top: 0; margin-bottom: 2.5rem; }

/* ===== Section label (square + label) ===== */
.label {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--color-primary-dark); margin-bottom: 20px;
  font-family: "Public Sans", sans-serif;
}
.label::before { content: ""; width: 8px; height: 8px; background: var(--color-primary); flex-shrink: 0; }

/* The section label is the real heading — the biggest, clearest thing in the section */
.section-head .label {
  font-size: clamp(1.9rem, 3.4vw, 2.7rem);
  font-weight: 700; letter-spacing: 0.005em; text-transform: none;
  gap: 16px; margin-bottom: 12px;
}
.section-head .label::before { width: 15px; height: 15px; }

/* ===== Sidebar nav (transparent — text only) ===== */
.sidebar {
  position: fixed; top: 0; left: 0; bottom: 0; width: var(--sidebar-w);
  background: transparent; color: var(--color-text);
  display: flex; flex-direction: column;
  padding: 34px 26px 30px;
  z-index: 50;
  pointer-events: none;
}
.sidebar a, .sidebar button { pointer-events: auto; }
.sidebar-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 52px; }
.sidebar-logo { font-family: "Sora", sans-serif; font-weight: 600; font-size: 1.28rem; color: var(--color-primary-dark); text-decoration: none; letter-spacing: 0.01em; }
.sidebar-links { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 28px; flex: 1; }
.sidebar-links a {
  font-family: "Public Sans", sans-serif; font-weight: 600; font-size: 1.08rem;
  color: rgba(31,111,67,0.55); text-decoration: none;
  display: inline-block; transform-origin: left center;
  transition: font-size .3s cubic-bezier(.22,.9,.3,1), font-weight .3s ease;
}
.sidebar-links a.is-active { color: var(--color-primary-dark); font-size: 1.4rem; font-weight: 700; }
.sidebar-links li:last-child { margin-top: auto; }
.sidebar-cta {
  background: var(--color-primary); color: #fff !important;
  font-weight: 700 !important; font-size: 0.95rem !important;
  padding: 14px 20px; border-radius: 999px; text-align: center;
  transition: transform .15s ease, background .15s ease, color .15s ease, font-size .3s ease !important;
}
.sidebar-cta:hover { transform: translateY(-1px); background: #fff; color: var(--color-primary-dark) !important; }
.sidebar-cta.is-active { color: #fff !important; }

/* Each sidebar word turns white the instant it sits over the hero photo,
   and green the instant it sits over the white page — checked per word. */
.sidebar-logo.on-dark { color: #fff; }
.sidebar-links a.on-dark { color: rgba(255,255,255,0.65); }
.sidebar-links a.on-dark.is-active { color: #fff; }
.menu-toggle.on-dark span { background: #fff; }

.menu-toggle { display: none; background: none; border: none; color: var(--color-text); width: 30px; height: 20px; flex-direction: column; justify-content: space-between; cursor: pointer; padding: 0; }
.menu-toggle span { display: block; width: 100%; height: 2px; background: var(--color-primary-dark); border-radius: 2px; }

.page { margin-left: var(--sidebar-w); }

@media (max-width: 900px) {
  .sidebar {
    top: 0; left: 0; right: 0; bottom: auto; width: 100%; height: 68px;
    flex-direction: row; align-items: center; justify-content: space-between;
    padding: 0 22px;
  }
  .sidebar-top { margin-bottom: 0; }
  .sidebar-links {
    position: fixed; inset: 0 0 0 0; flex-direction: column; justify-content: center; align-items: center; gap: 36px;
    background: var(--color-bg);
    opacity: 0; pointer-events: none; transition: opacity .25s ease;
  }
  .sidebar-links.is-open { opacity: 1; pointer-events: auto; }
  .sidebar-links li:last-child { margin-top: 0; }
  .sidebar-links a { font-size: 1.5rem; }
  .sidebar-links a.is-active { font-size: 1.85rem; }
  .menu-toggle { display: flex; }
  .page { margin-left: 0; padding-top: 68px; }
}

/* ===== Buttons (flat, pill, no shadow) ===== */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 16px 30px; border-radius: 999px;
  font-family: "Public Sans", sans-serif; font-weight: 700; font-size: 0.98rem;
  text-decoration: none; border: none; cursor: pointer;
  transition: transform 0.15s ease, background 0.15s ease;
}
.btn-primary { background: var(--color-primary); color: #fff; }
.btn-primary:hover { background: var(--color-primary-dark); transform: translateY(-1px); }
.btn-ghost { background: transparent; color: var(--color-primary-dark); border: 1.5px solid var(--color-primary); }
.btn-line {
  background: transparent; color: var(--color-text); text-decoration: none; font-weight: 600; font-size: 0.94rem;
  display: inline-flex; align-items: center; gap: 6px;
  border-bottom: 1.5px solid currentColor; padding-bottom: 2px;
}
.btn-small { padding: 8px 18px; font-size: 0.9rem; }
.btn-full { width: 100%; justify-content: center; }

/* ===== Scroll reveal ===== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(.22,.9,.3,1), transform 0.7s cubic-bezier(.22,.9,.3,1);
  transition-delay: var(--delay, 0s);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  .reveal { transition: none; opacity: 1; transform: none; }
  html { scroll-behavior: auto; }
}

/* ===== Hero ===== */
.hero {
  position: relative;
  width: 100%;
  aspect-ratio: 4/5;
  max-height: 820px;
  min-height: 480px;
  overflow: hidden;
  background: var(--color-text);
}
@media (min-width: 640px) { .hero { aspect-ratio: 16/9; max-height: 720px; } }
@media (min-width: 901px) {
  .hero { margin-left: calc(-1 * var(--sidebar-w)); width: calc(100% + var(--sidebar-w)); }
}
.hero-photo-wrap { position: absolute; inset: 0; overflow: hidden; }
.hero-photo {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  object-position: 58% 38%;
  animation: kenburns 26s ease-out forwards;
  transform-origin: 58% 38%;
}
@keyframes kenburns { from { transform: scale(1); } to { transform: scale(1.1); } }
@media (prefers-reduced-motion: reduce) { .hero-photo { animation: none; } }

.hero-content { position: absolute; left: 0; bottom: 0; padding: 28px 28px 40px; max-width: 600px; }
@media (min-width: 901px) {
  .hero-content { left: var(--sidebar-w); padding-left: 28px; }
}
.frost {
  background: rgba(255,255,255,0.88);
  -webkit-backdrop-filter: blur(22px) saturate(160%);
  backdrop-filter: blur(22px) saturate(160%);
  border-radius: 28px;
}
.hero-content .frost { padding: 32px 32px 36px; }
.hero-content .label { color: var(--color-text); margin-bottom: 14px; }
.hero h1 { font-size: clamp(1.9rem, 3.6vw, 3.1rem); line-height: 1.05; color: var(--color-text); margin-bottom: 18px; }
.hero-sub { font-size: 1.04rem; line-height: 1.5; color: var(--color-text-soft); max-width: 44ch; margin: 0 0 26px; font-weight: 500; }
.hero-actions { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; }
@media (max-width: 640px) {
  .hero-content { padding: 20px 16px 28px; max-width: 100%; }
  .hero-content .frost { padding: 24px 22px 26px; }
}

/* ===== Trust strip ===== */
.trust-strip { padding: 44px 0; }
.trust-row { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: 10px; padding: 0 32px; font-weight: 600; font-size: 0.95rem; color: var(--color-text); border-left: 1px solid var(--color-line); }
.trust-item:first-child { border-left: none; }
.trust-item svg { flex-shrink: 0; }
@media (max-width: 700px) { .trust-item { border-left: none; padding: 8px 16px; } }

/* ===== Sections & grid ===== */
.section { padding: var(--section-pad) 0; }
/* Deux sections consécutives empilent chacune leur padding (haut+bas), soit 2×
   --section-pad. Quand les deux ont le MÊME fond (pas de repère visuel de séparation),
   ce doublon se voit et paraît trop grand : on le ramène à 1×. Quand les fonds
   DIFFÈRENT, la rupture de couleur marque déjà la séparation — le double espacement
   y reste nécessaire pour ne pas coller le contenu au changement de fond. */
.section:not(.on-mist) + .section:not(.on-mist) { margin-top: calc(-1 * var(--section-pad)); }
.section.on-mist + .section.on-mist { margin-top: calc(-1 * var(--section-pad)); }
.section.on-mist { background: var(--color-bg-alt); }
@media (min-width: 901px) {
  .section.on-mist {
    margin-left: calc(-1 * var(--sidebar-w));
    width: calc(100% + var(--sidebar-w));
    padding-left: var(--sidebar-w);
  }
}
.section-head { max-width: 640px; margin-bottom: 56px; }
.section-head h2 { font-size: clamp(1.15rem, 2vw, 1.5rem); font-weight: 400; line-height: 1.3; color: var(--color-text-soft); margin-bottom: 8px; }
.section-head p { color: var(--color-text-muted); font-size: 0.86rem; margin-top: 0; line-height: 1.5; max-width: 46ch; }
.grid { display: grid; gap: 32px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 900px) { .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 860px) { .grid-3 { grid-template-columns: 1fr; } }
/* Nos solutions reste en grille 2×2 jusqu'aux plus petits écrans (pas d'empilement 1 colonne). */
@media (max-width: 420px) { .grid-4 { gap: 16px; } }

/* ===== Reason cards (Pourquoi nous ?) ===== */
.reason { background: var(--color-bg-alt); border-radius: 32px; padding: 36px 32px; transition: transform 0.25s ease, background 0.25s ease; }
.reason:hover { transform: scale(1.035); background: var(--color-bg-alt-deep); }
.reason .num { font-family: "Sora", sans-serif; font-weight: 300; font-size: 2.4rem; color: var(--color-primary); display: block; margin-bottom: 18px; }
.reason h3 { font-family: "Public Sans", sans-serif; font-weight: 700; font-size: 1.08rem; color: var(--color-text); margin-bottom: 10px; }
.reason p { color: var(--color-text-muted); font-size: 0.96rem; line-height: 1.55; margin: 0; }

/* ===== Services (illustration cards) ===== */
.service-card { background: var(--color-bg-alt); border-radius: 32px; padding: 34px 30px 30px; transition: transform 0.25s ease, background 0.25s ease; }
.service-card:hover { transform: scale(1.03); background: var(--color-bg-alt-deep); }
.service-illus { width: 84px; height: 84px; display: flex; align-items: center; justify-content: center; background: #fff; border-radius: 50%; margin-bottom: 22px; }
.service-card h3 { font-family: "Public Sans", sans-serif; font-weight: 700; font-size: 1.06rem; color: var(--color-text); margin: 0 0 8px; line-height: 1.25; }
.service-card p { color: var(--color-text-muted); font-size: 0.92rem; line-height: 1.5; margin: 0; }

/* ===== Porthole gallery ===== */
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 36px 32px; }
@media (max-width: 860px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); } }
.porthole { border-radius: var(--radius-porthole); overflow: hidden; aspect-ratio: 4/3; cursor: zoom-in; }
.porthole img { width: 100%; height: 100%; object-fit: cover; display: block; }
.porthole.placeholder {
  cursor: default; background: var(--color-bg-alt);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 10px;
  color: var(--color-text-muted); text-align: center; padding: 20px;
}
.porthole.placeholder svg { opacity: 0.55; }
.porthole.placeholder span { font-size: 0.82rem; font-weight: 600; }
.gallery-cap { margin-top: 16px; font-size: 0.92rem; color: var(--color-text-muted); font-weight: 500; }

/* ===== Before / after ===== */
.ba-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; max-width: 880px; margin: 0 auto; }
.ba-item .porthole { aspect-ratio: 3/4; }

/* ===== Carrousels horizontaux swipables (mobile) =====
   Galerie, avant/après et grilles à 2 cartes basculent en défilement horizontal
   avec ancrage (scroll-snap) sur petit écran, plutôt qu'une pile verticale infinie
   — le swipe tactile est géré nativement par le navigateur, sans JS. */
@media (max-width: 640px) {
  .gallery-grid, .ba-grid {
    display: flex; grid-template-columns: none;
    overflow-x: auto; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch;
    gap: 20px; margin: 0 -20px; padding: 4px 20px 12px;
    scrollbar-width: none;
  }
  .gallery-grid::-webkit-scrollbar, .ba-grid::-webkit-scrollbar { display: none; }
  .gallery-grid > *, .ba-grid > * { flex: 0 0 80%; scroll-snap-align: start; }
}
@media (max-width: 760px) {
  .grid-2, .compare-grid {
    display: flex; grid-template-columns: none;
    overflow-x: auto; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch;
    gap: 18px; margin: 0 -20px; padding: 4px 20px 12px;
    scrollbar-width: none;
  }
  .grid-2::-webkit-scrollbar, .compare-grid::-webkit-scrollbar { display: none; }
  .grid-2 > *, .compare-grid > * { flex: 0 0 85%; scroll-snap-align: start; }
}
.ba-tag { display: inline-block; margin-top: 16px; font-size: 0.78rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--color-primary-dark); }

/* ===== Lightbox ===== */
.lightbox {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(20,26,22,0.94);
  display: none; align-items: center; justify-content: center;
  padding: 40px; cursor: zoom-out;
}
.lightbox.is-open { display: flex; }
.lightbox img { max-width: 92vw; max-height: 88vh; width: auto; height: auto; border-radius: 20px; object-fit: contain; }
.lightbox-close {
  position: fixed; top: 24px; right: 28px; z-index: 201;
  background: rgba(255,255,255,0.14); color: #fff; border: none;
  width: 40px; height: 40px; border-radius: 50%; font-size: 1.3rem; cursor: pointer;
  display: none; align-items: center; justify-content: center;
}

/* ===== Stats ===== */
.stats-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; text-align: center; }
@media (max-width: 700px) { .stats-grid { grid-template-columns: 1fr; gap: 40px; } }
.stat-prefix { display: block; font-size: 1rem; font-weight: 600; color: var(--color-text-muted); margin-bottom: 4px; }
.stat-number { font-family: "Sora", sans-serif; font-weight: 300; font-size: clamp(2.6rem, 5vw, 4rem); color: var(--color-primary); display: block; font-variant-numeric: tabular-nums; }
.stat-label { color: var(--color-text-muted); font-size: 0.98rem; margin-top: 6px; }

/* ===== Lead form ===== */
.lead-form-box { max-width: 600px; margin: 0 auto; }
.form-row { margin-bottom: 18px; display: flex; flex-direction: column; gap: 8px; }
.form-row label { font-weight: 600; font-size: 0.88rem; color: var(--color-text); }
.form-row input, .form-row textarea, .form-row select {
  padding: 15px 18px; border-radius: var(--radius-soft);
  border: 1.5px solid var(--color-line); background: var(--color-bg);
  font-size: 1rem; font-family: inherit; color: var(--color-text);
  transition: border-color 0.15s ease;
}
.form-row input:focus, .form-row textarea:focus, .form-row select:focus { outline: none; border-color: var(--color-primary); }
.form-row input::placeholder, .form-row textarea::placeholder { color: #a5ada6; }
.form-status { text-align: center; margin-top: 12px; font-weight: 600; min-height: 1.4em; }
.form-status.success { color: var(--color-primary-dark); }
.form-status.error { color: #b3261e; }

/* ===== Footer ===== */
.site-footer { padding: 56px 0 40px; background: #223730; color: #fff; text-align: left; }
@media (min-width: 901px) {
  .site-footer {
    margin-left: calc(-1 * var(--sidebar-w));
    width: calc(100% + var(--sidebar-w));
    padding-left: var(--sidebar-w);
  }
}
.site-footer p { color: rgba(255,255,255,0.85); }
.footer-row { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; margin-bottom: 24px; }
.footer-logo { font-family: "Sora", sans-serif; font-weight: 600; font-size: 1.1rem; color: #fff; }
.footer-links { display: flex; gap: 24px; flex-wrap: wrap; font-size: 0.88rem; color: rgba(255,255,255,0.78); }
.footer-links a { text-decoration: none; color: rgba(255,255,255,0.85); }
.footer-links a:hover { color: #fff; }
.footer-legal { font-size: 0.82rem; color: rgba(255,255,255,0.6); opacity: 1; }
.footer-legal a { color: rgba(255,255,255,0.75); }
.footer-legal a:hover { color: #fff; }

/* ===== Section intro (petit label vert + grand titre, variante centrée) ===== */
.section-intro { max-width: 680px; margin: 0 auto 56px; text-align: center; }
.section-intro .label { justify-content: center; margin-bottom: 16px; }
.section-intro h2 { color: var(--color-text); }
.section-intro p { color: var(--color-text-muted); font-size: 0.98rem; line-height: 1.6; margin: 0; }

.grid-2 { grid-template-columns: repeat(2, 1fr); }
@media (max-width: 860px) and (min-width: 761px) { .grid-2 { grid-template-columns: 1fr; } }

/* ===== Info cards (étude à domicile / documentation PAC) ===== */
.info-card { background: #f3f9f5; border: 1px solid var(--color-line); border-radius: var(--radius); padding: 36px 32px; box-shadow: 0 8px 28px rgba(28,35,31,0.06); }
.info-card h3 { font-family: "Sora", sans-serif; font-weight: 600; font-size: 1.2rem; color: var(--color-primary-dark); margin-bottom: 6px; }
.info-card-tagline { color: var(--color-primary); font-weight: 600; font-size: 0.94rem; margin: 0 0 22px; }
.info-block { margin-top: 20px; }
.info-card h3 + .info-block { margin-top: 22px; }
.info-tag { display: block; font-size: 0.76rem; font-weight: 700; letter-spacing: 0.09em; text-transform: uppercase; color: var(--color-primary); margin-bottom: 8px; }
.info-block p, .choice-grid p { margin: 0; color: var(--color-text-muted); font-size: 0.94rem; line-height: 1.55; }
.section-footnote { text-align: center; color: var(--color-text-muted); font-size: 0.85rem; margin-top: 32px; }

.choice-grid { gap: 28px; margin-top: 24px; }

/* ===== Encart sombre — étapes d'installation ===== */
.dark-panel { background: var(--color-primary-dark); color: #fff; border-radius: var(--radius); padding: clamp(32px, 5vw, 48px); margin-top: 40px; }
.dark-panel h3 { color: #fff; font-family: "Sora", sans-serif; font-weight: 600; font-size: 1.4rem; margin-bottom: 10px; }
.dark-panel > p { color: rgba(255,255,255,0.78); font-size: 0.95rem; margin: 0 0 32px; max-width: 62ch; }
.step-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 22px; }
.step-list li { display: flex; gap: 18px; align-items: flex-start; }
.step-num {
  flex-shrink: 0; width: 34px; height: 34px; border-radius: 50%;
  background: var(--color-primary); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-family: "Sora", sans-serif; font-size: 0.95rem;
}
.step-list p { margin: 0; color: rgba(255,255,255,0.92); font-size: 0.95rem; line-height: 1.55; }
.step-list strong { color: #fff; }

/* ===== Comparatif avant/après (toiture encrassée vs toiture nettoyée) ===== */
.compare-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; max-width: 960px; margin: 0 auto; }
.compare-card { border-radius: var(--radius); padding: 36px 32px; }
.compare-card.is-before { background: #fdf2f1; }
.compare-card.is-after { background: #f0f8f3; }
.compare-tag {
  display: inline-block; font-size: 0.76rem; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; padding: 5px 14px; border-radius: 999px; margin-bottom: 18px;
}
.compare-card.is-before .compare-tag { background: #f4d3d0; color: #a3372c; }
.compare-card.is-after .compare-tag { background: #dcece2; color: var(--color-secondary); }
.compare-card h3 { font-family: "Sora", sans-serif; font-weight: 600; font-size: 1.25rem; margin-bottom: 20px; color: var(--color-text); }
.compare-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 14px; }
.compare-list li { display: flex; align-items: flex-start; gap: 12px; font-size: 0.95rem; line-height: 1.5; color: var(--color-text-soft); }
.compare-list li::before {
  content: ""; flex-shrink: 0; width: 22px; height: 22px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.72rem; font-weight: 700; color: #fff; margin-top: 1px;
}
.compare-card.is-before .compare-list li::before { content: "✕"; background: #c0463c; }
.compare-card.is-after .compare-list li::before { content: "✓"; background: var(--color-secondary); }

/* ===== Aides & subventions (badges) ===== */
.aid-badges { display: flex; flex-wrap: wrap; justify-content: center; gap: 16px; max-width: 760px; margin: 0 auto; }
.aid-badge {
  display: inline-flex; align-items: center; gap: 10px;
  background: #f3f9f5; border: 1px solid var(--color-line);
  padding: 12px 22px; border-radius: 999px;
  font-weight: 600; font-size: 0.94rem; color: var(--color-text);
}
.aid-badge::before {
  content: "✓"; flex-shrink: 0; width: 20px; height: 20px; border-radius: 50%;
  background: var(--color-primary); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.68rem; font-weight: 700;
}

/* ===== FAQ accordéon ===== */
.faq-list { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 14px; }
.faq-item { background: #fff; border: 1px solid var(--color-line); border-radius: var(--radius); overflow: hidden; }
.faq-question {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px;
  background: none; border: none; text-align: left; cursor: pointer;
  padding: 20px 24px; font-family: "Public Sans", sans-serif; font-weight: 700; font-size: 1rem; color: var(--color-text);
}
.faq-chevron { flex-shrink: 0; color: var(--color-primary); transition: transform .25s ease; }
.faq-item.is-open .faq-chevron { transform: rotate(180deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.faq-item.is-open .faq-answer { max-height: 400px; }
.faq-answer p { margin: 0; padding: 0 24px 22px; color: var(--color-text-muted); font-size: 0.94rem; line-height: 1.6; }
@media (max-width: 640px) {
  .faq-list { gap: 10px; }
  .faq-question { padding: 15px 18px; font-size: 0.93rem; gap: 12px; }
  .faq-answer p { padding: 0 18px 16px; font-size: 0.9rem; }
}

/* ===== Bouton WhatsApp flottant ===== */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(0,0,0,.28);
  z-index: 999;
  transition: transform .2s ease, box-shadow .2s ease;
}
.whatsapp-float:hover { transform: scale(1.08); box-shadow: 0 6px 20px rgba(0,0,0,.32); }
.whatsapp-float svg { width: 32px; height: 32px; display: block; }
@media (max-width: 480px) {
  .whatsapp-float { width: 52px; height: 52px; bottom: 16px; right: 16px; }
  .whatsapp-float svg { width: 28px; height: 28px; }
}
