/* ============================================================
   NUNDINO — landing_v2 « Atelier serein »
   Doux, aéré, rassurant. Palette vert sauge + crème + argile.
   Coins arrondis, ombres diffuses, micro-interactions tendres.
   ============================================================ */

/* ----------------------------- Tokens ----------------------------- */
:root {
  --bg:        #fbf8f2;   /* crème chaud, fond général */
  --paper:     #ffffff;   /* cartes */
  --sand:      #f4f0e7;   /* sections alternées */
  --sand-2:    #efe9dc;

  --ink:       #2d2a24;   /* texte (noir chaud, jamais pur) */
  --ink-2:     #6c6458;   /* texte secondaire */
  --line:      #ebe4d6;   /* filets très doux */

  --green:     #5d7a57;   /* primaire — sauge calme */
  --green-strong:#496b43; /* boutons / liens (contraste AA) */
  --green-tint:#e9f0e3;   /* fonds doux */
  --green-deep:#33492f;

  --clay:      #d2895f;   /* chaleur artisanale, parcimonie */
  --clay-tint: #f6e6d9;

  --bleu:      #25467f;   /* bleu France, sobre — fil tricolore */
  --bleu-tint: #e7ecf5;
  --rouge:     #cf3a2c;   /* rouge France, chaud */
  --rouge-tint:#f7e2df;

  --shadow-sm: 0 6px 18px -10px rgba(45, 42, 36, .28);
  --shadow:    0 26px 56px -30px rgba(45, 42, 36, .38);
  --shadow-soft:0 14px 40px -22px rgba(45, 42, 36, .30);

  --r-sm: 12px;
  --r:    20px;
  --r-lg: 28px;

  --maxw: 1180px;
  --pad: clamp(1.25rem, 4vw, 2.75rem);

  --f-display: "Newsreader", Georgia, serif;
  --f-body: "Mulish", system-ui, sans-serif;
}

/* ----------------------------- Reset ------------------------------ */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; animation-delay: 0s !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; transition-delay: 0s !important; }
}

body {
  font-family: var(--f-body);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.65;
  font-size: clamp(1rem, .96rem + .2vw, 1.08rem);
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul, ol { list-style: none; padding: 0; }
input, select { font: inherit; }

::selection { background: var(--green-tint); color: var(--green-deep); }
:focus-visible { outline: 3px solid var(--green); outline-offset: 3px; border-radius: 4px; }

h1, h2, h3 {
  font-family: var(--f-display);
  font-weight: 460;
  line-height: 1.1;
  letter-spacing: -.01em;
  font-optical-sizing: auto;
}
em { font-style: italic; }

/* --------------------------- Primitives --------------------------- */
.wrap {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: max(var(--pad), env(safe-area-inset-left), env(safe-area-inset-right));
}
.wrap--narrow { max-width: 780px; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--green-strong);
  background: var(--green-tint);
  padding: .4rem .85rem;
  border-radius: 999px;
}
.eyebrow--clay { color: #b5683f; background: var(--clay-tint); }
.eyebrow--fr { color: var(--bleu); background: var(--bleu-tint); }
.hero__badges { display: flex; flex-wrap: wrap; align-items: center; gap: .7rem; }

.section { padding: clamp(3.5rem, 7vw, 6.5rem) 0; }
.section--sand { background: var(--sand); }

.section-head { max-width: 44rem; margin-bottom: clamp(2.2rem, 4vw, 3.4rem); }
.section-head h2 { font-size: clamp(2rem, 1.4rem + 2.6vw, 3.2rem); margin: 1.1rem 0 1rem; }
.section-head h2 em { color: var(--green-strong); }
.section-head p { color: var(--ink-2); font-size: 1.12rem; max-width: 40rem; }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head--center p { margin-inline: auto; }

/* ----------------------------- Boutons ---------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5em;
  font-weight: 700;
  font-size: 1rem;
  padding: .9em 1.6em;
  border-radius: 999px;
  border: 1.5px solid transparent;
  transition: transform .2s cubic-bezier(.2,.7,.3,1), box-shadow .25s, background .2s, color .2s, border-color .2s;
}
.btn:active { transform: translateY(1px); }

.btn--primary {
  background: var(--green-strong);
  color: #fff;
  box-shadow: 0 12px 26px -14px rgba(73, 107, 67, .9);
}
.btn--primary:hover { background: var(--green-deep); transform: translateY(-2px); box-shadow: 0 18px 32px -14px rgba(73, 107, 67, .95); }

.btn--soft {
  background: var(--paper);
  color: var(--ink);
  border-color: var(--line);
  box-shadow: var(--shadow-sm);
}
.btn--soft:hover { border-color: var(--green); color: var(--green-strong); transform: translateY(-2px); }

.btn--lg { padding: 1.05em 1.9em; font-size: 1.05rem; }
.btn--block { display: flex; width: 100%; }

/* ------------------------------- Nav ------------------------------ */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  transition: background .3s, box-shadow .3s, backdrop-filter .3s;
}
.nav.scrolled {
  background: rgba(251, 248, 242, .82);
  backdrop-filter: blur(14px) saturate(120%);
  box-shadow: 0 1px 0 var(--line);
}
.nav__inner { display: flex; align-items: center; gap: 1.5rem; height: 78px; }
.brand { display: inline-flex; align-items: center; gap: .6rem; font-family: var(--f-display); font-size: 1.5rem; font-weight: 560; }
.brand__mark {
  display: grid; place-items: center;
  width: 38px; height: 38px;
  filter: drop-shadow(0 4px 10px rgba(150, 82, 45, .30));
}
.brand__mark img { width: 100%; height: 100%; display: block; }
.nav__links { display: flex; gap: 1.9rem; margin-left: auto; font-size: .98rem; color: var(--ink-2); }
.nav__links a { transition: color .2s; }
.nav__links a:hover { color: var(--ink); }
.nav__btn { margin-left: .25rem; }
.nav__cta { padding: .65em 1.3em; font-size: .95rem; }

