/* ============================================================
   Nutrifit — Landing page
   Design system : tokens stricts + 30 fixes appliqués
   Convention : préfixe .nf-* (Nutrifit) — isolé de batch-cooking.css
   ============================================================ */

:root {
  --nf-py-neutral: 48px;
  --nf-py-bleed: 56px;
  --nf-py-emotional: 80px;
}
@media (min-width: 900px) {
  :root {
    --nf-py-neutral: 64px;
    --nf-py-bleed: 96px;
    --nf-py-emotional: 128px;
  }
}

/* ── Reset minimal ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: #FAFAF8;
  color: #1A1A1A;
  font-family: 'Plus Jakarta Sans', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  /* [01] : empêche tout scroll horizontal global (debord visuel hero) */
  overflow-x: hidden;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
}
img, svg { max-width: 100%; display: block; }
a { color: inherit; }

/* ── Tokens design (référence — couleurs hardcodées dans le CSS) ─
   Background       #FAFAF8
   Cards            #FFFFFF
   Alt sections     #F5F5F3
   Sections sombres #1A1A1A
   Accent CTA       #E85D2A · hover #C44A1E
   Texte primary    #1A1A1A
   Texte secondary  #6B6B6B
   Texte muted      #9B9B9B
   Border           rgba(0,0,0,0.08)
   --------------------------------------------------------------- */

.nf-page {
  background: #FAFAF8;
  color: #1A1A1A;
  font-family: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  width: 100%;
  min-height: 100%;
}

/* Variables locales utilisées pour le hero */
.nf-page {
  --accent: #E85D2A;
  --accent-light: #FFF5F2;
}

/* ============================================================
   1. TOP NAV
   ============================================================ */
.nf-nav {
  padding: 18px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(0,0,0,0.04);
  max-width: 1200px;
  margin: 0 auto;
}
.nf-logo-link {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
}
.nf-logo-img {
  width: 32px;
  height: 32px;
  object-fit: contain;
  display: block;
  flex-shrink: 0;
}
.nf-logo-text {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 20px;
  font-weight: 800;
  color: #1A1A1A;
  letter-spacing: -0.03em;
  line-height: 1;
}
@media (max-width: 519px) {
  .nf-logo-img  { width: 28px; height: 28px; }
  .nf-logo-text { font-size: 17px; }
  .nf-logo-link { gap: 8px; }
}
.nf-nav-links {
  display: none;
  gap: 28px;
  font-size: 13.5px;
  font-weight: 500;
}
.nf-nav-links a {
  color: #1A1A1A;
  text-decoration: none;
  opacity: 0.78;
}
.nf-nav-links a:hover { opacity: 1; }
.nf-nav-login {
  font-size: 14px;
  font-weight: 600;
  color: #6B6B6B;
  text-decoration: none;
  white-space: nowrap;
  padding: 12px 0;
  transition: color 0.15s;
}
.nf-nav-login:hover {
  color: #E85D2A;
}
/* Mobile : masquer un éventuel CTA header, garder logo + login */
@media (max-width: 767px) {
  .nf-nav-cta { display: none; }
}
@media (min-width: 900px) {
  .nf-nav-links { display: flex; }
  .nf-nav { padding: 22px 40px; }
}

/* ============================================================
   2. HERO
   ============================================================ */
.nf-hero {
  padding: 28px 22px 56px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
}
@media (min-width: 900px) {
  .nf-hero {
    padding: 56px 40px 96px;
    grid-template-columns: 55% 45%;
    gap: 48px;
    align-items: center;
    max-width: 1280px;
  }
}

.nf-copy { max-width: 600px; }

.nf-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: #6B6B6B;
  padding: 6px 12px;
  background: #FFFFFF;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 50px;
  margin-bottom: 22px;
}
.nf-eyebrow-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}

.nf-headline {
  font-size: 38px;
  line-height: 1.04;
  letter-spacing: -0.035em;
  font-weight: 800;
  margin: 0 0 18px;
  text-wrap: balance;
  color: #1A1A1A;
}
@media (min-width: 520px) { .nf-headline { font-size: 48px; } }
@media (min-width: 900px) { .nf-headline { font-size: 60px; line-height: 1.0; margin-bottom: 22px; } }
@media (min-width: 1100px) { .nf-headline { font-size: 68px; } }

.nf-sub {
  font-size: 16px;
  line-height: 1.5;
  color: #4B4B4B;
  margin: 0 0 24px;
  max-width: 520px;
  text-wrap: pretty;
}
.nf-sub-desktop { display: none; }
@media (min-width: 900px) {
  .nf-sub { font-size: 18px; margin-bottom: 28px; }
  .nf-sub-mobile { display: none; }
  .nf-sub-desktop { display: block; }
}

/* ── CTA principal hero ────────────────────────────────────── */
.nf-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent);
  color: #FFFFFF;
  font-family: inherit;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.005em;
  padding: 16px 26px;
  border: 0;
  border-radius: 12px;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(232,93,42,0.30),
              0 1px 0 rgba(255,255,255,0.16) inset;
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease;
  text-decoration: none;
  width: 100%;
}
@media (min-width: 520px) {
  .nf-cta { width: auto; align-self: flex-start; min-width: 280px; }
}
.nf-cta:hover {
  background: #C44A1E;
  box-shadow: 0 8px 24px rgba(232,93,42,0.36),
              0 1px 0 rgba(255,255,255,0.16) inset;
}
.nf-cta:active { transform: scale(0.97); }

.nf-subnote {
  font-size: 14px;
  line-height: 1.5;
  color: #6B6B6B;
  margin: 14px 0 0;
  max-width: 460px;
}

