/* ---------- Tokens ---------- */
:root {
  --ivory: #F5EFE4;
  --cream: #FBF7F0;
  --ivory-deep: #ECE4D4;
  --paper: #FDFBF6;
  --linen: #EFE7D7;
  --forest: #1F3A2E;
  --forest-800: #2A4A3C;
  --forest-600: #3D6151;
  --forest-900: #16281F;
  --sage: #8FA890;
  --sage-pale: #E4EBDF;
  --terracotta: #C8735A;
  --terracotta-dark: #A85B44;
  --terracotta-pale: #F4DDD1;
  --terracotta-soft: #E8B9A8;
  --ink: #1A2332;
  --ink-muted: #4C5768;
  --ink-soft: #6B7484;
  --ink-faint: #9199A8;
  --ink-line: rgba(26,35,50,0.08);
  --honey: #D4A24A;
  --honey-pale: #F4E4C8;
  --success: #4A7B5F;
  --success-pale: #DDEBE0;
  --font-serif: 'Fraunces', Georgia, serif;
  --font-sans: 'Instrument Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --r-md: 12px; --r-lg: 16px; --r-xl: 22px; --r-2xl: 28px; --r-pill: 999px;
  --shadow-sm: 0 1px 2px rgba(26,35,50,.04),0 1px 3px rgba(26,35,50,.03);
  --shadow-md: 0 4px 12px rgba(26,35,50,.06),0 2px 4px rgba(26,35,50,.04);
  --shadow-lg: 0 12px 32px rgba(26,35,50,.08),0 4px 12px rgba(26,35,50,.05);
  --shadow-xl: 0 24px 60px rgba(26,35,50,.12),0 8px 20px rgba(26,35,50,.06);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  color: var(--ink);
  background: var(--ivory);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  letter-spacing: -0.005em;
  font-feature-settings: 'ss01','cv11';
  overflow-x: hidden;
}
h1,h2,h3,h4 { font-family: var(--font-serif); font-weight: 500; letter-spacing: -0.02em; line-height: 1.1; color: var(--ink); }
button, input, select, textarea { font: inherit; color: inherit; }
button { cursor: pointer; border: none; background: none; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* ---------- Utilities ---------- */
.container { width: 100%; max-width: 1240px; margin: 0 auto; padding: 0 24px; }
.container-wide { max-width: 1360px; }
.mg-italic { color: var(--forest-600); font-style: italic; font-size: 14px; }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 24px; border-radius: var(--r-pill);
  font-family: var(--font-sans); font-weight: 600; font-size: 15px;
  transition: transform .08s ease, background .15s ease, box-shadow .15s ease;
  white-space: nowrap; border: 1.5px solid transparent;
}
.btn:active { transform: scale(.98); }
.btn-primary { background: var(--terracotta); color: #fff; box-shadow: 0 2px 8px rgba(200,115,90,.25); }
.btn-primary:hover { background: var(--terracotta-dark); }
.btn-forest { background: var(--forest); color: var(--cream); }
.btn-forest:hover { background: var(--forest-800); }
.btn-ghost { color: var(--forest); border-color: var(--forest); }
.btn-ghost:hover { background: var(--sage-pale); }
.btn-outline-cream { color: var(--cream); border-color: rgba(251,247,240,.3); background: transparent; }
.btn-outline-cream:hover { background: rgba(251,247,240,.1); }
.btn-lg { padding: 17px 30px; font-size: 16px; }
.btn-block { width: 100%; }

.chip {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 5px 12px; border-radius: var(--r-pill);
  background: var(--sage-pale); color: var(--forest);
  font-size: 12.5px; font-weight: 500; white-space: nowrap;
}

.kicker {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 12px; letter-spacing: 1.8px; text-transform: uppercase;
  color: var(--terracotta); font-weight: 600;
}
.kicker::before { content: ''; display: inline-block; width: 28px; height: 2px; background: var(--terracotta); }

.lamba {
  height: 4px;
  background-image: repeating-linear-gradient(90deg,
    var(--terracotta) 0 6px, var(--forest) 6px 12px,
    var(--honey) 12px 18px, var(--forest) 18px 24px);
  opacity: .55; border-radius: 2px;
}

/* ---------- Top pre-launch banner ---------- */
.prebanner {
  background: var(--forest);
  color: var(--cream);
  font-size: 12.5px;
  padding: 10px 24px;
  display: flex; align-items: center; gap: 10px; justify-content: center;
  text-align: center;
  position: relative;
}
.prebanner strong { font-weight: 700; color: var(--terracotta-soft); }
.prebanner .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--terracotta); flex-shrink: 0;
  box-shadow: 0 0 0 4px rgba(200,115,90,.25);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%,100% { box-shadow: 0 0 0 4px rgba(200,115,90,.25); }
  50%     { box-shadow: 0 0 0 8px rgba(200,115,90,.1); }
}

