/* ============================================================
   LanguageSwitcher — style premium, thème clair navy/or.
   ============================================================ */
._root_li64f_4 {
  position: relative;
  display: inline-block;
}

._trigger_li64f_9 {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.42rem 0.6rem;
  border-radius: var(--r-pill);
  border: 1px solid var(--border-2);
  background: rgba(255, 255, 255, 0.9);
  color: var(--ink);
  font-family: inherit;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  cursor: pointer;
  backdrop-filter: blur(8px);
  transition: border-color var(--dur-fast) var(--ease-out), box-shadow var(--dur-fast) var(--ease-out),
    background var(--dur-fast) var(--ease-out), transform var(--dur-fast) var(--ease-out);
}
._trigger_li64f_9:hover {
  border-color: var(--gold);
  box-shadow: 0 4px 14px rgba(15, 42, 75, 0.1);
}
._trigger_li64f_9:active {
  transform: translateY(1px);
}
._code_li64f_34 {
  color: var(--ink-2);
}
._chev_li64f_37 {
  display: grid;
  place-items: center;
  color: var(--muted);
  transform: rotate(90deg);
  transition: transform var(--dur-mid) var(--ease-out);
}
._chevOpen_li64f_44 {
  transform: rotate(-90deg);
}

/* ---- Menu déroulant ---- */
._menu_li64f_49 {
  position: absolute;
  top: calc(100% + 0.55rem);
  right: 0;
  min-width: 190px;
  padding: 0.4rem;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  box-shadow: 0 24px 50px -16px rgba(15, 42, 75, 0.32), 0 0 0 1px rgba(15, 42, 75, 0.04);
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px) scale(0.98);
  transform-origin: top right;
  transition: opacity var(--dur-mid) var(--ease-out), transform var(--dur-mid) var(--ease-out),
    visibility var(--dur-mid);
  z-index: 60;
}
._menuOpen_li64f_70 {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

/* RTL : le menu s'aligne à gauche */
[dir='rtl'] ._menu_li64f_49 {
  right: auto;
  left: 0;
  transform-origin: top left;
}

._item_li64f_83 {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  width: 100%;
  padding: 0.55rem 0.65rem;
  border: 0;
  border-radius: var(--r-sm, 8px);
  background: transparent;
  color: var(--ink);
  font-family: inherit;
  font-size: 0.94rem;
  font-weight: 600;
  text-align: start;
  cursor: pointer;
  transition: background var(--dur-fast) var(--ease-out), color var(--dur-fast) var(--ease-out);
}
._item_li64f_83:hover {
  background: var(--blue-50);
}
._itemActive_li64f_103 {
  background: var(--gold-soft);
  color: var(--gold-2);
}
._itemLabel_li64f_107 {
  flex: 1;
}
._check_li64f_110 {
  display: grid;
  place-items: center;
  color: var(--gold-2);
}

/* ---- Compact (mobile) ---- */
._compact_li64f_117 ._trigger_li64f_9 {
  padding: 0.4rem 0.5rem;
  gap: 0.35rem;
}
._nav_mfick_1 {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: var(--z-nav);
  transition: background var(--dur-mid) var(--ease-out), box-shadow var(--dur-mid) var(--ease-out),
    border-color var(--dur-mid) var(--ease-out);
  border-bottom: 1px solid transparent;
}
._solid_mfick_11 {
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(16px) saturate(1.2);
  -webkit-backdrop-filter: blur(16px) saturate(1.2);
  border-bottom-color: var(--border);
  box-shadow: 0 6px 24px rgba(20, 35, 59, 0.05);
}

._inner_mfick_19 {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  height: 108px;
  transition: height var(--dur-mid) var(--ease-out);
}
._solid_mfick_11 ._inner_mfick_19 {
  height: 92px;
}

._brand_mfick_30 {
  display: inline-flex;
  align-items: center;
}

._links_mfick_35 {
  display: flex;
  align-items: center;
  gap: 1.9rem;
  margin-inline-start: 2.25rem;
  margin-inline-end: auto; /* aligne les liens à gauche après le logo, pousse les actions à droite */
}
._link_mfick_35 {
  position: relative;
  display: inline-block;
  font-size: 0.94rem;
  font-weight: 500;
  color: var(--ink-2);
  padding: 0.4rem 0;
  line-height: 1.25;
}
/* Fenêtre de clip : masque la copie dorée tant qu'on ne survole pas */
._linkInner_mfick_52 {
  display: inline-block;
  overflow: hidden;
  vertical-align: bottom;
}
/* Le libellé roule vers le haut au survol, révélant une copie dorée */
._linkText_mfick_58 {
  position: relative;
  display: inline-block;
  will-change: transform;
  transition: transform 0.44s var(--ease-out);
}
._linkText_mfick_58::after {
  content: attr(data-text);
  position: absolute;
  left: 0;
  top: 100%;
  color: var(--gold-2);
  font-weight: 600;
  white-space: nowrap;
}
._link_mfick_35:hover ._linkText_mfick_58,
._link_mfick_35:focus-visible ._linkText_mfick_58 {
  transform: translateY(-100%);
}
/* Soulignement doré qui se dessine depuis la gauche */
._link_mfick_35::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  border-radius: 2px;
  background: var(--grad-gold);
  transition: width var(--dur-mid) var(--ease-out);
}
._link_mfick_35:hover::after,
._link_mfick_35:focus-visible::after {
  width: 100%;
}

._actions_mfick_94 {
  display: flex;
  align-items: center;
  gap: 1.1rem;
}
._cta_mfick_99 {
  --btn-h: 2.85rem;
  font-size: 0.9rem;
  padding: 0 1.45rem;
}

._burger_mfick_105 {
  display: none;
  color: var(--ink);
  padding: 0.3rem;
}

/* ---- Overlay mobile (clair) ---- */
._overlay_mfick_112 {
  position: fixed;
  inset: 0;
  z-index: -1;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--dur-mid) var(--ease-out), visibility var(--dur-mid);
  display: flex;
  align-items: center;
  justify-content: center;
}
._overlayOpen_mfick_125 {
  opacity: 1;
  visibility: visible;
}
._overlayLinks_mfick_129 {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.4rem;
}
._overlayLink_mfick_129 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 7vw, 2.6rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--ink);
  opacity: 0;
  transform: translateY(14px);
  transition: opacity var(--dur-slow) var(--ease-out), transform var(--dur-slow) var(--ease-out),
    color var(--dur-fast);
}
._overlayLink_mfick_129:hover {
  color: var(--blue-600);
}
._overlayOpen_mfick_125 ._overlayLink_mfick_129 {
  opacity: 1;
  transform: none;
}
._overlayCta_mfick_153 {
  margin-top: 1rem;
}

@media (max-width: 900px) {
  ._links_mfick_35 {
    display: none;
  }
  ._cta_mfick_99 {
    display: none !important;
  }
  ._burger_mfick_105 {
    display: inline-flex;
  }
}
/* Logo plus compact sur petit écran (l'inline height est surchargé). */
@media (max-width: 600px) {
  ._brand_mfick_30 img {
    height: 66px !important;
  }
}
/* ============================================================
   Footer — LIGHT. Fond cloud, hairline or au sommet, 4 colonnes.
   Blanc/bleu + or discret. Aéré, professionnel.
   ============================================================ */

._root_xy6ra_6 {
  position: relative;
  background: var(--cloud);
  border-top: 1px solid var(--border);
  padding-block: clamp(3.5rem, 2.6rem + 3vw, 5.5rem) 2rem;
}
/* fine hairline dorée au tout premier pixel */
._root_xy6ra_6::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--hairline-gold);
}

/* ---- Grille des colonnes ---- */
._grid_xy6ra_24 {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1.4fr 1.3fr;
  gap: clamp(2rem, 4vw, 3.5rem);
}

._col_xy6ra_30 {
  min-width: 0;
}

/* ---- 1 · Marque ---- */
._brand_xy6ra_35 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.15rem;
}
._brandTag_xy6ra_41 {
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.6;
  max-width: 34ch;
  margin: 0;
}
._pills_xy6ra_48 {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
._pill_xy6ra_48 {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0.85rem;
  border-radius: var(--r-pill);
  background: var(--mist);
  border: 1px solid var(--border);
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--ink-2);
  white-space: nowrap;
}
._pillDot_xy6ra_66 {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

/* ---- Titre de colonne ---- */
._colTitle_xy6ra_75 {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--blue-700);
  line-height: 1.2;
  margin: 0 0 1.1rem;
}

/* ---- 2 · Navigation ---- */
._navList_xy6ra_87 {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}
._navLink_xy6ra_92 {
  display: inline-flex;
  align-items: center;
  color: var(--ink-2);
  font-size: 0.95rem;
  transition: color var(--dur-fast) var(--ease-out);
}
._navLink_xy6ra_92:hover {
  color: var(--blue-600);
}
._navCta_xy6ra_102 {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 0.3rem;
  color: var(--blue-600);
  font-size: 0.95rem;
  font-weight: 600;
  transition: color var(--dur-fast) var(--ease-out);
}
._navCta_xy6ra_102 svg {
  transition: transform var(--dur-mid) var(--ease-out);
}
._navCta_xy6ra_102:hover {
  color: var(--blue-700);
}
._navCta_xy6ra_102:hover svg {
  transform: translateX(3px);
}

/* ---- 3 · Zones (flex-wrap, jamais de débordement) ---- */
._zones_xy6ra_123 {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem 0.75rem;
}
._zone_xy6ra_123 {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: var(--ink-2);
}
._zone_xy6ra_123::after {
  content: '';
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0.85;
  flex-shrink: 0;
}
._zone_xy6ra_123:last-child::after {
  display: none;
}
._zonePrimary_xy6ra_147 {
  color: var(--ink);
  font-weight: 600;
}

/* ---- 4 · Contact ---- */
._contact_xy6ra_153 {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}
._contactRow_xy6ra_158 {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  min-height: 44px;
  color: var(--ink-2);
}
._contactChip_xy6ra_165 {
  flex-shrink: 0;
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 11px;
  background: var(--blue-50);
  border: 1px solid var(--border-blue);
  color: var(--blue-600);
  transition: background var(--dur-fast) var(--ease-out),
    border-color var(--dur-fast) var(--ease-out);
}
._contactText_xy6ra_178 {
  font-size: 0.95rem;
  color: var(--ink-2);
  overflow-wrap: anywhere;
  transition: color var(--dur-fast) var(--ease-out);
}
._contactRow_xy6ra_158:hover ._contactChip_xy6ra_165 {
  background: var(--blue-100);
  border-color: var(--blue-300);
}
._contactRow_xy6ra_158:hover ._contactText_xy6ra_178 {
  color: var(--blue-700);
}

/* ---- Barre du bas ---- */
._bottom_xy6ra_193 {
  margin-top: clamp(2.5rem, 4vw, 3.5rem);
  padding-top: 1.6rem;
  border-top: 1px solid var(--border);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.6rem 1.5rem;
}
._copyright_xy6ra_203 {
  margin: 0;
  font-size: 0.85rem;
  color: var(--muted);
}
._baseline_xy6ra_208 {
  margin: 0;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--blue-600);
}

/* ---- Responsive ---- */
@media (max-width: 900px) {
  ._grid_xy6ra_24 {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem 2rem;
  }
  ._brand_xy6ra_35 {
    grid-column: 1 / -1;
  }
}
@media (max-width: 560px) {
  ._grid_xy6ra_24 {
    grid-template-columns: 1fr;
  }
  ._brand_xy6ra_35 {
    grid-column: auto;
  }
  ._bottom_xy6ra_193 {
    justify-content: flex-start;
  }
}

/* ---- Liens légaux (mentions / confidentialité) ---- */
._legalLinks_xy6ra_238 {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem 1.4rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
._legalLink_xy6ra_238 {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--blue-700);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: rgba(22, 39, 63, 0.4);
  transition: color 0.2s ease;
}
._legalLink_xy6ra_238:hover {
  color: var(--gold-2);
  text-decoration-color: var(--gold-2);
}
/* ============================================================
   ChatAssistant — style premium navy/or.
   ============================================================ */

/* ---- Launcher (bas-droite) ---- */
._launcher_km3zp_6 {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.7rem 1.25rem 0.7rem 0.85rem;
  border-radius: var(--r-pill);
  background: var(--grad-gold);
  color: var(--blue-900);
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 12px 30px -8px rgba(166, 129, 47, 0.55), 0 2px 8px rgba(16, 30, 51, 0.2);
  transition: transform var(--dur-mid) var(--ease-out), box-shadow var(--dur-mid) var(--ease-out),
    opacity var(--dur-mid) var(--ease-out);
}
._launcher_km3zp_6:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px -8px rgba(166, 129, 47, 0.65), 0 3px 10px rgba(16, 30, 51, 0.24);
}
._launcherHidden_km3zp_30 {
  opacity: 0;
  transform: translateY(12px) scale(0.9);
  pointer-events: none;
}
._launcherIcon_km3zp_35 {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(11, 21, 36, 0.14);
  color: var(--blue-900);
}
._launcherPulse_km3zp_44 {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: 0 0 0 0 rgba(198, 162, 76, 0.5);
  animation: _launcherPulse_km3zp_44 2.6s var(--ease-out) infinite;
  pointer-events: none;
}
@keyframes _launcherPulse_km3zp_44 {
  0% {
    box-shadow: 0 0 0 0 rgba(198, 162, 76, 0.45);
  }
  70% {
    box-shadow: 0 0 0 16px rgba(198, 162, 76, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(198, 162, 76, 0);
  }
}

/* ---- Panneau ---- */
._panel_km3zp_65 {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 610;
  width: 384px;
  max-width: calc(100vw - 32px);
  height: min(624px, calc(100vh - 48px));
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-lg);
  transform-origin: bottom right;
  opacity: 0;
  visibility: hidden;
  transform: translateY(16px) scale(0.96);
  transition: opacity var(--dur-mid) var(--ease-out), transform var(--dur-mid) var(--ease-out),
    visibility var(--dur-mid);
}
._panelOpen_km3zp_87 {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

/* ---- En-tête ---- */
._head_km3zp_94 {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1rem 1.1rem;
  background: var(--grad-navy);
  color: #fff;
  position: relative;
}
._head_km3zp_94::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: var(--hairline-gold);
}
._avatar_km3zp_112 {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  border-radius: 50%;
  background: linear-gradient(140deg, var(--gold), var(--gold-2));
  color: #fff;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.3), 0 4px 12px -4px rgba(166, 129, 47, 0.6);
}
._headText_km3zp_123 {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  min-width: 0;
  flex: 1;
}
._headText_km3zp_123 strong {
  font-family: var(--font-display);
  font-size: 1.02rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}
