/* ==========================================================================
   Stash & Go — Composants réutilisables
   Toutes les mesures proviennent de la maquette Figma (référence 1440px).
   ========================================================================== */

/* --------------------------------------------------------------------------
   Badge / eyebrow  (Figma « Frame 64 » — 32px de haut, pad 8/16, r100)
   -------------------------------------------------------------------------- */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  /* ⚠️ `inline-flex` ne suffit pas : le badge est lui-même un élément flex dans
     un conteneur en colonne, et l'`align-items: stretch` par défaut l'étirait
     sur toute la largeur (hero, « Comment ça marche », partenaires, avis,
     contact). `fit-content` le ramène à son contenu sans casser le centrage
     des blocs en `.section-head--center`, et se plafonne à la place
     disponible : pas de débordement sur petit écran. */
  width: fit-content;
  height: 32px;
  padding: 0 16px;
  border: .6px solid var(--c-border-soft);
  border-radius: var(--r-pill);
  background: rgba(129, 140, 248, .04);
  font-family: var(--f-body);
  font-size: var(--t-badge);
  line-height: var(--t-badge-lh);
  font-weight: 600;
  letter-spacing: .2px;
  color: var(--c-primary);
  white-space: nowrap;
}
.badge__dash { flex: 0 0 auto; width: 18px; height: 8px; }

/* Variante hero : fond blanc, padding horizontal plus large */
.badge--hero {
  padding: 0 22px;
  background: var(--c-white);
  border-color: transparent;
}
.badge--hero .badge__dash { width: 19px; height: 13px; }

/* Variante sur fond sombre / dégradé */
.badge--light {
  background: transparent;
  border-color: rgba(255, 255, 255, .6);
  color: var(--c-white);
}

/* --------------------------------------------------------------------------
   Boutons  (Figma composant « btn » — h44, pad 17/26, r38, gap 10)
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 44px;
  padding: 0 26px;
  border-radius: var(--r-btn);
  font-family: var(--f-display);
  font-size: 14px;
  line-height: 1;
  font-weight: 600;
  white-space: nowrap;
  cursor: pointer;
  position: relative;
  isolation: isolate;
  transition: transform var(--dur) var(--ease),
              box-shadow var(--dur) var(--ease),
              background-color var(--dur) var(--ease),
              color var(--dur) var(--ease);
}
.btn__icon {
  flex: 0 0 auto;
  width: 9px;
  height: 9px;
  transition: transform var(--dur) var(--ease-out);
}
.btn:hover .btn__icon { transform: translate(2px, -2px); }
.btn:active { transform: translateY(1px); }

/* Primaire — dégradé de marque */
.btn--primary {
  background: var(--grad-brand);
  color: var(--c-white);
  box-shadow: var(--sh-btn);
}
/* Voile clair au survol, sans casser le dégradé */
.btn--primary::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: inherit;
  background: linear-gradient(100deg, #232AA0 0%, #4E58F5 46.2%, #6B77F7 69.5%, #97A6FB 100%);
  opacity: 0;
  transition: opacity var(--dur) var(--ease);
}
.btn--primary:hover {
  box-shadow: 0 8px 24px rgba(68, 76, 237, .28);
  transform: translateY(-2px);
}
.btn--primary:hover::after { opacity: 1; }

/* Secondaire — contour bleu */
.btn--ghost {
  border: .75px solid var(--c-primary);
  color: var(--c-primary);
  font-weight: 500;
  box-shadow: var(--sh-btn-ghost);
}
.btn--ghost:hover {
  background: rgba(68, 76, 237, .06);
  transform: translateY(-2px);
}

/* Contour blanc — sur fond dégradé */
.btn--outline-light {
  border: .75px solid var(--c-white);
  color: var(--c-white);
  font-weight: 500;
  box-shadow: var(--sh-btn);
}
.btn--outline-light:hover { background: rgba(255, 255, 255, .14); transform: translateY(-2px); }

/* Plein blanc — carte tarifaire mise en avant */
.btn--light {
  background: var(--c-white);
  color: var(--c-primary);
  box-shadow: var(--sh-btn);
}
.btn--light:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0, 0, 0, .18); }

/* Tailles */
.btn--sm   { height: 40px; font-size: 12px; }
.btn--sm .btn__icon { width: 8px; height: 8px; }
.btn--map  { height: 45px; }
.btn--map .btn__icon { width: 11px; height: 11px; }
.btn--block { width: 100%; }

/* --------------------------------------------------------------------------
   Barre de navigation  (pilule flottante 1310 × 105, r100)
   -------------------------------------------------------------------------- */
/* Centrage par marges auto (et non par transform) : l'animation d'entrée
   utilise `transform`, les deux entreraient sinon en conflit. */
