/* Le Guide du Fermier — boutique */
:root {
  --forest: #0F3D2A;
  --forest-2: #15503A;
  --forest-3: #1F6B48;
  --gold: #D9A521;
  --gold-2: #F0C55A;
  --gold-soft: #F6E7B8;
  --cream: #FBF7EE;
  --cream-2: #F3ECDC;
  --paper: #FFFDF8;
  --ink: #1B261F;
  --muted: #5D695F;
  --line: #E7DDC6;
  --red: #C23A2B;
  --radius: 18px;
  --shadow: 0 1px 2px rgba(15, 61, 42, .06), 0 12px 32px -12px rgba(15, 61, 42, .18);
  --shadow-lg: 0 30px 60px -20px rgba(15, 61, 42, .35);
  --serif: "Fraunces", Georgia, "Times New Roman", serif;
  --sans: "Manrope", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0; background: var(--cream); color: var(--ink);
  font: 400 16px/1.6 var(--sans); -webkit-font-smoothing: antialiased; overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
h1, h2, h3 { font-family: var(--serif); line-height: 1.12; margin: 0; letter-spacing: -.01em; color: var(--forest); }
h2 { font-size: clamp(28px, 4.4vw, 44px); }
p { margin: 0; }
button { font: inherit; cursor: pointer; }
.ic { width: 20px; height: 20px; flex: none; }
.wrap { width: 100%; max-width: 1180px; margin: 0 auto; padding: 0 20px; }
.wrap-narrow { max-width: 820px; }
.section { padding: 88px 0; position: relative; }
.section-head { text-align: center; max-width: 720px; margin: 0 auto 44px; }
.section-head p { color: var(--muted); margin-top: 12px; font-size: 17px; }
.eyebrow {
  display: inline-block; font-size: 12px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase;
  color: var(--forest-3); background: rgba(31, 107, 72, .09); padding: 6px 12px; border-radius: 99px; margin-bottom: 14px;
}

/* Boutons */
.btn {
  --bg: var(--forest); --fg: #fff;
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  border: 0; border-radius: 14px; padding: 14px 22px; font-weight: 800; font-size: 16px; text-decoration: none;
  background: var(--bg); color: var(--fg); transition: transform .15s ease, box-shadow .2s ease, filter .2s;
  position: relative; overflow: hidden; -webkit-tap-highlight-color: transparent;
}
.btn:hover { transform: translateY(-1px); filter: brightness(1.04); }
.btn:active { transform: translateY(1px); }
.btn:focus-visible, a:focus-visible, summary:focus-visible, input:focus-visible, select:focus-visible { outline: 3px solid var(--gold-2); outline-offset: 2px; }
.btn-gold { --bg: linear-gradient(180deg, var(--gold-2), var(--gold)); --fg: #1F1705; box-shadow: 0 10px 24px -10px rgba(217, 165, 33, .8), inset 0 1px 0 rgba(255,255,255,.5); }
.btn-forest { --bg: var(--forest); --fg: #fff; box-shadow: 0 10px 24px -12px rgba(15,61,42,.7); }
.btn-ghost { --bg: transparent; --fg: var(--ink); border: 1.5px solid var(--line); }
.btn-sm { padding: 10px 16px; font-size: 14px; border-radius: 12px; white-space: nowrap; }
.btn-lg { padding: 16px 26px; font-size: 17px; }
.btn-xl { padding: 19px 28px; font-size: 18px; border-radius: 16px; }
.btn-block { width: 100%; }
.btn .ic-arrow { transition: transform .2s; }
.btn:hover .ic-arrow { transform: translateX(3px); }
.btn-shine::after {
  content: ""; position: absolute; inset: 0; transform: translateX(-120%);
  background: linear-gradient(100deg, transparent 20%, rgba(255,255,255,.55) 50%, transparent 80%);
  animation: shine 3.6s ease-in-out infinite;
}
@keyframes shine { 0%, 60% { transform: translateX(-120%); } 100% { transform: translateX(120%); } }

/* Barre d'annonce + header */
.announce {
  background: var(--forest); color: var(--gold-soft); text-align: center; font-size: 13.5px; font-weight: 600;
  padding: 9px 16px; display: flex; gap: 10px; align-items: center; justify-content: center;
}
.announce-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--gold-2); box-shadow: 0 0 0 0 rgba(240,197,90,.7); animation: pulse 2s infinite; flex: none; }
@keyframes pulse { 70% { box-shadow: 0 0 0 9px rgba(240,197,90,0); } 100% { box-shadow: 0 0 0 0 rgba(240,197,90,0); } }
.topbar { position: sticky; top: 0; z-index: 40; background: rgba(251, 247, 238, .86); backdrop-filter: saturate(1.4) blur(14px); -webkit-backdrop-filter: saturate(1.4) blur(14px); border-bottom: 1px solid rgba(231, 221, 198, .7); }
.topbar-in { display: flex; align-items: center; justify-content: space-between; gap: 16px; height: 66px; }
.brand { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; }
.brand-mark { width: 36px; height: 36px; border-radius: 11px; display: grid; place-items: center; background: var(--forest); color: var(--gold-2); }
.brand-name { font-family: var(--serif); font-weight: 700; font-size: 19px; color: var(--forest); }
.topnav { display: none; gap: 28px; font-weight: 600; font-size: 15px; }
.topnav a { text-decoration: none; color: var(--muted); }
.topnav a:hover { color: var(--forest); }

/* Hero */
.hero { position: relative; padding: 34px 0 28px; overflow: hidden; }
.hero-glow { position: absolute; inset: -20% -10% auto; height: 520px; background: radial-gradient(60% 60% at 70% 30%, rgba(240,197,90,.28), transparent 70%), radial-gradient(50% 50% at 10% 10%, rgba(31,107,72,.12), transparent 70%); pointer-events: none; }
.hero-grid { position: relative; display: grid; gap: 22px; grid-template-areas: "top" "visual" "bottom"; }
.hero-top { grid-area: top; }
.hero-visual { grid-area: visual; margin: 0; position: relative; }
.hero-bottom { grid-area: bottom; }
.kicker { display: flex; align-items: center; gap: 12px; font-size: 12px; font-weight: 800; letter-spacing: .22em; text-transform: uppercase; color: var(--muted); margin-bottom: 14px; }
.kicker span { height: 1.5px; width: 28px; background: var(--gold); }
.hero-title { display: flex; flex-direction: column; font-weight: 800; }
.hero-title .t1 { font-size: clamp(40px, 7.5vw, 74px); color: var(--forest); line-height: 1; }
.hero-title .t2 {
  font-size: clamp(46px, 8.6vw, 86px); line-height: 1.02;
  background: linear-gradient(180deg, #E0AE35 0%, #B07A12 100%); -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero-sub { display: inline-block; margin-top: 16px; background: var(--forest); color: #fff; font-weight: 800; font-size: clamp(16px, 2.4vw, 20px); padding: 8px 18px; border-radius: 99px; }
.hero-sub b { color: var(--gold-2); }
.hero-tagline { margin-top: 16px; font-size: clamp(17px, 2.2vw, 20px); color: var(--muted); max-width: 520px; }
.proof-row { display: flex; flex-wrap: wrap; gap: 8px 18px; margin-top: 18px; font-size: 14px; font-weight: 700; color: var(--forest-2); }
.proof-row span { display: inline-flex; align-items: center; gap: 6px; }
.proof-row .ic { width: 17px; height: 17px; color: var(--gold); }
.hero-frame { border-radius: 16px; overflow: hidden; box-shadow: var(--shadow-lg); border: 4px solid #fff; }
.float-chip { position: absolute; display: none; gap: 10px; align-items: center; background: #fff; padding: 12px 16px; border-radius: 14px; box-shadow: var(--shadow); font-size: 14px; color: var(--muted); animation: float 6s ease-in-out infinite; }
.float-chip b { color: var(--forest); }
.float-chip .ic { color: var(--gold); }
.chip-a { left: -26px; bottom: -24px; }
.chip-b { right: -14px; top: -18px; animation-delay: -3s; }
@keyframes float { 50% { transform: translateY(-8px); } }

.price-block { display: flex; align-items: center; gap: 16px; margin: 4px 0 18px; }
.price-now { font-family: var(--serif); font-weight: 800; font-size: clamp(44px, 7vw, 60px); color: var(--red); line-height: 1; letter-spacing: -.02em; }
.price-now small { font-size: .42em; font-family: var(--sans); font-weight: 800; }
.price-side { display: flex; flex-direction: column; gap: 6px; align-items: flex-start; }
.price-old { color: var(--muted); text-decoration: line-through; text-decoration-color: var(--red); text-decoration-thickness: 2px; font-weight: 700; font-size: 18px; }
.badge-off { background: var(--red); color: #fff; font-weight: 800; font-size: 13px; padding: 4px 10px; border-radius: 8px; }
.hero .btn-xl { width: 100%; }
.assure { list-style: none; padding: 0; margin: 16px 0 0; display: grid; gap: 8px; font-size: 14px; font-weight: 600; color: var(--forest-2); }
.assure li { display: flex; align-items: center; gap: 8px; }
.assure .ic { width: 18px; height: 18px; color: var(--forest-3); }

.stats { list-style: none; margin: 36px 0 0; padding: 18px; display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow); }
.stats li { text-align: center; padding: 6px; }
.stats b { display: block; font-family: var(--serif); font-size: 30px; color: var(--forest); line-height: 1.1; }
.stats span { font-size: 13px; color: var(--muted); font-weight: 600; }

/* Bénéfices */
.benefits { background: linear-gradient(180deg, var(--cream) 0%, var(--paper) 100%); }
.hook { text-align: center; max-width: 820px; margin: 0 auto 44px; }
.hook-emoji { font-size: 44px; display: block; margin-bottom: 12px; }
.hook p { margin-top: 16px; font-size: 19px; color: var(--muted); }
.benefit-grid { display: grid; gap: 14px; }
.benefit { display: flex; gap: 16px; align-items: flex-start; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 22px; box-shadow: var(--shadow); transition: transform .25s ease, box-shadow .25s ease; }
.benefit:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.benefit p { font-size: 17px; }
.benefit strong { color: var(--forest); }
.b-emoji { font-size: 26px; width: 52px; height: 52px; flex: none; display: grid; place-items: center; border-radius: 14px; background: var(--cream-2); }
.benefit-gold { background: linear-gradient(135deg, #FFF8E2, #FCEBBE); border-color: #EFD58C; }
.benefit-gold .b-emoji { background: #fff; }
.cta-band { margin-top: 28px; display: flex; flex-direction: column; gap: 18px; align-items: flex-start; background: var(--forest); color: #fff; border-radius: 22px; padding: 28px; position: relative; overflow: hidden; }
.cta-band::before { content: ""; position: absolute; right: -60px; top: -60px; width: 220px; height: 220px; border-radius: 50%; background: radial-gradient(circle, rgba(240,197,90,.35), transparent 70%); }
.cta-band-price { font-size: 19px; }
.cta-band-price strong { color: var(--gold-2); }
.cta-band-go { margin-top: 6px; color: rgba(255,255,255,.8); }

/* Témoignages */
.testimonials { background: var(--cream-2); }
.rating-line { display: inline-flex; align-items: center; gap: 8px; flex-wrap: wrap; justify-content: center; }
.stars { display: inline-flex; gap: 2px; color: #D9CFB8; }
.stars .ic { width: 18px; height: 18px; }
.stars .on { color: var(--gold); }
.t-track { display: grid; grid-auto-flow: column; grid-auto-columns: min(86%, 360px); gap: 16px; overflow-x: auto; scroll-snap-type: x mandatory; padding: 4px 20px 18px; margin: 0 -20px; scrollbar-width: thin; }
.t-card { margin: 0; scroll-snap-align: start; background: #fff; border-radius: var(--radius); border: 1px solid var(--line); padding: 24px; box-shadow: var(--shadow); display: flex; flex-direction: column; gap: 14px; position: relative; }
.t-quote { position: absolute; top: 18px; right: 18px; width: 34px; height: 34px; color: var(--gold-soft); }
.t-card blockquote { margin: 0; font-size: 16.5px; line-height: 1.6; flex: 1; }
.t-author { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; font-size: 14px; }
.t-author strong { display: block; color: var(--forest); }
.t-author small { display: block; color: var(--muted); }
.t-avatar { width: 40px; height: 40px; border-radius: 50%; display: grid; place-items: center; background: var(--forest); color: var(--gold-2); font-weight: 800; font-size: 14px; flex: none; }
.t-verified { margin-left: auto; display: inline-flex; align-items: center; gap: 4px; font-size: 12px; font-weight: 700; color: var(--forest-3); background: rgba(31,107,72,.1); padding: 4px 8px; border-radius: 99px; }
.t-verified .ic { width: 14px; height: 14px; }
.t-image { padding: 12px; }
.t-zoom { border: 0; padding: 0; background: none; border-radius: 12px; overflow: hidden; cursor: zoom-in; }
.t-zoom img { width: 100%; max-height: 420px; object-fit: cover; object-position: top; }
.t-image figcaption { padding: 0 6px; font-size: 15px; }
.t-image .t-author { padding: 0 6px 6px; }

/* Élevages */
.cover-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.cover { margin: 0; position: relative; text-align: center; }
.cover img { border-radius: 10px; box-shadow: 0 10px 22px -12px rgba(15,61,42,.55); transition: transform .3s ease; aspect-ratio: 95 / 173; object-fit: cover; width: 100%; }
.cover:hover img { transform: translateY(-4px) rotate(-1deg); }
.cover figcaption { margin-top: 8px; font-size: 13px; font-weight: 700; color: var(--forest-2); line-height: 1.3; }
.cover-bonus img { outline: 3px solid var(--gold); outline-offset: 2px; }
.bonus-tag { position: absolute; top: -9px; left: 50%; transform: translateX(-50%); z-index: 2; background: linear-gradient(180deg, var(--gold-2), var(--gold)); color: #1F1705; font-size: 11px; font-weight: 800; padding: 3px 10px; border-radius: 99px; white-space: nowrap; box-shadow: 0 4px 10px -4px rgba(0,0,0,.3); }

/* Programme */
.program { background: var(--paper); }
.program-grid { display: grid; gap: 36px; }
.program-intro p { color: var(--muted); font-size: 17px; margin: 14px 0 24px; }
.program-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 12px; }
.program-list li { display: flex; gap: 14px; align-items: flex-start; padding: 16px 18px; border-radius: 16px; background: var(--cream); border: 1px solid var(--line); }
.program-list strong { display: block; color: var(--forest); font-size: 16.5px; }
.program-list span { color: var(--muted); font-size: 15px; }
.p-ic { width: 44px; height: 44px; flex: none; border-radius: 12px; display: grid; place-items: center; background: var(--forest); color: var(--gold-2); }
.p-ic .ic { width: 22px; height: 22px; }

/* Étapes */
.step-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 16px; counter-reset: s; }
.step-list li { position: relative; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 28px 24px 24px; box-shadow: var(--shadow); display: flex; flex-direction: column; gap: 8px; }
.step-list li > .ic { width: 34px; height: 34px; color: var(--forest-3); }
.step-list strong { font-size: 18px; color: var(--forest); }
.step-list span { color: var(--muted); }
.step-n { position: absolute; top: 18px; right: 20px; font-family: var(--serif); font-size: 44px; font-weight: 800; color: var(--gold-soft); line-height: 1; }

/* Offre */
.offer { background: var(--forest); color: #fff; overflow: hidden; }
.offer-bg { position: absolute; inset: 0; background: radial-gradient(50% 60% at 20% 40%, rgba(240,197,90,.22), transparent 70%), radial-gradient(40% 50% at 90% 90%, rgba(31,107,72,.8), transparent 70%); }
.offer-grid { position: relative; display: grid; gap: 30px; align-items: center; }
.offer-visual { display: flex; justify-content: center; }
.offer-visual img { width: min(62%, 300px); border-radius: 10px; box-shadow: 0 40px 70px -24px rgba(0,0,0,.65); transform: perspective(900px) rotateY(-10deg); }
.offer-card { background: var(--paper); color: var(--ink); border-radius: 24px; padding: 28px 22px; box-shadow: 0 40px 80px -30px rgba(0,0,0,.6); scroll-margin-top: 90px; }
.offer-eyebrow { font-size: 12px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; color: var(--red); }
.offer-card h2 { font-size: clamp(26px, 3.6vw, 34px); margin-top: 6px; }
.offer-sub { color: var(--muted); margin-top: 4px; }
.stock { margin-top: 18px; }
.stock-row { display: flex; justify-content: space-between; font-size: 14px; color: var(--muted); }
.stock-row b { color: var(--ink); }
.stock-bar { margin-top: 8px; height: 10px; border-radius: 99px; background: var(--cream-2); overflow: hidden; }
.stock-bar i { display: block; height: 100%; border-radius: inherit; background: linear-gradient(90deg, var(--gold-2), var(--gold)); }
.value-list { list-style: none; padding: 0; margin: 20px 0; display: grid; gap: 10px; }
.value-list li { display: flex; gap: 10px; align-items: flex-start; font-weight: 600; }
.value-list .ic { color: #fff; background: var(--forest-3); border-radius: 50%; padding: 3px; width: 22px; height: 22px; stroke-width: 3; }
.offer-price { display: flex; flex-wrap: wrap; align-items: baseline; gap: 6px 14px; padding: 18px 0; border-top: 1px dashed var(--line); }
.offer-now { font-family: var(--serif); font-size: 52px; font-weight: 800; color: var(--red); line-height: 1; }
.offer-now small { font-family: var(--sans); font-size: 18px; }
.save { width: 100%; font-size: 14px; font-weight: 700; color: var(--forest-3); }
.countdown { text-align: center; margin-bottom: 18px; }
.countdown p { font-weight: 700; font-size: 14px; margin-bottom: 8px; }
.cd { display: flex; justify-content: center; align-items: flex-start; gap: 6px; }
.cd span { display: flex; flex-direction: column; align-items: center; }
.cd b { font-family: var(--serif); font-size: 26px; background: var(--cream-2); border-radius: 10px; min-width: 54px; padding: 6px 4px; font-variant-numeric: tabular-nums; }
.cd small { font-size: 11px; color: var(--muted); margin-top: 4px; }
.cd i { font-style: normal; font-weight: 800; padding-top: 8px; }
.pay-methods { display: flex; flex-wrap: wrap; justify-content: center; gap: 6px; margin-top: 16px; }
.pm { font-size: 12px; font-weight: 800; padding: 6px 10px; border-radius: 8px; border: 1px solid var(--line); background: #fff; }
.pm-orange { color: #E86A00; } .pm-moov { color: #0057A8; } .pm-wave { color: #1AA3E0; } .pm-mtn { color: #8A6D00; background: #FFF6C7; }
.secure-note { display: flex; gap: 6px; align-items: center; justify-content: center; margin-top: 12px; font-size: 13px; color: var(--muted); }
.secure-note .ic { width: 15px; height: 15px; }

/* FAQ */
.faq-list { display: grid; gap: 12px; }
.faq-item { background: #fff; border: 1px solid var(--line); border-radius: 16px; box-shadow: var(--shadow); overflow: hidden; }
.faq-item summary { list-style: none; cursor: pointer; display: flex; justify-content: space-between; gap: 16px; align-items: center; padding: 20px 22px; font-weight: 800; font-size: 17px; color: var(--forest); }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-ic { width: 32px; height: 32px; flex: none; border-radius: 50%; display: grid; place-items: center; background: var(--cream-2); transition: transform .25s ease, background .25s; }
.faq-item[open] .faq-ic { transform: rotate(180deg); background: var(--gold-soft); }
.faq-a { padding: 0 22px 22px; color: #36433A; font-size: 16.5px; }
.faq-a strong { color: var(--ink); }
.faq-more { text-align: center; margin-top: 26px; color: var(--muted); }
.faq-more a { display: inline-flex; gap: 6px; align-items: center; font-weight: 700; color: var(--forest-3); }

/* Final */
.final { background: linear-gradient(180deg, var(--cream) 0%, var(--cream-2) 100%); padding: 88px 0 110px; text-align: center; }
.final-in { display: flex; flex-direction: column; align-items: center; gap: 20px; }
.final-script { font-family: var(--serif); font-style: italic; font-size: clamp(26px, 4vw, 38px); color: var(--gold); font-weight: 700; line-height: 1.2; transform: rotate(-2deg); }
.final h2 { max-width: 760px; }
.final-note { display: flex; flex-wrap: wrap; gap: 6px 12px; justify-content: center; align-items: center; font-size: 14px; color: var(--muted); font-weight: 600; }
.final-note .ic { width: 16px; height: 16px; }

/* Footer */
.footer { background: var(--forest); color: rgba(255,255,255,.75); padding: 36px 0 110px; font-size: 14px; }
.footer-in { display: flex; flex-direction: column; gap: 16px; align-items: center; text-align: center; }
.footer .brand-name { color: #fff; }
.footer .brand-mark { background: rgba(255,255,255,.1); }
.footer nav { display: flex; flex-wrap: wrap; gap: 8px 22px; justify-content: center; }
.footer a { text-decoration: none; }
.footer a:hover { color: var(--gold-2); }

/* Barre d'achat mobile */
.sticky-buy { position: fixed; left: 0; right: 0; bottom: 0; z-index: 50; display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 12px 16px calc(12px + env(safe-area-inset-bottom)); background: rgba(255,253,248,.96); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); border-top: 1px solid var(--line); box-shadow: 0 -10px 30px -15px rgba(15,61,42,.35); transform: translateY(110%); transition: transform .35s ease; }
.sticky-buy.show { transform: none; }
.sticky-price { display: flex; flex-direction: column; line-height: 1.15; }
.sticky-price s { color: var(--muted); font-size: 13px; text-decoration-color: var(--red); }
.sticky-price b { color: var(--red); font-size: 20px; font-family: var(--serif); }
.sticky-buy .btn { flex: 1; max-width: 230px; }

/* Checkout */
dialog { border: 0; padding: 0; color: var(--ink); }
dialog::backdrop { background: rgba(9, 28, 19, .6); backdrop-filter: blur(3px); }
.checkout { width: min(480px, 100%); max-width: 100%; max-height: 100dvh; margin: auto auto 0; border-radius: 24px 24px 0 0; background: var(--paper); }
.checkout[open] { animation: sheet .3s ease; }
@keyframes sheet { from { transform: translateY(40px); opacity: 0; } }
.co-inner { position: relative; padding: 26px 20px calc(22px + env(safe-area-inset-bottom)); display: grid; gap: 14px; }
.co-close { position: absolute; top: 12px; right: 12px; width: 38px; height: 38px; border-radius: 50%; border: 0; background: var(--cream-2); display: grid; place-items: center; color: var(--ink); }
.co-head { display: flex; gap: 14px; align-items: center; padding-right: 40px; }
.co-head img { width: 54px; border-radius: 6px; box-shadow: var(--shadow); }
.co-head h3 { font-size: 21px; }
.co-head p { font-size: 14px; color: var(--muted); }
.co-price s { color: var(--muted); margin-right: 4px; }
.co-price b { color: var(--red); font-size: 18px; }
.field { display: grid; gap: 6px; }
.field > span { font-weight: 700; font-size: 14px; }
.field small { font-weight: 500; color: var(--muted); }
.field input, .field select { width: 100%; font: inherit; font-size: 16px; padding: 14px 14px; border: 1.5px solid var(--line); border-radius: 12px; background: #fff; color: var(--ink); transition: border-color .15s, box-shadow .15s; }
.field input:focus, .field select:focus { border-color: var(--forest-3); box-shadow: 0 0 0 4px rgba(31,107,72,.12); outline: none; }
.field.invalid input { border-color: var(--red); }
.phone-row { display: grid; grid-template-columns: 118px 1fr; gap: 8px; }
.err { font-style: normal; font-size: 13px; color: var(--red); min-height: 0; }
.err:empty { display: none; }
.co-error { background: #FDECEA; color: #8E2419; padding: 12px 14px; border-radius: 12px; font-size: 14px; font-weight: 600; }
.co-note { font-size: 13px; color: var(--muted); text-align: center; }
#co-submit[disabled] { opacity: .75; cursor: wait; }
.spinner { width: 18px; height: 18px; border: 2.5px solid rgba(0,0,0,.2); border-top-color: #1F1705; border-radius: 50%; animation: spin .8s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }
.co-testi { margin: 4px 0 0; padding: 14px 16px; background: var(--cream-2); border-radius: 14px; font-size: 14px; }
.co-testi blockquote { margin: 6px 0 4px; font-style: italic; }
.co-testi figcaption { color: var(--muted); font-weight: 600; }
.co-testi .ic { width: 15px; height: 15px; }
.zoom { background: transparent; max-width: 94vw; max-height: 92vh; }
.zoom img { max-height: 88vh; border-radius: 12px; }
.zoom .co-close { background: #fff; z-index: 2; }

/* Consentement */
.consent { position: fixed; z-index: 60; left: 12px; right: 12px; bottom: 12px; background: #fff; border: 1px solid var(--line); border-radius: 16px; padding: 16px; box-shadow: var(--shadow-lg); display: grid; gap: 12px; font-size: 14px; max-width: 520px; margin-left: auto; }
.consent div { display: flex; gap: 8px; justify-content: flex-end; }
.consent a { color: var(--forest-3); }

/* Apparitions */
.js .reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; transition-delay: var(--d, 0ms); }
.js .reveal.in { opacity: 1; transform: none; }

@media (min-width: 640px) {
  .benefit-grid { grid-template-columns: repeat(2, 1fr); }
  .benefit-wide { grid-column: span 2; }
  .cover-grid { grid-template-columns: repeat(5, 1fr); }
  .stats { grid-template-columns: repeat(4, 1fr); }
  .step-list { grid-template-columns: repeat(3, 1fr); }
  .cta-band { flex-direction: row; align-items: center; justify-content: space-between; padding: 30px 36px; }
  .assure { grid-template-columns: repeat(3, auto); justify-content: start; gap: 8px 18px; }
  .checkout { margin: auto; border-radius: 24px; }
  .co-inner { padding: 30px 28px 26px; }
  .consent { left: auto; right: 20px; bottom: 20px; }
}
@media (min-width: 1000px) {
  .topnav { display: flex; }
  .hero { padding: 64px 0 40px; }
  .hero-grid { grid-template-columns: 1.02fr 1fr; grid-template-areas: "top visual" "bottom visual"; column-gap: 56px; row-gap: 26px; align-items: center; }
  .hero-top { align-self: end; }
  .hero-bottom { align-self: start; }
  .hero-frame { border-radius: 22px; border-width: 6px; transform: rotate(1.2deg); }
  .float-chip { display: flex; }
  .hero .btn-xl { width: auto; }
  .benefit-grid { grid-template-columns: repeat(3, 1fr); }
  .benefit-wide { grid-column: span 2; }
  .section { padding: 110px 0; }
  .program-grid { grid-template-columns: .9fr 1.1fr; gap: 64px; align-items: start; }
  .program-intro { position: sticky; top: 110px; }
  .program-list { grid-template-columns: 1fr 1fr; }
  .offer-grid { grid-template-columns: 1fr 1fr; gap: 60px; }
  .offer-visual img { width: min(80%, 360px); }
  .offer-card { padding: 36px 34px; }
  .t-track { grid-auto-flow: row; grid-template-columns: repeat(3, 1fr); overflow: visible; margin: 0; padding: 0; }
  .sticky-buy { display: none; }
  .footer { padding-bottom: 36px; }
  .final { padding-bottom: 88px; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
  .js .reveal { opacity: 1; transform: none; }
}

@media (max-width: 420px) {
  .brand-name { font-size: 16px; }
  .brand-mark { width: 32px; height: 32px; }
  .announce { font-size: 12.5px; }
  .topbar .btn-sm { padding: 9px 12px; font-size: 13px; }
  .btn-xl { font-size: 17px; padding: 17px 18px; }
}

/* Pages secondaires */
.page-main { padding: 48px 0 80px; min-height: 60vh; }
.page .footer { padding-bottom: 36px; }
.card { background: var(--paper); border: 1px solid var(--line); border-radius: 24px; padding: 32px 24px; box-shadow: var(--shadow); }
.status-card { text-align: center; display: flex; flex-direction: column; align-items: center; gap: 14px; }
.status-ic { width: 76px; height: 76px; border-radius: 50%; display: grid; place-items: center; }
.status-ic .ic { width: 38px; height: 38px; stroke-width: 2.4; }
.status-ok { background: rgba(31,107,72,.12); color: var(--forest-3); }
.status-wait { background: var(--gold-soft); color: #8A6400; }
.status-ko { background: #FDECEA; color: var(--red); }
.status-card h1 { font-size: clamp(28px, 5vw, 40px); }
.status-card p { color: var(--muted); font-size: 17px; max-width: 520px; }
.status-card .btn { margin-top: 6px; }
.order-meta { font-size: 14px; color: var(--muted); background: var(--cream-2); padding: 8px 14px; border-radius: 99px; }
.tips { text-align: left; width: 100%; background: var(--cream); border: 1px solid var(--line); border-radius: 16px; padding: 18px 20px; margin-top: 10px; }
.tips p { color: var(--ink); font-size: 15px; margin-top: 6px; }
.legal h1 { font-size: 36px; margin-bottom: 20px; }
.legal h2 { font-size: 22px; margin: 28px 0 8px; }
.legal p, .legal li { color: #36433A; margin-bottom: 10px; }
.form-grid { display: grid; gap: 14px; text-align: left; width: 100%; }
.field textarea { width: 100%; font: inherit; font-size: 16px; padding: 14px; border: 1.5px solid var(--line); border-radius: 12px; min-height: 130px; resize: vertical; }
.rating-input { display: flex; gap: 6px; flex-direction: row-reverse; justify-content: flex-end; }
.rating-input input { position: absolute; opacity: 0; }
.rating-input label { cursor: pointer; color: #D9CFB8; }
.rating-input label .ic { width: 34px; height: 34px; }
.rating-input input:checked ~ label, .rating-input label:hover, .rating-input label:hover ~ label { color: var(--gold); }

/* Page simple : titre → texte → témoignages → FAQ */
.wrap-read { max-width: 720px; }
.simple .topbar-in { justify-content: center; height: 60px; }
.s-hero { padding: 28px 0 8px; }
.s-title { font-size: clamp(28px, 6vw, 42px); line-height: 1.15; text-align: center; }
.s-proof { display: flex; justify-content: center; align-items: center; gap: 6px; flex-wrap: wrap; margin-top: 12px; font-size: 14px; font-weight: 700; color: var(--forest-2); }
.s-proof .ic { width: 16px; height: 16px; color: var(--gold); }
.s-banner { margin: 20px 0 0; border-radius: 16px; overflow: hidden; box-shadow: var(--shadow-lg); }
.s-buy { margin-top: 18px; display: grid; gap: 12px; }
.s-price { text-align: center; display: flex; justify-content: center; align-items: baseline; gap: 12px; }
.s-price s { color: var(--muted); font-weight: 700; font-size: 18px; text-decoration-color: var(--red); text-decoration-thickness: 2px; }
.s-price b { color: var(--red); font-family: var(--serif); font-size: 40px; line-height: 1; }
.s-copy { padding: 36px 0 12px; display: grid; gap: 16px; }
.s-copy p { font-size: 18px; line-height: 1.6; }
.s-copy strong { color: var(--red); }
.s-copy .btn { margin-top: 10px; }
.s-block { padding: 44px 0 8px; }
.s-block h2 { font-size: clamp(26px, 5vw, 34px); margin-bottom: 20px; text-align: center; }
.s-testis { display: grid; gap: 14px; }
.s-end { padding: 36px 0 64px; display: grid; gap: 12px; }
.simple .footer { padding-bottom: 110px; }
@media (min-width: 1000px) { .simple .footer { padding-bottom: 36px; } }

/* Tailles réduites (page simple) */
.simple { font-size: 15px; }
.simple .topbar-in { justify-content: space-between; height: 56px; }
.simple .brand-name { font-size: 16px; }
.simple .brand-mark { width: 30px; height: 30px; border-radius: 9px; }
.simple .brand-mark .ic { width: 17px; height: 17px; }
.s-purchases { display: inline-flex; align-items: center; gap: 6px; font-size: 13.5px; font-weight: 700; color: var(--forest); text-decoration: none; }
.s-purchases .ic { width: 17px; height: 17px; }
.simple .s-hero { padding-top: 20px; }
.simple .s-title { font-size: clamp(19px, 4.6vw, 26px); line-height: 1.3; }
.simple .s-proof { font-size: 12.5px; margin-top: 8px; }
.simple .s-proof .ic { width: 14px; height: 14px; }
.simple .s-banner { margin-top: 16px; border-radius: 12px; }
.simple .s-buy { margin-top: 14px; gap: 10px; }
.simple .s-price s { font-size: 14px; }
.simple .s-price b { font-size: 28px; }
.simple .btn-xl { font-size: 15px; padding: 13px 18px; border-radius: 12px; }
.simple .btn-xl .ic { width: 17px; height: 17px; }
.simple .secure-note { font-size: 12px; margin-top: 0; }
.simple .s-copy { padding-top: 28px; gap: 12px; }
.simple .s-copy p { font-size: 15px; line-height: 1.6; }
.simple .s-block { padding-top: 34px; }
.simple .s-block h2 { font-size: clamp(19px, 4.4vw, 24px); margin-bottom: 14px; }
.simple .t-card { padding: 16px; gap: 10px; border-radius: 14px; }
.simple .t-card blockquote { font-size: 14px; }
.simple .t-author { font-size: 12.5px; }
.simple .t-avatar { width: 32px; height: 32px; font-size: 12px; }
.simple .t-quote { width: 24px; height: 24px; }
.simple .stars .ic { width: 14px; height: 14px; }
.simple .faq-list { gap: 8px; }
.simple .faq-item { border-radius: 12px; }
.simple .faq-item summary { font-size: 14px; padding: 14px 16px; }
.simple .faq-ic { width: 26px; height: 26px; }
.simple .faq-ic .ic { width: 16px; height: 16px; }
.simple .faq-a { font-size: 14px; padding: 0 16px 16px; }
.simple .s-end { padding: 28px 0 48px; }
.simple .faq-more { font-size: 13px; margin-top: 4px; }
.simple .footer { font-size: 12.5px; }
.simple .sticky-buy { padding: 10px 14px calc(10px + env(safe-area-inset-bottom)); }
.simple .sticky-price s { font-size: 12px; }
.simple .sticky-price b { font-size: 17px; }
.simple .sticky-buy .btn { font-size: 14px; padding: 11px 14px; }
.simple .checkout .co-head h3 { font-size: 18px; }
.simple .checkout .field > span, .simple .checkout .co-note { font-size: 13px; }
.simple .checkout .field input, .simple .checkout .field select { font-size: 16px; padding: 12px; }
