/* ============================================================
   Froid24 — Design System v2
   Architecture : variables → reset → layout → composants → sections → responsive
   ============================================================ */

/* ── Google Fonts ─────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,400;0,500;0,600;0,700;0,800;0,900;1,700&family=Roboto:wght@400;500;700&display=swap');

/* ─────────────────────────────────────────────────────────── */
/* 1. VARIABLES                                               */
/* ─────────────────────────────────────────────────────────── */
:root {
  /* Palette Froid24 */
  --navy-950: #020c1f;
  --navy-900: #071836;
  --navy-800: #0d2d5e;
  --navy-700: #113d80;
  --navy-600: #1a52a8;
  --navy-500: #2563c8;
  --navy-400: #4b83e4;
  --navy-300: #93bbf8;
  --navy-100: #dceeff;
  --navy-50:  #f0f7ff;

  --orange:       #f97316;
  --orange-dark:  #c2540a;
  --orange-light: #fff4ec;

  --gray-900: #111827;
  --gray-700: #374151;
  --gray-500: #6b7280;
  --gray-300: #d1d5db;
  --gray-200: #e5e7eb;
  --gray-100: #f3f4f6;
  --gray-50:  #f9fafb;
  --white:    #ffffff;

  --success: #16a34a;
  --danger:  #dc2626;

  /* Backward-compat aliases (templates existants) */
  --f24-navy-950: var(--navy-950);
  --f24-navy-900: var(--navy-900);
  --f24-navy-800: var(--navy-800);
  --f24-navy-700: var(--navy-700);
  --f24-navy-600: var(--navy-600);
  --f24-navy-500: var(--navy-500);
  --f24-navy-400: var(--navy-400);
  --f24-navy-300: var(--navy-300);
  --f24-navy-100: var(--navy-100);
  --f24-navy-50:  var(--navy-50);
  --f24-orange:       var(--orange);
  --f24-orange-dark:  var(--orange-dark);
  --f24-orange-light: var(--orange-light);
  --f24-gray-900: var(--gray-900);
  --f24-gray-700: var(--gray-700);
  --f24-gray-500: var(--gray-500);
  --f24-gray-300: var(--gray-300);
  --f24-gray-100: var(--gray-100);
  --f24-gray-50:  var(--gray-50);
  --f24-white:    var(--white);
  --f24-dark:     var(--gray-900);

  /* Typography */
  --font-heading: 'Montserrat', -apple-system, sans-serif;
  --font-body:    'Roboto', -apple-system, sans-serif;
  /* Compat */
  --font-display: var(--font-heading);
  --font-sans:    var(--font-body);

  --text-xs:   .75rem;
  --text-sm:   .875rem;
  --text-base: 1rem;
  --text-lg:   1.125rem;
  --text-xl:   1.25rem;
  --text-2xl:  1.5rem;
  --text-3xl:  1.875rem;
  --text-4xl:  2.25rem;
  --text-5xl:  3rem;
  --text-6xl:  3.75rem;

  --fw-normal: 400;
  --fw-medium: 500;
  --fw-semi:   600;
  --fw-bold:   700;
  --fw-extra:  800;
  --fw-black:  900;

  --lh-tight:   1.2;
  --lh-snug:    1.35;
  --lh-normal:  1.65;
  --lh-relaxed: 1.8;

  /* Spacing */
  --sp-1:  .25rem;  --space-1:  .25rem;
  --sp-2:  .5rem;   --space-2:  .5rem;
  --sp-3:  .75rem;  --space-3:  .75rem;
  --sp-4:  1rem;    --space-4:  1rem;
  --sp-5:  1.25rem; --space-5:  1.25rem;
  --sp-6:  1.5rem;  --space-6:  1.5rem;
  --sp-8:  2rem;    --space-8:  2rem;
  --sp-10: 2.5rem;  --space-10: 2.5rem;
  --sp-12: 3rem;    --space-12: 3rem;
  --sp-16: 4rem;    --space-16: 4rem;
  --sp-20: 5rem;    --space-20: 5rem;
  --sp-24: 6rem;    --space-24: 6rem;

  /* Radius */
  --r-sm:  4px;    --radius-sm:  4px;
  --r:     8px;    --radius:     8px;
  --r-md:  12px;   --radius-md:  12px;
  --r-lg:  16px;   --radius-lg:  16px;
  --r-xl:  24px;   --radius-xl:  24px;
  --r-full:9999px; --radius-full:9999px;

  /* Shadows */
  --shadow-xs: 0 1px 3px rgba(2,12,31,.06);
  --shadow-sm: 0 2px 8px rgba(2,12,31,.08);
  --shadow:    0 4px 16px rgba(2,12,31,.1);
  --shadow-md: 0 8px 28px rgba(2,12,31,.13);
  --shadow-lg: 0 16px 48px rgba(2,12,31,.16);
  --shadow-xl: 0 24px 64px rgba(2,12,31,.2);

  /* Layout */
  --container-max: 1300px;
  --container-pad: 2rem;
  --header-h:      80px;

  /* Transitions */
  --ease:     cubic-bezier(.4,0,.2,1);
  --ease-out: cubic-bezier(0,0,.2,1);
  --dur:      220ms;
  --duration: 220ms;
}

/* ─────────────────────────────────────────────────────────── */
/* 2. RESET                                                   */
/* ─────────────────────────────────────────────────────────── */
*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: var(--lh-normal);
  color: var(--gray-900);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}
img, video { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
a:focus-visible { outline: 2px solid var(--navy-500); outline-offset: 2px; border-radius: var(--r-sm); }
button { cursor: pointer; font-family: inherit; border: none; background: none; }
ul, ol { list-style: none; }
address { font-style: normal; }
details > summary { list-style: none; cursor: pointer; }
details > summary::-webkit-details-marker { display: none; }
h1,h2,h3,h4,h5,h6 { font-family: var(--font-heading); line-height: var(--lh-tight); }

/* ─────────────────────────────────────────────────────────── */
/* 3. LAYOUT UTILITAIRES                                      */
/* ─────────────────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-pad);
}

/* Section de base */
.section           { padding-block: var(--sp-20); }
.section--sm       { padding-block: var(--sp-12); }
.section--lg       { padding-block: var(--sp-24); }
.section--white    { background: var(--white); }
.section--gray     { background: var(--gray-50); }
.section--navy     { background: var(--navy-900); color: var(--white); }
.section--navy-dark{ background: var(--navy-950); color: var(--white); }
.section--navy-light{ background: var(--navy-50); }

/* En-tête de section */
.section-header {
  text-align: center;
  max-width: 720px;
  margin-inline: auto;
  margin-bottom: var(--sp-12);
}
.section-header--left { text-align: left; margin-inline: 0; }

.section-kicker,
.section-label {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: var(--text-xs);
  font-weight: var(--fw-bold);
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--orange);
  margin-bottom: var(--sp-3);
}
.section--navy .section-kicker,
.section--navy .section-label { color: var(--orange); }

.section-header h2 {
  font-size: clamp(var(--text-2xl), 4vw, var(--text-4xl));
  font-weight: var(--fw-extra);
  letter-spacing: -.025em;
  color: var(--gray-900);
  margin-bottom: var(--sp-4);
}
.section--navy .section-header h2 { color: var(--white); }
.section-header p {
  font-size: var(--text-lg);
  color: var(--gray-500);
  line-height: var(--lh-relaxed);
}
.section--navy .section-header p { color: rgba(255,255,255,.7); }

/* Grilles utilitaires */
.grid-2 { display: grid; grid-template-columns: repeat(2,1fr); gap: var(--sp-8); }
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: var(--sp-6); }
.grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: var(--sp-6); }
.grid-auto { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px,1fr)); gap: var(--sp-6); }

/* ─────────────────────────────────────────────────────────── */
/* 4. TYPOGRAPHIE                                             */
/* ─────────────────────────────────────────────────────────── */
.section-title {
  font-family: var(--font-heading);
  font-size: clamp(var(--text-2xl), 4vw, var(--text-4xl));
  font-weight: var(--fw-extra);
  line-height: var(--lh-tight);
  letter-spacing: -.025em;
  color: var(--gray-900);
  margin-bottom: var(--sp-4);
}
.section-desc {
  font-size: var(--text-lg);
  color: var(--gray-500);
  line-height: var(--lh-relaxed);
}
.prose p       { margin-bottom: var(--sp-4); color: var(--gray-700); line-height: var(--lh-relaxed); }
.prose h2,.prose h3 { font-family: var(--font-heading); color: var(--gray-900); margin-bottom: var(--sp-3); margin-top: var(--sp-6); }
.prose strong  { color: var(--gray-900); }
.prose ul      { list-style: disc; padding-left: 1.5em; margin-bottom: var(--sp-4); }
.prose li      { margin-bottom: var(--sp-2); color: var(--gray-700); }