._status_km3zp_136 {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.76rem;
  color: rgba(255, 255, 255, 0.72);
}
._dot_km3zp_143 {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #46d17f;
  box-shadow: 0 0 0 0 rgba(70, 209, 127, 0.6);
  animation: _onlinePulse_km3zp_1 2s var(--ease-out) infinite;
}
@keyframes _onlinePulse_km3zp_1 {
  0% {
    box-shadow: 0 0 0 0 rgba(70, 209, 127, 0.55);
  }
  70% {
    box-shadow: 0 0 0 6px rgba(70, 209, 127, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(70, 209, 127, 0);
  }
}
._close_km3zp_162 {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  flex-shrink: 0;
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.85);
  transition: background var(--dur-fast) var(--ease-out);
}
._close_km3zp_162:hover {
  background: rgba(255, 255, 255, 0.12);
}

/* ---- Corps (messages) ---- */
._body_km3zp_177 {
  flex: 1;
  overflow-y: auto;
  padding: 1.1rem;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  background: var(--mist);
  scrollbar-width: thin;
}
._rowBot_km3zp_187,
._rowUser_km3zp_188 {
  display: flex;
  align-items: flex-end;
  gap: 0.5rem;
  animation: _bubbleIn_km3zp_1 0.4s var(--ease-out) both;
}
._rowUser_km3zp_188 {
  justify-content: flex-end;
}
@keyframes _bubbleIn_km3zp_1 {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
._botAvatar_km3zp_207 {
  display: grid;
  place-items: center;
  width: 26px;
  height: 26px;
  flex-shrink: 0;
  border-radius: 50%;
  background: linear-gradient(140deg, var(--blue-700), var(--blue-900));
  color: var(--gold-bright);
  border: 1px solid var(--border-gold);
}
._bubbleBot_km3zp_218,
._bubbleUser_km3zp_219 {
  max-width: 78%;
  padding: 0.7rem 0.9rem;
  font-size: 0.9rem;
  line-height: 1.5;
  white-space: pre-line;
}
._bubbleBot_km3zp_218 {
  background: var(--white);
  color: var(--ink);
  border: 1px solid var(--border);
  border-radius: 4px 16px 16px 16px;
  box-shadow: var(--shadow-xs);
}
._bubbleUser_km3zp_219 {
  background: var(--grad-navy);
  color: #fff;
  border-radius: 16px 16px 4px 16px;
  box-shadow: 0 6px 16px -8px rgba(16, 30, 51, 0.4);
}
._typingBubble_km3zp_239 {
  padding: 0.75rem 0.95rem;
}
._typing_km3zp_239 {
  display: inline-flex;
  gap: 4px;
  align-items: center;
}
._typing_km3zp_239 i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--blue-400);
  animation: _typingDot_km3zp_1 1.2s infinite ease-in-out;
}
._typing_km3zp_239 i:nth-child(2) {
  animation-delay: 0.18s;
}
._typing_km3zp_239 i:nth-child(3) {
  animation-delay: 0.36s;
}
@keyframes _typingDot_km3zp_1 {
  0%,
  60%,
  100% {
    transform: translateY(0);
    opacity: 0.4;
  }
  30% {
    transform: translateY(-4px);
    opacity: 1;
  }
}

/* ---- Suggestions ---- */
._suggests_km3zp_274 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.45rem;
  margin-top: 0.2rem;
  padding-left: 34px;
}
._suggestsLabel_km3zp_282 {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}
._chip_km3zp_289 {
  max-width: 100%;
  text-align: left;
  padding: 0.5rem 0.85rem;
  border-radius: var(--r-pill);
  border: 1px solid var(--border-2);
  background: var(--white);
  color: var(--blue-700);
  font-family: var(--font-body);
  font-size: 0.84rem;
  font-weight: 500;
  cursor: pointer;
  transition: border-color var(--dur-fast) var(--ease-out), background var(--dur-fast) var(--ease-out),
    color var(--dur-fast) var(--ease-out), transform var(--dur-fast) var(--ease-out);
}
._chip_km3zp_289:hover {
  border-color: var(--gold);
  background: var(--gold-tint);
  color: var(--gold-2);
  transform: translateX(2px);
}

/* ---- Pied : conseiller + saisie ---- */
._footer_km3zp_312 {
  border-top: 1px solid var(--border);
  background: var(--white);
  padding: 0.6rem 0.75rem 0.75rem;
}
._advisor_km3zp_317 {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin: 0 0 0.55rem 0.15rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--gold-2);
  transition: color var(--dur-fast) var(--ease-out);
}
._advisor_km3zp_317:hover {
  color: var(--gold-ink);
}
._inputBar_km3zp_330 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
._input_km3zp_330 {
  flex: 1;
  min-width: 0;
  height: 46px;
  padding: 0 1rem;
  border-radius: var(--r-pill);
  border: 1px solid var(--border-2);
  background: var(--mist);
  color: var(--ink);
  font-size: 0.92rem;
  transition: border-color var(--dur-fast) var(--ease-out), background var(--dur-fast) var(--ease-out);
}
._input_km3zp_330:focus {
  outline: none;
  border-color: var(--blue-400);
  background: #fff;
}
._send_km3zp_352 {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--grad-gold);
  color: var(--blue-900);
  box-shadow: 0 6px 16px -6px rgba(166, 129, 47, 0.55);
  transition: transform var(--dur-fast) var(--ease-out), opacity var(--dur-fast) var(--ease-out);
}
._send_km3zp_352:hover {
  transform: scale(1.06);
}
._send_km3zp_352:disabled {
  opacity: 0.45;
  cursor: default;
  transform: none;
}

/* ---- Mobile : feuille plein écran en bas ---- */
@media (max-width: 520px) {
  ._launcher_km3zp_6 {
    bottom: 16px;
    right: 16px;
    padding: 0.7rem;
  }
  ._launcherLabel_km3zp_380 {
    display: none;
  }
  ._panel_km3zp_65 {
    bottom: 0;
    right: 0;
    left: 0;
    width: 100%;
    max-width: 100%;
    height: 86vh;
    border-radius: var(--r-xl) var(--r-xl) 0 0;
    transform-origin: bottom center;
  }
}

/* Gardes reduced-motion retirés : l'utilisateur veut voir les animations. */
/* ============================================================
   LegalPage — page légale plein écran, sobre et lisible.
   ============================================================ */
._root_71crz_4 {
  min-height: 100vh;
  background: var(--cloud, #f7fafe);
  padding: 120px 0 5rem;
}
._inner_71crz_9 {
  max-width: 780px;
  margin: 0 auto;
  padding: 0 clamp(1.2rem, 5vw, 2rem);
}

._back_71crz_15 {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--blue-700);
  margin-bottom: 1.8rem;
  transition: color 0.2s ease;
}
._back_71crz_15 svg {
  transform: rotate(180deg);
}
._back_71crz_15:hover {
  color: var(--gold-2);
}

._title_71crz_32 {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 1.2rem + 3vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: var(--ink);
  margin: 0 0 0.4rem;
}
._updated_71crz_41 {
  font-size: 0.85rem;
  color: var(--muted);
  margin: 0 0 2.4rem;
}

._section_71crz_47 {
  margin-bottom: 1.9rem;
}
._h2_71crz_50 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--blue-700);
  margin: 0 0 0.55rem;
  padding-left: 0.8rem;
  border-left: 3px solid var(--gold);
}
._p_71crz_59 {
  font-size: 0.98rem;
  line-height: 1.7;
  color: var(--ink-2);
  margin: 0 0 0.7rem;
}
._hero_tzlx8_1 {
  position: relative;
  min-height: 96svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
  background: var(--blue-900);
}

/* ---- Photo de fond + Ken Burns ---- */
._bg_tzlx8_12 {
  position: absolute;
  inset: 0;
  z-index: 0;
}
/* Vignettage navy discret en bas : ancre le scroll cue et adoucit la
   transition vers le bandeau des villes. */
._bg_tzlx8_12::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  box-shadow: inset 0 -90px 130px -60px rgba(11, 21, 36, 0.45),
    inset 0 0 220px rgba(11, 21, 36, 0.1);
}
._bgImg_tzlx8_27 {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center; /* recadrage centré, sinon le miroir découvre un bord */
  transform-origin: 50% 50%; /* miroir/zoom centrés → couvre toute la largeur */
  filter: saturate(1.06) contrast(1.04);
  animation: _kenburns_tzlx8_1 26s ease-in-out infinite alternate;
}
/* scaleX(-1) : image en miroir (gauche ↔ droite), intégré à l'animation
   pour ne pas écraser le transform du Ken Burns. */
@keyframes _kenburns_tzlx8_1 {
  0% { transform: scaleX(-1) scale(1.08) translate(0, 0); }
  100% { transform: scaleX(-1) scale(1.2) translate(-2.5%, -2%); }
}

/* Voile clair à GAUCHE (le texte est à gauche, sur la zone lumineuse ;
   la photo reste visible à droite). */
._overlay_tzlx8_45 {
  position: absolute;
  inset: 0;
  background: linear-gradient(
      100deg,
      rgba(247, 250, 254, 0.98) 0%,
      rgba(247, 250, 254, 0.92) 22%,
      rgba(247, 250, 254, 0.48) 44%,
      rgba(247, 250, 254, 0.08) 62%,
      rgba(247, 250, 254, 0) 80%
    ),
    linear-gradient(0deg, rgba(247, 250, 254, 0.68) 0%, rgba(247, 250, 254, 0) 32%);
}

._particles_tzlx8_59 {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

/* Spotlight or doux suivant le curseur (inspiré 21st.dev) */
._spotlight_tzlx8_67 {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: radial-gradient(
    340px circle at var(--sx, 28%) var(--sy, 40%),
    rgba(198, 162, 76, 0.16),
    rgba(198, 162, 76, 0.06) 35%,
    transparent 62%
  );
}
@media (pointer: coarse) {
  ._spotlight_tzlx8_67 {
    display: none;
  }
}

/* ---- Contenu ---- */
._content_tzlx8_86 {
  position: relative;
  z-index: 2;
  padding-top: 120px;
  padding-bottom: 90px;
}
._copy_tzlx8_92 {
  max-width: 620px;
}
@media (min-width: 1100px) {
  ._copy_tzlx8_92 {
    margin-left: -1.6rem;
  }
}
._copy_tzlx8_92 > * {
  opacity: 0;
  animation: _heroUp_tzlx8_1 0.85s var(--ease-out) forwards;
  animation-play-state: paused; /* en attente du 1er rendu peint (classe .ready) */
}
._ready_tzlx8_103 ._copy_tzlx8_92 > * {
  animation-play-state: running;
}
._copy_tzlx8_92 > *:nth-child(1) { animation-delay: 0.05s; }
._copy_tzlx8_92 > *:nth-child(2) { animation-delay: 0.16s; }
._copy_tzlx8_92 > *:nth-child(3) { animation-delay: 0.3s; }
._copy_tzlx8_92 > *:nth-child(4) { animation-delay: 0.42s; }
._copy_tzlx8_92 > *:nth-child(5) { animation-delay: 0.52s; }
._copy_tzlx8_92 > *:nth-child(6) { animation-delay: 0.62s; }
@keyframes _heroUp_tzlx8_1 {
  from { opacity: 0; transform: translateY(22px); }
  to { opacity: 1; transform: none; }
}

._title_tzlx8_119 {
  margin: 1.4rem 0 1.4rem;
  color: var(--ink);
  font-size: clamp(2.7rem, 1.3rem + 5.4vw, 5.6rem);
  line-height: 1.03;
  letter-spacing: -0.03em;
  font-weight: 800;
  opacity: 1;
  animation: none;
}
._line_tzlx8_129 {
  display: block;
}
/* Mots du titre : cachés au départ, révélés en cascade par GSAP (fade-in-blur). */
.hero-word {
  display: inline-block;
  white-space: pre;
  opacity: 0;
  will-change: transform, filter, opacity;
}
/* La ligne dorée : le dégradé + le scintillement sont portés par CHAQUE mot
   (le background-clip:text du parent ne traverse pas les inline-block). */
._accent_tzlx8_141 .hero-word {
  background: linear-gradient(
    100deg,
    var(--gold-ink) 0%,
    var(--gold-2) 26%,
    var(--gold) 50%,
    var(--gold-2) 74%,
    var(--gold-ink) 100%
  );
  background-size: 220% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  animation: _heroShimmer_tzlx8_1 6.5s linear infinite;
}
/* Révélation cinématique : monte + se dévoile depuis le flou */
@keyframes _heroTitleIn_tzlx8_1 {
  0% {
    opacity: 0;
    transform: translateY(34px);
    filter: blur(18px);
  }
  55% {
    filter: blur(0);
  }
  100% {
    opacity: 1;
    transform: none;
    filter: blur(0);
  }
}
._accent_tzlx8_141 {
  background: linear-gradient(
    100deg,
    var(--gold-ink) 0%,
    var(--gold-2) 26%,
    var(--gold) 50%,
    var(--gold-2) 74%,
    var(--gold-ink) 100%
  );
  background-size: 220% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 1px 1px rgba(11, 21, 36, 0.24));
  animation: _heroShimmer_tzlx8_1 6.5s linear infinite;
}
@keyframes _heroShimmer_tzlx8_1 {
  to {
    background-position: 220% center;
  }
}

/* ---- Mot rotatif dans la ligne dorée (RotatingWord) ---- */
._rotSlot_tzlx8_196 {
  position: relative;
  vertical-align: baseline;
}
/* Le mot lui-même porte le dégradé or (le parent .hero-word ne traverse pas). */
._rotWord_tzlx8_201 {
  display: inline-block;
  background: linear-gradient(
    100deg,
    var(--gold-ink) 0%,
    var(--gold-2) 26%,
    var(--gold) 50%,
    var(--gold-2) 74%,
    var(--gold-ink) 100%
  );
  background-size: 220% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  animation: _heroShimmer_tzlx8_1 6.5s linear infinite;
}

._subtitle_tzlx8_219 {
  max-width: 46ch;
  font-size: clamp(1.05rem, 0.98rem + 0.4vw, 1.22rem);
  line-height: 1.6;
  color: var(--ink-2);
  margin-bottom: 1.6rem;
}

._durations_tzlx8_227 {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 2rem;
}
._chip_tzlx8_233 {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.45rem 0.95rem;
  border-radius: var(--r-pill);
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(6px);
  border: 1px solid var(--border-2);
  color: var(--blue-700);
  font-size: 0.86rem;
  font-weight: 600;
  box-shadow: var(--shadow-xs);
}
._chip_tzlx8_233 svg {
  color: var(--gold-2);
}

