/* ============================================
   SnapMEAL — Stylesheet
   Direction : « Éditorial Gourmand »
   Vert profond dominant · serif de caractère · filets fins
   Brand: Green #12492D · Orange #E8762A · Cream #FAF0E2
   ============================================ */

/* ─── Reset & Base ─── */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* Encres & verts */
  --ink: #1C1917;
  --green: #12492D;
  --green-deep: #0B3320;
  --green-mid: #2D7A52;
  --green-pale: #E4EFE6;

  /* Accents chauds */
  --orange: #E8762A;
  --orange-dark: #C25E1A;   /* grands titres sur fond clair (3.75:1) */
  --orange-ink:  #A9491A;   /* PETITS textes sur fond clair (4.9:1) */
  --orange-pale: #FBEADC;
  /* Orange éclairci — réservé aux PETITS textes sur fond vert/sombre :
     l'orange plein n'y atteint que 3.25:1, insuffisant sous 18px. */
  --orange-soft: #F4A26A;
  --terracotta: #C9432B;
  --ochre: #D9A441;

  /* Papiers */
  --cream: #FAF0E2;
  --cream-2: #F2E5D0;
  --paper: #FFFCF6;
  --white: #FFFFFF;

  /* Textes */
  --text: #23201C;
  --text-mid: #5A544C;
  --text-light: #8A8279;
  --on-green: #FAF0E2;
  --on-green-mid: rgba(250, 240, 226, 0.68);

  /* Filets — l'éditorial se joue au trait, pas à l'ombre */
  --rule: rgba(28, 25, 23, 0.14);
  --rule-strong: rgba(28, 25, 23, 0.28);
  --rule-light: rgba(250, 240, 226, 0.22);

  /* Typo */
  --font-display: 'Fraunces', Georgia, 'Times New Roman', serif;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  --radius-sm: 3px;
  --radius-md: 6px;
  --radius-lg: 10px;

  /* Compat pages légales */
  --border: var(--rule);
  --green-light: var(--green-pale);
  --orange-light: var(--orange-pale);
  --cream-dark: var(--cream-2);
  --shadow-sm: none;
  --shadow-md: none;
  --shadow-lg: none;
  --radius-xl: 12px;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-sans);
  background: var(--cream);
  color: var(--text);
  line-height: 1.6;
  font-size: 16px;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: color 0.2s ease; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ─── Layout ─── */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 32px;
}

.section { padding: 112px 0; position: relative; }
.section-sm { padding: 64px 0; }

/* ─── Typographie ─── */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--text);
  font-optical-sizing: auto;
}

h1 { font-size: clamp(2.75rem, 6.5vw, 5rem); }
h2 { font-size: clamp(2rem, 4.2vw, 3.15rem); margin-bottom: 18px; }
h3 { font-size: clamp(1.2rem, 1.9vw, 1.45rem); font-weight: 600; }

em, .italic { font-style: italic; }

/* Le mot mis en italique dans chaque titre passe en orange :
   un accent chaud récurrent qui rythme toute la page. */
h1 em, h2 em, h3 em { color: var(--orange-dark); }
/* Sur fond vert, l'orange plein redevient lisible aux grandes tailles */
.on-dark h1 em, .on-dark h2 em, .showcase h2 em { color: var(--orange); }

/* Étiquette de rubrique — petites capitales + filet, signature magazine */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--orange-ink);
  margin-bottom: 22px;
}
.eyebrow::before {
  content: '';
  width: 32px;
  height: 1px;
  background: currentColor;
  opacity: 0.55;
}
.section-head-center .eyebrow::after {
  content: '';
  width: 32px;
  height: 1px;
  background: currentColor;
  opacity: 0.55;
}
/* Sur fond vert, l'orange plein tombe à 3.25:1 → nuance éclaircie (4.7:1) */
.on-dark .eyebrow,
.showcase .eyebrow { color: var(--orange-soft); }

