/* ==========================================================================
   Protocole Zéro Blocage — page de vente
   1. Polices (sous-ensemble latin, auto-hébergé)
   2. Design system WanztUI — tokens + composants (verbatim _ds_bundle.css)
   3. Mise en page
   ========================================================================== */

/* 1. Polices ------------------------------------------------------------- */

@font-face {
  font-family: "Epilogue";
  font-style: normal;
  font-weight: 400 600;
  font-display: swap;
  src: url("./fonts/Epilogue-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
    U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193,
    U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Newsreader";
  font-style: normal;
  font-weight: 400 500;
  font-display: swap;
  src: url("./fonts/Newsreader-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
    U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193,
    U+2212, U+2215, U+FEFF, U+FFFD;
}

/* 2. Design system ------------------------------------------------------- */

:root {
  --font-heading: "Epilogue", sans-serif;
  --font-body: "Newsreader", sans-serif;
  --color-background: #faf8f5;
  --color-foreground: #1a1a1a;
  --color-foreground-muted: #4c4c4c;
  --color-primary: #c2410c;
  --color-accent: #0f766e;
  --color-border: #d7d7d7;
  --text-hero: 56px;
  --text-hero-min: 48px;
  --text-hero-max: 64px;
  --text-h1: 36px;
  --text-h2: 28px;
  --text-h3: 22px;
  --text-body: 16px;
  --text-caption: 13px;
  --weight-body: 400;
  --weight-medium: 500;
  --weight-heading: 600;
  --tracking-heading: -0.01em;
  --tracking-body: 0;
  --radius-md: 6px;
  --border-width: 1px;
  --space-xs: 4px;
  --space-sm: 8px;
  --space-md: 12px;
  --space-lg: 16px;
  --space-xl: 24px;

  /* Voltage : l'unique couleur d'accent forte de la page.
     Défaut « Teal (confiance) », comme la maquette au montage. */
  --voltage: var(--color-accent);

  /* Encre inversée : --color-background posé sur les surfaces sombres. */
  --on-dark: rgba(250, 248, 245, 0.9);
  --on-dark-muted: rgba(250, 248, 245, 0.62);
  --on-dark-faint: rgba(250, 248, 245, 0.55);
  --on-dark-line: rgba(250, 248, 245, 0.16);
  --on-dark-fill: rgba(250, 248, 245, 0.07);
}

:root[data-voltage="rust"] {
  --voltage: var(--color-primary);
}
:root[data-voltage="ink"] {
  --voltage: var(--color-foreground);
}

.wz-button {
  font-family: var(--font-body);
  font-size: var(--text-body);
  font-weight: var(--weight-medium);
  letter-spacing: var(--tracking-body);
  line-height: 1;
  border-radius: var(--radius-md);
  border: var(--border-width) solid transparent;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  transition: background-color 150ms ease, color 150ms ease,
    border-color 150ms ease;
}
.wz-button--sm {
  padding: var(--space-sm) var(--space-md);
  font-size: var(--text-caption);
}
.wz-button--md {
  padding: var(--space-md) 20px;
}
.wz-button--lg {
  padding: var(--space-lg) var(--space-xl);
  font-size: var(--text-h3);
}
.wz-button--primary {
  background-color: var(--color-primary);
  color: var(--color-background);
}
.wz-button--primary:hover:not(:disabled) {
  background-color: var(--color-accent);
}
.wz-button--primary:active:not(:disabled) {
  background-color: var(--color-accent);
}
.wz-button--secondary {
  background-color: transparent;
  color: var(--color-foreground);
  border-color: var(--color-border);
}
.wz-button--secondary:hover:not(:disabled) {
  color: var(--color-accent);
  border-color: var(--color-accent);
}
.wz-button:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.wz-card {
  background-color: var(--color-background);
  border: var(--border-width) solid var(--color-border);
  border-radius: var(--radius-md);
  color: var(--color-foreground);
  font-family: var(--font-body);
  font-size: var(--text-body);
  font-weight: var(--weight-body);
  line-height: 1.5;
  display: block;
}
.wz-card--sm {
  padding: var(--space-lg);
}
.wz-card--md {
  padding: 20px;
}
.wz-card--lg {
  padding: var(--space-xl);
}

.wz-heading {
  font-family: var(--font-heading);
  color: var(--color-foreground);
  letter-spacing: var(--tracking-heading);
  margin: 0;
}
.wz-heading--hero {
  font-size: var(--text-hero);
  font-weight: var(--weight-heading);
  line-height: 1.05;
}
.wz-heading--h1 {
  font-size: var(--text-h1);
  font-weight: var(--weight-heading);
  line-height: 1.1;
}
.wz-heading--h2 {
  font-size: var(--text-h2);
  font-weight: var(--weight-heading);
  line-height: 1.15;
}
.wz-heading--h3 {
  font-size: var(--text-h3);
  font-weight: var(--weight-medium);
  letter-spacing: var(--tracking-body);
  line-height: 1.25;
}

.wz-text {
  font-family: var(--font-body);
  font-weight: var(--weight-body);
  letter-spacing: var(--tracking-body);
  margin: 0;
}
.wz-text--body {
  font-size: var(--text-body);
  line-height: 1.6;
}
.wz-text--caption {
  font-size: var(--text-caption);
  line-height: 1.4;
}
.wz-text--default {
  color: var(--color-foreground);
}
.wz-text--muted {
  color: var(--color-foreground-muted);
}

/* 3. Mise en page -------------------------------------------------------- */

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

body {
  margin: 0;
  background: var(--color-background);
  color: var(--color-foreground);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  /* Un mot plus long que sa colonne casse plutôt que de pousser la page. */
  overflow-wrap: break-word;
}

/* .wz-text{margin:0} vise le <span> intérieur, pas le <p> ou le <blockquote>
   qui le porte : ceux-là gardaient les marges par défaut du navigateur, dont
   les 40px d'indentation des citations. Tout l'espacement de cette page vient
   des gap de flex et de grid — ces marges n'étaient que du bruit. */
p,
blockquote,
figure {
  margin: 0;
}

h1.wz-heading,
h2.wz-heading {
  text-wrap: balance;
}

a:not(.wz-button) {
  color: var(--color-primary);
  text-decoration: none;
}
a:not(.wz-button):hover {
  color: var(--color-accent);
}

:where(a, button, summary):focus-visible {
  outline: 2px solid var(--voltage);
  outline-offset: 3px;
}
/* .accordion a overflow:hidden pour arrondir ses angles : un anneau posé
   à l'extérieur y serait rogné. Il passe donc à l'intérieur. */
.accordion__head:focus-visible {
  outline-offset: -3px;
}

.page {
  background: var(--color-background);
  padding-bottom: 84px;
}

.section {
  border-bottom: var(--border-width) solid var(--color-border);
}
.section--last {
  border-bottom: 0;
}
.section--dark {
  background: var(--color-foreground);
}

.wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding: 48px var(--space-lg);
}
.wrap--narrow {
  max-width: 760px;
}
.wrap--stack {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}
/* Le texte courant plafonne à 66 caractères. Au-delà, l'œil perd la ligne
   suivante en revenant à la marge — 4 000 mots à 108 caractères, personne
   ne les lit. */
.wrap--stack > .wz-text--body,
.wrap--stack > .checklist,
.wrap--stack > .quotes,
.callout,
.author__body {
  max-width: 66ch;
}

.eyebrow {
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-accent);
}
.eyebrow--voltage {
  color: var(--voltage);
}
/* Le teal sur l'encre ne donne que 3,2:1 — sous le seuil AA pour du 13px.
   Sur fond sombre, l'eyebrow passe donc au fond clair du système. */
