/*
 * Le site de Fidélité Péi (14/09/2026) : surface éditoriale, trame d'agence (ouverture forte, sections qui
 * alternent écume, blanc et basalte, sur-titres en capitales espacées, grands titres serrés). Toutes les valeurs
 * viennent de tokens.css ; ses écarts à la charte du produit sont décrits au §13 de docs/CHARTE.md.
 */

/* ---------- Socle ---------- */

.vitrine {
  background: var(--ecume);
}

/* Les objets dessinés (notification qui déborde du téléphone) ne doivent jamais faire défiler la page de côté. */
.vitrine main {
  overflow-x: clip;
}

.vt-conteneur {
  width: 100%;
  max-width: var(--largeur-bbp);
  margin-inline: auto;
  padding-inline: var(--espace-4);
}

.vt-conteneur--etroit {
  max-width: 52rem;
}

.vt-icone {
  display: inline-block;
  flex: none;
  width: 1.5rem;
  height: 1.5rem;
}

.vt-centre {
  margin-inline: auto;
  text-align: center;
}

.vt-centre > * {
  margin-inline: auto;
}

.vt-note {
  font-size: var(--taille-14);
  color: var(--encre-douce);
}

/* ---------- Sur-titres, titres, chapeaux ---------- */

.vt-surtitre {
  margin: 0 0 var(--espace-3);
  font-size: var(--taille-14);
  font-weight: var(--graisse-forte);
  letter-spacing: var(--vitrine-interlettrage-surtitre);
  text-transform: uppercase;
  color: var(--lagon-profond);
}

.vt-titre-une,
.vt-titre-page,
.vt-titre {
  margin: 0 0 var(--espace-4);
  font-family: var(--police-titre);
  font-weight: 800;
  letter-spacing: var(--vitrine-interlettrage-titre);
  line-height: 1.04;
  text-wrap: balance;
}

.vt-titre-une {
  font-size: var(--vitrine-titre-une);
  max-width: 14ch;
}

.vt-titre-page {
  font-size: var(--vitrine-titre-une);
  max-width: 18ch;
}

.vt-titre {
  font-size: var(--vitrine-titre);
  line-height: 1.08;
}

.vt-titre--moyen {
  font-size: var(--vitrine-titre-bloc);
  line-height: 1.15;
}

.vt-accent {
  color: var(--lagon-profond);
}

.vt-chapeau {
  font-size: var(--taille-18);
  color: var(--encre-douce);
}

/* ---------- Boutons et liens ---------- */

.vt-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--espace-3);
  margin: var(--espace-6) 0 0;
}

.vt-bouton {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: var(--cible-tactile);
  padding: var(--espace-3) var(--espace-6);
  border: 2px solid transparent;
  border-radius: var(--rayon-petit);
  font-weight: 700;
  text-decoration: none;
  transition: background-color var(--duree), border-color var(--duree), color var(--duree);
}

.vt-bouton--plein {
  background: var(--lagon-profond);
  color: var(--blanc);
}

.vt-bouton--plein:hover {
  background: var(--lagon);
}

.vt-bouton--clair {
  background: var(--lagon-clair);
  color: var(--encre);
}

.vt-bouton--clair:hover {
  background: var(--ecume);
}

.vt-bouton--blanc {
  background: var(--blanc);
  color: var(--lagon-profond);
}

.vt-bouton--blanc:hover {
  background: var(--ecume);
}

.vt-bouton--contour {
  border-color: var(--ecume-douce);
  color: var(--ecume);
}

.vt-bouton--contour:hover {
  border-color: var(--ecume);
}

.vt-bouton--secondaire {
  background: var(--blanc);
  border-color: var(--ligne-forte);
  color: var(--encre);
}

.vt-bouton--secondaire:hover {
  border-color: var(--encre);
}

.vt-bouton--large {
  width: 100%;
}

.vt-lien {
  display: inline-flex;
  align-items: center;
  min-height: var(--cible-tactile);
  font-weight: 700;
  color: var(--lagon-profond);
  text-underline-offset: .25em;
}

.vt-lien--fort {
  font-size: var(--taille-18);
}

/* ---------- Bandeau d'annonces ---------- */

.vt-annonce {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  gap: var(--espace-6);
  max-width: none;
  margin: 0;
  padding: var(--espace-2) var(--espace-4);
  overflow-x: auto;
  scrollbar-width: none;
  background: var(--encre);
  color: var(--ecume-douce);
  font-size: var(--taille-14);
  white-space: nowrap;
}