.lead {
  font-size: clamp(1.05rem, 1.4vw, 1.18rem);
  color: var(--text-mid);
  max-width: 620px;
  line-height: 1.68;
}

.text-green { color: var(--green); }
.text-orange { color: var(--orange); }
.text-gradient { color: var(--orange); }

.section-head-center { text-align: center; max-width: 740px; margin: 0 auto; }
.section-head-center .lead { margin-left: auto; margin-right: auto; }
.section-head-center .eyebrow { justify-content: center; }

/* ─── Boutons — angles nets, pas de pilule ─── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 30px;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  border-radius: var(--radius-sm);
  transition: background 0.22s ease, color 0.22s ease, border-color 0.22s ease;
  white-space: nowrap;
  cursor: pointer;
}

/* Libelle en vert profond : sur orange vif, le blanc ne donne que 2.98:1
   (sous le seuil AA). Le vert profond monte a 4.68:1 sans ternir l'orange. */
.btn-primary { background: var(--orange); color: var(--green-deep); }
.btn-primary:hover { background: #F08A42; color: var(--green-deep); }

.btn-secondary { background: var(--green); color: var(--cream); }
.btn-secondary:hover { background: var(--green-deep); }

.btn-ghost {
  background: transparent;
  color: var(--green);
  border: 1px solid var(--rule-strong);
}
.btn-ghost:hover { background: var(--green); color: var(--cream); border-color: var(--green); }

/* Sur fond vert — l'orange claque bien plus que le crème */
.on-dark .btn-primary { background: var(--orange); color: var(--green-deep); }
.on-dark .btn-primary:hover { background: #F08A42; }
.on-dark .btn-ghost { color: var(--cream); border-color: var(--rule-light); }
.on-dark .btn-ghost:hover { background: var(--cream); color: var(--green-deep); border-color: var(--cream); }

.btn-store {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 22px;
  background: transparent;
  color: var(--cream);
  border: 1px solid var(--rule-light);
  border-radius: var(--radius-sm);
  font-weight: 500;
  transition: background 0.22s ease, border-color 0.22s ease;
  min-width: 186px;
}
.btn-store:hover { background: rgba(250, 240, 226, 0.08); border-color: var(--cream); }
.btn-store .store-icon { width: 30px; height: 30px; flex-shrink: 0; }
.btn-store .store-text { display: flex; flex-direction: column; line-height: 1.15; text-align: left; }
.btn-store .store-text small { font-size: 0.68rem; opacity: 0.7; font-weight: 400; letter-spacing: 0.06em; text-transform: uppercase; }
.btn-store .store-text strong { font-size: 1rem; font-weight: 600; }

/* ─── Bandeau de tête (masthead) ─── */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 14px 0;
  background: var(--green-deep);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease, padding 0.3s ease;
}
.header.scrolled { border-bottom-color: var(--orange); padding: 10px 0; }

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 1.35rem;
  color: var(--cream);
}
.nav-logo img { height: 34px; width: auto; filter: brightness(0) invert(1); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
  list-style: none;
}
.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--on-green-mid);
}
.nav-links a:hover { color: var(--cream); }
.nav-links .btn-primary { color: var(--green-deep); background: var(--orange); }
.nav-links .btn-primary:hover { background: #F08A42; color: var(--green-deep); }

.nav-mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.nav-mobile-toggle span {
  width: 24px; height: 2px;
  background: var(--cream);
  transition: all 0.3s ease;
}

/* ─── Hero — pleine page verte, composition asymétrique ─── */
.hero {
  position: relative;
  padding: 168px 0 96px;
  background: var(--green);
  color: var(--on-green);
  overflow: hidden;
}
/* Filet vertical décoratif : rappel de la colonne de magazine */
.hero::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  left: 50%;
  width: 1px;
  background: var(--rule-light);
  opacity: 0.5;
  display: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero h1, .hero-title { color: var(--on-green); }
.hero-title {
  font-size: clamp(2.85rem, 6vw, 5rem);
  font-weight: 500;
  margin-bottom: 28px;
  letter-spacing: -0.028em;
}
.hero-title .highlight {
  color: var(--orange);
  font-style: italic;
  font-weight: 600;
}

.hero-subtitle {
  font-size: clamp(1.05rem, 1.4vw, 1.22rem);
  color: var(--on-green-mid);
  margin-bottom: 40px;
  max-width: 460px;
  line-height: 1.65;
}
.hero-subtitle strong { color: var(--cream); font-weight: 600; }

.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-top: 24px;
  border-top: 1px solid var(--rule-light);
  color: var(--on-green-mid);
  font-size: 0.85rem;
  letter-spacing: 0.02em;
  max-width: 460px;
}

