/* ============================================================
   Famille & Avenir — Styles
   Palette inspirée de Rentila.com
   Vert  #4CAF50  · Blanc #FFFFFF · Gris clair #F9FAFB
   Texte #111827  · Badge violet #6D28D9 · Étoiles #F59E0B
   Typo  Montserrat (titres 700/800) · Inter (corps 400/500)
   ============================================================ */

:root {
  /* Verts */
  --green:        #4CAF50;
  --green-hover:  #43A047;
  --green-dark:   #2E7D32;
  --green-light:  #F1F8E9;
  --green-mid:    #E8F5E9;
  --green-border: #C8E6C9;

  /* Neutres */
  --white:    #FFFFFF;
  --bg:       #F9FAFB;
  --bg-2:     #F3F4F6;
  --border:   #E5E7EB;
  --border-2: #D1D5DB;

  /* Texte */
  --ink:       #111827;
  --ink-2:     #1F2937;
  --ink-soft:  #374151;
  --ink-mute:  #6B7280;
  --ink-faint: #9CA3AF;

  /* Badge violet (style Rentila) */
  --badge-bg:     #F5F3FF;
  --badge-border: #DDD6FE;
  --badge-text:   #6D28D9;

  /* Étoiles */
  --star: #F59E0B;

  /* Section sombre */
  --dark:   #111827;
  --dark-2: #1F2937;

  --radius:    12px;
  --radius-lg: 18px;
  --radius-sm: 8px;

  --shadow-sm: 0 1px 4px rgba(0,0,0,0.06);
  --shadow:    0 4px 16px rgba(0,0,0,0.08);
  --shadow-lg: 0 12px 36px rgba(0,0,0,0.12);

  --maxw:     1180px;
  --header-h: 72px;

  --ff-title: 'Montserrat', system-ui, sans-serif;
  --ff-body:  'Inter', system-ui, sans-serif;
}

/* ---------- Reset ---------- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 32px);
}
body {
  font-family: var(--ff-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink-soft);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img  { max-width: 100%; display: block; }
a    { color: inherit; text-decoration: none; }
ul   { list-style: none; }
h1, h2, h3, h4 {
  font-family: var(--ff-title);
  font-weight: 700;
  line-height: 1.15;
  color: var(--ink);
  letter-spacing: -0.02em;
}
p { text-wrap: pretty; }
:focus-visible { outline: 3px solid var(--green); outline-offset: 2px; border-radius: 4px; }

/* ---------- Layout ---------- */
.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.section    { padding: 88px 0; }
.section-sm { padding: 52px 0; }
.bg-gray { background: var(--bg); }
.bg-dark { background: var(--dark); color: rgba(255,255,255,0.88); }
.bg-dark h2, .bg-dark h3 { color: #fff; }

.eyebrow {
  display: inline-block;
  font-family: var(--ff-title);
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green-dark);
}
.bg-dark .eyebrow { color: var(--green); }

.section-head { max-width: 680px; margin: 0 auto 52px; text-align: center; }
.section-head h2 { font-size: clamp(1.85rem, 3.4vw, 2.55rem); margin: 12px 0 14px; }
.section-head p  { color: var(--ink-mute); font-size: 1.05rem; }

/* ============================================================
   Bandeau démo
   ============================================================ */
.demo-banner {
  background: linear-gradient(90deg, #fef9c3, #fef3c7);
  border-bottom: 1px solid #fde68a;
  color: #92400e;
  font-family: var(--ff-title);
  font-weight: 600;
  font-size: 0.81rem;
  text-align: center;
  padding: 7px 16px;
  letter-spacing: 0.02em;
}
.demo-banner .dot {
  display: inline-block;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #d97706;
  margin-right: 8px;
  vertical-align: middle;
}

/* ============================================================
   Header
   ============================================================ */
.header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,0.96);
  backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow .2s;
}
.header.scrolled { box-shadow: 0 4px 20px rgba(0,0,0,0.07); }
.header-inner {
  height: var(--header-h);
  display: flex; align-items: center; gap: 28px;
}

/* Logo */
.logo { display: flex; align-items: center; gap: 11px; flex-shrink: 0; }
.logo-mark {
  width: 44px; height: 44px;
  display: grid; place-items: center;
  background: var(--green);
  color: #fff;
  font-family: var(--ff-title); font-weight: 700; font-size: 1.1rem;
  border-radius: 10px;
  letter-spacing: 0.02em;
}
.logo-mark-img { width: 44px; height: 44px; object-fit: contain; }
.logo-text  { display: flex; flex-direction: column; line-height: 1.1; }
.logo-name  { font-family: var(--ff-title); font-weight: 700; font-size: 0.98rem; color: var(--ink); display: inline-flex; align-items: center; gap: 7px; }
.logo-sub   { font-size: 0.69rem; color: var(--ink-mute); font-weight: 500; }