._ctas_tzlx8_251 {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-bottom: 2.6rem;
}

._trust_tzlx8_258 {
  display: flex;
  flex-wrap: wrap;
  margin-top: var(--space-lg);
  padding-top: var(--space-md);
  border-top: 1px solid var(--border-2);
  gap: clamp(2.4rem, 8vw, 5rem);
}
._stat_tzlx8_266 {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  position: relative;
  padding-left: 1rem;
}
._stat_tzlx8_266::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.15rem;
  bottom: 0.15rem;
  width: 3px;
  border-radius: 3px;
  background: var(--gold);
}
._statValue_tzlx8_283 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1;
}
._statLabel_tzlx8_290 {
  font-size: 0.8rem;
  color: var(--muted);
}

/* ---- Hiérarchie des CTA : le bouton principal domine ---- */
._ctas_tzlx8_251 .btn--gold {
  --btn-h: 3.4rem;
  font-size: 1.02rem;
  padding: 0 2rem;
  box-shadow: 0 14px 34px -10px rgba(158, 123, 44, 0.55), 0 3px 10px rgba(158, 123, 44, 0.3);
}
._ctas_tzlx8_251 .btn--gold:hover {
  box-shadow: 0 18px 40px -10px rgba(158, 123, 44, 0.65), 0 4px 12px rgba(158, 123, 44, 0.35);
}
._ctas_tzlx8_251 .btn--outline {
  --btn-h: 3.05rem;
  font-size: 0.92rem;
  opacity: 0.92;
}

/* ---- Scroll cue ---- */
._scrollCue_tzlx8_312 {
  position: absolute;
  left: 50%;
  bottom: 1.6rem;
  transform: translateX(-50%);
  z-index: 3;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--white);
  color: var(--blue-700);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  animation: _bob_tzlx8_1 2.2s var(--ease-in-out) infinite;
}
._scrollCue_tzlx8_312 svg {
  transform: rotate(90deg);
}
@keyframes _bob_tzlx8_1 {
  0%, 100% { transform: translate(-50%, 0); }
  50% { transform: translate(-50%, 6px); }
}

/* ---- RTL (arabe) : voile clair reflété vers la droite (sous le texte). ---- */
[dir='rtl'] ._overlay_tzlx8_45 {
  background: linear-gradient(
      260deg,
      rgba(247, 250, 254, 0.98) 0%,
      rgba(247, 250, 254, 0.9) 30%,
      rgba(247, 250, 254, 0.55) 54%,
      rgba(247, 250, 254, 0.12) 76%,
      rgba(247, 250, 254, 0) 100%
    ),
    linear-gradient(0deg, rgba(247, 250, 254, 0.75) 0%, rgba(247, 250, 254, 0) 36%);
}
[dir='rtl'] ._stat_tzlx8_266 { padding-left: 0; padding-right: 1rem; }
[dir='rtl'] ._stat_tzlx8_266::before { left: auto; right: 0; }

/* ---- Responsive ---- */
@media (max-width: 760px) {
  ._overlay_tzlx8_45 {
    background: linear-gradient(0deg, rgba(247, 250, 254, 0.98) 0%, rgba(247, 250, 254, 0.82) 45%, rgba(247, 250, 254, 0.55) 100%);
  }
  ._content_tzlx8_86 { padding-top: 108px; }

  /* Stats en ligne, comme sur PC */
  ._trust_tzlx8_258 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.7rem;
  }
  ._stat_tzlx8_266 {
    padding-left: 0.65rem;
  }
  ._statValue_tzlx8_283 {
    font-size: 0.98rem;
    white-space: nowrap;
  }
  ._statLabel_tzlx8_290 {
    font-size: 0.66rem;
    line-height: 1.3;
  }
  ._content_tzlx8_86 {
    padding-bottom: 130px;
  }
}
/* ============================================================
   Marquee — slim light band (NOT a .section)
   Mist clair · hairlines fines · diamant or discret · défilement infini
   ============================================================ */

._root_16k8l_6 {
  --gap: 2.6rem;
  position: relative;
  padding-block: 1.2rem;
  background: var(--mist);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}

._viewport_16k8l_16 {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(
    90deg,
    transparent 0,
    #000 8%,
    #000 92%,
    transparent 100%
  );
  mask-image: linear-gradient(
    90deg,
    transparent 0,
    #000 8%,
    #000 92%,
    transparent 100%
  );
}

._rail_16k8l_34 {
  display: flex;
  width: max-content;
  will-change: transform;
  cursor: grab;
  user-select: none;
  touch-action: pan-y; /* le drag horizontal bouge la bande, le scroll vertical reste dispo */
}
._rail_16k8l_34:active {
  cursor: grabbing;
}

._track_16k8l_46 {
  display: flex;
  align-items: center;
  gap: var(--gap);
  padding-right: var(--gap);
  flex-shrink: 0;
}

._item_16k8l_54 {
  display: inline-flex;
  align-items: center;
  gap: var(--gap);
  white-space: nowrap;
}

._city_16k8l_61 {
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--ink-2);
}

._sep_16k8l_70 {
  width: 6px;
  height: 6px;
  border-radius: 1px;
  background: var(--gold);
  transform: rotate(45deg);
  flex-shrink: 0;
}

._city_16k8l_61 {
  pointer-events: none; /* on glisse la bande sans sélectionner le texte */
}
._root_vk82j_1 {
  background: var(--white);
}

._grid_vk82j_5 {
  margin-top: clamp(2.5rem, 4vw, 4rem);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.4rem;
}

._frame_vk82j_12 {
  position: relative;
  margin: 0;
  aspect-ratio: 16 / 11;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: inset 0 0 0 1px rgba(16, 30, 51, 0.06), 0 3px 8px -4px rgba(16, 30, 51, 0.14),
    0 18px 40px -18px rgba(16, 30, 51, 0.22);
  transition: box-shadow var(--dur-mid) var(--ease-out), transform var(--dur-mid) var(--ease-out);
}
/* Voile marine très faible en multiply : tire la collection vers la
   dominante froide de marque (galerie cohérente). */
._frame_vk82j_12::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: rgba(22, 39, 63, 0.06);
  mix-blend-mode: multiply;
}
._frame_vk82j_12 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.9) contrast(1.03) brightness(1.01);
  transition: transform 0.9s var(--ease-out);
  will-change: transform;
}
._frame_vk82j_12:hover {
  box-shadow: inset 0 0 0 1px rgba(16, 30, 51, 0.06), 0 28px 60px -22px rgba(16, 30, 51, 0.3);
  transform: translateY(-5px);
}
._frame_vk82j_12:hover img {
  transform: scale(1.06);
}

/* léger voile marine en bas (lisibilité du tag) */
._frame_vk82j_12::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 58%, rgba(16, 30, 51, 0.42) 100%);
  pointer-events: none;
}

._tag_vk82j_58 {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.4rem 0.9rem;
  border-radius: var(--r-pill);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(6px);
  color: var(--blue-700);
  font-size: 0.82rem;
  font-weight: 600;
  box-shadow: var(--shadow-xs);
}
._tag_vk82j_58::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 2px;
  transform: rotate(45deg);
  background: var(--gold);
}

/* Mobile : on conserve la grille 2×2 (même agencement que PC) */
@media (max-width: 640px) {
  ._grid_vk82j_5 {
    gap: 0.7rem;
  }
  ._tag_vk82j_58 {
    font-size: 0.68rem;
    padding: 0.3rem 0.65rem;
    left: 0.6rem;
    bottom: 0.6rem;
  }
}

/* Mention discrète sous la galerie (visuels d'inspiration) */
._note_vk82j_98 {
  margin-top: 1.1rem;
  text-align: center;
  font-size: 0.82rem;
  font-style: italic;
  color: var(--muted);
}
._dots_1xxzz_1 {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image: radial-gradient(rgba(22, 39, 63, 0.07) 1px, transparent 1px);
  background-size: 22px 22px;
  -webkit-mask-image: radial-gradient(ellipse 78% 62% at 50% 42%, #000 38%, transparent 78%);
  mask-image: radial-gradient(ellipse 78% 62% at 50% 42%, #000 38%, transparent 78%);
}
/* ============================================================
   ValueProps — section blanche, grille 3/2/1, cartes claires.
   Blue/white avec or très discret (aucun remplissage doré).
   ============================================================ */

._root_1r4dy_6 {
  position: relative;
  overflow: hidden;
  background: var(--cloud);
}
._root_1r4dy_6 .container {
  position: relative;
  z-index: 1;
}

._grid_1r4dy_16 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1rem, 2.2vw, 1.6rem);
  margin-top: clamp(2.6rem, 4vw, 4rem);
  perspective: 1000px;
}

/* ---- Carte (CARD RECIPE) ---- */
._card_1r4dy_25 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
  height: 100%;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-sm);
  padding: clamp(1.5rem, 3vw, 2.1rem);
  transition: transform var(--dur-mid) var(--ease-out),
    box-shadow var(--dur-mid) var(--ease-out),
    border-color var(--dur-mid) var(--ease-out);
}
._card_1r4dy_25:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--border-gold);
}

/* ---- Badge d'icône bleu (52px) ---- */
._badge_1r4dy_47 {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: var(--r-md);
  background: linear-gradient(155deg, #ffffff 0%, var(--gold-tint) 100%);
  color: var(--blue-700);
  border: 1px solid var(--border-gold);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.75), var(--shadow-xs);
  flex-shrink: 0;
  transform-origin: 50% 50%;
  transition: transform var(--dur-mid) var(--ease-out),
    background var(--dur-mid) var(--ease-out),
    color var(--dur-mid) var(--ease-out),
    border-color var(--dur-mid) var(--ease-out);
}
/* Signature : le badge pivote + grossit et vire à l'or au survol */
._card_1r4dy_25:hover ._badge_1r4dy_47 {
  transform: rotate(6deg) scale(1.08);
  background: linear-gradient(140deg, var(--gold), var(--gold-2));
  color: #fff;
  border-color: transparent;
}

/* ---- Texte ---- */
._cardTitle_1r4dy_73 {
  margin: 0;
  color: var(--ink);
}
._cardText_1r4dy_77 {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
  font-size: 1rem;
}

/* ---- Responsive ---- */
@media (max-width: 900px) {
  ._grid_1r4dy_16 {
    grid-template-columns: repeat(2, 1fr);
  }
}
/* Mobile : on conserve la grille 2 colonnes (même agencement que PC) */
@media (max-width: 640px) {
  ._grid_1r4dy_16 {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.8rem;
  }
  ._card_1r4dy_25 {
    padding: 1.1rem 0.95rem;
  }
  ._cardTitle_1r4dy_73 {
    font-size: 0.98rem;
  }
  ._cardText_1r4dy_77 {
    font-size: 0.85rem;
  }
}

/* Gardes reduced-motion retirés : effets de survol toujours actifs. */
/* Faisceau de bordure — masque padding/border-box + offset-path (magicui). */
._beam_gdhjk_2 {
  pointer-events: none;
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: calc(var(--border-width) * 1px) solid transparent;
  -webkit-mask: linear-gradient(transparent, transparent), linear-gradient(#fff, #fff);
  mask: linear-gradient(transparent, transparent), linear-gradient(#fff, #fff);
  -webkit-mask-clip: padding-box, border-box;
  mask-clip: padding-box, border-box;
  -webkit-mask-composite: source-in;
  mask-composite: intersect;
}
._beam_gdhjk_2::after {
  content: '';
  position: absolute;
  aspect-ratio: 1 / 1;
  width: calc(var(--size) * 1px);
  offset-anchor: calc(var(--anchor) * 1%) 50%;
  offset-path: rect(0 auto auto 0 round calc(var(--size) * 1px));
  background: linear-gradient(to left, var(--color-from), var(--color-to), transparent);
  animation-name: _borderBeam_gdhjk_1;
  animation-duration: calc(var(--duration) * 1s);
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  animation-delay: var(--delay);
}
@keyframes _borderBeam_gdhjk_1 {
  to {
    offset-distance: 100%;
  }
}
/* Gardes reduced-motion retirés : animations toujours actives. */
/* ============================================================
   Formules — thème clair, blanc + bleu, or discret.
   Deux cartes tarifaires. La carte « featured » reste CLAIRE
   (bordure bleue + halo bleu), jamais navy.
   ============================================================ */

._root_16xua_7 {
  position: relative;
}

/* ---- Grille (2 cartes) ---- */
._grid_16xua_12 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(1.4rem, 2.6vw, 2rem);
  max-width: 960px;
  margin: clamp(2.6rem, 5vw, 3.6rem) auto 0;
  align-items: stretch;
  perspective: 1200px;
}

._cardWrap_16xua_22 {
  display: flex;
}

/* ---- Carte (recette claire) ---- */
._card_16xua_22 {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-sm);
  padding: clamp(1.5rem, 3vw, 2.1rem);
  transition: transform var(--dur-mid) var(--ease-out),
    box-shadow var(--dur-mid) var(--ease-out),
    border-color var(--dur-mid) var(--ease-out);
}
._card_16xua_22:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--border-blue);
}

/* ---- Carte mise en avant (reste CLAIRE, juste élevée) ---- */
._featured_16xua_49 {
  border: 2px solid var(--blue-500);
  border-top: 2px solid var(--gold); /* couronne or alignée sur le CTA */
  box-shadow: 0 2px 4px rgba(16, 30, 51, 0.06), 0 24px 50px -22px rgba(22, 39, 63, 0.34),
    0 44px 90px -50px rgba(22, 39, 63, 0.3), 0 0 60px -30px rgba(198, 162, 76, 0.35);
  padding-top: clamp(2.2rem, 4vw, 2.8rem);
}
._featured_16xua_49:hover {
  box-shadow: 0 2px 4px rgba(16, 30, 51, 0.06), 0 32px 66px -26px rgba(22, 39, 63, 0.4),
    0 0 70px -28px rgba(198, 162, 76, 0.45);
  border-color: var(--blue-500);
  border-top-color: var(--gold);
}

/* SIGNATURE — halo bleu continu qui pulse doucement (~3s), indépendant
   du box-shadow de la carte (le hover reste donc parfaitement lisible). */
._featured_16xua_49::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: inherit;
  box-shadow: 0 18px 44px rgba(22, 39, 63, 0.34);
  opacity: 0.4;
  pointer-events: none;
  animation: _formuleGlow_16xua_1 3s ease-in-out infinite;
}
@keyframes _formuleGlow_16xua_1 {
  0%,
  100% {
    opacity: 0.32;
  }
  50% {
    opacity: 0.9;
  }
}

@media (min-width: 761px) {
  ._featured_16xua_49 {
    transform: scale(1.03);
  }
  ._featured_16xua_49:hover {
    transform: scale(1.03) translateY(-6px);
  }
}