/* ─────────────────────────────────────────────────────────── */
/* 5. ICÔNES SVG                                              */
/* ─────────────────────────────────────────────────────────── */
.icon {
  display: inline-block;
  width: 1.25em; height: 1.25em;
  vertical-align: middle;
  fill: none; stroke: currentColor;
  stroke-width: 2; stroke-linecap: round; stroke-linejoin: round;
  flex-shrink: 0;
}
.icon--sm  { width: 1em; height: 1em; }
.icon--md  { width: 1.5em; height: 1.5em; }
.icon--lg  { width: 2em; height: 2em; }

/* ─────────────────────────────────────────────────────────── */
/* 6. BOUTONS                                                 */
/* ─────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  padding: .75rem 1.75rem;
  border-radius: var(--r);
  font-family: var(--font-heading);
  font-size: var(--text-sm);
  font-weight: var(--fw-bold);
  letter-spacing: .04em;
  text-transform: uppercase;
  line-height: 1.2;
  white-space: nowrap;
  transition: all var(--dur) var(--ease);
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
}
.btn:hover  { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--primary {
  background: var(--orange); color: var(--white); border-color: var(--orange);
}
.btn--primary:hover {
  background: var(--orange-dark); border-color: var(--orange-dark);
  box-shadow: 0 6px 20px rgba(249,115,22,.4);
}
.btn--navy {
  background: var(--navy-800); color: var(--white); border-color: var(--navy-800);
}
.btn--navy:hover {
  background: var(--navy-900); border-color: var(--navy-900);
  box-shadow: 0 6px 20px rgba(13,45,94,.35);
}
.btn--outline {
  background: transparent; color: var(--navy-700); border-color: var(--navy-700);
}
.btn--outline:hover { background: var(--navy-700); color: var(--white); }
.btn--outline-white {
  background: transparent; color: var(--white); border-color: rgba(255,255,255,.55);
}
.btn--outline-white:hover { background: rgba(255,255,255,.12); border-color: var(--white); }
.btn--ghost {
  background: rgba(255,255,255,.08); color: var(--white);
  border-color: rgba(255,255,255,.3); backdrop-filter: blur(4px);
}
.btn--ghost:hover { background: rgba(255,255,255,.16); border-color: rgba(255,255,255,.5); }
.btn--white {
  background: var(--white); color: var(--navy-800); border-color: rgba(255,255,255,.3);
}
.btn--white:hover { background: var(--navy-50); box-shadow: 0 6px 20px rgba(0,0,0,.18); }

.btn--sm  { padding: .45rem 1.1rem; font-size: var(--text-xs); }
.btn--lg  { padding: 1rem 2.25rem; font-size: var(--text-base); }
.btn--xl  { padding: 1.15rem 2.75rem; font-size: var(--text-lg); }
.btn--block { width: 100%; justify-content: center; }

/* Spinner dans bouton submit */
.btn-label   { }
.btn-spinner { display: none; width: 18px; height: 18px; flex-shrink: 0; }
.btn.is-loading .btn-label   { display: none; }
.btn.is-loading .btn-spinner { display: inline-block; }

/* ─────────────────────────────────────────────────────────── */
/* 7. BADGES & ÉTOILES                                        */
/* ─────────────────────────────────────────────────────────── */
.badge {
  display: inline-flex;
  align-items: center;
  padding: .2rem .75rem;
  font-family: var(--font-heading);
  font-size: var(--text-xs);
  font-weight: var(--fw-bold);
  border-radius: var(--r);
  letter-spacing: .04em;
  text-transform: uppercase;
}
.badge--orange { background: var(--orange-light); color: var(--orange-dark); border: 1px solid rgba(249,115,22,.25); }
.badge--navy   { background: var(--navy-100); color: var(--navy-800); border: 1px solid var(--navy-300); }
.badge--white  { background: rgba(255,255,255,.12); color: var(--white); border: 1px solid rgba(255,255,255,.25); }

/* Alias pour compatibilité */
.certif-badge { background: var(--navy-100); color: var(--navy-800); border: 1px solid var(--navy-300); display: inline-flex; align-items: center; gap: var(--sp-1); padding: .2em .6em; font-size: var(--text-xs); font-weight: var(--fw-semi); border-radius: 999px; white-space: nowrap; }

.stars       { display: inline-flex; gap: 2px; }
.star        { width: 1em; height: 1em; }
.star--on    { fill: var(--orange); stroke: none; }
.star--off   { fill: var(--gray-300); stroke: none; }
/* Compat */
.star--filled { fill: var(--orange); stroke: none; }
.star--empty  { fill: var(--gray-300); stroke: none; }

/* ─────────────────────────────────────────────────────────── */
/* 8. TOPBAR                                                  */
/* ─────────────────────────────────────────────────────────── */
.topbar {
  background: var(--navy-950);
  color: var(--white);
  font-size: var(--text-sm);
  padding-block: .45rem;
}
.topbar__inner {
  display: flex; align-items: center;
  gap: var(--sp-6); flex-wrap: wrap;
}
.topbar__item  { display: flex; align-items: center; gap: var(--sp-2); }
.topbar__tel   { color: var(--orange); font-weight: var(--fw-semi); }
.topbar__tel:hover { color: var(--white); }
.topbar__info  { color: rgba(255,255,255,.65); }
.topbar__region { margin-left: auto; font-weight: var(--fw-medium); color: var(--navy-300); }

/* ─────────────────────────────────────────────────────────── */
/* 9. HEADER & NAV                                            */
/* ─────────────────────────────────────────────────────────── */
.site-header {
  position: sticky; top: 0; z-index: 100;
  height: var(--header-h);
  background: var(--white);
  border-bottom: 1px solid var(--gray-100);
  box-shadow: 0 2px 16px rgba(2,12,31,.06);
  transition: box-shadow var(--dur);
}
.site-header.is-scrolled { box-shadow: 0 4px 24px rgba(2,12,31,.1); }
.site-header__inner {
  display: flex; align-items: center;
  height: 100%; gap: var(--sp-6);
}
/* Logo */
.site-header__logo       { display: flex; align-items: center; gap: var(--sp-3); flex-shrink: 0; }
.site-header__logo-link  { display: flex; align-items: center; flex-shrink: 0; text-decoration: none; }
.site-header__logo-img   { height: 52px; width: auto; object-fit: contain; display: block; }
.site-header__logo-region {
  font-family: var(--font-heading); font-size: var(--text-sm); font-weight: var(--fw-extra);
  color: var(--navy-700); text-transform: uppercase; letter-spacing: .06em; text-decoration: none;
  transition: color var(--dur);
}
.site-header__logo-region:hover { color: var(--orange); }
/* Nav */
.site-nav { flex: 1; display: flex; justify-content: flex-end; padding-right: var(--sp-4); }
.nav-menu  { display: flex; align-items: center; gap: var(--sp-1); list-style: none; }
.nav-menu a {
  display: flex; align-items: center; gap: var(--sp-1);
  padding: var(--sp-2) var(--sp-3);
  font-family: var(--font-heading); font-size: .8125rem; font-weight: var(--fw-semi);
  letter-spacing: .03em; color: var(--gray-700); border-radius: var(--r);
  text-transform: uppercase; transition: color var(--dur), background var(--dur);
  white-space: nowrap;
}
.nav-menu a:hover,
.nav-menu .current-menu-item > a { color: var(--navy-700); background: var(--navy-50); }

/* Chevron dans le parent dropdown */
.nav-chevron {
  width: 14px; height: 14px; stroke: currentColor; fill: none;
  transition: transform var(--dur); flex-shrink: 0;
}
.menu-item-has-children:hover > a .nav-chevron { transform: rotate(180deg); }

/* ── Dropdown desktop (hover) ─────────────────────────────── */
.menu-item-has-children { position: relative; }
.sub-menu {
  position: absolute; top: calc(100% + 6px); left: 50%;
  transform: translateX(-50%) translateY(6px);
  opacity: 0; pointer-events: none;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-md);
  min-width: 260px;
  padding: var(--sp-2) 0;
  list-style: none;
  transition: opacity var(--dur) var(--ease), transform var(--dur) var(--ease);
  z-index: 200;
}
.menu-item-has-children:hover > .sub-menu,
.menu-item-has-children:focus-within > .sub-menu {
  opacity: 1; pointer-events: auto; transform: translateX(-50%) translateY(0);
}
.sub-menu li { list-style: none; }
.sub-menu a {
  display: block; padding: var(--sp-3) var(--sp-5);
  font-size: var(--text-sm); font-weight: var(--fw-medium);
  color: var(--gray-700); text-transform: none; letter-spacing: 0;
  border-radius: 0; white-space: nowrap;
  border-left: 3px solid transparent;
  transition: background var(--dur), border-color var(--dur), color var(--dur);
}
.sub-menu a:hover {
  background: var(--navy-50); color: var(--navy-700);
  border-left-color: var(--orange);
}

/* Boutons CTA dans le menu mobile — cachés sur desktop */
.nav-mobile-cta { display: none; }