.vt-annonce span + span::before {
  content: "·";
  margin-inline-end: var(--espace-6);
  color: var(--lagon-clair);
}

/* ---------- En-tête ---------- */

.vt-entete {
  position: sticky;
  top: 0;
  z-index: 20;
  background: var(--ecume);
  border-bottom: var(--trait) solid var(--ligne);
}

.vt-entete__barre {
  display: flex;
  align-items: center;
  gap: var(--espace-4);
  min-height: 4.5rem;
}

.vt-entete__marque {
  display: inline-flex;
  align-items: center;
  min-height: var(--cible-tactile);
  margin-inline-end: auto;
}

.vt-entete__marque img {
  height: var(--vitrine-hauteur-logo);
  width: auto;
}

.vt-menu {
  display: none;
}

.vt-menu ul {
  display: flex;
  gap: var(--espace-1);
  margin: 0;
  padding: 0;
  list-style: none;
}

.vt-menu a {
  display: inline-flex;
  align-items: center;
  min-height: var(--cible-tactile);
  padding: 0 var(--espace-3);
  border-radius: var(--rayon-petit);
  font-weight: var(--graisse-forte);
  text-decoration: none;
  white-space: nowrap;
}

.vt-menu a:hover {
  background: var(--ecume-profonde);
}

.vt-menu [aria-current="page"],
.vt-menu-mobile [aria-current="page"] {
  color: var(--lagon-profond);
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: .4em;
}

.vt-entete__action {
  display: none;
}

.vt-menu-mobile summary {
  display: inline-flex;
  align-items: center;
  gap: var(--espace-2);
  min-height: var(--cible-tactile);
  padding: 0 var(--espace-3);
  border: var(--trait) solid var(--ligne-forte);
  border-radius: var(--rayon-petit);
  font-weight: var(--graisse-forte);
  cursor: pointer;
  list-style: none;
}

.vt-menu-mobile summary::-webkit-details-marker {
  display: none;
}

.vt-menu-mobile__icone {
  width: 1.125rem;
  height: 2px;
  background: var(--encre);
  box-shadow: 0 -6px 0 var(--encre), 0 6px 0 var(--encre);
}

.vt-menu-mobile[open] > nav {
  position: absolute;
  inset-inline: 0;
  top: 100%;
  display: flex;
  flex-direction: column;
  gap: var(--espace-4);
  padding: var(--espace-4);
  background: var(--ecume);
  border-bottom: var(--trait) solid var(--ligne);
  box-shadow: var(--vitrine-ombre);
}

.vt-menu-mobile ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.vt-menu-mobile li a {
  display: flex;
  align-items: center;
  min-height: var(--cible-tactile);
  font-size: var(--taille-18);
  font-weight: var(--graisse-forte);
  text-decoration: none;
}

/* ---------- Sections ---------- */

.vt-section {
  padding-block: var(--espace-12);
}

.vt-section--blanche {
  background: var(--blanc);
}

.vt-section--sombre,
.vt-une,
.vt-entete-page,
.vt-pied {
  --focus: var(--lagon-clair);
  background: var(--encre);
  color: var(--ecume);
}

.vt-section--sombre .vt-surtitre,
.vt-une .vt-surtitre,
.vt-entete-page .vt-surtitre,
.vt-section--sombre .vt-accent,
.vt-une .vt-accent,
.vt-entete-page .vt-accent {
  color: var(--lagon-clair);
}

.vt-section--sombre .vt-chapeau,
.vt-une .vt-chapeau,
.vt-entete-page .vt-chapeau {
  color: var(--ecume-douce);
}

.vt-entete-section {
  max-width: 46rem;
  margin: 0 auto var(--espace-8);
  text-align: center;
}

.vt-entete-section .vt-chapeau {
  margin-inline: auto;
}

.vt-entete-section--gauche {
  margin-inline: 0;
  text-align: start;
}

.vt-entete-section .vt-titre::after {
  content: "";
  display: block;
  width: 3rem;
  height: var(--trait-repere);
  margin: var(--espace-4) auto 0;
  border-radius: 999px;
  background: var(--lagon-profond);
}

.vt-section--sombre .vt-entete-section .vt-titre::after {
  background: var(--lagon-clair);
}

.vt-entete-section--gauche .vt-titre::after {
  margin-inline: 0;
}

/* ---------- Ouverture de l'accueil ---------- */

.vt-une {
  padding-block: var(--espace-12);
  overflow: hidden;
}

.vt-une__grille {
  display: grid;
  gap: var(--espace-12);
  align-items: center;
}