.site-header {
  position: fixed;
  top: 32px;
  left: 0;
  right: 0;
  margin-inline: auto;
  width: min(1310px, calc(100% - 130px));
  z-index: 100;
  transition: top var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.site-header.is-scrolled { top: 14px; }
.site-header.is-scrolled .nav { box-shadow: 0 6px 34px rgba(18, 26, 38, .1); }

.nav {
  display: flex;
  align-items: center;
  height: 105px;
  padding: 0 55px;
  background: var(--c-white);
  border-radius: var(--r-pill);
  box-shadow: var(--sh-nav);
  transition: box-shadow var(--dur) var(--ease);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: 100%;
}
.nav__start { display: flex; align-items: center; gap: 32px; } /* 56px avant la pilule téléphone du 2026-09-05 */
.nav__logo { display: block; width: 141px; height: 65px; }
.nav__logo img { width: 141px; height: 65px; }

.nav__menu { display: flex; align-items: center; gap: 22px; } /* 28px avant la pilule téléphone */
/* Le CTA Réserver du menu et le CTA sticky bas d'écran n'existent qu'en
   mobile (≤ 1180px, voir responsive.css) : le desktop garde le bouton du header. */
.nav__menu-cta { display: none; }
.cta-sticky { display: none; }
/* Desktop (2026-09-05) : le menu était centré en absolu sur l'axe de la barre,
   indépendamment du logo et des actions. Avec la pilule téléphone la barre est
   pleine : le menu se centre désormais dans l'espace RESTANT entre le logo et
   les actions (`margin-inline: auto`), ce qui utilise toute la place quelle que
   soit la langue (libellés DE/PL plus longs). Les écarts sont des minimums. */
@media (min-width: 1181px) {
  .nav__inner { gap: 16px; }
  .nav__start { flex: 1 1 auto; min-width: 0; }
  .nav__menu { margin-inline: auto; }
}
.nav__link {
  position: relative;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  font-family: var(--f-display);
  font-size: 16px;
  line-height: 20.8px;
  font-weight: 500;
  color: var(--c-ink);
  white-space: nowrap;
  transition: color var(--dur-fast) var(--ease);
}
.nav__link::after {
  content: "";
  width: 20px;
  height: 2px;
  border-radius: var(--r-pill);
  background: var(--c-indigo-300);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform var(--dur) var(--ease-out);
}
.nav__link:hover { color: var(--c-primary); }
.nav__link:hover::after { transform: scaleX(1); }
.nav__link[aria-current="page"] { color: var(--c-primary); font-weight: 700; }
.nav__link[aria-current="page"]::after { transform: scaleX(1); }

.nav__end { display: flex; align-items: center; gap: 16px; } /* 24px avant la pilule téléphone */

/* Numéro de téléphone (2026-09-05) : pilule cliquable `tel:` à gauche du
   sélecteur de langue, même gabarit que lui. La barre est pleine : le numéro
   en clair n'a sa place qu'à partir de 1440px ; en dessous la pilule se replie
   en icône seule (title = numéro), et ≤ 1180px le panneau du menu mobile
   reprend le numéro en clair (`.nav__menu-tel`, voir responsive.css). Les
   écarts de la barre ont été resserrés pour lui faire place (56→40, 28→22,
   24→16). */
.nav__tel {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  height: 36px;
  padding: 0 11px;
  border: .5px solid var(--c-border-lang);
  border-radius: var(--r-pill);
  box-shadow: 0 2px 4px rgba(0, 0, 0, .06), 0 4px 6px rgba(0, 0, 0, .07);
  font-family: var(--f-body);
  font-size: 12px;
  line-height: 16px;
  font-weight: 600;
  color: var(--c-ink);
  white-space: nowrap;
  transition: border-color var(--dur-fast) var(--ease), box-shadow var(--dur-fast) var(--ease);
}
.nav__tel:hover { border-color: var(--c-primary); color: var(--c-ink); }
.nav__tel img { width: 15px; height: 15px; flex: none; }
.nav__menu-tel { display: none; }

.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  height: 36px;
  padding: 0 13px;
  border: .5px solid var(--c-border-lang);
  border-radius: var(--r-pill);
  box-shadow: 0 2px 4px rgba(0, 0, 0, .06), 0 4px 6px rgba(0, 0, 0, .07);
  transition: border-color var(--dur-fast) var(--ease), box-shadow var(--dur-fast) var(--ease);
}
.lang-switch:hover { border-color: var(--c-primary); }
.lang-switch__value { display: inline-flex; align-items: center; gap: 6px; }
.lang-switch__code {
  font-family: var(--f-body);
  font-size: 12px;
  line-height: 16px;
  font-weight: 600;
  color: var(--c-ink);
}
.lang-switch__flag { width: 17px; height: 11px; }
.lang-switch__caret { width: 7px; height: 4px; transition: transform var(--dur-fast) var(--ease); }

/* « Gagnez avec Stash & Go » : bouton pilule du menu principal avec
   déroulant (même mécanique que le menu langue, gérée par main.js). */
.nav__gain { position: relative; }
.nav__gain-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 38px;
  padding: 0 18px;
  border: 1px solid var(--c-primary);
  border-radius: var(--r-pill);
  background: none;
  cursor: pointer;
  font-family: var(--f-body);
  font-size: 15px;
  font-weight: 600;
  color: var(--c-primary);
  white-space: nowrap;
  transition: border-color var(--dur-fast) var(--ease), color var(--dur-fast) var(--ease), background var(--dur-fast) var(--ease);
}
.nav__gain-btn:hover { background: var(--c-bg-ghost); }
.nav__gain.is-open .nav__gain-btn { background: var(--c-bg-ghost); }
.nav__gain-caret { width: 10px; height: auto; transition: transform var(--dur-fast) var(--ease); }
.nav__gain.is-open .nav__gain-caret { transform: rotate(180deg); }
.nav__gain-panel {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  z-index: 60;
  min-width: 210px;
  padding: 8px;
  background: var(--c-white);
  border: .5px solid var(--c-border-lang);
  border-radius: 16px;
  box-shadow: 0 12px 32px rgba(18, 26, 38, .14);
}
.nav__gain-item {
  display: block;
  padding: 10px 12px;
  border-radius: 10px;
  font-family: var(--f-body);
  font-size: 14px;
  font-weight: 500;
  color: var(--c-ink);
  text-decoration: none;
}
.nav__gain-item:hover { background: var(--c-bg-ghost); color: var(--c-primary); }

