/* =============================================================
   landing.css — Food N Fit landing page
   Direction : « l'étiquette nutritionnelle » — règles épaisses,
   Barlow Condensed en display, IBM Plex Mono pour les données,
   et le ticket de caisse comme pièce maîtresse du hero.
   ============================================================= */

/* -------------------------------------------------------------
   1. DESIGN TOKENS
   ------------------------------------------------------------- */
:root {
  /* Encre & papiers */
  --encre: #211C46;          /* violet-noir : texte, règles, bandes */
  --papier: #F3F2FA;         /* fond de page, teinté marque */
  --ticket: #FFFDF6;         /* papier thermique — réservé au ticket */
  --card: #FFFFFF;

  /* Marque (—brand est référencé par script.js, ne pas renommer) */
  --brand: #7168D3;
  --brand-deep: #4A42B8;
  --brand-tint: #E5E2FA;

  /* Sémantique */
  --vert: #5E9C3E;
  --error: #C62828;
  --ink-soft: #63607E;

  /* Alias hérités — contact.html les référence encore */
  --ink: var(--encre);
  --ink-muted: #9B98B0;

  /* Type */
  --font-body: "Barlow", -apple-system, sans-serif;
  --font-display: "Barlow Condensed", "Barlow", sans-serif;
  --font-mono: "IBM Plex Mono", ui-monospace, monospace;

  /* Forme — alignée sur le design system de l'app :
     coins 22px, ombres douces, plus d'ombres dures décalées */
  --r-btn: 14px;
  --r-card: 22px;
  --rule: 2px solid var(--encre);
  --rule-thick: 4px solid var(--encre);
  --ligne: 1px solid #E3E1F2;
  --shadow-card: 0 10px 28px rgba(33, 28, 70, .08), 0 2px 6px rgba(33, 28, 70, .05);
  --shadow-btn: 0 10px 24px rgba(113, 104, 211, .35);

  /* Layout */
  --maxw: 1120px;
}

/* -------------------------------------------------------------
   2. RESET & BASE
   ------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  background: var(--papier);
  color: var(--encre);
  line-height: 1.55;
}

img, svg { display: block; max-width: 100%; }

a { color: var(--brand-deep); }

h1, h2, h3, h4 { margin-top: 0; }

h1, h2 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.02;
  letter-spacing: 0;
}

:focus-visible {
  outline: 3px solid var(--brand);
  outline-offset: 2px;
}

/* -------------------------------------------------------------
   3. LAYOUT PRIMITIVES
   ------------------------------------------------------------- */
.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}

.container--narrow { max-width: 780px; }

.section { padding: 88px 0; }

/* En-tête de section façon table nutritionnelle :
   barre épaisse, titre condensé, annotation mono à droite */
.section-head {
  border-top: var(--rule-thick);
  padding-top: 18px;
  margin-bottom: 44px;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.section-head h2 {
  font-size: clamp(32px, 4.6vw, 48px);
  text-transform: uppercase;
  margin: 0;
}

.section-head__note {
  margin: 0;
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--ink-soft);
}

.section-head--inverse { border-top-color: var(--encre); }
.section-head--inverse .section-head__note { color: var(--ink-soft); }

/* -------------------------------------------------------------
   4. TYPO HELPERS
   ------------------------------------------------------------- */
.kicker {
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--brand-deep);
  margin: 0 0 14px;
}

.kicker--inverse { color: var(--brand-tint); }

/* -------------------------------------------------------------
   5. BOUTONS
   ------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 17px;
  padding: 14px 26px;
  border-radius: var(--r-btn);
  border: 0;
  cursor: pointer;
  text-decoration: none;
  background: var(--brand);
  color: #fff;
  box-shadow: var(--shadow-btn);
  transition: transform .15s ease, box-shadow .15s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(113, 104, 211, .42);
}

.btn:active { transform: translateY(0); }

.btn:disabled { opacity: .6; cursor: wait; }

.btn-ghost {
  background: transparent;
  color: var(--brand-deep);
  box-shadow: none;
  border: 2px solid var(--brand-tint);
  padding: 12px 24px;
}

.btn-ghost:hover { box-shadow: none; border-color: var(--brand); }

.btn--paper {
  background: #fff;
  color: var(--encre);
  box-shadow: 0 10px 24px rgba(23, 20, 51, .22);
}

/* -------------------------------------------------------------
   6. A11Y
   ------------------------------------------------------------- */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--encre);
  color: #fff;
  padding: 10px 18px;
  z-index: 100;
}