/* Gardes reduced-motion retirés : animations toujours actives. */

/* ---- Badge « La plus choisie » (bleu, épinglé) ---- */
._badge_16xua_98 {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.42rem 0.95rem;
  border-radius: var(--r-pill);
  background: var(--blue-600);
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
  box-shadow: 0 6px 16px rgba(46, 107, 180, 0.28);
}
._badge_16xua_98 svg {
  color: #fff;
}

/* ---- En-tête de carte ---- */
._head_16xua_123 {
  display: flex;
  flex-direction: column;
}
._formuleLabel_16xua_127 {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: var(--tracking-label);
  text-transform: uppercase;
  color: var(--blue-600);
  margin-bottom: 0.5rem;
}
._name_16xua_136 {
  color: var(--ink);
  margin-bottom: 1rem;
}

._rate_16xua_141 {
  display: flex;
  align-items: baseline;
  gap: 0.12rem;
  line-height: 1;
}
._rateNum_16xua_147 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.8rem, 2rem + 3vw, 3.4rem);
  color: var(--blue-700);
  letter-spacing: -0.03em;
  font-variant-numeric: tabular-nums;
}
._rateUnit_16xua_155 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.6rem;
  color: var(--gold-2);
}
._rateLabel_16xua_161 {
  margin-top: 0.55rem;
  font-size: 0.9rem;
  color: var(--muted);
}
._tagline_16xua_166 {
  margin-top: 0.95rem;
  color: var(--ink-2);
  font-size: 0.98rem;
  line-height: 1.55;
}

/* ---- Séparateur (filet discret) ---- */
._divider_16xua_174 {
  border: none;
  height: 1px;
  background: var(--hairline-gold);
  opacity: 0.85;
  margin: clamp(1.3rem, 3vw, 1.7rem) 0;
}

/* ---- Liste des prestations ---- */
._features_16xua_183 {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-bottom: 1.4rem;
}
._feature_16xua_49 {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  color: var(--ink-2);
  font-size: 0.96rem;
  line-height: 1.5;
}
._check_16xua_197 {
  flex-shrink: 0;
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--blue-50);
  border: 1px solid var(--border-blue);
  color: var(--blue-600);
  margin-top: 1px;
  transition: transform var(--dur-fast, 200ms) var(--ease-out),
    background var(--dur-fast, 200ms) var(--ease-out),
    border-color var(--dur-fast, 200ms) var(--ease-out);
}
/* Micro-interaction : les pastilles « check » avancent au survol de la carte */
._card_16xua_22:hover ._check_16xua_197 {
  transform: translateX(2px) scale(1.1);
  border-color: var(--blue-500);
}

/* Le badge « La plus choisie » se rehausse légèrement au survol */
._featured_16xua_49 ._badge_16xua_98 {
  transition: transform var(--dur-mid) var(--ease-out),
    box-shadow var(--dur-mid) var(--ease-out);
}
._featured_16xua_49:hover ._badge_16xua_98 {
  transform: translate(-50%, -55%) scale(1.04);
  box-shadow: 0 8px 20px rgba(46, 107, 180, 0.34);
}


/* ---- Note (callout discret) ---- */
._note_16xua_230 {
  background: var(--blue-50);
  border: 1px solid var(--border-blue);
  border-radius: var(--r-md);
  padding: 0.85rem 1.05rem;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.55;
  margin-bottom: 1.5rem;
}

/* ---- CTA épinglé en bas (cartes de hauteur égale) ---- */
._cta_16xua_242 {
  margin-top: auto;
}

/* ---- Mention légale ---- */
._disclaimerWrap_16xua_247 {
  text-align: center;
}
._disclaimer_16xua_247 {
  max-width: 620px;
  margin: clamp(1.9rem, 4vw, 2.5rem) auto 0;
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.6;
}

/* ---- Responsive ---- */
@media (max-width: 760px) {
  ._grid_16xua_12 {
    grid-template-columns: 1fr;
    max-width: 460px;
  }
}

/* Phrase remplacant le tarif (prix retires - presentes lors de l audit) */
._auditNote_16xua_267 {
  margin: 0.4rem 0 0.2rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.02rem;
  line-height: 1.4;
  color: var(--gold-2);
  min-height: 2.4rem;
}
/* ============================================================
   PackElan — carte premium claire, filet or discret.
   ============================================================ */

._root_n0uui_5 {
  background: var(--white);
}

/* ---- Carte principale ---- */
._card_n0uui_10 {
  position: relative;
  max-width: 1040px;
  margin-inline: auto;
  background: var(--grad-cloud);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

/* Filet or fin en haut de carte (accent restreint) */
._goldLine_n0uui_22 {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--hairline-gold);
  z-index: 2;
}

._grid_n0uui_32 {
  display: grid;
  grid-template-columns: minmax(240px, 320px) 1fr;
  align-items: stretch;
}

/* ---- Photo verticale ---- */
._photo_n0uui_39 {
  position: relative;
  overflow: hidden;
  min-height: 100%;
  background: var(--cloud);
}
._photo_n0uui_39::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 42, 75, 0) 55%, rgba(15, 42, 75, 0.14) 100%);
}
._photo_n0uui_39 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ---- Contenu ---- */
._content_n0uui_59 {
  min-width: 0;
  padding: clamp(1.75rem, 3.4vw, 3rem);
  display: flex;
  flex-direction: column;
}

/* ---- En-tête ---- */
._header_n0uui_67 {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.25rem;
  margin-bottom: 1.9rem;
}
._headText_n0uui_74 {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  min-width: 0;
}
._title_n0uui_80 {
  color: var(--ink);
  font-size: var(--fs-h3);
  margin: 0;
}
._subtitle_n0uui_85 {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.55;
  margin: 0;
}

/* ---- Sceau (anneau or discret) ---- */
._seal_n0uui_93 {
  flex-shrink: 0;
  width: 112px;
  height: 112px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  background: var(--gold-soft);
  color: var(--gold-2);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.05rem;
  text-align: center;
  box-shadow: var(--shadow-xs);
}
._sealIcon_n0uui_109 {
  display: grid;
  place-items: center;
  color: var(--gold-2);
  margin-bottom: 0.1rem;
}
._sealValue_n0uui_115 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.5rem;
  line-height: 1;
  color: var(--gold-2);
  letter-spacing: -0.02em;
}
._sealLabel_n0uui_123 {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-2);
}

/* ---- Liste des prestations ---- */
._items_n0uui_132 {
  display: flex;
  flex-direction: column;
  margin: 0 0 1.75rem;
  padding: 0;
}
._item_n0uui_132 {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--border);
}
._item_n0uui_132:first-child {
  padding-top: 0;
}
._itemChip_n0uui_148 {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 11px;
  color: var(--blue-700);
  background: linear-gradient(155deg, #ffffff 0%, var(--gold-tint) 100%);
  border: 1px solid var(--border-gold);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.75), var(--shadow-xs);
}
._itemLabel_n0uui_160 {
  color: var(--ink);
  font-size: 0.98rem;
  font-weight: 500;
  line-height: 1.35;
  min-width: 0;
}
._leader_n0uui_167 {
  flex: 1;
  min-width: 0.75rem;
  height: 0;
  border-bottom: 1.5px dotted var(--border-2);
  transform: translateY(3px);
}
._itemRight_n0uui_174 {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
}
._freePill_n0uui_180 {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--blue-700);
  background: var(--blue-50);
  border: 1px solid var(--border-blue);
  border-radius: var(--r-pill);
  padding: 0.15rem 0.6rem;
  white-space: nowrap;
}
._itemValue_n0uui_192 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.98rem;
  color: var(--ink);
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}
._itemValueFree_n0uui_200 {
  color: var(--blue-700);
}

/* ---- Total ---- */
._total_n0uui_205 {
  background: var(--blue-50);
  border: 1px solid var(--border-blue);
  border-radius: var(--r-md);
  padding: 1.15rem 1.3rem;
  margin-bottom: 1.6rem;
}
._totalMain_n0uui_212 {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
}
._totalLabel_n0uui_218 {
  color: var(--blue-800);
  font-weight: 600;
  font-size: 1.02rem;
}
._totalValue_n0uui_223 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.6rem, 1.1rem + 1.6vw, 2rem);
  line-height: 1;
  color: var(--blue-700);
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
}
._ribbon_n0uui_232 {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  margin: 0.85rem 0 0;
  padding-top: 0.85rem;
  border-top: 1px solid var(--border-blue);
  color: var(--ink-2);
  font-size: 0.88rem;
  line-height: 1.5;
}
._ribbon_n0uui_232 svg {
  flex-shrink: 0;
  margin-top: 0.1rem;
  color: var(--blue-600);
}

/* ---- CTA ---- */
._actions_n0uui_250 {
  display: flex;
  margin-top: auto;
}
._actions_n0uui_250 ._btn_n0uui_254 {
  width: 100%;
}

/* ---- Responsive ---- */
@media (max-width: 860px) {
  ._grid_n0uui_32 {
    grid-template-columns: 1fr;
  }
  ._photo_n0uui_39 {
    min-height: 0;
    height: clamp(180px, 34vw, 240px);
  }
}

@media (max-width: 560px) {
  ._header_n0uui_67 {
    flex-direction: column-reverse;
    align-items: flex-start;
    gap: 1.1rem;
  }
  /* Même ligne que sur PC : prestation à gauche, prix à droite */
  ._item_n0uui_132 {
    gap: 0.6rem;
  }
  ._leader_n0uui_167 {
    display: none;
  }
  ._itemLabel_n0uui_160 {
    flex: 1;
    font-size: 0.9rem;
  }
  ._itemChip_n0uui_148 {
    width: 34px;
    height: 34px;
  }
  ._itemValue_n0uui_192 {
    font-size: 0.9rem;
  }
  ._actions_n0uui_250 ._btn_n0uui_254 {
    width: 100%;
  }
}

/* ============================================================
   Micro-interactions (survol) — additif, non destructif.
   On cible des éléments enfants non animés par GSAP afin que
   le transform en ligne laissé par les tweens ne bloque pas
   les états de survol.
   ============================================================ */
._card_n0uui_10 {
  transition: box-shadow 300ms ease;
}
._card_n0uui_10:hover {
  box-shadow: var(--shadow-xl, 0 40px 80px -30px rgba(15, 42, 75, 0.26));
}

/* Chip de prestation : léger relief + accent or au survol de la ligne */
._itemChip_n0uui_148 {
  transition: transform 240ms ease, background 240ms ease, color 240ms ease,
    border-color 240ms ease;
}
._item_n0uui_132:hover ._itemChip_n0uui_148 {
  transform: scale(1.08);
  color: #fff;
  background: linear-gradient(140deg, var(--gold), var(--gold-2));
  border-color: transparent;
}
._itemValue_n0uui_192 {
  transition: color 240ms ease;
}
._item_n0uui_132:hover ._itemValue_n0uui_192 {
  color: var(--gold-2);
}

/* Sceau : l'icône cadeau prend vie au survol */
._sealIcon_n0uui_109 {
  transition: transform 300ms ease;
}
._seal_n0uui_93:hover ._sealIcon_n0uui_109 {
  transform: scale(1.12) rotate(-6deg);
}
/* ============================================================
   Méthode — thème clair. Pastilles numérotées reliées par une
   fine ligne bleue en fond (desktop), masquée en mobile.
   Bleu + blanc, or réservé à l'eyebrow (SectionHeading).
   ============================================================ */

._root_1kj7u_7 {
  position: relative;
}

/* ---- Rangée d'étapes ---- */
._steps_1kj7u_12 {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(1.75rem, 3.5vw, 3rem);
  margin-top: clamp(2.75rem, 5vw, 4.5rem);
}

/* Fine ligne de liaison derrière les pastilles (desktop) —
   centrée verticalement sur la pastille de 60px (top = 30px),
   bornée aux centres des première et dernière pastilles. */
._steps_1kj7u_12::before {
  content: '';
  position: absolute;
  top: 30px;
  left: 12.5%;
  right: 12.5%;
  height: 1px;
  background: transparent;
  z-index: 0;
}

/* Ligne de liaison animée (« draw-in » au scroll, GSAP scaleX). */
._line_1kj7u_35 {
  position: absolute;
  top: 30px;
  left: 12.5%;
  right: 12.5%;
  height: 1px;
  background: var(--border-blue);
  transform-origin: left center;
  z-index: 0;
  pointer-events: none;
}

._step_1kj7u_12 {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.9rem;
}

/* ---- Pastille opaque : la ligne passe proprement derrière ---- */
._disc_1kj7u_58 {
  display: grid;
  place-items: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid var(--border-blue);
  box-shadow: var(--shadow-sm);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  line-height: 1;
  color: var(--blue-600);
  font-variant-numeric: tabular-nums;
  transition: transform 260ms cubic-bezier(0.22, 1, 0.36, 1), color 220ms ease, border-color 220ms ease,
    box-shadow 260ms ease;
}