.burger { display: none; flex-direction: column; gap: 5px; margin-left: auto; padding: 8px; }
.burger span { width: 24px; height: 2px; border-radius: 2px; background: var(--ink); transition: transform .25s, opacity .25s; }
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav__mobile {
  display: none; flex-direction: column;
  background: var(--paper);
  box-shadow: var(--shadow-soft);
  max-height: 0; overflow: hidden;
  transition: max-height .32s ease;
}
.nav__mobile.open { max-height: 70vh; overflow-y: auto; }
.nav__mobile a { padding: 1rem var(--pad); color: var(--ink-2); border-bottom: 1px solid var(--line); }
.nav__mobile a:active { background: var(--sand); }
.nav__mobile a.is-cta { color: var(--green-strong); font-weight: 700; }

/* ------------------------------- Héro ----------------------------- */
.hero { position: relative; overflow: hidden; padding: clamp(2.5rem, 5vw, 5rem) 0 clamp(3rem, 6vw, 5.5rem); }
/* taches organiques très douces */
.hero__blob { position: absolute; border-radius: 50%; filter: blur(60px); opacity: .5; z-index: 0; pointer-events: none; }
.hero__blob--1 { width: 460px; height: 460px; background: var(--green-tint); top: -160px; right: -120px; }
.hero__blob--2 { width: 360px; height: 360px; background: var(--clay-tint); bottom: -160px; left: -120px; opacity: .45; }