/* ── Trust strip ───────────────────────────────────────────── */
.nf-rating {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px 8px;
  margin-top: 24px;
  padding-top: 22px;
  border-top: 1px solid rgba(0,0,0,0.08);
  font-size: 14px;
  color: #6B6B6B;
}
.nf-stars { display: inline-flex; gap: 2px; }
.nf-rating-text b { color: #1A1A1A; font-weight: 700; }
.nf-rating-sep { color: #DDD8D0; }

/* ── Visuel hero ─────────────────────────────────────────────
   [01] : visual-wrap contraint pour empêcher tout scroll horizontal */
.nf-visual-wrap {
  max-width: 100%;
  overflow: hidden;
  position: relative;
}
.nf-visual {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: 20px;
  overflow: hidden;
  background:
    radial-gradient(120% 90% at 80% 5%, #F4DCC8 0%, transparent 60%),
    radial-gradient(140% 100% at 0% 100%, #E8D5C0 0%, transparent 60%),
    linear-gradient(180deg, #F0E4D2 0%, #E2CFB6 100%);
  box-shadow:
    0 1px 0 rgba(255,255,255,0.6) inset,
    0 30px 60px -22px rgba(120,80,40,0.28),
    0 12px 24px -12px rgba(120,80,40,0.16);
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
@media (min-width: 900px) {
  .nf-visual { aspect-ratio: 5 / 6; padding: 22px; gap: 14px; }
}

.nf-visual-grain {
  position: absolute;
  inset: 0;
  opacity: 0.3;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.4  0 0 0 0 0.3  0 0 0 0 0.2  0 0 0 0.18 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  pointer-events: none;
}

/* Header de la grille hebdomadaire */
.nf-grid-head {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 8px;
  /* [03] : laisser de la place au gen-tag absolu top-right */
  padding-right: 130px;
}
@media (min-width: 520px) { .nf-grid-head { padding-right: 0; } }
.nf-grid-head-l { display: flex; flex-direction: column; gap: 2px; }
.nf-grid-week {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #6B5742;
}
.nf-grid-status {
  font-size: 14px;
  font-weight: 700;
  color: #1A1A1A;
  letter-spacing: -0.01em;
}
.nf-grid-head-r {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  justify-content: flex-end;
  /* [03] : pills sous le badge "Généré en 8s" en mobile, pas overlap */
  margin-top: 36px;
}
@media (min-width: 520px) { .nf-grid-head-r { margin-top: 0; } }

.nf-pill {
  font-size: 10.5px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 50px;
  background: rgba(255,255,255,0.7);
  color: #1A1A1A;
  border: 1px solid rgba(255,255,255,0.4);
  white-space: nowrap;
}
.nf-pill-accent {
  background: var(--accent);
  color: #FFFFFF;
  border-color: var(--accent);
}

/* Day labels — desktop grid only */
.nf-grid-days {
  position: relative;
  display: grid;
  grid-template-columns: 60px repeat(7, 1fr);
  gap: 4px;
}
.nf-grid-day {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 10px;
  font-weight: 600;
  color: #6B5742;
  padding: 4px 0;
}
.nf-grid-day em {
  font-style: normal;
  font-size: 13px;
  font-weight: 700;
  color: #1A1A1A;
  margin-top: 1px;
}
.nf-grid-day.is-today em {
  color: #FFFFFF;
  background: #1A1A1A;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
}

.nf-grid {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 5px;
  flex: 1;
  min-height: 0;
}
.nf-grid-row {
  display: grid;
  grid-template-columns: 60px repeat(7, 1fr);
  gap: 4px;
}
.nf-grid-slot {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #6B5742;
  display: flex;
  align-items: center;
  padding-right: 6px;
}
.nf-grid-cell {
  background: #FFFFFF;
  border-radius: 8px;
  padding: 6px 5px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 56px;
  box-shadow: 0 2px 6px rgba(120,80,40,0.06);
  overflow: hidden;
}
.nf-grid-cell-name {
  font-size: 9.5px;
  font-weight: 600;
  line-height: 1.15;
  color: #1A1A1A;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.nf-grid-cell-kcal {
  font-size: 8.5px;
  font-weight: 600;
  color: #9B9B9B;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.02em;
}
.nf-grid-cell-1 { background: #FFF7EE; }
.nf-grid-cell-2 { background: #FFFFFF; }
.nf-grid-cell-3 { background: #FBF1E4; }

/* ── [02] : Hero mobile simplifié — 1 jour, 3 repas empilés ──
   Sur <768px on masque la grille 21 cellules et on affiche les
   cards complètes d'un seul jour (Lundi). Sur ≥768px c'est l'inverse. */
.nf-mobile-day {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
  min-height: 0;
}
.nf-mobile-day-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding: 0 4px 4px;
  border-bottom: 1px solid rgba(0,0,0,0.08);
}
.nf-mobile-day-name {
  font-size: 16px;
  font-weight: 800;
  color: #1A1A1A;
  letter-spacing: -0.01em;
}
.nf-mobile-day-date {
  font-size: 11px;
  font-weight: 600;
  color: #6B5742;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.nf-mobile-meal {
  background: #FFFFFF;
  border-radius: 12px;
  padding: 12px 14px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 2px 8px rgba(120,80,40,0.08);
}
.nf-mobile-meal-icon {
  flex: 0 0 auto;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--accent-light);
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.nf-mobile-meal-body { flex: 1; min-width: 0; }
.nf-mobile-meal-slot {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #6B5742;
  margin-bottom: 2px;
}
.nf-mobile-meal-name {
  font-size: 14px;
  font-weight: 700;
  color: #1A1A1A;
  letter-spacing: -0.005em;
  line-height: 1.25;
}
.nf-mobile-meal-kcal {
  flex: 0 0 auto;
  font-size: 12px;
  font-weight: 700;
  color: #6B6B6B;
  font-variant-numeric: tabular-nums;
}

/* Bascule mobile/desktop sur la zone meal-plan */
.nf-grid-desktop { display: none; }
@media (min-width: 768px) {
  .nf-mobile-day { display: none; }
  .nf-grid-desktop { display: contents; }
}

/* Floating macro chip */
.nf-macro-chip {
  position: absolute;
  right: 16px;
  bottom: 16px;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 14px;
  padding: 12px 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 220px;
  box-shadow: 0 16px 40px rgba(60,40,20,0.20),
              0 1px 0 rgba(255,255,255,0.6) inset;
}
.nf-macro-chip-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}
.nf-macro-chip-lbl {
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #9B9B9B;
}
.nf-macro-chip-val {
  font-size: 12.5px;
  font-weight: 700;
  color: #1A1A1A;
  letter-spacing: -0.01em;
  margin-top: 1px;
}
.nf-macro-chip-avatar {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--accent-light);
  color: var(--accent);
  font-size: 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}
.nf-macro-bars {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.nf-macro-bar-row {
  display: grid;
  grid-template-columns: 56px 1fr 36px;
  align-items: center;
  gap: 8px;
  font-size: 10px;
}
.nf-macro-bar-row > span { color: #6B6B6B; font-weight: 500; }
.nf-macro-bar-row em {
  font-style: normal;
  font-weight: 700;
  color: #1A1A1A;
  font-variant-numeric: tabular-nums;
  text-align: right;
  font-size: 10px;
}
.nf-macro-bar {
  height: 4px;
  background: rgba(0,0,0,0.06);
  border-radius: 50px;
  overflow: hidden;
}
.nf-macro-bar i {
  display: block;
  height: 100%;
  border-radius: 50px;
}

/* "Généré en 8s" tag — [03] : z-index garanti au-dessus des pills */
.nf-gen-tag {
  position: absolute;
  top: 12px;
  right: 12px;
  background: #1A1A1A;
  color: #FAFAF8;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.01em;
  padding: 6px 10px 6px 22px;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  z-index: 5;
}
.nf-gen-dot {
  position: absolute;
  left: 9px;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #4ADE80;
  box-shadow: 0 0 0 3px rgba(74,222,128,0.25);
  animation: nf-pulse 1.6s ease-in-out infinite;
}
@keyframes nf-pulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(74,222,128,0.25); }
  50% { box-shadow: 0 0 0 5px rgba(74,222,128,0.0); }
}
@media (min-width: 520px) {
  .nf-gen-tag { top: 18px; right: 18px; }
}

/* Mobile tweaks visual */
@media (max-width: 519px) {
  .nf-grid-cell { min-height: 48px; padding: 5px 4px; }
  .nf-grid-cell-name { font-size: 9px; }
  .nf-grid-cell-kcal { font-size: 8px; }
  .nf-macro-chip { width: 190px; padding: 10px 12px; right: 12px; bottom: 12px; }
  .nf-gen-tag { font-size: 9.5px; }
}

/* ============================================================
   3. SECTION 2 — Le Problème
   ============================================================ */
.nf-problem {
  background: #F5F5F3;
  padding-block: var(--nf-py-bleed);
  padding-inline: 22px;
}
@media (min-width: 900px) { .nf-problem { padding-inline: 40px; } }

.nf-problem-inner { max-width: 1200px; margin: 0 auto; }

.nf-problem-head {
  text-align: center;
  margin-bottom: 40px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
}
@media (min-width: 900px) { .nf-problem-head { margin-bottom: 64px; gap: 14px; } }

.nf-problem-eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #E85D2A;
}

.nf-problem-title {
  font-size: 32px;
  line-height: 1.08;
  letter-spacing: -0.03em;
  font-weight: 700;
  margin: 0;
  text-wrap: balance;
}
@media (min-width: 520px) { .nf-problem-title { font-size: 40px; } }
@media (min-width: 900px) { .nf-problem-title { font-size: 56px; letter-spacing: -0.035em; } }

.nf-problem-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}
@media (min-width: 768px) { .nf-problem-grid { grid-template-columns: repeat(3, 1fr); gap: 20px; } }
@media (min-width: 900px) { .nf-problem-grid { gap: 24px; } }

.nf-scene {
  background: #FFFFFF;
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 18px;
  padding: 22px 22px 24px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.04);
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: transform .25s ease, box-shadow .25s ease;
}
.nf-scene:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(0,0,0,0.08);
}
@media (min-width: 900px) { .nf-scene { padding: 28px 28px 32px; gap: 12px; } }

.nf-scene-picto { margin-bottom: 4px; }
.nf-scene-picto svg { display: block; }

/* [13] : kickers éditoriaux "01 / 02 / 03" — Plus Jakarta Sans 700 accent translucide */
.nf-scene-tag {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #E85D2A;
  opacity: 0.4;
}

.nf-scene-title {
  font-size: 22px;
  line-height: 1.15;
  letter-spacing: -0.02em;
  font-weight: 700;
  margin: 0;
  color: #1A1A1A;
}
@media (min-width: 900px) { .nf-scene-title { font-size: 26px; } }

.nf-scene-text {
  font-size: 15px;
  line-height: 1.5;
  color: #6B6B6B;
  margin: 0;
  text-wrap: pretty;
}

/* Closing line — [20] : marge supérieure ferme + orange-rule */
.nf-problem-closing {
  margin: 80px auto 0;
  max-width: 820px;
  text-align: center;
  font-size: 22px;
  line-height: 1.32;
  letter-spacing: -0.022em;
  font-weight: 700;
  color: #1A1A1A;
  text-wrap: balance;
}
.nf-problem-closing em {
  font-style: normal;
  color: #E85D2A;
  background-image: linear-gradient(transparent 84%, rgba(232,93,42,0.16) 84%);
}
@media (min-width: 768px) { .nf-problem-closing { font-size: 28px; } }
@media (min-width: 900px) { .nf-problem-closing { font-size: 36px; margin-top: 112px; line-height: 1.25; } }

/* ============================================================
   Utilitaire — orange rule (séparateur visuel) — [19][20]
   ============================================================ */
.nf-orange-rule {
  width: 48px;
  height: 4px;
  background: #E85D2A;
  margin: 48px auto 32px;
  border-radius: 2px;
  border: 0;
  display: block;
}

/* ============================================================
   4. SECTION 3 — Positionnement
   ============================================================ */
.nf-pos {
  background: #FAFAF8;
  padding-block: var(--nf-py-neutral);
  padding-inline: 22px;
}
@media (min-width: 900px) { .nf-pos { padding-inline: 40px; } }

.nf-pos-inner {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
@media (min-width: 900px) { .nf-pos-inner { gap: 24px; } }

.nf-pos-line {
  margin: 0 auto;
  max-width: 640px;
  font-size: 17px;
  line-height: 1.45;
  font-weight: 400;
  color: #6B6B6B;
  letter-spacing: -0.005em;
  text-wrap: balance;
}
@media (min-width: 900px) { .nf-pos-line { font-size: 20px; line-height: 1.5; } }

.nf-pos-punch {
  margin: 22px 0 0;
  font-size: 26px;
  line-height: 1.18;
  letter-spacing: -0.03em;
  font-weight: 800;
  color: #1A1A1A;
  text-wrap: balance;
}
.nf-pos-punch em {
  font-style: normal;
  font-weight: 800;
  color: #E85D2A;
}
@media (min-width: 768px) { .nf-pos-punch { font-size: 32px; line-height: 1.2; margin-top: 28px; } }
@media (min-width: 900px) { .nf-pos-punch { font-size: 44px; letter-spacing: -0.035em; margin-top: 36px; } }

/* ============================================================
   5. SECTION 4 — La Solution (3 piliers)
   ============================================================ */
.nf-sol {
  background: #FFFFFF;
  padding-block: var(--nf-py-neutral);
  padding-inline: 22px;
}
@media (min-width: 900px) { .nf-sol { padding-inline: 40px; } }

.nf-sol-inner { max-width: 1200px; margin: 0 auto; }

.nf-sol-head {
  text-align: center;
  margin-bottom: 40px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
}
@media (min-width: 900px) { .nf-sol-head { margin-bottom: 80px; gap: 14px; } }
.nf-sol-eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #E85D2A;
}
.nf-sol-title {
  font-size: 32px;
  line-height: 1.08;
  letter-spacing: -0.03em;
  font-weight: 700;
  margin: 0;
  text-wrap: balance;
}
@media (min-width: 520px) { .nf-sol-title { font-size: 40px; } }
@media (min-width: 900px) { .nf-sol-title { font-size: 56px; letter-spacing: -0.035em; } }

.nf-sol-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}
@media (min-width: 768px) { .nf-sol-grid { grid-template-columns: repeat(3, 1fr); gap: 20px; } }
@media (min-width: 900px) { .nf-sol-grid { gap: 24px; } }

.nf-pl {
  position: relative;
  background: #FAFAF8;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 18px;
  padding: 28px 24px 26px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 320px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.03);
  transition: transform .25s ease, box-shadow .25s ease;
}
.nf-pl:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(0,0,0,0.06);
}
@media (min-width: 900px) { .nf-pl { padding: 36px 30px 32px; min-height: 380px; } }