.site-header__cta { display: flex; align-items: center; gap: var(--sp-3); flex-shrink: 0; }
/* Burger */
.nav-toggle {
  display: none; flex-direction: column; justify-content: center;
  align-items: center; gap: 5px; width: 44px; height: 44px;
  padding: var(--sp-2); border-radius: var(--r); margin-left: auto;
  flex-shrink: 0; cursor: pointer; color: var(--gray-900);
}
.nav-toggle__bar {
  display: block; width: 22px; height: 2px;
  background: currentColor; border-radius: 2px;
  transition: all var(--dur) var(--ease);
}
.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* ─────────────────────────────────────────────────────────── */
/* 10. COMPOSANT : HERO                                        */
/* ─────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: min(90vh, 700px);
  display: flex; align-items: center;
  overflow: hidden;
  background: var(--navy-950);
  color: var(--white);
}
.hero__video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  pointer-events: none; z-index: 0;
}
@media (prefers-reduced-motion: reduce) { .hero__video { display: none; } }
.hero__bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  background-image: var(--hero-bg, linear-gradient(145deg, var(--navy-950) 0%, var(--navy-700) 100%));
}
.hero__overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(145deg, rgba(2,12,31,.88) 0%, rgba(13,45,94,.65) 60%, rgba(17,61,128,.35) 100%);
}
.hero__inner {
  position: relative; z-index: 2;
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: var(--sp-12);
  align-items: center;
  padding-block: var(--sp-20);
  width: 100%;
}
.hero__content { max-width: 640px; }
/* Badge région */
.hero__badge {
  display: inline-flex; align-items: center; gap: var(--sp-2);
  padding: var(--sp-2) var(--sp-4);
  background: rgba(249,115,22,.15); backdrop-filter: blur(6px);
  border: 1px solid rgba(249,115,22,.3);
  border-radius: var(--r);
  font-family: var(--font-heading); font-size: var(--text-xs); font-weight: var(--fw-bold);
  letter-spacing: .08em; text-transform: uppercase; color: var(--orange);
  margin-bottom: var(--sp-5);
}
.hero__badge .icon { width: 14px; height: 14px; stroke: currentColor; fill: none; }
/* Titre */
.hero__title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: var(--fw-extra);
  line-height: var(--lh-tight);
  letter-spacing: -.03em;
  color: var(--white);
  margin-bottom: var(--sp-5);
}
.hero__title strong { color: var(--orange); font-weight: var(--fw-black); }
/* Sous-titre */
.hero__subtitle {
  font-size: clamp(var(--text-base), 2vw, var(--text-xl));
  line-height: var(--lh-relaxed);
  color: rgba(255,255,255,.78);
  margin-bottom: var(--sp-8);
}
/* CTA */
.hero__actions {
  display: flex; gap: var(--sp-4); flex-wrap: wrap;
  margin-bottom: var(--sp-8);
}
/* Trust items */
.hero__trust {
  display: flex; flex-wrap: wrap; gap: var(--sp-5);
  list-style: none; padding: 0; margin: 0;
}
.hero__trust li, .trust-item {
  display: flex; align-items: center; gap: var(--sp-2);
  font-size: var(--text-sm); color: rgba(255,255,255,.72);
}
.hero__trust .icon, .trust-item .icon {
  width: 16px; height: 16px; stroke: var(--orange); fill: none;
  stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0;
}
/* Aside étapes flottant */
.hero__aside {
  background: rgba(255,255,255,.10);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: var(--r-xl);
  padding: var(--sp-8) var(--sp-8);
  align-self: center;
}
.hero__aside-title {
  font-family: var(--font-heading);
  font-size: var(--text-sm); font-weight: var(--fw-bold);
  text-transform: uppercase; letter-spacing: .1em;
  color: var(--orange); margin-bottom: var(--sp-6);
}
.hero__steps-list {
  display: flex; flex-direction: column; gap: var(--sp-4);
  list-style: none; padding: 0; counter-reset: step;
}
.hero__steps-list li {
  display: grid;
  grid-template-columns: 2.25rem 1fr;
  align-items: start; gap: var(--sp-3);
  font-size: var(--text-sm); color: rgba(255,255,255,.82);
  padding-bottom: var(--sp-4);
  border-bottom: 1px solid rgba(255,255,255,.08);
  counter-increment: step;
}
.hero__steps-list li:last-child { border-bottom: none; padding-bottom: 0; }
.hero__steps-list li::before {
  content: counter(step, decimal-leading-zero);
  font-family: var(--font-heading); font-size: var(--text-base); font-weight: var(--fw-black);
  color: var(--orange); line-height: 1.4;
}
.hero__steps-list strong {
  color: var(--white); display: block;
  font-size: var(--text-base); font-weight: var(--fw-bold);
  margin-bottom: var(--sp-1);
}
.hero__steps-list span {
  display: block; font-size: var(--text-sm); color: rgba(255,255,255,.65); line-height: var(--lh-snug);
}
/* Scroll indicator */
.hero__scroll {
  position: absolute; bottom: var(--sp-6); left: 50%; transform: translateX(-50%);
  z-index: 3;
  display: flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; border-radius: var(--r-full);
  background: rgba(255,255,255,.1); color: var(--white);
  border: 1px solid rgba(255,255,255,.2);
  transition: background var(--dur);
  animation: bounce 2s ease-in-out infinite;
}
.hero__scroll:hover { background: rgba(255,255,255,.2); }
.hero__scroll .icon { width: 20px; height: 20px; stroke: currentColor; fill: none; stroke-width: 2; }
@keyframes bounce {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50%      { transform: translateX(-50%) translateY(7px); }
}

/* ─────────────────────────────────────────────────────────── */
/* 11. COMPOSANT : STATS                                       */
/* ─────────────────────────────────────────────────────────── */
.stats {
  background: var(--white);
  padding-block: var(--sp-12);
  border-bottom: 1px solid var(--gray-100);
}
.stats__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-6);
  max-width: 900px;
  margin-inline: auto;
}
.stat-card {
  display: flex; flex-direction: column; align-items: center; text-align: center;
  padding: var(--sp-8) var(--sp-6);
  background: var(--white);
  border-radius: var(--r-lg);
  border: 1px solid var(--gray-100);
  border-top: 3px solid var(--orange);
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--dur), transform var(--dur);
}
.stat-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.stat-card__value {
  font-family: var(--font-heading);
  font-size: clamp(2.25rem, 5vw, 3rem);
  font-weight: var(--fw-black);
  color: var(--navy-700);
  line-height: 1;
  font-variant-numeric: tabular-nums;
  display: block;
}
.stat-card__label {
  font-size: var(--text-sm); color: var(--gray-500);
  font-weight: var(--fw-medium); margin-top: var(--sp-3);
}
/* Compat ancien template */
.stats__grid--3 { grid-template-columns: repeat(3,1fr); max-width: 900px; margin-inline: auto; }
.stat-item { display: flex; flex-direction: column; align-items: center; text-align: center; padding: var(--sp-8) var(--sp-6); background: var(--white); border-radius: var(--r-lg); border: 1px solid var(--gray-100); border-top: 3px solid var(--orange); box-shadow: var(--shadow-sm); }
.stat-item__number, .stat-item__value { font-family: var(--font-heading); font-size: clamp(2rem,5vw,3rem); font-weight: var(--fw-black); color: var(--navy-700); display: block; line-height: 1; }
.stat-item__label { font-size: var(--text-sm); color: var(--gray-500); margin-top: var(--sp-3); font-weight: var(--fw-medium); }

/* ─────────────────────────────────────────────────────────── */
/* 12. COMPOSANT : SERVICE CARD                                */
/* ─────────────────────────────────────────────────────────── */
.services {
  background: var(--gray-50);
  padding-block: var(--sp-20);
}
.services__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: var(--sp-6);
}
.service-card {
  display: flex; flex-direction: column;
  background: var(--white);
  border-radius: var(--r-lg);
  border: 1px solid var(--gray-100);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--dur), transform var(--dur);
}
.service-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
/* Visuel image */
.service-card__img-wrap { height: 200px; overflow: hidden; position: relative; }
.service-card__img-wrap img,
.service-card__img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .5s var(--ease);
}
.service-card:hover .service-card__img-wrap img { transform: scale(1.05); }

/* Badge icône sur l'image */
.service-card__icon-badge {
  position: absolute; bottom: var(--sp-3); left: var(--sp-3);
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--white); box-shadow: var(--shadow-sm);
  display: flex; align-items: center; justify-content: center;
  border: 2px solid var(--navy-100);
}
.service-card__icon-badge svg { width: 20px; height: 20px; stroke: var(--navy-600); fill: none; }

/* Pill icône dans le corps (toujours visible) */
.service-card__icon-pill {
  display: inline-flex; align-items: center; justify-content: center;
  width: 52px; height: 52px; border-radius: var(--r-md);
  background: linear-gradient(135deg, var(--navy-50), var(--navy-100));
  margin-bottom: var(--sp-2);
  flex-shrink: 0;
}
.service-card__icon-pill svg { width: 28px; height: 28px; stroke: var(--navy-600); fill: none; }
.service-card__icon-pill--sm {
  width: 36px; height: 36px; border-radius: var(--r-sm);
}
.service-card__icon-pill--sm svg { width: 18px; height: 18px; }