.vt-atouts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--espace-3) var(--espace-6);
  margin: var(--espace-8) 0 0;
  padding: 0;
  list-style: none;
  font-weight: var(--graisse-forte);
  font-size: var(--taille-14);
}

.vt-atouts li {
  display: flex;
  align-items: center;
  gap: var(--espace-3);
}

.vt-atouts .vt-icone {
  width: 2.5rem;
  height: 2.5rem;
  padding: var(--espace-2);
  border-radius: 50%;
  background: color-mix(in srgb, var(--lagon-clair) 16%, var(--encre));
  color: var(--lagon-clair);
}

.vt-une__visuel {
  display: flex;
  justify-content: center;
}

/* ---------- Ouverture des pages intérieures ---------- */

.vt-entete-page {
  padding-block: var(--espace-12);
}

.vt-entete-page .vt-chapeau {
  max-width: 44rem;
}

.vt-sommaire ul {
  display: flex;
  flex-wrap: wrap;
  gap: var(--espace-2);
  margin: var(--espace-8) 0 0;
  padding: 0;
  list-style: none;
}

.vt-sommaire a {
  display: inline-flex;
  align-items: center;
  min-height: var(--cible-tactile);
  padding: 0 var(--espace-4);
  border: var(--trait) solid color-mix(in srgb, var(--ecume) 28%, var(--encre));
  border-radius: 999px;
  color: var(--ecume);
  font-weight: var(--graisse-forte);
  text-decoration: none;
}

.vt-sommaire a:hover {
  border-color: var(--lagon-clair);
  background: color-mix(in srgb, var(--lagon-clair) 14%, var(--encre));
}

/* L'en-tête collant ne recouvre pas le titre d'une section atteinte par une ancre. */
.vt-fonction {
  scroll-margin-top: 4.5rem;
}

/* ---------- Le téléphone et la carte Wallet ---------- */

.vt-telephone {
  position: relative;
  width: min(100%, 18.5rem);
  aspect-ratio: 9 / 18.5;
  padding: .75rem;
  border-radius: 2.75rem;
  background: var(--vitrine-cadre);
  box-shadow: 0 30px 60px -30px var(--vitrine-cadre), inset 0 0 0 2px color-mix(in srgb, var(--ecume-douce) 30%, var(--vitrine-cadre));
}

.vt-telephone__ecran {
  display: flex;
  flex-direction: column;
  gap: var(--espace-3);
  height: 100%;
  padding: var(--espace-4) var(--espace-3);
  border-radius: 2.1rem;
  background: var(--ecume-profonde);
  overflow: hidden;
}

.vt-telephone__barre {
  display: flex;
  justify-content: space-between;
  margin: 0;
  padding-inline: var(--espace-2);
  font-size: var(--taille-14);
  font-weight: 700;
  color: var(--encre);
}

.vt-wallet {
  display: flex;
  flex-direction: column;
  gap: var(--espace-3);
  padding: var(--espace-3);
  border-radius: 1rem;
  background: var(--vitrine-exemple-fond);
  color: var(--vitrine-exemple-texte);
}

.vt-wallet__haut {
  display: flex;
  align-items: center;
  gap: var(--espace-2);
}

.vt-wallet__logo {
  display: grid;
  place-items: center;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: var(--vitrine-exemple-accent);
  color: var(--vitrine-exemple-fond);
  font-family: var(--police-titre);
  font-weight: 800;
  font-size: var(--taille-14);
}

.vt-wallet__nom {
  flex: 1;
  font-weight: 700;
  font-size: var(--taille-14);
}

.vt-wallet__points,
.vt-wallet__infos span {
  display: flex;
  flex-direction: column;
  font-family: var(--police-titre);
  font-weight: 700;
  font-size: var(--taille-18);
  line-height: 1.1;
}

.vt-wallet__points {
  text-align: end;
}

.vt-wallet small {
  font-family: var(--police-corps);
  font-size: var(--taille-14);
  font-weight: var(--graisse-normale);
  opacity: .85;
}

.vt-wallet__bandeau {
  display: flex;
  align-items: flex-end;
  min-height: 5.25rem;
  padding: var(--espace-3);
  border-radius: .5rem;
  background: var(--vitrine-exemple-accent);
  color: var(--vitrine-exemple-fond);
  font-family: var(--police-titre);
  font-weight: 800;
  font-size: var(--taille-18);
  line-height: 1.1;
}

.vt-wallet__infos {
  display: flex;
  justify-content: space-between;
  gap: var(--espace-3);
}

.vt-wallet__infos span:last-child {
  text-align: end;
}