/* [18] : chiffres décoratifs réduits sur mobile pour éviter overflow */
.nf-pl-num {
  position: absolute;
  top: -8px;
  right: 14px;
  font-size: 64px;
  line-height: 1;
  font-weight: 800;
  color: #E85D2A;
  opacity: 0.12;
  letter-spacing: -0.04em;
  font-variant-numeric: tabular-nums;
  pointer-events: none;
  user-select: none;
}
@media (min-width: 768px) { .nf-pl-num { font-size: 120px; } }
@media (min-width: 900px) { .nf-pl-num { font-size: 160px; top: -12px; right: 18px; } }

.nf-pl-body {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
  height: 100%;
}

.nf-pl-title {
  font-size: 22px;
  line-height: 1.18;
  letter-spacing: -0.02em;
  font-weight: 700;
  margin: 0;
  color: #1A1A1A;
  text-wrap: balance;
}
@media (min-width: 900px) { .nf-pl-title { font-size: 26px; } }

.nf-pl-text {
  margin: 0;
  font-size: 15px;
  line-height: 1.5;
  color: #6B6B6B;
  font-weight: 400;
  text-wrap: pretty;
}

.nf-pl-detail {
  margin: 4px 0 0;
  font-family: ui-monospace, 'SF Mono', Menlo, monospace;
  font-size: 12px;
  line-height: 1.5;
  color: #9B9B9B;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.005em;
}

.nf-pl-vis {
  margin-top: auto;
  padding-top: 22px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.nf-pl-vis-cap {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: ui-monospace, 'SF Mono', Menlo, monospace;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: #6B6B6B;
  margin-top: 4px;
}
.nf-pl-vis-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #E85D2A;
}

/* Visual 1 — strip 7 jours */
.nf-pl-vis-1 .nf-pl-vis-row {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
}
.nf-pl-day {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 8px 0 6px;
  background: #FFFFFF;
  border-radius: 8px;
  border: 1px solid rgba(0,0,0,0.05);
  font-size: 10px;
  font-weight: 700;
  color: #1A1A1A;
  letter-spacing: 0.04em;
}
.nf-pl-day i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #E85D2A;
  opacity: 0.85;
}

/* Visual 2 — lanes de cuisson */
.nf-pl-vis-2 { gap: 6px; }
.nf-pl-lane {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 10px;
  align-items: center;
}
.nf-pl-lane-lbl {
  font-family: ui-monospace, 'SF Mono', Menlo, monospace;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: #6B6B6B;
  text-transform: uppercase;
}
.nf-pl-lane-bar {
  height: 6px;
  background: rgba(0,0,0,0.06);
  border-radius: 50px;
  overflow: hidden;
}
.nf-pl-lane-bar i {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, #E85D2A 0%, #F5A87E 100%);
  border-radius: 50px;
}

/* Visual 3 — calendrier hebdomadaire */
.nf-pl-vis-3 { padding-top: 18px; }
.nf-pl-week {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
}
.nf-pl-wd {
  background: #FFFFFF;
  border-radius: 8px;
  border: 1px solid rgba(0,0,0,0.05);
  padding: 7px 0 6px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
}
.nf-pl-wd-train {
  background: #FFF5F2;
  border-color: rgba(232,93,42,0.18);
}
.nf-pl-wd-day { font-size: 10px; font-weight: 700; color: #1A1A1A; }
.nf-pl-wd-mark {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 12px;
}
.nf-pl-wd-kcal {
  font-family: ui-monospace, 'SF Mono', Menlo, monospace;
  font-size: 8.5px;
  font-weight: 600;
  color: #6B6B6B;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.01em;
}
.nf-pl-wd-train .nf-pl-wd-kcal { color: #E85D2A; }

/* ============================================================
   6. SECTION 5 — Fini de…
   ============================================================ */
.nf-fini {
  background: #F5F5F3;
  padding-block: var(--nf-py-bleed);
  padding-inline: 22px;
}
@media (min-width: 900px) { .nf-fini { padding-inline: 40px; } }

.nf-fini-inner { max-width: 920px; margin: 0 auto; }

.nf-fini-head {
  text-align: center;
  margin-bottom: 36px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
}
@media (min-width: 900px) { .nf-fini-head { margin-bottom: 56px; gap: 14px; } }
.nf-fini-eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #E85D2A;
}
.nf-fini-title {
  font-size: 36px;
  line-height: 1.05;
  letter-spacing: -0.035em;
  font-weight: 700;
  margin: 0;
}
@media (min-width: 520px) { .nf-fini-title { font-size: 44px; } }
@media (min-width: 900px) { .nf-fini-title { font-size: 56px; } }

.nf-fini-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}
@media (min-width: 768px) { .nf-fini-grid { grid-template-columns: 1fr 1fr; gap: 12px 16px; } }

.nf-fini-item {
  background: #FFFFFF;
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 12px;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 1px 0 rgba(0,0,0,0.02);
  transition: transform .2s ease, box-shadow .2s ease;
}
.nf-fini-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.05);
}
@media (min-width: 900px) { .nf-fini-item { padding: 16px 18px; gap: 14px; } }

.nf-fini-x {
  flex: 0 0 auto;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #FFF5F2;
  color: #E85D2A;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.nf-fini-text {
  font-size: 15px;
  line-height: 1.4;
  font-weight: 600;
  color: #1A1A1A;
  letter-spacing: -0.01em;
  text-decoration: line-through;
  text-decoration-color: rgba(232,93,42,0.45);
  text-decoration-thickness: 1.5px;
  text-underline-offset: 2px;
  text-decoration-skip-ink: none;
}
@media (min-width: 900px) { .nf-fini-text { font-size: 16px; } }