/* Corps */
.service-card__body {
  flex: 1; padding: var(--sp-6);
  display: flex; flex-direction: column; gap: var(--sp-2);
}
.service-card__title {
  font-family: var(--font-heading);
  font-size: var(--text-lg); font-weight: var(--fw-bold); color: var(--gray-900);
}
.service-card__desc {
  font-size: var(--text-sm); color: var(--gray-500);
  line-height: var(--lh-relaxed); flex: 1;
}
.service-card__link {
  display: inline-flex; align-items: center; gap: var(--sp-2);
  margin-top: var(--sp-2);
  font-size: var(--text-sm); font-weight: var(--fw-semi); color: var(--orange);
  text-decoration: none; transition: gap var(--dur);
}
.service-card__link svg { width: 14px; height: 14px; stroke: currentColor; fill: none; stroke-width: 2.5; flex-shrink: 0; transition: transform var(--dur); }
.service-card__link:hover { gap: var(--sp-3); }
.service-card__link:hover svg { transform: translateX(4px); }

/* ─────────────────────────────────────────────────────────── */
/* 13. COMPOSANT : À PROPOS                                    */
/* ─────────────────────────────────────────────────────────── */
.about { background: var(--white); padding-block: var(--sp-20); }
.about__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-16);
  align-items: center;
}
.about__content { }
.about__content h2 {
  font-family: var(--font-heading);
  font-size: clamp(var(--text-2xl), 3.5vw, var(--text-4xl));
  font-weight: var(--fw-extra);
  letter-spacing: -.025em; line-height: var(--lh-tight);
  color: var(--gray-900); margin-bottom: var(--sp-6);
}
.about__content p {
  color: var(--gray-500); line-height: var(--lh-relaxed); margin-bottom: var(--sp-4);
}
.about__content strong { color: var(--gray-900); }
.about__content .about__wysiwyg { margin-bottom: var(--sp-6); }
.about__ctas { display: flex; gap: var(--sp-4); flex-wrap: wrap; margin-top: var(--sp-6); }
.about__visual { }
.about__img {
  width: 100%; height: 440px;
  object-fit: cover; object-position: center;
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-lg);
  display: block;
}
/* Compat */
.about__text { }
.about__text h2 { font-family: var(--font-heading); font-size: clamp(var(--text-2xl), 3.5vw, var(--text-4xl)); font-weight: var(--fw-extra); letter-spacing: -.025em; line-height: var(--lh-tight); color: var(--gray-900); margin-bottom: var(--sp-6); }
.about__text p { color: var(--gray-500); line-height: var(--lh-relaxed); margin-bottom: var(--sp-4); }

/* ─────────────────────────────────────────────────────────── */
/* 14. COMPOSANT : PROCESSUS                                   */
/* ─────────────────────────────────────────────────────────── */
.process { background: var(--gray-50); padding-block: var(--sp-20); }
.process__steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-6);
  list-style: none; padding: 0; margin: 0;
  counter-reset: step-counter;
  position: relative;
}
/* Ligne de connexion horizontale entre les cartes */
.process__steps::before {
  content: '';
  position: absolute;
  top: 2.25rem;
  left: calc(25% - var(--sp-3));
  right: calc(25% - var(--sp-3));
  height: 2px;
  background: linear-gradient(90deg, var(--navy-200), var(--navy-100));
  z-index: 0;
}
.process__step {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-top: 3px solid var(--navy-700);
  border-radius: var(--r-lg);
  padding: var(--sp-6);
  display: flex; flex-direction: column; gap: var(--sp-3);
  position: relative; z-index: 1;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--dur), transform var(--dur);
  counter-increment: step-counter;
}
.process__step:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.process__step-num {
  width: 3rem; height: 3rem;
  border-radius: var(--r-md);
  background: var(--navy-800); color: var(--white);
  font-family: var(--font-heading); font-size: var(--text-base); font-weight: var(--fw-extra);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; letter-spacing: .02em;
}
.process__step h3 {
  font-family: var(--font-heading); font-size: var(--text-lg); font-weight: var(--fw-bold);
  color: var(--navy-800); line-height: var(--lh-snug);
}
.process__step p { color: var(--gray-500); line-height: var(--lh-relaxed); font-size: var(--text-sm); flex: 1; }