.vt-wallet__code {
  display: grid;
  place-items: center;
  align-self: center;
  padding: var(--espace-2);
  border-radius: .5rem;
  background: var(--blanc);
  color: var(--encre);
}

.vt-notif {
  position: absolute;
  inset-inline: -12% 6%;
  bottom: 9%;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: var(--espace-3);
  align-items: center;
  padding: var(--espace-3);
  border-radius: 1rem;
  background: var(--blanc);
  color: var(--encre);
  box-shadow: 0 20px 40px -20px var(--vitrine-cadre);
  font-size: var(--taille-14);
  line-height: 1.3;
}

.vt-notif__icone {
  display: grid;
  place-items: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: .6rem;
  background: var(--vitrine-exemple-fond);
  color: var(--vitrine-exemple-texte);
  font-family: var(--police-titre);
  font-weight: 800;
}

.vt-notif__texte strong {
  display: block;
}

.vt-notif__quand {
  align-self: start;
  color: var(--encre-douce);
}

/* ---------- Grilles et cartes ---------- */

.vt-grille {
  display: grid;
  gap: var(--espace-6);
  margin: 0;
  padding: 0;
  list-style: none;
}

.vt-carte {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: var(--espace-6);
  border: var(--trait) solid var(--ligne);
  border-radius: var(--vitrine-rayon);
  background: var(--blanc);
  box-shadow: var(--vitrine-ombre);
}

.vt-carte p {
  color: var(--encre-douce);
}

.vt-carte .vt-lien {
  margin-top: auto;
}

.vt-carte__icone,
.vt-raison__icone {
  display: grid;
  place-items: center;
  width: 3.25rem;
  height: 3.25rem;
  margin-bottom: var(--espace-4);
  border-radius: 1rem;
  background: var(--ecume-profonde);
  color: var(--lagon-profond);
}

.vt-raison__icone {
  border-radius: 50%;
  background: var(--lagon-profond);
  color: var(--blanc);
}

.vt-etiquette {
  display: inline-block;
  margin: 0 0 var(--espace-2);
  padding: var(--espace-1) var(--espace-3);
  border-radius: 999px;
  background: var(--ecume-profonde);
  color: var(--lagon-profond);
  font-size: var(--taille-14);
  font-weight: 700;
  letter-spacing: var(--vitrine-interlettrage-surtitre);
  text-transform: uppercase;
}

.vt-carte__titre {
  margin: 0 0 var(--espace-2);
  font-family: var(--police-titre);
  font-size: var(--taille-22);
  font-weight: 700;
  line-height: 1.2;
}

.vt-carte__titre--grand {
  font-size: var(--vitrine-titre-bloc);
}

.vt-carte__titre a {
  text-decoration: none;
}

.vt-carte__titre a:hover {
  text-decoration: underline;
}

.vt-carte__intro {
  font-size: var(--taille-18);
}

.vt-raison {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: var(--espace-6);
  border-radius: var(--vitrine-rayon);
  background: var(--blanc);
  border: var(--trait) solid var(--ligne);
}

.vt-raison p {
  color: var(--encre-douce);
}

.vt-section--blanche .vt-raison,
.vt-section--blanche .vt-carte {
  background: var(--ecume);
}

/* ---------- Listes ---------- */

.vt-liste {
  margin: var(--espace-4) 0 0;
  padding: 0;
  list-style: none;
}

.vt-liste li {
  position: relative;
  padding-inline-start: var(--espace-8);
  margin-bottom: var(--espace-3);
}

.vt-liste li::before {
  content: "";
  position: absolute;
  inset-inline-start: var(--espace-2);
  top: .7em;
  width: .5rem;
  height: .5rem;
  border-radius: 50%;
  background: var(--ecume-douce);
}

.vt-liste--coche li::before {
  top: .2em;
  inset-inline-start: 0;
  width: 1.375rem;
  height: 1.375rem;
  background: var(--lagon-profond);
}