/* ---------- Nav ---------- */
.nav {
  background: rgba(245,239,228,.92);
  backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--ink-line);
  position: sticky; top: 0; z-index: 40;
}
.nav-inner {
  display: flex; align-items: center; gap: 20px;
  padding: 16px 0;
}
.logo {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-serif); font-size: 22px; font-weight: 500;
  color: var(--forest); letter-spacing: -0.02em;
}
.logo::before { content: ''; width: 9px; height: 9px; border-radius: 50%; background: var(--terracotta); }
.nav-links { display: flex; gap: 4px; margin-left: auto; align-items: center; }
.nav-links a {
  padding: 8px 14px; border-radius: var(--r-pill);
  font-size: 14px; font-weight: 500; color: var(--ink-muted);
  transition: color .15s, background .15s;
}
.nav-links a:hover { color: var(--forest); background: rgba(31,58,46,.05); }
.lang-toggle {
  display: inline-flex; padding: 3px; background: var(--cream);
  border: 1px solid var(--ivory-deep); border-radius: var(--r-pill);
  margin-left: 8px;
}
.lang-toggle button {
  padding: 4px 10px; border-radius: var(--r-pill);
  font-size: 11.5px; font-weight: 600; color: var(--ink-soft);
}
.lang-toggle button.on { background: var(--forest); color: var(--cream); }
.nounou-cta {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 8px 14px; border-radius: var(--r-pill);
  background: var(--forest); color: var(--cream);
  font-size: 13px; font-weight: 600;
  margin-left: 8px;
}
.nounou-cta:hover { background: var(--forest-800); }

/* ---------- Hero ---------- */
.hero {
  padding: 60px 0 40px;
  position: relative;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 60px;
  align-items: center;
}
.hero-tag {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 5px 14px 5px 5px; border-radius: var(--r-pill);
  background: var(--cream); border: 1px solid var(--ivory-deep);
  font-size: 12px; color: var(--forest); font-weight: 500;
  margin-bottom: 22px; white-space: nowrap;
}
.hero-tag .badge {
  background: var(--terracotta); color: #fff;
  padding: 3px 10px; border-radius: var(--r-pill);
  font-size: 10px; font-weight: 700; letter-spacing: 0.6px;
}
.hero h1 {
  font-size: 68px; line-height: 1.02; letter-spacing: -0.035em;
  margin-bottom: 22px;
}
.hero h1 em { font-style: italic; color: var(--terracotta); font-weight: 500; }
.hero-sub {
  font-size: 18px; color: var(--ink-muted); line-height: 1.55;
  max-width: 500px; margin-bottom: 32px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 40px; }