/* ---- Survol : la pastille grandit légèrement, le chiffre passe or ---- */
._step_1kj7u_12:hover ._disc_1kj7u_58 {
  transform: scale(1.08);
  color: var(--gold, #c6a24c);
  border-color: var(--gold, #c6a24c);
  box-shadow: var(--shadow-md, 0 10px 28px rgba(22, 39, 63, 0.12));
}

._stepTitle_1kj7u_85 {
  margin: 0.15rem 0 0;
  color: var(--ink);
  min-height: 2.5em;
}

._stepText_1kj7u_91 {
  margin: 0;
  max-width: 30ch;
  color: var(--ink-2);
  font-size: 1.04rem;
  line-height: 1.65;
}

/* ---- CTA centré ---- */
._cta_1kj7u_100 {
  display: flex;
  justify-content: center;
  margin-top: clamp(2.75rem, 5vw, 4rem);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

/* Tablette : 2 colonnes, ligne masquée */
@media (max-width: 900px) {
  ._steps_1kj7u_12 {
    grid-template-columns: repeat(2, 1fr);
    row-gap: clamp(2.5rem, 5vw, 3.25rem);
  }
  ._steps_1kj7u_12::before,
  ._line_1kj7u_35 {
    display: none;
  }
}

/* Mobile : on conserve la grille 2×2 (même agencement que PC) */
@media (max-width: 640px) {
  ._steps_1kj7u_12 {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.6rem 1rem;
  }
  ._stepTitle_1kj7u_85 {
    font-size: 1rem;
  }
  ._stepText_1kj7u_91 {
    font-size: 0.92rem;
    max-width: none;
  }
}
._wrap_1oa9l_1 {
  position: absolute;
  inset: 0;
  z-index: -1; /* derrière le contenu, au-dessus du fond marine */
  overflow: hidden;
  pointer-events: none;
}
._meteor_1oa9l_8 {
  position: absolute;
  top: -40px;
  width: 3px;
  height: 3px;
  border-radius: 9999px;
  background: #f4e2a6;
  box-shadow: 0 0 10px 2px rgba(240, 220, 150, 0.75);
  animation-name: _meteor_1oa9l_8;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  opacity: 0;
}
._meteor_1oa9l_8::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  width: 90px;
  height: 1px;
  transform: translateY(-50%);
  background: linear-gradient(90deg, rgba(244, 226, 166, 0.9), transparent);
}
@keyframes _meteor_1oa9l_8 {
  0% {
    transform: rotate(215deg) translateX(0);
    opacity: 0;
  }
  8% {
    opacity: 1;
  }
  100% {
    transform: rotate(215deg) translateX(-780px);
    opacity: 0;
  }
}
/* Gardes reduced-motion retirés : animations toujours actives. */
/* ============================================================
   Stats — bandeau MARINE (le temps fort « Résultats »).
   Chiffres en OR, panneau translucide, hairlines claires.
   ============================================================ */

._root_1kv1j_6 {
  position: relative;
  background: radial-gradient(135% 115% at 50% -12%, #213956 0%, #16273f 46%, #0d1a2c 100%);
  overflow: hidden;
  isolation: isolate;
}
/* Aurora glow (blobs or + bleu qui dérivent lentement) — inspiré 21st.dev */
._root_1kv1j_6::before,
._root_1kv1j_6::after {
  content: '';
  position: absolute;
  z-index: -1;
  border-radius: 50%;
  filter: blur(70px);
  pointer-events: none;
}
._root_1kv1j_6::before {
  width: 460px;
  height: 460px;
  top: -160px;
  left: 3%;
  background: radial-gradient(circle, rgba(198, 162, 76, 0.2), transparent 70%);
  animation: _auroraA_1kv1j_1 24s ease-in-out infinite alternate;
}
._root_1kv1j_6::after {
  width: 400px;
  height: 400px;
  bottom: -170px;
  right: 5%;
  background: radial-gradient(circle, rgba(216, 187, 107, 0.11), transparent 72%);
  animation: _auroraB_1kv1j_1 30s ease-in-out infinite alternate;
}
@keyframes _auroraA_1kv1j_1 {
  to {
    transform: translate(70px, 40px) scale(1.18);
  }
}
@keyframes _auroraB_1kv1j_1 {
  to {
    transform: translate(-60px, -30px) scale(1.12);
  }
}
/* Gardes reduced-motion retirés : aurora toujours active. */
._root_1kv1j_6 .sh-title,
._root_1kv1j_6 .sh-word {
  color: #fff;
}
._root_1kv1j_6 .eyebrow {
  color: var(--gold-bright);
}

._head_1kv1j_57 {
  margin-bottom: clamp(2.5rem, 4vw, 3.75rem);
}
/* Titre « vaporisé » (canvas de particules) */
._vaporTitle_1kv1j_61 {
  width: 100%;
  height: clamp(3.4rem, 7vw, 5rem);
  margin: 0.5rem 0 0.9rem;
}
._vaporRule_1kv1j_66 {
  display: block;
  width: 54px;
  height: 3px;
  border-radius: 3px;
  margin: 0 auto;
  background: var(--grad-gold);
}

/* ---- Panneau translucide sur marine ---- */
._panel_1kv1j_76 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.03));
  border: 1px solid var(--border-gold);
  border-radius: var(--r-lg);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18),
    inset 0 -18px 40px -24px rgba(0, 0, 0, 0.55), 0 24px 60px -28px rgba(6, 14, 28, 0.7),
    inset 0 0 0 1px rgba(198, 162, 76, 0.1);
  overflow: hidden;
}

._item_1kv1j_88 {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.35rem;
  padding: clamp(1.9rem, 3vw, 2.75rem) clamp(1.1rem, 2.4vw, 1.85rem);
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  transition: background var(--dur-mid) var(--ease-out);
}
._item_1kv1j_88:first-child {
  border-left: none;
}
._item_1kv1j_88:hover {
  background: rgba(255, 255, 255, 0.05);
}
._item_1kv1j_88:hover ._valueInner_1kv1j_104 {
  text-shadow: 0 3px 16px rgba(6, 14, 28, 0.6), 0 0 20px rgba(216, 187, 107, 0.32);
}
._item_1kv1j_88:hover ._bar_1kv1j_107 {
  width: 40px;
  background: var(--grad-gold);
  box-shadow: 0 0 12px rgba(198, 162, 76, 0.55);
}

/* ---- Chiffre (OR) ---- */
._value_1kv1j_104 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 1.55rem + 2.5vw, 3.1rem);
  font-weight: 800;
  min-height: 2em;
  display: flex;
  align-items: center;
  justify-content: center;
}
._valueInner_1kv1j_104 {
  text-align: center;
  line-height: 1.08;
  letter-spacing: -0.025em;
  color: var(--gold-bright);
  font-variant-numeric: tabular-nums;
  text-shadow: 0 3px 14px rgba(6, 14, 28, 0.55), 0 1px 0 rgba(0, 0, 0, 0.32);
  transition: text-shadow var(--dur-mid) var(--ease-out);
}

._bar_1kv1j_107 {
  width: 24px;
  height: 3px;
  border-radius: var(--r-pill);
  background: var(--gold);
  margin: 0.95rem 0 0.55rem;
  transition: box-shadow var(--dur-mid) var(--ease-out), width var(--dur-mid) var(--ease-out);
}

._label_1kv1j_142 {
  color: #e4ecf6;
  font-weight: 600;
  font-size: 1rem;
  line-height: 1.3;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.5);
}

._detail_1kv1j_150 {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.85rem;
  line-height: 1.5;
  max-width: 24ch;
}

/* ---- Responsive ---- */
@media (max-width: 900px) {
  ._panel_1kv1j_76 {
    grid-template-columns: repeat(2, 1fr);
  }
  ._item_1kv1j_88 {
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    border-top: none;
  }
  ._item_1kv1j_88:nth-child(odd),
  ._item_1kv1j_88:first-child {
    border-left: none;
  }
  ._item_1kv1j_88:nth-child(n + 3) {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }
}
/* Mobile : on conserve la grille 2×2 (même agencement que PC) */
@media (max-width: 640px) {
  ._item_1kv1j_88 {
    padding: 1.35rem 0.9rem;
  }
  ._value_1kv1j_104 {
    font-size: 1.55rem;
  }
  ._label_1kv1j_142 {
    font-size: 0.82rem;
  }
  ._detail_1kv1j_150 {
    font-size: 0.72rem;
  }
}

/* Note légale sous le panneau (estimation indicative) */
._footnote_1kv1j_191 {
  margin-top: 1.2rem;
  text-align: center;
  font-size: 0.8rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.62);
}
/* ============================================================
   Engagements — grille de 8 cartes sobres, accent or discret.
   ============================================================ */

._root_pwlp6_5 {
  position: relative;
}

._grid_pwlp6_9 {
  margin-top: clamp(2.2rem, 4vw, 3.2rem);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.4rem;
}

._card_pwlp6_16 {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-xs);
  padding: clamp(1.25rem, 2.2vw, 1.6rem);
  transition: transform var(--dur-mid) var(--ease-out), box-shadow var(--dur-mid) var(--ease-out),
    border-color var(--dur-mid) var(--ease-out);
}
._card_pwlp6_16:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--border-gold, var(--gold));
}

._chip_pwlp6_34 {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 13px;
  background: linear-gradient(155deg, #ffffff 0%, var(--gold-tint) 100%);
  border: 1px solid var(--border-gold);
  color: var(--blue-700);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.75), var(--shadow-xs);
  margin-bottom: 0.45rem;
  transition: background var(--dur-mid) var(--ease-out), color var(--dur-mid) var(--ease-out),
    box-shadow var(--dur-mid) var(--ease-out), transform var(--dur-mid) var(--ease-out);
}
._card_pwlp6_16:hover ._chip_pwlp6_34 {
  background: linear-gradient(140deg, var(--gold), var(--gold-2));
  border-color: transparent;
  color: #fff;
  transform: translateY(-2px) rotate(-3deg);
  box-shadow: 0 10px 22px -8px rgba(158, 123, 44, 0.6);
}

._cardTitle_pwlp6_56 {
  margin: 0;
  color: var(--ink);
  font-size: 1.02rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}

._cardText_pwlp6_64 {
  margin: 0;
  color: var(--ink-2);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* ---- Responsive ---- */
@media (max-width: 1024px) {
  ._grid_pwlp6_9 {
    grid-template-columns: repeat(2, 1fr);
  }
}
/* Mobile : on conserve 2 colonnes (même agencement que PC) */
@media (max-width: 560px) {
  ._grid_pwlp6_9 {
    gap: 0.8rem;
  }
  ._card_pwlp6_16 {
    padding: 1rem 0.9rem;
  }
  ._chip_pwlp6_34 {
    width: 38px;
    height: 38px;
  }
  ._cardTitle_pwlp6_56 {
    font-size: 0.92rem;
  }
  ._cardText_pwlp6_64 {
    font-size: 0.82rem;
  }
}
/* ============================================================
   ZonesRoadmap — « parcours » animé du secteur : un chemin doré
   sinueux qui se dessine au scroll, jalons (communes) qui
   surgissent, comète qui voyage le long du tracé.
   (Inspiré du pattern 21st « Animated Roadmap », réécrit GSAP.)
   ============================================================ */
._roadmap_1elqy_7 {
  position: relative;
  width: 100%;
  max-width: 680px;
  margin: clamp(2.5rem, 4vw, 3.5rem) auto 0;
  aspect-ratio: 100 / 132; /* = viewBox de la piste → alignement des jalons */
}

._track_1elqy_15 {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
  z-index: 0;
}
._routeBg_1elqy_23 {
  fill: none;
  stroke: rgba(198, 162, 76, 0.28);
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-dasharray: 0.4 5;
}
._route_1elqy_23 {
  fill: none;
  stroke: url(#rmGold);
  stroke-width: 3;
  stroke-linecap: round;
  filter: drop-shadow(0 1px 3px rgba(166, 129, 47, 0.35));
}

/* Comète (HTML → reste ronde) */
._comet_1elqy_39 {
  position: absolute;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: radial-gradient(circle, #fff6df 0%, var(--gold-bright) 45%, var(--gold) 70%);
  box-shadow: 0 0 12px 3px rgba(216, 187, 107, 0.7), 0 0 3px 1px rgba(255, 246, 223, 0.9);
  transform: translate(-50%, -50%);
  pointer-events: none;
  /* Sous les nœuds (z-index 2) : la comète passe DERRIÈRE les pastilles
     numérotées au lieu de leur passer par-dessus. */
  z-index: 1;
  opacity: 0;
}

/* Jalons */
._stop_1elqy_55 {
  position: absolute;
  transform: translate(-50%, -50%);
  width: 54px;
  height: 54px;
  z-index: 2;
}

._node_1elqy_63 {
  position: relative;
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: var(--grad-gold);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.35rem;
  box-shadow: 0 8px 20px -6px rgba(166, 129, 47, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.4),
    0 0 0 7px rgba(198, 162, 76, 0.12);
}
._node_1elqy_63 svg {
  width: 22px;
  height: 22px;
}
._stopStart_1elqy_82 ._node_1elqy_63 {
  background: radial-gradient(130% 130% at 30% 20%, #23405f, #16273f 60%, #0e1c2f);
  color: var(--gold-bright);
  box-shadow: 0 8px 22px -6px rgba(11, 21, 36, 0.55), 0 0 0 7px rgba(22, 39, 63, 0.1);
}
/* Halo pulsant sur les nœuds */
._node_1elqy_63::after {
  content: '';
  position: absolute;
  inset: -7px;
  border-radius: 50%;
  border: 1.5px solid rgba(198, 162, 76, 0.5);
  animation: _rmPulse_1elqy_1 3s ease-out infinite;
}
._stopStart_1elqy_82 ._node_1elqy_63::after {
  border-color: rgba(22, 39, 63, 0.35);
}
@keyframes _rmPulse_1elqy_1 {
  0% {
    transform: scale(0.75);
    opacity: 0.7;
  }
  70% {
    opacity: 0;
  }
  100% {
    transform: scale(1.6);
    opacity: 0;
  }
}

._card_1elqy_113 {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  padding: 0.7rem 1.1rem;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(6px);
  border: 1px solid var(--border-2);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-sm);
  width: max-content;
  max-width: 230px;
}
._stopRight_1elqy_129 ._card_1elqy_113 {
  left: calc(100% + 0.85rem);
  text-align: left;
}
._stopLeft_1elqy_133 ._card_1elqy_113 {
  right: calc(100% + 0.85rem);
  text-align: right;
}
._cardTag_1elqy_137 {
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--gold-ink);
}
._cardLabel_1elqy_144 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.12rem;
  line-height: 1.15;
  color: var(--ink);
  letter-spacing: -0.01em;
}

/* ---- Mobile : nœuds à gauche (géré en JS), cartes à droite ---- */
@media (max-width: 620px) {
  ._roadmap_1elqy_7 {
    max-width: 440px;
  }
  ._stop_1elqy_55 {
    width: 46px;
    height: 46px;
  }
  ._node_1elqy_63 {
    font-size: 1.15rem;
  }
  ._card_1elqy_113 {
    max-width: 58vw;
    padding: 0.55rem 0.9rem;
  }
  ._cardLabel_1elqy_144 {
    font-size: 1rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  ._node_1elqy_63::after {
    animation: none;
  }
}
/* ============================================================
   Zones — bannière Paris pleine largeur + villes phares en ligne.
   ============================================================ */

._root_1c9v2_5 {
  position: relative;
}

/* ---- Panneau carte (marine profond) ---- */
._mapPanel_1c9v2_10 {
  position: relative;
  margin-top: clamp(2.5rem, 4vw, 3.5rem);
  border-radius: 28px;
  overflow: hidden;
  clip-path: inset(0 round 28px);
  box-shadow: var(--shadow-md);
  background: radial-gradient(125% 100% at 50% 0%, #f4f6fa 0%, #e7ecf3 58%, #dfe5ef 100%);
  border: 1px solid var(--border-2);
  padding: clamp(1.4rem, 3vw, 2.4rem);
  isolation: isolate;
}
._atouts_1c9v2_22 {
  position: absolute;
  left: clamp(1rem, 3vw, 2rem);
  bottom: clamp(1rem, 3vw, 1.6rem);
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  z-index: 1;
}
._atout_1c9v2_22 {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem 0.5rem 0.5rem;
  border-radius: var(--r-pill);
  background: #ffffff;
  backdrop-filter: blur(8px);
  border: 1px solid var(--border-2);
  color: var(--ink);
  font-size: 0.85rem;
  font-weight: 600;
  box-shadow: var(--shadow-sm);
}
._atoutIcon_1c9v2_45 {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--gold-tint);
  color: var(--gold-2);
  flex-shrink: 0;
}

/* ---- Villes phares ---- */
._cities_1c9v2_57 {
  margin-top: clamp(1.6rem, 3vw, 2.4rem);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.1rem;
}
._city_1c9v2_63 {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-sm);
  padding: clamp(1.3rem, 2.5vw, 1.8rem);
  transition: transform var(--dur-mid) var(--ease-out), box-shadow var(--dur-mid) var(--ease-out),
    border-color var(--dur-mid) var(--ease-out);
}
._city_1c9v2_63:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--border-blue);
}
._cityNum_1c9v2_82 {
  position: absolute;
  top: 0.5rem;
  right: 0.9rem;
  z-index: 0;
  font-family: var(--font-display);
  font-size: 2.6rem;
  font-weight: 800;
  line-height: 1;
  color: var(--blue-50);
  transition: color var(--dur-mid) var(--ease-out);
}
._city_1c9v2_63:hover ._cityNum_1c9v2_82 {
  color: var(--gold-tint);
}
._cityIcon_1c9v2_97 {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: var(--blue-50);
  border: 1px solid var(--border-blue);
  color: var(--blue-600);
  transition: background var(--dur-mid) var(--ease-out), color var(--dur-mid) var(--ease-out),
    border-color var(--dur-mid) var(--ease-out);
}
._city_1c9v2_63:hover ._cityIcon_1c9v2_97 {
  background: var(--blue-700);
  border-color: var(--blue-700);
  color: #fff;
}
._cityName_1c9v2_116 {
  position: relative;
  z-index: 1;
  margin: 0;
  font-size: var(--fs-h4);
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.01em;
}
._cityTag_1c9v2_125 {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--gold-2);
}
._cityTag_1c9v2_125::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 2px;
  transform: rotate(45deg);
  background: var(--gold);
}