.vt-liste--coche li::after {
  content: "";
  position: absolute;
  inset-inline-start: .45rem;
  top: .38em;
  width: .35rem;
  height: .65rem;
  border: solid var(--blanc);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.vt-section--sombre .vt-liste--coche li::before {
  background: var(--lagon-clair);
}

.vt-section--sombre .vt-liste--coche li::after {
  border-color: var(--encre);
}

.vt-liste--numeros {
  counter-reset: etape;
}

.vt-liste--numeros li {
  counter-increment: etape;
}

.vt-liste--numeros li::before {
  content: counter(etape);
  top: 0;
  inset-inline-start: 0;
  display: grid;
  place-items: center;
  width: 1.75rem;
  height: 1.75rem;
  background: var(--lagon-clair);
  color: var(--encre);
  font-size: var(--taille-14);
  font-weight: 800;
}

/* ---------- Avant / après ---------- */

.vt-avant-apres {
  display: grid;
  gap: var(--espace-8);
}

.vt-avant-apres__cote {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--espace-6);
  margin: 0;
  padding: var(--espace-8) var(--espace-6);
  border-radius: var(--vitrine-rayon);
  background: color-mix(in srgb, var(--ecume) 6%, var(--encre));
  border: var(--trait) solid color-mix(in srgb, var(--ecume) 14%, var(--encre));
}

.vt-avant-apres figcaption {
  align-self: stretch;
}

.vt-pastille {
  align-self: flex-start;
  padding: var(--espace-1) var(--espace-3);
  border-radius: 999px;
  font-size: var(--taille-14);
  font-weight: 700;
  letter-spacing: var(--vitrine-interlettrage-surtitre);
  text-transform: uppercase;
}

.vt-pastille--sombre {
  background: var(--ecume);
  color: var(--encre);
}

.vt-pastille--lagon {
  background: var(--lagon-clair);
  color: var(--encre);
}

.vt-wallet-seul .vt-telephone {
  width: min(100%, 15rem);
}

.vt-carton {
  width: min(100%, 22rem);
  padding: var(--espace-6);
  border-radius: .5rem;
  background: var(--vitrine-carton);
  color: var(--encre);
  transform: rotate(-3deg);
  box-shadow: 0 24px 40px -24px var(--vitrine-cadre);
  clip-path: polygon(0 0, 100% 0, 100% 82%, 92% 100%, 0 100%);
}

.vt-carton__titre {
  margin: 0;
  font-family: var(--police-titre);
  font-weight: 800;
  font-size: var(--taille-22);
}

.vt-carton__sous-titre,
.vt-carton__nom {
  margin: 0 0 var(--espace-4);
  font-size: var(--taille-14);
  color: var(--encre-douce);
}

.vt-carton__nom {
  margin: var(--espace-4) 0 0;
}

.vt-carton__cases {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: var(--espace-2);
  margin: 0;
  padding: 0;
  list-style: none;
}

.vt-carton__case {
  display: grid;
  place-items: center;
  aspect-ratio: 1;
  border: 2px dashed var(--ligne-forte);
  border-radius: 50%;
  font-family: var(--police-titre);
  font-weight: 800;
  font-size: var(--taille-14);
}

.vt-carton__case--tamponnee {
  border: 2px solid var(--vitrine-tampon);
  color: var(--vitrine-tampon);
  transform: rotate(-14deg);
}

/* ---------- Étapes ---------- */

.vt-etapes {
  display: grid;
  gap: var(--espace-8);
  margin: 0 0 var(--espace-8);
  padding: 0;
  list-style: none;
  text-align: center;
}

.vt-etapes li {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.vt-etapes p {
  color: var(--encre-douce);
}

.vt-etapes__numero {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 4rem;
  height: 4rem;
  margin-bottom: var(--espace-4);
  border: 2px solid var(--lagon-profond);
  border-radius: 50%;
  background: var(--blanc);
  color: var(--lagon-profond);
  font-family: var(--police-titre);
  font-weight: 800;
  font-size: var(--taille-22);
}

.vt-frise {
  display: grid;
  gap: var(--espace-6);
  margin: 0;
  padding: 0;
  list-style: none;
}

.vt-frise li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--espace-4);
  align-items: start;
  padding: var(--espace-6);
  border-radius: var(--vitrine-rayon);
  background: var(--blanc);
  border: var(--trait) solid var(--ligne);
}

.vt-frise p {
  margin: 0;
  color: var(--encre-douce);
}

.vt-frise__numero {
  display: grid;
  place-items: center;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: var(--lagon-profond);
  color: var(--blanc);
  font-family: var(--police-titre);
  font-weight: 800;
  font-size: var(--taille-18);
}

/* ---------- Métiers ---------- */

.vt-metier {
  position: relative;
  padding: var(--espace-6);
  border-radius: var(--vitrine-rayon);
  background: var(--blanc);
  border: var(--trait) solid var(--ligne);
}

/* Toute la carte mène au métier : le lien du titre la couvre, et fait la taille d'un pouce. */
.vt-metier a {
  display: flex;
  align-items: center;
  min-height: var(--cible-tactile);
  text-decoration: none;
}

.vt-metier a::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
}