/* Menu déroulant langue + devise, ancré au bouton .lang-switch */
.lang-menu { position: relative; }
.lang-menu.is-open .lang-switch { border-color: var(--c-primary); }
.lang-menu.is-open .lang-switch__caret { transform: rotate(180deg); }
.lang-menu__panel {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  z-index: 60;
  min-width: 190px;
  padding: 12px;
  background: var(--c-white);
  border: .5px solid var(--c-border-lang);
  border-radius: 16px;
  box-shadow: 0 12px 32px rgba(18, 26, 38, .14);
}
.lang-menu__titre {
  margin: 0 0 6px;
  padding: 0 8px;
  font-family: var(--f-display);
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--c-indigo-300);
}
.lang-menu__item {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 8px;
  border: 0;
  border-radius: 10px;
  background: none;
  font-family: var(--f-body);
  font-size: 13px;
  font-weight: 500;
  color: var(--c-ink);
  text-decoration: none;
  cursor: pointer;
  text-align: left;
}
.lang-menu__item:hover { background: var(--c-bg-ghost); }
.lang-menu__item.is-active { background: var(--c-bg-ghost); font-weight: 700; color: var(--c-primary); }
.lang-menu__item b {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  font-size: 12px;
  font-weight: 700;
}
.lang-menu__item img { border-radius: 2px; }
.lang-menu__rule { margin: 10px 0; border: 0; border-top: 1px solid var(--c-border-lang); }

/* Bouton hamburger — mobile uniquement */
.nav__burger {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: var(--r-pill);
  border: .75px solid var(--c-border-lang);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}
.nav__burger span {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 2px;
  background: var(--c-ink);
  transition: transform var(--dur) var(--ease), opacity var(--dur-fast) var(--ease);
}
.nav__burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* --------------------------------------------------------------------------
   Liste à puces vérifiées (cartes tarifaires)
   -------------------------------------------------------------------------- */
.check-list { display: flex; flex-direction: column; gap: 12px; }
.check-list__item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--f-body);
  font-size: 14px;
  line-height: 18.2px;
  font-weight: 500;
  color: var(--c-ink-2);
}
.check-list__mark {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  border: .94px solid var(--c-success);
  border-radius: 85px;
}
.check-list__mark img { width: 6px; height: 4px; }

/* --------------------------------------------------------------------------
   Carte « étape » (Comment ça marche) — 282 × 362
   -------------------------------------------------------------------------- */
.step-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  gap: 40px;
  min-height: 362px;
  padding: 20px;
  background: var(--c-bg-ghost);
  border-radius: var(--r-26);
  transition: transform var(--dur) var(--ease-out), box-shadow var(--dur) var(--ease);
}
.step-card:hover { transform: translateY(-6px); box-shadow: var(--sh-contact); }
.step-card__media {
  width: 170px;
  height: 170px;
  border-radius: 50%;
  overflow: hidden;
  border: .75px solid var(--c-border-3);
  background: var(--c-white);
}
.step-card__media img { width: 170px; height: 170px; object-fit: cover; }
.step-card__body { display: flex; flex-direction: column; gap: 8px; width: 100%; }
.step-card__title {
  font-family: var(--f-display);
  font-size: 17px;
  line-height: 21.2px;
  font-weight: 700;
  color: var(--c-ink);
}
.step-card__text {
  font-family: var(--f-body);
  font-size: 14px;
  line-height: 21px;
  color: var(--c-body);
}

/* --------------------------------------------------------------------------
   Accordéon « À propos » — lignes dépliables
   -------------------------------------------------------------------------- */
/* Figma : 24px avant le filet, filet de 1px, 24px après */
.reveal-list { display: flex; flex-direction: column; }
.reveal-list__item + .reveal-list__item {
  margin-top: 24px;
  border-top: 1px solid var(--c-rule);
}

.reveal-list__trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 7px;
  width: 100%;
  padding: 24px 0 0;
  text-align: left;
}
.reveal-list__item:first-child .reveal-list__trigger { padding-top: 0; }
.reveal-list__label { display: flex; align-items: center; gap: 10px; }
.reveal-list__bullet {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: var(--r-pill);
  background: var(--c-indigo-300);
  transition: background-color var(--dur) var(--ease), transform var(--dur) var(--ease-out);
}
.reveal-list__bullet::after {
  content: "";
  width: 14px;
  height: 14px;
  border-radius: var(--r-pill);
  background: var(--c-white);
  transition: transform var(--dur) var(--ease-out);
}
.reveal-list__title {
  font-family: var(--f-body);
  font-size: 16px;
  line-height: 20.8px;
  font-weight: 600;
  color: var(--c-body);
  transition: color var(--dur) var(--ease);
}
.reveal-list__caret {
  width: 11px;
  height: 7px;
  transition: transform var(--dur) var(--ease-out);
}
.reveal-list__trigger[aria-expanded="true"] .reveal-list__title { color: var(--c-primary); }
.reveal-list__trigger[aria-expanded="true"] .reveal-list__caret { transform: rotate(180deg); }
.reveal-list__trigger[aria-expanded="true"] .reveal-list__bullet { transform: scale(1.06); }
.reveal-list__trigger:hover .reveal-list__title { color: var(--c-primary); }