/* Mini drapeaux */
.flags  { display: inline-flex; gap: 3px; }
.flag   { width: 20px; height: 14px; border-radius: 2px; overflow: hidden; border: 1px solid rgba(0,0,0,0.1); position: relative; flex-shrink: 0; }
.flag-fi { background: #fff; }
.flag-fi::before { content:''; position:absolute; top:0; bottom:0; left:5px; width:4px; background:#003580; }
.flag-fi::after  { content:''; position:absolute; left:0; right:0; top:4.5px; height:4px; background:#003580; }
.flag-eu { background:#003399; }
.flag-eu i { position:absolute; top:50%; left:50%; width:2px; height:2px; margin:-1px 0 0 -1px; border-radius:50%; background:#FFCC00; }

/* Nav */
.nav { display: flex; align-items: center; gap: 2px; margin-left: auto; }
.nav a {
  font-family: var(--ff-title); font-weight: 600; font-size: 0.89rem;
  color: var(--ink-mute); padding: 8px 13px;
  border-radius: 8px;
  transition: color .15s, background .15s;
  position: relative;
  white-space: nowrap;
}
.nav a:hover  { color: var(--ink); background: var(--bg); }
.nav a.active { color: var(--green-dark); }
.nav a.active::after {
  content: ''; display: block; height: 2.5px; width: 18px;
  margin: 3px auto -2px;
  background: var(--green); border-radius: 2px;
}

/* Bouton CTA dans le nav : masqué sur desktop, visible dans menu mobile */
.nav > a.btn { display: none; }

.header-right { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }

/* Sélecteur de langue */
.lang-switcher {
  display: inline-flex; align-items: center; gap: 2px;
  background: var(--bg); border: 1px solid var(--border);
  border-radius: 999px; padding: 3px;
}
.lang-btn {
  display: inline-flex; align-items: center; gap: 5px;
  border: 0; background: transparent; cursor: pointer;
  font: inherit; font-size: 0.82rem; font-weight: 600; color: var(--ink-soft);
  padding: 5px 10px; border-radius: 999px; line-height: 1;
  transition: background .15s, color .15s;
}
.lang-btn .flag { display: inline-flex; line-height: 0; }
.lang-btn .flag svg { width: 18px; height: 12px; border-radius: 2px; display: block; box-shadow: 0 0 0 1px rgba(0,0,0,.08); }
.lang-btn:hover { color: var(--ink); }
.lang-btn.active { background: var(--white); color: var(--ink); box-shadow: 0 1px 3px rgba(0,0,0,.08); }

/* ============================================================
   Boutons
   ============================================================ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--ff-title); font-weight: 600; font-size: 0.9rem;
  padding: 11px 22px; border-radius: 10px; cursor: pointer;
  border: 2px solid transparent;
  transition: transform .15s, box-shadow .18s, background .15s, color .15s;
  white-space: nowrap; text-decoration: none;
}
.btn:active { transform: translateY(1px); }

.btn-primary {
  background: var(--green); color: #fff;
  border-color: var(--green);
  border-radius: 999px;
  box-shadow: 0 2px 8px rgba(76,175,80,.25);
  letter-spacing: 0.01em;
}
.btn-primary:hover {
  background: var(--green-hover); border-color: var(--green-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(76,175,80,.35);
}
.btn-outline {
  background: transparent; color: var(--ink); border-color: var(--border-2);
}
.btn-outline:hover { background: var(--bg); border-color: var(--ink-faint); }
.btn-outline-light {
  background: transparent; color: #fff; border-color: rgba(255,255,255,.4);
}
.btn-outline-light:hover { background: rgba(255,255,255,.1); border-color: #fff; }
.btn-sm { padding: 8px 16px; font-size: 0.83rem; }
.btn-lg { padding: 15px 30px; font-size: 1rem; }
.btn .ico { width: 18px; height: 18px; flex-shrink: 0; }

/* Hamburger */
.burger {
  display: none; width: 42px; height: 42px;
  border: 1px solid var(--border); background: var(--white);
  border-radius: 9px; cursor: pointer;
  flex-direction: column; align-items: center; justify-content: center; gap: 5px;
}
.burger span { width: 18px; height: 2px; background: var(--ink); border-radius: 2px; transition: transform .25s, opacity .2s; }
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   Barre avis (style Rentila)
   ============================================================ */
.reviews-bar {
  background: var(--bg); border-bottom: 1px solid var(--border);
  padding: 10px 0; overflow: hidden;
}
.reviews-bar-inner {
  display: flex; align-items: center; justify-content: center;
  gap: 28px; flex-wrap: wrap;
}
.review-item { display: flex; align-items: center; gap: 7px; font-size: 0.84rem; color: var(--ink-soft); white-space: nowrap; }
.review-item .stars-sm { display: flex; gap: 1px; color: var(--star); }
.review-item .stars-sm svg { width: 13px; height: 13px; }
.review-sep { width: 1px; height: 16px; background: var(--border); }

/* ============================================================
   Hero
   ============================================================ */
.hero {
  background: linear-gradient(160deg, #f0faf0 0%, var(--white) 55%);
  padding: 90px 0 110px;
  position: relative; overflow: hidden;
}
.hero-bg-blob {
  position: absolute; top: -120px; right: -160px;
  width: 560px; height: 560px; border-radius: 50%;
  background: radial-gradient(circle, rgba(76,175,80,.10) 0%, transparent 70%);
  pointer-events: none;
}
.hero-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 64px; align-items: center; }

/* Badge pill */
.badge-pill {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--green-light); border: 1px solid rgba(76,175,80,.3);
  color: var(--green-dark);
  font-family: var(--ff-title); font-weight: 600; font-size: 0.82rem;
  padding: 8px 16px; border-radius: 999px; margin-bottom: 28px;
}
.badge-pill svg { flex-shrink: 0; }

.hero h1 {
  font-size: clamp(2.6rem, 5.2vw, 4rem);
  font-weight: 800; line-height: 1.1;
  color: var(--ink); margin-bottom: 20px;
  letter-spacing: -0.02em;
}
.hero-highlight {
  color: var(--green-dark);
  position: relative; display: inline-block;
}
.hero-highlight::after {
  content: '';
  position: absolute; bottom: 2px; left: 0; right: 0;
  height: 6px;
  background: rgba(76,175,80,.22);
  border-radius: 3px; z-index: -1;
}
.hero .lead {
  font-size: 1.1rem; color: var(--ink-mute);
  max-width: 500px; margin-bottom: 36px; line-height: 1.72;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 32px; }
.hero-checks {
  display: flex; flex-wrap: wrap; gap: 16px 24px;
}
.hero-check {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 0.88rem; color: var(--ink-soft); font-weight: 500;
}
.hero-check svg { width: 16px; height: 16px; color: var(--green); flex-shrink: 0; }

/* Placeholders image */
.ph {
  background: repeating-linear-gradient(45deg, var(--bg), var(--bg) 12px, var(--bg-2) 12px, var(--bg-2) 24px);
  border: 1px solid var(--border); border-radius: var(--radius-lg);
  display: flex; align-items: center; justify-content: center;
  min-height: 120px; position: relative; overflow: hidden;
}
.ph::after {
  content: attr(data-label);
  font-family: 'SFMono-Regular', ui-monospace, monospace; font-size: 0.75rem;
  color: var(--ink-mute); background: rgba(255,255,255,.9);
  border: 1px solid var(--border); padding: 5px 11px; border-radius: 6px;
  text-align: center; max-width: 80%;
}
.ph-hero { aspect-ratio: 4/3.2; box-shadow: var(--shadow-lg); }
.hero-illustration { display: flex; align-items: center; justify-content: center; }
.hero-img { width: 100%; max-width: 960px; height: auto; display: block; }
.processus-illustration { display: flex; justify-content: center; margin: -40px 0 -16px; }
.processus-img { width: 100%; max-width: 580px; height: auto; display: block; }

/* ============================================================
   Stats section — cartes blanches avec accent vert
   ============================================================ */
.stats-section {
  background: var(--bg);
  padding: 56px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.stats { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.stat {
  text-align: center; padding: 32px 24px;
  background: var(--white);
  border: 1px solid var(--border);
  border-top: 4px solid var(--green);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: transform .2s, box-shadow .2s;
}
.stat:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.stat .num {
  font-family: var(--ff-title); font-weight: 800;
  font-size: clamp(2rem,4vw,2.8rem); color: var(--green-dark); line-height: 1;
}
.stat .lbl { margin-top: 12px; color: var(--ink); font-size: 0.95rem; font-weight: 600; }
.stat .sub { color: var(--ink-mute); font-size: 0.8rem; margin-top: 4px; }
.stat + .stat { border-left: none; }

/* ============================================================
   Cards generiques
   ============================================================ */
.card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 28px; box-shadow: var(--shadow-sm);
  transition: transform .2s, box-shadow .2s, border-color .2s;
}
.card.lift:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: var(--green-border); }
.card-icon {
  width: 50px; height: 50px; border-radius: 11px;
  display: grid; place-items: center;
  background: var(--green-light); color: var(--green-dark); margin-bottom: 16px;
}
.card-icon svg { width: 24px; height: 24px; }
.card h3 { font-size: 1.1rem; margin-bottom: 8px; color: var(--ink); }
.card p  { color: var(--ink-mute); font-size: 0.93rem; }

.grid   { display: grid; gap: 22px; }
.grid-2 { grid-template-columns: repeat(2,1fr); }
.grid-3 { grid-template-columns: repeat(3,1fr); }
.grid-4 { grid-template-columns: repeat(4,1fr); }

/* ============================================================
   Etapes
   ============================================================ */
.steps { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.step  { position: relative; padding-top: 10px; }
.step-num {
  width: 52px; height: 52px; border-radius: 50%;
  display: grid; place-items: center;
  font-family: var(--ff-title); font-weight: 700; font-size: 1.2rem; color: #fff;
  background: var(--green); margin-bottom: 16px;
  box-shadow: 0 4px 12px rgba(76,175,80,.25);
}
.step h3 { font-size: 1.08rem; margin-bottom: 7px; color: var(--ink); }
.step p  { color: var(--ink-mute); font-size: 0.92rem; }
.steps.connect .step:not(:last-child)::after {
  content: ''; position: absolute;
  top: 36px; left: 60px; right: -12px; height: 2px;
  background: repeating-linear-gradient(90deg, var(--green-border), var(--green-border) 5px, transparent 5px, transparent 10px);
}

/* ============================================================
   Cartes éligibilité
   ============================================================ */
.elig { display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; }
.elig-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 24px 20px; text-align: center;
  box-shadow: var(--shadow-sm);
  transition: transform .2s, box-shadow .2s, border-color .2s;
}
.elig-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--green-border); }
.elig-card .card-icon { margin: 0 auto 14px; }
.elig-card h3 { font-size: 0.98rem; margin-bottom: 5px; color: var(--ink); }
.elig-card p  { font-size: 0.86rem; color: var(--ink-mute); }

/* ============================================================
   Bannière CTA
   ============================================================ */
.cta-banner {
  background: linear-gradient(135deg, #1B5E20 0%, var(--green-dark) 100%);
  border-radius: var(--radius-lg); padding: 56px 48px; text-align: center;
  position: relative; overflow: hidden;
}
.cta-banner::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 82% 18%, rgba(76,175,80,.22), transparent 50%);
}
.cta-banner > * { position: relative; }
.cta-banner h2 { color: #fff; font-size: clamp(1.7rem,3.2vw,2.3rem); margin-bottom: 12px; }
.cta-banner p  { color: rgba(255,255,255,.8); max-width: 560px; margin: 0 auto 24px; font-size: 1.04rem; }

/* ============================================================
   À propos
   ============================================================ */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.about-grid .ph { aspect-ratio: 4/3.2; }

/* Dispositifs */
.dispositif {
  display: flex; gap: 14px; align-items: flex-start;
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 20px;
  box-shadow: var(--shadow-sm);
  transition: transform .2s, box-shadow .2s;
}
.dispositif:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.dispositif .chip {
  width: 52px; height: 52px; flex-shrink: 0; border-radius: 10px;
  display: grid; place-items: center;
  background: var(--green-light);
  font-family: var(--ff-title); font-weight: 700;
  color: var(--green-dark); font-size: 0.86rem; text-align: center; line-height: 1.1;
}
.dispositif h3  { font-size: 1rem; margin-bottom: 3px; color: var(--ink); }
.dispositif p   { font-size: 0.87rem; color: var(--ink-mute); }
.dispositif .ext {
  font-size: 0.73rem; color: var(--green-dark); font-weight: 600;
  margin-top: 6px; display: inline-flex; align-items: center; gap: 4px;
}

/* Equipe */
.team-avatar {
  width: 96px; height: 96px; border-radius: 50%;
  display: grid; place-items: center;
  font-family: var(--ff-title); font-weight: 700; font-size: 1.6rem; color: #fff;
  background: #e0e0e0;
  margin: 0 auto 14px;
  overflow: hidden;
}
.team-avatar img {
  width: 100%; height: 100%; object-fit: cover; object-position: center top;
  border-radius: 50%;
  transform: scale(1.1);
}
.team-card      { text-align: center; }
.team-card h3   { font-size: 1.02rem; margin-bottom: 2px; }
.team-card .role { color: var(--green-dark); font-weight: 600; font-family: var(--ff-title); font-size: 0.82rem; }
.team-card .bio { color: var(--ink-mute); font-size: 0.87rem; margin-top: 8px; }

/* ============================================================
   Services
   ============================================================ */
.service-card { display: flex; flex-direction: column; }
.service-amount {
  display: inline-flex; align-items: baseline; gap: 5px;
  margin: 14px 0 3px; font-family: var(--ff-title);
}
.service-amount .val  { font-size: 1.55rem; font-weight: 700; color: var(--green-dark); }
.service-amount .unit { font-size: 0.81rem; color: var(--ink-mute); font-weight: 500; }
.service-tag {
  align-self: flex-start;
  font-family: var(--ff-title); font-weight: 600; font-size: 0.69rem;
  letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--green-dark); background: var(--green-light);
  padding: 4px 10px; border-radius: 999px; margin-bottom: 2px;
}

/* ============================================================
   Timeline
   ============================================================ */
.timeline { position: relative; max-width: 740px; margin: 0 auto; padding-left: 10px; }
.timeline::before {
  content: ''; position: absolute; left: 26px; top: 8px; bottom: 8px; width: 2px;
  background: linear-gradient(var(--green), var(--green-dark));
}
.tl-item { position: relative; padding: 0 0 36px 72px; }
.tl-item:last-child { padding-bottom: 0; }
.tl-item:last-child::after {
  content: ''; position: absolute;
  left: 25px; top: 21px; bottom: -40px; width: 4px;
  background: var(--white); z-index: 2;
}
.tl-dot {
  position: absolute; left: 10px; top: 0;
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--white); border: 2.5px solid var(--green);
  display: grid; place-items: center;
  font-family: var(--ff-title); font-weight: 700; color: var(--green-dark); font-size: 1rem; z-index: 1;
}
.tl-item h3 { font-size: 1.1rem; margin-bottom: 5px; color: var(--ink); }
.tl-item p  { color: var(--ink-mute); font-size: 0.91rem; }