/* Composition « assiette » : cercles concentriques + capture d'écran */
.hero-visual {
  position: relative;
  height: 560px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-plate {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.hero-plate-1 {
  width: 460px; height: 460px;
  background: rgba(232, 118, 42, 0.18);
}
.hero-plate-2 {
  width: 340px; height: 340px;
  border: 1px solid rgba(244, 162, 106, 0.55);
}

.phone-mockup {
  position: relative;
  width: 268px;
  border-radius: 30px;
  overflow: hidden;
  background: var(--white);
  border: 7px solid var(--ink);
  z-index: 2;
}
.phone-mockup img { width: 100%; display: block; }
.phone-mockup-1 { transform: rotate(-3deg); }
.phone-mockup-2 { display: none; }

.phone-placeholder {
  width: 100%;
  aspect-ratio: 9/19.5;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 16px;
  padding: 40px 20px;
  text-align: center;
}
.phone-placeholder .ph-emoji { font-size: 3rem; }
.phone-placeholder .ph-title { font-family: var(--font-display); font-weight: 600; color: var(--green); font-size: 1.2rem; }
.phone-placeholder .ph-text { font-size: 0.85rem; color: var(--text-mid); }

/* Mascotte — discrète, jamais le sujet principal en éditorial */
.floating-mascot {
  position: absolute;
  width: 76px;
  height: auto;
  z-index: 3;
  animation: float 6s ease-in-out infinite;
}
.floating-mascot-1 { top: 6%; right: 2%; animation-delay: 0s; }
.floating-mascot-2 { display: none; }

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(-4deg); }
  50% { transform: translateY(-14px) rotate(4deg); }
}

/* ─── Bandeau de chiffres — bande orange pleine, texte vert profond ─── */
.stats-bar {
  background: var(--orange);
  padding: 0;
  border: none;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  text-align: center;
}
.stat-item {
  padding: 44px 20px;
  border-left: 1px solid rgba(11, 51, 32, 0.22);
}
.stat-item:first-child { border-left: none; }
.stat-item .stat-number {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.4vw, 2.85rem);
  font-weight: 500;
  color: var(--green-deep);
  line-height: 1;
  margin-bottom: 10px;
}
/* Texte plein (pas d'opacité) : sur orange, tout affaiblissement
   ferait passer ce petit corps sous le seuil de lisibilité. */
.stat-item .stat-label {
  font-size: 0.72rem;
  color: var(--green-deep);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-weight: 600;
}

/* ─── Bénéfices — colonnes numérotées, sans carte ─── */
.benefits { background: var(--paper); }

.benefit-list {
  margin-top: 72px;
  border-top: 1px solid var(--rule);
}
.benefit-row {
  display: grid;
  grid-template-columns: 92px 1fr 1.15fr;
  gap: 32px;
  align-items: start;
  padding: 40px 0;
  border-bottom: 1px solid var(--rule);
}
.benefit-num {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--orange-dark);
  line-height: 1;
  padding-top: 4px;
}
.benefit-row h3 { color: var(--green); letter-spacing: -0.015em; }
.benefit-row p { color: var(--text-mid); font-size: 0.98rem; line-height: 1.7; }