/* Filigrane animé, très léger, en haut de page */
.hero > .wrap { position: relative; z-index: 1; }
.hero__filigrane {
  position: absolute; inset: 0; z-index: 0; pointer-events: none; opacity: .07;
  background-image: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20width='96'%20height='30'%20viewBox='0%200%2096%2030'%3E%3Cpath%20d='M0%2015%20q24%20-10%2048%200%20t48%200'%20fill='none'%20stroke='%232d2a24'%20stroke-width='1.1'/%3E%3C/svg%3E");
  background-repeat: repeat;
  -webkit-mask-image: linear-gradient(180deg, #000 0%, #000 30%, transparent 78%);
  mask-image: linear-gradient(180deg, #000 0%, #000 30%, transparent 78%);
  animation: filigraneDrift 32s linear infinite;
}
@keyframes filigraneDrift { from { background-position: 0 0; } to { background-position: 96px 0; } }

.hero__title { font-size: clamp(2.7rem, 1.6rem + 4.4vw, 4.6rem); line-height: 1.05; margin: 1.3rem 0 1.3rem; }
.hero__title em { color: var(--green-strong); }
.hero__lead { color: var(--ink-2); font-size: clamp(1.08rem, 1rem + .35vw, 1.25rem); max-width: 32rem; }
.hero__actions { display: flex; flex-wrap: wrap; gap: .9rem; margin: 1.8rem 0 1.4rem; }

/* ----------------- Héro : composition centrée + vitrine ----------- */
.hero-stage { position: relative; z-index: 1; max-width: 840px; margin-inline: auto; text-align: center; }
.hero-stage .hero__title { font-size: clamp(2.7rem, 1.7rem + 4.6vw, 5.1rem); margin: 1.2rem 0 1.2rem; }
.hero-stage .hero__lead { margin: 0 auto; max-width: 38rem; }
.hero-stage .hero__actions { justify-content: center; margin: 1.9rem 0 1.5rem; }
.hero-stage__meta { display: flex; flex-direction: column; align-items: center; gap: .8rem; }
.hero-stage__note { font-size: .9rem; color: var(--ink-2); }

/* Vitrine large, posée sous le titre */
.showcase { position: relative; z-index: 1; max-width: 1000px; margin: clamp(2.5rem, 5vw, 4rem) auto 0; }
.showcase__card { background: var(--paper); border: 1px solid var(--line); border-radius: var(--r-lg); box-shadow: var(--shadow); overflow: hidden; transition: transform .5s cubic-bezier(.2,.7,.3,1); }
.showcase:hover .showcase__card { transform: translateY(-5px); }
/* Maquette fidèle de la boutique réelle (header + hero + rail + cartes) */
.shopui { --sp: #c2703f; --spd: #5e3a22; }              /* couleurs propres à la boutique démo (Atelier Claire) */
.shopui__bar { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 1rem 1.3rem; }
/* logo : image arrondie (rayon 10px), pleine hauteur */
.shopui__logo { flex: none; height: 44px; display: inline-flex; align-items: center; padding: 0 1rem; border-radius: 10px; background: linear-gradient(135deg, var(--sp), var(--spd)); color: #fff; font-family: var(--f-display); font-weight: 560; font-size: 1.05rem; letter-spacing: .01em; }
/* recherche : input rectangulaire, loupe à droite */
.shopui__search { flex: 0 1 45%; display: flex; align-items: center; gap: .6rem; height: 44px; padding: 0 .9rem; border: 1.5px solid #e2e4e9; border-radius: 10px; background: #fff; }
.shopui__search .ph { flex: 1; color: #b0b7c3; font-size: .92rem; }
.shopui__search .mag { flex: none; color: #b0b7c3; }
/* boutons compte + panier : pastilles rondes pleines */
.shopui__icons { flex: none; display: flex; align-items: center; gap: 1rem; }
.shopui__btn { width: 40px; height: 40px; border-radius: 50%; background: var(--sp); color: #fff; display: grid; place-items: center; }
.shopui__cart { position: relative; }
.shopui__count { position: absolute; top: -5px; right: -5px; min-width: 18px; height: 18px; padding: 0 4px; border-radius: 999px; background: #d62828; color: #fff; font-size: .66rem; font-weight: 700; line-height: 1; display: grid; place-items: center; border: 2px solid #fff; }

.shopui__hero { position: relative; overflow: hidden; margin: 1.1rem 1.2rem 0; border-radius: var(--r); min-height: clamp(150px, 18vw, 205px); background: linear-gradient(135deg, var(--spd), var(--sp)); display: flex; align-items: center; }
.shopui__hero::after { content: ""; position: absolute; inset: 0; background: linear-gradient(100deg, rgba(40,22,12,.72) 0%, rgba(40,22,12,.42) 48%, rgba(40,22,12,.08) 100%); }
.shopui__hcontent { position: relative; z-index: 1; color: #fff; padding: clamp(1.2rem, 3vw, 2rem); max-width: 78%; }
.shopui__htitle { display: block; font-family: var(--f-display); color: #fff; font-weight: 600; font-size: clamp(1.3rem, 1rem + 1.4vw, 2.05rem); line-height: 1.1; text-shadow: 0 2px 12px rgba(0,0,0,.25); }
.shopui__hcontent p { color: rgba(255,255,255,.92); font-size: .9rem; line-height: 1.5; margin-top: .5rem; }
.shopui__hbtn { display: inline-block; margin-top: 1.1rem; background: #fff; color: var(--spd); font-weight: 700; font-size: .82rem; padding: .58rem 1.15rem; border-radius: 999px; }

.shopui__sec { display: flex; align-items: center; gap: .65rem; padding: 1.4rem 1.3rem .3rem; }
.shopui__sbadge { width: 30px; height: 30px; border-radius: 50%; display: grid; place-items: center; color: var(--sp); background: color-mix(in srgb, var(--sp) 14%, #fff); }
.shopui__stitle { font-family: var(--f-display); font-weight: 560; font-size: 1.12rem; color: var(--ink); }

.shopui__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; padding: 1rem 1.3rem 1.4rem; }
.shopui__pcard { display: flex; flex-direction: column; background: #fff; border: 1px solid #ebebeb; border-radius: var(--r); overflow: hidden; }
.shopui__img { aspect-ratio: 1; display: grid; place-items: center; overflow: hidden; }
.shopui__illu { width: 64%; height: auto; filter: drop-shadow(0 4px 7px rgba(94, 58, 34, .18)); }
.shopui__img.a { background: linear-gradient(135deg, #e6d3bd, #d9c3a6); }
.shopui__img.b { background: linear-gradient(135deg, #d4e2cb, #bcd2af); }
.shopui__img.c { background: linear-gradient(135deg, #f0ddd0, #e7c8b3); }
.shopui__img.d { background: linear-gradient(135deg, #efe0d2, #e3c3a6); }
.shopui__pbody { flex: 1; padding: .7rem .85rem .35rem; }
.shopui__pname { display: block; font-weight: 700; font-size: .86rem; color: #2d2a24; line-height: 1.3; }
.shopui__pdesc { display: block; font-size: .72rem; color: #a0a0a0; line-height: 1.35; margin-top: .25rem; }
.shopui__pfoot { display: flex; align-items: center; justify-content: space-between; padding: .55rem .85rem; border-top: 1px solid #f2f2f2; }
.shopui__price { font-weight: 700; font-size: .92rem; color: var(--sp); }
.shopui__add { width: 31px; height: 31px; border-radius: 9px; background: var(--sp); color: #fff; display: grid; place-items: center; }

@media (max-width: 680px) {
  .shopui__grid { grid-template-columns: 1fr 1fr; }
  .shopui__search { display: none; }
}

/* ------------------------- Bandeau confiance ---------------------- */
.trust-strip { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--paper); }
.trust-strip__inner { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; padding: 1.6rem 0; }
.trust-item { display: flex; align-items: center; gap: .8rem; }
.trust-item__ic { width: 42px; height: 42px; flex: none; border-radius: 12px; background: var(--green-tint); color: var(--green-strong); display: grid; place-items: center; }
.trust-item b { display: block; font-size: .98rem; }
.trust-item span { font-size: .85rem; color: var(--ink-2); }

/* ----------------------------- Valeurs ---------------------------- */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.card {
  background: var(--paper);
  border-radius: var(--r-lg);
  border: 1px solid var(--line);
  padding: clamp(1.6rem, 3vw, 2.2rem);
  box-shadow: var(--shadow-sm);
  transition: transform .3s, box-shadow .3s;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-soft); }
.card__ic { width: 84px; height: 84px; border-radius: 24px; display: grid; place-items: center; background: var(--green-tint); color: var(--green-strong); margin-bottom: 1.3rem; }
.card--clay .card__ic { background: var(--clay-tint); color: #b5683f; }
.card h3 { font-size: 1.4rem; margin-bottom: .6rem; }
.card p { color: var(--ink-2); }

/* -------------------------- Accompagnement ------------------------ */
.accomp { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.accomp__panel {
  background: linear-gradient(160deg, var(--green-tint), var(--paper));
  border-radius: var(--r-lg);
  padding: clamp(1.8rem, 4vw, 2.8rem);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
  position: relative;
  overflow: hidden;
}
.accomp__sprout { position: absolute; right: -10px; bottom: -10px; color: var(--green); opacity: .16; width: 150px; height: 150px; }
.accomp__panel .merchant { position: relative; z-index: 1; display: block; width: 100%; max-width: 240px; height: auto; margin: 0 0 1.4rem; }
.accomp__quote { font-family: var(--f-display); font-size: clamp(1.3rem, 1.1rem + 1vw, 1.85rem); line-height: 1.35; position: relative; z-index: 1; }
.accomp__quote em { color: var(--green-strong); }
.accomp__sign { margin-top: 1.4rem; color: var(--ink-2); font-size: .95rem; }
.accomp__list { display: grid; gap: 1.3rem; }
.pledge { display: flex; gap: 1rem; align-items: flex-start; }
.pledge__ic { flex: none; width: 40px; height: 40px; border-radius: 12px; background: var(--paper); border: 1px solid var(--line); color: var(--green-strong); display: grid; place-items: center; box-shadow: var(--shadow-sm); }
.pledge h3 { font-size: 1.2rem; margin-bottom: .25rem; }
.pledge p { color: var(--ink-2); font-size: .98rem; }

/* ------------------------- Histoire / origine --------------------- */
.story { position: relative; background: var(--green-deep); color: #f3efe6; overflow: hidden; isolation: isolate; }
.story::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(58% 78% at 84% 10%, rgba(210,137,95,.22), transparent 60%),
    radial-gradient(55% 72% at 6% 94%, rgba(93,122,87,.55), transparent 62%);
}
.story__inner { display: grid; grid-template-columns: minmax(0, .85fr) minmax(0, 1.3fr); gap: clamp(2rem, 6vw, 5rem); align-items: center; }
.story__aside { position: relative; text-align: center; }
.story__amphora { width: clamp(64px, 9vw, 96px); height: auto; margin: 0 auto 1.5rem; color: var(--clay); }
.story__word { display: block; font-family: var(--f-display); font-style: italic; font-weight: 400; font-size: clamp(2.6rem, 1.8rem + 5vw, 4.6rem); line-height: 1; color: #fbf8f2; letter-spacing: -.01em; }
.story__etym { display: block; margin-top: 1rem; font-size: .95rem; letter-spacing: .01em; color: rgba(251,248,242,.72); }
.story__etym em { font-style: italic; color: rgba(251,248,242,.9); }
.story__rule { display: block; width: 64px; height: 2px; margin: 1.5rem auto 0; background: linear-gradient(90deg, transparent, rgba(251,248,242,.55), transparent); }
.story__body h2 { font-size: clamp(2rem, 1.4rem + 2.6vw, 3.1rem); margin: 1.1rem 0 1.3rem; color: #fbf8f2; }
.story__body h2 em { color: var(--clay); font-style: italic; }
.story__body p { color: rgba(243,239,230,.85); font-size: 1.08rem; margin-bottom: 1rem; max-width: 40rem; }
.story__body p b { color: #fbf8f2; font-weight: 700; }
.story__closer { border-left: 3px solid var(--clay); padding-left: 1.15rem; color: #fbf8f2 !important; font-family: var(--f-display); font-size: 1.2rem; line-height: 1.5; margin-top: 1.6rem; }
.eyebrow--light { color: #eef3ea; background: rgba(251,248,242,.14); }

@media (max-width: 760px) {
  .story__inner { grid-template-columns: 1fr; gap: 2rem; }
  .story__aside { text-align: center; }
  .story__body p { font-size: 1.04rem; }
}

/* ----------------------------- Étapes ----------------------------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; counter-reset: s; }
.step { position: relative; padding: clamp(1.5rem, 3vw, 2rem); background: var(--paper); border-radius: var(--r-lg); border: 1px solid var(--line); box-shadow: var(--shadow-sm); }
.step__num { width: 44px; height: 44px; border-radius: 50%; background: var(--green-strong); color: #fff; display: grid; place-items: center; font-family: var(--f-display); font-size: 1.3rem; margin-bottom: 1.1rem; }
.step h3 { font-size: 1.25rem; margin-bottom: .4rem; }
.step p { color: var(--ink-2); font-size: .98rem; }

/* ----------------------------- Tarifs ----------------------------- */
.plans { display: grid; grid-template-columns: 1fr 1fr; gap: 1.6rem; align-items: stretch; max-width: 900px; margin-inline: auto; }
.plan {
  position: relative;
  background: var(--paper);
  border-radius: var(--r-lg);
  border: 1px solid var(--line);
  padding: clamp(1.8rem, 3vw, 2.4rem);
  box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column;
}
.plan--featured { border-color: var(--green); box-shadow: var(--shadow-soft); }
.plan__flag { position: absolute; top: -13px; left: 50%; transform: translateX(-50%); background: var(--green-strong); color: #fff; font-size: .78rem; font-weight: 700; padding: .3rem .9rem; border-radius: 999px; white-space: nowrap; }
.plan__name { font-family: var(--f-display); font-size: 1.5rem; }
.plan__desc { color: var(--ink-2); font-size: .95rem; margin-top: .2rem; }
.plan__price { display: flex; align-items: baseline; gap: .35rem; margin: 1.3rem 0 .3rem; }
.plan__amount { font-family: var(--f-display); font-size: 3rem; line-height: 1; }
.plan__per { color: var(--ink-2); }
.plan__note { color: var(--ink-2); font-size: .92rem; margin-bottom: 0; }
.plan__note b { color: var(--green-strong); }
.plan ul { display: grid; gap: .7rem; margin: 1.4rem 0; }
.plan li { display: flex; gap: .6rem; align-items: flex-start; color: var(--ink); font-size: .97rem; }
.plan li svg { flex: none; color: var(--green-strong); margin-top: 3px; }
.plan li strong { font-weight: 700; }
.plan .btn { margin-top: auto; }
.plan__pilot { margin-top: 1rem; font-size: .85rem; color: var(--ink-2); text-align: center; }
/* Détail « ce que vous touchez » — bande récap sous les formules */
.payout {
  max-width: 900px;
  margin: 2.2rem auto 0;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-soft);
  padding: clamp(1.4rem, 3vw, 2rem);
}
.payout__calc { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 1rem 1.3rem; }
.payout__item { display: flex; flex-direction: column; align-items: center; text-align: center; }
.payout__amount { font-family: var(--f-display); font-size: 1.9rem; line-height: 1.1; color: var(--ink); font-variant-numeric: tabular-nums; }
.payout__amount--minus { color: var(--clay); }
.payout__cap { color: var(--ink-2); font-size: .8rem; margin-top: .3rem; }
.payout__op { font-family: var(--f-display); font-size: 1.5rem; color: var(--ink-2); }
.payout__item--net { background: var(--green-tint); border-radius: var(--r); padding: .8rem 1.3rem; }
.payout__item--net .payout__amount { color: var(--green-strong); font-size: 2.2rem; }
.payout__item--net .payout__cap { color: var(--green-strong); font-weight: 700; }
.payout__foot { margin-top: 1.3rem; padding-top: 1rem; border-top: 1px dashed var(--line); font-size: .85rem; color: var(--ink-2); text-align: center; }
.payout__foot b { color: var(--green-strong); }

/* ------------------------------- FAQ ------------------------------ */
.faq { max-width: 780px; margin-inline: auto; display: grid; gap: .9rem; }
.faq__item { background: var(--paper); border: 1px solid var(--line); border-radius: var(--r); box-shadow: var(--shadow-sm); overflow: hidden; }
.faq__item summary {
  list-style: none; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: 1.2rem;
  padding: 1.25rem 1.5rem;
  font-weight: 700; font-size: 1.08rem;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after { content: ""; width: 11px; height: 11px; border-right: 2.5px solid var(--green-strong); border-bottom: 2.5px solid var(--green-strong); transform: rotate(45deg); transition: transform .25s; flex: none; margin-top: -4px; }
.faq__item[open] summary::after { transform: rotate(225deg); margin-top: 2px; }
.faq__item p { padding: 0 1.5rem 1.4rem; color: var(--ink-2); }

/* --------------------------- CTA final ---------------------------- */
.final { padding: clamp(1rem, 3vw, 2rem) 0 clamp(4rem, 7vw, 6rem); }
.final__card {
  position: relative; overflow: hidden;
  background: linear-gradient(150deg, var(--green-deep), var(--green-strong));
  color: #fff;
  border-radius: var(--r-lg);
  padding: clamp(2.6rem, 6vw, 4.5rem) var(--pad);
  text-align: center;
  box-shadow: var(--shadow);
}
.final__card::before { content: ""; position: absolute; width: 320px; height: 320px; border-radius: 50%; background: rgba(255,255,255,.08); top: -120px; right: -80px; }
.final__card::after { content: ""; position: absolute; width: 240px; height: 240px; border-radius: 50%; background: rgba(255,255,255,.06); bottom: -120px; left: -60px; }
.final__card h2 { position: relative; color: #fff; font-size: clamp(2rem, 1.4rem + 3vw, 3.4rem); }
.final__card p { position: relative; color: rgba(255,255,255,.85); margin: 1rem auto 2rem; max-width: 32rem; font-size: 1.1rem; }
.final__card .btn--primary { position: relative; background: #fff; color: var(--green-deep); }
.final__card .btn--primary:hover { background: #fff; transform: translateY(-2px); }

/* ----------------------------- Footer ----------------------------- */
.footer { padding: 3rem 0 2.4rem; border-top: 1px solid var(--line); }
.footer__inner { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1.4rem; }
.footer__links { display: flex; flex-wrap: wrap; gap: 1.5rem; color: var(--ink-2); font-size: .95rem; }
.footer__links a:hover { color: var(--green-strong); }
.footer__meta { display: flex; flex-wrap: wrap; gap: 1rem; align-items: center; justify-content: space-between; margin-top: 1.8rem; padding-top: 1.5rem; border-top: 1px solid var(--line); color: var(--ink-2); font-size: .88rem; }

/* ----------------------------- Reveal ----------------------------- */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .6s ease, transform .6s cubic-bezier(.2,.7,.3,1); }
.reveal.in { opacity: 1; transform: none; }

/* ----------------------------- Animations ----------------------------- */
/* Entrée du hero, échelonnée au chargement */
.hero-stage > * { animation: heroRise .75s cubic-bezier(.2,.7,.3,1) both; }
.hero-stage > *:nth-child(1) { animation-delay: .05s; }
.hero-stage > *:nth-child(2) { animation-delay: .14s; }
.hero-stage > *:nth-child(3) { animation-delay: .23s; }
.hero-stage > *:nth-child(4) { animation-delay: .32s; }
.hero-stage > *:nth-child(5) { animation-delay: .41s; }
@keyframes heroRise { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: none; } }

/* Blobs du hero : dérive lente et ambiante */
.hero__blob--1 { animation: drift1 20s ease-in-out infinite; }
.hero__blob--2 { animation: drift2 26s ease-in-out infinite; }
@keyframes drift1 { 0%, 100% { transform: translate(0, 0) scale(1); } 50% { transform: translate(-26px, 22px) scale(1.08); } }
@keyframes drift2 { 0%, 100% { transform: translate(0, 0) scale(1); } 50% { transform: translate(22px, -18px) scale(1.06); } }

/* Soulignement animé des liens de nav */
.nav__links a { position: relative; }
.nav__links a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -5px; height: 2px;
  background: var(--green-strong); border-radius: 2px;
  transform: scaleX(0); transform-origin: left;
  transition: transform .28s cubic-bezier(.2,.7,.3,1);
}
.nav__links a:hover::after { transform: scaleX(1); }

/* Cartes tarif : lift au survol (comme les autres cartes) */
.plan { transition: transform .3s cubic-bezier(.2,.7,.3,1), box-shadow .3s; }
.plan:hover { transform: translateY(-5px); box-shadow: var(--shadow-soft); }

/* Comparatif : surbrillance de ligne au survol */
.ctable tbody tr { transition: background .2s; }
.ctable tbody tr:hover td, .ctable tbody tr:hover th { background: rgba(93, 122, 87, .05); }
.ctable tbody tr:hover .col-us { background: var(--green-tint); }

/* Ouverture FAQ en fondu doux */
.faq__item[open] p { animation: faqIn .35s ease both; }
@keyframes faqIn { from { opacity: 0; transform: translateY(-6px); } to { opacity: 1; transform: none; } }

/* Équation « ce que vous touchez » : pop-in en cascade quand la carte se révèle */
.payout.in .payout__calc > * { animation: popIn .55s cubic-bezier(.2,.7,.3,1) both; }
.payout.in .payout__calc > *:nth-child(1) { animation-delay: .06s; }
.payout.in .payout__calc > *:nth-child(2) { animation-delay: .12s; }
.payout.in .payout__calc > *:nth-child(3) { animation-delay: .18s; }
.payout.in .payout__calc > *:nth-child(4) { animation-delay: .24s; }
.payout.in .payout__calc > *:nth-child(5) { animation-delay: .30s; }
.payout.in .payout__calc > *:nth-child(6) { animation-delay: .36s; }
.payout.in .payout__calc > *:nth-child(7) { animation-delay: .46s; }
@keyframes popIn { from { opacity: 0; transform: translateY(10px) scale(.96); } to { opacity: 1; transform: none; } }

/* Mini-illustrations animées (cartes atouts) */
.card__ic .illu { width: 56px; height: 56px; animation: illuFloat 5s ease-in-out infinite; }
.illu-beat, .illu-bob, .illu-spark, .illu-ring, .illu-bolt, .illu-speed { transform-box: fill-box; transform-origin: center; }
@keyframes illuFloat { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-4px); } }
@keyframes illuBeat { 0%, 100% { transform: scale(1); } 12% { transform: scale(1.32); } 24% { transform: scale(1); } 36% { transform: scale(1.18); } 50% { transform: scale(1); } }
.illu-beat { animation: illuBeat 2.4s ease-in-out infinite; }
@keyframes illuBob { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-4px); } }
.illu-bob { animation: illuBob 2.8s ease-in-out infinite; }
@keyframes illuTwinkle { 0%, 100% { transform: scale(.5) rotate(0deg); opacity: .4; } 50% { transform: scale(1.1) rotate(30deg); opacity: 1; } }
.illu-spark { animation: illuTwinkle 2.2s ease-in-out infinite; }
@keyframes illuSpin { to { transform: rotate(360deg); } }
.illu-ring { animation: illuSpin 9s linear infinite; }
@keyframes illuBolt { 0%, 100% { transform: scale(1) rotate(0deg); } 50% { transform: scale(1.16) rotate(-4deg); } }
.illu-bolt { animation: illuBolt 1.8s ease-in-out infinite; }
@keyframes illuSpeed { 0% { transform: translateX(0); opacity: 1; } 60% { opacity: .2; } 100% { transform: translateX(6px); opacity: 1; } }
.illu-speed { animation: illuSpeed 1.4s ease-in-out infinite; }

/* Commerçant animé (section accompagnement) */
.merchant-body, .merchant-wave, .merchant-plant, .merchant-sign { transform-box: fill-box; }
.merchant-body { transform-origin: center; animation: mBob 4s ease-in-out infinite; }
@keyframes mBob { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-3px); } }
.merchant-wave { transform-origin: bottom center; animation: mWave 2.1s ease-in-out infinite; }
@keyframes mWave { 0%, 100% { transform: rotate(-9deg); } 50% { transform: rotate(14deg); } }
.merchant-plant { transform-origin: bottom center; animation: mSway 3.6s ease-in-out infinite; }
@keyframes mSway { 0%, 100% { transform: rotate(-4deg); } 50% { transform: rotate(4deg); } }
.merchant-sign { transform-origin: top center; animation: mSwing 3s ease-in-out infinite; }
@keyframes mSwing { 0%, 100% { transform: rotate(-5deg); } 50% { transform: rotate(5deg); } }

/* --------------------------- Comparatif --------------------------- */
.compare__wrap { max-width: 880px; margin-inline: auto; background: var(--paper); border: 1px solid var(--line); border-radius: var(--r-lg); box-shadow: var(--shadow-soft); }
.compare__scroll { overflow-x: auto; border-radius: var(--r-lg); }
.ctable { width: 100%; border-collapse: collapse; min-width: 580px; table-layout: fixed; }
.ctable col.ctable__feature { width: 37%; }
.ctable th, .ctable td { padding: 1rem 1.1rem; text-align: center; border-bottom: 1px solid var(--line); font-size: .96rem; vertical-align: middle; }
.ctable thead th:first-child, .ctable tbody th { text-align: left; }
.ctable thead th { font-family: var(--f-display); font-weight: 540; font-size: 1.1rem; color: var(--ink); }
.ctable thead th:first-child { font-family: var(--f-body); font-size: .8rem; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; color: var(--ink-2); }
.ctable tbody th { font-weight: 700; color: var(--ink); }
.ctable td { color: var(--ink-2); }
.ctable td b { color: var(--ink); }
.ctable td .note { display: block; color: var(--ink-2); opacity: .85; font-size: .78rem; margin-top: .15rem; }
.ctable .col-us { background: var(--green-tint); }
.ctable thead .col-us { border-top: 3px solid var(--green); }
.ctable thead .col-us span { display: inline-flex; align-items: center; justify-content: center; gap: .45rem; color: var(--green-deep); }
.ctable tr:last-child th, .ctable tr:last-child td { border-bottom: none; }
.ctable .yes { display: inline-flex; align-items: center; gap: .4rem; color: var(--green-strong); font-weight: 700; }
.ctable .no { display: inline-flex; align-items: center; gap: .4rem; color: var(--ink-2); opacity: .65; }
.compare__fine { text-align: center; color: var(--ink-2); font-size: .82rem; margin-top: 1.1rem; }

/* ===================== Tricolore / France ========================= */

/* Cocarde — symbole artisanal français */
.cocarde { display: block; flex: none; filter: drop-shadow(0 3px 8px rgba(45,42,36,.22)); }

/* Petit liseré tricolore décoratif (sous un titre, etc.) */
.tricolore-rule { width: 88px; height: 5px; border-radius: 3px; background: linear-gradient(90deg, var(--bleu) 0 33.34%, #fbf8f2 33.34% 66.67%, var(--rouge) 66.67% 100%); box-shadow: inset 0 0 0 1px var(--line); }

/* Badge "conçu en France" (héro, etc.) */
.fr-badge { display: inline-flex; align-items: center; gap: .6rem; background: var(--paper); border: 1px solid var(--line); border-radius: 999px; padding: .4rem .9rem .4rem .45rem; font-size: .9rem; font-weight: 600; box-shadow: var(--shadow-sm); }
.fr-badge .cocarde { width: 26px; height: 26px; }
.fr-badge b { color: var(--bleu); }

/* Section France — pleins feux sur le bleu-blanc-rouge */
.france__card {
  position: relative; overflow: hidden;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-soft);
  padding: clamp(2.4rem, 5vw, 3.6rem) var(--pad);
  text-align: center;
  max-width: 880px; margin-inline: auto;
}
.france__card::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 6px; background: linear-gradient(90deg, var(--bleu) 0 33.34%, #fff 33.34% 66.67%, var(--rouge) 66.67% 100%); }
.france__cocarde { width: 64px; height: 64px; margin: 0 auto 1.3rem; }
.france__card h2 { font-size: clamp(1.9rem, 1.4rem + 2.2vw, 2.9rem); }
.france__card h2 em { color: var(--bleu); font-style: normal; }
.france__card > p { color: var(--ink-2); max-width: 38rem; margin: 1rem auto 0; font-size: 1.1rem; }
.france__rule { margin: 1.4rem auto 0; }
.france__points { display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem 2.4rem; margin-top: 2rem; }
.france__point { display: inline-flex; align-items: center; gap: .55rem; font-weight: 600; font-size: .98rem; }
.france__point .cocarde { width: 22px; height: 22px; }

/* Item "France" du bandeau confiance : fond tricolore doux */
.trust-item__ic--fr { background: var(--bleu-tint); }

/* =========================== creer.html ============================ */
.signup-page { background: var(--bg); }
.signup { padding: clamp(2rem, 5vw, 3.5rem) 0 clamp(3rem, 6vw, 5rem); }
.signup__inner { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(2rem, 5vw, 4rem); align-items: start; }
.signup__back { margin-left: auto; color: var(--ink-2); font-size: .95rem; }
.signup__back:hover { color: var(--green-strong); }
.signup__title { font-size: clamp(2.1rem, 1.5rem + 2.6vw, 3.2rem); margin: 1rem 0 .8rem; }
.signup__title em { color: var(--green-strong); }
.signup__lead { color: var(--ink-2); max-width: 32rem; margin-bottom: 2rem; font-size: 1.08rem; }

.signup__form { display: grid; gap: 1.2rem; }
.field { display: grid; gap: .45rem; }
.field label { font-weight: 700; font-size: .95rem; }
.field__opt { color: var(--ink-2); font-weight: 400; }
.field input, .field select {
  width: 100%; padding: .85em 1em;
  background: var(--paper);
  border: 1.5px solid var(--line);
  border-radius: var(--r-sm);
  color: var(--ink);
  transition: border-color .2s, box-shadow .2s;
}
.field input:focus, .field select:focus { outline: none; border-color: var(--green); box-shadow: 0 0 0 4px var(--green-tint); }
.field select {
  appearance: none; -webkit-appearance: none; -moz-appearance: none;
  padding-right: 2.8em; cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M6 9l6 6 6-6' stroke='%236c6458' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1em center;
  background-size: 16px;
}
.field__slug { display: flex; border: 1.5px solid var(--line); border-radius: var(--r-sm); overflow: hidden; transition: border-color .2s, box-shadow .2s; }
.field__slug:focus-within { border-color: var(--green); box-shadow: 0 0 0 4px var(--green-tint); }
.field__slug input { border: none; border-radius: 0; }
.field__slug input:focus { box-shadow: none; }
.field__suffix { display: flex; align-items: center; padding: 0 1em; background: var(--sand); color: var(--ink-2); font-size: .92rem; white-space: nowrap; }
.field__hint { font-size: .85rem; color: var(--ink-2); }
.field__hint--ok { color: var(--green-strong); font-weight: 700; }
.field__hint--err { color: #b5683f; font-weight: 700; }
.field__hint--checking { color: var(--ink-2); }

.signup__error { font-size: .92rem; color: #9a4a26; background: var(--clay-tint); padding: .8em 1em; border-radius: var(--r-sm); }
.signup__legal { font-size: .82rem; color: var(--ink-2); }
.signup__legal a { color: var(--green-strong); text-decoration: underline; text-underline-offset: 2px; }

.signup__aside { background: var(--paper); border: 1px solid var(--line); border-radius: var(--r-lg); padding: clamp(1.6rem, 3vw, 2.2rem); box-shadow: var(--shadow-soft); position: sticky; top: 96px; }
.signup__pv { display: flex; align-items: center; gap: .7rem; padding-bottom: 1.2rem; border-bottom: 1px solid var(--line); }
.signup__pv-logo { width: 44px; height: 44px; border-radius: 50%; background: var(--green); color: #fff; display: grid; place-items: center; font-family: var(--f-display); font-size: 1.3rem; }
.signup__addr { font-family: var(--f-display); font-size: 1.2rem; word-break: break-word; }
.signup__addr .slug { color: var(--green-strong); }
.signup__addr small { display: block; font-family: var(--f-body); font-size: .8rem; color: var(--ink-2); }
.signup__checks { display: grid; gap: .8rem; margin-top: 1.4rem; }
.signup__checks li { display: flex; gap: .6rem; align-items: flex-start; font-size: .96rem; }
.signup__checks li svg { flex: none; color: var(--green-strong); margin-top: 3px; }

.signup__success { background: var(--green-tint); border: 1px solid var(--line); border-radius: var(--r-lg); padding: clamp(1.8rem, 4vw, 2.6rem); box-shadow: var(--shadow-soft); text-align: center; }
.signup__success-icon { font-size: 2.6rem; margin-bottom: .6rem; }
.signup__success h2 { font-size: 1.8rem; margin-bottom: .6rem; }
.signup__success p { color: var(--ink-2); }
.signup__success-hint { font-size: .85rem; margin-top: 1rem; }

/* ----------------------------- Pages légales ----------------------------- */
.legal { padding: clamp(2rem, 6vw, 4rem) 0; }
.legal__wrap { max-width: 760px; margin-inline: auto; }
.legal h1 { font-family: var(--f-display); font-weight: 500; font-size: clamp(2rem, 5vw, 2.8rem); line-height: 1.1; margin-top: .6rem; }
.legal__updated { color: var(--ink-2); font-size: .88rem; margin-top: .7rem; }
.legal__card { background: var(--paper); border: 1px solid var(--line); border-radius: var(--r-lg); box-shadow: var(--shadow-soft); padding: clamp(1.6rem, 4vw, 2.6rem); margin-top: 1.6rem; }
.legal__card h2 { font-family: var(--f-display); font-weight: 540; font-size: 1.35rem; color: var(--ink); margin-top: 2rem; }
.legal__card h2:first-child { margin-top: 0; }
.legal__card h3 { font-size: 1.02rem; color: var(--ink); margin-top: 1.3rem; }
.legal__card p { color: var(--ink-2); font-size: .97rem; margin-top: .7rem; }
.legal__card ul { margin: .7rem 0 .2rem; padding-left: 1.25rem; display: grid; gap: .45rem; }
.legal__card li { color: var(--ink-2); font-size: .97rem; list-style: disc; }
.legal__card a { color: var(--green-strong); }
.legal__card strong { color: var(--ink); }
.legal__card table { width: 100%; border-collapse: collapse; margin-top: .9rem; font-size: .92rem; }
.legal__card th, .legal__card td { text-align: left; padding: .6rem .7rem; border-bottom: 1px solid var(--line); vertical-align: top; color: var(--ink-2); }
.legal__card th { color: var(--ink); font-weight: 700; }

/* --------------------------- Responsive --------------------------- */
@media (max-width: 920px) {
  .accomp { grid-template-columns: 1fr; }
  .cards, .steps { grid-template-columns: 1fr; }
  .trust-strip__inner { grid-template-columns: 1fr 1fr; }
  .signup__inner { grid-template-columns: 1fr; }
  .signup__aside { position: static; order: -1; }
}
@media (max-width: 760px) {
  .nav__links, .nav__btn { display: none; }
  .burger { display: flex; }
  .nav__mobile { display: flex; }
  .plans { grid-template-columns: 1fr; }

  /* Barre plus compacte + logo réduit → plus de contenu visible */
  .nav__inner { height: 62px; gap: 1rem; }
  .brand { font-size: 1.3rem; }
  .brand__mark { width: 32px; height: 32px; }

  /* Footer : empilé et aéré, zones tactiles confortables */
  .footer__inner { flex-direction: column; align-items: flex-start; gap: 1.1rem; }
  .footer__links { gap: .4rem 1.4rem; }
  .footer__links a { padding: .35rem 0; }
  .footer__meta { flex-direction: column; align-items: flex-start; gap: .6rem; }
}
@media (max-width: 480px) {
  .trust-strip__inner { grid-template-columns: 1fr; }
  .hero__actions .btn { width: 100%; }

  /* Boutons pleine largeur = plus faciles à toucher */
  .hero-stage .hero__actions .btn { width: 100%; }

  /* Tableaux des pages légales : moins de padding, pas de débordement */
  .legal__card table { font-size: .86rem; }
  .legal__card th, .legal__card td { padding: .5rem .5rem; }

  /* Sections France : points empilés à gauche */
  .france__points { justify-content: flex-start; gap: .7rem 1.4rem; }
}

/* Petits écrans : titres qui tiennent dans la largeur, respiration ajustée */
@media (max-width: 640px) {
  .hero__title, .hero-stage .hero__title { font-size: clamp(2.05rem, 8.2vw, 2.9rem); line-height: 1.08; }
  .section-head h2 { font-size: clamp(1.6rem, 6.5vw, 2.25rem); }
  .final__card h2 { font-size: clamp(1.75rem, 7vw, 2.4rem); }
  .france__card h2 { font-size: clamp(1.6rem, 6.5vw, 2.25rem); }
  h1, h2, h3 { overflow-wrap: break-word; }
  .section { padding: clamp(2.6rem, 9vw, 3.8rem) 0; }
  .section-head p, .hero__lead { font-size: 1.05rem; }
  .payout__amount { font-size: 1.55rem; }
  .payout__item--net .payout__amount { font-size: 1.85rem; }
  .payout__calc { flex-direction: column; gap: .55rem; }
  .payout__item--net { padding: .8rem 1rem; width: 100%; margin-top: .55rem; }
}
@media (max-width: 380px) {
  .hero__title, .hero-stage .hero__title { font-size: 1.9rem; }
  .section-head h2 { font-size: 1.5rem; }
}