/* ─────────────────────────────────────────────────────────── */
/* 15. COMPOSANT : AIDE CARD                                   */
/* ─────────────────────────────────────────────────────────── */
.aides { background: var(--navy-50); padding-block: var(--sp-20); }
.aides__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-6);
}
.aide-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--r-lg);
  border-top: 3px solid var(--navy-500);
  padding: var(--sp-6);
  display: flex; flex-direction: column; gap: var(--sp-3);
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--dur), transform var(--dur);
}
.aide-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.aide-card__head {
  display: flex; align-items: flex-start;
  justify-content: space-between; gap: var(--sp-3);
  margin-bottom: var(--sp-1);
}
.aide-card__icon {
  width: 48px; height: 48px; border-radius: var(--r-md);
  background: var(--navy-50); display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.aide-card__icon svg { width: 24px; height: 24px; stroke: var(--navy-600); fill: none; flex-shrink: 0; }
.aide-card__badge {
  display: inline-flex; align-items: center;
  padding: .2rem .65rem;
  background: var(--orange-light); color: var(--orange-dark);
  font-family: var(--font-heading); font-size: var(--text-xs); font-weight: var(--fw-bold);
  border-radius: var(--r); border: 1px solid rgba(249,115,22,.25);
  letter-spacing: .04em; white-space: nowrap;
}
.aide-card__title {
  font-family: var(--font-heading); font-size: var(--text-lg);
  font-weight: var(--fw-bold); color: var(--gray-900);
}
.aide-card__desc {
  font-size: var(--text-sm); color: var(--gray-500);
  line-height: var(--lh-relaxed); flex: 1;
}
.aide-card__link {
  display: inline-flex; align-items: center; gap: var(--sp-2);
  margin-top: var(--sp-2); font-size: var(--text-sm);
  font-weight: var(--fw-semi); color: var(--navy-700);
  text-decoration: none; transition: gap var(--dur), color var(--dur);
}
.aide-card__link svg { width: 14px; height: 14px; stroke: currentColor; fill: none; stroke-width: 2.5; transition: transform var(--dur); }
.aide-card__link:hover { color: var(--orange); gap: var(--sp-3); }
.aide-card__link:hover svg { transform: translateX(4px); }
.aides__cta { text-align: center; margin-top: var(--sp-10); }

/* ─────────────────────────────────────────────────────────── */
/* 16. COMPOSANT : TÉMOIGNAGES (Swiper)                        */
/* ─────────────────────────────────────────────────────────── */
.testimonials {
  background: var(--navy-900);
  padding-block: var(--sp-20);
  color: var(--white);
}
.testimonials .section-header h2 { color: var(--white); }
.testimonials .section-kicker { color: var(--orange); }
.testimonials-slider {
  margin-top: var(--sp-10);
  padding-bottom: var(--sp-10) !important;
}
.testimonials-slider .swiper-slide { height: auto; }
.testimonial-card {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--r-lg);
  padding: var(--sp-6);
  height: 100%;
  display: flex; flex-direction: column; gap: var(--sp-4);
  border-top: 3px solid var(--orange);
  transition: background var(--dur);
}
.testimonial-card:hover { background: rgba(255,255,255,.1); }
.testimonial-card__head {
  display: flex; align-items: center; gap: var(--sp-3);
}
.testimonial-card__avatar {
  width: 48px; height: 48px; border-radius: var(--r-full);
  background: var(--navy-600); color: var(--white);
  font-family: var(--font-heading); font-weight: var(--fw-bold); font-size: var(--text-lg);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.testimonial-card__author {
  display: block; font-family: var(--font-heading);
  font-weight: var(--fw-semi); font-size: var(--text-sm); color: var(--white);
}
.testimonial-card__city {
  display: block; font-size: var(--text-xs); color: rgba(255,255,255,.55); margin-top: 2px;
}
.testimonial-card__stars { margin-left: auto; }
.testimonial-card__text {
  font-size: var(--text-sm); line-height: var(--lh-relaxed);
  color: rgba(255,255,255,.8); font-style: italic; flex: 1; margin: 0;
}
/* Swiper controls */
.testimonials-slider .swiper-pagination-bullet {
  background: rgba(255,255,255,.35); opacity: 1;
}
.testimonials-slider .swiper-pagination-bullet-active { background: var(--orange); }
.testimonials-slider__btn {
  width: 42px; height: 42px;
  background: rgba(255,255,255,.1) !important;
  border: 1px solid rgba(255,255,255,.2) !important;
  border-radius: var(--r-full) !important;
  color: var(--white) !important;
}
.testimonials-slider__btn::after { font-size: 13px !important; font-weight: 700; }
.testimonials-slider__btn:hover { background: rgba(255,255,255,.2) !important; }

/* ─────────────────────────────────────────────────────────── */
/* 17. COMPOSANT : ACCORDION / FAQ                             */
/* ─────────────────────────────────────────────────────────── */
.faq { background: var(--white); padding-block: var(--sp-20); }
.accordion {
  max-width: 820px; margin-inline: auto;
  display: flex; flex-direction: column; gap: var(--sp-3);
}
.accordion__item {
  border: 1px solid var(--gray-200);
  border-radius: var(--r-lg); background: var(--white);
  overflow: hidden; transition: border-color var(--dur);
}
.accordion__item.is-open { border-color: var(--navy-300); box-shadow: var(--shadow-sm); }
.accordion__trigger {
  display: flex; align-items: center; justify-content: space-between;
  gap: var(--sp-4); width: 100%;
  padding: var(--sp-5) var(--sp-6);
  background: transparent; border: none; text-align: left;
  font-family: var(--font-heading); font-size: var(--text-base); font-weight: var(--fw-semi);
  color: var(--gray-900); cursor: pointer; transition: background var(--dur);
}
.accordion__trigger:hover { background: var(--gray-50); }
.accordion__item.is-open .accordion__trigger { background: var(--navy-50); color: var(--navy-800); }
.accordion__icon {
  width: 20px; height: 20px; flex-shrink: 0;
  fill: none; stroke: currentColor;
  stroke-width: 2; stroke-linecap: round; stroke-linejoin: round;
  transition: transform var(--dur);
}
.accordion__item.is-open .accordion__icon { transform: rotate(180deg); }
.accordion__answer[hidden] { display: none; }
.accordion__answer-inner {
  padding: var(--sp-4) var(--sp-6) var(--sp-6);
  font-size: var(--text-base); line-height: var(--lh-relaxed);
  color: var(--gray-700); border-top: 1px solid var(--navy-100);
}
.accordion__answer-inner p { margin-bottom: var(--sp-3); }
.accordion__answer-inner p:last-child { margin-bottom: 0; }

/* ─────────────────────────────────────────────────────────── */
/* 18. COMPOSANT : CONTACT                                     */
/* ─────────────────────────────────────────────────────────── */
.contact { background: var(--gray-50); padding-block: var(--sp-20); }
/* Alias compat */
.contact-section { background: var(--gray-50); padding-block: var(--sp-20); }

.contact__inner,
.contact-section__inner {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: var(--sp-12);
  align-items: start;
}
/* Colonne infos */
.contact__info,
.contact-info { }
.contact__info h2,
.contact-info h2 {
  font-family: var(--font-heading);
  font-size: clamp(var(--text-2xl), 3vw, var(--text-3xl));
  font-weight: var(--fw-extra); letter-spacing: -.02em;
  color: var(--gray-900); line-height: var(--lh-tight); margin-bottom: var(--sp-4);
}
.contact__info > p,
.contact-info > p { color: var(--gray-500); margin-bottom: var(--sp-6); }

.contact__info-list,
.contact-info__list {
  display: flex; flex-direction: column; gap: var(--sp-3);
  list-style: none; padding: 0; margin-bottom: var(--sp-6);
}
.contact__info-list li,
.contact-info__list li {
  display: flex; align-items: center; gap: var(--sp-3);
  font-size: var(--text-sm); color: var(--gray-700);
}
.contact__info-list li .icon,
.contact-info__list li .icon {
  width: 20px; height: 20px; stroke: var(--navy-600); fill: none;
  stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0;
}
.contact__info-list a:hover,
.contact-info__list a:hover { color: var(--navy-700); }

.contact__response,
.contact-info__response {
  display: flex; align-items: center; gap: var(--sp-2);
  padding: var(--sp-3) var(--sp-4);
  background: var(--navy-50); border: 1px solid var(--navy-100);
  border-radius: var(--r); font-size: var(--text-sm);
  font-weight: var(--fw-medium); color: var(--navy-600);
}
.contact__response .icon,
.contact-info__response .icon { width: 18px; height: 18px; stroke: currentColor; fill: none; stroke-width: 2; }

/* Formulaire */
.contact__form-wrap,
.contact-form-wrap {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--r-xl);
  padding: var(--sp-8);
  box-shadow: var(--shadow-sm);
}
.contact-form { display: flex; flex-direction: column; gap: var(--sp-5); }
.form-row     { display: flex; gap: var(--sp-4); }
.form-row--2, .form-row--2col { display: flex; gap: var(--sp-4); }
.form-row--2 > *, .form-row--2col > * { flex: 1; min-width: 0; }
.form-group   { display: flex; flex-direction: column; gap: var(--sp-2); }
.form-label   {
  font-family: var(--font-heading); font-size: var(--text-sm);
  font-weight: var(--fw-semi); color: var(--gray-700);
}
.form-label span { color: var(--danger); margin-left: 2px; }
/* Inputs : .form-input, .form-control, .form-select, .form-textarea (tous identiques) */
.form-input,
.form-control,
.form-select,
.form-textarea {
  width: 100%;
  padding: .75rem 1rem;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--r);
  font-family: var(--font-body); font-size: var(--text-base);
  color: var(--gray-900); background: var(--gray-50);
  outline: none; transition: border-color var(--dur), box-shadow var(--dur), background var(--dur);
  appearance: auto;
}
.form-input:focus,
.form-control:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--navy-500); background: var(--white);
  box-shadow: 0 0 0 3px rgba(37,99,200,.12);
}
textarea.form-input,
textarea.form-control,
.form-textarea { resize: vertical; min-height: 130px; }
select.form-control { cursor: pointer; }

.form-group--consent { margin-top: var(--sp-2); }
.form-check {
  display: flex; align-items: flex-start; gap: var(--sp-3);
  font-size: var(--text-sm); color: var(--gray-500); cursor: pointer;
}
.form-check-input { margin-top: 3px; accent-color: var(--navy-600); flex-shrink: 0; }
.form-check-label a { color: var(--navy-700); text-decoration: underline; }

.contact-form__result {
  padding: var(--sp-4); border-radius: var(--r);
  font-size: var(--text-sm); font-weight: var(--fw-medium); display: none;
}
.contact-form__result.success { display: block; background: #f0fdf4; color: #15803d; border: 1px solid #bbf7d0; }
.contact-form__result.error   { display: block; background: #fef2f2; color: #b91c1c; border: 1px solid #fecaca; }
.contact-form__submit { width: 100%; justify-content: center; margin-top: var(--sp-2); }

/* Compat .form-feedback */
.form-feedback { padding: var(--sp-4); border-radius: var(--r); font-size: var(--text-sm); font-weight: var(--fw-medium); display: none; }
.form-feedback.success { display: block; background: #f0fdf4; color: #15803d; border: 1px solid #bbf7d0; }
.form-feedback.error   { display: block; background: #fef2f2; color: #b91c1c; border: 1px solid #fecaca; }

/* ─────────────────────────────────────────────────────────── */
/* 19. COMPOSANT : PRE-FOOTER CTA                              */
/* ─────────────────────────────────────────────────────────── */
.prefooter-cta {
  background: linear-gradient(130deg, var(--navy-900) 0%, var(--navy-700) 100%);
  color: var(--white); padding-block: var(--sp-16); position: relative; overflow: hidden;
}
.prefooter-cta::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 80% 50%, rgba(249,115,22,.16) 0%, transparent 65%);
}
.prefooter-cta__inner {
  position: relative; display: flex; align-items: center;
  justify-content: space-between; gap: var(--sp-8); flex-wrap: wrap;
}
.prefooter-cta__text h2 {
  font-family: var(--font-heading); font-weight: var(--fw-extra);
  font-size: clamp(var(--text-2xl), 3vw, var(--text-3xl));
  letter-spacing: -.02em; margin-bottom: var(--sp-2);
}
.prefooter-cta__text p { color: rgba(255,255,255,.72); }

/* ─────────────────────────────────────────────────────────── */
/* 20. FOOTER                                                  */
/* ─────────────────────────────────────────────────────────── */
.site-footer { background: var(--navy-950); color: var(--white); }
.site-footer__grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--sp-10); padding-block: var(--sp-16);
}
.footer-logo { display: flex; flex-direction: column; gap: var(--sp-2); margin-bottom: var(--sp-4); }
.footer-logo__img    { height: 44px; width: auto; object-fit: contain; display: block; }
.footer-logo__region { font-family: var(--font-heading); font-size: var(--text-xs); font-weight: var(--fw-bold); color: var(--orange); text-transform: uppercase; letter-spacing: .08em; }
.footer-tagline      { font-size: var(--text-base); color: rgba(255,255,255,.75); line-height: var(--lh-relaxed); margin-bottom: var(--sp-6); }
.footer-contact      { display: flex; flex-direction: column; gap: var(--sp-3); }
.footer-contact__item {
  display: flex; align-items: center; gap: var(--sp-3);
  font-size: var(--text-sm); color: var(--gray-300); transition: color var(--dur);
}
.footer-contact__item:hover { color: var(--white); }
.footer-contact__item .icon { color: var(--orange); }
.footer-col__title {
  font-family: var(--font-heading); font-size: var(--text-xs); font-weight: var(--fw-extra);
  text-transform: uppercase; letter-spacing: .08em; color: var(--gray-300); margin-bottom: var(--sp-5);
}
.pseudo-title { font-family: var(--font-heading); font-size: var(--text-base); font-weight: var(--fw-bold); color: var(--white); margin-bottom: var(--sp-2); letter-spacing: .01em; }
.footer-links { display: flex; flex-direction: column; gap: var(--sp-3); }
.footer-links a { font-size: var(--text-sm); color: var(--gray-300); transition: color var(--dur); }
.footer-links a:hover { color: var(--white); }
.footer-certif { border-top: 1px solid rgba(255,255,255,.06); padding-block: var(--sp-5); }
.footer-certif__inner { display: flex; align-items: center; gap: var(--sp-3); flex-wrap: wrap; font-size: var(--text-sm); font-weight: var(--fw-semi); color: var(--white); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.05); padding-block: var(--sp-5); }
.footer-bottom__inner {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: var(--sp-4);
}
.footer-bottom p { font-size: var(--text-sm); color: var(--gray-300); }
.footer-legal { display: flex; gap: var(--sp-4); }
.footer-legal a { font-size: var(--text-sm); color: var(--gray-300); transition: color var(--dur); }
.footer-legal a:hover { color: var(--white); }
.certif-badge {
  display: inline-flex; align-items: center; padding: .2rem .75rem;
  background: rgba(255,255,255,.07); color: rgba(255,255,255,.88);
  border: 1px solid rgba(255,255,255,.18);
  font-family: var(--font-heading); font-size: var(--text-xs); font-weight: var(--fw-bold);
  border-radius: var(--r); letter-spacing: .04em;
}