.section--dark .eyebrow--voltage {
  color: var(--color-background);
}

.measure-52 {
  max-width: 52ch;
}
.measure-70 {
  max-width: 70ch;
}
.measure-76 {
  max-width: 76ch;
}

/* Hero --------------------------------------------------------------- */

.hero {
  margin-inline: 40px;
}
.hero__wrap {
  padding: var(--space-xl) var(--space-lg) 48px;
  display: grid;
  /* min() : sans lui, 360px est un plancher dur et la grille déborde
     l'écran au lieu de se replier. Idem pour .cols-2, .offer, .choices. */
  grid-template-columns: repeat(auto-fit, minmax(min(360px, 100%), 1fr));
  gap: var(--space-xl);
  align-items: center;
}
.hero__copy {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  order: 2;
}
.hero__title h1 {
  font-weight: var(--weight-heading);
}
.promise-accent {
  color: var(--color-primary);
}
.promise-ink {
  color: var(--color-foreground);
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--space-lg);
  margin-top: var(--space-xs);
}
.hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-xs) var(--space-lg);
}
.hero__video {
  order: 1;
  border: 2px solid var(--voltage);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--color-foreground);
}
.hero__frame {
  position: relative;
  aspect-ratio: 16 / 9;
}
.hero__frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* Douleur ------------------------------------------------------------ */