/* ─── Comment ça marche — bandes numérotées sur crème ─── */
.how-it-works { background: var(--cream); }

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 72px;
  border-top: 1px solid var(--rule);
}
.step-card {
  position: relative;
  background: transparent;
  padding: 44px 36px 12px;
  border-left: 1px solid var(--rule);
  transition: background 0.3s ease;
}
.step-card:first-child { border-left: none; padding-left: 0; }
.step-card:last-child { padding-right: 0; }
.step-card:hover { background: rgba(255, 253, 246, 0.7); }

.step-number {
  display: block;
  font-family: var(--font-display);
  font-size: 3.2rem;
  font-weight: 400;
  color: var(--orange-dark);
  line-height: 1;
  margin-bottom: 22px;
  letter-spacing: -0.04em;
}
.step-card h3 { margin-bottom: 12px; color: var(--green); }
.step-card p { color: var(--text-mid); font-size: 0.96rem; line-height: 1.7; }

/* ─── Fonctionnalités — rangées éditoriales alternées ─── */
.features { background: var(--paper); }

.feature-rows { margin-top: 72px; }
.feature-row {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 60px;
  align-items: center;
  padding: 56px 0;
  border-top: 1px solid var(--rule);
}
.feature-row:last-child { border-bottom: 1px solid var(--rule); }
.feature-row.reverse { grid-template-columns: 1.1fr 0.9fr; }
.feature-row.reverse .feature-copy { order: 2; }
.feature-row.reverse .feature-visual { order: 1; }

.feature-kicker {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 14px;
}
.feature-copy h3 {
  font-size: clamp(1.5rem, 2.4vw, 1.95rem);
  color: var(--green);
  margin-bottom: 14px;
}
.feature-copy p { color: var(--text-mid); line-height: 1.72; max-width: 480px; }

.feature-points {
  list-style: none;
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.feature-points li {
  font-size: 0.93rem;
  color: var(--text-mid);
  padding-left: 20px;
  position: relative;
}
.feature-points li::before {
  content: '';
  position: absolute;
  left: 0; top: 0.62em;
  width: 9px; height: 1px;
  background: var(--orange-dark);
}

.feature-visual {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--green-pale);
  display: flex;
  align-items: center;
  justify-content: center;
}
.feature-visual.tone-green { background: var(--green); }
.feature-visual.tone-cream { background: var(--cream-2); }
.feature-visual.tone-orange { background: var(--orange); }
.feature-visual.tone-orange-pale { background: var(--orange-pale); }
.feature-visual img {
  width: 60%;
  max-width: 210px;
  border-radius: 18px;
  border: 6px solid var(--ink);
}

/* ─── Aperçu / captures ─── */
.showcase {
  background: var(--green);
  color: var(--on-green);
  padding: 112px 0;
  overflow: hidden;
}
.showcase h2 { color: var(--on-green); }
.showcase .lead { color: var(--on-green-mid); }
.showcase .eyebrow { color: var(--ochre); }

.showcase-phones {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 36px;
  margin-top: 72px;
  flex-wrap: wrap;
}
.showcase-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
  flex: 0 0 auto;
}
.showcase-item figcaption {
  font-size: 0.9rem;
  color: var(--on-green-mid);
  text-align: center;
  max-width: 208px;
  line-height: 1.55;
}
.showcase-item figcaption strong {
  display: block;
  font-family: var(--font-display);
  color: var(--cream);
  font-size: 1.08rem;
  font-weight: 600;
  margin-bottom: 5px;
}

.showcase-phone {
  width: 218px;
  flex-shrink: 0;
  border-radius: 26px;
  overflow: hidden;
  background: var(--white);
  border: 6px solid var(--ink);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.showcase-item:hover .showcase-phone { transform: translateY(-10px); }

/* ─── Tarifs ─── */
.pricing { background: var(--cream); }

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  max-width: 880px;
  margin: 72px auto 0;
  border: 1px solid var(--rule);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--paper);
}
.pricing-card { padding: 40px 36px; position: relative; }
.pricing-card + .pricing-card { border-left: 1px solid var(--rule); }
.pricing-card.premium { background: var(--green); color: var(--on-green); }