/* ─────────────────────────────────────────────────────────── */
/* 21. COMPOSANTS SUPPLÉMENTAIRES                              */
/* ─────────────────────────────────────────────────────────── */

/* Villes SEO */
.villes-list  { display: flex; flex-wrap: wrap; gap: var(--sp-3); list-style: none; margin: 0; padding: 0; }
.ville-chip   { display: inline-flex; align-items: center; gap: var(--sp-2); padding: var(--sp-2) var(--sp-4); background: var(--white); border: 1px solid var(--navy-100); border-radius: var(--r); font-size: var(--text-sm); color: var(--gray-700); }
.ville-chip__pin  { color: var(--navy-600); flex-shrink: 0; fill: currentColor; stroke: none; }
.ville-chip__name { font-weight: var(--fw-medium); }
.ville-chip__cp   { font-size: var(--text-xs); color: var(--gray-300); }

/* Régions */
.regions-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px,1fr)); gap: var(--sp-3); }
.region-tile  { display: flex; flex-direction: column; align-items: center; gap: var(--sp-2); padding: var(--sp-5); background: var(--white); border: 1px solid var(--gray-100); border-radius: var(--r-lg); text-align: center; font-family: var(--font-heading); font-weight: var(--fw-semi); color: var(--gray-700); transition: all var(--dur); }
.region-tile:hover { border-color: var(--navy-400); color: var(--navy-700); box-shadow: var(--shadow-sm); transform: translateY(-2px); }
.region-tile .icon { color: var(--navy-600); }
.region-tile__domain { font-size: var(--text-xs); color: var(--gray-300); font-family: var(--font-body); font-weight: var(--fw-normal); }

/* Cookie banner */
.cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 9999;
  background: rgba(2,12,31,.97); backdrop-filter: blur(8px);
  border-top: 1px solid rgba(75,131,228,.2);
  padding: var(--sp-4) var(--sp-5);
  transform: translateY(100%); transition: transform .35s var(--ease-out);
}
.cookie-banner.is-visible { transform: translateY(0); }
.cookie-banner__inner { max-width: 1200px; margin: 0 auto; display: flex; align-items: center; gap: var(--sp-6); flex-wrap: wrap; }
.cookie-banner__text  { flex: 1; font-size: var(--text-sm); color: var(--gray-300); line-height: var(--lh-normal); margin: 0; }
.cookie-banner__link  { color: var(--orange); text-decoration: underline; text-underline-offset: 2px; white-space: nowrap; }
.cookie-banner__link:hover { color: var(--white); }
.cookie-banner__actions { display: flex; gap: var(--sp-3); flex-shrink: 0; }
.cookie-banner__btn {
  padding: .45rem 1.25rem; border-radius: var(--r);
  font-family: var(--font-heading); font-size: var(--text-sm); font-weight: var(--fw-semi);
  cursor: pointer; transition: background .2s, color .2s, border-color .2s;
  border: 1.5px solid transparent; line-height: 1.4; text-transform: uppercase; letter-spacing: .04em;
}
.cookie-banner__btn--accept { background: var(--orange); color: var(--white); border-color: var(--orange); }
.cookie-banner__btn--accept:hover { background: var(--orange-dark); border-color: var(--orange-dark); }
.cookie-banner__btn--refuse { background: transparent; color: var(--gray-300); border-color: rgba(209,213,219,.4); }
.cookie-banner__btn--refuse:hover { border-color: var(--gray-300); color: var(--white); }

/* Intro région */
.intro-region-layout { display: grid; grid-template-columns: 1fr 2fr; gap: var(--sp-12); align-items: start; }
.intro-region__header { position: sticky; top: calc(var(--header-h) + var(--sp-6)); }

/* Contact layout page (non homepage) */
.contact-layout { display: grid; grid-template-columns: 1fr 2fr; gap: var(--sp-12); align-items: start; }
.contact-details { display: flex; flex-direction: column; gap: var(--sp-3); margin-bottom: var(--sp-6); }
.contact-details__item { display: flex; align-items: center; gap: var(--sp-3); font-size: var(--text-sm); color: var(--gray-700); }
.contact-details__item .icon { color: var(--navy-600); flex-shrink: 0; }
.contact-horaires { margin-bottom: var(--sp-6); }
.contact-horaires h4 { font-family: var(--font-heading); font-size: var(--text-base); font-weight: var(--fw-semi); margin-bottom: var(--sp-3); color: var(--gray-900); }
.contact-horaires p { font-size: var(--text-sm); color: var(--gray-500); line-height: 1.8; }
.contact-certif { display: flex; gap: var(--sp-2); flex-wrap: wrap; }
.contact-form-wrapper { background: var(--white); border: 1px solid var(--gray-100); border-radius: var(--r-xl); padding: var(--sp-8); box-shadow: var(--shadow-sm); }
.contact-person { display: flex; align-items: center; gap: var(--sp-4); margin-bottom: var(--sp-6); padding: var(--sp-4); background: var(--navy-50); border-radius: var(--r-lg); border: 1px solid var(--navy-100); }
.contact-person__photo { width: 64px; height: 64px; border-radius: var(--r-full); object-fit: cover; }
.contact-person__avatar { width: 64px; height: 64px; border-radius: var(--r-full); background: var(--navy-700); color: var(--white); display: flex; align-items: center; justify-content: center; font-family: var(--font-heading); font-weight: var(--fw-bold); font-size: var(--text-lg); flex-shrink: 0; }
.contact-person__name { font-family: var(--font-heading); font-weight: var(--fw-bold); font-size: var(--text-lg); display: block; }
.contact-person__role { font-size: var(--text-sm); color: var(--gray-500); }

/* Pages prestation */
.page-content { padding-block: var(--sp-16); }
.page-header  { margin-bottom: var(--sp-8); }
.page-header__title { font-family: var(--font-heading); font-size: clamp(var(--text-3xl), 5vw, var(--text-5xl)); font-weight: var(--fw-extra); color: var(--gray-900); line-height: var(--lh-tight); letter-spacing: -.025em; }
.error-404 { padding-block: var(--sp-24); text-align: center; }
.error-404 .page-header__title { font-size: var(--text-6xl); color: var(--navy-700); }
.error-404 .page-body p { font-size: var(--text-xl); color: var(--gray-500); margin-bottom: var(--sp-8); }