.vt-metier:hover {
  border-color: var(--lagon-profond);
}

.vt-metier a:hover {
  text-decoration: underline;
}

.vt-metier__exemple {
  display: flex;
  align-items: center;
  gap: var(--espace-2);
  margin: 0;
  color: var(--lagon-profond);
  font-weight: var(--graisse-forte);
}

.vt-programme {
  display: grid;
  gap: var(--espace-3);
  width: 100%;
  margin: var(--espace-2) 0 0;
}

.vt-programme div {
  display: grid;
  gap: var(--espace-1);
  padding-top: var(--espace-3);
  border-top: var(--trait) solid var(--ligne);
}

.vt-programme dt {
  font-size: var(--taille-14);
  font-weight: 700;
  letter-spacing: var(--vitrine-interlettrage-surtitre);
  text-transform: uppercase;
  color: var(--lagon-profond);
}

.vt-programme dd {
  margin: 0;
}

/* ---------- Prix ---------- */

.vt-prix {
  display: grid;
  gap: var(--espace-8);
  align-items: center;
}

.vt-prix__carte {
  padding: var(--espace-8);
  border-radius: var(--vitrine-rayon);
  background: var(--blanc);
  color: var(--encre);
  box-shadow: 0 30px 60px -30px var(--vitrine-cadre);
}

.vt-prix__carte--grande {
  border: var(--trait) solid var(--ligne);
}

.vt-prix__carte .vt-surtitre {
  color: var(--lagon-profond);
}

.vt-prix__montant {
  margin: 0 0 var(--espace-2);
  font-family: var(--police-titre);
  font-weight: 800;
  font-size: var(--vitrine-titre-une);
  line-height: 1;
  letter-spacing: var(--vitrine-interlettrage-titre);
}

.vt-prix__montant small {
  font-family: var(--police-corps);
  font-size: var(--taille-18);
  font-weight: var(--graisse-normale);
  letter-spacing: normal;
  color: var(--encre-douce);
}

.vt-prix__carte p {
  color: var(--encre-douce);
}

.vt-prix__carte .vt-prix__montant {
  color: var(--encre);
}

.vt-prix__note {
  margin: var(--espace-3) 0 0;
  font-size: var(--taille-14);
}

.vt-compris__point {
  display: flex;
  gap: var(--espace-3);
  align-items: flex-start;
  color: var(--lagon-profond);
}

.vt-compris__point div {
  color: var(--encre);
}

.vt-compris__point p {
  margin: 0;
  color: var(--encre-douce);
}

.vt-compris__titre {
  margin: 0 0 var(--espace-1);
  font-family: var(--police-corps);
  font-size: var(--taille-16);
  font-weight: 700;
  letter-spacing: normal;
}

/* ---------- Fonctionnalités ---------- */

.vt-fonction__grille {
  display: grid;
  gap: var(--espace-8);
  align-items: center;
}

.vt-fonction__visuel {
  display: flex;
  justify-content: center;
}

.vt-ecran {
  display: flex;
  flex-direction: column;
  gap: var(--espace-3);
  width: min(100%, 22rem);
  padding: var(--espace-6);
  border-radius: var(--vitrine-rayon);
  background: var(--blanc);
  border: var(--trait) solid var(--ligne);
  box-shadow: 0 30px 60px -34px var(--vitrine-cadre);
}

.vt-section--blanche .vt-ecran {
  background: var(--ecume);
}

.vt-ecran p {
  margin: 0;
}

.vt-ecran__titre {
  font-family: var(--police-titre);
  font-weight: 800;
  font-size: var(--taille-22);
  line-height: 1.15;
}

.vt-ecran__sous-titre,
.vt-ecran__note {
  font-size: var(--taille-14);
  color: var(--encre-douce);
}

.vt-ecran__champ {
  display: flex;
  flex-direction: column;
  padding: var(--espace-2) var(--espace-3);
  border: var(--trait) solid var(--ligne-forte);
  border-radius: var(--rayon-petit);
  font-weight: var(--graisse-forte);
}

.vt-ecran__champ small {
  color: var(--encre-douce);
  font-weight: var(--graisse-normale);
}

.vt-ecran__case {
  display: flex;
  align-items: center;
  gap: var(--espace-2);
  font-size: var(--taille-14);
}

.vt-ecran__case span {
  width: 1.25rem;
  height: 1.25rem;
  border-radius: .3rem;
  background: var(--lagon-profond);
}