.pricing-badge {
  display: inline-block;
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--green-deep);
  background: var(--orange);
  padding: 5px 11px;
  border-radius: var(--radius-sm);
  margin-bottom: 18px;
}
.pricing-name {
  font-family: var(--font-sans);
  font-size: 0.74rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--text-light);
  margin-bottom: 12px;
}
.pricing-card.premium .pricing-name { color: var(--orange-soft); }

.pricing-price {
  font-family: var(--font-display);
  font-size: 2.7rem;
  font-weight: 500;
  color: var(--text);
  line-height: 1;
  margin-bottom: 6px;
  letter-spacing: -0.03em;
}
.pricing-card.premium .pricing-price { color: var(--cream); }
.pricing-price span {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-light);
  letter-spacing: 0;
}
.pricing-card.premium .pricing-price span { color: var(--on-green-mid); }

.pricing-sub {
  font-size: 0.88rem;
  color: var(--text-light);
  margin-bottom: 30px;
  min-height: 22px;
}
.pricing-card.premium .pricing-sub { color: var(--on-green-mid); }

.pricing-table { width: 100%; border-collapse: collapse; font-size: 0.9rem; }
.pricing-table tr { border-bottom: 1px solid var(--rule); }
.pricing-table tr:last-child { border-bottom: none; }
.pricing-card.premium .pricing-table tr { border-bottom-color: var(--rule-light); }
.pricing-table td { padding: 12px 0; color: var(--text-mid); }
.pricing-card.premium .pricing-table td { color: var(--on-green-mid); }
.pricing-table td:last-child {
  text-align: right;
  font-weight: 600;
  color: var(--text);
  white-space: nowrap;
  padding-left: 12px;
}
.pricing-card.premium .pricing-table td:last-child { color: var(--cream); }
.pricing-yes::before { content: "— "; color: var(--orange-soft); }
.pricing-no { color: var(--text-light) !important; font-weight: 400 !important; }
.pricing-no::before { content: "— "; }

.pricing-note {
  text-align: center;
  margin: 32px auto 0;
  max-width: 720px;
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.65;
}

/* ─── FAQ ─── */
.faq { background: var(--paper); }