.hero-stats {
  display: flex; gap: 40px;
  padding-top: 24px;
  border-top: 1px solid var(--ink-line);
}
.hero-stat .v {
  font-family: var(--font-serif); font-size: 32px; font-weight: 500;
  color: var(--forest); line-height: 1;
}
.hero-stat .l {
  font-size: 12px; color: var(--ink-soft); margin-top: 6px;
  max-width: 140px; line-height: 1.4;
}
.hero-media {
  position: relative;
}
.hero-media img {
  width: 100%; height: 460px; object-fit: cover;
  border-radius: var(--r-2xl); box-shadow: var(--shadow-lg);
}
.hero-chip {
  position: absolute; top: 20px; left: 20px;
  display: flex; align-items: center; gap: 10px;
  padding: 8px 14px 8px 8px; border-radius: var(--r-lg);
  background: rgba(31,58,46,.93); backdrop-filter: blur(10px);
  color: var(--cream);
}
.hero-chip img { width: 34px; height: 34px; border-radius: 50%; object-fit: cover; }
.hero-chip .n { font-size: 13px; font-weight: 600; }
.hero-chip .m { font-size: 11px; opacity: .8; }
.hero-badge-fondatrice {
  position: absolute; bottom: -30px; right: -20px;
  background: var(--cream); border-radius: var(--r-xl);
  padding: 18px 22px;
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--ivory-deep);
  width: 300px;
}
.hero-badge-fondatrice .lb {
  height: 3px; border-radius: 2px; margin-bottom: 12px; width: 60px;
  background-image: repeating-linear-gradient(90deg,
    var(--terracotta) 0 4px, var(--forest) 4px 8px,
    var(--honey) 8px 12px, var(--forest) 12px 16px);
  opacity: .55;
}
.hero-badge-fondatrice .kn {
  font-size: 11px; letter-spacing: 1.6px; text-transform: uppercase;
  color: var(--terracotta); font-weight: 700; margin-bottom: 6px;
}
.hero-badge-fondatrice .msg {
  font-family: var(--font-serif); font-size: 16px; line-height: 1.3;
  color: var(--forest); margin-bottom: 12px;
}
.hero-badge-fondatrice .counter {
  display: flex; align-items: center; gap: 10px;
  padding-top: 12px; border-top: 1px solid var(--ivory-deep);
  font-size: 12px; color: var(--ink-muted);
}
.hero-badge-fondatrice .counter b { font-weight: 700; color: var(--forest); }
.hero-badge-fondatrice .progress {
  flex: 1; height: 5px; background: var(--ivory-deep); border-radius: var(--r-pill); overflow: hidden;
}
.hero-badge-fondatrice .progress > div {
  width: 47%; height: 100%; background: var(--terracotta);
}