.vt-ecran__bouton {
  display: grid;
  place-items: center;
  min-height: var(--cible-tactile);
  border-radius: var(--rayon-petit);
  background: var(--lagon-profond);
  color: var(--blanc);
  font-weight: 700;
}

.vt-ecran--scanner {
  background: var(--encre);
  color: var(--ecume);
  border-color: var(--encre);
}

.vt-ecran--scanner .vt-ecran__note {
  color: var(--ecume-douce);
}

.vt-ecran--scanner .vt-ecran__bouton {
  background: var(--lagon-clair);
  color: var(--encre);
}

.vt-ecran__entete {
  display: flex;
  justify-content: space-between;
  gap: var(--espace-3);
  font-size: var(--taille-14);
  font-weight: var(--graisse-forte);
}

.vt-ecran__client {
  font-weight: var(--graisse-forte);
}

.vt-ecran__montant {
  font-family: var(--police-titre);
  font-weight: 800;
  font-size: var(--taille-48);
  line-height: 1;
}

.vt-ecran__jauge {
  height: .75rem;
  border-radius: 999px;
  background: var(--ecume-profonde);
  overflow: hidden;
}

.vt-ecran__jauge span {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--lagon-profond);
}

.vt-ecran__liste {
  display: grid;
  gap: var(--espace-2);
  margin: 0;
  padding: 0;
  list-style: none;
}

.vt-ecran__liste li {
  display: flex;
  align-items: center;
  gap: var(--espace-3);
  padding: var(--espace-2) 0;
  border-bottom: var(--trait) solid var(--ligne);
  font-weight: var(--graisse-forte);
}

.vt-ecran__liste small {
  margin-inline-start: auto;
  color: var(--encre-douce);
  font-weight: var(--graisse-normale);
}

.vt-ecran__puce {
  width: .625rem;
  height: .625rem;
  border-radius: 50%;
  background: var(--lagon-profond);
}

.vt-ecran__puce--eteinte {
  background: var(--ligne-forte);
}

.vt-ecran__bulle {
  padding: var(--espace-3) var(--espace-4);
  border-radius: 1rem 1rem 1rem .25rem;
  background: var(--ecume-profonde);
}

.vt-ecran__notif {
  display: flex;
  flex-direction: column;
  padding: var(--espace-3) var(--espace-4);
  border-radius: 1rem;
  background: var(--ecume);
  border: var(--trait) solid var(--ligne);
  font-size: var(--taille-14);
}

.vt-section--blanche .vt-ecran__notif {
  background: var(--blanc);
}

.vt-ecran__chiffres {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--espace-3);
}

.vt-ecran__chiffres p {
  display: flex;
  flex-direction: column;
  font-size: var(--taille-14);
  color: var(--encre-douce);
}

.vt-ecran__chiffres strong {
  font-family: var(--police-titre);
  font-size: var(--taille-28);
  font-weight: 800;
  color: var(--encre);
}

.vt-ecran__barres {
  display: flex;
  align-items: flex-end;
  gap: var(--espace-2);
  height: 6rem;
}

.vt-ecran__barres span {
  flex: 1;
  height: var(--hauteur);
  border-radius: .35rem .35rem 0 0;
  background: var(--lagon-profond);
}

.vt-ecran__affiche {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--espace-3);
  padding: var(--espace-6);
  border: 2px solid var(--encre);
  border-radius: .5rem;
  text-align: center;
  aspect-ratio: 1 / 1.414;
  justify-content: center;
}

.vt-ecran__qr {
  color: var(--encre);
}

/* ---------- Questions ---------- */

.vt-questions__groupe {
  margin: var(--espace-8) 0 var(--espace-4);
  font-family: var(--police-titre);
  font-size: var(--taille-22);
  font-weight: 800;
}

.vt-questions {
  display: grid;
  gap: var(--espace-3);
  margin-bottom: var(--espace-6);
}

.vt-question {
  border-radius: 1rem;
  background: var(--blanc);
  border: var(--trait) solid var(--ligne);
}

.vt-question summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--espace-4);
  min-height: var(--cible-tactile);
  padding: var(--espace-4) var(--espace-6);
  font-weight: 700;
  cursor: pointer;
  list-style: none;
}

.vt-question summary::-webkit-details-marker {
  display: none;
}

.vt-question summary::after {
  content: "+";
  display: grid;
  place-items: center;
  flex: none;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: var(--ecume-profonde);
  color: var(--lagon-profond);
  font-size: var(--taille-22);
  line-height: 1;
}

.vt-question[open] summary::after {
  content: "−";
}

.vt-question p {
  margin: 0;
  padding: 0 var(--espace-6) var(--espace-6);
  color: var(--encre-douce);
}