.checklist {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.quotes {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}
.quote {
  background: var(--color-foreground);
  border-radius: var(--radius-md) var(--radius-md) var(--radius-md) 2px;
  padding: var(--space-md) var(--space-lg);
  color: var(--on-dark);
}

.callout {
  border-left: 2px solid var(--voltage);
  padding-left: var(--space-lg);
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

/* Avant / Après ------------------------------------------------------ */

.cols-2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(320px, 100%), 1fr));
  gap: var(--space-lg);
}
/* Le seul palier entre le titre et le corps : --text-h3 en graisse de texte.
   Aucune valeur nouvelle — c'est un cran du design system, pas une exception.
   Sans lui, 4 000 mots défilent à une seule taille et rien n'accroche l'œil. */
.lede,
.hero__copy .measure-52 {
  font-size: var(--text-h3);
  line-height: 1.45;
}
.lede {
  margin: var(--space-sm) 0 var(--space-xl);
}

.panel-dark {
  background: var(--color-foreground);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}
.panel-dark__label {
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--on-dark-muted);
  font-family: var(--font-body);
  font-size: var(--text-caption);
}
.panel-dark__quote {
  background: var(--on-dark-fill);
  border: var(--border-width) solid var(--on-dark-line);
  border-radius: var(--radius-md) var(--radius-md) var(--radius-md) 2px;
  padding: var(--space-md) var(--space-lg);
  font-family: var(--font-body);
  font-size: var(--text-body);
  line-height: 1.5;
  color: var(--on-dark);
}
.panel-dark__note {
  font-family: var(--font-body);
  font-size: var(--text-caption);
  color: var(--on-dark-faint);
}

.card-stack {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}
.tick {
  display: flex;
  gap: var(--space-md);
  align-items: flex-start;
}
.tick__mark {
  color: var(--color-accent);
}

/* L'ordre ------------------------------------------------------------ */

/* La séquence est le produit : elle se voit avant de se lire. Le filet en tête
   de chaque phase forme l'épine, et --text-hero (déclaré par le design system,
   jamais employé jusqu'ici) porte enfin le chiffre. */
.spine {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(260px, 100%), 1fr));
  gap: var(--space-xl);
}
.step {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  padding-top: var(--space-md);
  border-top: 2px solid var(--voltage);
}
.step__num {
  font-family: var(--font-heading);
  font-size: var(--text-hero);
  font-weight: var(--weight-heading);
  letter-spacing: var(--tracking-heading);
  line-height: 1;
  color: var(--voltage);
  font-variant-numeric: tabular-nums;
}
/* Le raccourci qui coûte cher, barré — même signe que dans les vidéos. */
.step__wrong {
  margin: 0;
  display: flex;
  gap: var(--space-sm);
  align-items: baseline;
}
.step__x {
  flex: none;
  color: var(--color-primary);
}
.step__wrong s {
  text-decoration-thickness: 1px;
}
.step__covers {
  margin: auto 0 0;
  padding-top: var(--space-xs);
}

/* Preuve ------------------------------------------------------------- */

.proof {
  position: relative;
  height: 280px;
  overflow: hidden;
  border-radius: var(--radius-md);
  border: 2px solid var(--on-dark-line);
}
/* Reproduit le cadrage enregistré dans .image-slots.state.json :
   échelle 1, décalage vertical +13,75 % de la hauteur du cadre. */
.proof img {
  position: absolute;
  left: 50%;
  top: 63.75%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: auto;
  display: block;
}
/* Sous ~478px le cadre devient plus étroit que le ratio de l'image :
   le recouvrement se fait alors par la hauteur, sans débord vertical. */
@media (max-width: 478px) {
  .proof img {
    top: 50%;
    width: auto;
    height: 100%;
  }
}
.on-dark {
  color: rgba(250, 248, 245, 0.85);
}

/* Sur fond d'encre, la rouille des liens tombe à 3,4:1 — sous le seuil AA.
   Le lien y passe donc en clair, souligné. */