.skip-link:focus { left: 0; }

.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

/* Honeypot anti-bot */
.hp { position: absolute; left: -9999px; opacity: 0; pointer-events: none; }

/* -------------------------------------------------------------
   7. HEADER
   ------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(243, 242, 250, .88);
  background: color-mix(in srgb, var(--papier) 88%, transparent);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
  transition: border-color .2s ease;
}

.site-header.scrolled {
  border-bottom-color: #E3E1F2;
  box-shadow: 0 6px 24px rgba(33, 28, 70, .06);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 72px;
}

.site-header__logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--encre);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  text-transform: uppercase;
  letter-spacing: .5px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
}

.nav-links a {
  text-decoration: none;
  color: var(--encre);
  font-weight: 600;
  font-size: 15px;
}

.nav-links a:hover { color: var(--brand-deep); }

/* bat la spécificité de `.nav-links a` (couleur encre) */
.nav-links a.nav-cta,
.nav-links a.nav-cta:hover {
  color: #fff;
}

.nav-links .nav-cta {
  font-size: 14px;
  padding: 9px 16px;
  box-shadow: 0 6px 16px rgba(113, 104, 211, .3);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 0;
  padding: 10px;
  cursor: pointer;
}

.hamburger span {
  width: 22px;
  height: 2px;
  background: var(--encre);
}

/* -------------------------------------------------------------
   8. HERO + TICKET DE CAISSE (signature)
   ------------------------------------------------------------- */
.hero {
  padding: 64px 0 96px;
  overflow: hidden;
}

.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, .85fr);
  gap: 48px;
  align-items: center;
}

.hero h1 {
  font-size: clamp(52px, 7.5vw, 92px);
  margin: 0 0 22px;
}

.hero h1 em {
  font-style: normal;
  color: var(--brand-deep);
}

.hero__sub {
  font-size: 19px;
  color: var(--ink-soft);
  max-width: 46ch;
  margin: 0 0 28px;
}

.hero__note {
  font-family: var(--font-mono);
  font-size: 12.5px;
  color: var(--ink-soft);
  margin: 14px 0 0;
}

/* CTA du hero : App Store + lien waitlist Android */
.hero__cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

/* Mini-form waitlist du hero */
.wl-mini {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  max-width: 520px;
}

.wl-mini input[type="email"],
.wl-form input[type="email"] {
  flex: 1 1 240px;
  font-family: var(--font-mono);
  font-size: 15px;
  padding: 13px 16px;
  border: 1.5px solid #D9D6EC;
  border-radius: var(--r-btn);
  background: var(--card);
  color: var(--encre);
  min-width: 0;
}

.wl-mini input[type="email"]::placeholder,
.wl-form input[type="email"]::placeholder { color: var(--ink-soft); }

/* — Le ticket — */
.hero__visual {
  display: flex;
  justify-content: center;
}

.tkt {
  width: min(340px, 100%);
  background: var(--ticket);
  color: #2A2632;
  font-family: var(--font-mono);
  font-size: 13px;
  line-height: 1.45;
  padding: 26px 22px 34px;
  transform: rotate(2.5deg);
  box-shadow: 0 24px 48px rgba(33, 28, 70, .28);
  position: relative;
}

/* bord déchiqueté haut/bas façon papier thermique */
.tkt::before,
.tkt::after {
  content: "";
  position: absolute;
  left: 0; right: 0;
  height: 10px;
  background:
    linear-gradient(45deg, transparent 33.33%, var(--ticket) 33.33%, var(--ticket) 66.66%, transparent 66.66%),
    linear-gradient(-45deg, transparent 33.33%, var(--ticket) 33.33%, var(--ticket) 66.66%, transparent 66.66%);
  background-size: 14px 20px;
  background-position: 0 0;
}

.tkt::before { top: -9px; transform: scaleY(-1); }
.tkt::after { bottom: -9px; }

.tkt__row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 2.5px 0;
  white-space: nowrap;
}

.tkt__head { font-weight: 600; letter-spacing: 1px; }

.tkt__rule {
  padding: 0;
  border-bottom: 1.5px dashed rgba(42, 38, 50, .45);
  margin: 8px 0;
}

