/* Polices hébergées sur le site (sous-ensemble latin, accents français compris) */
@font-face { font-family: 'Bricolage Grotesque'; font-style: normal; font-weight: 400 800; font-stretch: 75% 100%; font-display: swap; src: url(/assets/fonts/bricolage-grotesque-latin.woff2) format('woff2'); }
@font-face { font-family: 'Instrument Sans'; font-style: normal; font-weight: 400 700; font-stretch: 100%; font-display: swap; src: url(/assets/fonts/instrument-sans-latin.woff2) format('woff2'); }
@font-face { font-family: 'IBM Plex Mono'; font-style: normal; font-weight: 500; font-display: swap; src: url(/assets/fonts/ibm-plex-mono-500-latin.woff2) format('woff2'); }

/* La Voix du Planteur — « la radio des champs »
   Palette : forêt profonde, vert signal (logo), soleil orange, papier vert pâle. */

:root {
  --forest: #0E3B29;
  --forest-deep: #0A2B1E;
  --leaf: #1E6A44;
  --lime: #B5E03C;
  --lime-soft: #E3F2B8;
  --sun: #F36C21;
  --cacao: #5B3A24;
  --paper: #F3F5EC;
  --paper-2: #E6ECDB;
  --white: #FFFFFF;
  --ink: #0F2219;
  --muted: #4A5B51;
  --line: #D0D9C4;
  --on-dark: #F3F5EC;
  --on-dark-muted: rgba(243, 245, 236, 0.74);
  --on-dark-line: rgba(243, 245, 236, 0.16);

  --f-display: 'Bricolage Grotesque', 'Arial Narrow', system-ui, sans-serif;
  --f-body: 'Instrument Sans', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  --f-mono: 'IBM Plex Mono', ui-monospace, 'SFMono-Regular', Menlo, Consolas, monospace;

  --gutter: clamp(16px, 4vw, 32px);
  --radius: 18px;
  --header-h: 80px;
  --shadow-phone: 0 40px 70px -30px rgba(3, 20, 12, 0.7), 0 12px 24px -12px rgba(3, 20, 12, 0.5);
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-padding-top: calc(var(--header-h) + 16px); }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font: 400 1.0625rem/1.6 var(--f-body);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
button { font: inherit; color: inherit; }
:focus-visible { outline: 3px solid var(--sun); outline-offset: 3px; border-radius: 6px; }
[hidden] { display: none !important; }

.container { width: 100%; max-width: 1220px; margin-inline: auto; padding-inline: var(--gutter); }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
.skip { position: absolute; left: 12px; top: -60px; z-index: 100; background: var(--lime); color: var(--forest); padding: 10px 16px; border-radius: 10px; font-weight: 700; }
.skip:focus { top: 12px; }

/* ── Typographie ─────────────────────────────────────────────────────── */
.h1, .h2, .h3 { font-family: var(--f-display); margin: 0; text-wrap: balance; }
.h1 {
  font-size: clamp(2.5rem, 4.6vw + 1rem, 4.75rem);
  line-height: 0.98;
  font-weight: 800;
  font-variation-settings: 'wdth' 78, 'opsz' 96;
  letter-spacing: -0.025em;
}
.h1--sm { font-size: clamp(2rem, 3vw + 1rem, 3.2rem); }
.h2 {
  font-size: clamp(1.9rem, 2.4vw + 1rem, 3.1rem);
  line-height: 1.02;
  font-weight: 800;
  font-variation-settings: 'wdth' 82, 'opsz' 72;
  letter-spacing: -0.02em;
}
.h3 { font-size: clamp(1.3rem, 0.8vw + 1rem, 1.6rem); line-height: 1.15; font-weight: 700; letter-spacing: -0.01em; }
.lead { font-size: clamp(1.1rem, 0.4vw + 1rem, 1.3rem); line-height: 1.55; max-width: 58ch; }
.eyebrow {
  margin: 0 0 14px;
  font: 500 0.78rem/1.2 var(--f-mono);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--leaf);
  display: inline-flex; align-items: center; gap: 10px;
}
.eyebrow::before { content: ''; width: 18px; height: 2px; background: currentColor; }
.fineprint { font-size: 0.85rem; color: var(--muted); margin: 12px 0 0; }
.fineprint--light { color: var(--on-dark-muted); }