.reveal-list__panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows var(--dur-slow) var(--ease-out);
}
.reveal-list__panel > div { overflow: hidden; }
.reveal-list__item.is-open .reveal-list__panel { grid-template-rows: 1fr; }

.reveal-list__text {
  padding-top: 14px;
  font-family: var(--f-body);
  font-size: 14px;
  line-height: 22.4px;
  color: var(--c-body-2);
}

/* Encart info (disponibilité / horaires) */
.info-box {
  display: flex;
  gap: 16px;
  margin-top: 13px;
  padding: 14px;
  background: var(--c-bg-card);
  border: .5px solid var(--c-border-2);
  border-radius: var(--r-14);
}
.info-box__col { display: flex; flex-direction: column; gap: 4px; }
.info-box__col:first-child { flex: 1 1 378px; }
.info-box dt,
.info-box dd {
  font-family: var(--f-body);
  font-size: 12px;
  line-height: 19.2px;
  color: var(--c-body-2);
  margin: 0;
}
.info-box dt { font-weight: 600; }

/* --------------------------------------------------------------------------
   Carte tarifaire — 282 × 384
   -------------------------------------------------------------------------- */
.price-card {
  display: flex;
  flex-direction: column;
  height: 384px; /* hauteur fixe dans Figma */
  padding: 8px;
  background: var(--c-white);
  border-radius: var(--r-26);
  transition: transform var(--dur) var(--ease-out), box-shadow var(--dur) var(--ease);
}
.price-card:hover { transform: translateY(-6px); }
.price-card__top {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 16px;
  background: var(--c-bg-ghost-4);
  border: .75px solid var(--c-border-price);
  border-radius: var(--r-20);
}
.price-card__head { display: flex; flex-direction: column; gap: 4px; }
.price-card__name {
  font-family: var(--f-display);
  font-size: var(--t-card-t);
  line-height: var(--t-card-t-lh);
  font-weight: 800;
  color: var(--c-ink);
}
.price-card__tag {
  font-family: var(--f-body);
  font-size: 12px;
  line-height: 15px;
  color: var(--c-ink);
}
.price-card__pricing { display: flex; flex-direction: column; gap: 14px; }
.price-card__amount { display: flex; align-items: flex-end; gap: 4px; }
.price-card__from {
  font-family: var(--f-body);
  font-size: 12px;
  line-height: 16px;
  color: var(--c-body);
  padding-bottom: 4px;
}
.price-card__value {
  font-family: var(--f-body);
  font-size: var(--t-price);
  line-height: 1;
  font-weight: 900;
  color: var(--c-primary);
}
.price-card__currency { font-size: 18px; }
.price-card__unit {
  font-family: var(--f-body);
  font-size: 14px;
  line-height: 20px;
  color: var(--c-body);
  padding-bottom: 3px;
}
.price-card__desc {
  font-family: var(--f-body);
  font-size: 12px;
  line-height: 15.6px;
  color: var(--c-ink-2);
}
.price-card__features { padding: 10px; }

/* Variante mise en avant */
.price-card--featured { box-shadow: var(--sh-card); }
.price-card--featured .price-card__top {
  background: var(--grad-brand-price);
  border-color: transparent;
}
.price-card--featured .price-card__name,
.price-card--featured .price-card__tag,
.price-card--featured .price-card__from,
.price-card--featured .price-card__value,
.price-card--featured .price-card__unit,
.price-card--featured .price-card__desc { color: var(--c-white); }

/* --------------------------------------------------------------------------
   Tableau comparatif des tarifs
   -------------------------------------------------------------------------- */
.price-table { border-radius: var(--r-16); overflow: hidden; }
.price-table th,
.price-table td {
  padding: 18px 32px;
  font-family: var(--f-body);
  font-size: 16px;
  line-height: 20px;
  text-align: center;
}
.price-table thead th {
  padding: 18px 32px;
  background: var(--c-primary);
  color: var(--c-white);
  font-family: var(--f-display);
  font-weight: 700;
}
.price-table th:first-child,
.price-table td:first-child { text-align: left; }
.price-table tbody tr { background: var(--c-white); }
.price-table tbody tr + tr { border-top: 1px solid var(--c-border-6); }
.price-table tbody td:first-child { color: var(--c-ink); font-weight: 400; }
.price-table tbody td:nth-child(2) { color: var(--c-ink); font-weight: 500; }
.price-table tbody td:last-child { color: var(--c-primary); font-weight: 700; }
.price-table__wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }

/* --------------------------------------------------------------------------
   Carte « point de dépôt » — 379 × 512
   -------------------------------------------------------------------------- */