.nf-fini-cta-row {
  display: flex;
  justify-content: center;
  margin-top: 36px;
}
@media (min-width: 900px) { .nf-fini-cta-row { margin-top: 56px; } }
.nf-fini-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 24px;
  border: 1.5px solid #E85D2A;
  border-radius: 12px;
  background: transparent;
  color: #E85D2A;
  font-family: inherit;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.005em;
  text-decoration: none;
  transition: background .2s ease, color .2s ease, transform .15s ease;
}
.nf-fini-cta:hover {
  background: #E85D2A;
  color: #FFFFFF;
}
.nf-fini-cta:active { transform: scale(0.97); }
.nf-fini-cta svg { transition: transform .2s ease; }
.nf-fini-cta:hover svg { transform: translateX(3px); }

/* ============================================================
   7. SECTION 6 — Inclus
   ============================================================ */
.nf-inc {
  background: #FFFFFF;
  padding-block: var(--nf-py-neutral);
  padding-inline: 22px;
}
@media (min-width: 900px) { .nf-inc { padding-inline: 40px; } }

.nf-inc-inner { max-width: 820px; margin: 0 auto; }

.nf-inc-head {
  text-align: center;
  margin-bottom: 36px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
}
@media (min-width: 900px) { .nf-inc-head { margin-bottom: 64px; gap: 14px; } }
.nf-inc-eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #E85D2A;
}
.nf-inc-title {
  font-size: 36px;
  line-height: 1.05;
  letter-spacing: -0.035em;
  font-weight: 700;
  margin: 0;
  text-wrap: balance;
}
@media (min-width: 520px) { .nf-inc-title { font-size: 44px; } }
@media (min-width: 900px) { .nf-inc-title { font-size: 56px; } }

.nf-inc-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
}
.nf-inc-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.nf-inc-item:first-child { border-top: 1px solid rgba(0,0,0,0.06); }
@media (min-width: 900px) { .nf-inc-item { padding: 20px 0; gap: 18px; } }

.nf-inc-check {
  flex: 0 0 auto;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #E8F8EF;
  color: #2D7A4F;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}

.nf-inc-text {
  font-size: 16px;
  line-height: 1.45;
  font-weight: 500;
  color: #1A1A1A;
  letter-spacing: -0.005em;
}
@media (min-width: 900px) { .nf-inc-text { font-size: 18px; } }

/* [19] : closing line séparateur orange-rule (déjà géré par .nf-orange-rule global) */
.nf-inc-closing {
  margin: 0;
  text-align: center;
  font-size: 20px;
  line-height: 1.25;
  letter-spacing: -0.02em;
  font-weight: 800;
  color: #1A1A1A;
  text-wrap: balance;
}
.nf-inc-closing em {
  font-style: normal;
  font-weight: 800;
  color: #1A1A1A;
  background-image: linear-gradient(transparent 80%, rgba(232,93,42,0.28) 80%);
}
@media (min-width: 768px) { .nf-inc-closing { font-size: 24px; } }
@media (min-width: 900px) { .nf-inc-closing { font-size: 30px; line-height: 1.22; } }

/* ============================================================
   7b. SECTION — Vidéo batch cooking
   ============================================================ */
.nf-video-section {
  background: #FAFAF8;
  padding: 24px 0;
}

.nf-video-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 48px;
}
@media (max-width: 767px) {
  .nf-video-inner {
    flex-direction: column;
    gap: 32px;
  }
}

.nf-video-media {
  position: relative;
  flex: 0 0 360px;
  border-radius: 18px;
  background: #000;
  box-shadow:
    0 1px 0 rgba(255,255,255,0.5) inset,
    0 28px 60px -28px rgba(0,0,0,0.45);
}
@media (max-width: 767px) {
  .nf-video-media {
    flex: 0 0 auto;
    width: 280px;
    margin: 0 auto;
  }
}

.nf-video {
  width: 100%;
  aspect-ratio: 9 / 16;
  display: block;
  border-radius: 18px;
  background: #000;
  object-fit: cover;
}

.nf-video-sound-toggle {
  position: absolute;
  bottom: 12px;
  right: 12px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(0,0,0,0.6);
  color: #FFFFFF;
  border: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 2;
  transition: background .15s ease, transform .15s ease, border-color .15s ease;
  -webkit-tap-highlight-color: transparent;
}
.nf-video-sound-toggle:hover {
  background: rgba(0,0,0,0.8);
}
.nf-video-sound-toggle:active { transform: scale(0.96); }
.nf-video-sound-toggle:focus-visible {
  outline: 3px solid rgba(232,93,42,0.55);
  outline-offset: 3px;
}
.nf-video-icon { display: inline-flex; }
.nf-video-icon-sound { display: none; }
.nf-video-sound-toggle.is-sound-on .nf-video-icon-muted { display: none; }
.nf-video-sound-toggle.is-sound-on .nf-video-icon-sound { display: inline-flex; }

.nf-video-copy {
  flex: 1;
  max-width: 480px;
  text-align: left;
}
@media (max-width: 767px) {
  .nf-video-copy {
    max-width: 100%;
    text-align: center;
  }
}

.nf-video-title {
  margin: 0 0 18px;
  font-size: 34px;
  line-height: 1.06;
  letter-spacing: -0.035em;
  font-weight: 800;
  color: #1A1A1A;
  text-wrap: balance;
}
@media (min-width: 520px) { .nf-video-title { font-size: 42px; } }
@media (min-width: 900px) { .nf-video-title { font-size: 56px; } }

.nf-video-body {
  margin: 0 0 10px;
  font-size: 17px;
  line-height: 1.5;
  letter-spacing: -0.005em;
  color: #4B4B4B;
  text-wrap: pretty;
}
.nf-video-body:last-child { margin-bottom: 0; }
@media (min-width: 900px) { .nf-video-body { font-size: 19px; } }

.nf-video-signoff {
  margin-top: 12px;
  font-style: italic;
  color: #6B6B6B;
}

/* ============================================================
   8. SECTION 7 — Origin Story
   ============================================================ */
.nf-org {
  position: relative;
  background: #1A1A1A;
  color: #F0EDE8;
  padding-block: var(--nf-py-emotional);
  padding-inline: 22px;
  overflow: hidden;
}
@media (min-width: 900px) { .nf-org { padding-inline: 40px; } }

.nf-org-grain {
  position: absolute;
  inset: 0;
  opacity: 0.18;
  mix-blend-mode: overlay;
  pointer-events: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='180' height='180'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1  0 0 0 0 0.95  0 0 0 0 0.85  0 0 0 0 0.4 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}

.nf-org-inner {
  position: relative;
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 28px;
}
@media (min-width: 900px) { .nf-org-inner { gap: 36px; } }

/* [14] : eyebrow + h2 ancrage typographique */
.nf-org-eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #E85D2A;
  margin: 0 0 6px;
}
.nf-org-h2 {
  margin: 0 0 8px;
  font-size: 28px;
  line-height: 1.1;
  letter-spacing: -0.025em;
  font-weight: 700;
  color: #FFFFFF;
}
@media (min-width: 900px) { .nf-org-h2 { font-size: 40px; } }

.nf-org-p {
  margin: 0;
  font-size: 17px;
  line-height: 1.5;
  font-weight: 400;
  color: #F0EDE8;
  letter-spacing: -0.005em;
  text-wrap: balance;
}
@media (min-width: 900px) { .nf-org-p { font-size: 20px; line-height: 1.5; } }

.nf-org-strong { font-weight: 700; letter-spacing: -0.015em; }
.nf-org-team { color: #E85D2A; font-weight: 700; font-style: normal; }

/* ============================================================
   9. SECTION 8 — Témoignages (preuve sociale)
   ============================================================ */
.nf-soc {
  background: #FAFAF8;
  padding-block: var(--nf-py-neutral);
  padding-inline: 0;
}
@media (min-width: 900px) { .nf-soc { padding-inline: 40px; } }

.nf-soc-inner { max-width: 1200px; margin: 0 auto; }

.nf-soc-head {
  text-align: center;
  margin: 0 22px 36px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
}
@media (min-width: 900px) { .nf-soc-head { margin: 0 0 64px; gap: 14px; } }
.nf-soc-eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #E85D2A;
}
.nf-soc-title {
  font-size: 32px;
  line-height: 1.08;
  letter-spacing: -0.03em;
  font-weight: 700;
  margin: 0;
  text-wrap: balance;
}
@media (min-width: 520px) { .nf-soc-title { font-size: 40px; } }
@media (min-width: 900px) { .nf-soc-title { font-size: 56px; letter-spacing: -0.035em; } }

/* [05] Carrousel mobile — peek 25% de la card suivante visible à droite */
.nf-soc-scroll {
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  padding: 6px 0;
}
.nf-soc-scroll::-webkit-scrollbar { display: none; }

.nf-soc-grid {
  display: flex;
  gap: 14px;
  padding: 0 22px;
  width: max-content;
}
.nf-soc-grid > .nf-tm {
  flex: 0 0 75%;
  scroll-snap-align: start;
  max-width: 320px;
}
@media (min-width: 768px) {
  .nf-soc-scroll { overflow: visible; }
  .nf-soc-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    padding: 0;
    width: auto;
  }
  .nf-soc-grid > .nf-tm { flex: initial; max-width: none; }
}
@media (min-width: 900px) { .nf-soc-grid { gap: 24px; } }