/* ── Boutons ─────────────────────────────────────────────────────────── */
.btn {
  --bg: var(--forest); --fg: var(--on-dark); --bd: transparent;
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 48px; padding: 12px 22px;
  border-radius: 999px; border: 2px solid var(--bd);
  background: var(--bg); color: var(--fg);
  font: 600 1rem/1.2 var(--f-body); text-decoration: none; cursor: pointer;
  transition: transform .18s ease, background-color .18s ease, color .18s ease, border-color .18s ease;
}
.btn svg { width: 20px; height: 20px; flex: none; }
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn--lime { --bg: var(--lime); --fg: var(--forest); }
.btn--lime:hover { --bg: #C6EC57; }
.btn--wa { --bg: var(--lime); --fg: var(--forest); }
.btn--ink { --bg: var(--forest); --fg: var(--lime); }
.btn--ghost { --bg: transparent; --fg: var(--on-dark); --bd: var(--on-dark-line); }
.btn--ghost:hover { --bd: var(--lime); --fg: var(--lime); }
.btn--ghost-dark { --bg: transparent; --fg: var(--forest); --bd: var(--forest); }
.btn--ghost-dark:hover { --bg: var(--forest); --fg: var(--lime); }
.btn--sm { min-height: 40px; padding: 8px 16px; font-size: 0.92rem; }
.btn--lg { min-height: 56px; padding: 14px 26px; font-size: 1.05rem; }

/* ── En-tête ─────────────────────────────────────────────────────────── */
.site-header {
  position: sticky; top: env(safe-area-inset-top, 0px); z-index: 50;
  background: var(--forest); color: var(--on-dark);
  border-bottom: 1px solid transparent;
  transition: border-color .2s ease, background-color .2s ease;
}
.site-header.is-scrolled { border-bottom-color: var(--on-dark-line); background: rgba(10, 43, 30, 0.96); backdrop-filter: blur(10px); }
.site-header__row { display: flex; align-items: center; gap: 24px; min-height: var(--header-h); }

.brand { display: inline-flex; align-items: center; text-decoration: none; flex: none; padding-block: 6px; }
.brand__logo { height: 66px; width: auto; }
.brand--footer .brand__logo { height: 92px; }
@media (max-width: 600px) { .brand__logo { height: 50px; } }

/* Bannière WhatsApp */
.wa-banner { background: var(--white); }
.wa-banner__link { display: block; max-width: 980px; margin-inline: auto; border-radius: 20px; transition: transform .2s ease; }
.wa-banner__link:hover { transform: translateY(-3px); }
.wa-banner__link img { width: 100%; height: auto; }
.page-aicha .wa-banner { background: var(--white); padding-top: 0; }

.nav { display: flex; align-items: center; gap: 28px; margin-left: auto; }
.nav__list { display: flex; gap: 6px; list-style: none; margin: 0; padding: 0; }
.nav__list a {
  display: block; padding: 8px 12px; border-radius: 999px;
  text-decoration: none; font-weight: 600; font-size: 0.97rem; color: var(--on-dark-muted);
  transition: color .15s ease, background-color .15s ease;
}
.nav__list a:hover { color: var(--on-dark); background: rgba(243, 245, 236, 0.08); }
.nav__list a[aria-current="page"] { color: var(--forest); background: var(--lime); }
.nav__actions { display: flex; align-items: center; gap: 12px; }
.lang {
  display: inline-flex; border: 1.5px solid var(--on-dark-line); border-radius: 999px; padding: 3px;
  font: 500 0.78rem/1 var(--f-mono); text-decoration: none; letter-spacing: 0.06em;
}
.lang span { padding: 7px 9px; border-radius: 999px; }
.lang__on { background: var(--on-dark); color: var(--forest); }
.lang__off { color: var(--on-dark-muted); }
.lang:hover .lang__off { color: var(--lime); }

.nav-toggle { display: none; margin-left: auto; width: 46px; height: 46px; border-radius: 12px; border: 1.5px solid var(--on-dark-line); background: transparent; color: var(--on-dark); cursor: pointer; place-items: center; }
.nav-toggle svg { width: 24px; height: 24px; }
.nav-toggle__close { display: none; }
.nav-toggle[aria-expanded="true"] .nav-toggle__open { display: none; }
.nav-toggle[aria-expanded="true"] .nav-toggle__close { display: block; }

@media (max-width: 960px) {
  .nav-toggle { display: grid; }
  .nav {
    position: fixed; left: 0; right: 0; top: calc(var(--header-h) + env(safe-area-inset-top, 0px)); bottom: 0;
    flex-direction: column; align-items: stretch; gap: 24px;
    padding: 24px var(--gutter) calc(32px + env(safe-area-inset-bottom, 0px));
    background: var(--forest-deep); overflow-y: auto;
    visibility: hidden; opacity: 0; transform: translateY(-8px);
    transition: opacity .2s ease, transform .2s ease, visibility 0s linear .2s;
  }
  .nav.is-open { visibility: visible; opacity: 1; transform: none; transition: opacity .2s ease, transform .2s ease; }
  .nav__list { flex-direction: column; gap: 4px; }
  .nav__list a { font: 700 1.7rem/1.2 var(--f-display); font-variation-settings: 'wdth' 82; padding: 12px 14px; border-radius: 14px; color: var(--on-dark); }
  .nav__actions { justify-content: space-between; flex-wrap: wrap; }
  body.nav-open { overflow: hidden; }
}

/* ── Onde vocale (fil conducteur) ────────────────────────────────────── */
.wave { display: flex; align-items: center; gap: 3px; height: 56px; padding-inline: var(--gutter); color: var(--lime); }
.wave i {
  flex: 1 1 0; min-width: 2px; height: calc(var(--h) * 100%);
  background: currentColor; border-radius: 3px; transform-origin: 50% 50%;
  animation: wave 2.6s ease-in-out infinite; animation-delay: calc(var(--i) * -83ms);
}
@keyframes wave { 0%, 100% { transform: scaleY(0.5); } 50% { transform: scaleY(1); } }
.wave--hero { opacity: 0.35; margin-block: 8px; transition: opacity .4s ease; }
body.is-playing .wave--hero { opacity: 0.9; }
body.is-playing .wave i { animation-duration: 0.8s; }
.wave--mini { height: 28px; padding: 0; gap: 2px; color: var(--leaf); }

/* ── Téléphone-lecteur ───────────────────────────────────────────────── */
.phone {
  --r: 34px; --pad: 9px;
  position: relative; width: 100%; max-width: 100%; aspect-ratio: 9 / 19;
  background: #090d0b; border-radius: var(--r); padding: var(--pad);
  box-shadow: inset 0 0 0 1.5px #2b3530, inset 0 0 0 4px #121815, var(--shadow-phone);
}
.phone::before {
  content: ''; position: absolute; z-index: 5; top: calc(var(--pad) + 8px); left: 50%;
  width: 30%; height: 15px; transform: translateX(-50%); border-radius: 999px; background: #000;
}
.phone__screen { position: relative; height: 100%; border-radius: calc(var(--r) - var(--pad)); overflow: hidden; background: #17201b; isolation: isolate; }
.phone__screen > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transform: scale(1.02); transition: transform .5s ease; }
.phone__screen::after {
  content: ''; position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: linear-gradient(180deg, rgba(0,0,0,.45) 0%, rgba(0,0,0,0) 22%, rgba(0,0,0,0) 48%, rgba(0,0,0,.82) 100%);
}
.phone:hover .phone__screen > img { transform: scale(1.07); }
.phone__top { position: absolute; z-index: 2; top: 32px; left: 12px; right: 12px; display: flex; justify-content: space-between; align-items: center; gap: 8px; color: #fff; }
.phone__handle { font: 600 0.72rem/1.2 var(--f-body); text-shadow: 0 1px 3px rgba(0,0,0,.6); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.phone__dur { font: 500 0.68rem/1 var(--f-mono); background: rgba(0,0,0,.55); padding: 4px 7px; border-radius: 999px; flex: none; }
.phone__rail { position: absolute; z-index: 2; right: 8px; bottom: 28%; display: flex; flex-direction: column; gap: 14px; color: #fff; }
.phone__rail svg { width: 22px; height: 22px; filter: drop-shadow(0 1px 3px rgba(0,0,0,.6)); }
.phone__ui { position: absolute; z-index: 2; left: 12px; right: 40px; bottom: 16px; color: #fff; }
.phone__cat { display: inline-block; margin-bottom: 6px; padding: 3px 8px; border-radius: 999px; background: var(--lime); color: var(--forest); font: 600 0.66rem/1.3 var(--f-body); }
.phone__title { margin: 0; font: 700 1rem/1.18 var(--f-display); font-variation-settings: 'wdth' 88; text-shadow: 0 1px 8px rgba(0,0,0,.5); text-wrap: balance; }
.phone__play {
  position: absolute; inset: 0; z-index: 3; display: grid; place-items: center;
  background: transparent; border: 0; cursor: pointer; border-radius: inherit;
}
.phone__play svg {
  box-sizing: border-box; width: 62px; height: 62px; padding: 17px 15px 17px 19px;
  border-radius: 50%; color: #fff; background: rgba(14, 59, 41, 0.5);
  border: 2px solid rgba(255,255,255,.9); backdrop-filter: blur(6px);
  transition: transform .2s ease, background-color .2s ease, color .2s ease;
}
.phone__play:hover svg, .phone__play:focus-visible svg { transform: scale(1.1); background: var(--lime); color: var(--forest); border-color: var(--lime); }
.phone__play:focus-visible { outline-offset: -6px; }
.phone iframe { position: absolute; inset: 0; z-index: 4; width: 100%; height: 100%; border: 0; background: #000; }
.phone.is-playing .phone__top, .phone.is-playing .phone__rail, .phone.is-playing .phone__ui, .phone.is-playing .phone__play { display: none; }

.phone--sm { --r: 24px; --pad: 6px; }
.phone--sm::before { height: 10px; top: calc(var(--pad) + 6px); }
.phone--sm .phone__top { top: 22px; left: 9px; right: 9px; }
.phone--sm .phone__handle { display: none; }
.phone--sm .phone__rail { display: none; }
.phone--sm .phone__ui { left: 10px; right: 10px; bottom: 12px; }
.phone--sm .phone__title { font-size: 0.9rem; }
.phone--sm .phone__play svg { width: 50px; height: 50px; padding: 14px 12px 14px 16px; }

/* ── Hero ────────────────────────────────────────────────────────────── */
.hero, .page-hero {
  position: relative; color: var(--on-dark); background-color: var(--forest);
  background-image:
    radial-gradient(60% 55% at 85% 20%, rgba(181, 224, 60, 0.16), transparent 70%),
    radial-gradient(50% 60% at 0% 100%, rgba(244, 163, 64, 0.10), transparent 70%);
  overflow: hidden;
}
.hero { padding-block: clamp(40px, 6vw, 80px) 40px; }
.hero .eyebrow, .page-hero .eyebrow { color: var(--lime); }
.hero__grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(24px, 4vw, 64px); align-items: center; }
.hero__copy .lead { color: var(--on-dark-muted); margin: 24px 0 32px; }
.hero__accent { color: var(--lime); display: block; }
.hero__ctas { display: flex; flex-wrap: wrap; gap: 12px; }
.hero__phones { position: relative; height: clamp(440px, 46vw, 600px); }
.phone--fan { position: absolute; width: 42%; max-width: 250px; transition: transform .5s cubic-bezier(.2,.7,.2,1); }
.phone--fan-0 { left: 2%; top: 11%; transform: rotate(-9deg); }
.phone--fan-1 { left: 50%; top: 0; width: 47%; max-width: 280px; transform: translateX(-50%); z-index: 2; }
.phone--fan-2 { right: 2%; top: 11%; transform: rotate(9deg); }
.hero__phones:hover .phone--fan-0 { transform: rotate(-12deg) translateX(-10px); }
.hero__phones:hover .phone--fan-2 { transform: rotate(12deg) translateX(10px); }
.phone--fan.is-playing { z-index: 3; }

.stats { display: grid; grid-template-columns: repeat(4, 1fr); margin: 0; border-top: 1px solid var(--on-dark-line); }
.stats__item { padding: 22px 20px 6px 0; }
.stats__item + .stats__item { padding-left: 20px; border-left: 1px solid var(--on-dark-line); }
.stats dt { font: 500 0.74rem/1.3 var(--f-mono); letter-spacing: 0.1em; text-transform: uppercase; color: var(--on-dark-muted); }
.stats dd { margin: 6px 0 0; }
.stats__num { display: block; font: 800 clamp(2rem, 2.6vw + 1rem, 3.1rem)/1 var(--f-display); font-variation-settings: 'wdth' 78; font-variant-numeric: tabular-nums; color: var(--on-dark); }
.stats dd small { display: block; margin-top: 6px; color: var(--on-dark-muted); font-size: 0.85rem; }

@media (max-width: 900px) {
  .hero__grid { grid-template-columns: 1fr; }
  .hero__phones { height: clamp(360px, 92vw, 520px); max-width: 520px; width: 100%; margin-inline: auto; }
  .phone--fan { width: 40%; }
  .phone--fan-1 { width: 46%; }
  .phone--fan .phone__handle { display: none; }
  .phone--fan .phone__top { justify-content: flex-end; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .stats__item:nth-child(3) { padding-left: 0; border-left: 0; }
  .stats__item:nth-child(n+3) { border-top: 1px solid var(--on-dark-line); }
}

/* ── Sections ────────────────────────────────────────────────────────── */
.section { padding-block: clamp(64px, 8vw, 112px); }
.section--tight { padding-block: clamp(28px, 4vw, 48px); }
.section-head { max-width: 760px; margin-bottom: clamp(32px, 4vw, 56px); }
.section-head p { color: var(--muted); font-size: 1.1rem; margin: 18px 0 0; max-width: 60ch; }
.section-head--row { max-width: none; display: flex; justify-content: space-between; align-items: flex-end; gap: 24px; flex-wrap: wrap; }
.section-head--row > div { max-width: 700px; }

/* Audience */
.audience__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 5vw, 72px); align-items: center; }
.audience__photo { margin: 0; border-radius: 28px; overflow: hidden; aspect-ratio: 4 / 5; box-shadow: 0 30px 60px -30px rgba(14, 59, 41, .5); }
.audience__photo img { width: 100%; height: 100%; object-fit: cover; object-position: 62% 50%; }
.audience__copy > p { color: var(--muted); margin: 18px 0 0; max-width: 56ch; }
.audience__key { font: 700 1.25rem/1.3 var(--f-display) !important; color: var(--forest) !important; border-left: 4px solid var(--lime); padding-left: 14px; }
.chart, .gender { margin-top: 28px; }
.chart__label { margin: 0 0 10px; font: 500 0.74rem/1.2 var(--f-mono); letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); }
.bar { display: grid; grid-template-columns: 58px 1fr 64px; align-items: center; gap: 12px; padding-block: 5px; font-variant-numeric: tabular-nums; }
.bar__k { font: 500 0.85rem/1 var(--f-mono); color: var(--muted); }
.bar__track { height: 14px; background: var(--paper-2); border-radius: 999px; overflow: hidden; }
.bar__fill { display: block; height: 100%; width: var(--w); background: var(--leaf); border-radius: 999px; transform-origin: left; }
.bar--hi .bar__fill { background: var(--forest); }
.bar--hi .bar__v { color: var(--forest); font-weight: 700; }
.bar__v { font: 500 0.9rem/1 var(--f-mono); text-align: right; color: var(--muted); }
.chart.is-visible .bar__fill { animation: grow 1s cubic-bezier(.2,.7,.2,1) both; }
@keyframes grow { from { transform: scaleX(0); } to { transform: scaleX(1); } }
.gender__bar { display: flex; height: 40px; border-radius: 12px; overflow: hidden; font: 600 0.85rem/1 var(--f-body); }
.gender__bar span { width: var(--w); display: flex; align-items: center; padding-inline: 12px; white-space: nowrap; }
.gender__bar span:first-child { background: var(--forest); color: var(--on-dark); }
.gender__bar span:last-child { background: var(--sun); color: var(--ink); }
@media (max-width: 860px) {
  .audience__grid { grid-template-columns: 1fr; }
  .audience__photo { aspect-ratio: 16 / 10; }
}

/* Écosystème */
.eco { background: var(--paper-2); }
.eco__chain { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: 1fr 72px 1fr 72px 1fr 72px 1fr; align-items: stretch; }
.eco__link { display: flex; align-items: center; }
.eco__node { background: var(--white); border-radius: 22px; padding: 26px 24px; display: flex; flex-direction: column; gap: 6px; min-height: 100%; border: 1px solid var(--line); }
.eco__node--1 { background: var(--forest); color: var(--on-dark); border-color: var(--forest); }
.eco__node--1 .eco__t, .eco__node--1 .eco__d { color: var(--on-dark-muted); }
.eco__node--1 .eco__k { color: var(--lime); }
.eco__node--3 { background: var(--sun); border-color: var(--sun); color: var(--ink); }
.eco__node--3 .eco__t, .eco__node--3 .eco__d { color: rgba(15, 34, 25, 0.82); }
.eco__node--3 .eco__k { color: var(--ink); }
.eco__t { font: 500 0.74rem/1.3 var(--f-mono); letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); }
.eco__k { font: 800 1.6rem/1.05 var(--f-display); font-variation-settings: 'wdth' 82; color: var(--forest); }
.eco__d { color: var(--muted); }
.eco__link { padding-inline: 10px; }
.eco__foot { margin: 32px 0 0; font-size: 1.1rem; max-width: 70ch; }
.eco__foot a { display: inline-flex; align-items: center; gap: 6px; font-weight: 700; color: var(--leaf); }
.eco__foot a svg { width: 18px; height: 18px; }
@media (max-width: 1080px) {
  .eco__chain { grid-template-columns: 1fr; }
  .eco__link { height: 44px; padding: 0; display: flex; justify-content: center; }
  .eco__link .wave { width: 44px; transform: rotate(90deg); }
}

/* Infographie : deux parcours (planteur / agri-tech) */
.flow { display: grid; gap: 16px; }
.flow__lane { border-radius: 26px; padding: clamp(20px, 3vw, 32px); display: grid; grid-template-columns: 220px 1fr; gap: 20px 32px; align-items: start; }
.flow__lane--farmer { background: var(--white); border: 1px solid var(--line); }
.flow__lane--agritech { background: var(--forest); color: var(--on-dark); }
.flow__head { display: flex; flex-direction: column; gap: 6px; padding-top: 4px; }
.flow__who { font: 800 1.5rem/1.1 var(--f-display); font-variation-settings: 'wdth' 82; color: var(--forest); }
.flow__lane--agritech .flow__who { color: var(--lime); }
.flow__head small { font-size: 0.92rem; color: var(--muted); }
.flow__lane--agritech .flow__head small { color: var(--on-dark-muted); }
.flow__steps { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; }
.flow__step { position: relative; display: flex; flex-direction: column; gap: 6px; padding: 16px 16px 18px; border-radius: 18px; background: var(--paper); }
.flow__lane--agritech .flow__step { background: rgba(243, 245, 236, 0.07); border: 1px solid var(--on-dark-line); }
.flow__step strong { font: 700 1.08rem/1.25 var(--f-display); }
.flow__step p { margin: 0; font-size: 0.93rem; color: var(--muted); }
.flow__lane--agritech .flow__step p { color: var(--on-dark-muted); }
.flow__n { width: 30px; height: 30px; border-radius: 50%; display: grid; place-items: center; font: 800 0.95rem/1 var(--f-display); background: var(--forest); color: var(--lime); }
.flow__lane--agritech .flow__n { background: var(--lime); color: var(--forest); }
.flow__step:not(:last-child)::after { content: '→'; position: absolute; right: -13px; top: 50%; transform: translateY(-50%); z-index: 1; width: 22px; height: 22px; border-radius: 50%; display: grid; place-items: center; font-size: 0.8rem; background: var(--sun); color: #fff; }
@media (max-width: 1000px) { .flow__lane { grid-template-columns: 1fr; } }
@media (max-width: 720px) {
  .flow__steps { grid-template-columns: 1fr; gap: 16px; }
  .flow__step:not(:last-child)::after { content: '↓'; right: auto; left: 50%; top: auto; bottom: -15px; transform: translateX(-50%); }
}

/* Vidéos à la une (défilement horizontal) */
.reel {
  display: grid; grid-auto-flow: column; grid-auto-columns: minmax(190px, 1fr); gap: 22px;
  overflow-x: auto; scroll-snap-type: x mandatory; padding-block: 12px 36px; scrollbar-width: thin;
}
.reel > .phone { scroll-snap-align: start; }
@media (max-width: 1100px) { .reel { grid-auto-columns: 210px; } }

/* Tableau des prix (façon ardoise « prix bord champ ») */
.services-teaser { background: var(--forest); color: var(--on-dark); }
.services-teaser .eyebrow { color: var(--lime); }
.services-teaser__grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(32px, 5vw, 72px); align-items: center; }
.services-teaser__grid > div > p { color: var(--on-dark-muted); margin: 18px 0 28px; max-width: 52ch; }
.board {
  background: var(--forest-deep); color: var(--on-dark); border-radius: 22px; padding: clamp(20px, 3vw, 32px);
  border: 1px solid var(--on-dark-line);
  box-shadow: inset 0 0 0 6px rgba(243, 245, 236, 0.03);
}
.board__head { display: flex; justify-content: space-between; font: 500 0.74rem/1 var(--f-mono); letter-spacing: 0.14em; text-transform: uppercase; color: var(--sun); padding-bottom: 14px; border-bottom: 1px dashed var(--on-dark-line); }
.board__rows { list-style: none; margin: 0; padding: 0; }
.board__rows li { display: flex; align-items: flex-end; gap: 12px; padding-block: 16px; border-bottom: 1px dashed var(--on-dark-line); }
.board__name { font: 700 1.08rem/1.2 var(--f-display); display: flex; flex-direction: column; gap: 4px; min-width: 0; }
.board__name small { font: 400 0.85rem/1.3 var(--f-body); color: var(--on-dark-muted); }
.board__dots { flex: 1; min-width: 20px; border-bottom: 2px dotted rgba(243, 245, 236, 0.28); margin-bottom: 6px; }
.board__price { font: 500 1.2rem/1 var(--f-mono); color: var(--lime); white-space: nowrap; font-variant-numeric: tabular-nums; text-align: right; }
.board__price small { display: block; font-size: 0.66rem; color: var(--on-dark-muted); letter-spacing: 0.06em; margin-bottom: 4px; }
.board__rows li:has(.board__link) { padding: 0; }
.board__link { display: flex; align-items: center; justify-content: space-between; gap: 16px; width: 100%; padding-block: 16px; text-decoration: none; color: inherit; }
.board__go { width: 40px; height: 40px; flex: none; display: grid; place-items: center; border-radius: 50%; border: 1.5px solid var(--on-dark-line); color: var(--lime); transition: background-color .15s ease, color .15s ease; }
.board__go svg { width: 18px; height: 18px; }
.board__link:hover .board__go { background: var(--lime); color: var(--forest); border-color: var(--lime); }
.board__note { margin: 16px 0 0; font-size: 0.85rem; color: var(--on-dark-muted); }
@media (max-width: 860px) { .services-teaser__grid { grid-template-columns: 1fr; } }
@media (max-width: 480px) {
  .board__dots { display: none; }
  .board__rows li { flex-direction: column; align-items: flex-start; gap: 8px; }
  .board__price { text-align: left; }
}

/* Partenaires */
.partners { padding-block: clamp(56px, 7vw, 96px); }
.partners__title { text-align: center; margin-bottom: 32px; color: var(--forest); }
.marquee {
  display: flex; overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.marquee__track { display: flex; gap: 16px; padding-right: 16px; margin: 0; list-style: none; flex: none; animation: marquee 55s linear infinite; }
.marquee:hover .marquee__track, .marquee:focus-within .marquee__track { animation-play-state: paused; }
@keyframes marquee { to { transform: translateX(-100%); } }
.logo-tile { width: 190px; height: 104px; flex: none; display: grid; place-items: center; padding: 14px 18px; background: var(--white); border: 1px solid var(--line); border-radius: 16px; }
.logo-tile img { max-height: 70px; width: auto; max-width: 100%; object-fit: contain; filter: saturate(0.9); opacity: 0.95; transition: filter .25s ease, opacity .25s ease; }
.logo-tile:hover img { filter: none; opacity: 1; }
.logo-tile--dark { background: #1C4838; border-color: #1C4838; }
.logo-tile--dark img { opacity: 1; }

/* FAQ */
.faq { background: var(--white); }
.faq__grid { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: clamp(24px, 5vw, 72px); align-items: start; }
.faq__list { border-top: 1px solid var(--line); }
.faq__item { border-bottom: 1px solid var(--line); }
.faq__item summary {
  list-style: none; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 16px;
  padding: 22px 0; font: 700 1.15rem/1.3 var(--f-display);
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary svg { width: 22px; height: 22px; flex: none; color: var(--leaf); transition: transform .2s ease; }
.faq__item[open] summary svg { transform: rotate(45deg); }
.faq__item p { margin: 0 0 22px; color: var(--muted); max-width: 65ch; }
@media (max-width: 860px) { .faq__grid { grid-template-columns: 1fr; } }

/* Double appel à l'action */
.dual { padding-top: 0; background: var(--white); }
.page-home .dual { background: var(--white); }
.dual__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.dual__card { border-radius: 28px; padding: clamp(28px, 4vw, 48px); display: flex; flex-direction: column; align-items: flex-start; gap: 14px; }
.dual__card p { margin: 0 0 10px; max-width: 46ch; }
.dual__card--farmer { background: var(--lime); color: var(--forest); }
.dual__card--org { background: var(--forest); color: var(--on-dark); }
.dual__card--org p { color: var(--on-dark-muted); }
@media (max-width: 760px) { .dual__grid { grid-template-columns: 1fr; } }
body:not(.page-home) .dual { padding-top: clamp(64px, 8vw, 112px); }

/* ── Pied de page ────────────────────────────────────────────────────── */
.site-footer { background: var(--forest-deep); color: var(--on-dark); padding-block: 64px calc(28px + env(safe-area-inset-bottom, 0px)); }
.site-footer__grid { display: grid; grid-template-columns: 1.3fr 0.8fr 1.3fr 1.2fr; gap: 36px; }
@media (max-width: 1080px) { .site-footer__grid { grid-template-columns: 1fr 1fr; } }
.site-footer__about p { color: var(--on-dark-muted); max-width: 42ch; margin: 18px 0; }
.site-footer__h { font: 500 0.74rem/1.2 var(--f-mono); letter-spacing: 0.12em; text-transform: uppercase; color: var(--lime); margin: 0 0 16px; }
.site-footer__links { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.site-footer__links a { color: var(--on-dark-muted); text-decoration: none; overflow-wrap: anywhere; }
.site-footer__links a:hover { color: var(--on-dark); text-decoration: underline; }
.site-footer__base { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px 24px; margin-top: 48px; padding-top: 24px; border-top: 1px solid var(--on-dark-line); font-size: 0.85rem; color: var(--on-dark-muted); }
.site-footer__base p { margin: 0; }
@media (max-width: 800px) { .site-footer__grid { grid-template-columns: 1fr; } }

.socials { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: 10px; }
.soc { width: 44px; height: 44px; display: grid; place-items: center; border-radius: 12px; color: #fff; transition: transform .15s ease, box-shadow .15s ease; }
.soc svg { width: 22px; height: 22px; }
.socials .soc:hover { transform: translateY(-2px); box-shadow: 0 8px 18px -8px rgba(0,0,0,.5); }
.soc--facebook { background: #1877F2; }
.soc--tiktok { background: #000; box-shadow: inset 0 0 0 1.5px rgba(255,255,255,.18); }
.soc--tiktok svg { filter: drop-shadow(1.5px 1.5px 0 #FE2C55) drop-shadow(-1.5px -1.5px 0 #25F4EE); }
.soc--instagram { background: radial-gradient(circle at 30% 107%, #FDF497 0%, #FDF497 5%, #FD5949 45%, #D6249F 60%, #285AEB 90%); }
.soc--youtube { background: #FF0000; }
.soc--lg { width: 56px; height: 56px; border-radius: 16px; }
.soc--lg svg { width: 28px; height: 28px; }

/* Section réseaux sociaux (accueil) */
.social { background: var(--paper-2); }
.social__grid { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; }
.social__card { display: flex; flex-direction: column; align-items: flex-start; gap: 14px; padding: 22px; border-radius: 20px; background: var(--white); border: 1px solid var(--line); text-decoration: none; color: var(--ink); height: 100%; transition: transform .18s ease, box-shadow .18s ease; }
.social__card:hover { transform: translateY(-3px); box-shadow: 0 16px 30px -18px rgba(14, 59, 41, .45); }
.social__txt { display: flex; flex-direction: column; min-width: 0; flex: 1; }
.social__txt strong { font: 700 1.1rem/1.2 var(--f-display); }
.social__txt small { color: var(--muted); font-size: 0.92rem; }
.social__cta { flex: none; margin-top: auto; font-weight: 700; font-size: 0.85rem; padding: 7px 12px; border-radius: 999px; background: var(--forest); color: var(--lime); }
@media (max-width: 1000px) { .social__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 520px) { .social__grid { grid-template-columns: 1fr; } .social__card { flex-direction: row; align-items: center; } .social__cta { margin: 0 0 0 auto; } }

/* Bouton WhatsApp flottant */
.wa-float {
  position: fixed; z-index: 40; right: 16px; bottom: calc(16px + env(safe-area-inset-bottom, 0px));
  display: inline-flex; align-items: center; gap: 8px; padding: 12px 18px 12px 14px;
  background: var(--lime); color: var(--forest); border-radius: 999px; text-decoration: none; font-weight: 700;
  box-shadow: 0 12px 30px -10px rgba(10, 43, 30, 0.6); transition: transform .2s ease;
}
.wa-float svg { width: 24px; height: 24px; }
.wa-float:hover { transform: translateY(-3px); }
body.nav-open .wa-float { display: none; }

/* ── En-têtes de pages intérieures ───────────────────────────────────── */
.page-hero { padding-block: clamp(48px, 7vw, 96px) 24px; }
.page-hero .lead { color: var(--on-dark-muted); margin: 22px 0 30px; }
.page-hero--short .lead { margin-bottom: 8px; }
.page-hero__grid { display: grid; grid-template-columns: 1.3fr 1fr; gap: clamp(32px, 5vw, 72px); align-items: center; }
@media (max-width: 900px) { .page-hero__grid { grid-template-columns: 1fr; } }
.mini-stats { margin: 0; display: grid; gap: 18px; }
.mini-stats div { border-left: 3px solid var(--lime); padding-left: 18px; }
.mini-stats dt { font: 500 0.74rem/1.2 var(--f-mono); letter-spacing: 0.1em; text-transform: uppercase; color: var(--on-dark-muted); }
.mini-stats dd { margin: 6px 0 0; font: 800 clamp(2.4rem, 3vw + 1rem, 3.8rem)/1 var(--f-display); font-variation-settings: 'wdth' 78; }

/* ── Vidéothèque ─────────────────────────────────────────────────────── */
.vlib { padding-top: 0; }
.filters { position: sticky; top: calc(var(--header-h) + env(safe-area-inset-top, 0px)); z-index: 20; background: rgba(243, 245, 236, 0.94); backdrop-filter: blur(10px); border-bottom: 1px solid var(--line); }
.filters__row { display: flex; gap: 8px; overflow-x: auto; padding-block: 14px; scrollbar-width: none; }
.filters__row::-webkit-scrollbar { display: none; }
.chip {
  flex: none; display: inline-flex; align-items: center; gap: 8px; min-height: 42px; padding: 8px 16px;
  border-radius: 999px; border: 1.5px solid var(--line); background: var(--white); color: var(--ink);
  font: 600 0.92rem/1.2 var(--f-body); cursor: pointer; transition: background-color .15s ease, color .15s ease, border-color .15s ease;
}
.chip span { font: 500 0.75rem/1 var(--f-mono); color: var(--muted); }
.chip:hover { border-color: var(--forest); }
.chip.is-on { background: var(--forest); border-color: var(--forest); color: var(--lime); }
.chip.is-on span { color: var(--on-dark-muted); }
.vlib__count { margin: 28px 0 20px; color: var(--muted); font-size: 0.95rem; }
.vlib__count strong { font-family: var(--f-mono); color: var(--forest); }
.vgrid { display: grid; grid-template-columns: repeat(auto-fill, minmax(168px, 1fr)); gap: clamp(14px, 2vw, 26px); }
@media (max-width: 420px) { .vgrid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; } }
.vgrid .phone.is-hidden { display: none; }
.follow { background: var(--paper-2); }
.follow__row { display: flex; justify-content: space-between; align-items: center; gap: 24px; flex-wrap: wrap; }
.follow__row p { margin: 8px 0 0; color: var(--muted); }

/* Lecteur plein écran */
.vmodal { border: 0; padding: 0; margin: 0; width: 100%; max-width: 100%; height: 100%; max-height: 100%; background: transparent; color: var(--on-dark); }
.vmodal::backdrop { background: rgba(5, 22, 14, 0.9); backdrop-filter: blur(6px); }
.vmodal[open] { display: grid; place-items: center; }
.vmodal__inner { position: relative; display: flex; flex-direction: column; align-items: center; gap: 18px; padding: 56px 16px 24px; width: 100%; }
.vmodal__stage { display: flex; align-items: center; gap: clamp(8px, 3vw, 28px); }
.phone--modal { width: min(82vw, calc((100vh - 220px) * 9 / 19), 400px); }
.vmodal__nav, .vmodal__close { width: 48px; height: 48px; border-radius: 50%; border: 1.5px solid var(--on-dark-line); background: rgba(243, 245, 236, 0.08); color: var(--on-dark); cursor: pointer; display: grid; place-items: center; flex: none; }
.vmodal__nav:hover, .vmodal__close:hover { background: var(--lime); color: var(--forest); border-color: var(--lime); }
.vmodal__nav svg, .vmodal__close svg { width: 22px; height: 22px; }
.vmodal__close { position: absolute; top: 4px; right: 12px; }
.vmodal__meta { text-align: center; max-width: 480px; }
.vmodal__title { margin: 0 0 14px; font: 700 1.2rem/1.25 var(--f-display); }
.vmodal__actions { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; }
@media (max-width: 560px) {
  .vmodal__stage { position: relative; }
  .vmodal__nav { position: absolute; z-index: 6; top: 50%; transform: translateY(-50%); width: 40px; height: 40px; background: rgba(10, 43, 30, 0.7); }
  .vmodal__nav:first-child { left: -6px; }
  .vmodal__nav:last-child { right: -6px; }
}

/* ── Services ────────────────────────────────────────────────────────── */
.forwho { background: var(--paper-2); }
.forwho__row { display: flex; gap: 20px 32px; align-items: center; flex-wrap: wrap; }
.tags { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: 8px; }
.tags li { padding: 8px 14px; border-radius: 999px; background: var(--white); border: 1px solid var(--line); font-weight: 600; font-size: 0.92rem; }
.offers__grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px; margin-top: 36px; }
.offer { display: flex; flex-direction: column; gap: 6px; padding: clamp(24px, 3vw, 36px); background: var(--white); border: 1px solid var(--line); border-radius: 26px; scroll-margin-top: calc(var(--header-h) + 20px); }
.offer--hi { background: var(--forest); color: var(--on-dark); border-color: var(--forest); }
.offer__tag { margin: 0; font: 500 0.74rem/1.3 var(--f-mono); letter-spacing: 0.08em; text-transform: uppercase; color: var(--leaf); }
.offer--hi .offer__tag { color: var(--lime); }
.offer__name { margin: 0; font: 800 1.6rem/1.1 var(--f-display); font-variation-settings: 'wdth' 84; }
.offer__price { margin: 14px 0 0; display: flex; align-items: baseline; gap: 8px; flex-wrap: wrap; }
.offer__price small { color: var(--muted); font-size: 0.85rem; }
.offer__price strong { font: 800 2.6rem/1 var(--f-display); font-variation-settings: 'wdth' 78; font-variant-numeric: tabular-nums; }
.offer__price span { font: 500 0.9rem/1 var(--f-mono); color: var(--muted); }
.offer--hi .offer__price small, .offer--hi .offer__price span, .offer--hi .offer__unit { color: var(--on-dark-muted); }
.offer--hi .offer__price strong { color: var(--lime); }
.offer__unit { margin: 0 0 14px; color: var(--muted); font-size: 0.92rem; }
.offer .checks { margin-bottom: 24px; flex: 1; }
.offer .btn { align-self: flex-start; }
.offer--hi .btn--ghost-dark { --fg: var(--on-dark); --bd: var(--on-dark-line); }
.checks { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.checks li { display: flex; gap: 10px; align-items: flex-start; }
.checks svg { width: 20px; height: 20px; flex: none; margin-top: 2px; color: var(--leaf); }
.offer--hi .checks svg { color: var(--lime); }
.checks--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px 32px; }
.notes { list-style: none; padding: 0; margin: 24px 0 0; display: flex; flex-wrap: wrap; gap: 8px 28px; color: var(--muted); font-size: 0.92rem; }
.notes li::before { content: '* '; color: var(--sun); font-weight: 700; }
@media (max-width: 760px) { .offers__grid, .checks--2 { grid-template-columns: 1fr; } }

.steps { background: var(--white); }
.steps__list { list-style: none; margin: 36px 0 0; padding: 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; counter-reset: s; }
.step { position: relative; padding: 28px 24px 26px; border-top: 3px solid var(--forest); }
.step__n { display: block; font: 800 3.4rem/1 var(--f-display); font-variation-settings: 'wdth' 76; color: var(--lime); -webkit-text-stroke: 1.5px var(--forest); margin-bottom: 14px; }
.step h3 { margin: 0 0 8px; font: 700 1.3rem/1.2 var(--f-display); }
.step p { margin: 0; color: var(--muted); }
@media (max-width: 760px) { .steps__list { grid-template-columns: 1fr; } }
.included { margin-top: 56px; padding: clamp(24px, 3vw, 40px); background: var(--paper); border-radius: 26px; }
.included .h3 { margin-bottom: 22px; }

.strategic { background: var(--forest); color: var(--on-dark); }
.strategic .eyebrow { color: var(--sun); }
.strategic__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 5vw, 72px); align-items: center; }
.strategic__grid > div > p { color: var(--on-dark-muted); margin: 18px 0 28px; }
.convo { background: #E7ECDF; border-radius: 26px; padding: 24px; display: flex; flex-direction: column; gap: 12px; color: var(--ink); }
.convo mark { background: var(--lime); color: var(--forest); padding: 0 4px; border-radius: 4px; font-weight: 700; }
@media (max-width: 860px) { .strategic__grid { grid-template-columns: 1fr; } }
.rates .board { max-width: 760px; margin-inline: auto; }

/* ── Messages (style WhatsApp, couleurs LVP) ─────────────────────────── */
.msg { max-width: 86%; padding: 10px 14px 12px; border-radius: 16px; box-shadow: 0 1px 1px rgba(0,0,0,.08); font-size: 0.95rem; line-height: 1.45; animation: pop .25s ease both; }
.msg p { margin: 0; }
.msg small { display: block; font: 600 0.72rem/1.2 var(--f-body); margin-bottom: 4px; color: var(--leaf); }
.msg--in { align-self: flex-start; background: var(--white); border-top-left-radius: 4px; }
.msg--out { align-self: flex-end; background: #D6F0A8; border-top-right-radius: 4px; }
@keyframes pop { from { opacity: 0; transform: translateY(6px) scale(.98); } to { opacity: 1; transform: none; } }
.msg--voice { display: flex; align-items: center; gap: 10px; min-width: 210px; }
.msg--voice svg { width: 22px; height: 22px; color: var(--forest); flex: none; }
.msg--voice .wave { height: 24px; padding: 0; gap: 2px; flex: 1; color: var(--leaf); }
.msg--voice .wave i { animation: none; }
.msg--voice time { font: 500 0.72rem/1 var(--f-mono); color: var(--muted); }
.typing { display: inline-flex; gap: 4px; padding: 14px 16px; }
.typing i { width: 7px; height: 7px; border-radius: 50%; background: var(--muted); animation: blink 1s infinite; }
.typing i:nth-child(2) { animation-delay: .15s; }
.typing i:nth-child(3) { animation-delay: .3s; }
@keyframes blink { 0%, 80%, 100% { opacity: .25; } 40% { opacity: 1; } }

/* Téléphone de démo Aïcha */
.chat-phone {
  width: min(380px, 100%); margin-inline: auto; height: clamp(540px, 64vw, 640px);
  background: #090d0b; border-radius: 40px; padding: 10px;
  box-shadow: inset 0 0 0 1.5px #2b3530, inset 0 0 0 4px #121815, var(--shadow-phone);
  color: var(--ink);
}
.chat { height: 100%; border-radius: 31px; overflow: hidden; display: flex; flex-direction: column; background: #E7ECDF; }
.chat__bar { display: flex; align-items: center; gap: 10px; padding: 34px 14px 12px; background: var(--forest); color: var(--on-dark); }
.chat__avatar { width: 36px; height: 36px; border-radius: 50%; display: grid; place-items: center; background: var(--lime); color: var(--forest); font: 800 1.1rem/1 var(--f-display); flex: none; }
.chat__who { display: flex; flex-direction: column; line-height: 1.2; }
.chat__who small { color: var(--lime); font-size: 0.75rem; }
.chat__badge { margin-left: auto; font: 500 0.64rem/1 var(--f-mono); letter-spacing: 0.08em; text-transform: uppercase; padding: 5px 8px; border-radius: 999px; border: 1px solid var(--on-dark-line); color: var(--on-dark-muted); }
.chat__log { flex: 1; overflow-y: auto; padding: 16px 12px; display: flex; flex-direction: column; gap: 8px; scroll-behavior: smooth; }
.chat__chips { display: flex; gap: 8px; overflow-x: auto; padding: 10px 12px 14px; background: #F4F6EF; border-top: 1px solid var(--line); scrollbar-width: none; }
.chat__chips .chip { min-height: 38px; font-size: 0.85rem; padding: 6px 12px; }
.chat__chips .chip svg { width: 16px; height: 16px; }
.chat__chips .chip:disabled { opacity: 0.5; cursor: default; }

/* ── Aïcha / agritech ────────────────────────────────────────────────── */
.how { background: var(--white); }
.stack { background: var(--paper); }
.layers { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.layer {
  display: grid; grid-template-columns: 160px 200px 1fr; gap: 24px; align-items: center;
  padding: 22px 28px; border-radius: 20px; background: var(--white); border: 1px solid var(--line);
  margin-left: calc(var(--n, 0) * 28px);
}
.layer--0 { --n: 0; } .layer--1 { --n: 1; background: var(--forest); color: var(--on-dark); border-color: var(--forest); } .layer--2 { --n: 2; } .layer--3 { --n: 3; background: var(--lime-soft); border-color: var(--lime-soft); }
.layer__k { font: 500 0.74rem/1.2 var(--f-mono); letter-spacing: 0.1em; text-transform: uppercase; color: var(--leaf); }
.layer--1 .layer__k { color: var(--lime); }
.layer__n { font: 800 1.5rem/1.1 var(--f-display); font-variation-settings: 'wdth' 82; }
.layer__d { color: var(--muted); }
.layer--1 .layer__d { color: var(--on-dark-muted); }
@media (max-width: 860px) {
  .layer { grid-template-columns: 1fr; gap: 6px; margin-left: 0; }
}
.uses__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); gap: 16px; margin-top: 36px; }
.use { padding: 24px; border-top: 3px solid var(--lime); background: var(--white); border-radius: 0 0 18px 18px; }
.use h3 { margin: 0 0 8px; font: 700 1.2rem/1.2 var(--f-display); color: var(--forest); }
.use p { margin: 0; color: var(--muted); }
.trust { margin-top: 40px; padding: clamp(22px, 3vw, 32px); border-radius: 22px; background: var(--forest); color: var(--on-dark); display: grid; grid-template-columns: auto 1fr; gap: 12px 32px; align-items: center; }
.trust .h3 { color: var(--lime); }
.trust p { margin: 0; color: var(--on-dark-muted); }
@media (max-width: 760px) { .trust { grid-template-columns: 1fr; } }

.fda { margin-top: 16px; padding: clamp(22px, 3vw, 32px); border-radius: 22px; background: var(--white); border: 1px solid var(--line); display: flex; gap: 20px 40px; align-items: center; justify-content: space-between; flex-wrap: wrap; }
.fda > div { max-width: 70ch; }
.fda p { margin: 10px 0 0; color: var(--muted); }
.site-footer__base a { color: inherit; }

/* ── Deux espaces : code couleur, portes, accès rapides ─────────────── */
.btn--sun-solid { --bg: var(--sun); --fg: #1a0e05; }
.btn--sun-solid:hover { --bg: #ff8a45; }
.btn--sun { --bd: rgba(243, 108, 33, 0.7); }
.btn--sun:hover { --bd: var(--sun); --fg: var(--sun); }
.wave--sun { color: var(--sun); }
.nav__planteurs::before, .nav__partenaires::before { content: ''; display: inline-block; width: 8px; height: 8px; border-radius: 50%; margin-right: 7px; vertical-align: middle; }
.nav__planteurs::before { background: var(--lime); }
.nav__partenaires::before { background: var(--sun); }
.space-partenaires .nav__list a[aria-current="page"] { background: var(--sun); color: #1a0e05; }
.space-partenaires .site-header { box-shadow: inset 0 -3px 0 var(--sun); }
.space-planteurs .site-header { box-shadow: inset 0 -3px 0 var(--lime); }

.doors { background: var(--paper); }
.doors__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.door { position: relative; display: flex; flex-direction: column; gap: 12px; padding: clamp(24px, 3.5vw, 40px); border-radius: 30px; text-decoration: none; min-height: 100%; overflow: hidden; transition: transform .2s ease, box-shadow .2s ease; }
.door:hover { transform: translateY(-4px); box-shadow: 0 30px 60px -30px rgba(10, 43, 30, 0.55); }
.door--planteurs { background: var(--lime); color: var(--forest); }
.door--partenaires { background: var(--forest); color: var(--on-dark); }
.door__tag { font: 500 0.74rem/1.2 var(--f-mono); letter-spacing: 0.12em; text-transform: uppercase; }
.door--partenaires .door__tag { color: var(--sun); }
.door__title { font: 800 clamp(2rem, 2.6vw + 1rem, 3rem)/1 var(--f-display); font-variation-settings: 'wdth' 80; letter-spacing: -0.02em; }
.door__text { font-size: 1.08rem; max-width: 42ch; }
.door--partenaires .door__text { color: var(--on-dark-muted); }
.door__list { list-style: none; margin: 4px 0 0; padding: 0; display: grid; gap: 8px; font-weight: 600; }
.door__list li { display: flex; gap: 10px; align-items: center; }
.door__list svg { width: 18px; height: 18px; flex: none; }
.door--partenaires .door__list svg { color: var(--sun); }
.door__thumbs { display: flex; gap: 8px; margin-top: 8px; }
.door__thumbs img { width: 30%; aspect-ratio: 9 / 14; object-fit: cover; border-radius: 14px; border: 3px solid var(--forest); }
.door__stats { display: flex; gap: 24px; margin-top: 8px; }
.door__stats b { display: block; font: 800 2rem/1 var(--f-display); font-variation-settings: 'wdth' 78; color: var(--lime); }
.door__stats small { color: var(--on-dark-muted); }
.door__cta { margin-top: auto; padding-top: 12px; display: inline-flex; align-items: center; gap: 10px; font-weight: 700; font-size: 1.05rem; }
.door__cta svg { width: 20px; height: 20px; transition: transform .2s ease; }
.door:hover .door__cta svg { transform: translateX(4px); }
@media (max-width: 860px) { .doors__grid { grid-template-columns: 1fr; } }

.page-hero--planteurs { background-image: radial-gradient(70% 70% at 90% 10%, rgba(181, 224, 60, 0.28), transparent 70%), radial-gradient(50% 60% at 0% 100%, rgba(181, 224, 60, 0.10), transparent 70%); }
.page-hero--partenaires { background-color: var(--forest-deep); background-image: radial-gradient(60% 60% at 90% 15%, rgba(243, 108, 33, 0.22), transparent 70%); }
.page-hero--partenaires .eyebrow { color: var(--sun); }
.quick { list-style: none; margin: 8px 0 0; padding: 0; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; max-width: 900px; }
.quick__tile { display: grid; grid-template-columns: auto 1fr; grid-template-rows: auto auto; column-gap: 12px; row-gap: 2px; align-items: center; padding: 16px; border-radius: 20px; background: rgba(243, 245, 236, 0.08); border: 1.5px solid var(--on-dark-line); color: var(--on-dark); text-decoration: none; transition: background-color .15s ease, border-color .15s ease; }
.quick__tile:hover { background: rgba(181, 224, 60, 0.14); border-color: var(--lime); }
.quick__ico { grid-row: span 2; width: 46px; height: 46px; border-radius: 14px; display: grid; place-items: center; background: var(--lime); color: var(--forest); }
.quick__ico svg { width: 22px; height: 22px; }
.quick__tile strong { font: 700 1.08rem/1.2 var(--f-display); }
.quick__tile small { color: var(--on-dark-muted); font-size: 0.85rem; }
@media (max-width: 760px) { .quick { grid-template-columns: 1fr; } }

.pl-aicha { background: var(--white); scroll-margin-top: calc(var(--header-h) + 10px); }
.pl-aicha__grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: clamp(28px, 5vw, 64px); align-items: center; }
.pl-aicha__text { color: var(--muted); font-size: 1.1rem; margin: 16px 0 22px; max-width: 54ch; }
.pl-aicha .chat-phone { background: #090d0b; }
.mini-steps { list-style: none; margin: 0 0 24px; padding: 0; display: grid; gap: 14px; }
.mini-steps li { display: flex; gap: 14px; align-items: flex-start; }
.mini-steps__n { flex: none; width: 34px; height: 34px; border-radius: 50%; display: grid; place-items: center; background: var(--lime); color: var(--forest); font: 800 1rem/1 var(--f-display); }
.mini-steps strong { font: 700 1.08rem/1.25 var(--f-display); }
.mini-steps p { margin: 2px 0 0; color: var(--muted); }
@media (max-width: 900px) { .pl-aicha__grid { grid-template-columns: 1fr; } }
.cat-links { list-style: none; margin: -18px 0 8px; padding: 0; display: flex; flex-wrap: wrap; gap: 8px; }
.cat-links .chip { text-decoration: none; }
#videos, #ta-voix, #offres, #audience, #comment, #solutions { scroll-margin-top: calc(var(--header-h) + 10px); }
.pa-how { background: var(--white); }
.pa-how .step { border-top-color: var(--sun); }
.pa-how__who { margin-top: 40px; }
.pa-cta { background: var(--paper-2); }
.pa-cta__box { display: flex; justify-content: space-between; align-items: center; gap: 24px 40px; flex-wrap: wrap; padding: clamp(28px, 4vw, 48px); border-radius: 30px; background: var(--forest); color: var(--on-dark); }
.pa-cta__box p { color: var(--on-dark-muted); margin: 12px 0 0; max-width: 56ch; }
.pa-cta__actions { display: flex; flex-direction: column; align-items: flex-start; gap: 12px; }
.pa-cta__mail { color: var(--on-dark-muted); font-size: 0.9rem; }

/* ── Module « Ta voix compte » ─────────────────────────────────────── */
.hero__story { display: inline-flex; align-items: center; gap: 8px; margin-top: 18px; color: var(--lime); font-weight: 600; text-decoration: none; border-bottom: 1.5px solid transparent; }
.hero__story:hover { border-bottom-color: var(--lime); }
.hero__story svg { width: 18px; height: 18px; flex: none; }
.story { background: var(--paper); }
.story__grid { display: grid; grid-template-columns: 0.95fr 1.05fr; gap: clamp(28px, 5vw, 64px); align-items: start; }
.story__text { color: var(--muted); font-size: 1.1rem; margin: 18px 0 24px; max-width: 54ch; }
.story__types { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.story__types li { display: flex; flex-direction: column; gap: 4px; padding: 16px; border-radius: 18px; background: var(--white); border: 1px solid var(--line); border-top: 3px solid var(--sun); }
.story__types strong { font: 700 1.05rem/1.25 var(--f-display); color: var(--forest); }
.story__types span { color: var(--muted); font-size: 0.9rem; }
.story__reassure { display: flex; align-items: center; gap: 8px; margin: 20px 0 0; color: var(--leaf); font-weight: 600; font-size: 0.95rem; }
.story__reassure svg { width: 18px; height: 18px; flex: none; }
.story__form { box-shadow: 0 30px 60px -40px rgba(14, 59, 41, 0.5); }
.field--radios { border: 0; padding: 0; margin: 0; min-width: 0; }
.field--radios legend { font-weight: 600; font-size: 0.92rem; margin-bottom: 8px; padding: 0; }
.radios { display: flex; flex-wrap: wrap; gap: 8px; }
.radio { position: relative; }
.radio input { position: absolute; opacity: 0; width: 1px; height: 1px; }
.radio span { display: inline-flex; align-items: center; min-height: 42px; padding: 8px 14px; border-radius: 999px; border: 1.5px solid var(--line); background: var(--paper); font-weight: 600; font-size: 0.9rem; cursor: pointer; transition: background-color .15s ease, color .15s ease, border-color .15s ease; }
.radio input:checked + span { background: var(--forest); border-color: var(--forest); color: var(--lime); }
.radio input:focus-visible + span { outline: 3px solid var(--sun); outline-offset: 2px; }
.field--radios.is-invalid .radio span { border-color: #B3261E; }
.field input[type="file"] { padding: 10px; background: var(--paper); }
@media (max-width: 900px) { .story__grid { grid-template-columns: 1fr; } }
@media (max-width: 520px) { .story__types { grid-template-columns: 1fr; } }

/* ── Solutions ─────────────────────────────────────────────────────── */
.sol-teaser { background: var(--white); }
.sol-grid { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; }
.sol-card { height: 100%; display: flex; flex-direction: column; gap: 8px; padding: 20px 20px 18px; border-radius: 20px; background: var(--paper); border: 1px solid var(--line); text-decoration: none; color: var(--ink); transition: transform .18s ease, border-color .18s ease; }
.sol-card:hover { transform: translateY(-3px); border-color: var(--forest); }
.sol-card__tag { font: 500 0.72rem/1.3 var(--f-mono); letter-spacing: 0.06em; text-transform: uppercase; color: var(--leaf); }
.sol-card strong { font: 700 1.12rem/1.25 var(--f-display); flex: 1; }
.sol-card svg { width: 20px; height: 20px; color: var(--sun); }
@media (max-width: 900px) { .sol-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 560px) { .sol-grid { grid-template-columns: 1fr; } }
.sol-jump { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 8px; }
.sol-jump a { font-size: 0.88rem; font-weight: 600; text-decoration: none; color: var(--on-dark); padding: 7px 12px; border-radius: 999px; border: 1.5px solid var(--on-dark-line); }
.sol-jump a:hover { border-color: var(--lime); color: var(--lime); }
.sol-why { background: var(--paper-2); }
.sol-why__grid { margin: 18px 0 0; display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; }
.sol-why__grid div { display: flex; flex-direction: column-reverse; gap: 4px; border-left: 3px solid var(--forest); padding-left: 14px; }
.sol-why__grid dd { margin: 0; font: 800 2rem/1 var(--f-display); font-variation-settings: 'wdth' 80; color: var(--forest); }
.sol-why__grid dt { color: var(--muted); font-size: 0.9rem; }
@media (max-width: 800px) { .sol-why__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
.sol-list__stack { display: grid; gap: 18px; }
.sol-item { display: grid; grid-template-columns: 1.3fr 1fr; gap: 24px 48px; padding: clamp(24px, 4vw, 44px); border-radius: 28px; background: var(--white); border: 1px solid var(--line); scroll-margin-top: calc(var(--header-h) + 20px); }
.sol-item--alt { background: var(--forest); color: var(--on-dark); border-color: var(--forest); }
.sol-item--alt .eyebrow { color: var(--lime); }
.sol-item__main > p:last-child { color: var(--muted); margin: 16px 0 0; max-width: 62ch; }
.sol-item--alt .sol-item__main > p:last-child { color: var(--on-dark-muted); }
.sol-item__side { display: flex; flex-direction: column; gap: 16px; align-items: flex-start; }
.sol-item__h { margin: 0; font: 500 0.74rem/1.2 var(--f-mono); letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); }
.sol-item--alt .sol-item__h { color: var(--on-dark-muted); }
.sol-item--alt .checks svg { color: var(--lime); }
@media (max-width: 860px) { .sol-item { grid-template-columns: 1fr; } }

/* ── Contact ─────────────────────────────────────────────────────────── */
.contact__grid { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: clamp(24px, 4vw, 56px); align-items: start; }
.contact__side { display: grid; gap: 16px; }
.side-card { padding: 28px; border-radius: 24px; background: var(--white); border: 1px solid var(--line); }
.side-card p { margin: 12px 0 18px; color: var(--muted); }
.side-card a { color: var(--leaf); font-weight: 600; overflow-wrap: anywhere; }
.side-card--farmer { background: var(--lime); border-color: var(--lime); }
.side-card--farmer p { color: var(--forest); }
.side-card--farmer a.btn { color: var(--lime); }
.side-card__num { margin: 12px 0 0 !important; font: 500 0.9rem/1 var(--f-mono); }
.side-card__h { margin: 20px 0 12px; font: 500 0.74rem/1.2 var(--f-mono); letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); }
@media (max-width: 860px) { .contact__grid { grid-template-columns: 1fr; } .contact__grid .form { order: -1; } }

.form { background: var(--white); border: 1px solid var(--line); border-radius: 28px; padding: clamp(22px, 4vw, 44px); display: grid; gap: 18px; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
@media (max-width: 600px) { .form__row { grid-template-columns: 1fr; } }
.field { display: grid; gap: 6px; }
.field label { font-weight: 600; font-size: 0.92rem; }
.field input, .field select, .field textarea {
  width: 100%; min-height: 50px; padding: 12px 14px; border-radius: 12px; border: 1.5px solid var(--line); background: var(--paper);
  font: 400 1rem/1.4 var(--f-body); color: var(--ink); transition: border-color .15s ease, background-color .15s ease;
}
.field textarea { resize: vertical; min-height: 130px; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--forest); background: var(--white); box-shadow: 0 0 0 3px rgba(181, 224, 60, 0.5); }
.field.is-invalid input, .field.is-invalid select, .field.is-invalid textarea { border-color: #B3261E; }
.field__err { margin: 0; min-height: 0; font-size: 0.85rem; color: #B3261E; }
.field__err:empty { display: none; }
.field--check { grid-template-columns: auto 1fr; align-items: start; gap: 12px; }
.field--check input { width: 22px; height: 22px; min-height: 0; margin-top: 2px; accent-color: var(--forest); }
.field--check label { font-weight: 400; color: var(--muted); }
.field--check .field__err { grid-column: 2; }
.field__hint { grid-column: 2; margin: 0; font-size: 0.85rem; color: var(--muted); }
.field__hint a { color: var(--leaf); }
.prose ul { margin: 0 0 12px; padding-left: 20px; color: var(--muted); }
.prose li { margin-bottom: 6px; }
.prose strong { color: var(--ink); }
.hp { position: absolute; left: -9999px; }
.form .btn { justify-self: start; }
.form__status { margin: 0; font-weight: 600; }
.form__status.is-ok { color: var(--leaf); padding: 14px 16px; background: var(--lime-soft); border-radius: 12px; }
.form__status.is-info { color: var(--cacao); }

/* ── Texte long ──────────────────────────────────────────────────────── */
.prose { max-width: 760px; }
.prose h2 { font: 700 1.4rem/1.2 var(--f-display); margin: 36px 0 10px; color: var(--forest); }
.prose h2:first-child { margin-top: 0; }
.prose p { margin: 0 0 12px; color: var(--muted); }
.prose a { color: var(--leaf); }

.page-hero--404 { min-height: 60vh; display: flex; flex-direction: column; justify-content: center; }

/* ── Mouvement réduit ────────────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
  .wave i { transform: none; }
  .marquee { -webkit-mask-image: none; mask-image: none; }
  .marquee__track { animation: none; flex-wrap: wrap; justify-content: center; flex: 1; }
  .marquee__track[aria-hidden="true"] { display: none; }
}

/* Sujets des planteurs (espace planteurs) */
.topics__grid{list-style:none;margin:0;padding:0;display:grid;gap:14px;grid-template-columns:repeat(auto-fill,minmax(240px,1fr))}
.topic{background:#fff;border:1px solid rgba(14,59,41,.12);border-radius:18px;padding:20px;display:flex;flex-direction:column;gap:8px}
.topic h3{margin:0;font-size:1.05rem;line-height:1.3}
.topic p{margin:0;flex:1;font-size:.95rem;opacity:.85}
.topic a{display:inline-flex;align-items:center;gap:6px;font-weight:700;text-decoration:none;color:inherit}
.topic a svg{width:16px;height:16px}
.topic a:hover{text-decoration:underline}
.sol-item__more{display:inline-flex;align-items:center;gap:6px;margin-top:12px;font-weight:700;color:inherit;text-decoration:none}
.sol-item__more svg{width:16px;height:16px}
.sol-item__more:hover{text-decoration:underline}

/* ── Accueil planteurs ─────────────────────────────────────────────── */
.style { background: var(--white); }
.pillars { list-style: none; margin: 32px 0 0; padding: 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.pillar { padding: 24px; border-radius: var(--radius); background: var(--paper); border-top: 4px solid var(--lime); }
.pillar--1 { border-top-color: var(--sun); }
.pillar--2 { border-top-color: var(--leaf); }
.pillar__n { font: 600 .85rem/1 var(--f-mono); color: var(--muted); }
.pillar h3 { margin: 10px 0 6px; font: 800 1.3rem/1.2 var(--f-display); }
.pillar p { margin: 0; color: var(--muted); }
.mini-steps__title { margin: 8px 0 14px; }
.services-aicha__title { margin: clamp(48px, 7vw, 80px) 0 24px; }
.services-aicha { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.svc { padding: 22px; border-radius: var(--radius); background: var(--paper); border: 1px solid var(--line); }
.svc__ico { display: grid; place-items: center; width: 46px; height: 46px; border-radius: 14px; background: var(--forest); }
.svc__ico svg { width: 24px; height: 24px; fill: none; stroke: var(--lime); stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.svc h3, .svc h4 { margin: 14px 0 6px; font: 800 1.15rem/1.25 var(--f-display); }
.svc p { margin: 0; color: var(--muted); font-size: .98rem; }
.group-deal { margin-top: 20px; padding: clamp(22px, 3vw, 32px); border-radius: var(--radius); background: var(--forest); color: var(--on-dark); display: grid; grid-template-columns: auto 1fr auto; gap: 8px 28px; align-items: center; }
.group-deal strong { font: 800 1.35rem/1.2 var(--f-display); color: var(--lime); max-width: 16ch; }
.group-deal p { margin: 0; color: var(--on-dark-muted); }
.group-deal--pro { grid-template-columns: auto 1fr; }
.pa-svc { background: var(--white); }
.home-partner { padding-block: clamp(40px, 5vw, 64px); background: var(--paper-2); }
.home-partner__box { display: flex; flex-wrap: wrap; gap: 20px 40px; align-items: center; justify-content: space-between; }
.home-partner__box .h3 { margin: 4px 0 6px; }
.home-partner__box p { margin: 0; color: var(--muted); }
.home-partner__eyebrow { font: 600 .8rem/1.2 var(--f-mono); text-transform: uppercase; letter-spacing: .08em; color: var(--muted) !important; }
@media (max-width: 900px) {
  .pillars, .services-aicha { grid-template-columns: 1fr; }
  .group-deal, .group-deal--pro { grid-template-columns: 1fr; }
  .group-deal .btn { justify-self: start; }
}
@media (min-width: 600px) and (max-width: 900px) {
  .services-aicha { grid-template-columns: repeat(2, 1fr); }
}

/* Démo Aïcha : photo envoyée par le planteur */
.msg--photo { padding: 4px !important; max-width: 72% !important; }
.msg--photo img { display: block; width: 100%; height: auto; border-radius: 12px; }
.chip__cam { width: 16px; height: 16px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linejoin: round; vertical-align: -3px; margin-right: 4px; }

/* Carrousel du catalogue (accueil) */
.reel--carousel { grid-auto-columns: 220px; scroll-snap-type: x proximity; }
@media (max-width: 600px) { .reel--carousel { grid-auto-columns: 72%; } }
.reel-nav { display: flex; justify-content: flex-end; gap: 10px; margin-bottom: 8px; }
.reel-nav__btn { width: 46px; height: 46px; border-radius: 50%; border: 1.5px solid var(--forest); background: var(--white); color: var(--forest); display: grid; place-items: center; cursor: pointer; transition: background .2s, color .2s; }
.reel-nav__btn:hover:not(:disabled) { background: var(--forest); color: var(--lime); }
.reel-nav__btn:disabled { opacity: .35; cursor: default; }
.reel-nav__btn svg { width: 20px; height: 20px; }

/* ── Espace partenaires : deux besoins ─────────────────────────────── */
.page-hero--partenaires .hero__accent { color: var(--sun); font-size: .62em; line-height: 1.15; margin-top: .35em; }
.needs { background: var(--paper); }
.needs__grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px; margin-top: 32px; }
.need { display: flex; flex-direction: column; gap: 12px; padding: clamp(24px, 3vw, 36px); border-radius: 24px; text-decoration: none; color: var(--ink); background: var(--white); border: 1.5px solid var(--line); transition: transform .2s, box-shadow .2s; }
.need:hover { transform: translateY(-3px); box-shadow: 0 18px 40px -24px rgba(14, 59, 41, .45); }
.need--conv { background: var(--forest); color: var(--on-dark); border-color: var(--forest); }
.need__tag { font: 600 .78rem/1.2 var(--f-mono); text-transform: uppercase; letter-spacing: .08em; color: var(--sun); }
.need--conv .need__tag { color: var(--lime); }
.need__title { font: 800 clamp(1.35rem, 2.2vw, 1.75rem)/1.15 var(--f-display); }
.need__text { color: var(--muted); }
.need--conv .need__text, .need--conv .need__who { color: var(--on-dark-muted); }
.need__list { list-style: none; margin: 4px 0; padding: 0; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px 16px; }
.need__list li { display: flex; gap: 8px; align-items: flex-start; font-weight: 600; }
.need__list svg { flex: none; width: 18px; height: 18px; margin-top: 3px; color: var(--leaf); }
.need--conv .need__list svg { color: var(--lime); }
.need__who { font-size: .92rem; color: var(--muted); border-top: 1px solid var(--line); padding-top: 12px; margin-top: auto; }
.need--conv .need__who { border-top-color: var(--on-dark-line); }
.need__cta { display: inline-flex; align-items: center; gap: 8px; font-weight: 700; }
.need__cta svg { width: 18px; height: 18px; }
.audience__phone { margin: 14px 0; padding: 14px 16px; border-radius: 14px; background: var(--lime-soft); }
.audience__phone strong { font: 800 1.5rem/1 var(--f-display); margin-right: 6px; }
.audience__phone small { display: block; margin-top: 4px; color: var(--muted); }
.offers__intro { max-width: 70ch; color: var(--muted); }
.conv { background: var(--forest-deep); color: var(--on-dark); }
.conv .section-head p, .conv .fineprint { color: var(--on-dark-muted); }
.conv .eyebrow { color: var(--lime); }
.conv__steps { list-style: none; margin: 36px 0 0; padding: 0; display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; }
.conv__step { padding: 18px; border-radius: 18px; background: rgba(255, 255, 255, .06); border: 1px solid var(--on-dark-line); }
.conv__n { display: grid; place-items: center; width: 34px; height: 34px; border-radius: 50%; background: var(--lime); color: var(--forest); font: 800 1rem/1 var(--f-display); }
.conv__step h3 { margin: 12px 0 6px; font: 800 1.08rem/1.25 var(--f-display); }
.conv__step p { margin: 0; font-size: .93rem; color: var(--on-dark-muted); }
.conv__sub { margin: clamp(40px, 5vw, 56px) 0 18px; color: var(--on-dark); }
.conv__do { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.conv__do li { padding: 18px; border-radius: 18px; border-top: 3px solid var(--sun); background: rgba(255, 255, 255, .04); }
.conv__do strong { font: 800 1.1rem/1.2 var(--f-display); color: var(--lime); }
.conv__do p { margin: 8px 0 0; font-size: .93rem; color: var(--on-dark-muted); }
.conv__offers { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.conv__offers .offer:not(.offer--hi) { color: var(--ink); }
.conv__offers .offer--hi { border: 1.5px solid var(--lime); }
@media (max-width: 1100px) { .conv__steps { grid-template-columns: repeat(3, 1fr); } .conv__do { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 800px) {
  .needs__grid, .conv__offers { grid-template-columns: 1fr; }
  .conv__steps, .conv__do { grid-template-columns: 1fr; }
}
@media (max-width: 420px) { .need__list { grid-template-columns: 1fr; } }

/* Trois besoins : visibilité / sensibilisation / conversion */
.needs__grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.need--sensibilisation { background: var(--lime-soft); border-color: var(--lime); }
.need--sensibilisation .need__tag { color: var(--leaf); }
.need--sensibilisation .need__list svg { color: var(--forest); }
.need--sensibilisation .need__who { border-top-color: rgba(14, 59, 41, .18); }
.need--conversion { background: var(--forest); color: var(--on-dark); border-color: var(--forest); }
.need--conversion .need__tag { color: var(--lime); }
.need--conversion .need__text, .need--conversion .need__who { color: var(--on-dark-muted); }
.need--conversion .need__list svg { color: var(--lime); }
.need--conversion .need__who { border-top-color: var(--on-dark-line); }
.need__list { grid-template-columns: 1fr; }
.sens { background: var(--lime-soft); }
.sens .conv__step { background: var(--white); border-color: rgba(14, 59, 41, .12); }
.sens .conv__step p, .sens .conv__do p { color: var(--muted); }
.sens .conv__sub { color: var(--ink); }
.sens .conv__do li { background: var(--white); border-top-color: var(--leaf); }
.sens .conv__do strong { color: var(--forest); }
.conv__steps--4 { grid-template-columns: repeat(4, 1fr); }
.sens__cta { margin-top: 28px; }
@media (max-width: 1100px) { .needs__grid { grid-template-columns: 1fr; } .conv__steps--4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 800px) { .conv__steps--4 { grid-template-columns: 1fr; } }