.spot-card {
  display: flex;
  flex-direction: column;
  gap: 32px;
  height: 512px; /* hauteur fixe dans Figma */
  padding: 24px;
  background: var(--c-white);
  border-radius: var(--r-38);
  transition: transform var(--dur) var(--ease-out), box-shadow var(--dur) var(--ease);
}
.spot-card:hover { transform: translateY(-6px); box-shadow: var(--sh-contact); }
.spot-card__head { display: flex; flex-direction: column; gap: 16px; }
.spot-card__title {
  font-family: var(--f-display);
  font-size: 20px;
  line-height: 26px;
  font-weight: 700;
  color: var(--c-body-3);
}
.spot-card__address {
  font-family: var(--f-body);
  font-size: 16px;
  line-height: 24px;
  color: var(--c-body-4);
}
.spot-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 9px;
  max-width: 296px;
}
.spot-card__meta span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--f-body);
  font-size: 14px;
  line-height: 21px;
  font-weight: 500;
  color: var(--c-indigo-500);
}
.spot-card__meta img { width: auto; height: 14px; }
.spot-card__media { position: relative; display: flex; flex-direction: column; align-items: center; }
.spot-card__map {
  width: 100%;
  height: 294px;
  object-fit: cover;
  border: .75px solid var(--c-border-7);
  border-radius: var(--r-28);
}
.spot-card__media .btn { margin-top: -23px; }

/* --------------------------------------------------------------------------
   Carte « activité » — 282 × 420, image + voile sombre
   -------------------------------------------------------------------------- */
.activity-card {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  height: 420px;
  padding: 18px;
  border-radius: var(--r-32);
  overflow: hidden;
  isolation: isolate;
}
.activity-card > picture { position: absolute; inset: 0; }
.activity-card__img {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--dur-slow) var(--ease-out);
}
.activity-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: var(--grad-overlay-dark);
}
.activity-card:hover .activity-card__img { transform: scale(1.06); }
.activity-card__body {
  position: relative;
  z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 8px; text-align: center;
}
.activity-card__title {
  font-family: var(--f-display);
  font-size: 18px;
  line-height: 22.5px;
  font-weight: 800;
  color: var(--c-white);
}
.activity-card__text {
  font-family: var(--f-body);
  font-size: 14px;
  line-height: 21px;
  color: var(--c-white);
}

/* --------------------------------------------------------------------------
   Carte avis — 384 × 194
   -------------------------------------------------------------------------- */
.review-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 24px;
  height: 194px; /* hauteur fixe dans Figma */
  padding: 22px;
  background: var(--c-white);
  border: .75px solid var(--c-border);
  border-radius: var(--r-28);
  transition: transform var(--dur) var(--ease-out), box-shadow var(--dur) var(--ease);
}
.review-card:hover { transform: translateY(-4px); box-shadow: var(--sh-contact); }
.review-card__top { display: flex; flex-direction: column; gap: 12px; }
.review-card__stars { width: 103px; height: 15px; }
.review-card__text {
  font-family: var(--f-body);
  font-size: 14px;
  line-height: 21px;
  color: var(--c-body);
}
.review-card__foot { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.review-card__author { display: flex; align-items: center; gap: 8px; }
/* Pastille aux initiales de l'auteur : un disque vide donnait une section
   inachevée. Reste `aria-hidden` — le nom est juste à côté. */
.review-card__avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 36px; height: 36px;
  border-radius: var(--r-pill);
  background: var(--c-navy);
  color: var(--c-white);
  font-family: var(--f-display);
  font-size: 13px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: .4px;
  object-fit: cover;
}
.review-card__name {
  font-family: var(--f-display);
  font-size: 12px;
  line-height: 12px;
  font-weight: 700;
  color: var(--c-ink);
}
.review-card__role {
  font-family: var(--f-body);
  font-size: 10px;
  line-height: 10px;
  color: var(--c-caption);
  margin-top: 6px;
}
.review-card__source { width: 26px; height: 26px; }

/* Note Google */
.rating-pill {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 8px 26px 8px 8px;
  background: var(--c-white);
  border: .75px solid var(--c-border);
  border-radius: 107px;
  transition: box-shadow var(--dur) var(--ease);
}
.rating-pill:hover { box-shadow: var(--sh-contact); }
.rating-pill__logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px; height: 46px;
  border: .45px solid #EFEFEF;
  border-radius: 90px;
}
.rating-pill__logo img { width: 29px; height: 29px; }
.rating-pill__score {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--f-display);
  font-size: 16px;
  line-height: 19.2px;
  font-weight: 700;
  color: var(--c-review-name);
}
.rating-pill__score img { width: 15px; height: 14px; }
.rating-pill__count {
  font-family: var(--f-body);
  font-size: 12px;
  line-height: 19.2px;
  color: var(--c-review-name);
  margin-top: 2px;
}

/* Flèches précédent/suivant du carrousel d'avis */
.reviews__nav { display: flex; align-items: center; justify-content: center; gap: 16px; }
.reviews__arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  background: var(--c-white);
  border: .75px solid var(--c-border);
  border-radius: var(--r-pill);
  color: var(--c-ink);
  cursor: pointer;
  transition: background-color var(--dur) var(--ease),
              border-color var(--dur) var(--ease),
              color var(--dur) var(--ease),
              transform var(--dur) var(--ease-out);
}
.reviews__arrow:hover:not(:disabled) {
  background: var(--c-primary);
  border-color: var(--c-primary);
  color: var(--c-white);
  transform: translateY(-2px);
}
.reviews__arrow:active:not(:disabled) { transform: translateY(0); }
.reviews__arrow:disabled { opacity: .35; cursor: default; }