.tkt__meta {
  justify-content: flex-end;
  font-size: 11.5px;
  font-style: italic;
  color: #6E6880;
}

.tkt__total {
  font-weight: 600;
  font-size: 15px;
}

.tkt__rest {
  font-weight: 600;
  color: var(--vert);
}

.tkt__thanks {
  justify-content: center;
  letter-spacing: 1px;
  font-size: 11.5px;
}

.tkt__barcode {
  height: 44px;
  margin: 16px 18px 0;
  background: repeating-linear-gradient(
    90deg,
    #2A2632 0 2px, transparent 2px 4px,
    #2A2632 4px 7px, transparent 7px 9px,
    #2A2632 9px 10px, transparent 10px 14px,
    #2A2632 14px 16px, transparent 16px 17px,
    #2A2632 17px 21px, transparent 21px 24px
  );
}

/* Impression du ticket au chargement */
@media (prefers-reduced-motion: no-preference) {
  .tkt { animation: tkt-out .7s cubic-bezier(.2, .8, .3, 1) both; }

  .tkt__row, .tkt__barcode {
    animation: tkt-line .34s ease-out both;
  }

  .tkt__row:nth-child(1)  { animation-delay: .25s; }
  .tkt__row:nth-child(2)  { animation-delay: .33s; }
  .tkt__row:nth-child(3)  { animation-delay: .41s; }
  .tkt__row:nth-child(4)  { animation-delay: .49s; }
  .tkt__row:nth-child(5)  { animation-delay: .57s; }
  .tkt__row:nth-child(6)  { animation-delay: .65s; }
  .tkt__row:nth-child(7)  { animation-delay: .73s; }
  .tkt__row:nth-child(8)  { animation-delay: .81s; }
  .tkt__row:nth-child(9)  { animation-delay: .89s; }
  .tkt__row:nth-child(10) { animation-delay: .97s; }
  .tkt__row:nth-child(11) { animation-delay: 1.05s; }
  .tkt__row:nth-child(12) { animation-delay: 1.13s; }
  .tkt__row:nth-child(13) { animation-delay: 1.21s; }
  .tkt__row:nth-child(14) { animation-delay: 1.29s; }
  .tkt__row:nth-child(15) { animation-delay: 1.37s; }
  .tkt__row:nth-child(16) { animation-delay: 1.45s; }
  .tkt__row:nth-child(17) { animation-delay: 1.53s; }
  .tkt__barcode           { animation-delay: 1.63s; }
}

@keyframes tkt-out {
  from { transform: rotate(2.5deg) translateY(26px); opacity: 0; }
  to   { transform: rotate(2.5deg) translateY(0); opacity: 1; }
}

@keyframes tkt-line {
  from { opacity: 0; transform: translateY(5px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* -------------------------------------------------------------
   9. TABLE NUTRITIONNELLE DES FONCTIONNALITÉS
   ------------------------------------------------------------- */
.spec-table {
  margin: 0;
  border-bottom: var(--rule);
}

.spec-row {
  display: grid;
  grid-template-columns: minmax(220px, .9fr) minmax(0, 1.6fr) auto;
  gap: 8px 28px;
  align-items: baseline;
  padding: 20px 0;
  border-top: var(--ligne);
}

.spec-row:first-child { border-top: none; }

.spec-row dt {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 24px;
  line-height: 1.1;
}

.spec-row dd {
  margin: 0;
  color: var(--ink-soft);
  font-size: 16px;
}

.spec-val {
  font-family: var(--font-mono);
  font-weight: 600;
  font-size: 15px;
  color: var(--brand-deep);
  justify-self: end;
  white-space: nowrap;
}

/* Pilules teintées, comme les tags de l'app */
.spec-badge {
  display: inline-block;
  vertical-align: middle;
  font-family: var(--font-mono);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--brand-deep);
  background: var(--brand-tint);
  border-radius: 999px;
  padding: 3px 10px;
  margin-left: 8px;
  transform: translateY(-2px);
}

.spec-badge--vert { background: #E2F0D8; color: #48762C; }

.spec-foot {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--ink-soft);
  margin: 14px 0 0;
}

/* -------------------------------------------------------------
   10. COMMENT ÇA MARCHE
   ------------------------------------------------------------- */
.how-steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.how-step__num {
  display: block;
  font-family: var(--font-mono);
  font-weight: 600;
  font-size: 14px;
  color: var(--brand-deep);
  border-top: var(--rule);
  padding-top: 12px;
  margin-bottom: 10px;
}

.how-step h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 24px;
  margin: 0 0 6px;
}

.how-step p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 15.5px;
}