.prest-hero { position: relative; background: var(--navy-900); padding-block: calc(var(--header-h) + var(--sp-16)) var(--sp-16); overflow: hidden; }
.prest-hero--has-bg::before { content: ''; position: absolute; inset: 0; background: var(--prest-hero-bg) center / cover no-repeat; opacity: .2; }
.prest-hero::after { content: ''; position: absolute; inset: 0; background: linear-gradient(145deg, rgba(2,12,31,.88) 0%, rgba(13,45,94,.7) 100%); }
.prest-hero__inner { position: relative; z-index: 1; display: flex; align-items: center; min-height: 360px; }
.prest-hero__content { max-width: 740px; }
.prest-hero__icon  { display: block; font-size: 3rem; margin-bottom: var(--sp-4); line-height: 1; }
.prest-hero__title { font-family: var(--font-heading); font-size: clamp(var(--text-3xl), 5vw, var(--text-5xl)); font-weight: var(--fw-extra); color: var(--white); line-height: var(--lh-tight); margin-bottom: var(--sp-4); letter-spacing: -.025em; }
.prest-hero__subtitle { font-size: var(--text-xl); color: rgba(255,255,255,.78); line-height: var(--lh-relaxed); margin-bottom: var(--sp-8); max-width: 600px; }
.prest-hero__actions { display: flex; gap: var(--sp-4); flex-wrap: wrap; margin-bottom: var(--sp-8); }
.prest-hero__trust  { display: flex; gap: var(--sp-5); flex-wrap: wrap; font-size: var(--text-sm); color: rgba(255,255,255,.65); }
.prest-hero__trust span { display: flex; align-items: center; gap: var(--sp-1); }
.prest-intro__inner { display: grid; grid-template-columns: 1fr; gap: var(--sp-12); align-items: center; }
.prest-intro__inner--with-image { grid-template-columns: 1fr 1fr; }
.prest-intro__text h2, .prest-intro__text h3 { font-family: var(--font-heading); font-weight: var(--fw-bold); color: var(--navy-800); margin-top: var(--sp-6); margin-bottom: var(--sp-3); }
.prest-intro__text p { margin-bottom: var(--sp-4); color: var(--gray-700); }
.prest-intro__text ul, .prest-intro__text ol { padding-left: var(--sp-6); margin-bottom: var(--sp-4); }
.prest-intro__text li { margin-bottom: var(--sp-2); color: var(--gray-700); }
.prest-intro__img { width: 100%; height: 380px; object-fit: cover; border-radius: var(--r-xl); box-shadow: var(--shadow-lg); }
.prest-avantages__grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px,1fr)); gap: var(--sp-6); list-style: none; }
.prest-avantage-card { background: var(--white); border-radius: var(--r-lg); border: 1px solid var(--navy-100); border-top: 3px solid var(--navy-500); padding: var(--sp-8) var(--sp-6); box-shadow: var(--shadow-sm); transition: box-shadow var(--dur), transform var(--dur); }
.prest-avantage-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.prest-avantage-card__icon { display: block; font-size: 2.25rem; margin-bottom: var(--sp-4); line-height: 1; }
.prest-avantage-card__title { font-family: var(--font-heading); font-size: var(--text-lg); font-weight: var(--fw-bold); color: var(--navy-800); margin-bottom: var(--sp-2); }
.prest-avantage-card__text { font-size: var(--text-sm); color: var(--gray-500); line-height: var(--lh-relaxed); }
.prest-etapes__list { display: flex; flex-direction: column; gap: 0; list-style: none; position: relative; }
.prest-etapes__list::before { content: ''; position: absolute; left: calc(2rem - 1px); top: 2rem; bottom: 2rem; width: 2px; background: var(--navy-100); }
.prest-etape { display: grid; grid-template-columns: 4rem 1fr; gap: var(--sp-6); align-items: start; padding-block: var(--sp-8); position: relative; }
.prest-etape + .prest-etape { border-top: 1px solid var(--gray-100); }
.prest-etape__num { width: 4rem; height: 4rem; border-radius: var(--r-md); background: var(--navy-800); color: var(--white); font-family: var(--font-heading); font-size: var(--text-xl); font-weight: var(--fw-extra); display: flex; align-items: center; justify-content: center; flex-shrink: 0; position: relative; z-index: 1; box-shadow: 0 0 0 6px var(--white); }
.prest-etape__body { padding-top: var(--sp-3); }
.prest-etape__title { font-family: var(--font-heading); font-size: var(--text-xl); font-weight: var(--fw-bold); color: var(--navy-800); margin-bottom: var(--sp-2); }
.prest-etape__text { color: var(--gray-500); line-height: var(--lh-relaxed); }