/* --------------------------------------------------------------------------
   Carte vidéo — 282 × 501
   -------------------------------------------------------------------------- */
.video-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 501px;
  padding: 18px;
  border-radius: var(--r-30);
  overflow: hidden;
  isolation: isolate;
  text-align: left;
  width: 100%;
}
.video-card > picture { position: absolute; inset: 0; }
.video-card__img {
  position: absolute; inset: 0; z-index: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform var(--dur-slow) var(--ease-out);
}
.video-card::after {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background: var(--grad-overlay-blue);
}
.video-card:hover .video-card__img { transform: scale(1.05); }
.video-card__body { position: relative; z-index: 2; }
.video-card__logo {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: flex-start;
  padding: 6px 20px;
  background: var(--c-white);
  border-radius: var(--r-pill);
}
.video-card__logo img { width: 52px; height: 24px; }
.video-card__body { display: flex; flex-direction: column; gap: 18px; }
.video-card__heading { display: flex; flex-direction: column; gap: 12px; }
.video-card__dashes { width: 33px; height: 4px; }
.video-card__eyebrow {
  font-family: var(--f-body);
  font-size: 12px;
  line-height: 18px;
  font-weight: 600;
  color: var(--c-white);
}
.video-card__title {
  font-family: var(--f-display);
  font-size: 20px;
  line-height: 26px;
  font-weight: 800;
  color: var(--c-white);
}
.video-card__play {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  align-self: flex-start;
  padding: 7px 17px;
  background: rgba(255, 255, 255, .1);
  backdrop-filter: blur(9px);
  -webkit-backdrop-filter: blur(9px);
  border-radius: var(--r-pill);
  font-family: var(--f-display);
  font-size: 12px;
  line-height: 15px;
  font-weight: 700;
  color: var(--c-white);
  transition: background-color var(--dur) var(--ease);
}
.video-card:hover .video-card__play { background: rgba(255, 255, 255, .24); }
.video-card__play img { width: 8px; height: 8px; }

/* Pastilles réseaux sociaux */
.social-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  width: 272px;
  height: 58px;
  background: var(--c-white);
  border: .75px solid rgba(68, 76, 237, .25);
  border-radius: 69px;
  font-family: var(--f-body);
  font-size: 18px;
  line-height: 23.4px;
  color: var(--c-ink);
  transition: transform var(--dur) var(--ease-out), box-shadow var(--dur) var(--ease);
}
.social-pill:hover { transform: translateY(-3px); box-shadow: var(--sh-contact); }
.social-pill img { width: 34px; height: 34px; }

/* --------------------------------------------------------------------------
   Bouton WhatsApp flottant
   Sous l'en-tête (z-index 100) et sous la modale vidéo (200) : il ne doit
   jamais passer par-dessus une navigation ouverte.
   -------------------------------------------------------------------------- */
.wa-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 90;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px; height: 56px;
  background: #25d366;                    /* vert de marque WhatsApp */
  border-radius: var(--r-pill);
  box-shadow: 0 10px 28px rgba(37, 211, 102, .38);
  transition: transform var(--dur) var(--ease-out), box-shadow var(--dur) var(--ease);
}
.wa-float img { width: 28px; height: 28px; }
.wa-float:hover { transform: translateY(-3px); box-shadow: 0 14px 34px rgba(37, 211, 102, .5); }
.wa-float:focus-visible { outline: 3px solid var(--c-primary); outline-offset: 3px; }

/* --------------------------------------------------------------------------
   Formulaire de contact
   -------------------------------------------------------------------------- */
.field { display: flex; flex-direction: column; gap: 10px; }
.field__label {
  font-family: var(--f-display);
  font-size: 14px;
  line-height: 16.8px;
  font-weight: 500;
  color: var(--c-label);
}
.field__control {
  width: 100%;
  height: 44px;
  padding: 0 17px;
  background: var(--c-white);
  border: .5px solid var(--c-border-4);
  border-radius: var(--r-pill);
  font-family: var(--f-body);
  font-size: 14px;
  line-height: 16.8px;
  color: var(--c-body);
  transition: border-color var(--dur-fast) var(--ease), box-shadow var(--dur-fast) var(--ease);
}
textarea.field__control {
  height: 44px;
  min-height: 44px;
  padding: 13px 17px;
  resize: vertical;
}
/* Grand champ de description (candidature des locaux partenaires) : la
   hauteur pilule globale est levée, coins adoucis plutôt que pleine pilule. */
textarea.field__control--haut {
  height: auto;
  min-height: 230px;
  border-radius: 24px;
}
.field__control::placeholder { color: var(--c-body); opacity: .6; }
.field__control:focus {
  outline: none;
  border-color: var(--c-primary);
  box-shadow: 0 0 0 3px rgba(68, 76, 237, .12);
}

.form-status {
  font-family: var(--f-body);
  font-size: 14px;
  line-height: 22.4px;
  color: var(--c-primary);
}
/* Le message vide ne doit pas réserver de hauteur : la maquette n'en prévoit
   pas et le bloc pousserait la carte de contact vers le bas. */
.form-status:empty { display: none; }

/* Confirmation et erreur : un encart, pas une ligne de texte colorée.
   Une candidature envoyée est un aboutissement — au bout d'un formulaire en
   deux étapes, une phrase verte de 14 px passait inaperçue, surtout que le
   formulaire se réinitialise juste avant. Le filet gauche de 6 px reprend
   celui des accordéons, et la pastille porte la coche ou le point
   d'exclamation en SVG inline (aucun fichier à charger).
   Partagé par le formulaire de contact, la candidature de local et
   l'espace client — tout ce qui passe par .form-status. */