.section--dark a:not(.wz-button) {
  color: var(--color-background);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.section--dark a:not(.wz-button):hover {
  text-decoration-thickness: 2px;
}

.author {
  display: flex;
  gap: var(--space-lg);
  align-items: flex-start;
}
/* Le fichier source est un carré large, avec un fond rouge saturé qui se
   battrait avec la voltage teal de la page. Cadrage serré sur le visage :
   le sujet remplit la vignette, le fond n'en occupe plus que les angles. */
.author__portrait {
  flex: none;
  position: relative;
  width: 76px;
  height: 76px;
  overflow: hidden;
  border-radius: var(--radius-md);
  border: 2px solid var(--on-dark-line);
}
.author__portrait img {
  position: absolute;
  display: block;
  width: 180%;
  height: 180%;
  left: -40.4%;
  top: -15.8%;
}
.author__body {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}
.author__sig {
  margin: 0;
  font-family: var(--font-body);
  font-size: var(--text-caption);
  line-height: 1.5;
  color: var(--on-dark-muted);
}

/* Offre -------------------------------------------------------------- */

.offer {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(340px, 100%), 1fr));
  gap: var(--space-xl);
  align-items: start;
}
.offer__main {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}
.offer__aside {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}
/* Colle uniquement quand l'offre tient sur deux colonnes (340 × 2 + 24 + 32
   de gouttières de .wrap). En colonne unique, une carte collante à côté de la
   barre fixe emprisonne le contenu. */
@media (min-width: 736px) {
  .offer__aside {
    position: sticky;
    top: var(--space-lg);
  }
}
.card--voltage {
  border: 2px solid var(--voltage);
}
.row {
  display: flex;
  justify-content: space-between;
  gap: var(--space-md);
}
.row--baseline {
  align-items: baseline;
  gap: var(--space-lg);
}
.row--total {
  border-top: var(--border-width) solid var(--color-border);
  margin-top: var(--space-sm);
  padding-top: var(--space-md);
}
.row--price {
  align-items: baseline;
  padding-top: var(--space-xs);
}
.nowrap {
  white-space: nowrap;
}
.strike {
  text-decoration: line-through;
}
.badge {
  border: 2px solid var(--voltage);
  border-radius: var(--radius-md);
  padding: 2px 10px;
  color: var(--voltage);
  background: var(--color-background);
}
.badge-row {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}
.center {
  text-align: center;
}
.cta-block {
  display: flex;
  margin-top: var(--space-xs);
}
.guarantee {
  display: flex;
  gap: var(--space-md);
  align-items: flex-start;
}
.guarantee__icon {
  flex: none;
  margin-top: 3px;
}
.guarantee__body {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}
.label-block {
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: var(--space-xs);
}

/* Accordéons --------------------------------------------------------- */

.accordion {
  border: 2px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.accordion__item {
  border-bottom: var(--border-width) solid var(--color-border);
}
.accordion__item:last-child {
  border-bottom: 0;
}
/* <summary> : on retire la flèche native, le signe +/− la remplace. */
.accordion__head {
  width: 100%;
  padding: var(--space-lg);
  display: flex;
  align-items: center;
  gap: var(--space-md);
  cursor: pointer;
  list-style: none;
  text-align: left;
  font: inherit;
  color: inherit;
  transition: background-color 150ms ease;
}
.accordion__head::-webkit-details-marker {
  display: none;
}
.accordion__head:hover {
  background: rgba(15, 118, 110, 0.05);
}
.accordion__sign {
  font-family: var(--font-body);
  font-size: var(--text-body);
  color: var(--color-foreground-muted);
  width: 12px;
  flex: none;
}
.accordion__sign::before {
  content: "+";
}
.accordion__item[open] > .accordion__head .accordion__sign::before {
  content: "−"; /* U+2212, comme la maquette */
}
.accordion__title {
  flex: 1;
}
.accordion__panel {
  padding: 0 var(--space-lg) var(--space-lg) 40px;
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}
.accordion__aside {
  color: var(--color-accent);
}

/* Urgence ------------------------------------------------------------ */

.urgency {
  padding: 40px var(--space-lg);
}
.urgency__box {
  border: 2px solid var(--voltage);
  border-radius: var(--radius-md);
  padding: var(--space-xl);
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  align-items: center;
  background: var(--color-background);
}
.countdown {
  display: flex;
  gap: var(--space-md);
  justify-content: center;
  margin: var(--space-sm) 0;
}
.countdown__cell {
  background: var(--voltage);
  border-radius: var(--radius-md);
  padding: var(--space-sm) var(--space-lg);
  min-width: 76px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}
.countdown__value {
  font-family: var(--font-heading);
  font-size: var(--text-h1);
  font-weight: var(--weight-heading);
  color: var(--color-background);
  line-height: 1.1;
  font-variant-numeric: tabular-nums;
}
.countdown__label {
  font-family: var(--font-body);
  font-size: var(--text-caption);
  /* Opaque : à 75% d'opacité sur le teal, le libellé tombait à 3,6:1. */
  color: var(--color-background);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* CTA final ---------------------------------------------------------- */

.final {
  padding: 48px var(--space-lg) 64px;
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
  align-items: center;
}
.choices {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr));
  gap: var(--space-lg);
  width: 100%;
}
.choice--voltage {
  border: 2px solid var(--voltage);
  border-radius: var(--radius-md);
  padding: var(--space-xl);
  background: var(--color-background);
}
.ps {
  border-top: var(--border-width) solid var(--color-border);
  padding-top: var(--space-lg);
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

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

.site-footer {
  border-top: var(--border-width) solid var(--color-border);
}
.site-footer__wrap {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-xl);
  align-items: flex-start;
}
.site-footer__block {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}
.site-footer__block:first-child {
  flex: 1 1 260px;
}
.site-footer__legal {
  flex-basis: 100%;
  margin: 0;
  padding-top: var(--space-lg);
  border-top: var(--border-width) solid var(--color-border);
  max-width: 70ch;
}