/* Agences */
.agences-hero { background: var(--navy-900); color: #fff; padding: var(--sp-16) 0 var(--sp-12); text-align: center; }
.agences-hero .section-label { color: var(--orange); opacity: 1; }
.agences-hero__title { font-family: var(--font-heading); font-size: var(--text-4xl); font-weight: var(--fw-extra); color: #fff; margin: var(--sp-3) 0 var(--sp-4); line-height: 1.15; letter-spacing: -.02em; }
.agences-hero__desc  { font-size: var(--text-lg); color: rgba(255,255,255,.72); max-width: 600px; margin: 0 auto; }
.agences-map-section { padding: var(--sp-12) 0; background: var(--gray-50); }
.agences-map { height: 680px; border-radius: var(--r-xl); overflow: hidden; box-shadow: 0 4px 24px rgba(0,0,0,.1); border: 1px solid var(--gray-300); }
.section--agences-list { padding-block: var(--sp-16); }
.agences-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: var(--sp-6); margin-top: var(--sp-10); }
.agence-card { background: #fff; border: 1px solid var(--gray-100); border-radius: var(--r-xl); padding: var(--sp-6); display: flex; flex-direction: column; gap: var(--sp-3); transition: box-shadow .25s, transform .25s, border-color .25s; }
.agence-card:hover { box-shadow: 0 8px 32px rgba(0,0,0,.1); transform: translateY(-3px); border-color: var(--orange); }
.agence-card__header { display: flex; align-items: flex-start; gap: var(--sp-3); }
.agence-card__pin { flex-shrink: 0; width: 36px; height: 36px; background: var(--navy-100); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--navy-700); }
.agence-card__pin svg { width: 18px; height: 18px; }
.agence-card__title { font-family: var(--font-heading); font-size: var(--text-base); font-weight: var(--fw-bold); color: var(--gray-900); margin: 0; line-height: 1.3; }
.agence-card__city  { font-size: var(--text-sm); color: var(--gray-500); display: block; margin-top: 2px; }
.agence-card__tel   { font-size: var(--text-sm); font-weight: 600; color: var(--navy-700); text-decoration: none; display: flex; align-items: center; gap: 6px; }
.agence-card__contact { display: flex; align-items: center; gap: var(--sp-2); padding-top: var(--sp-1); border-top: 1px solid var(--gray-100); }
.agence-card__avatar { flex-shrink: 0; width: 36px; height: 36px; border-radius: 50%; background: var(--navy-700); color: #fff; display: flex; align-items: center; justify-content: center; font-size: var(--text-xs); font-weight: var(--fw-bold); letter-spacing: .05em; }
.agence-card__avatar--photo { object-fit: cover; }
.agence-card__contact-name { font-size: var(--text-sm); font-weight: 600; color: var(--gray-700); }
.agence-card__address { font-size: var(--text-xs); color: var(--gray-500); margin: 0; display: flex; align-items: flex-start; gap: 4px; line-height: 1.4; }
.agence-card__address svg { flex-shrink: 0; width: 12px; height: 12px; margin-top: 1px; }
.agence-card__arrow { margin-top: auto; padding-top: var(--sp-2); display: flex; align-items: center; color: var(--orange); }
.agence-card__arrow svg { width: 18px; height: 18px; transition: transform .2s; }
.agence-card:hover .agence-card__arrow svg { transform: translateX(4px); }
a.agence-card { text-decoration: none; color: inherit; cursor: pointer; }

/* Leaflet markers et popups Froid24 */
.f24-marker { background: transparent !important; border: none !important; }
.f24-marker__pin { width: 36px; height: 44px; color: var(--orange); filter: drop-shadow(0 2px 6px rgba(0,0,0,.3)); }
.f24-marker__pin svg { width: 100%; height: 100%; }
.f24-leaflet-popup .leaflet-popup-content-wrapper { border-radius: var(--r-lg); box-shadow: 0 4px 20px rgba(0,0,0,.15); border: none; padding: 0; overflow: hidden; }
.f24-leaflet-popup .leaflet-popup-content { margin: 0; padding: 0; }
.f24-leaflet-popup .leaflet-popup-tip { background: #fff; }
.f24-popup { display: block; text-decoration: none; padding: var(--sp-3) var(--sp-4); background: #fff; min-width: 160px; }
.f24-popup__title { display: block; font-family: var(--font-heading); font-size: var(--text-sm); font-weight: var(--fw-bold); color: var(--navy-900); margin-bottom: 2px; }
.f24-popup__city  { display: block; font-size: var(--text-xs); color: var(--gray-500); }
.f24-popup--link:hover .f24-popup__title { color: var(--orange); }

/* Galerie */
.section--gallery-region { padding-block: var(--sp-16); }
.gallery-masonry { column-count: 3; column-gap: var(--sp-4); margin-top: var(--sp-8); }
.gallery-masonry__item { break-inside: avoid; margin-bottom: var(--sp-4); border-radius: var(--r-lg); overflow: hidden; background: var(--gray-100); }
.gallery-masonry__img  { width: 100%; height: auto; display: block; vertical-align: middle; object-fit: cover; min-height: 180px; }
.section--gallery-slider { padding-block: var(--sp-16); }
.gallery-marquee { width: 100%; overflow: hidden; -webkit-mask-image: linear-gradient(to right,transparent 0%,#000 8%,#000 92%,transparent 100%); mask-image: linear-gradient(to right,transparent 0%,#000 8%,#000 92%,transparent 100%); margin-top: var(--sp-8); cursor: grab; touch-action: pan-y; -webkit-user-select: none; user-select: none; }
.gallery-marquee.is-dragging { cursor: grabbing; }
.gallery-marquee__track { display: flex; gap: 16px; width: max-content; animation: f24-marquee 40s linear infinite; will-change: transform; }
.gallery-marquee__item { flex-shrink: 0; width: 380px; height: 260px; border-radius: var(--r-lg); overflow: hidden; background: var(--gray-100); }
.gallery-marquee__img  { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .4s var(--ease-out); }
.gallery-marquee__item:hover .gallery-marquee__img { transform: scale(1.04); }
@keyframes f24-marquee { 0% { transform: translateX(0); } 100% { transform: translateX(calc(-100% / 3)); } }

/* ─────────────────────────────────────────────────────────── */
/* 22. ANIMATIONS                                             */
/* ─────────────────────────────────────────────────────────── */
@keyframes fadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
@keyframes pulse  { 0%,100% { transform: scale(1); } 50% { transform: scale(1.05); } }

.fade-up { opacity: 0; }
.fade-up.is-visible { animation: fadeUp .6s var(--ease-out) both; }
.animate-fade-up { animation: fadeUp .6s var(--ease-out) both; }
.animate-delay-1 { animation-delay: .1s; }
.animate-delay-2 { animation-delay: .2s; }
.animate-delay-3 { animation-delay: .3s; }

/* ─────────────────────────────────────────────────────────── */
/* 22b. OVERRIDE GRILLES — garantir l'affichage en colonnes  */
/* (protège contre éventuels conflits de plugins/framework)  */
/* ─────────────────────────────────────────────────────────── */
.stats__grid          { display: grid !important; grid-template-columns: repeat(3, 1fr) !important; gap: var(--sp-6); max-width: 900px; margin-inline: auto; }
.services__grid       { display: grid !important; grid-template-columns: repeat(var(--services-n, 4), 1fr) !important; gap: var(--sp-6); }
.aides__grid          { display: grid !important; grid-template-columns: repeat(3, 1fr) !important; gap: var(--sp-6); }
.about__inner         { display: grid !important; grid-template-columns: 1fr 1fr !important; gap: var(--sp-16); align-items: center; }
.contact__inner,
.contact-section__inner { display: grid !important; grid-template-columns: 1fr 2fr !important; gap: var(--sp-12); align-items: start; }
.process__steps       { display: grid !important; grid-template-columns: repeat(4, 1fr) !important; gap: var(--sp-6) !important; max-width: none !important; }
/* Responsive overrides (toujours après pour garder la priorité correcte) */
@media (max-width: 1100px) {
  .about__inner { grid-template-columns: 1fr !important; gap: var(--sp-10) !important; }
}
@media (max-width: 900px) {
  .stats__grid    { grid-template-columns: repeat(3, 1fr) !important; }
  .process__steps { grid-template-columns: repeat(2, 1fr) !important; gap: var(--sp-4) !important; }
  .process__steps::before { display: none; }
}
@media (max-width: 768px) {
  .stats__grid          { grid-template-columns: repeat(3, 1fr) !important; gap: var(--sp-4) !important; }
  .services__grid       { grid-template-columns: repeat(2, 1fr) !important; } /* 2 cols max sur tablette */
  .aides__grid          { grid-template-columns: repeat(2, 1fr) !important; }
  .contact__inner,
  .contact-section__inner { grid-template-columns: 1fr !important; }
  .process__steps       { grid-template-columns: 1fr !important; gap: var(--sp-3) !important; }
}
@media (max-width: 580px) {
  .stats__grid    { grid-template-columns: 1fr !important; max-width: 320px; margin-inline: auto; }
  .services__grid { grid-template-columns: 1fr !important; }
  .aides__grid    { grid-template-columns: 1fr !important; }
}

/* ─────────────────────────────────────────────────────────── */
/* 23. UTILITAIRES                                            */
/* ─────────────────────────────────────────────────────────── */
.sr-only    { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border-width: 0; }
.text-center{ text-align: center; }
.text-left  { text-align: left; }
.font-bold  { font-weight: var(--fw-bold); }
.text-navy  { color: var(--navy-700); }
.text-orange{ color: var(--orange); }

/* ─────────────────────────────────────────────────────────── */
/* 24. RESPONSIVE                                             */
/* ─────────────────────────────────────────────────────────── */
@media (max-width: 1100px) {
  .hero__inner              { grid-template-columns: 1fr; }
  .hero__aside              { display: none; }
  .site-footer__grid        { grid-template-columns: 1fr 1fr; gap: var(--sp-8); }
  .intro-region-layout      { grid-template-columns: 1fr; }
  .intro-region__header     { position: static; }
  .contact-layout           { grid-template-columns: 1fr; }
  .agences-grid             { grid-template-columns: repeat(2,1fr); }
  .about__img               { height: 320px; }
}

@media (max-width: 768px) {
  :root { --header-h: 68px; --container-pad: 1.25rem; }

  .topbar .topbar__info, .topbar__region { display: none; }
  .site-header__cta { display: none; }
  .nav-toggle  { display: flex; }
  .site-header__logo-img { height: 44px; }
  .site-nav {
    position: fixed; top: var(--header-h); left: 0; right: 0; bottom: 0;
    background: var(--white); flex-direction: column; justify-content: flex-start;
    padding: var(--sp-6) var(--sp-4) var(--sp-8); transform: translateX(100%);
    transition: transform var(--dur) var(--ease); overflow-y: auto; box-shadow: var(--shadow-xl);
  }
  .site-nav.is-open { transform: translateX(0); }
  .nav-menu { flex-direction: column; align-items: stretch; gap: 0; flex: 1; }
  .nav-menu > li > a {
    padding: var(--sp-4); font-size: var(--text-base);
    border-bottom: 1px solid var(--gray-100); border-radius: 0;
    text-transform: none; letter-spacing: 0;
    justify-content: space-between;
  }
  /* Dropdown mobile : accordion */
  .sub-menu {
    position: static; transform: none; opacity: 1; pointer-events: auto;
    box-shadow: none; border: none; border-radius: 0;
    background: var(--gray-50); padding: 0;
    max-height: 0; overflow: hidden;
    transition: max-height .3s var(--ease);
  }
  .menu-item-has-children.is-open > .sub-menu { max-height: 600px; }
  .sub-menu a {
    padding: var(--sp-3) var(--sp-6);
    border-left: 3px solid var(--orange);
    font-size: var(--text-sm);
  }
  /* Boutons CTA dans le menu mobile */
  .nav-mobile-cta {
    display: flex; flex-direction: column; gap: var(--sp-3);
    padding-top: var(--sp-6); margin-top: var(--sp-4);
    border-top: 2px solid var(--navy-100);
  }
  .nav-mobile-cta__btn { width: 100%; justify-content: center; text-transform: none; }

  .hero { min-height: auto; }
  .hero__inner  { padding-block: var(--sp-12); }
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { width: 100%; justify-content: center; }

  .section { padding-block: var(--sp-12); }
  .about__img   { height: 240px; }
  .form-row--2, .form-row--2col { flex-direction: column; }
  .prefooter-cta__inner { flex-direction: column; text-align: center; }
  .site-footer__grid { grid-template-columns: 1fr; gap: var(--sp-8); }
  .footer-bottom__inner { flex-direction: column; text-align: center; }
  .prest-hero__actions { flex-direction: column; }
  .prest-hero__actions .btn { width: 100%; justify-content: center; }
  .prest-intro__inner--with-image { grid-template-columns: 1fr; }
  .prest-avantages__grid { grid-template-columns: repeat(2,1fr); }
  .gallery-masonry { column-count: 2; }
  .gallery-marquee__item { width: 260px; height: 180px; }
}

@media (max-width: 580px) {
  .agences-grid  { grid-template-columns: 1fr; }
  .agences-map   { height: 420px; }
  .cookie-banner__inner  { flex-direction: column; align-items: flex-start; gap: var(--sp-3); }
  .cookie-banner__actions { width: 100%; }
  .cookie-banner__btn { flex: 1; text-align: center; }
  .prest-avantages__grid { grid-template-columns: 1fr; }
  .gallery-masonry { column-count: 1; }
  .footer-legal { flex-wrap: wrap; gap: var(--sp-3); }
  .site-header__cta { display: none; }
  .hero__trust  { gap: var(--sp-3); }
}

@media (max-width: 400px) {
  :root { --container-pad: 1rem; }
  .site-header__logo-img { height: 36px; }
}