/* Le texte reste en encre pleine : la couleur d'état vit sur le filet et la
   pastille. Du #22C55E sur blanc ne passe pas AA pour du texte de 14 px. */
.form-status--ok,
.form-status--erreur {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px 20px;
  border-radius: 4px 18px 18px 4px;
  border-left: 6px solid var(--etat, var(--c-primary));
  background: var(--etat-fond, transparent);
  color: var(--c-ink);
  font-size: var(--t-body);
  line-height: 22px;
  font-weight: 500;
}
.form-status--ok::before,
.form-status--erreur::before {
  content: "";
  flex: 0 0 auto;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--etat) center / 12px 12px no-repeat;
}
.form-status--ok {
  --etat: var(--c-success);
  --etat-fond: rgba(34, 197, 94, .09);
}
.form-status--ok::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' fill='none'%3E%3Cpath d='M1.5 6.3 4.4 9.2 10.5 3' stroke='%23fff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}
.form-status--erreur {
  --etat: var(--c-error);
  --etat-fond: rgba(220, 38, 38, .07);
}
.form-status--erreur::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' fill='none'%3E%3Cpath d='M6 2.6v4' stroke='%23fff' stroke-width='2' stroke-linecap='round'/%3E%3Ccircle cx='6' cy='9' r='1.1' fill='%23fff'/%3E%3C/svg%3E");
}

.field__error {
  font-family: var(--f-body);
  font-size: 13px;
  line-height: 18px;
  color: var(--c-error);
}
.field__control[aria-invalid="true"] {
  border-color: var(--c-error);
}
.field__control[aria-invalid="true"]:focus {
  box-shadow: 0 0 0 3px rgba(220, 38, 38, .14);
}
.contact__submit[disabled] { opacity: .6; cursor: progress; }

/* --------------------------------------------------------------------------
   Modale vidéo
   -------------------------------------------------------------------------- */
body.has-modal { overflow: hidden; }

.modal-video {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(18, 26, 38, .72);
}
.modal-video[hidden] { display: none; }

.modal-video__box {
  width: min(880px, 100%);
  max-height: calc(100vh - 48px);
  overflow: auto;
  padding: 20px;
  background: var(--c-white);
  border-radius: var(--r-24);
  box-shadow: 0 24px 64px rgba(18, 26, 38, .32);
}
.modal-video__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
}
.modal-video__title {
  font-family: var(--f-display);
  font-size: 20px;
  line-height: 26px;
  font-weight: 700;
  color: var(--c-ink);
}
.modal-video__close {
  flex: 0 0 auto;
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  font-size: 24px;
  line-height: 1;
  color: var(--c-ink);
  background: var(--c-bg-ghost);
  border: 1px solid var(--c-border);
  border-radius: 50%;
  cursor: pointer;
  transition: background var(--dur-fast) var(--ease);
}
.modal-video__close:hover { background: var(--c-border); }

.modal-video__player {
  width: 100%;
  aspect-ratio: 9 / 16;
  max-height: min(70vh, 620px);
  background: #000;
  border-radius: var(--r-16);
}
.modal-video__fallback {
  padding: 32px 8px;
  text-align: center;
  font-family: var(--f-body);
  font-size: 15px;
  line-height: 24px;
  color: var(--c-body);
}

/* --------------------------------------------------------------------------
   Accordéon FAQ
   -------------------------------------------------------------------------- */
/* Figma : le contour n'existe que sur le bord gauche (individualStrokeWeights
   left 6, les trois autres à 0) — d'où les coins gauches à 4 px, qui font lire
   le trait comme un onglet. Le padding gauche est réduit d'autant : la bordure
   est INSIDE dans Figma, le contenu reste donc à 32 px du bord. */
.faq-item {
  padding: 32px 32px 32px 26px;
  background: var(--c-bg-ghost);
  border: 0;
  border-left: 6px solid rgba(68, 76, 237, .25);
  border-radius: 4px 18px 18px 4px;
  box-shadow: var(--sh-accordion);
  transition: background-color var(--dur) var(--ease),
              border-color var(--dur) var(--ease),
              box-shadow var(--dur) var(--ease);
}
.faq-item.is-open {
  background: rgba(129, 140, 248, .14);
  border-left-color: var(--c-primary);
  box-shadow: var(--sh-accordion-open);
}
.faq-item__trigger {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  text-align: left;
}
.faq-item__icon {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: var(--r-pill);
  transition: transform var(--dur) var(--ease-out);
}
.faq-item__icon img { width: 12px; height: 6px; }
.faq-item.is-open .faq-item__icon { transform: rotate(180deg); }
.faq-item__question {
  font-family: var(--f-display);
  font-size: var(--t-accordion);
  line-height: var(--t-accordion-lh);
  font-weight: 600;
  color: var(--c-ink);
  transition: color var(--dur) var(--ease);
}
.faq-item.is-open .faq-item__question { color: var(--c-primary); }

.faq-item__panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows var(--dur-slow) var(--ease-out);
}
.faq-item__panel > div { overflow: hidden; }
.faq-item.is-open .faq-item__panel { grid-template-rows: 1fr; }
.faq-item__answer {
  padding: 24px 0 0 44px;
  font-family: var(--f-body);
  font-size: 15px;
  line-height: 24px;
  color: var(--c-faq-text);
}

