/* ══════════════════════════════════════════════
   CONCORDIA FORMATIONS — MAIN.CSS
   Design system (maquettes 2026) : navy + rouge,
   navbar blanche, footer bleu nuit,
   composants partagés + animations au scroll
   ══════════════════════════════════════════════ */

/* ── PALETTE & VARIABLES ── */
:root {
  --navy:    #0F2148;
  --navy-2:  #16305E;
  --rouge:   #C8102E;
  --rouge-s: #8B0018;
  --ink:     #0F2148;
  --white:   #FFFFFF;
  --off:     #F5F7FA;
  --gris:    #5A6478;
  --line:    rgba(15,33,72,.12);
  --line-r:  rgba(200,16,46,.12);
  --line-w:  rgba(255,255,255,.14);
  --fd: 'Bricolage Grotesque', sans-serif;
  --fb: 'Inter', sans-serif;
  --navh: 66px;
  --radius: 10px;
}

/* ── RESET & BASE ── */
*, *::before, *::after { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  max-width: 100%;
}
body {
  font-family: var(--fb);
  color: var(--ink);
  background: #fff;
  overflow-x: hidden;
  max-width: 100%;
}
body.no-scroll { overflow: hidden; }
h1,h2,h3,h4,h5,h6 { font-family: var(--fd); color: var(--ink); margin: 0; }
a { text-decoration: none; color: inherit; }
::selection { background: var(--rouge); color: #fff; }

/* ══════════════════════════════════════════════
   ANIMATIONS CRÉATIVES AU SCROLL
   Système data-anim + délais .d0-.d8
   ══════════════════════════════════════════════ */

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(36px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeDown {
  from { opacity: 0; transform: translateY(-32px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes slideLeft {
  from { opacity: 0; transform: translateX(56px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes slideRight {
  from { opacity: 0; transform: translateX(-56px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes zoomFade {
  from { opacity: 0; transform: scale(.87); }
  to   { opacity: 1; transform: scale(1); }
}
@keyframes revealUp {
  from { opacity: 0; transform: translateY(48px) skewY(2deg); }
  to   { opacity: 1; transform: translateY(0) skewY(0deg); }
}
@keyframes rotateUp {
  from { opacity: 0; transform: perspective(700px) rotateX(16deg) translateY(28px); }
  to   { opacity: 1; transform: perspective(700px) rotateX(0deg) translateY(0); }
}
@keyframes tiltLeft {
  from { opacity: 0; transform: perspective(800px) rotateY(-18deg) translateX(-28px); }
  to   { opacity: 1; transform: perspective(800px) rotateY(0deg) translateX(0); }
}
@keyframes tiltRight {
  from { opacity: 0; transform: perspective(800px) rotateY(18deg) translateX(28px); }
  to   { opacity: 1; transform: perspective(800px) rotateY(0deg) translateX(0); }
}
@keyframes popIn {
  0%   { opacity: 0; transform: scale(.65) translateY(18px); }
  65%  { opacity: 1; transform: scale(1.05) translateY(-3px); }
  100% { opacity: 1; transform: scale(1) translateY(0); }
}
@keyframes floatIn {
  0%   { opacity: 0; transform: translateY(44px) rotate(-1.5deg); }
  65%  { opacity: 1; transform: translateY(-5px) rotate(.4deg); }
  100% { opacity: 1; transform: translateY(0) rotate(0deg); }
}
@keyframes blurReveal {
  from { opacity: 0; filter: blur(10px); transform: scale(1.03); }
  to   { opacity: 1; filter: blur(0px);  transform: scale(1); }
}
@keyframes riseUp {
  from { opacity: 0; transform: translateY(60px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes bounceIn {
  0%   { opacity: 0; transform: scale(0.4); }
  55%  { opacity: 1; transform: scale(1.07); }
  75%  { transform: scale(.95); }
  100% { opacity: 1; transform: scale(1); }
}

/* ── Compatibilité .rev (ancien système) ── */
.rev {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .6s cubic-bezier(.25,1,.5,1),
              transform .6s cubic-bezier(.25,1,.5,1);
}
.rev.in { opacity: 1; transform: none; }

[data-anim] { opacity: 0; }
[data-anim].is-visible {
  animation-fill-mode: both;
  animation-duration: .72s;
  animation-timing-function: cubic-bezier(.22,.61,.36,1);
}
[data-anim].anim-done {
  opacity: 1 !important;
  transform: none !important;
  filter: none !important;
  animation: none !important;
}
[data-anim="fade-up"].is-visible      { animation-name: fadeUp; }
[data-anim="fade-down"].is-visible    { animation-name: fadeDown; }
[data-anim="slide-left"].is-visible   { animation-name: slideLeft; }
[data-anim="slide-right"].is-visible  { animation-name: slideRight; }
[data-anim="zoom-fade"].is-visible    { animation-name: zoomFade;   animation-duration: .8s; }
[data-anim="clip-reveal"].is-visible  { animation-name: revealUp;   animation-duration: .8s; }
[data-anim="rotate-up"].is-visible    { animation-name: rotateUp;   animation-duration: .78s; }
[data-anim="tilt-left"].is-visible    { animation-name: tiltLeft;   animation-duration: .8s; }
[data-anim="tilt-right"].is-visible   { animation-name: tiltRight;  animation-duration: .8s; }
[data-anim="pop-in"].is-visible       { animation-name: popIn;      animation-duration: .65s; animation-timing-function: cubic-bezier(.34,1.56,.64,1); }
[data-anim="float-in"].is-visible     { animation-name: floatIn;    animation-duration: .9s; }
[data-anim="blur-reveal"].is-visible  { animation-name: blurReveal; animation-duration: .85s; }
[data-anim="wipe-up"].is-visible      { animation-name: riseUp;     animation-duration: .72s; }
[data-anim="bounce-in"].is-visible    { animation-name: bounceIn;   animation-duration: .7s;  animation-timing-function: cubic-bezier(.34,1.56,.64,1); }

.d0 { animation-delay: 0s;   transition-delay: 0s; }
.d1 { animation-delay: .1s;  transition-delay: .1s; }
.d2 { animation-delay: .18s; transition-delay: .18s; }
.d3 { animation-delay: .26s; transition-delay: .26s; }
.d4 { animation-delay: .34s; transition-delay: .34s; }
.d5 { animation-delay: .42s; transition-delay: .42s; }
.d6 { animation-delay: .5s;  transition-delay: .5s; }
.d7 { animation-delay: .58s; transition-delay: .58s; }
.d8 { animation-delay: .66s; transition-delay: .66s; }

/* ═══════════════ NAVBAR ═══════════════ */
#navbar {
  position: fixed; inset-inline: 0; top: 0; z-index: 900;
  padding: 0;
  background: #fff;
  border-bottom: 1px solid var(--line);
  transition: box-shadow .3s;
  width: 100%; max-width: 100%;
}
#navbar.stuck { box-shadow: 0 4px 18px rgba(15,33,72,.08); }
#navbar .container {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  height: var(--navh);
  gap: 20px;
}
@media (max-width: 1199px) {
  #navbar .container { display: flex; justify-content: space-between; align-items: center; }
}
.nav-brand { display: flex; align-items: center; }
.nav-logo-img { height: 44px; width: auto; display: block; flex-shrink: 0; }
@media (max-width: 1199px) { .nav-logo-img { height: 36px; } }

.d-nav-links { justify-content: center !important; gap: 0 !important; }
.d-nav-links li { display: flex; }
.nav-link-item {
  font-size: .82rem; font-weight: 500;
  color: var(--navy); padding: 0 12px !important;
  height: var(--navh); display: flex; align-items: center;
  transition: color .2s;
  white-space: nowrap;
}
.nav-link-item:hover { color: var(--rouge); }
.nav-link-item.active { color: var(--rouge); font-weight: 600; }

.nav-actions { display: flex; align-items: center; gap: 12px; }

/* ── Dropdown navbar (hover) ── */
.nav-drop { position: relative; }
.nav-drop > .nav-link-item .caret {
  width: 9px; height: 9px; margin-left: 5px;
  transition: transform .25s;
}
.nav-drop:hover > .nav-link-item .caret { transform: rotate(180deg); }
.drop-panel {
  position: absolute; top: 100%; left: 0;
  min-width: 220px;
  background: #fff;
  border: 1px solid var(--line); border-radius: 4px;
  box-shadow: 0 10px 30px rgba(15,33,72,.08);
  padding: 6px 0;
  opacity: 0; visibility: hidden;
  transform: translateY(6px);
  transition: opacity .18s ease, transform .18s ease, visibility .18s;
  z-index: 950;
}
.nav-drop:hover .drop-panel,
.nav-drop:focus-within .drop-panel {
  opacity: 1; visibility: visible;
  transform: translateY(0);
}
.drop-link {
  display: block;
  padding: 9px 18px;
  font-size: .8rem; font-weight: 500; color: var(--gris);
  transition: color .15s, background .15s;
}
.drop-link:hover { color: var(--rouge); background: var(--off); }
.drop-sep { height: 1px; background: var(--line); margin: 6px 0; }
.btn-nav {
  background: var(--rouge); color: #fff;
  font-size: .68rem; font-weight: 700;
  letter-spacing: .05em; text-transform: uppercase;
  padding: 9px 15px; border-radius: 5px; border: none;
  transition: background .2s, transform .2s;
  white-space: nowrap;
}
.btn-nav:hover { background: var(--rouge-s); color: #fff; transform: translateY(-1px); }

/* ── Bouton menu mobile ── */
.menu-toggle {
  display: none; width: 30px; height: 22px; position: relative;
  background: transparent; border: none; cursor: pointer; padding: 0;
  z-index: 2001; margin-left: 8px;
}
@media (max-width: 1199px) { .menu-toggle { display: block; } }
.menu-toggle span {
  display: block; position: absolute; height: 3px; background: var(--navy);
  border-radius: 4px; left: 0; transition: all .3s cubic-bezier(.4,0,.2,1);
}
.menu-toggle span:nth-child(1) { top: 0; width: 100%; }
.menu-toggle span:nth-child(2) { top: 9px; width: 75%; }
.menu-toggle span:nth-child(3) { top: 18px; width: 50%; }
.menu-toggle:hover span { width: 100%; }
.menu-toggle.is-active span:nth-child(1) { top: 9px; transform: rotate(45deg); width: 100%; }
.menu-toggle.is-active span:nth-child(2) { opacity: 0; left: -20px; }
.menu-toggle.is-active span:nth-child(3) { top: 9px; transform: rotate(-45deg); width: 100%; }
@media (max-width: 1199px) { .d-nav-links { display: none !important; } .btn-nav.d-none { display: none !important; } }

/* ── Menu mobile overlay (plein écran, navy) ── */
.mobile-menu-overlay {
  position: fixed; inset: 0; z-index: 2000;
  visibility: hidden; pointer-events: none;
}
body.menu-open .mobile-menu-overlay { visibility: visible; pointer-events: auto; }
.mobile-menu-content {
  position: absolute; inset: 0;
  background: linear-gradient(165deg, var(--navy) 0%, var(--navy-2) 100%);
  padding: 18px 24px 26px;
  display: flex; flex-direction: column;
  transform: translateY(-8%); opacity: 0;
  transition: transform .45s cubic-bezier(.32,.72,0,1), opacity .35s;
  overflow-y: auto;
}
body.menu-open .mobile-menu-content { transform: translateY(0); opacity: 1; }
.mm-head {
  display: flex; align-items: center; justify-content: space-between;
  height: var(--navh); flex-shrink: 0;
  border-bottom: 1px solid rgba(255,255,255,.12);
  margin-bottom: 20px;
}
.mm-logo { height: 34px; width: auto; filter: brightness(0) invert(1); }
.mobile-menu-close {
  width: 36px; height: 36px; border-radius: 50%;
  background: transparent; border: 1.5px solid rgba(255,255,255,.35);
  cursor: pointer; color: #fff;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s, border-color .2s;
}
.mobile-menu-close:hover { background: var(--rouge); border-color: var(--rouge); }
.mm-groups { flex: 1; display: grid; gap: 22px; align-content: start; }
.mm-group {
  transform: translateY(14px); opacity: 0;
  transition: transform .45s cubic-bezier(.25,1,.5,1), opacity .45s;
}
body.menu-open .mm-group:nth-child(1) { transition-delay: .06s; }
body.menu-open .mm-group:nth-child(2) { transition-delay: .13s; }
body.menu-open .mm-group:nth-child(3) { transition-delay: .20s; }
body.menu-open .mm-group:nth-child(4) { transition-delay: .27s; }
body.menu-open .mm-group:nth-child(5) { transition-delay: .34s; }
body.menu-open .mm-group { transform: translateY(0); opacity: 1; }
.mm-label {
  display: block;
  font-size: .62rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase;
  color: var(--rouge); margin-bottom: 6px;
}
.mobile-nav-link {
  display: block; padding: 8px 0;
  font-family: var(--fd); font-size: 1.02rem; font-weight: 600;
  color: rgba(255,255,255,.92);
}
.mobile-nav-link:hover, .mobile-nav-link.active { color: #fff; padding-left: 4px; transition: padding .2s; }
.mobile-contact-info {
  margin-top: 24px; flex-shrink: 0;
  transform: translateY(14px); opacity: 0;
  transition: transform .45s .4s cubic-bezier(.25,1,.5,1), opacity .45s .4s;
}
body.menu-open .mobile-contact-info { transform: translateY(0); opacity: 1; }
.mobile-cta-btn {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--rouge); color: #fff;
  font-size: .74rem; font-weight: 700; letter-spacing: .05em; text-transform: uppercase;
  padding: 12px 20px; border-radius: 6px; width: 100%;
  justify-content: center;
}
.mobile-cta-btn:hover { background: var(--rouge-s); color: #fff; }

/* ═══════════════ BOUTONS ═══════════════ */
.btn-red, .btn-outline, .btn-white, .btn-navy {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-size: .72rem; font-weight: 700;
  letter-spacing: .05em; text-transform: uppercase;
  padding: 11px 20px; border-radius: 5px;
  transition: background .2s, color .2s, border-color .2s, transform .2s;
  border: 1.5px solid transparent; cursor: pointer;
  white-space: nowrap;
}
.btn-red { background: var(--rouge); color: #fff; }
.btn-red:hover { background: var(--rouge-s); color: #fff; transform: translateY(-2px); }
.btn-navy { background: var(--navy); color: #fff; }
.btn-navy:hover { background: var(--navy-2); color: #fff; transform: translateY(-2px); }
.btn-outline { background: #fff; color: var(--navy); border-color: var(--line); }
.btn-outline:hover { border-color: var(--navy); color: var(--navy); transform: translateY(-2px); }
.btn-white { background: #fff; color: var(--navy); }
.btn-white:hover { background: var(--off); color: var(--rouge); transform: translateY(-2px); }
.btn-red svg, .btn-outline svg, .btn-white svg, .btn-navy svg { width: 13px; height: 13px; flex-shrink: 0; }

/* ═══════════════ SECTIONS & TITRES ═══════════════ */
.s-pad { padding-block: clamp(64px, 8vw, 110px); }
.s-pad-sm { padding-block: clamp(44px, 6vw, 72px); }
.bg-off { background: var(--off); }

.p-kicker {
  display: inline-block;
  font-size: .68rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase;
  color: var(--rouge); margin-bottom: 14px;
}
.p-title {
  font-family: var(--fd); font-weight: 800;
  font-size: clamp(1.9rem, 4.6vw, 3rem);
  letter-spacing: -.02em; line-height: 1.08;
  text-transform: uppercase;
  color: var(--navy);
}
.p-title em, .p-title .red { font-style: normal; color: var(--rouge); }
.p-sub {
  font-family: var(--fd);
  font-size: clamp(1.02rem, 2.2vw, 1.25rem); font-weight: 600;
  color: var(--navy); line-height: 1.4; margin-top: 16px;
}
.p-lead { font-size: .95rem; color: var(--gris); line-height: 1.75; margin-top: 14px; max-width: 520px; }
.s-center { text-align: center; }
.s-center .p-lead { margin-inline: auto; }

/* ═══════════════ HERO DE PAGE (split texte / média) ═══════════════ */
.p-hero { padding-top: calc(var(--navh) + clamp(36px, 6vw, 72px)); padding-bottom: clamp(44px, 6vw, 80px); position: relative; overflow: hidden; }
.p-hero-grid { display: grid; grid-template-columns: minmax(0, 6fr) minmax(0, 5fr); gap: clamp(32px, 5vw, 72px); align-items: center; }
@media (max-width: 991px) { .p-hero-grid { grid-template-columns: 1fr; } }
.p-hero-media { position: relative; }
.p-hero-media img {
  width: 100%; border-radius: var(--radius);
  aspect-ratio: 5/4; object-fit: cover; display: block;
  box-shadow: 0 20px 50px rgba(15,33,72,.14);
}
/* Coin rouge décoratif façon maquette */
.accent-corner { position: relative; }
.accent-corner::after {
  content: ''; position: absolute; right: -14px; bottom: -14px;
  width: 34%; height: 34%;
  background: linear-gradient(135deg, var(--rouge) 0%, var(--rouge-s) 100%);
  clip-path: polygon(100% 0, 100% 100%, 0 100%);
  border-radius: 0 0 var(--radius) 0;
  z-index: -1;
}
.hero-actions { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; margin-top: 28px; }

/* ═══════════════ BANDEAU NAVY (features / piliers) ═══════════════ */
.band { background: var(--navy); color: #fff; padding-block: clamp(34px, 5vw, 54px); position: relative; overflow: hidden; }
.band-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; }
.band-grid.cols-5 { grid-template-columns: repeat(5, 1fr); }
@media (max-width: 991px) { .band-grid, .band-grid.cols-5 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 575px)  { .band-grid, .band-grid.cols-5 { grid-template-columns: 1fr; } }
.band-item { display: flex; align-items: center; gap: 14px; }
.band-item.v { flex-direction: column; text-align: center; gap: 10px; }
.band-ic {
  width: 46px; height: 46px; border-radius: 50%; flex-shrink: 0;
  border: 1.5px solid rgba(255,255,255,.4);
  display: flex; align-items: center; justify-content: center;
}
.band-ic svg { width: 20px; height: 20px; color: #fff; display: block; }
.band-t { font-size: .82rem; font-weight: 600; line-height: 1.45; color: #fff; }
.band-item.v .band-t { font-size: .74rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; }
.band-s { font-size: .74rem; color: rgba(255,255,255,.65); line-height: 1.5; margin-top: 4px; }

/* ═══════════════ BANDEAU STATS ═══════════════ */
.stat-band { background: var(--navy); color: #fff; padding-block: clamp(38px, 5vw, 58px); }
.stat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; text-align: center; }
@media (max-width: 991px) { .stat-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 575px)  { .stat-grid { grid-template-columns: 1fr; } }
.stat-num {
  font-family: var(--fd); font-weight: 800;
  font-size: clamp(1.7rem, 4vw, 2.5rem); letter-spacing: -.02em; color: #fff;
}
.stat-num em { font-style: normal; color: var(--rouge); }
.stat-lab {
  font-size: .68rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  color: rgba(255,255,255,.75); margin-top: 6px; line-height: 1.5;
}

/* ═══════════════ CARTES À ICÔNE ═══════════════ */
.card-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.card-grid.cols-2 { grid-template-columns: repeat(2, 1fr); }
.card-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 991px) { .card-grid, .card-grid.cols-3 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 575px)  { .card-grid, .card-grid.cols-3, .card-grid.cols-2 { grid-template-columns: 1fr; } }
.icon-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 28px 20px; text-align: center;
  transition: transform .3s, box-shadow .3s, border-color .3s;
}
.icon-card:hover { transform: translateY(-5px); box-shadow: 0 14px 34px rgba(15,33,72,.1); border-color: transparent; }
.icon-card .ic {
  width: 52px; height: 52px; margin: 0 auto 16px;
  border-radius: 50%; border: 1.5px solid var(--line);
  display: flex; align-items: center; justify-content: center;
  color: var(--navy);
}
.icon-card .ic svg { width: 22px; height: 22px; display: block; }
.icon-card h3 {
  font-family: var(--fb); font-size: .78rem; font-weight: 800;
  letter-spacing: .06em; text-transform: uppercase;
  color: var(--navy); line-height: 1.45; margin-bottom: 10px;
}
.icon-card p { font-size: .8rem; color: var(--gris); line-height: 1.6; margin: 0; }

/* ═══════════════ LISTE À COCHES (image coche.png) ═══════════════ */
.check-list { list-style: none; padding: 0; margin: 22px 0 0; display: grid; gap: 12px; }
.check-list li { display: flex; align-items: flex-start; gap: 11px; font-size: .9rem; font-weight: 500; color: var(--navy); line-height: 1.5; }
.check-badge {
  width: 20px; height: 20px; flex-shrink: 0; margin-top: 2px;
  background: url("../img/coche.png") center / contain no-repeat;
}
.check-badge svg { display: none; }

/* ═══════════════ LIGNES ALTERNÉES (texte / visuel) ═══════════════ */
.split-row {
  display: grid; grid-template-columns: minmax(0, 7fr) minmax(0, 4fr);
  gap: clamp(28px, 5vw, 64px); align-items: center;
  padding-block: clamp(26px, 4vw, 42px);
  scroll-margin-top: calc(var(--navh) + 16px);
}
.split-row + .split-row { border-top: 1px solid var(--line); }
.split-row.alt { grid-template-columns: minmax(0, 4fr) minmax(0, 7fr); }
.split-row-title {
  font-family: var(--fd); font-weight: 800;
  font-size: clamp(1.25rem, 2.6vw, 1.65rem);
  letter-spacing: -.01em; line-height: 1.22;
  color: var(--navy); margin-top: 4px;
}
.split-row-title em { font-style: normal; color: var(--rouge); }
.split-row-visual {
  width: 100%; aspect-ratio: 4/3; border-radius: var(--radius);
  background: var(--off); border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center;
  color: var(--navy); overflow: hidden;
}
.split-row-visual svg { width: 58px; height: 58px; opacity: .85; }
.split-row-visual img { width: 100%; height: 100%; object-fit: cover; }
@media (max-width: 991px) {
  .split-row, .split-row.alt { grid-template-columns: 1fr; }
  .split-row.alt .split-row-visual { order: 2; }
  .split-row-visual { aspect-ratio: 3/1.4; }
}

/* ═══════════════ ÉTAPES NUMÉROTÉES ═══════════════ */
.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 34px 22px; position: relative; }
.steps-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 991px) { .steps-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 575px)  { .steps-grid { grid-template-columns: 1fr; } }
.step-item { text-align: center; position: relative; }
.step-num {
  width: 52px; height: 52px; border-radius: 50%; margin: 0 auto 8px;
  background: var(--navy); color: #fff;
  font-family: var(--fd); font-weight: 800; font-size: 1.15rem;
  display: flex; align-items: center; justify-content: center;
  position: relative; z-index: 1;
  box-shadow: 0 0 0 6px #fff;
}
.step-ic { width: 30px; height: 30px; margin: 0 auto 10px; color: var(--navy); }
.step-ic svg { width: 100%; height: 100%; }
.step-t { font-size: .76rem; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; color: var(--navy); margin-bottom: 8px; }
.step-p { font-size: .78rem; color: var(--gris); line-height: 1.6; margin: 0; max-width: 230px; margin-inline: auto; }
/* ligne de liaison horizontale (desktop) */
@media (min-width: 992px) {
  .steps-row { position: relative; }
  .steps-row::before {
    content: ''; position: absolute; top: 26px; left: 12%; right: 12%;
    height: 1.5px; background: var(--line);
  }
}

/* ═══════════════ BANDEAU CTA ═══════════════ */
.cta-band {
  background: var(--navy); border-radius: var(--radius);
  padding: clamp(24px, 4vw, 38px) clamp(24px, 4vw, 44px);
  display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap;
}
.cta-band-t {
  font-family: var(--fd); font-weight: 800; color: #fff;
  font-size: clamp(1.05rem, 2.4vw, 1.4rem); letter-spacing: .01em; text-transform: uppercase;
  display: flex; align-items: center; gap: 16px;
}
.cta-band-t svg { width: 34px; height: 34px; flex-shrink: 0; color: #fff; }

/* ═══════════════ ACCORDÉON FAQ ═══════════════ */
.faq-item { border: 1px solid var(--line); border-radius: 8px; background: #fff; margin-bottom: 12px; overflow: hidden; transition: border-color .25s, box-shadow .25s; }
.faq-item.open { border-color: rgba(200,16,46,.35); box-shadow: 0 8px 24px rgba(15,33,72,.07); }
.faq-trigger {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px;
  background: transparent; border: none; cursor: pointer; text-align: left;
  padding: 18px 22px;
  font-family: var(--fb); font-size: .92rem; font-weight: 600; color: var(--navy);
}
.faq-trigger .faq-plus {
  width: 26px; height: 26px; border-radius: 50%; flex-shrink: 0;
  border: 1.5px solid var(--line); color: var(--navy);
  display: flex; align-items: center; justify-content: center;
  transition: transform .3s, background .3s, color .3s, border-color .3s;
}
.faq-trigger .faq-plus svg { width: 12px; height: 12px; }
.faq-item.open .faq-plus { transform: rotate(45deg); background: var(--rouge); border-color: var(--rouge); color: #fff; }
.faq-body { max-height: 0; overflow: hidden; transition: max-height .4s cubic-bezier(.25,1,.5,1); }
.faq-body-inner { padding: 0 22px 20px; font-size: .87rem; color: var(--gris); line-height: 1.75; }

/* ═══════════════ FORMULAIRES ═══════════════ */
.form-field { margin-bottom: 14px; }
.form-label { display: block; font-size: .74rem; font-weight: 600; letter-spacing: .04em; margin-bottom: 6px; }
.form-input, .form-textarea {
  width: 100%; padding: 13px 16px;
  border: 1px solid var(--line); border-radius: 7px;
  font-family: var(--fb); font-size: .88rem; color: var(--ink);
  background: #fff; outline: none;
  transition: border-color .2s, box-shadow .2s;
}
.form-input:focus, .form-textarea:focus { border-color: var(--rouge); box-shadow: 0 0 0 3px rgba(200,16,46,.09); }
.form-textarea { min-height: 130px; resize: vertical; }
.form-consent { display: flex; align-items: flex-start; gap: 9px; font-size: .76rem; color: var(--gris); line-height: 1.5; margin: 14px 0 18px; }
.form-consent input { margin-top: 2px; accent-color: var(--rouge); }
.form-alert { border-radius: 8px; padding: 13px 17px; font-size: .85rem; font-weight: 500; margin-bottom: 16px; }
.form-alert.ok { background: rgba(22,101,52,.08); color: #166534; border: 1px solid rgba(22,101,52,.2); }
.form-alert.ko { background: rgba(200,16,46,.07); color: var(--rouge); border: 1px solid rgba(200,16,46,.2); }

/* ── Barre de recherche (centres) ── */
.searchbar { display: flex; gap: 0; max-width: 460px; width: 100%; margin-top: 24px; }
.searchbar input {
  flex: 1 1 auto; padding: 14px 18px; min-width: 0; width: 100%;
  border: 1px solid var(--line); border-right: none; border-radius: 6px 0 0 6px;
  font-family: var(--fb); font-size: .88rem; outline: none;
}
.searchbar button { flex-shrink: 0; }
.searchbar input:focus { border-color: var(--navy); }
.searchbar button {
  background: var(--rouge); color: #fff; border: none; cursor: pointer;
  font-size: .74rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
  padding: 0 24px; border-radius: 0 6px 6px 0;
  transition: background .2s;
}
.searchbar button:hover { background: var(--rouge-s); }

/* ═══════════════ FOOTER ═══════════════ */
.footer-main { background: var(--navy); color: #fff; position: relative; overflow: hidden; }
.footer-cols { padding-block: clamp(48px, 6vw, 72px); position: relative; z-index: 1; }
.footer-logo-img { height: 46px; width: auto; margin-bottom: 16px; display: block; filter: brightness(0) invert(1); }
.footer-tagline { font-family: var(--fd); font-size: .95rem; font-weight: 600; color: rgba(255,255,255,.85); line-height: 1.5; margin-bottom: 18px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 32px; height: 32px; border-radius: 50%;
  border: 1px solid var(--line-w);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.8); transition: background .2s, color .2s, border-color .2s;
}
.footer-social a:hover { background: var(--rouge); border-color: var(--rouge); color: #fff; }
.footer-col-title {
  display: block; font-size: .68rem; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase;
  color: #fff; margin-bottom: 16px;
}
.footer-links-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 9px; }
.footer-links-list a { font-size: .82rem; color: rgba(255,255,255,.62); transition: color .2s; }
.footer-links-list a:hover { color: #fff; }
.footer-bar { border-top: 1px solid var(--line-w); padding-block: 18px; position: relative; z-index: 1; }
.footer-bar-inner { display: flex; align-items: center; justify-content: space-between; gap: 12px; flex-wrap: wrap; font-size: .76rem; color: rgba(255,255,255,.55); }
.footer-bar-inner .heart { color: var(--rouge); }

/* ═══════════════ CARTE + PHOTOS EN CERCLE ═══════════════ */
.map-card { position: relative; }
.map-photo {
  position: absolute; border-radius: 50%; object-fit: cover;
  border: 4px solid #fff; box-shadow: 0 10px 26px rgba(15,33,72,.35);
  z-index: 2;
}
.map-photo.mp-1 { width: 98px;  height: 98px;  top: 10%;   right: 5%; }
.map-photo.mp-2 { width: 78px;  height: 78px;  bottom: 26%; right: 13%; }
.map-photo.mp-3 { width: 88px;  height: 88px;  bottom: 7%;  left: 7%; }
@media (max-width: 575px) {
  .map-photo.mp-1 { width: 72px; height: 72px; }
  .map-photo.mp-2 { width: 58px; height: 58px; }
  .map-photo.mp-3 { width: 64px; height: 64px; }
}

/* ═══════════════ DIVERS ═══════════════ */
.media-rounded { width: 100%; border-radius: var(--radius); object-fit: cover; display: block; }
.container { position: relative; }
@media (max-width: 767px) {
  /* Marges latérales confortables sur mobile (sections pas collées aux bords) */
  .container { padding-left: 20px; padding-right: 20px; }
  /* Coche des listes plus petite sur mobile */
  .check-badge { width: 16px; height: 16px; margin-top: 3px; }
  .check-list li { gap: 9px; font-size: .85rem; }
  /* Garde-fous anti-débordement : colonnes de grille rétrécissables, médias contenus */
  .p-hero-grid, .p-hero-grid > * { min-width: 0; }
  .searchbar { max-width: 100%; }
  .map-card, .map-card .map-img { max-width: 100%; }
}
img { max-width: 100%; }
@media (max-width: 575px) {
  #navbar .container { padding-left: 16px; padding-right: 16px; }
  /* Boutons compacts côte à côte (pas de pleine largeur empilée) */
  .hero-actions { gap: 8px; }
  .btn-red, .btn-outline, .btn-white, .btn-navy { padding: 10px 15px; font-size: .67rem; gap: 6px; }
  .btn-red svg, .btn-outline svg, .btn-white svg, .btn-navy svg { width: 12px; height: 12px; }
  .cta-band { flex-direction: column; align-items: flex-start; gap: 16px; }
  .searchbar { max-width: 100%; }
}
