/* ==========================================================================
   Lock & Gooo — 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;
  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: 56px; }
.nav__logo { display: block; width: 141px; height: 65px; }
.nav__logo img { width: 141px; height: 65px; }

.nav__menu { display: flex; align-items: center; gap: 28px; }
.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: 24px; }

.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; }

/* 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; }
.review-card__avatar {
  width: 36px; height: 36px;
  border-radius: var(--r-pill);
  background: var(--c-navy);
  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;
}

/* Pagination à points */
.dots { display: flex; align-items: center; justify-content: center; gap: 16px; }
.dots__item {
  width: 9px; height: 9px;
  border-radius: var(--r-pill);
  background: #101337;
  opacity: .35;
  transition: opacity var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.dots__item[aria-current="true"] {
  width: 16px; height: 16px;
  background: transparent;
  border: .73px solid var(--c-indigo-300);
  opacity: 1;
  position: relative;
}
.dots__item[aria-current="true"]::after {
  content: "";
  position: absolute;
  inset: 2px;
  border-radius: var(--r-pill);
  background: var(--c-primary);
}

/* --------------------------------------------------------------------------
   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; }

/* --------------------------------------------------------------------------
   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;
}
.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);
}

/* --------------------------------------------------------------------------
   Accordéon FAQ
   -------------------------------------------------------------------------- */
.faq-item {
  padding: 32px;
  background: var(--c-bg-ghost);
  border: 1px 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-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);
}