/* [05] Dots de pagination mobile */
.nf-soc-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin: 18px 0 0;
  padding: 0 22px;
}
.nf-soc-dot {
  appearance: none;
  border: 0;
  width: 8px;
  height: 8px;
  padding: 0;
  border-radius: 50%;
  background: #DDD8D0;
  cursor: pointer;
  transition: background .2s ease, transform .2s ease;
}
.nf-soc-dot.is-active {
  background: #E85D2A;
  transform: scale(1.2);
}
@media (min-width: 768px) { .nf-soc-dots { display: none; } }

.nf-tm {
  position: relative;
  background: #FFFFFF;
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 18px;
  padding: 28px 22px 22px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.04);
  display: flex;
  flex-direction: column;
  gap: 18px;
  overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease;
}
.nf-tm:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(0,0,0,0.08);
}
@media (min-width: 900px) { .nf-tm { padding: 36px 28px 26px; gap: 22px; } }

.nf-tm-quote {
  position: absolute;
  top: -20px;
  left: 14px;
  font-family: Georgia, serif;
  font-size: 120px;
  line-height: 1;
  font-weight: 700;
  color: #E85D2A;
  opacity: 0.15;
  pointer-events: none;
  user-select: none;
}
@media (min-width: 900px) { .nf-tm-quote { font-size: 160px; top: -28px; left: 18px; } }

.nf-tm-text {
  position: relative;
  margin: 0;
  font-size: 15px;
  line-height: 1.55;
  font-style: italic;
  font-weight: 500;
  color: #1A1A1A;
  letter-spacing: -0.005em;
  flex: 1;
  text-wrap: pretty;
}
@media (min-width: 900px) { .nf-tm-text { font-size: 16px; line-height: 1.6; } }