/* ==========================================================================
   PIED DE PAGE — composant partagé
   ⚠️ Déplacé de `sections.css` le 2026-08-05 : seule la page d'accueil charge
   `sections.css`, si bien que le pied de page des pages secondaires
   (/mon-espace/, pages légales, tunnel) n'avait AUCUN style — fond navy absent,
   texte blanc sur blanc, décors en position statique gonflant la page de 970px.
   Il vit ici parce que `components.css` est chargé par les cinq pages.
   ========================================================================== */
.site-footer {
  position: relative;
  margin-top: var(--section-gap);
  padding: 80px 0;
  background: var(--c-navy);
  color: var(--c-white);
  overflow: hidden;
  isolation: isolate;
}
.site-footer__lines {
  position: absolute;
  top: 357px; left: 858px;
  width: 676px;
  z-index: -1;
  opacity: .5;
  pointer-events: none;
}
.site-footer__glow {
  position: absolute;
  top: 198px; left: 1075px;
  width: 468px;
  z-index: -1;
  pointer-events: none;
}
.site-footer__inner { display: flex; flex-direction: column; gap: 65px; position: relative; }

.footer__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 106px;
  /* Hauteur de la maquette, mais en plancher : dès que les colonnes se
     resserrent (≤1180px), le contenu dépasse et repoussait le grand logo
     par-dessus les liens au lieu de l'écarter. */
  min-height: 414px;
}
.footer__brand {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  width: 468px;
  flex: 0 0 auto;
}
.footer__brand > div { display: flex; flex-direction: column; gap: 37px; }
.footer__slogan {
  font-size: var(--t-footer-h);
  line-height: var(--t-footer-h-lh);
  font-weight: 800;
  letter-spacing: .2px;
  color: var(--c-white);
}
.footer__dashes { width: 228px; height: auto; }
.footer__contact { display: flex; flex-direction: column; gap: 16px; }
.footer__heading {
  font-family: var(--f-display);
  font-size: 18px;
  line-height: 22.5px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--c-indigo-200);
}
.footer__contact-list { display: flex; flex-direction: column; gap: 20px; }
.footer__contact-list a {
  font-family: var(--f-body);
  font-size: 32px;
  line-height: 22px; /* Figma : 42px entre les deux lignes (22 + gap 20) */
  font-weight: 500;
  color: var(--c-white);
  transition: color var(--dur-fast) var(--ease);
}
.footer__contact-list a:hover { color: var(--c-indigo-200); }

.footer__nav { display: flex; flex-direction: column; gap: 56px; width: 255px; flex: 0 0 auto; }
.footer__nav-group { display: flex; flex-direction: column; gap: 16px; }
.footer__chips { display: flex; flex-direction: column; align-items: flex-start; gap: 10px; }
.footer__chip {
  display: inline-flex;
  align-items: center;
  height: 40px;
  padding: 0 18px;
  border: .75px solid rgba(255, 255, 255, .25);
  border-radius: var(--r-pill);
  font-family: var(--f-body);
  font-size: 20px;
  line-height: 32px;
  font-weight: 600;
  color: var(--c-white);
  white-space: nowrap;
  transition: background-color var(--dur) var(--ease), border-color var(--dur) var(--ease), transform var(--dur) var(--ease-out);
}
.footer__chip:hover {
  background: rgba(255, 255, 255, .1);
  border-color: rgba(255, 255, 255, .6);
  transform: translateX(4px);
}

.footer__social { display: flex; align-items: center; gap: 24px; flex: 0 0 auto; }
.footer__social .footer__heading { white-space: nowrap; }
.footer__social-links { display: flex; align-items: center; gap: 4px; }
.footer__social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 39px; height: 39px;
  background: var(--c-navy-900);
  border-radius: 126px;
  transition: transform var(--dur) var(--ease-out), background-color var(--dur) var(--ease);
}
.footer__social-links a:hover { transform: translateY(-3px); background: var(--c-primary); }
.footer__social-links img { width: auto; height: 20px; }

.footer__bottom { position: relative; }
.footer__logo { width: 469px; height: auto; }
.footer__card {
  position: absolute;
  right: 0; bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 21px;
  width: 281px;
  padding: 24px;
  background: rgba(255, 255, 255, .96);
  backdrop-filter: blur(13px);
  -webkit-backdrop-filter: blur(13px);
  border-radius: var(--r-34);
  box-shadow: var(--sh-footer-card);
}
.footer__card dl { display: flex; flex-direction: column; gap: 5px; margin: 0; }
.footer__card dt,
.footer__card dd {
  margin: 0;
  font-family: var(--f-body);
  font-size: 14px;
  line-height: 22.4px;
  color: var(--c-body-3);
}
.footer__card dt { font-weight: 600; }
.footer__card hr { width: 100%; height: 1px; border: 0; background: rgba(48, 56, 69, .16); margin: 0; }

.footer__legal {
  margin-top: 48px;
  padding-top: 24px;
  border-top: .75px solid rgba(255, 255, 255, .16);
  font-family: var(--f-body);
  font-size: 14px;
  line-height: 22.4px;
  color: rgba(255, 255, 255, .7);
  text-align: center;
}