/* ---------- Texte long (mentions) ---------- */

.vt-texte-long h2 {
  margin-top: var(--espace-8);
  font-size: var(--taille-22);
  font-weight: 800;
}

.vt-texte-long h2:first-child {
  margin-top: 0;
}

.vt-texte-long a {
  color: var(--lagon-profond);
}

.vt-engagements li {
  padding-block: var(--espace-2);
}

/* ---------- Dernier appel ---------- */

.vt-appel {
  padding-block: var(--espace-12);
  background: var(--lagon-profond);
  color: var(--blanc);
  --focus: var(--blanc);
}

.vt-appel__boite {
  display: grid;
  gap: var(--espace-6);
  align-items: center;
}

.vt-appel__titre {
  margin: 0 0 var(--espace-3);
  font-family: var(--police-titre);
  font-size: var(--vitrine-titre);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: var(--vitrine-interlettrage-titre);
}

.vt-appel p {
  margin: 0;
  font-size: var(--taille-18);
}

.vt-appel .vt-actions {
  margin: 0;
}

.vt-appel .vt-bouton--contour {
  border-color: var(--blanc);
  color: var(--blanc);
}

/* ---------- Pied de page ---------- */

.vt-pied {
  padding-block: var(--espace-12) var(--espace-6);
  color: var(--ecume-douce);
}

.vt-pied__grille {
  display: grid;
  gap: var(--espace-8);
}

.vt-pied__marque img {
  height: var(--vitrine-hauteur-logo);
  width: auto;
  margin-bottom: var(--espace-4);
}

.vt-pied__titre {
  margin: 0 0 var(--espace-3);
  color: var(--ecume);
  font-weight: 700;
  letter-spacing: var(--vitrine-interlettrage-surtitre);
  text-transform: uppercase;
  font-size: var(--taille-14);
}

.vt-pied ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.vt-pied a {
  display: inline-flex;
  align-items: center;
  min-height: var(--cible-tactile);
  color: var(--ecume);
  text-decoration: none;
}

.vt-pied a:hover {
  text-decoration: underline;
}

.vt-pied__bas {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: var(--espace-3);
  margin-top: var(--espace-8);
  padding-top: var(--espace-6);
  border-top: var(--trait) solid color-mix(in srgb, var(--ecume) 16%, var(--encre));
  font-size: var(--taille-14);
}

.vt-pied__bas p {
  margin: 0;
}

/* ---------- Écrans plus larges ---------- */

@media (min-width: 640px) {
  .vt-conteneur {
    padding-inline: var(--espace-8);
  }

  .vt-grille--2,
  .vt-grille--3,
  .vt-grille--4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .vt-atouts {
    grid-template-columns: repeat(2, max-content);
  }

  .vt-pied__grille {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .vt-pied__marque {
    grid-column: 1 / -1;
  }
}

@media (min-width: 960px) {
  .vt-section,
  .vt-une,
  .vt-entete-page,
  .vt-appel {
    padding-block: 6.5rem;
  }

  .vt-une__grille {
    grid-template-columns: minmax(0, 1.25fr) minmax(0, 1fr);
  }

  .vt-grille--3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .vt-grille--4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .vt-avant-apres,
  .vt-prix,
  .vt-fonction__grille {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .vt-fonction__grille--inverse .vt-fonction__visuel {
    order: -1;
  }

  .vt-prix--clair {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.4fr);
    align-items: start;
  }

  /* Un titre qui reste en vue à gauche pendant que les étapes défilent à droite. */
  .vt-deux-temps {
    display: grid;
    grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
    gap: var(--espace-12);
    align-items: start;
  }

  .vt-deux-temps__entete {
    position: sticky;
    top: 7rem;
    margin-bottom: 0;
  }

  .vt-etapes {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .vt-etapes li:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 2rem;
    inset-inline-start: calc(50% + 2.5rem);
    width: calc(100% - 5rem + var(--espace-8));
    height: 2px;
    background: var(--ligne);
  }

  .vt-appel__boite {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .vt-pied__grille {
    grid-template-columns: minmax(0, 1.6fr) repeat(3, minmax(0, 1fr));
  }

  .vt-pied__marque {
    grid-column: auto;
  }
}

/* Le menu complet tient sur une ligne à partir de 1120 px ; en dessous, le menu repliable. */
@media (min-width: 1120px) {
  .vt-menu,
  .vt-entete__action {
    display: flex;
  }

  .vt-menu-mobile {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .vt-bouton {
    transition: none;
  }
}