/* -------------------------------------------------------------
   11. GALERIE APP
   ------------------------------------------------------------- */
.app-gallery {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  padding: 8px max(24px, calc((100vw - var(--maxw)) / 2 + 24px)) 24px;
  scroll-snap-type: x mandatory;
  scrollbar-color: var(--encre) transparent;
}

.app-gallery:focus-visible { outline-offset: -3px; }

/* Panneaux marketing (visuels App Store 1242×2688, servis en 640px webp) */
.shot-panel {
  flex: 0 0 auto;
  width: 280px;
  border: 1px solid #D9D6EC;
  border-radius: 24px;
  overflow: hidden;
  background: #fff;
  scroll-snap-align: center;
  /* élévation renforcée : les visuels clairs se détachaient mal du fond */
  box-shadow:
    0 22px 44px rgba(33, 28, 70, .18),
    0 6px 14px rgba(33, 28, 70, .10);
}

.shot-panel img { width: 100%; height: auto; }

/* -------------------------------------------------------------
   12. BANDES ENCRE (confiance + waitlist)
   ------------------------------------------------------------- */
.band {
  background: #E9E6F8;
  color: var(--encre);
  padding: 88px 0;
}

.band a { color: var(--brand-deep); }

.band__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.band__col h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 26px;
  margin: 0 0 8px;
}

.band__col p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 16px;
}

/* Waitlist — violet profond, le seul aplat sombre de la page */
.band--waitlist {
  text-align: center;
  background: var(--brand-deep);
  color: #fff;
}

.band--waitlist h2 {
  color: #fff;
  font-size: clamp(36px, 5vw, 56px);
  text-transform: uppercase;
  margin-bottom: 12px;
}

.band__sub {
  color: #DDD9F6;
  max-width: 52ch;
  margin: 0 auto 32px;
}

.wl-form { max-width: 560px; margin: 0 auto; }

.wl-form__line {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.wl-form input[type="email"] { border-color: #fff; }

.wl-consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  justify-content: center;
  font-size: 14px;
  color: #DDD9F6;
  margin-top: 18px;
  cursor: pointer;
}

.wl-consent input {
  margin-top: 3px;
  accent-color: #fff;
  width: 16px;
  height: 16px;
}

/* Messages formulaire */
.wl-msg {
  flex-basis: 100%;
  font-family: var(--font-mono);
  font-size: 13.5px;
  margin: 6px 0 0;
  min-height: 1.2em;
}

.wl-msg.is-error { color: var(--error); }
/* Rappel App Store sous le formulaire Android — la bande est en violet
   profond, la couleur .band a (brand-deep) y serait illisible. */
.band--waitlist .band__ios-note {
  font-family: var(--font-mono);
  font-size: 13.5px;
  color: #DDD9F6;
  margin: 28px 0 0;
}

.band--waitlist .band__ios-note a {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.band--waitlist .wl-msg.is-error { color: #FFB3AD; }
.wl-msg.is-success { color: var(--vert); }
.band--waitlist .wl-msg.is-success { color: #A8D98A; }

/* -------------------------------------------------------------
   13. TARIFS
   ------------------------------------------------------------- */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 420px));
  justify-content: center;
  gap: 32px;
}

.pricing-card {
  position: relative;
  background: var(--card);
  border: 1px solid #E9E7F5;
  border-radius: var(--r-card);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  box-shadow: var(--shadow-card);
}

.pricing-card.featured {
  border: 2px solid var(--brand);
  box-shadow: 0 18px 44px rgba(113, 104, 211, .22);
}

.pricing-badge {
  position: absolute;
  top: -14px;
  left: 28px;
  font-family: var(--font-mono);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  background: var(--brand-deep);
  color: #fff;
  border-radius: 999px;
  padding: 5px 12px;
}

.pricing-name {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin: 0;
}

.pricing-price { display: flex; align-items: baseline; gap: 6px; }

.pricing-amount {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 64px;
  line-height: 1;
}

.pricing-period {
  font-family: var(--font-mono);
  font-size: 15px;
  color: var(--ink-soft);
}


.pricing-note {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--vert);
  margin: 0;
}