.nf-tm-foot {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 14px;
  border-top: 1px solid rgba(0,0,0,0.06);
}
/* [23] avatars couleurs saturées */
.nf-tm-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.01em;
  flex: 0 0 auto;
}
.nf-tm-avatar.is-sophie  { background: #FFF0EB; color: #E85D2A; }
.nf-tm-avatar.is-thomas  { background: #E8F8EF; color: #2D7A4F; }
.nf-tm-avatar.is-marine  { background: #EBF1FF; color: #2563EB; }

.nf-tm-id { display: flex; flex-direction: column; gap: 1px; min-width: 0; }
.nf-tm-name {
  font-size: 13.5px;
  font-weight: 700;
  color: #1A1A1A;
  letter-spacing: -0.005em;
}
.nf-tm-meta {
  font-size: 12px;
  font-weight: 500;
  color: #6B6B6B;
}

.nf-soc-metric {
  margin: 36px auto 0;
  text-align: center;
  font-size: 13px;
  font-weight: 500;
  color: #9B9B9B;
  padding: 0 22px;
  letter-spacing: 0.01em;
}
@media (min-width: 900px) { .nf-soc-metric { margin-top: 56px; padding: 0; } }

/* [08] disclaimer témoignage perte de poids */
.nf-disclaimer-small {
  margin: 14px auto 0;
  text-align: center;
  font-size: 12px;
  color: #9B9B9B;
  padding: 0 22px;
  max-width: 720px;
  line-height: 1.45;
}

/* ============================================================
   10. SECTION 9 — Garantie
   [27] : background #FFFFFF (alterne avec S8 #FAFAF8)
   ============================================================ */
.nf-grt {
  background: #FFFFFF;
  padding-block: var(--nf-py-neutral);
  padding-inline: 22px;
}
@media (min-width: 900px) { .nf-grt { padding-inline: 40px; } }

.nf-grt-card {
  position: relative;
  max-width: 600px;
  margin: 0 auto;
  background: #FFF5F2;
  border: 2px solid #E85D2A;
  border-radius: 18px;
  padding: 28px 24px 28px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(232,93,42,0.10);
}
@media (min-width: 900px) {
  .nf-grt-card { padding: 48px 48px 44px; gap: 20px; border-radius: 24px; }
}

.nf-grt-shield {
  position: absolute;
  right: -16px;
  top: -10px;
  color: #E85D2A;
  opacity: 0.08;
  pointer-events: none;
}
@media (min-width: 900px) { .nf-grt-shield { right: -8px; top: -6px; } }
.nf-grt-shield svg { display: block; width: 88px; height: 88px; }
@media (min-width: 900px) { .nf-grt-shield svg { width: 140px; height: 140px; } }

.nf-grt-badge {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #E85D2A;
  color: #FFFFFF;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.01em;
  padding: 7px 14px;
  border-radius: 50px;
  box-shadow: 0 4px 12px rgba(232,93,42,0.25);
}

.nf-grt-main {
  position: relative;
  margin: 0;
  font-size: 20px;
  line-height: 1.25;
  letter-spacing: -0.022em;
  font-weight: 700;
  color: #1A1A1A;
  text-wrap: balance;
  max-width: 460px;
}
.nf-grt-main em {
  font-style: normal;
  color: #E85D2A;
  background-image: linear-gradient(transparent 84%, rgba(232,93,42,0.18) 84%);
}
@media (min-width: 768px) { .nf-grt-main { font-size: 24px; } }
@media (min-width: 900px) { .nf-grt-main { font-size: 28px; line-height: 1.22; } }

.nf-grt-sub {
  position: relative;
  margin: 0;
  font-size: 14.5px;
  line-height: 1.5;
  font-weight: 500;
  color: #6B6B6B;
  text-wrap: pretty;
  max-width: 420px;
}
@media (min-width: 900px) { .nf-grt-sub { font-size: 15.5px; } }

.nf-grt-cta {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 8px;
  background: #E85D2A;
  color: #FFFFFF;
  font-family: inherit;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.005em;
  padding: 14px 24px;
  border: 0;
  border-radius: 12px;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(232,93,42,0.30),
              0 1px 0 rgba(255,255,255,0.16) inset;
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease;
}
.nf-grt-cta:hover {
  background: #C44A1E;
  box-shadow: 0 8px 24px rgba(232,93,42,0.36),
              0 1px 0 rgba(255,255,255,0.16) inset;
}
.nf-grt-cta:active { transform: scale(0.97); }
.nf-grt-cta svg { transition: transform .2s ease; }
.nf-grt-cta:hover svg { transform: translateX(3px); }

/* ============================================================
   11. SECTION 10 — Quiz TDEE
   ============================================================ */
.nf-qz {
  background: #F5F5F3;
  padding-block: var(--nf-py-bleed);
  padding-inline: 22px;
}
@media (min-width: 900px) { .nf-qz { padding-inline: 40px; } }

.nf-qz-inner { max-width: 720px; margin: 0 auto; }

.nf-qz-head {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
  margin-bottom: 28px;
}
@media (min-width: 900px) { .nf-qz-head { gap: 14px; margin-bottom: 44px; } }
.nf-qz-eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #E85D2A;
}
.nf-qz-title {
  font-size: 30px;
  line-height: 1.08;
  letter-spacing: -0.03em;
  font-weight: 700;
  margin: 0;
  text-wrap: balance;
}
@media (min-width: 520px) { .nf-qz-title { font-size: 38px; } }
@media (min-width: 900px) { .nf-qz-title { font-size: 48px; letter-spacing: -0.035em; } }
.nf-qz-sub { margin: 0; font-size: 15px; font-weight: 500; color: #6B6B6B; }
@media (min-width: 900px) { .nf-qz-sub { font-size: 16.5px; } }

.nf-qz-card {
  background: #FFFFFF;
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 22px;
  padding: 22px 18px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  box-shadow: 0 4px 18px rgba(0,0,0,0.04);
}
@media (min-width: 900px) { .nf-qz-card { padding: 36px 36px 32px; gap: 32px; border-radius: 26px; } }

.nf-qz-q {
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: opacity .25s ease;
}
.nf-qz-q.is-active { opacity: 1; }
.nf-qz-q.is-future {
  opacity: 0.32;
  pointer-events: none;
  filter: saturate(0.6);
}
.nf-qz-q.is-past { opacity: 1; gap: 8px; }

.nf-qz-summary {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 8px 12px;
  padding: 6px 0 4px;
}
.nf-qz-summary-q {
  font-size: 13px;
  font-weight: 600;
  color: #9B9B9B;
  letter-spacing: -0.005em;
}
.nf-qz-summary-a {
  font-size: 14.5px;
  font-weight: 700;
  color: #1A1A1A;
  letter-spacing: -0.01em;
}

/* [22] Modifier → lien texte simple (au lieu d'un badge pill) */
.nf-qz-edit-link {
  appearance: none;
  background: none;
  border: 0;
  padding: 4px 4px;
  margin-left: auto;
  color: #E85D2A;
  font-family: inherit;
  font-size: 13px;
  font-weight: 600;
  text-decoration: underline;
  cursor: pointer;
  transition: color .15s ease;
}
.nf-qz-edit-link:hover { color: #C44A1E; }

.nf-qz-stepnum-done {
  color: #E85D2A;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.nf-qz-step { display: flex; align-items: center; gap: 10px; }
.nf-qz-stepnum {
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #9B9B9B;
  text-transform: uppercase;
  flex: 0 0 auto;
}
.nf-qz-stepbar {
  flex: 1;
  height: 3px;
  background: #ECEAE5;
  border-radius: 4px;
  overflow: hidden;
}
.nf-qz-stepfill {
  display: block;
  height: 100%;
  background: #E85D2A;
  border-radius: 4px;
  transition: width .3s ease;
}
.nf-qz-qlabel {
  margin: 0;
  font-size: 17px;
  line-height: 1.3;
  font-weight: 700;
  letter-spacing: -0.015em;
  color: #1A1A1A;
}
@media (min-width: 900px) { .nf-qz-qlabel { font-size: 19px; } }

/* [12] : pills sélection orange-fill ferme + état is-selected (récap) */
.nf-qz-pills { display: flex; flex-wrap: wrap; gap: 8px; }
.nf-qz-pill {
  appearance: none;
  border: 1.5px solid #DDD8D0;
  background: #FFFFFF;
  color: #1A1A1A;
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.005em;
  padding: 10px 16px;
  border-radius: 50px;
  cursor: pointer;
  transition: border-color .15s ease, background .15s ease, color .15s ease, transform .15s ease;
  -webkit-tap-highlight-color: transparent;
}
.nf-qz-pill:hover { border-color: #B8B0A4; }
.nf-qz-pill:active { transform: scale(0.97); }
.nf-qz-pill.is-active {
  border-color: #E85D2A;
  background: #FFF0EB;
  color: #E85D2A;
  font-weight: 700;
}
/* [12] Pills sélection ferme dans le récap : orange plein blanc */
.nf-qz-pill.is-selected {
  background: #E85D2A;
  color: #FFFFFF;
  border-color: #E85D2A;
  font-weight: 700;
}
@media (min-width: 900px) { .nf-qz-pill { padding: 12px 20px; font-size: 14.5px; } }

.nf-qz-stepnum-opt {
  color: #6B6B6B;
  text-transform: none;
  letter-spacing: 0.01em;
  font-size: 12px;
  font-weight: 700;
}
.nf-qz-stepfill-opt {
  width: 100%;
  background: repeating-linear-gradient(
    90deg,
    #DDD8D0 0 6px,
    transparent 6px 10px
  );
}

.nf-qz-sentence {
  margin: 0;
  font-size: 16px;
  line-height: 1.7;
  font-weight: 600;
  color: #1A1A1A;
  letter-spacing: -0.01em;
  text-wrap: pretty;
}
@media (min-width: 900px) { .nf-qz-sentence { font-size: 18px; } }

.nf-qz-inline-prefix { color: #1A1A1A; }

.nf-qz-inline {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  position: relative;
  padding: 6px 10px;
  min-height: 44px;
  border-radius: 10px;
  background: #FFFFFF;
  border: 1.5px solid #DDD8D0;
  transition: background .15s ease, border-color .15s ease, box-shadow .15s ease;
  margin: 0 2px;
  vertical-align: -0.5em;
}
.nf-qz-inline:hover { border-color: #B8B0A4; }
.nf-qz-inline:focus-within {
  background: #FFF0EB;
  border-color: #E85D2A;
  box-shadow: 0 0 0 3px rgba(232,93,42,0.10);
}
.nf-qz-inline input {
  border: 0;
  outline: 0;
  background: transparent;
  font-family: inherit;
  font-size: inherit;
  font-weight: 800;
  color: #1A1A1A;
  letter-spacing: -0.015em;
  font-variant-numeric: tabular-nums;
  text-align: center;
  padding: 0;
  height: 32px;
  min-width: 56px;
  -moz-appearance: textfield;
}
.nf-qz-inline input::-webkit-outer-spin-button,
.nf-qz-inline input::-webkit-inner-spin-button {
  -webkit-appearance: none; margin: 0;
}
/* [11] : placeholder inputs précis quiz — contraste WCAG AA */
.nf-qz-inline input::placeholder {
  color: #6B6B6B;
  font-weight: 800;
}
.nf-qz-inline:focus-within input { color: #E85D2A; }
.nf-qz-inline:focus-within input::placeholder { color: rgba(232,93,42,0.55); }

.nf-qz-inline-unit {
  font-size: 0.78em;
  font-weight: 700;
  color: #6B6B6B;
  letter-spacing: -0.005em;
  margin-left: 1px;
}
.nf-qz-inline:focus-within .nf-qz-inline-unit { color: #E85D2A; }

.nf-qz-result {
  margin-top: 4px;
  padding-top: 22px;
  border-top: 1px dashed rgba(0,0,0,0.10);
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: center;
  text-align: center;
}
.nf-qz-result.is-off { color: #9B9B9B; }
.nf-qz-empty {
  margin: 0;
  font-size: 13.5px;
  font-weight: 500;
  color: #9B9B9B;
  padding: 4px 0 8px;
}

.nf-qz-rlabel {
  margin: 0;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #9B9B9B;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.nf-qz-rprecise {
  color: #2D7A4F;
  font-size: 11.5px;
  letter-spacing: 0.06em;
}
.nf-qz-kcal {
  margin: 0;
  display: flex;
  align-items: baseline;
  gap: 8px;
  letter-spacing: -0.02em;
}
.nf-qz-kcal strong {
  font-size: 44px;
  font-weight: 800;
  letter-spacing: -0.035em;
  color: #1A1A1A;
  font-variant-numeric: tabular-nums;
}
.nf-qz-kcal span {
  font-size: 14px;
  font-weight: 600;
  color: #6B6B6B;
}
@media (min-width: 900px) {
  .nf-qz-kcal strong { font-size: 56px; }
  .nf-qz-kcal span { font-size: 15px; }
}

.nf-qz-macros {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}
.nf-qz-macro {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px 8px 10px;
  border-radius: 50px;
  background: #F5F5F3;
  border: 1px solid rgba(0,0,0,0.04);
}
.nf-qz-macro .nf-qz-dot {
  width: 8px; height: 8px; border-radius: 50%; flex: 0 0 auto;
}
.nf-qz-macro[data-k="p"] .nf-qz-dot { background: #E85D2A; }
.nf-qz-macro[data-k="c"] .nf-qz-dot { background: #2D7A4F; }
.nf-qz-macro[data-k="l"] .nf-qz-dot { background: #2563EB; }
.nf-qz-mv {
  font-size: 14px;
  font-weight: 700;
  color: #1A1A1A;
  letter-spacing: -0.01em;
  font-variant-numeric: tabular-nums;
}
.nf-qz-mv small {
  font-size: 11px;
  font-weight: 600;
  color: #6B6B6B;
  margin-left: 1px;
}
.nf-qz-ml {
  font-size: 12.5px;
  font-weight: 600;
  color: #6B6B6B;
}

.nf-qz-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 8px;
  background: #E85D2A;
  color: #FFFFFF;
  font-family: inherit;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.005em;
  padding: 14px 22px;
  border: 0;
  border-radius: 12px;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(232,93,42,0.30),
              0 1px 0 rgba(255,255,255,0.16) inset;
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease;
}
.nf-qz-cta:hover {
  background: #C44A1E;
  box-shadow: 0 8px 24px rgba(232,93,42,0.36),
              0 1px 0 rgba(255,255,255,0.16) inset;
}
.nf-qz-cta:active { transform: scale(0.97); }
.nf-qz-cta svg { transition: transform .2s ease; }
.nf-qz-cta:hover svg { transform: translateX(3px); }

.nf-qz-fine {
  margin: 4px 0 0;
  font-size: 12px;
  font-weight: 500;
  color: #9B9B9B;
}

/* ============================================================
   12. SECTION 11 — Pricing
   ============================================================ */
.nf-pr {
  background: #FFFFFF;
  padding-block: var(--nf-py-neutral);
  padding-inline: 22px;
}
@media (min-width: 900px) { .nf-pr { padding-inline: 40px; } }

.nf-pr-inner { max-width: 1200px; margin: 0 auto; }

.nf-pr-head-block {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px;
}
@media (min-width: 900px) { .nf-pr-head-block { gap: 22px; margin-bottom: 56px; } }

.nf-pr-launch {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px 8px 12px;
  border-radius: 50px;
  background: #FFF0EB;
  color: #C44A1E;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: -0.005em;
  border: 1px solid rgba(232,93,42,0.20);
  text-wrap: balance;
  text-align: left;
}
.nf-pr-flame { font-size: 14px; }
@media (min-width: 900px) {
  .nf-pr-launch { font-size: 13.5px; padding: 10px 18px 10px 14px; }
}

.nf-pr-title {
  margin: 0;
  font-size: 32px;
  line-height: 1.05;
  letter-spacing: -0.035em;
  font-weight: 700;
}
@media (min-width: 520px) { .nf-pr-title { font-size: 40px; } }
@media (min-width: 900px) { .nf-pr-title { font-size: 56px; } }

.nf-pr-grid {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
/* Mobile order : Trim ⭐ first, Annuel, Mensuel — desktop revient à l'ordre source */
.nf-pr-grid > .nf-pr-card { order: 0; }
.nf-pr-grid > .nf-pr-card[data-id="trim"]   { order: -1; }
.nf-pr-grid > .nf-pr-card[data-id="annuel"] { order: 0; }
.nf-pr-grid > .nf-pr-card[data-id="mens"]   { order: 1; }
@media (min-width: 900px) {
  .nf-pr-grid {
    display: grid;
    /* [24] : card Trimestriel +10% width pour effet visuel marqué */
    grid-template-columns: 1fr 1.10fr 1fr;
    gap: 18px;
    align-items: stretch;
  }
  .nf-pr-grid > .nf-pr-card,
  .nf-pr-grid > .nf-pr-card[data-id="trim"],
  .nf-pr-grid > .nf-pr-card[data-id="annuel"],
  .nf-pr-grid > .nf-pr-card[data-id="mens"] { order: 0; }
}

.nf-pr-card {
  position: relative;
  background: #FFFFFF;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 18px;
  padding: 22px 22px 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: transform .25s ease, box-shadow .25s ease, border-color .2s ease;
}
.nf-pr-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(0,0,0,0.06);
}
@media (min-width: 900px) {
  .nf-pr-card { padding: 30px 28px 26px; gap: 14px; border-radius: 18px; }
}

/* [16] : Trimestriel mobile teinté + recommandé renforcé */
.nf-pr-card.is-featured {
  border: 2px solid #E85D2A;
  box-shadow: 0 12px 32px rgba(232,93,42,0.14);
  background: #FFF7F2;
}
.nf-pr-card.is-featured:hover {
  box-shadow: 0 16px 40px rgba(232,93,42,0.18);
}
@media (min-width: 900px) {
  .nf-pr-card.is-featured { transform: translateY(-12px); padding: 36px 30px 30px; }
  .nf-pr-card.is-featured:hover { transform: translateY(-15px); }
}

/* [16] Ribbon Recommandé renforcé sur mobile */
.nf-pr-ribbon {
  position: absolute;
  top: -12px;
  right: 18px;
  background: #E85D2A;
  color: #FFFFFF;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.02em;
  padding: 6px 14px;
  border-radius: 50px;
  box-shadow: 0 4px 12px rgba(232,93,42,0.30);
}
@media (min-width: 900px) { .nf-pr-ribbon { font-size: 11.5px; padding: 6px 12px; } }

.nf-pr-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.nf-pr-name {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #6B6B6B;
}
.nf-pr-card.is-featured .nf-pr-name { color: #C44A1E; }

.nf-pr-badge {
  display: inline-flex;
  align-items: center;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.01em;
  padding: 5px 10px;
  border-radius: 50px;
}
.nf-pr-badge--save {
  background: #E8F8EF;
  color: #2D7A4F;
  border: 1px solid rgba(45,122,79,0.20);
}
.nf-pr-badge--reco {
  background: #FFF0EB;
  color: #E85D2A;
  border: 1px solid rgba(232,93,42,0.20);
}
.nf-pr-badge--plain {
  background: #F5F5F3;
  color: #6B6B6B;
  border: 1px solid rgba(0,0,0,0.06);
}

.nf-pr-priceline {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-top: 4px;
}
.nf-pr-price {
  font-size: 38px;
  font-weight: 800;
  letter-spacing: -0.035em;
  color: #1A1A1A;
  font-variant-numeric: tabular-nums;
  line-height: 1;
}
@media (min-width: 900px) {
  .nf-pr-price { font-size: 48px; }
  .nf-pr-card.is-featured .nf-pr-price { font-size: 56px; }
}
.nf-pr-period {
  font-size: 14px;
  font-weight: 700;
  color: #6B6B6B;
  letter-spacing: -0.01em;
}
@media (min-width: 900px) { .nf-pr-period { font-size: 15px; } }

.nf-pr-eq {
  margin: 0;
  font-size: 13px;
  font-weight: 600;
  color: #6B6B6B;
  letter-spacing: -0.005em;
}
.nf-pr-tag {
  margin: 0 0 4px;
  font-size: 13.5px;
  font-weight: 500;
  color: #6B6B6B;
  line-height: 1.4;
  text-wrap: pretty;
}
.nf-pr-card.is-featured .nf-pr-tag { color: #1A1A1A; font-weight: 600; }

.nf-pr-bonus {
  background: #E8F8EF;
  border: 1px solid rgba(45,122,79,0.20);
  border-radius: 10px;
  padding: 12px 14px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.nf-pr-bonus strong {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: #1A1A1A;
  line-height: 1.3;
}
.nf-pr-bonus span {
  display: block;
  margin-top: 8px;
  font-size: 13px;
  color: #1A1A1A;
  line-height: 1.5;
}
@media (min-width: 900px) {
  .nf-pr-bonus strong { font-size: 15px; }
  .nf-pr-bonus span   { font-size: 13.5px; }
}

.nf-pr-bonus-list {
  list-style: none;
  margin: 0;
  padding: 12px 14px;
  background: #E8F8EF;
  border: 1px solid rgba(45,122,79,0.20);
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.nf-pr-bonus-list li {
  font-size: 14px;
  font-weight: 700;
  color: #1A1A1A;
  line-height: 1.35;
  padding: 4px 0;
}
.nf-pr-bonus-list li::before {
  content: '+ ';
  color: #2D7A4F;
}

/* [04] : TOUS les CTA pricing sont orange (différentiation = bordure trimestriel) */
.nf-pr-cta {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #E85D2A;
  color: #FFFFFF;
  border: 0;
  font-family: inherit;
  font-size: 14.5px;
  font-weight: 700;
  letter-spacing: -0.005em;
  padding: 13px 18px;
  border-radius: 12px;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(232,93,42,0.30),
              0 1px 0 rgba(255,255,255,0.16) inset;
  transition: transform .15s ease, background .2s ease, box-shadow .2s ease;
}
.nf-pr-cta:hover {
  background: #C44A1E;
  color: #FFFFFF;
  box-shadow: 0 8px 24px rgba(232,93,42,0.36),
              0 1px 0 rgba(255,255,255,0.16) inset;
}
.nf-pr-cta:active { transform: scale(0.98); }
.nf-pr-cta svg { transition: transform .2s ease; }
.nf-pr-cta:hover svg { transform: translateX(3px); }

.nf-pr-fine {
  margin: 4px 0 0;
  font-size: 11.5px;
  font-weight: 500;
  color: #9B9B9B;
  text-align: center;
  line-height: 1.45;
  text-wrap: pretty;
}
@media (min-width: 900px) { .nf-pr-fine { font-size: 12px; } }

/* ============================================================
   12b. SECTION — Challenge 30 jours
   ============================================================ */
.nf-challenge-section {
  background: #FFF5F2;
  padding-block: var(--nf-py-bleed);
  padding-inline: 22px;
}
@media (min-width: 900px) { .nf-challenge-section { padding-inline: 40px; } }

.nf-challenge-inner {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
}
.nf-challenge-title {
  margin: 0;
  font-size: 32px;
  line-height: 1.05;
  letter-spacing: -0.035em;
  font-weight: 700;
  color: #1A1A1A;
}
@media (min-width: 520px) { .nf-challenge-title { font-size: 40px; } }
@media (min-width: 900px) { .nf-challenge-title { font-size: 56px; } }

.nf-challenge-sub {
  margin: 10px 0 32px;
  font-size: 18px;
  font-weight: 500;
  color: #E85D2A;
  line-height: 1.4;
}
.nf-challenge-body {
  max-width: 600px;
  margin: 0 auto 16px;
  font-size: 16px;
  line-height: 1.6;
  color: #1A1A1A;
}
.nf-challenge-body:last-child { margin-bottom: 0; }

/* ============================================================
   13. SECTION 12 — FAQ
   ============================================================ */
.nf-faq {
  background: #FAFAF8;
  padding-block: var(--nf-py-neutral);
  padding-inline: 22px;
}
@media (min-width: 900px) { .nf-faq { padding-inline: 40px; } }

.nf-faq-inner { max-width: 1100px; margin: 0 auto; }

.nf-faq-head {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
  margin-bottom: 32px;
}
@media (min-width: 900px) { .nf-faq-head { gap: 14px; margin-bottom: 56px; } }
.nf-faq-eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #E85D2A;
}
.nf-faq-title {
  margin: 0;
  font-size: 32px;
  line-height: 1.05;
  letter-spacing: -0.035em;
  font-weight: 700;
  text-wrap: balance;
}
@media (min-width: 520px) { .nf-faq-title { font-size: 40px; } }
@media (min-width: 900px) { .nf-faq-title { font-size: 56px; } }

.nf-faq-cols {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
.nf-faq-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
@media (min-width: 900px) {
  .nf-faq-cols { grid-template-columns: 1fr 1fr; gap: 18px; align-items: start; }
}

.nf-faq-item {
  background: #FFFFFF;
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 18px;
  overflow: hidden;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.nf-faq-item:hover { border-color: rgba(0,0,0,0.12); }
.nf-faq-item.is-open {
  border-color: rgba(232,93,42,0.30);
  box-shadow: 0 6px 18px rgba(0,0,0,0.04);
}

.nf-faq-q {
  appearance: none;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: transparent;
  border: 0;
  padding: 18px 18px;
  cursor: pointer;
  text-align: left;
  font-family: inherit;
  color: #1A1A1A;
  -webkit-tap-highlight-color: transparent;
}
@media (min-width: 900px) { .nf-faq-q { padding: 22px 24px; } }

.nf-faq-qtext {
  flex: 1;
  font-size: 15.5px;
  line-height: 1.35;
  font-weight: 700;
  letter-spacing: -0.015em;
  text-wrap: pretty;
}
@media (min-width: 900px) { .nf-faq-qtext { font-size: 17px; } }

.nf-faq-chev {
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #F5F5F3;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #6B6B6B;
  transition: transform .25s ease, background .2s ease, color .2s ease;
}
.nf-faq-item.is-open .nf-faq-chev {
  transform: rotate(180deg);
  background: #FFF0EB;
  color: #E85D2A;
}

.nf-faq-a-wrap {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .28s ease;
}
.nf-faq-item.is-open .nf-faq-a-wrap {
  grid-template-rows: 1fr;
}
.nf-faq-a-wrap > .nf-faq-a {
  overflow: hidden;
  margin: 0;
  padding: 0 18px;
  font-size: 14.5px;
  line-height: 1.55;
  font-weight: 500;
  color: #6B6B6B;
  letter-spacing: -0.005em;
  text-wrap: pretty;
}
.nf-faq-item.is-open .nf-faq-a-wrap > .nf-faq-a {
  padding: 0 18px 18px;
}
@media (min-width: 900px) {
  .nf-faq-a-wrap > .nf-faq-a { font-size: 15px; padding: 0 24px; }
  .nf-faq-item.is-open .nf-faq-a-wrap > .nf-faq-a { padding: 0 24px 22px; }
}

/* ============================================================
   14. SECTION 13 — CTA final + Footer
   ============================================================ */
.nf-cta-final-section {
  position: relative;
  background: #1A1A1A;
  color: #F0EDE8;
  padding-block: var(--nf-py-emotional);
  padding-inline: 22px;
  overflow: hidden;
}
@media (min-width: 900px) { .nf-cta-final-section { padding-inline: 40px; } }

.nf-cta-grain {
  position: absolute;
  inset: 0;
  opacity: 0.16;
  mix-blend-mode: overlay;
  pointer-events: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='180' height='180'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1  0 0 0 0 0.95  0 0 0 0 0.85  0 0 0 0 0.4 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}

.nf-cta-inner {
  position: relative;
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
@media (min-width: 900px) { .nf-cta-inner { gap: 22px; } }

.nf-cta-lead {
  margin: 0;
  font-size: 14.5px;
  font-weight: 500;
  color: #9B9B9B;
  letter-spacing: -0.005em;
}
@media (min-width: 900px) { .nf-cta-lead { font-size: 16px; } }

.nf-cta-title {
  margin: 0;
  font-size: 36px;
  line-height: 1.05;
  letter-spacing: -0.035em;
  font-weight: 700;
  color: #FFFFFF;
  text-wrap: balance;
}
@media (min-width: 520px) { .nf-cta-title { font-size: 48px; } }
@media (min-width: 900px) { .nf-cta-title { font-size: 64px; letter-spacing: -0.04em; } }

.nf-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 12px;
  background: #E85D2A;
  color: #FFFFFF;
  font-family: inherit;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.005em;
  height: 56px;
  padding: 14px 24px;
  border: 0;
  border-radius: 12px;
  text-decoration: none;
  cursor: pointer;
  width: 100%;
  max-width: 420px;
  box-shadow: 0 6px 22px rgba(232,93,42,0.40),
              0 1px 0 rgba(255,255,255,0.18) inset;
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease;
}
.nf-cta-btn:hover {
  background: #F26B38;
  box-shadow: 0 10px 32px rgba(232,93,42,0.50),
              0 1px 0 rgba(255,255,255,0.18) inset;
}
.nf-cta-btn:active { transform: scale(0.98); }
.nf-cta-btn svg { transition: transform .2s ease; }
.nf-cta-btn:hover svg { transform: translateX(4px); }
@media (min-width: 900px) {
  .nf-cta-btn { width: auto; font-size: 17px; height: 56px; padding: 14px 28px; margin-top: 16px; }
}

.nf-cta-trust {
  margin: 6px 0 0;
  font-size: 13px;
  font-weight: 500;
  color: #6B6B6B;
  letter-spacing: -0.005em;
  line-height: 1.6;
  text-wrap: pretty;
}
.nf-cta-dot { color: #4A4A4A; padding: 0 4px; }
@media (min-width: 900px) { .nf-cta-trust { font-size: 13.5px; } }

/* ── Footer ───────────────────────────────────────────────── */
.nf-ft {
  background: #1A1A1A;
  color: #6B6B6B;
  padding: 28px 22px 32px;
}
@media (min-width: 900px) { .nf-ft { padding: 40px 40px 44px; } }

.nf-ft-inner { max-width: 1200px; margin: 0 auto; }

.nf-ft-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.005em;
  text-align: center;
}
@media (min-width: 760px) {
  .nf-ft-row {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
    gap: 24px;
  }
}

.nf-ft-copy, .nf-ft-brand { color: #6B6B6B; }
.nf-ft-brand { letter-spacing: 0.02em; }

.nf-ft-links {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 8px;
}
.nf-ft-links a {
  color: #9B9B9B;
  text-decoration: none;
  font-weight: 600;
  letter-spacing: -0.005em;
  transition: color .15s ease;
}
.nf-ft-links a:hover { color: #E85D2A; }
.nf-ft-links span { color: #4A4A4A; user-select: none; }

.nf-ft-sep {
  height: 1px;
  background: rgba(255,255,255,0.06);
  margin: 22px 0 18px;
}
@media (min-width: 900px) { .nf-ft-sep { margin: 28px 0 22px; } }

.nf-ft-disc {
  margin: 0;
  text-align: center;
  font-size: 11px;
  font-style: italic;
  color: #6B6B63;
  letter-spacing: 0.005em;
  line-height: 1.5;
  text-wrap: pretty;
}

/* ============================================================
   15. STICKY CTA mobile — [10] pure media query
   ============================================================ */
.nf-sticky-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 999;
  padding: 10px 16px calc(10px + env(safe-area-inset-bottom, 0px));
  background: rgba(250, 250, 248, 0.95);
  -webkit-backdrop-filter: blur(12px) saturate(140%);
  backdrop-filter: blur(12px) saturate(140%);
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  transition: opacity .25s ease, transform .3s ease;
  display: none;
}
.nf-sticky-cta.is-hidden {
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
}

.nf-sticky-cta-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  height: 52px;
  padding: 14px 24px;
  background: #E85D2A;
  color: #FFFFFF;
  font-family: inherit;
  font-size: 15.5px;
  font-weight: 700;
  letter-spacing: -0.005em;
  border: 0;
  border-radius: 12px;
  text-decoration: none;
  cursor: pointer;
  box-shadow:
    0 6px 18px rgba(232, 93, 42, 0.36),
    0 1px 0 rgba(255, 255, 255, 0.18) inset;
  transition: background .15s ease, transform .15s ease;
}
.nf-sticky-cta-btn:hover { background: #F26B38; }
.nf-sticky-cta-btn:active { transform: scale(0.98); }
.nf-sticky-cta-btn svg { transition: transform .2s ease; }
.nf-sticky-cta-btn:hover svg { transform: translateX(3px); }

/* [10] : pure media query — affichage mobile uniquement, JS gère uniquement le masquage à #pricing */
@media (max-width: 767px) {
  .nf-sticky-cta { display: block; }
}

/* ============================================================
   16. Misc utilitaires
   ============================================================ */
/* Skip link a11y */
.nf-skip {
  position: absolute;
  left: -9999px;
  top: -9999px;
  z-index: 10000;
  background: #1A1A1A;
  color: #FFFFFF;
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}
.nf-skip:focus {
  left: 12px;
  top: 12px;
}