/* ---- Villes secondaires ---- */
._secondary_1c9v2_145 {
  margin-top: clamp(1.8rem, 3vw, 2.6rem);
  text-align: center;
}
._secondaryLabel_1c9v2_149 {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: var(--tracking-label);
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.9rem;
}
._tags_1c9v2_158 {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.55rem;
}
._tag_1c9v2_158 {
  padding: 0.4rem 0.95rem;
  border-radius: var(--r-pill);
  background: var(--white);
  border: 1px solid var(--border);
  color: var(--ink-2);
  font-size: 0.86rem;
  font-weight: 500;
  cursor: pointer;
  transition: color var(--dur-fast) var(--ease-out), border-color var(--dur-fast) var(--ease-out),
    background var(--dur-fast) var(--ease-out), transform var(--dur-fast) var(--ease-out),
    box-shadow var(--dur-fast) var(--ease-out);
}
/* Active (survol de la pastille) : s'illumine en or + le pin pulse sur la carte */
._tagActive_1c9v2_178 {
  background: var(--grad-gold);
  border-color: transparent;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

/* ---- Responsive ---- */
@media (max-width: 900px) {
  ._cities_1c9v2_57 {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 520px) {
  ._mapPanel_1c9v2_10 {
    padding-bottom: clamp(5.5rem, 20vw, 7rem);
  }
  ._atout_1c9v2_22 {
    font-size: 0.78rem;
  }
}

/* Libellé au-dessus des 4 communes principales */
._primaryLabel_1c9v2_202 {
  display: block;
  margin-top: clamp(1.8rem, 3vw, 2.6rem);
  margin-bottom: -0.6rem;
  text-align: center;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: var(--tracking-label);
  text-transform: uppercase;
  color: var(--gold-ink);
}

/* Phrase d'ouverture : autres communes étudiées au cas par cas */
._zoneNote_1c9v2_215 {
  max-width: 60ch;
  margin: 1.4rem auto 0;
  text-align: center;
  font-size: 0.92rem;
  line-height: 1.6;
  color: var(--ink-2);
}
/* ============================================================
   Select — menu déroulant custom animé (remplace <select>).
   Look aligné sur .control, panneau animé, options élégantes.
   ============================================================ */
._root_1blg7_5 {
  position: relative;
}

._trigger_1blg7_9 {
  width: 100%;
  min-height: 3.2rem;
  padding: 0 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  border-radius: var(--r-sm);
  background: var(--white);
  border: 1.5px solid var(--border-2);
  color: var(--ink);
  font-size: 1rem;
  font-family: var(--font-body);
  text-align: left;
  cursor: pointer;
  transition: border-color var(--dur-fast) var(--ease-out), box-shadow var(--dur-fast) var(--ease-out);
}
._trigger_1blg7_9:hover {
  border-color: var(--blue-300);
}
._triggerOpen_1blg7_30,
._trigger_1blg7_9:focus-visible {
  outline: none;
  border-color: var(--blue-500);
  box-shadow: 0 0 0 4px rgba(46, 107, 180, 0.14);
}
._placeholder_1blg7_36 ._value_1blg7_36 {
  color: var(--muted);
}
._value_1blg7_36 {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
._chev_1blg7_44 {
  flex-shrink: 0;
  color: var(--muted);
  transition: transform var(--dur-mid) var(--ease-out), color var(--dur-mid) var(--ease-out);
}
._triggerOpen_1blg7_30 ._chev_1blg7_44 {
  transform: rotate(180deg);
  color: var(--blue-600);
}

/* Panneau d'options */
._panel_1blg7_55 {
  position: absolute;
  z-index: 40;
  top: calc(100% + 6px);
  left: 0;
  right: 0;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-lg);
  padding: 0.4rem;
  opacity: 0;
  transform: translateY(-8px) scale(0.98);
  transform-origin: top center;
  pointer-events: none;
  transition: opacity var(--dur-fast) var(--ease-out), transform var(--dur-fast) var(--ease-out);
}
._panelOpen_1blg7_72 {
  opacity: 1;
  transform: none;
  pointer-events: auto;
}

._option_1blg7_78 {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.6rem;
  padding: 0.62rem 0.8rem;
  border-radius: var(--r-sm);
  background: transparent;
  color: var(--ink-2);
  font-size: 0.95rem;
  text-align: left;
  cursor: pointer;
  transition: background var(--dur-fast) var(--ease-out), color var(--dur-fast) var(--ease-out);
}
._optionActive_1blg7_93 {
  background: var(--gold-tint);
  color: var(--ink);
}
._optionSel_1blg7_97 {
  color: var(--gold-2);
  font-weight: 600;
}
._optionSel_1blg7_97 svg {
  color: var(--gold-2);
}

/* Recherche (options nombreuses) */
._searchRow_1blg7_106 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.55rem;
  margin-bottom: 0.3rem;
  border-radius: var(--r-sm);
  background: var(--mist);
  border: 1px solid var(--border);
  color: var(--muted);
}
._search_1blg7_106 {
  flex: 1;
  border: none;
  background: transparent;
  outline: none;
  font-size: 0.92rem;
  color: var(--ink);
  font-family: var(--font-body);
}
._options_1blg7_126 {
  max-height: 232px;
  overflow-y: auto;
}
._empty_1blg7_130 {
  padding: 0.6rem 0.8rem;
  color: var(--muted);
  text-align: center;
}
._section_1h877_1 {
  position: relative;
  overflow: hidden;
}

._layout_1h877_6 {
  position: relative;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(2rem, 4vw, 4.5rem);
  align-items: start;
}

._pitch_1h877_14 {
  align-self: start; /* aligne le haut du texte avec le haut du calculateur */
}

._title_1h877_18 {
  color: var(--ink);
  margin: 1.1rem 0 1.1rem;
  font-size: var(--fs-h2);
}
._title_1h877_18 em {
  color: var(--blue-600);
  font-style: normal;
}

._intro_1h877_28 {
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.65;
  max-width: 42ch;
  margin-bottom: 2.2rem;
}

._benefits_1h877_36 {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
._benefit_1h877_36 {
  display: flex;
  gap: 0.95rem;
  align-items: center;
}
._benefitIcon_1h877_46 {
  flex-shrink: 0;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  color: var(--blue-700);
  background: linear-gradient(155deg, #ffffff 0%, var(--gold-tint) 100%);
  border: 1px solid var(--border-gold);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.75), var(--shadow-xs);
}
._benefit_1h877_36 span:last-child {
  display: flex;
  flex-direction: column;
}
._benefit_1h877_36 strong {
  color: var(--ink);
  font-weight: 600;
  font-size: 1rem;
}
._benefit_1h877_36 em {
  color: var(--muted);
  font-style: normal;
  font-size: 0.9rem;
}

/* ---- Cartes ---- */
._card_1h877_74,
._results_1h877_75 {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: clamp(1.6rem, 3vw, 2.6rem);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
}

._grid_1h877_83 {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 1.1rem;
  margin-bottom: 1.6rem;
}

._error_1h877_90 {
  color: #b4442f;
  background: #fbeae6;
  border: 1px solid #f0c3b8;
  border-radius: var(--r-sm);
  padding: 0.7rem 1rem;
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

/* ---- Résultats ---- */
._resultsHead_1h877_101 {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding-bottom: 1.2rem;
  border-bottom: 1px solid var(--border);
  margin-bottom: 1.6rem;
}
._resultsTag_1h877_109 {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue-600);
  padding: 0.35rem 0.8rem;
  border: 1px solid var(--border-blue);
  border-radius: var(--r-pill);
}
._resultsLoc_1h877_119 {
  font-weight: 600;
  color: var(--ink-2);
}

._headline_1h877_124 {
  text-align: center;
  padding: 0.6rem 0 1.8rem;
}
._headlineLabel_1h877_128 {
  display: block;
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.6rem;
}
._headlineValue_1h877_136 {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2rem, 1.2rem + 3vw, 3rem);
  line-height: 1.05;
  color: var(--blue-700);
  letter-spacing: -0.02em;
}
._headlineValue_1h877_136 em {
  color: var(--gold-2);
  font-style: normal;
  margin: 0 0.2em;
}
._headlineSub_1h877_150 {
  display: block;
  margin-top: 0.5rem;
  color: var(--muted);
  font-size: 0.95rem;
}

._tiles_1h877_157 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.9rem;
  margin-bottom: 1.8rem;
}
._tile_1h877_157 {
  background: var(--mist);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 1.1rem;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
._tileGold_1h877_172 {
  background: var(--gold-tint);
  border-color: var(--border-gold);
}
._tileLabel_1h877_176 {
  font-size: 0.78rem;
  color: var(--muted);
}
._tileValue_1h877_180 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--ink);
  font-variant-numeric: tabular-nums;
}
._tileGold_1h877_172 ._tileValue_1h877_180 {
  color: var(--gold-2);
}
._tileHint_1h877_190 {
  font-size: 0.72rem;
  color: var(--muted);
}

/* ---- Comparatif ---- */
._compare_1h877_196 {
  padding-top: 1.6rem;
  border-top: 1px solid var(--border);
}
._compareTitle_1h877_200 {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1.1rem;
}
._bars_1h877_208 {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}
._barRow_1h877_213 {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 0.9rem;
  align-items: center;
}
._barLabel_1h877_219 {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}
._barLabel_1h877_219 span {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ink);
}
._barLabel_1h877_219 em {
  font-style: normal;
  font-size: 0.72rem;
  color: var(--muted);
}
._barTrack_1h877_234 {
  background: var(--cloud-2);
  border-radius: var(--r-pill);
  height: 34px;
  overflow: hidden;
}
._barFill_1h877_240 {
  height: 100%;
  border-radius: var(--r-pill);
  background: var(--blue-300);
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 0.8rem;
  min-width: fit-content;
  transition: width 0.9s var(--ease-out);
}
._barGold_1h877_251 {
  background: var(--grad-gold);
  box-shadow: var(--shadow-gold);
}
._barValue_1h877_255 {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--blue-800);
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}
._barGold_1h877_251 ._barValue_1h877_255 {
  color: var(--blue-900);
}