.pricing-includes {
  font-size: 14.5px;
  color: var(--ink-soft);
  margin: 6px 0 18px;
}

.pricing-card .btn { align-self: stretch; }

/* -------------------------------------------------------------
   14. FAQ
   ------------------------------------------------------------- */
.faq-list { border-bottom: var(--ligne); }

.faq-item { border-top: var(--ligne); }

.faq-item summary {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  padding: 18px 36px 18px 0;
  cursor: pointer;
  list-style: none;
  position: relative;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 4px;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-mono);
  font-size: 22px;
  color: var(--brand-deep);
}

.faq-item[open] summary::after { content: "−"; }

.faq-item p {
  margin: 0 0 20px;
  color: var(--ink-soft);
  max-width: 62ch;
}

/* -------------------------------------------------------------
   15. FOOTER
   ------------------------------------------------------------- */
.site-footer {
  border-top: 1px solid #E3E1F2;
  padding-top: 56px;
  background: #fff;
}

.site-footer__inner {
  display: flex;
  justify-content: space-between;
  gap: 48px;
  flex-wrap: wrap;
  padding-bottom: 40px;
}

.site-footer__tag {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--ink-soft);
  margin: 12px 0 0;
  max-width: 26ch;
}

.site-footer__cols {
  display: flex;
  gap: 64px;
  flex-wrap: wrap;
}

.site-footer__col { display: flex; flex-direction: column; gap: 8px; }

.site-footer__col h4 {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin: 0 0 6px;
}

.site-footer__col a {
  text-decoration: none;
  color: var(--encre);
  font-size: 15px;
}

.site-footer__col a:hover { color: var(--brand-deep); }

.site-footer__bottom {
  border-top: var(--ligne);
  padding: 18px 0;
  font-family: var(--font-mono);
  font-size: 12.5px;
  color: var(--ink-soft);
}

/* -------------------------------------------------------------
   16. ANIMATIONS SCROLL (.reveal — piloté par script.js)
   ------------------------------------------------------------- */
.reveal { opacity: 0; transform: translateY(14px); }

.reveal.in {
  opacity: 1;
  transform: none;
  transition: opacity .5s ease, transform .5s ease;
}

.reveal-delay-1.in { transition-delay: .08s; }
.reveal-delay-2.in { transition-delay: .16s; }
.reveal-delay-3.in { transition-delay: .24s; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; }
  .reveal.in { transition: none; }
  * { scroll-behavior: auto !important; }
}

/* -------------------------------------------------------------
   17. RESPONSIVE
   ------------------------------------------------------------- */
@media (max-width: 960px) {
  .hero__grid {
    grid-template-columns: 1fr;
    gap: 56px;
  }

  .hero { padding-bottom: 72px; }

  .tkt { transform: rotate(0deg); }

  @media (prefers-reduced-motion: no-preference) {
    .tkt { animation-name: tkt-out-flat; }
  }

  .spec-row {
    grid-template-columns: 1fr auto;
    grid-template-areas:
      "name val"
      "desc desc";
  }

  .spec-row dt { grid-area: name; }
  .spec-row dd { grid-area: desc; }
  .spec-val { grid-area: val; }

  .how-steps { grid-template-columns: repeat(2, 1fr); }

  .band__grid { grid-template-columns: 1fr; gap: 32px; }

  .pricing-grid { grid-template-columns: minmax(0, 460px); }
}

@keyframes tkt-out-flat {
  from { transform: translateY(26px); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}

@media (max-width: 720px) {
  .nav-links {
    position: absolute;
    top: 72px;
    left: 0; right: 0;
    background: var(--papier);
    border-bottom: var(--ligne);
    box-shadow: 0 18px 30px rgba(33, 28, 70, .1);
    flex-direction: column;
    align-items: stretch;
    padding: 20px 24px 24px;
    gap: 18px;
    display: none;
  }

  .navbar.menu-open .nav-links { display: flex; }

  .hamburger { display: flex; }

  .section { padding: 64px 0; }

  .band { padding: 64px 0; }

  .how-steps { grid-template-columns: 1fr; gap: 24px; }

  .site-footer__cols { gap: 36px; }
}