/* ============================================================
   Témoignages
   ============================================================ */
.testi-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 20px; }
.testi {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 24px; box-shadow: var(--shadow-sm);
  transition: transform .2s, box-shadow .2s; display: flex; flex-direction: column;
}
.testi:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.testi-head { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.testi-avatar {
  width: 46px; height: 46px; border-radius: 50%; flex-shrink: 0;
  display: grid; place-items: center;
  font-family: var(--ff-title); font-weight: 700; color: #fff; font-size: 0.96rem;
  background: var(--green);
}
.testi-who .name { font-family: var(--ff-title); font-weight: 700; color: var(--ink); font-size: 0.94rem; }
.testi-who .city { font-size: 0.8rem; color: var(--ink-mute); }
.stars     { display: flex; gap: 2px; margin-bottom: 10px; color: var(--star); }
.stars svg { width: 15px; height: 15px; }
.testi blockquote { color: var(--ink-soft); font-size: 0.93rem; line-height: 1.6; font-style: italic; }
.testi blockquote::before { content:'"'; font-family: var(--ff-title); color: var(--green); font-size: 1.8rem; line-height: 0; vertical-align: -0.35em; margin-right: 2px; }

/* ============================================================
   FAQ
   ============================================================ */
.faq-cats { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; margin-bottom: 36px; }
.faq-cat-btn {
  font-family: var(--ff-title); font-weight: 600; font-size: 0.86rem; cursor: pointer;
  padding: 9px 16px; border-radius: 999px;
  border: 1.5px solid var(--border); background: var(--white); color: var(--ink-mute);
  transition: all .15s;
}
.faq-cat-btn:hover  { border-color: var(--green-border); color: var(--ink); }
.faq-cat-btn.active { background: var(--green); color: #fff; border-color: var(--green); }

.faq-group      { max-width: 800px; margin: 0 auto; }
.faq-group h3   { font-size: 1.15rem; margin: 32px 0 14px; padding-bottom: 10px; border-bottom: 2px solid var(--border); display: flex; align-items: center; gap: 9px; }
.faq-group:first-child h3 { margin-top: 0; }
.faq-item {
  background: var(--white); border: 1.5px solid var(--border);
  border-radius: var(--radius); margin-bottom: 10px; overflow: hidden;
  transition: box-shadow .2s, border-color .2s;
}
.faq-item.open { box-shadow: var(--shadow); border-color: var(--green-border); }
.faq-q {
  width: 100%; text-align: left; background: none; border: none; cursor: pointer;
  font-family: var(--ff-title); font-weight: 600; font-size: 0.97rem; color: var(--ink);
  padding: 18px 22px; display: flex; align-items: center; justify-content: space-between; gap: 14px;
}
.faq-q .chev { flex-shrink: 0; width: 20px; height: 20px; transition: transform .26s; color: var(--ink-mute); }
.faq-item.open .chev { transform: rotate(180deg); }
.faq-a         { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.faq-a-inner   { padding: 0 22px 20px; color: var(--ink-mute); font-size: 0.94rem; line-height: 1.65; }
.faq-a-inner strong { color: var(--ink); }
.bf-hero-text p strong { color: var(--green); font-weight: 700; white-space: nowrap; }

/* ============================================================
   Témoignages défilables
   ============================================================ */
.tm-container { width: 100%; max-width: 1680px; margin: 0 auto; padding: 0 40px; }
.tm-row { display: flex; align-items: center; gap: 0; margin-top: 8px; }
.tm-rating { flex: 0 0 200px; display: flex; flex-direction: column; align-items: center; text-align: center; padding: 0 18px; }
.tm-grade { font-size: 1.6rem; font-weight: 800; color: var(--ink); margin-bottom: 12px; letter-spacing: -.5px; }
.tm-based { font-size: 0.92rem; color: var(--ink-soft); margin-top: 14px; }
.tm-num-ul { text-decoration: underline; text-underline-offset: 2px; }
.tm-star-green { color: var(--green); margin-right: 2px; }

.tm-stars { display: flex; gap: 3px; }
.tm-sq { background: #00b67a; display: flex; align-items: center; justify-content: center; border-radius: 2px; }
.tm-sq.empty { background: #cfd3da; }
.tm-sq svg { fill: #fff; }
.tm-stars-big .tm-sq { width: 34px; height: 34px; background: #73cf11; }
.tm-stars-big .tm-sq.empty { background: #cfd3da; }
.tm-stars-big .tm-sq svg { width: 22px; height: 22px; }
.tm-rev-stars .tm-sq { width: 21px; height: 21px; }
.tm-rev-stars .tm-sq svg { width: 13px; height: 13px; }

.tm-nav { flex: 0 0 auto; width: 46px; height: 46px; border-radius: 50%; border: 1px solid var(--border); background: var(--white); color: var(--ink); display: flex; align-items: center; justify-content: center; cursor: pointer; margin: 0 10px; transition: background .15s, border-color .15s, opacity .15s; }
.tm-nav svg { width: 18px; height: 18px; }
.tm-nav:hover { background: var(--bg); }
.tm-nav:disabled { opacity: .35; cursor: default; }

.tm-viewport { flex: 1 1 auto; overflow-x: auto; overflow-y: hidden; scroll-behavior: smooth; scrollbar-width: none; }
.tm-viewport::-webkit-scrollbar { display: none; }
.tm-track { display: flex; width: max-content; }

.tm-review { flex: 0 0 auto; padding: 0 22px; min-width: 0; }
a.tm-review { display: block; text-decoration: none; color: inherit; cursor: pointer; transition: transform .15s ease; }
a.tm-review:hover .tm-rev-title { text-decoration: underline; }
.tm-review-head { display: flex; align-items: center; gap: 7px; margin-bottom: 14px; flex-wrap: nowrap; }
.tm-badge { display: inline-flex; align-items: center; gap: 5px; font-size: 0.8rem; color: var(--ink); white-space: nowrap; }
.tm-badge .tm-badge-text { text-decoration: underline; text-underline-offset: 2px; }
.tm-badge .tm-check { width: 16px; height: 16px; border-radius: 50%; background: var(--ink); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 10px; line-height: 1; }
.tm-rev-title { color: var(--ink); font-weight: 700; font-size: 1.05rem; margin: 0 0 8px; }
.tm-rev-body { color: var(--ink-soft); font-size: 0.95rem; line-height: 1.5; margin: 0 0 16px; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.tm-rev-meta { font-size: 0.9rem; color: var(--ink-mute); }
.tm-rev-meta b { color: var(--ink); font-weight: 700; }
.tm-rev-footnote { margin: 14px 0 0; font-size: 0.82rem; color: var(--ink-mute); }

.tm-footnote { margin: 28px 0 0; padding: 0 26px; color: var(--ink-soft); font-size: 0.9rem; }

@media (max-width: 1100px) { .tm-container { padding: 0 24px; } .tm-rating { flex-basis: 160px; } }
@media (max-width: 760px) {
  .tm-container { padding: 0 16px; }
  .tm-row { flex-wrap: wrap; }
  .tm-rating { flex: 1 1 100%; margin-bottom: 24px; }
  .tm-nav { margin: 0 6px; }
}

/* ============================================================
   Page détail d'un avis (avis.html)
   ============================================================ */
.av-page { background: var(--bg); min-height: 100vh; }
.av-wrap { max-width: 820px; margin: 0 auto; padding: 32px 20px 80px; }
.av-back { display: inline-flex; align-items: center; gap: 7px; font-size: 0.92rem; color: var(--ink-soft); text-decoration: none; margin-bottom: 22px; font-weight: 600; }
.av-back:hover { color: var(--ink); }
.av-back svg { width: 16px; height: 16px; }

.av-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); box-shadow: var(--shadow); padding: 34px 38px; }

.av-id-head { display: flex; align-items: center; gap: 14px; padding-bottom: 22px; }
.av-avatar { width: 52px; height: 52px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 1.05rem; color: var(--ink); flex: 0 0 auto; }
.av-identity { display: flex; flex-direction: column; gap: 3px; min-width: 0; }
.av-name { font-weight: 700; color: var(--ink); font-size: 1rem; }
.av-sub { display: flex; align-items: center; gap: 12px; font-size: 0.88rem; color: var(--ink-mute); }
.av-loc { display: inline-flex; align-items: center; gap: 4px; }
.av-loc svg { width: 14px; height: 14px; }

.av-sep { border: none; border-top: 1px solid var(--border); margin: 0; }

.av-rate-row { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 18px 0 16px; }
.av-rate-left { display: flex; align-items: center; gap: 12px; }
.av-date { font-size: 0.88rem; color: var(--ink-mute); white-space: nowrap; }

.av-title { font-size: 1.3rem; font-weight: 800; color: var(--ink); margin: 6px 0 14px; letter-spacing: -.3px; }
.av-body { font-size: 1rem; line-height: 1.65; color: var(--ink-soft); margin: 0 0 22px; }

.av-datebox { display: inline-block; background: var(--bg); border: 1px solid var(--border); color: var(--ink-soft); font-size: 0.82rem; padding: 6px 12px; border-radius: 6px; margin-bottom: 24px; }

.av-actions { display: flex; align-items: center; justify-content: space-between; padding-top: 18px; border-top: 1px solid var(--border); }
.av-actions-left { display: flex; align-items: center; gap: 22px; }
.av-act { display: inline-flex; align-items: center; gap: 7px; font-size: 0.9rem; font-weight: 600; color: var(--ink-soft); }
.av-act svg { width: 17px; height: 17px; }
.av-flag svg { width: 18px; height: 18px; color: var(--ink-mute); }

.av-reply { margin-top: 24px; background: var(--bg); border-left: 4px solid var(--green); border-radius: 0 8px 8px 0; padding: 18px 22px; }
.av-reply-head { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 8px; }
.av-reply-from { display: inline-flex; align-items: center; gap: 9px; font-weight: 700; color: var(--ink); font-size: 0.95rem; }
.av-reply-from svg { width: 17px; height: 17px; color: var(--ink-soft); }
.av-reply-time { font-size: 0.85rem; color: var(--ink-mute); white-space: nowrap; }
.av-reply-body { font-size: 0.95rem; line-height: 1.6; color: var(--ink-soft); margin: 0; }

.av-lang { display: flex; gap: 6px; margin-left: auto; }
.av-lang button { display: inline-flex; align-items: center; gap: 6px; background: var(--white); border: 1px solid var(--border); border-radius: 8px; padding: 6px 10px; font: inherit; font-size: 0.82rem; font-weight: 600; color: var(--ink-soft); cursor: pointer; }
.av-lang button.active { border-color: var(--green); color: var(--ink); }
.av-lang .flag { width: 18px; height: 12px; display: inline-flex; }
.av-lang .flag svg { width: 18px; height: 12px; }

.av-topbar { display: flex; align-items: center; margin-bottom: 22px; }

@media (max-width: 640px) {
  .av-card { padding: 24px 20px; }
  .av-title { font-size: 1.15rem; }
}

/* ============================================================
   Contact
   ============================================================ */
.contact-grid {
  display: flex; justify-content: center;
}
.form-col {
  background: var(--white); padding: 44px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg); border: 1px solid var(--border);
  width: 100%; max-width: 680px;
}
.info-col { background: linear-gradient(160deg, #1B5E20 0%, var(--green-dark) 100%); color: rgba(255,255,255,.88); padding: 44px; }

.form-section { margin-bottom: 28px; }
.form-section-head { display: flex; align-items: center; gap: 11px; margin-bottom: 16px; }
.form-section-head .fs-ico { width: 36px; height: 36px; border-radius: 8px; background: var(--green-light); display: grid; place-items: center; color: var(--green-dark); flex-shrink: 0; }
.form-section-head .fs-ico svg { width: 18px; height: 18px; }
.form-section-head h3 { font-size: 1.02rem; color: var(--ink); }
.form-section-head .fs-step { font-size: 0.71rem; color: var(--ink-mute); font-family: var(--ff-title); font-weight: 600; letter-spacing: 0.04em; }

.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.field     { margin-bottom: 14px; }
.field.full { grid-column: 1/-1; }
label { display: block; font-family: var(--ff-title); font-weight: 600; font-size: 0.83rem; color: var(--ink); margin-bottom: 6px; }
label .req { color: #ef4444; }
input, select, textarea {
  width: 100%; font-family: var(--ff-body); font-size: 0.93rem; color: var(--ink);
  padding: 11px 13px; border: 1.5px solid var(--border); border-radius: 9px; background: var(--white);
  transition: border-color .15s, box-shadow .15s;
}
input:focus, select:focus, textarea:focus { outline: none; border-color: var(--green); box-shadow: 0 0 0 3px rgba(76,175,80,.12); }
textarea { resize: vertical; min-height: 120px; }
select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236B7280' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 13px center; padding-right: 34px;
}

.security-box {
  display: flex; gap: 12px; align-items: flex-start;
  background: #fffbeb; border: 1px solid #fde68a; border-left: 4px solid #f59e0b;
  border-radius: 9px; padding: 14px 16px; margin: 6px 0 22px;
}
.security-box svg { width: 22px; height: 22px; color: #d97706; flex-shrink: 0; }
.security-box p   { font-size: 0.85rem; color: #78350f; line-height: 1.5; }
.security-box strong { color: #5c2d0e; }

.form-msg { display: none; background: #f0fdf4; border: 1px solid #86efac; color: #15803d; border-radius: 9px; padding: 14px 16px; margin-bottom: 16px; font-weight: 500; align-items: center; gap: 9px; }
.form-msg.show { display: flex; }

/* Colonne info */
.info-col h3     { color: #fff; font-size: 1.22rem; margin-bottom: 6px; }
.info-block      { padding: 17px 0; border-bottom: 1px solid rgba(255,255,255,.12); }
.info-block:last-child { border-bottom: none; }
.ib-label        { font-family: var(--ff-title); font-weight: 600; font-size: 0.75rem; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(129,199,132,.9); margin-bottom: 9px; }
.info-line       { display: flex; gap: 10px; align-items: flex-start; margin-bottom: 7px; font-size: 0.9rem; }
.info-line svg   { width: 16px; height: 16px; color: var(--green); flex-shrink: 0; margin-top: 3px; }
.office          { margin-bottom: 10px; }
.office .city    { font-family: var(--ff-title); font-weight: 600; color: #fff; font-size: 0.9rem; }
.office .addr    { font-size: 0.81rem; color: rgba(255,255,255,.6); }
.free-box        { background: rgba(76,175,80,.15); border: 1px solid rgba(76,175,80,.35); border-radius: 11px; padding: 16px; margin-top: 18px; }
.free-box .ttl   { font-family: var(--ff-title); font-weight: 700; color: #81c784; display: flex; align-items: center; gap: 7px; margin-bottom: 5px; }
.free-box p      { font-size: 0.83rem; color: rgba(255,255,255,.75); }

/* ============================================================
   Footer
   ============================================================ */
.footer { background: var(--dark); color: rgba(255,255,255,.6); padding: 60px 0 24px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 36px; padding-bottom: 36px; border-bottom: 1px solid rgba(255,255,255,.08); }
.footer .logo-mark  { background: var(--green); }
.footer .logo-name  { color: #fff; }
.footer .logo-sub   { color: rgba(255,255,255,.45); }
.footer-about p     { font-size: 0.89rem; line-height: 1.6; margin: 16px 0; max-width: 300px; }
.footer h4          { color: #fff; font-size: 0.81rem; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 16px; font-family: var(--ff-title); }
.footer-links li    { margin-bottom: 9px; }
.footer-links a     { font-size: 0.89rem; transition: color .15s; }
.footer-links a:hover { color: var(--green); }
.footer-contact .info-line { color: rgba(255,255,255,.6); font-size: 0.89rem; }
.footer-contact .info-line svg { color: var(--green); }
.footer-bottom       { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding-top: 20px; flex-wrap: wrap; }
.footer-bottom .legal { display: flex; gap: 18px; flex-wrap: wrap; font-size: 0.81rem; }
.footer-bottom .legal a:hover { color: var(--green); }
.footer-bottom .copy { font-size: 0.81rem; }

/* ============================================================
   Animations reveal
   ============================================================ */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .55s ease, transform .55s ease; }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; }
.reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; }
@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 960px) {
  .hero-grid, .about-grid { grid-template-columns: 1fr; gap: 36px; }
  .elig   { grid-template-columns: repeat(2,1fr); }
  .grid-4 { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .ph-hero { max-width: 480px; }
  .contact-grid {
    grid-template-columns: 1fr;
    border-radius: var(--radius-lg); overflow: visible;
    border: none; box-shadow: none;
  }
  .form-col { border-radius: var(--radius-lg); border: 1px solid var(--border); box-shadow: var(--shadow); }
  .info-col { border-radius: var(--radius-lg); }
}
@media (max-width: 760px) {
  .nav { display: none; }
  .header-right { display: flex; }
  .header-right .btn { display: none; }
  .burger { display: flex; }
  .nav {
    position: fixed; top: var(--header-h); left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 3px;
    background: var(--white); padding: 14px;
    border-bottom: 1px solid var(--border); box-shadow: var(--shadow);
    transform: translateY(-10px); opacity: 0; pointer-events: none;
    transition: opacity .18s, transform .18s;
  }
  .nav.open { display: flex; opacity: 1; transform: none; pointer-events: auto; }
  .nav a { padding: 12px 14px; font-size: 0.94rem; }
  .nav a.active::after { display: none; }
  .nav .btn { display: inline-flex; margin-top: 6px; }
  .grid-2, .grid-3, .grid-4, .stats, .steps, .elig, .testi-grid, .footer-grid, .field-row { grid-template-columns: 1fr; }
  .stat + .stat { border-left: none; border-top: 1px solid rgba(255,255,255,.1); padding-top: 20px; }
  .steps.connect .step:not(:last-child)::after { display: none; }
  .section { padding: 60px 0; }
  .cta-banner, .form-col, .info-col { padding: 32px 22px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .reviews-bar-inner { gap: 14px; }
  .review-sep { display: none; }
}
@media (max-width: 460px) {
  .logo-sub { display: none; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .header-right .btn { display: none; }
}

/* ============================================================
   MODAL — FAIRE UNE DEMANDE
   ============================================================ */
.modal-overlay {
  display: none;
  position: fixed; inset: 0; z-index: 2000;
  background: rgba(0,0,0,.55);
  align-items: center; justify-content: center;
  padding: 16px;
}
.modal-overlay.open { display: flex; }
.modal-box {
  background: var(--white);
  border-radius: 16px;
  box-shadow: 0 24px 64px rgba(0,0,0,.22);
  width: 100%; max-width: 600px;
  max-height: 90vh; overflow-y: auto;
  padding: 32px 36px;
  position: relative;
  animation: modalIn .22s ease;
}
@keyframes modalIn {
  from { opacity: 0; transform: translateY(-18px) scale(.97); }
  to   { opacity: 1; transform: none; }
}
.modal-close {
  position: absolute; top: 16px; right: 20px;
  background: none; border: none; cursor: pointer;
  font-size: 1.6rem; line-height: 1; color: var(--ink-soft);
  padding: 4px 8px; border-radius: 6px;
}
.modal-close:hover { background: var(--bg); color: var(--ink); }
.modal-header {
  display: flex; align-items: center; gap: 14px;
  margin-bottom: 24px;
}
.modal-logo { width: 48px; height: 48px; object-fit: contain; }
.modal-header h2 { font-size: 1.3rem; margin: 0 0 2px; }
.modal-header p { font-size: .82rem; color: var(--ink-soft); margin: 0; }
@media (max-width: 480px) {
  .modal-box { padding: 24px 18px; }
}

/* ============================================================
   À PROPOS — NOUVEAU LAYOUT
   ============================================================ */
.apropos-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 56px;
  align-items: center;
}
.apropos-img { display: flex; align-items: center; justify-content: center; }
@media (max-width: 900px) {
  .apropos-layout { grid-template-columns: 1fr; }
  .apropos-img { display: none; }
}
.apropos-title {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  line-height: 1.2;
  color: var(--ink);
  margin-bottom: 24px;
}
.apropos-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px 32px;
  margin-top: 32px;
}
.af-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.af-icon {
  flex-shrink: 0;
  width: 32px; height: 32px;
  color: #B8960C;
}
.af-icon svg { width: 100%; height: 100%; }
.af-item strong { display: block; color: var(--ink); margin-bottom: 4px; font-size: .97rem; }
.af-item p { color: var(--ink-mute); font-size: .88rem; margin: 0; }
@media (max-width: 600px) {
  .apropos-features { grid-template-columns: 1fr; }
}


/* ============================================================
   ÉTAPES — design cartes avec grand numéro en fond
   ============================================================ */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.steps-grid .step-card:nth-child(4),
.steps-grid .step-card:nth-child(5) {
  grid-column: span 1;
}
.steps-grid > *:nth-last-child(2):nth-child(3n+1) {
  grid-column: 1 / 2;
}
/* centrer les 2 dernières cartes */
.steps-grid {
  grid-template-columns: repeat(6, 1fr);
}
.step-card {
  grid-column: span 2;
  position: relative; overflow: hidden;
  background: var(--white);
  border: 1px solid var(--border);
  border-top: 4px solid var(--green);
  border-radius: var(--radius);
  padding: 28px 24px 24px;
  box-shadow: var(--shadow-sm);
  transition: transform .2s, box-shadow .2s;
}
.step-card:nth-child(4) { grid-column: 2 / 4; }
.step-card:nth-child(5) { grid-column: 4 / 6; }
.step-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.step-bg-num {
  position: absolute; top: -10px; right: 12px;
  font-size: 5rem; font-weight: 900;
  color: var(--green); opacity: .07;
  line-height: 1; pointer-events: none;
  font-family: var(--ff-title);
}
.step-icon {
  width: 44px; height: 44px;
  background: var(--green-light);
  border-radius: 10px;
  display: grid; place-items: center;
  margin-bottom: 14px;
}
.step-icon svg { width: 22px; height: 22px; stroke: var(--green-dark); }
.step-card h3 { font-size: 1rem; margin-bottom: 8px; color: var(--ink); }
.step-card p  { font-size: .91rem; color: var(--ink-mute); line-height: 1.6; margin: 0; }
@media (max-width: 768px) {
  .steps-grid { grid-template-columns: 1fr; }
  .step-card, .step-card:nth-child(4), .step-card:nth-child(5) { grid-column: span 1; }
}

/* ============================================================
   LISTE VERTICALE ÉTAPES
   ============================================================ */
.vlist { max-width: 680px; margin: 0 auto; }
.vlist-item { display: flex; gap: 24px; }
.vlist-left { display: flex; flex-direction: column; align-items: center; flex-shrink: 0; }
.vlist-num {
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--green); color: #fff;
  font-family: var(--ff-title); font-weight: 700; font-size: 1.1rem;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; z-index: 1;
}
.vlist-line {
  width: 2px; flex: 1; min-height: 32px;
  background: linear-gradient(var(--green-light), var(--green));
  margin: 6px 0;
}
.vlist-content { padding-bottom: 36px; }
.vlist-item:last-child .vlist-content { padding-bottom: 0; }
.vlist-content h3 { font-size: 1.08rem; color: var(--ink); margin-bottom: 6px; padding-top: 10px; }
.vlist-content p  { font-size: .93rem; color: var(--ink-mute); line-height: 1.65; margin: 0; }

/* ============================================================
   FAQ CTA — bannière repensée
   ============================================================ */
.faq-cta {
  margin-top: 52px;
  display: flex;
  align-items: center;
  gap: 24px;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-left: 5px solid var(--green);
  border-radius: 16px;
  padding: 32px 36px;
  box-shadow: 0 4px 24px rgba(76,175,80,.08);
}
.faq-cta-icon {
  flex-shrink: 0;
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--green-light);
  color: var(--green-dark);
  display: flex; align-items: center; justify-content: center;
}
.faq-cta-text { flex: 1; }
.faq-cta-text h3 { font-size: 1.15rem; margin-bottom: 4px; color: var(--ink); }
.faq-cta-text p  { font-size: .9rem; color: var(--ink-soft); margin: 0; }
@media (max-width: 600px) {
  .faq-cta { flex-direction: column; text-align: center; padding: 28px 20px; }
}

/* ============================================================
   STATS STRIP — design épuré horizontal
   ============================================================ */
.stats-strip {
  padding: 48px 0;
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.stats-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}
.stat-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 0 48px;
  flex: 1;
  justify-content: center;
}
.stat-big {
  font-family: var(--ff-title);
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--green-dark);
  line-height: 1;
  white-space: nowrap;
}
.stat-info {
  display: flex;
  flex-direction: column;
  font-size: .9rem;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.3;
}
.stat-info em {
  font-style: normal;
  font-weight: 400;
  font-size: .78rem;
  color: var(--ink-soft);
  margin-top: 2px;
}
.stat-sep {
  width: 1px;
  height: 56px;
  background: var(--border);
  flex-shrink: 0;
}
@media (max-width: 640px) {
  .stats-row { flex-direction: column; gap: 28px; }
  .stat-sep { width: 56px; height: 1px; }
  .stat-item { padding: 0; }
}

/* ============================================================
   STATS BAND — design impactant vert foncé
   ============================================================ */
.stats-band {
  background: linear-gradient(135deg, #1B5E20 0%, #2E7D32 50%, #388E3C 100%);
  padding: 64px 0;
}
.stats-band-inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}
.sb-item {
  text-align: center;
  padding: 32px 24px;
  border-right: 1px solid rgba(255,255,255,.15);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.sb-item:last-child { border-right: none; }
.sb-icon {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: rgba(255,255,255,.12);
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  margin-bottom: 4px;
}
.sb-num {
  font-family: var(--ff-title);
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  font-weight: 900;
  color: #fff;
  line-height: 1;
}
.sb-lbl {
  font-size: 1rem;
  font-weight: 600;
  color: rgba(255,255,255,.95);
}
.sb-sub {
  font-size: .78rem;
  color: rgba(255,255,255,.55);
}
@media (max-width: 640px) {
  .stats-band-inner { grid-template-columns: 1fr; }
  .sb-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,.15); }
  .sb-item:last-child { border-bottom: none; }
}

/* ============================================================
   BOURSE FAMILIALE — section service unique
   ============================================================ */
.bourse-layout {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 48px;
  align-items: start;
  margin-top: 48px;
}
.bourse-main { }
.bourse-badge {
  display: inline-block;
  background: var(--green-light);
  color: var(--green-dark);
  font-size: .78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  padding: 4px 12px;
  border-radius: 999px;
  margin-bottom: 16px;
}
.bourse-main h3 {
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  margin-bottom: 16px;
  color: var(--ink);
}
.bourse-main p {
  color: var(--ink-soft);
  font-size: .95rem;
  line-height: 1.7;
  margin-bottom: 12px;
}
.bourse-points {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.bp-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 18px 20px;
}
.bp-ico {
  flex-shrink: 0;
  width: 40px; height: 40px;
  border-radius: 10px;
  background: var(--green-light);
  color: var(--green-dark);
  display: flex; align-items: center; justify-content: center;
}
.bp-item strong {
  display: block;
  font-size: .95rem;
  color: var(--ink);
  margin-bottom: 4px;
}
.bp-item p { font-size: .85rem; color: var(--ink-soft); margin: 0; line-height: 1.5; }
@media (max-width: 768px) {
  .bourse-layout { grid-template-columns: 1fr; gap: 32px; }
}

/* ============================================================
   BOURSE FAMILIALE — nouveau design
   ============================================================ */
.bf-hero {
  max-width: 760px;
  margin: 0 auto 64px;
  text-align: center;
}
.bf-hero-text .eyebrow { margin-bottom: 10px; }
.bf-hero-text h2 { font-size: clamp(1.9rem,3.4vw,2.8rem); margin-bottom: 18px; }
.bf-hero-text p { color: var(--ink-soft); font-size: 1rem; line-height: 1.8; margin-bottom: 16px; }
.bf-hero-text .btn { margin-top: 14px; }

.bf-points {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 22px;
}
.bf-point {
  position: relative;
  padding: 32px 26px 30px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: var(--white);
  box-shadow: 0 4px 18px rgba(27,94,32,.05);
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}
.bf-point::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 18px;
  padding: 1px;
  background: linear-gradient(160deg, rgba(76,175,80,.4), transparent 55%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  opacity: 0;
  transition: opacity .28s ease;
  pointer-events: none;
}
.bf-point:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(27,94,32,.14);
  border-color: transparent;
}
.bf-point:hover::before { opacity: 1; }
.bf-point-ico {
  width: 56px; height: 56px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 16px;
  background: linear-gradient(145deg, var(--green), var(--green-dark));
  color: #fff;
  margin-bottom: 18px;
  box-shadow: 0 8px 18px rgba(27,94,32,.28);
}
.bf-point-ico svg { width: 26px; height: 26px; }
.bf-point h4 { font-size: 1.05rem; margin-bottom: 9px; color: var(--ink); }
.bf-point p  { font-size: .87rem; color: var(--ink-soft); line-height: 1.65; margin: 0; }

@media (max-width: 900px) {
  .bf-points { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 500px) {
  .bf-points { grid-template-columns: 1fr; }
}