.faq-list {
  max-width: 820px;
  margin: 72px auto 0;
  border-top: 1px solid var(--rule);
}
.faq-item {
  background: transparent;
  border-bottom: 1px solid var(--rule);
  transition: none;
}
.faq-question {
  width: 100%;
  padding: 26px 4px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.12rem;
  letter-spacing: -0.012em;
  color: var(--green);
  transition: color 0.2s ease;
}
.faq-question:hover { color: var(--orange-ink); }
.faq-icon {
  width: 20px; height: 20px;
  flex-shrink: 0;
  position: relative;
  margin-left: 20px;
}
.faq-icon::before, .faq-icon::after {
  content: '';
  position: absolute;
  background: var(--orange-dark);
  transition: transform 0.3s ease;
}
.faq-icon::before { top: 9px; left: 0; right: 0; height: 1.5px; }
.faq-icon::after { left: 9px; top: 0; bottom: 0; width: 1.5px; }
.faq-item.open .faq-icon::after { transform: rotate(90deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.32s ease, padding 0.32s ease;
  color: var(--text-mid);
  padding: 0 4px;
}
.faq-item.open .faq-answer { max-height: 520px; padding: 0 4px 26px; }
.faq-answer p { line-height: 1.72; max-width: 660px; }

/* ─── Appel final — bande orange pleine ─── */
/* Sur orange, seul un texte foncé passe le seuil AA : le vert profond
   donne 4.70:1, valable jusqu'aux petits corps. Le mot en exergue se
   distingue donc par l'italique, pas par la couleur. */
.cta-section {
  background: var(--orange);
  color: var(--green-deep);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section h2,
.cta-section h2 em { color: var(--green-deep); }
.cta-section h2 { font-size: clamp(2.1rem, 4.4vw, 3.35rem); }
.cta-section .lead { color: var(--green-deep); margin: 18px auto 36px; opacity: 0.9; }
.cta-section .eyebrow { color: var(--green-deep); justify-content: center; }
.cta-section .container { position: relative; z-index: 1; }
.cta-section .btn-store {
  color: var(--green-deep);
  border-color: rgba(11, 51, 32, 0.32);
}
.cta-section .btn-store:hover {
  background: rgba(11, 51, 32, 0.08);
  border-color: var(--green-deep);
}

.cta-stores {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-waitlist {
  display: flex;
  gap: 12px;
  max-width: 480px;
  margin: 0 auto;
  flex-wrap: wrap;
  justify-content: center;
}
.cta-waitlist input {
  flex: 1;
  min-width: 240px;
  padding: 15px 20px;
  border: 1px solid var(--rule-light);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 1rem;
  background: rgba(250, 240, 226, 0.08);
  color: var(--cream);
  outline: none;
}
.cta-waitlist input::placeholder { color: rgba(250, 240, 226, 0.45); }
.cta-waitlist input:focus { border-color: var(--orange); }

/* ─── Pied de page ─── */
.footer {
  background: var(--ink);
  color: rgba(250, 240, 226, 0.62);
  padding: 88px 0 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 64px;
}

.footer-brand .nav-logo { color: var(--cream); margin-bottom: 18px; }
.footer-brand p { font-size: 0.93rem; max-width: 340px; line-height: 1.7; }

/* Sur l'encre du pied de page, l'orange plein passe à 5.87:1 — utilisable
   même en petit corps, contrairement au fond vert. */
.footer h4 {
  font-family: var(--font-sans);
  color: var(--orange);
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  margin-bottom: 22px;
}

.footer ul { list-style: none; display: flex; flex-direction: column; gap: 11px; }
.footer ul a {
  color: rgba(250, 240, 226, 0.62);
  font-size: 0.92rem;
}
.footer ul a:hover { color: var(--orange); }

.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid rgba(250, 240, 226, 0.12);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.83rem;
}

/* ─── Pages légales — sobriété assumée ─── */
.legal-page {
  padding: 140px 0 88px;
  background: var(--cream);
  min-height: 100vh;
}

.legal-content {
  max-width: 800px;
  margin: 0 auto;
  background: var(--paper);
  padding: 60px 60px 52px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--rule);
}

.legal-content h1 {
  font-size: clamp(2rem, 4vw, 2.7rem);
  margin-bottom: 10px;
  color: var(--green);
  font-weight: 600;
}
.legal-content .updated {
  color: var(--text-light);
  font-size: 0.86rem;
  margin-bottom: 44px;
  display: block;
  letter-spacing: 0.02em;
}
.legal-content h2 {
  font-size: 1.42rem;
  margin: 44px 0 16px;
  color: var(--green);
  padding-top: 26px;
  border-top: 1px solid var(--rule);
}
.legal-content h2:first-of-type { border-top: none; padding-top: 0; }
.legal-content h3 { font-size: 1.1rem; margin: 26px 0 12px; color: var(--text); }
.legal-content p, .legal-content li {
  color: var(--text-mid);
  margin-bottom: 12px;
  line-height: 1.75;
}
.legal-content ul, .legal-content ol { padding-left: 24px; margin-bottom: 18px; }
.legal-content li { margin-bottom: 8px; }
.legal-content a {
  color: var(--orange-ink);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.legal-content strong { color: var(--text); font-weight: 600; }
.legal-content .placeholder {
  background: var(--orange-pale);
  color: var(--orange-ink);
  padding: 2px 8px;
  border-radius: var(--radius-sm);
  font-weight: 600;
}
.legal-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 18px 0;
  font-size: 0.93rem;
}
.legal-content th, .legal-content td {
  padding: 13px 16px;
  text-align: left;
  border-bottom: 1px solid var(--rule);
}
.legal-content th {
  background: var(--green-pale);
  color: var(--green);
  font-weight: 600;
  font-size: 0.86rem;
  letter-spacing: 0.03em;
}

.legal-toc {
  background: var(--cream);
  padding: 26px 28px;
  border-radius: var(--radius-md);
  margin-bottom: 44px;
  border-left: 2px solid var(--orange);
}
.legal-toc strong {
  display: block;
  margin-bottom: 14px;
  color: var(--green);
  font-family: var(--font-sans);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}
.legal-toc ol { padding-left: 20px; margin: 0; }
.legal-toc li { margin-bottom: 6px; font-size: 0.93rem; }
.legal-toc a { color: var(--text-mid); text-decoration: none; }
.legal-toc a:hover { color: var(--orange-ink); }

/* ─── Apparition au défilement ─── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .floating-mascot { animation: none; }
  html { scroll-behavior: auto; }
}

/* ─── Adaptatif ─── */
@media (max-width: 1024px) {
  .benefit-row { grid-template-columns: 64px 1fr 1.1fr; gap: 24px; }
  .feature-row, .feature-row.reverse { gap: 40px; }
}

@media (max-width: 900px) {
  .container { padding: 0 24px; }
  .section { padding: 84px 0; }

  .hero { padding: 132px 0 72px; }
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero-subtitle, .hero-trust { max-width: none; }
  .hero-visual { height: 440px; }
  .hero-plate-1 { width: 370px; height: 370px; }
  .hero-plate-2 { width: 280px; height: 280px; }
  .phone-mockup { width: 230px; }

  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item { border-top: 1px solid rgba(11, 51, 32, 0.22); padding: 34px 16px; }
  .stat-item:nth-child(-n+2) { border-top: none; }
  .stat-item:nth-child(odd) { border-left: none; }

  .benefit-row {
    grid-template-columns: 48px 1fr;
    row-gap: 10px;
  }
  .benefit-row p { grid-column: 2; }

  .steps-grid { grid-template-columns: 1fr; }
  .step-card {
    border-left: none;
    border-bottom: 1px solid var(--rule);
    padding: 34px 0 30px;
  }
  .step-card:last-child { border-bottom: none; }

  .feature-row, .feature-row.reverse { grid-template-columns: 1fr; gap: 32px; }
  .feature-row.reverse .feature-copy { order: 1; }
  .feature-row.reverse .feature-visual { order: 2; }
  .feature-visual { aspect-ratio: 16 / 10; }

  .pricing-grid { grid-template-columns: 1fr; }
  .pricing-card + .pricing-card { border-left: none; border-top: 1px solid var(--rule); }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .legal-content { padding: 42px 30px; }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--green-deep);
    flex-direction: column;
    align-items: stretch;
    padding: 22px 24px 26px;
    gap: 18px;
    border-bottom: 1px solid var(--rule-light);
  }
  .nav-links.open { display: flex; }
  .nav-mobile-toggle { display: flex; }

  .showcase-phones { gap: 20px; }
  .showcase-phone { width: 168px; }
}

@media (max-width: 600px) {
  .section { padding: 64px 0; }
  .container { padding: 0 20px; }
  .hero { padding: 116px 0 52px; }
  .hero-visual { height: 380px; }
  .hero-plate-1 { width: 300px; height: 300px; }
  .hero-plate-2 { width: 232px; height: 232px; }
  .phone-mockup { width: 196px; border-width: 6px; }
  .floating-mascot { width: 60px; }

  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .legal-content { padding: 34px 22px; }

  .showcase-phones { gap: 14px; }
  .showcase-phone { width: 138px; border-width: 5px; border-radius: 20px; }

  .pricing-card { padding: 32px 26px; }
  .benefit-num { font-size: 1.2rem; }
}