._disclaimer_1h877_266 {
  margin: 1.6rem 0 1.4rem;
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.6;
}
._resultActions_1h877_272 {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

@media (max-width: 900px) {
  ._layout_1h877_6 {
    grid-template-columns: minmax(0, 1fr); /* minmax(0,…) : évite le débordement par min-content */
  }
  ._pitch_1h877_14 {
    position: static;
    min-width: 0;
  }
}
/* Mobile : mêmes agencements que PC — formulaire 2 colonnes, 3 tuiles en ligne */
@media (max-width: 560px) {
  ._grid_1h877_83 {
    gap: 1rem 0.75rem;
  }
  ._tiles_1h877_157 {
    gap: 0.55rem;
  }
  ._tile_1h877_157 {
    padding: 0.8rem 0.6rem;
  }
  ._tileValue_1h877_180 {
    font-size: 1.12rem;
  }
  ._tileLabel_1h877_176 {
    font-size: 0.7rem;
  }
  ._tileHint_1h877_190 {
    font-size: 0.64rem;
  }
  ._barRow_1h877_213 {
    grid-template-columns: 96px 1fr;
  }
}

/* ============================================================
   Champ « Extérieur » — puces cumulables (multi-sélection).
   ============================================================ */
._fieldWide_1h877_315 {
  grid-column: 1 / -1;
}
._fieldHint_1h877_318 {
  font-weight: 500;
  color: var(--muted);
  text-transform: none;
  letter-spacing: 0;
}
._chips_1h877_324 {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}
._chip_1h877_324 {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.6rem 1rem 0.6rem 0.75rem;
  border-radius: var(--r-pill);
  border: 1px solid var(--border-2);
  background: var(--white);
  color: var(--ink-2);
  font-family: inherit;
  font-size: 0.94rem;
  font-weight: 600;
  cursor: pointer;
  transition: border-color var(--dur-fast) var(--ease-out),
    background var(--dur-fast) var(--ease-out), color var(--dur-fast) var(--ease-out),
    box-shadow var(--dur-fast) var(--ease-out), transform var(--dur-fast) var(--ease-out);
}
._chip_1h877_324 svg {
  color: var(--muted);
  transition: color var(--dur-fast) var(--ease-out), transform var(--dur-fast) var(--ease-out);
}
._chip_1h877_324:hover {
  border-color: var(--border-blue);
  color: var(--blue-700);
}
._chip_1h877_324:hover svg {
  color: var(--blue-600);
}
._chipActive_1h877_357 {
  background: var(--blue-700);
  border-color: var(--blue-700);
  color: #fff;
  box-shadow: var(--shadow-sm);
}
._chipActive_1h877_357 svg {
  color: var(--gold-bright, #e6c874);
  transform: scale(1.1);
}
._chipActive_1h877_357:hover {
  background: var(--blue-800, #12203a);
  border-color: var(--blue-800, #12203a);
  color: #fff;
}

/* ============================================================
   Lisibilité du formulaire : intitulés plus grands et plus
   contrastés, davantage d'espace vertical entre les lignes.
   ============================================================ */
._grid_1h877_83 {
  row-gap: 1.45rem;
}
._grid_1h877_83 .field label {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--ink);
}
._grid_1h877_83 .control {
  font-size: 1rem;
  color: var(--ink);
}

/* Note de zone sous le bouton (zone principale + étude individuelle) */
._zoneNote_1h877_391 {
  margin: 1rem 0 0;
  font-size: 0.85rem;
  line-height: 1.55;
  color: var(--muted);
  text-align: center;
}

/* ---- Panneau « commune étudiée individuellement » ---- */
._unknown_1h877_400 {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.9rem;
  padding: clamp(2rem, 4vw, 3rem);
}
._unknownIcon_1h877_408 {
  display: grid;
  place-items: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--gold-soft);
  color: var(--gold-2);
}
._unknownTitle_1h877_417 {
  margin: 0;
  color: var(--ink);
  font-size: var(--fs-h4);
}
._unknownText_1h877_422 {
  margin: 0 0 0.6rem;
  max-width: 52ch;
  color: var(--ink-2);
  line-height: 1.65;
}

/* ---- Étape finale : coordonnées obligatoires pour dévoiler l'estimation ---- */
._leadGate_1h877_430 {
  margin-top: 1.5rem;
  padding-top: 1.3rem;
  border-top: 1px dashed var(--border-2);
}
._leadNote_1h877_435 {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  margin: 0 0 0.95rem;
  font-size: 0.9rem;
  line-height: 1.45;
  color: var(--ink-2);
}
._leadNote_1h877_435 svg {
  flex: none;
  margin-top: 0.12rem;
  color: var(--gold-2);
}

/* ---- Mention RGPD sous les champs de contact ---- */
._rgpdNote_1h877_451 {
  margin: 0.85rem 0 0;
  font-size: 0.78rem;
  line-height: 1.45;
  color: var(--muted);
}
._rgpdLink_1h877_457 {
  color: var(--gold-2);
  text-decoration: underline;
  text-underline-offset: 2px;
}
._rgpdLink_1h877_457:hover {
  color: var(--gold-ink);
}

/* ---- Résultats : deux scénarios (moyenne / courte durée) ---- */
._scenarios_1h877_467 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1.1rem;
}
._scenario_1h877_467 {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  padding: 1.1rem 1.15rem 1.2rem;
  border-radius: var(--r-md);
  background: var(--white);
  border: 1px solid var(--border-2);
  box-shadow: var(--shadow-xs);
}
._scenarioGold_1h877_483 {
  border-color: rgba(198, 162, 76, 0.5);
  background: linear-gradient(180deg, var(--gold-tint), var(--white) 62%);
}
._scenarioHead_1h877_487 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
}
._scenarioTitle_1h877_493 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--ink);
}
._scenarioBadge_1h877_499 {
  font-size: 0.63rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 0.24rem 0.55rem;
  border-radius: var(--r-pill);
  background: rgba(198, 162, 76, 0.16);
  color: var(--gold-ink);
  white-space: nowrap;
}
._scenario_1h877_467:not(._scenarioGold_1h877_483) ._scenarioBadge_1h877_499 {
  background: rgba(22, 39, 63, 0.07);
  color: var(--blue-700);
}
._scenarioRent_1h877_514 {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}
._scenarioRentLabel_1h877_519 {
  font-size: 0.78rem;
  color: var(--muted);
}
._scenarioRentValue_1h877_523 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.2rem, 1rem + 1vw, 1.55rem);
  color: var(--ink);
  line-height: 1.1;
}
._scenarioRentValue_1h877_523 em {
  font-style: normal;
  color: var(--gold-2);
  margin: 0 0.1rem;
}
._scenarioRentValue_1h877_523 small {
  font-size: 0.58em;
  font-weight: 600;
  color: var(--muted);
  margin-left: 0.15rem;
}
._scenarioRows_1h877_541 {
  list-style: none;
  margin: 0;
  padding: 0.5rem 0 0;
  border-top: 1px solid var(--border-2);
  display: flex;
  flex-direction: column;
  gap: 0.42rem;
}
._scenarioRows_1h877_541 li {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.6rem;
  font-size: 0.85rem;
  color: var(--ink-2);
}
._scenarioRows_1h877_541 strong {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--ink);
}
._scenarioNet_1h877_563 strong {
  color: var(--gold-2);
}
._scenarioHint_1h877_566 {
  margin: 0;
  font-size: 0.73rem;
  line-height: 1.4;
  color: var(--muted);
}

/* ---- Gain moyenne durée vs longue durée ---- */
._gainRow_1h877_574 {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.75rem 1rem;
  margin-bottom: 1.3rem;
  border-radius: var(--r-md);
  background: rgba(198, 162, 76, 0.1);
  border: 1px solid rgba(198, 162, 76, 0.28);
}
._gainValue_1h877_584 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--gold-2);
  line-height: 1;
  flex: none;
}
._gainLabel_1h877_592 {
  font-size: 0.84rem;
  line-height: 1.35;
  color: var(--ink-2);
}

@media (max-width: 560px) {
  ._scenarios_1h877_467 {
    grid-template-columns: 1fr;
  }
}
/* ============================================================
   Faq — thème clair, section blanche. Accordéon accessible.
   Bleu + blanc, or réservé au losange de l'eyebrow (auto).
   ============================================================ */

._root_1e7j6_6 {
  background: var(--white);
}

._layout_1e7j6_10 {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(2.5rem, 5vw, 5rem);
  align-items: start;
}

/* ---- Colonne gauche (sticky) ---- */
._aside_1e7j6_18 {
  position: sticky;
  top: 110px;
  align-self: start;
}

._contactCard_1e7j6_24 {
  margin-top: 2rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-sm);
  padding: clamp(1.4rem, 3vw, 1.8rem);
  transition: box-shadow var(--dur-mid) var(--ease-out),
    border-color var(--dur-mid) var(--ease-out),
    transform var(--dur-mid) var(--ease-out);
}
._contactCard_1e7j6_24:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--border-blue);
  transform: translateY(-4px);
}

._contactLead_1e7j6_41 {
  font-size: 0.98rem;
  line-height: 1.6;
  color: var(--muted);
  margin-bottom: 1.3rem;
  max-width: 34ch;
}

._contactLinks_1e7j6_49 {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

._contactLink_1e7j6_49 {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  min-height: 44px;
  padding: 0.55rem 0.65rem;
  margin-inline: -0.65rem;
  border-radius: var(--r-md);
  transition: background var(--dur-fast) var(--ease-out);
}
._contactLink_1e7j6_49:hover {
  background: var(--blue-50);
}

._contactIcon_1e7j6_69 {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  color: var(--blue-700);
  background: linear-gradient(155deg, #ffffff 0%, var(--gold-tint) 100%);
  border: 1px solid var(--border-gold);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.75), var(--shadow-xs);
  transition: background var(--dur-fast) var(--ease-out),
    border-color var(--dur-fast) var(--ease-out), color var(--dur-fast) var(--ease-out);
}
._contactLink_1e7j6_49:hover ._contactIcon_1e7j6_69 {
  background: linear-gradient(140deg, var(--gold), var(--gold-2));
  border-color: transparent;
  color: #fff;
}

._contactText_1e7j6_89 {
  display: flex;
  flex-direction: column;
  line-height: 1.3;
  min-width: 0;
}
._contactText_1e7j6_89 em {
  font-style: normal;
  font-size: 0.74rem;
  letter-spacing: 0.02em;
  color: var(--muted);
}
._contactText_1e7j6_89 strong {
  font-weight: 600;
  font-size: 0.98rem;
  color: var(--ink);
  transition: color var(--dur-fast) var(--ease-out);
}
._contactLink_1e7j6_49:hover ._contactText_1e7j6_89 strong {
  color: var(--blue-700);
}

/* ---- Colonne droite (accordéon) ---- */
._items_1e7j6_112 {
  display: flex;
  flex-direction: column;
}

._item_1e7j6_112 {
  border-bottom: 1px solid var(--border);
}
._item_1e7j6_112:first-child {
  border-top: 1px solid var(--border);
}

/* h3 wrapper — neutralisé visuellement, préserve la sémantique */
._qHeading_1e7j6_125 {
  margin: 0;
  font: inherit;
  letter-spacing: normal;
  color: inherit;
}

._q_1e7j6_125 {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem 0.15rem;
  text-align: left;
  color: var(--ink);
}

._num_1e7j6_142 {
  flex-shrink: 0;
  width: 1.7rem;
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--blue-400);
  font-variant-numeric: tabular-nums;
}

._qText_1e7j6_152 {
  flex: 1;
  min-width: 0;
  font-family: var(--font-body);
  font-size: clamp(1.02rem, 0.97rem + 0.3vw, 1.15rem);
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: -0.005em;
  color: var(--ink);
  transition: color var(--dur-fast) var(--ease-out);
}
._q_1e7j6_125:hover ._qText_1e7j6_152 {
  color: var(--blue-700);
}

._toggle_1e7j6_167 {
  flex-shrink: 0;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--blue-50);
  border: 1px solid var(--border-blue);
  color: var(--blue-600);
  transition: background var(--dur-fast) var(--ease-out),
    border-color var(--dur-fast) var(--ease-out), color var(--dur-fast) var(--ease-out),
    transform var(--dur-fast) var(--ease-out);
}
._q_1e7j6_125:hover ._toggle_1e7j6_167 {
  border-color: var(--blue-400);
  transform: scale(1.08);
}
._toggleOpen_1e7j6_185,
._q_1e7j6_125:hover ._toggleOpen_1e7j6_185 {
  background: var(--blue-600);
  border-color: var(--blue-600);
  color: #fff;
}

/* Icône plus/minus : rotation fluide à l'ouverture / fermeture */
._toggle_1e7j6_167 svg {
  transition: transform var(--dur-mid) var(--ease-out);
}
._toggleOpen_1e7j6_185 svg {
  transform: rotate(180deg);
}

/* ---- Panneau (réponse) — animation grid-template-rows 0fr → 1fr ---- */
._panel_1e7j6_201 {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows var(--dur-mid) var(--ease-out);
}
._panelOpen_1e7j6_206 {
  grid-template-rows: 1fr;
}
._panelInner_1e7j6_209 {
  min-height: 0;
  overflow: hidden;
}
._answer_1e7j6_213 {
  padding: 0 3.4rem 1.6rem 2.7rem;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.7;
  max-width: 62ch;
  opacity: 0;
  transition: opacity var(--dur-mid) var(--ease-out);
}
._panelOpen_1e7j6_206 ._answer_1e7j6_213 {
  opacity: 1;
}