/* Barre fixe --------------------------------------------------------- */

.sticky-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 20;
  background: var(--color-background);
  border-top: 2px solid var(--voltage);
  padding: var(--space-sm) var(--space-lg);
  padding-left: max(var(--space-lg), env(safe-area-inset-left, 0px));
  padding-right: max(var(--space-lg), env(safe-area-inset-right, 0px));
  padding-bottom: calc(var(--space-sm) + env(safe-area-inset-bottom, 0px));
  display: flex;
  align-items: center;
  gap: var(--space-lg);
}
.sticky-bar__copy {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
}
.sticky-bar .wz-button {
  flex: none;
}
.sticky-bar__meta {
  font-family: var(--font-body);
  font-size: var(--text-caption);
  color: var(--color-foreground-muted);
}
.sticky-bar__time {
  color: var(--voltage);
  font-variant-numeric: tabular-nums;
}

/* Adaptations ---------------------------------------------------------- */

/* Au doigt, pas à la souris : 44px de haut minimum sur tout ce qu'on touche.
   --lg fait déjà 56px, --md n'en faisait que 42. */
@media (pointer: coarse) {
  .wz-button {
    min-height: 44px;
  }
  .accordion__head {
    min-height: 44px;
  }
}

.cta-short {
  display: none;
}

@media (max-width: 700px) {
  .hero {
    margin-inline: 0;
  }
  .wrap {
    padding-inline: var(--space-lg);
  }
  .accordion__panel {
    padding-left: var(--space-lg);
  }
  /* En colonne unique, la promesse passe avant la vidéo : sur un téléphone,
     l'ordre de la grille est l'ordre de lecture. */
  .hero__copy {
    order: 1;
  }
  .hero__video {
    order: 2;
  }
}

@media (max-width: 560px) {
  :root {
    --text-h1: 30px;
    --text-h2: 24px;
  }
  .countdown__cell {
    min-width: 0;
    flex: 1;
    padding-inline: var(--space-sm);
  }
  /* La barre reste sur une ligne : empilée, elle mangeait ~106px d'un écran
     de 640. On sacrifie le titre du produit — la page est juste au-dessus. */
  .sticky-bar {
    gap: var(--space-md);
  }
  .sticky-bar__title {
    display: none;
  }
  .cta-full {
    display: none;
  }
  .cta-short {
    display: inline;
  }
  /* Les prix barrés sont passés en FCFA : sur un titre d'accordéon étroit,
     ils descendent d'une ligne au lieu d'écraser l'intitulé. */
  .accordion__head {
    flex-wrap: wrap;
  }
  .accordion__head .accordion__title {
    flex: 1 1 auto;
    min-width: 60%;
  }
}

/* Sous ~420px, le libellé long du CTA principal dépasse sa boîte :
   pleine largeur et retour à la ligne autorisé. */
@media (max-width: 420px) {
  .hero__actions .wz-button,
  .final > .wz-button {
    width: 100%;
    line-height: 1.25;
    text-align: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    transition-duration: 0.01ms !important;
  }
}