/* ---------- Trust strip ---------- */
.trust-strip {
  background: var(--cream);
  border-top: 1px solid var(--ivory-deep);
  border-bottom: 1px solid var(--ivory-deep);
  padding: 40px 0;
  margin-top: 80px;
}
.trust-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px;
}
.trust-item { display: flex; gap: 14px; align-items: flex-start; }
.trust-item .ico {
  width: 44px; height: 44px; border-radius: var(--r-md);
  background: var(--sage-pale); color: var(--forest);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.trust-item h4 { font-size: 16px; margin-bottom: 4px; }
.trust-item p { font-size: 13px; color: var(--ink-muted); line-height: 1.5; }

/* ---------- Sections ---------- */
.section { padding: 100px 0 40px; }
.section-head { display: grid; grid-template-columns: 1fr 1.4fr; gap: 60px; align-items: end; margin-bottom: 44px; }
.section-head h2 { font-size: 46px; line-height: 1.05; letter-spacing: -0.028em; }
.section-head h2 em { font-style: italic; color: var(--terracotta); font-weight: 500; }
.section-head p { font-size: 15.5px; color: var(--ink-muted); line-height: 1.65; max-width: 560px; }

/* Comment ça marche */
.how-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.how-card {
  background: var(--cream); border: 1px solid var(--ivory-deep);
  border-radius: var(--r-xl); padding: 32px; min-height: 240px;
}
.how-card .head { display: flex; gap: 14px; align-items: baseline; margin-bottom: 20px; }
.how-card .n {
  font-family: var(--font-serif); font-size: 40px; color: var(--terracotta);
  font-weight: 500; line-height: 1;
}
.how-card .line { flex: 1; height: 1px; background: var(--ivory-deep); margin-bottom: 10px; }
.how-card h3 { font-size: 22px; margin-bottom: 10px; }
.how-card p { font-size: 14px; color: var(--ink-muted); line-height: 1.6; }

/* Promesses (Ce que Serena va apporter) */
.promises-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.promise-card {
  background: var(--cream); border: 1px solid var(--ivory-deep);
  border-radius: var(--r-xl); padding: 28px;
  display: flex; gap: 18px; align-items: flex-start;
}
.promise-card .ico {
  width: 48px; height: 48px; border-radius: var(--r-md);
  background: var(--sage-pale); color: var(--forest);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.promise-card h3 { font-size: 20px; margin-bottom: 6px; }
.promise-card p { font-size: 14px; color: var(--ink-muted); line-height: 1.6; }

/* Teaser Phase 3 — "à venir" (vérification, casier, appels de référence) */
.future-section { padding-top: 60px; }
.future-section .section-head .kicker { color: var(--sage); }
.future-section .section-head .kicker::before { background: var(--sage); }
.future-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.future-card {
  background: var(--forest-900); border: 1px solid var(--forest-800);
  border-radius: var(--r-xl); padding: 24px;
  display: flex; flex-direction: column; gap: 14px;
  opacity: 0.92;
}
.future-card .ico {
  width: 40px; height: 40px; border-radius: var(--r-md);
  background: var(--forest-800); color: var(--sage-soft);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.future-card h4 { font-size: 15px; color: #fff; margin-bottom: 4px; }
.future-card p { font-size: 12.5px; color: var(--sage-soft); line-height: 1.55; }
.future-note {
  display: flex; align-items: center; gap: 10px;
  margin-top: 20px; padding: 12px 16px;
  background: var(--sage-pale); border-radius: 10px;
  font-size: 12.5px; color: var(--forest); line-height: 1.5;
}

/* ---------- Nounou CTA — the recruitment megablock ---------- */
.nounou-cta-block {
  background: var(--terracotta-pale);
  border-radius: 32px;
  padding: 64px 60px;
  position: relative;
  overflow: hidden;
}
.nounou-cta-inner {
  display: grid; grid-template-columns: 1.35fr 1fr; gap: 60px; align-items: center;
}
.nounou-cta-block .decor {
  position: absolute; top: -80px; right: -80px;
  width: 300px; height: 300px; border-radius: 50%;
  background: rgba(200,115,90,.16); pointer-events: none;
}
.nounou-cta-block .kicker { color: var(--terracotta-dark); }
.nounou-cta-block .kicker::before { background: var(--terracotta-dark); }
.nounou-cta-block h2 {
  font-size: 52px; line-height: 1.02; letter-spacing: -0.028em;
  margin: 14px 0 18px; color: var(--forest);
}
.nounou-cta-block h2 em { font-style: italic; color: var(--terracotta-dark); font-weight: 500; }
.nounou-cta-block .lead {
  font-size: 16px; color: var(--ink-muted); line-height: 1.65;
  margin-bottom: 28px; max-width: 500px;
}
.nounou-cta-block .value-list { display: flex; flex-direction: column; gap: 10px; margin-bottom: 32px; }
.nounou-cta-block .value-item {
  display: flex; gap: 10px; align-items: flex-start;
  font-size: 14.5px; color: var(--ink);
}
.nounou-cta-block .value-item .check {
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--forest); color: var(--cream);
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0; margin-top: 1px;
}
.nounou-cta-block .value-item b { font-weight: 700; }

/* Founder counter card */
.founder-card {
  background: var(--cream); border: 1px solid var(--ivory-deep);
  border-radius: var(--r-2xl); padding: 32px;
  position: relative;
  box-shadow: var(--shadow-md);
}
.founder-card .lb { height: 3px; border-radius: 2px; margin-bottom: 16px; width: 60px;
  background-image: repeating-linear-gradient(90deg,
    var(--terracotta) 0 4px, var(--forest) 4px 8px,
    var(--honey) 8px 12px, var(--forest) 12px 16px);
  opacity: .55; }
.founder-card .badge-fondatrice {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 5px 12px 5px 8px; border-radius: var(--r-pill);
  background: var(--forest); color: var(--cream);
  font-size: 11.5px; font-weight: 700; letter-spacing: 0.6px; text-transform: uppercase;
  margin-bottom: 14px;
}
.founder-card h3 { font-size: 24px; line-height: 1.15; margin-bottom: 8px; }
.founder-card .subline { font-size: 13.5px; color: var(--ink-muted); line-height: 1.55; margin-bottom: 22px; }
.founder-counter {
  padding: 20px; background: var(--paper);
  border-radius: var(--r-lg); border: 1px solid var(--ivory-deep);
  margin-bottom: 20px;
}
.founder-counter .top {
  display: flex; justify-content: space-between; align-items: baseline;
  margin-bottom: 10px;
}
.founder-counter .num {
  font-family: var(--font-serif); font-size: 38px; font-weight: 500; color: var(--terracotta);
  line-height: 1;
}
.founder-counter .num small { font-size: 20px; color: var(--ink-muted); font-weight: 500; }
.founder-counter .label { font-size: 12px; color: var(--ink-soft); text-align: right; max-width: 140px; line-height: 1.4; }
.founder-counter .bar {
  height: 8px; background: var(--ivory-deep); border-radius: var(--r-pill); overflow: hidden;
  margin-bottom: 10px;
}
.founder-counter .bar > div {
  height: 100%; width: 47%;
  background: linear-gradient(90deg, var(--terracotta), var(--terracotta-dark));
  border-radius: var(--r-pill);
}
.founder-counter .hint {
  font-size: 11.5px; color: var(--ink-soft);
  display: flex; align-items: center; gap: 5px;
}

/* ---------- Valeurs ---------- */
.values-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.value-card {
  background: var(--forest);
  color: var(--cream);
  border-radius: var(--r-xl); padding: 28px 22px;
  position: relative; overflow: hidden;
  min-height: 220px;
  display: flex; flex-direction: column;
}
.value-card .lamba-top {
  position: absolute; top: 0; left: 0; right: 0;
  height: 3px;
  background-image: repeating-linear-gradient(90deg,
    var(--terracotta) 0 4px, var(--forest-600) 4px 8px,
    var(--honey) 8px 12px, var(--forest-600) 12px 16px);
  opacity: .8;
}
.value-card .ico {
  width: 42px; height: 42px; border-radius: var(--r-md);
  background: rgba(251,247,240,.1); color: var(--terracotta-soft);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.value-card h4 {
  color: var(--cream); font-size: 18px; margin-bottom: 8px;
}
.value-card p { font-size: 13px; opacity: .78; line-height: 1.55; }
.value-card .mg { margin-top: auto; padding-top: 14px; font-style: italic; font-size: 11.5px; opacity: .55; }

/* ---------- Waitlist family ---------- */
.waitlist {
  background: var(--forest);
  color: var(--cream);
  border-radius: 32px; padding: 64px 60px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start;
  position: relative; overflow: hidden;
}
.waitlist .decor {
  position: absolute; top: -80px; left: -60px;
  width: 260px; height: 260px; border-radius: 50%;
  background: rgba(200,115,90,.14); pointer-events: none;
}
.waitlist .kicker { color: var(--terracotta-soft); }
.waitlist .kicker::before { background: var(--terracotta-soft); }
.waitlist h2 { color: var(--cream); font-size: 44px; line-height: 1.05; letter-spacing: -0.028em; margin: 14px 0 18px; }
.waitlist h2 em { font-style: italic; color: var(--terracotta-soft); font-weight: 500; }
.waitlist .lead { font-size: 15.5px; opacity: .82; line-height: 1.65; margin-bottom: 22px; }
.waitlist .note {
  padding: 14px 16px; border-radius: var(--r-md);
  background: rgba(251,247,240,.06); border: 1px solid rgba(251,247,240,.12);
  font-size: 12.5px; line-height: 1.55; opacity: .9; margin-top: 20px;
}

/* form */
.form-card {
  background: var(--cream); color: var(--ink);
  border-radius: var(--r-2xl); padding: 32px;
  box-shadow: var(--shadow-xl);
}
.form-row { margin-bottom: 16px; }
.form-row label {
  display: block; font-size: 12px; font-weight: 600;
  color: var(--ink-muted); letter-spacing: 0.4px; margin-bottom: 6px;
  text-transform: uppercase;
}
.form-row .input {
  width: 100%; padding: 14px 16px;
  border: 1.5px solid var(--ivory-deep); border-radius: var(--r-md);
  background: var(--paper); font-size: 15px; color: var(--ink);
  font-family: var(--font-sans);
  transition: border-color .15s ease;
}
.form-row .input:focus { outline: none; border-color: var(--forest); }
.form-row .helper { font-size: 11.5px; color: var(--ink-soft); margin-top: 5px; }
.form-row .chips {
  display: flex; flex-wrap: wrap; gap: 6px;
}
.form-row .chip-choice {
  padding: 9px 14px; border-radius: var(--r-pill);
  background: var(--paper); border: 1.5px solid var(--ivory-deep);
  color: var(--ink); font-size: 13px; font-weight: 500;
  transition: all .15s ease;
  display: inline-flex; align-items: center; gap: 5px;
}
.form-row .chip-choice.on {
  background: var(--forest); color: var(--cream); border-color: var(--forest);
}
.form-row .chip-choice:hover:not(.on) { border-color: var(--sage); }
.form-submit-note {
  font-size: 11.5px; color: var(--ink-soft); text-align: center;
  margin-top: 14px; line-height: 1.55;
}
.form-thanks {
  text-align: center; padding: 32px 16px;
}
.form-thanks .big {
  width: 60px; height: 60px; border-radius: 50%;
  background: var(--sage-pale); color: var(--forest);
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.form-thanks h4 { font-size: 22px; margin-bottom: 8px; color: var(--forest); }
.form-thanks p { font-size: 13.5px; color: var(--ink-muted); line-height: 1.55; }

/* ---------- FAQ ---------- */
.faq details {
  border-top: 1px solid var(--ivory-deep);
  padding: 22px 0;
}
.faq details:last-child { border-bottom: 1px solid var(--ivory-deep); }
.faq summary {
  cursor: pointer; list-style: none;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 18px; font-family: var(--font-serif); font-weight: 500;
  color: var(--forest);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary .plus {
  width: 26px; height: 26px; border-radius: 50%;
  background: var(--cream); color: var(--forest); border: 1px solid var(--ivory-deep);
  display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0;
  margin-left: 12px; transition: transform .2s ease;
}
.faq details[open] summary .plus { transform: rotate(45deg); }
.faq details p {
  margin-top: 14px; font-size: 14.5px; color: var(--ink-muted); line-height: 1.7;
  max-width: 780px;
}

/* ---------- Footer ---------- */
.footer {
  background: var(--forest-900); color: rgba(251,247,240,.85);
  padding: 60px 0 30px; margin-top: 80px;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px;
}
.footer .logo { color: var(--cream); font-size: 26px; }
.footer h4 { font-family: var(--font-serif); font-size: 15px; margin-bottom: 14px; color: var(--cream); }
.footer .links { display: flex; flex-direction: column; gap: 8px; }
.footer .links a { font-size: 13px; opacity: .7; transition: opacity .15s; }
.footer .links a:hover { opacity: 1; }
.footer-note { max-width: 320px; font-size: 14px; line-height: 1.6; opacity: .75; margin-top: 16px; }
.footer-mg { margin-top: 20px; font-family: var(--font-serif); font-style: italic; color: var(--terracotta-soft); font-size: 15px; }
.footer-bottom {
  margin-top: 40px; padding-top: 24px;
  border-top: 1px solid rgba(251,247,240,.1);
  display: flex; justify-content: space-between; font-size: 12px; opacity: .55;
}
.footer-bottom .links-h { display: flex; gap: 20px; }

/* ---------- Sticky mobile CTA ---------- */
.mobile-fab {
  display: none;
  position: fixed; bottom: 20px; left: 20px; right: 20px;
  z-index: 30;
  gap: 8px;
}

/* ---------- Responsive ---------- */
@media (max-width: 1100px) {
  .hero h1 { font-size: 54px; }
  .section-head h2 { font-size: 40px; }
  .nounou-cta-block h2 { font-size: 40px; }
  .nounou-cta-block { padding: 48px 44px; }
  .waitlist h2 { font-size: 36px; }
  .waitlist { padding: 48px 44px; }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 2fr 1fr 1fr; }
  .footer-grid > div:nth-child(4) { display: none; }
}
@media (max-width: 820px) {
  .prebanner { font-size: 11.5px; padding: 8px 16px; }
  .nav-links a { padding: 6px 10px; font-size: 13px; }
  .nav-links .hide-mobile { display: none; }
  .hero { padding: 40px 0 60px; }
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero h1 { font-size: 44px; }
  .hero-sub { font-size: 16px; }
  .hero-actions .btn { flex: 1; }
  .hero-stats { flex-wrap: wrap; gap: 20px; }
  .hero-stat .v { font-size: 26px; }
  .hero-media img { height: 340px; }
  .hero-badge-fondatrice {
    position: relative; bottom: auto; right: auto;
    width: 100%; margin-top: -30px;
  }
  .trust-strip { margin-top: 40px; padding: 32px 0; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .section { padding: 60px 0 20px; }
  .section-head { grid-template-columns: 1fr; gap: 16px; margin-bottom: 30px; }
  .section-head h2 { font-size: 32px; }
  .how-grid { grid-template-columns: 1fr; gap: 12px; }
  .how-card { padding: 24px; min-height: auto; }
  .promises-grid { grid-template-columns: 1fr; }
  .promise-card { padding: 22px; }
  .future-section { padding-top: 40px; }
  .future-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .nounou-cta-block { padding: 40px 28px; border-radius: 24px; }
  .nounou-cta-inner { grid-template-columns: 1fr; gap: 32px; }
  .nounou-cta-block h2 { font-size: 34px; }
  .waitlist { padding: 40px 28px; border-radius: 24px; grid-template-columns: 1fr; gap: 32px; }
  .waitlist h2 { font-size: 30px; }
  .footer { padding: 40px 0 24px; margin-top: 60px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .footer .col-brand { grid-column: 1 / -1; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .value-card { min-height: auto; padding: 22px; }
  .form-card { padding: 24px; }
  /* Mobile floating action */
  .mobile-fab { display: flex; }
  body { padding-bottom: 80px; }
}
@media (max-width: 480px) {
  .container { padding: 0 18px; }
  .hero h1 { font-size: 36px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; }
  .section-head h2 { font-size: 26px; }
  .nounou-cta-block h2 { font-size: 28px; }
  .waitlist h2 { font-size: 26px; }
  .prebanner .short { display: inline; }
  .prebanner .long { display: none; }
}
@media (min-width: 481px) {
  .prebanner .short { display: none; }
}

/* Focus */
button:focus-visible, a:focus-visible, input:focus-visible {
  outline: 2px solid var(--forest); outline-offset: 2px; border-radius: 4px;
}