/* ---- Responsive ---- */
@media (max-width: 900px) {
  ._layout_1e7j6_10 {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  ._aside_1e7j6_18 {
    position: static;
  }
}

@media (max-width: 560px) {
  ._q_1e7j6_125 {
    gap: 0.75rem;
  }
  ._num_1e7j6_142 {
    width: 1.5rem;
    font-size: 0.82rem;
  }
  ._answer_1e7j6_213 {
    padding: 0 0.5rem 1.4rem 2.25rem;
  }
}

/* Gardes reduced-motion retirés : transitions toujours actives. */
/* ============================================================
   FinalCta — split marine net | photo nette.
   ============================================================ */

._root_i489n_5 {
  background: var(--white);
}

._band_i489n_9 {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  min-height: 460px;
}

/* ---- Panneau marine ---- */
._panel_i489n_19 {
  position: relative;
  overflow: hidden;
  background: radial-gradient(135% 130% at 18% 0%, #22405f 0%, #16273f 46%, #0d1a2c 100%);
  padding: clamp(2.9rem, 4.5vw, 5rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.25rem;
}
/* Halo doré très doux et STATIQUE (chaleur, aucun glow criard) */
._panel_i489n_19::before {
  content: '';
  position: absolute;
  top: -28%;
  right: -16%;
  width: 58%;
  height: 74%;
  background: radial-gradient(circle, rgba(198, 162, 76, 0.13), transparent 70%);
  pointer-events: none;
}
/* Cadre doré fin façon papeterie de luxe — bespoke, sobre */
._panel_i489n_19::after {
  content: '';
  position: absolute;
  inset: 15px;
  border: 1px solid rgba(198, 162, 76, 0.32);
  border-radius: 16px;
  pointer-events: none;
}

._title_i489n_50 {
  position: relative;
  margin: 0;
  color: var(--white);
  font-size: var(--fs-h2);
  max-width: 14ch;
}
._text_i489n_57 {
  position: relative;
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: var(--fs-lead);
  line-height: 1.6;
  max-width: 44ch;
}
._ctas_i489n_65 {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 0.35rem;
}
._points_i489n_72 {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: 1.3rem;
  margin-top: 1rem;
}
._point_i489n_72 {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.86rem;
  font-weight: 500;
}
._pointIcon_i489n_87 {
  display: grid;
  place-items: center;
  width: 27px;
  height: 27px;
  border-radius: 50%;
  background: rgba(198, 162, 76, 0.18);
  color: var(--gold-bright);
  flex-shrink: 0;
}

/* ---- Photo nette ---- */
._photo_i489n_99 {
  position: relative;
  min-height: 340px;
  clip-path: inset(0 0 0 0);
}
._photo_i489n_99 img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
._photo_i489n_99::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(16, 30, 51, 0.45), transparent 22%);
  pointer-events: none;
}

/* ---- Responsive ---- */
/* Mobile : même ordre que PC — panneau marine d'abord, photo ensuite */
@media (max-width: 820px) {
  ._band_i489n_9 {
    grid-template-columns: 1fr;
  }
  ._photo_i489n_99 {
    min-height: 220px;
  }
  ._photo_i489n_99::before {
    background: linear-gradient(0deg, rgba(16, 30, 51, 0.4), transparent 30%);
  }
}
/* ============================================================
   SERENYA CONCIERGERIE — DESIGN TOKENS (v3)
   Base CLAIRE + couleurs du LOGO : bleu marine + OR généreux.
   Fonts: Outfit (display) · DM Sans (body).
   ============================================================ */

:root {
  /* ---- Blue scale = marine du logo (foncé) → bleu clair (tints) ---- */
  --blue-50: #F3F6FB;
  --blue-100: #E7EEF7;
  --blue-200: #CBD9EC;
  --blue-300: #9DB4D2;
  --blue-400: #5E7BA5;
  --blue-500: #2C4C7A; /* primaire (marine profond) */
  --blue-600: #213C63;
  --blue-700: #16273F; /* MARINE du logo — titres / boutons / texte */
  --blue-800: #101E33;
  --blue-900: #0B1524;

  /* ---- Or (signature — utilisé généreusement) ---- */
  --gold: #C6A24C;
  --gold-bright: #D8BB6B;
  --gold-2: #9E7B2C; /* or lisible sur clair (grands textes) */
  --gold-ink: #7E611E; /* or petit texte — AA 5.8:1 sur blanc / 5.2:1 sur --cloud */
  --gold-soft: #F1E7C7;
  --gold-tint: #FBF6E7;

  /* ---- Neutres / surfaces claires ---- */
  --white: #FFFFFF;
  --bg: #F7F9FC;
  --surface: #FFFFFF;
  --cloud: #EEF2F8;
  --cloud-2: #E4EBF4;
  --mist: #F4F7FB;

  /* ---- Encre (marine) ---- */
  --ink: #16273F; /* texte principal = marine logo */
  --ink-2: #3A4A63;
  --muted: #5D6A80;

  /* ---- Lignes ---- */
  --border: #E5EAF1;
  --border-2: #D3DCE8;
  --border-blue: rgba(44, 76, 122, 0.22);
  --border-gold: rgba(198, 162, 76, 0.45);

  /* ---- Sémantique ---- */
  --primary: var(--blue-700);
  --primary-strong: var(--blue-800);
  --accent: var(--gold);
  --text: var(--ink);
  --text-muted: var(--muted);

  /* ---- Gradients ---- */
  --grad-blue: linear-gradient(180deg, #F7F9FC 0%, #E9EFF7 100%);
  --grad-cloud: linear-gradient(180deg, #FFFFFF 0%, #F1F5FB 100%);
  --grad-navy: linear-gradient(180deg, #22406A 0%, #16273F 60%, #101E33 100%);
  --grad-cta: linear-gradient(180deg, #22406A 0%, #16273F 100%); /* bouton marine */
  --grad-gold: linear-gradient(135deg, #E0C578 0%, #C6A24C 48%, #A6812F 100%);
  --hairline-gold: linear-gradient(90deg, transparent, var(--gold), transparent);

  /* ---- Typography ---- */
  --font-display: 'Outfit', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-body: 'DM Sans', system-ui, -apple-system, 'Segoe UI', sans-serif;

  --fs-eyebrow: 0.78rem;
  --fs-body: 1.0625rem;
  --fs-lead: 1.2rem;
  --lh-body: 1.68;
  --lh-tight: 1.05;
  --tracking-label: 0.16em;

  --fs-h1: clamp(2.6rem, 1.3rem + 5.2vw, 5.6rem);
  --fs-h2: clamp(2rem, 1.3rem + 2.8vw, 3.4rem);
  --fs-h3: clamp(1.4rem, 1.1rem + 1.3vw, 2rem);
  --fs-h4: clamp(1.15rem, 1.02rem + 0.5vw, 1.35rem);

  /* ---- Spacing ---- */
  --space-2xs: 0.5rem;
  --space-xs: 0.75rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2.25rem;
  --space-xl: 3.5rem;
  --space-2xl: 5rem;
  --section-pad: clamp(4rem, 2.8rem + 5vw, 8rem);

  /* ---- Layout ---- */
  --container: 1200px;
  --container-narrow: 860px;
  --container-wide: 1360px;

  /* ---- Radii ---- */
  --r-xs: 6px;
  --r-sm: 10px;
  --r-md: 14px;
  --r-lg: 20px;
  --r-xl: 28px;
  --r-pill: 999px;

  /* ---- Shadows (étagées : contact net + ambiante + portée directionnelle) ---- */
  --shadow-xs: 0 1px 2px rgba(16, 30, 51, 0.06), 0 3px 8px -4px rgba(16, 30, 51, 0.1);
  --shadow-sm: 0 1px 2px rgba(16, 30, 51, 0.06), 0 8px 18px -10px rgba(16, 30, 51, 0.16);
  --shadow-md: 0 1px 2px rgba(16, 30, 51, 0.06), 0 12px 26px -12px rgba(16, 30, 51, 0.18),
    0 26px 54px -30px rgba(16, 30, 51, 0.16);
  --shadow-lg: 0 2px 4px rgba(16, 30, 51, 0.07), 0 20px 44px -18px rgba(16, 30, 51, 0.22),
    0 46px 90px -46px rgba(16, 30, 51, 0.2);
  --shadow-blue: 0 16px 34px rgba(22, 39, 63, 0.28);
  --shadow-gold: 0 14px 34px rgba(166, 129, 47, 0.28);

  /* ---- Motion ---- */
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
  --dur-fast: 180ms;
  --dur-mid: 300ms;
  --dur-slow: 600ms;

  /* ---- Z-index ---- */
  --z-canvas: 0;
  --z-base: 1;
  --z-nav: 100;
  --z-float: 200;
  --z-modal: 1000;
}
/* ============================================================
   SERENYA — BASE / RESET / GLOBAL PRIMITIVES (v2 — light theme)
   ============================================================ */

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

body {
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  color: var(--text);
  background: var(--bg);
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img,
svg,
canvas,
video {
  display: block;
  max-width: 100%;
}
img {
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
  color: inherit;
}

input,
select,
textarea {
  font-family: inherit;
  font-size: 1rem;
  color: inherit;
}

ul,
ol {
  list-style: none;
}

::selection {
  background: var(--blue-200);
  color: var(--blue-900);
}

:focus-visible {
  outline: 2px solid var(--blue-500);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ---- Headings (Outfit) ---- */
h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: var(--lh-tight);
  letter-spacing: -0.025em;
  color: var(--ink);
  text-wrap: balance;
}
h1 {
  font-size: var(--fs-h1);
  font-weight: 700;
}
h2 {
  font-size: var(--fs-h2);
}
h3 {
  font-size: var(--fs-h3);
}
h4 {
  font-size: var(--fs-h4);
  font-weight: 600;
  letter-spacing: -0.01em;
}

p {
  text-wrap: pretty;
}

/* ============================================================
   LAYOUT
   ============================================================ */

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 0.5rem + 3vw, 2.5rem);
}
.container--narrow {
  max-width: var(--container-narrow);
}
.container--wide {
  max-width: var(--container-wide);
}

.section {
  position: relative;
  padding-block: var(--section-pad);
  scroll-margin-top: 88px;
}

/* Section backgrounds — alternate white / light-blue tint */
.section--tint {
  background: var(--cloud);
}
.section--mist {
  background: var(--grad-blue);
}

/* ============================================================
   TYPOGRAPHIC UTILITIES
   ============================================================ */

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
  font-family: var(--font-body);
  font-size: var(--fs-eyebrow);
  font-weight: 600;
  letter-spacing: var(--tracking-label);
  text-transform: uppercase;
  color: var(--gold-ink);
}
.eyebrow::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 2px;
  background: var(--gold);
  transform: rotate(45deg);
  flex-shrink: 0;
}
.eyebrow--center::after {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 2px;
  background: var(--gold);
  transform: rotate(45deg);
}
.eyebrow--on-dark {
  color: var(--gold-bright);
}

.lead {
  font-size: var(--fs-lead);
  line-height: 1.6;
  color: var(--muted);
  font-weight: 400;
  text-wrap: balance;
}
.muted {
  color: var(--text-muted);
}
.text-blue {
  color: var(--blue-600);
}
.text-gold {
  color: var(--gold-2);
}

/* ============================================================
   BUTTONS
   ============================================================ */

.btn {
  --btn-h: 3.25rem;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6em;
  min-height: var(--btn-h);
  padding: 0 1.7rem;
  border-radius: var(--r-pill);
  font-family: var(--font-body);
  font-size: 0.98rem;
  font-weight: 600;
  letter-spacing: 0.005em;
  white-space: nowrap;
  cursor: pointer;
  transition: transform var(--dur-fast) var(--ease-out),
    box-shadow var(--dur-mid) var(--ease-out), background var(--dur-mid) var(--ease-out),
    border-color var(--dur-mid) var(--ease-out), color var(--dur-mid) var(--ease-out);
}
.btn svg {
  width: 1.1em;
  height: 1.1em;
  transition: transform var(--dur-mid) var(--ease-out);
}
.btn:hover svg {
  transform: translateX(3px);
}
.btn:active {
  transform: scale(0.98);
}

/* Primary — solid blue */
.btn--primary {
  background: var(--grad-cta);
  color: #fff;
  box-shadow: 0 8px 20px rgba(46, 107, 180, 0.24);
}
.btn--primary:hover {
  box-shadow: var(--shadow-blue);
  transform: translateY(-2px);
}

/* Outline — white / bordered */
.btn--outline {
  background: var(--white);
  color: var(--blue-700);
  box-shadow: inset 0 0 0 1.5px var(--border-2);
}
.btn--outline:hover {
  box-shadow: inset 0 0 0 1.5px var(--blue-400);
  color: var(--blue-600);
  transform: translateY(-2px);
}

/* Ghost — text with subtle bg */
.btn--ghost {
  background: transparent;
  color: var(--blue-700);
}
.btn--ghost:hover {
  background: var(--blue-50);
}

/* On tinted/photo backgrounds */
.btn--light {
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(6px);
}
.btn--light:hover {
  background: rgba(255, 255, 255, 0.24);
  transform: translateY(-2px);
}

/* Gold — accent signature */
.btn--gold {
  background: var(--grad-gold);
  color: var(--blue-900);
  box-shadow: var(--shadow-gold);
  font-weight: 700;
}
.btn--gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 44px rgba(166, 129, 47, 0.38);
}

/* Reflet lumineux qui balaie les CTA principaux */
.btn--primary,
.btn--gold {
  overflow: hidden;
}
.btn--primary::after,
.btn--gold::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(115deg, transparent 36%, rgba(255, 255, 255, 0.45) 50%, transparent 64%);
  transform: translateX(-135%);
  transition: transform 0.7s var(--ease-out);
  pointer-events: none;
}
.btn--primary:hover::after,
.btn--gold:hover::after {
  transform: translateX(135%);
}

/* Typewriter caret (or) */
.tw-caret {
  display: inline-block;
  width: 3px;
  height: 0.95em;
  margin-left: 3px;
  vertical-align: -0.08em;
  background: var(--gold);
  border-radius: 2px;
  animation: caretBlink 0.85s steps(1) infinite;
}
@keyframes caretBlink {
  0%, 50% { opacity: 1; }
  50.01%, 100% { opacity: 0; }
}

/* Barre de progression de scroll (or) */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 100%;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--grad-gold);
  z-index: 1000;
  pointer-events: none;
}

/* Bouton « remonter en haut » */
.scroll-top {
  position: fixed;
  left: clamp(1rem, 3vw, 2rem);
  bottom: clamp(1rem, 3vw, 2rem);
  z-index: var(--z-float);
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--grad-navy);
  color: #fff;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-gold);
  opacity: 0;
  visibility: hidden;
  transform: translateY(14px) scale(0.9);
  transition: opacity 0.3s var(--ease-out), transform 0.3s var(--ease-out), visibility 0.3s,
    box-shadow 0.3s var(--ease-out);
}
.scroll-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}
.scroll-top:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: var(--shadow-blue);
}
.scroll-top svg {
  transform: rotate(-90deg);
}

/* Révélation des titres mot par mot (GSAP) */
.sh-title {
  perspective: 720px;
}
.sh-word {
  display: inline-block;
  will-change: transform;
}

.btn--lg {
  --btn-h: 3.6rem;
  padding: 0 2.1rem;
  font-size: 1rem;
}
.btn--block {
  width: 100%;
}

/* ============================================================
   FORM CONTROLS
   ============================================================ */

.field {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  min-width: 0;
}
.field label {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--ink-2);
}
.control {
  width: 100%;
  min-height: 3.2rem;
  padding: 0 1rem;
  border-radius: var(--r-sm);
  background: var(--white);
  border: 1.5px solid var(--border-2);
  color: var(--ink);
  font-size: 1rem;
  transition: border-color var(--dur-fast) var(--ease-out),
    box-shadow var(--dur-fast) var(--ease-out);
  appearance: none;
}
.control:hover {
  border-color: var(--blue-300);
}
.control:focus {
  outline: none;
  border-color: var(--blue-500);
  box-shadow: 0 0 0 4px rgba(46, 107, 180, 0.14);
}
select.control {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%235E6D84' stroke-width='2.2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.6rem;
}

/* ============================================================
   MEDIA (photos)
   ============================================================ */

.media {
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  background: var(--cloud);
}
.media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ============================================================
   REVEAL
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  .btn:hover,
  .btn:active {
    transform: none;
  }
}

/* ============================================================
   SCROLLBAR
   ============================================================ */
* {
  scrollbar-width: thin;
  scrollbar-color: var(--blue-300) var(--cloud);
}
::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}
::-webkit-scrollbar-track {
  background: var(--cloud);
}
::-webkit-scrollbar-thumb {
  background: var(--blue-300);
  border-radius: 999px;
  border: 2px solid var(--cloud);
}

/* ============================================================
   LENIS
   ============================================================ */
html.lenis,
html.lenis body {
  height: auto;
}
.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}
.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}
.lenis.lenis-stopped {
  overflow: hidden;
}

/* ============================================================
   HELPERS
   ============================================================ */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.no-scroll {
  overflow: hidden;
}
.tabular {
  font-variant-numeric: tabular-nums;
}

/* Deep-blue section (used sparingly for contrast) */
.on-dark {
  background: linear-gradient(160deg, var(--blue-800), var(--blue-900));
  color: #dce6f3;
}
.on-dark h1,
.on-dark h2,
.on-dark h3,
.on-dark h4 {
  color: #fff;
}
.on-dark .lead {
  color: #aebfd6;
}

/* ============================================================
   Spotlight cards — halo doré doux qui suit le curseur.
   Portage du « Spotlight Card » (21st.dev) : le halo est peint
   ENTRE le fond de la carte et le contenu (z-index négatif dans
   un contexte d'empilement isolé), le texte reste donc net.
   ============================================================ */
[data-spotlight] {
  position: relative;
  isolation: isolate;
}
.spotlight-layer {
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: inherit;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.35s ease;
  background: radial-gradient(
    240px circle at var(--sx, 50%) var(--sy, 50%),
    rgba(198, 162, 76, 0.18),
    transparent 55%
  );
}
[data-spotlight]:hover .spotlight-layer {
  opacity: 1;
}
