/* =========================================================
   Vivre avec le TDAH — Thème sombre apaisant
   Pensé pour les sensibilités sensorielles : pas de blanc pur,
   pas de contrastes agressifs, lumière chaude.
   ========================================================= */

:root {
  /* Tons sombres chauds (base) */
  --bg-0: #060a08;       /* fond le plus profond */
  --bg-1: #0a100d;       /* fond principal */
  --bg-2: #111915;       /* surfaces (cartes) */
  --bg-3: #18211c;       /* surfaces élevées */
  --bg-4: #1f2b24;       /* hover / borders fortes */

  /* Verts sourdis */
  --green-900: #08100b;
  --green-800: #0f1a13;
  --green-700: #1a3025;
  --green-600: #2f5a44;
  --green-500: #4a7d5e;
  --green-400: #6fa080;
  --green-300: #94c0a3;
  --green-100: #1c2a22;
  --green-50:  #141e18;

  /* Accents or sourdis (tournesol pâle, jamais éclatant) */
  --gold-600: #a37e1a;
  --gold-500: #c89c2a;
  --gold-400: #d8b248;
  --gold-300: #e4c773;
  --gold-200: #f0dca0;
  --gold-100: #1a1812;

  /* Accents secondaires sombres */
  --rose-500: #b07079;
  --rose-100: #1a1316;
  --blue-600: #6f8cae;
  --blue-100: #121a22;

  /* Textes (jamais de blanc pur) */
  --text-1: #e3dfd2;     /* off-white chaud */
  --text-2: #c4c1b3;
  --text-3: #9a988b;
  --text-4: #75736a;
  --text-5: #5a594f;

  /* Bordures discrètes */
  --border-1: rgba(227,223,210,0.04);
  --border-2: rgba(227,223,210,0.07);
  --border-3: rgba(227,223,210,0.10);

  /* Avertissements */
  --warn:     #c79064;
  --warn-bg:  #2c211a;

  /* Typo */
  --font-sans: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  --font-serif: 'Fraunces', Georgia, 'Times New Roman', serif;

  --max: 1200px;
  --max-narrow: 820px;
  --radius-sm: 8px;
  --radius: 14px;
  --radius-lg: 22px;
  --radius-xl: 32px;

  /* Ombres adaptées au sombre (peu intenses) */
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.3);
  --shadow-md: 0 4px 18px rgba(0,0,0,0.35);
  --shadow-lg: 0 18px 50px rgba(0,0,0,0.45);
  --shadow-xl: 0 30px 90px rgba(0,0,0,0.55);
  --shadow-2xl: 0 50px 140px rgba(0,0,0,0.65);

  --ease: cubic-bezier(.2,.7,.2,1);
  --ease-out: cubic-bezier(.16,1,.3,1);
}

*,*::before,*::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html { overflow-x: hidden; }
body {
  overflow-x: clip;
  margin: 0;
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.7;
  color: var(--text-1);
  background: var(--bg-1);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

@media (hover: hover) and (pointer: fine) {
  body.has-cursor, body.has-cursor * { cursor: none !important; }
}

img, svg { display: block; max-width: 100%; }
a { color: var(--green-300); text-decoration: none; transition: color .2s var(--ease); }
a:hover { color: var(--gold-300); }

h1, h2, h3, h4, h5 {
  font-family: var(--font-serif);
  font-weight: 400;
  letter-spacing: -0.01em;
  color: var(--text-1);
  text-wrap: balance;
  overflow-wrap: break-word;
  line-height: 1.25;
  margin: 0 0 .6em;
}
p { margin: 0 0 1em; color: var(--text-2); }
ul, ol { padding-left: 1.2em; }

::selection { background: var(--green-600); color: var(--text-1); }

.container {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 32px;
  position: relative;
}
.container-narrow { max-width: var(--max-narrow); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--green-300);
  font-weight: 500;
  margin-bottom: 16px;
}
.eyebrow::before {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--green-400);
  display: inline-block;
}
.eyebrow-light { color: var(--gold-300); }
.eyebrow-light::before { background: var(--gold-400); }

.section {
  padding: 110px 0;
  position: relative;
}
.section-sm { padding: 70px 0; }
.section-alt { background: var(--bg-2); position: relative; }
.section-cream { background: var(--bg-0); }
.section-dark { background: var(--bg-0); }
.section-green {
  background: linear-gradient(135deg, var(--green-900) 0%, #0a1410 100%);
  color: var(--text-1);
}

.section-head {
  max-width: 760px;
  margin-bottom: 56px;
}
.section-head-center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
.section-head-center .eyebrow { justify-content: center; }
.section-head h1 {
  font-size: clamp(28px, 3.5vw, 50px);
  margin-bottom: 18px;
  letter-spacing: -0.02em;
  max-width: 100%;
  padding-left: 4px;
  padding-right: 6px;
}
.section-head h2 {
  font-size: clamp(24px, 3vw, 40px);
  margin-bottom: 16px;
  font-weight: 400;
  max-width: 100%;
  padding-left: 3px;
  padding-right: 5px;
}
.section-head h2 em,
.section-head h1 em {
  font-style: italic;
  background: linear-gradient(120deg, var(--green-300), var(--gold-300));
  background-size: 200% 200%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradientShift 8s ease infinite;
  padding-right: 0.15em;
}
@keyframes gradientShift {
  0%, 100% { background-position: 0% 50%; }
  50%      { background-position: 100% 50%; }
}
.section-sub {
  color: var(--text-3);
  font-size: 18px;
  margin: 0;
  max-width: 640px;
  line-height: 1.75;
}
.section-head-center .section-sub { margin-left: auto; margin-right: auto; }

.anchor-offset { display: block; height: 0; scroll-margin-top: 90px; }

/* =========================================================
   LOADER
   ========================================================= */
.loader {
  position: fixed;
  inset: 0;
  background: var(--bg-1);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity .6s var(--ease), visibility .6s var(--ease);
}
.loader.gone { opacity: 0; visibility: hidden; }
.loader-flower {
  animation: pulseScale 1.5s ease-in-out infinite;
  filter: drop-shadow(0 4px 12px rgba(216,178,72,0.25));
  opacity: 0.85;
}
.loader-petals { transform-origin: 50px 50px; }
@keyframes spinSlow { to { transform: rotate(360deg); } }
@keyframes pulseScale {
  0%, 100% { transform: scale(1); opacity: 0.85; }
  50% { transform: scale(1.06); opacity: 1; }
}

/* =========================================================
   CURSEUR
   ========================================================= */
.cursor-dot, .cursor-ring {
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 9998;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  will-change: transform;
}
.cursor-dot {
  width: 6px; height: 6px;
  background: var(--gold-400);
  transition: transform .15s var(--ease), background .25s var(--ease), opacity .25s var(--ease);
  opacity: 0;
}
.cursor-ring {
  width: 36px; height: 36px;
  border: 1.5px solid rgba(216,178,72,0.4);
  transition: width .25s var(--ease), height .25s var(--ease),
              border-color .25s var(--ease), background .25s var(--ease),
              opacity .25s var(--ease);
  opacity: 0;
}
body.cursor-ready .cursor-dot,
body.cursor-ready .cursor-ring { opacity: 1; }
body.cursor-hover .cursor-dot { transform: translate(-50%, -50%) scale(0); }
body.cursor-hover .cursor-ring {
  width: 56px; height: 56px;
  background: rgba(216,178,72,0.10);
  border-color: var(--gold-400);
}
body.cursor-dark .cursor-dot { background: var(--gold-300, #e4c773); }
body.cursor-dark .cursor-ring { border-color: rgba(228,199,115,0.5); }
@media (hover: none), (pointer: coarse) {
  .cursor-dot, .cursor-ring { display: none; }
}

/* =========================================================
   PROGRESS BAR
   ========================================================= */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 2px;
  width: 0%;
  background: linear-gradient(90deg, var(--green-500), var(--gold-400));
  z-index: 9997;
  box-shadow: 0 0 8px rgba(216,178,72,0.3);
  transition: width .1s linear;
  opacity: 0.8;
}

/* =========================================================
   BLOBS DE FOND (très discrets)
   ========================================================= */
.bg-blobs {
  position: fixed;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
  overflow: hidden;
}
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.18;
  will-change: transform;
}
.blob-1 {
  width: 520px; height: 520px;
  background: radial-gradient(circle, rgba(216,178,72,0.6), transparent 70%);
  top: -120px; right: -120px;
  animation: blobFloat 22s ease-in-out infinite;
}
.blob-2 {
  width: 460px; height: 460px;
  background: radial-gradient(circle, rgba(74,125,94,0.7), transparent 70%);
  top: 40%; left: -180px;
  animation: blobFloat 28s ease-in-out infinite reverse;
}
.blob-3 {
  width: 380px; height: 380px;
  background: radial-gradient(circle, rgba(111,160,128,0.6), transparent 70%);
  bottom: -100px; right: 20%;
  animation: blobFloat 26s ease-in-out infinite;
  animation-delay: -10s;
}
@keyframes blobFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%      { transform: translate(60px, -40px) scale(1.1); }
  66%      { transform: translate(-40px, 50px) scale(0.95); }
}

/* =========================================================
   HEADER
   ========================================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(13,20,16,0.7);
  backdrop-filter: saturate(160%) blur(20px);
  -webkit-backdrop-filter: saturate(160%) blur(20px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s var(--ease), background .3s var(--ease);
}
.site-header.scrolled {
  background: rgba(13,20,16,0.92);
  border-bottom-color: var(--border-1);
}
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  gap: 24px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 500;
  color: var(--text-1);
  font-family: var(--font-serif);
  font-size: 18px;
  letter-spacing: -0.01em;
  transition: transform .3s var(--ease);
}
.brand:hover { color: var(--text-1); transform: translateY(-1px); }
.brand-mark {
  display: inline-flex;
  width: 36px; height: 36px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.4);
  transition: transform .5s var(--ease);
}
.brand:hover .brand-mark {
  transform: rotate(15deg) scale(1.05);
}
.primary-nav {
  display: flex;
  gap: 2px;
  align-items: center;
  flex-wrap: nowrap;
}
.primary-nav a {
  font-size: 11.5px;
  font-weight: 400;
  color: var(--text-3);
  position: relative;
  padding: 6px 3px;
  white-space: nowrap;
}
.primary-nav a::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 1.5px;
  background: linear-gradient(90deg, var(--green-400), var(--gold-400));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s var(--ease);
}
.primary-nav a:hover { color: var(--text-1); }
.primary-nav a:hover::after,
.primary-nav a.is-active::after { transform: scaleX(1); }
.primary-nav a.is-active { color: var(--text-1); }

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 18px;
  border-radius: 999px;
  background: var(--green-600);
  color: var(--text-1) !important;
  font-size: 13.5px;
  font-weight: 500;
  border: 1px solid var(--green-500);
  transition: background .25s var(--ease), transform .25s var(--ease), border-color .25s var(--ease);
}
.nav-cta::after { display: none !important; }
.nav-cta:hover {
  background: var(--green-500);
  color: var(--text-1);
  transform: translateY(-1px);
  border-color: var(--green-400);
}

.nav-toggle {
  display: none;
  background: none;
  border: 0;
  width: 44px; height: 44px;
  cursor: pointer;
  padding: 10px;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  flex-shrink: 0;
  position: relative;
  z-index: 110;
}
.nav-toggle span {
  display: block;
  width: 100%; height: 2.5px;
  background: var(--text-2);
  border-radius: 2px;
  transition: transform .3s var(--ease), opacity .3s var(--ease);
  transform-origin: center;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(8.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-8.5px) rotate(-45deg); }

/* =========================================================
   HERO
   ========================================================= */
.hero {
  position: relative;
  padding: 100px 0 130px;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 2;
}
.hero-text h1 {
  font-size: clamp(28px, 3.5vw, 50px);
  line-height: 1.12;
  margin-bottom: 26px;
  font-weight: 400;
  letter-spacing: -0.02em;
  text-wrap: balance;
  max-width: 100%;
  padding-left: 4px;
  padding-right: 6px;
}
.hero-text h1 em {
  font-style: italic;
  background: linear-gradient(120deg, var(--green-300) 0%, var(--gold-300) 50%, var(--gold-400) 100%);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradientShift 8s ease infinite;
  padding-right: 0.15em;
}

.split-text .word {
  display: inline-block;
  overflow: hidden;
  vertical-align: top;
}
.split-text.in .word {
  overflow: visible;
}
.split-text .word-inner {
  display: inline-block;
  transform: translateY(110%);
  transition: transform 1s var(--ease-out);
}
.split-text.in .word-inner { transform: translateY(0); }

.hero-text .lead {
  font-size: 19px;
  color: var(--text-2);
  max-width: 580px;
  margin-bottom: 38px;
  line-height: 1.75;
}

.hero-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 50px;
}

/* HERO PAGE INTERIEURE */
.hero-page {
  padding: 80px 0 60px;
  position: relative;
  overflow: hidden;
}
.hero-page-content {
  max-width: 820px;
  position: relative;
  z-index: 2;
}
.hero-page h1 {
  font-size: clamp(28px, 3.5vw, 50px);
  margin-bottom: 22px;
  letter-spacing: -0.02em;
  font-weight: 400;
  max-width: 100%;
  padding-left: 4px;
  padding-right: 6px;
}
.hero-page h1 em {
  font-style: italic;
  background: linear-gradient(120deg, var(--green-300) 0%, var(--gold-300) 50%, var(--gold-400) 100%);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradientShift 8s ease infinite;
  padding-right: 0.15em;
}
.hero-page .lead {
  font-size: 20px;
  color: var(--text-2);
  max-width: 720px;
  line-height: 1.75;
}

/* BREADCRUMB */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--text-3);
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.breadcrumb a {
  color: var(--text-3);
  transition: color .2s var(--ease);
}
.breadcrumb a:hover { color: var(--green-300); }
.breadcrumb .sep { color: var(--text-5); }
.breadcrumb .current { color: var(--green-300); font-weight: 500; }

/* =========================================================
   BUTTONS
   ========================================================= */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 28px;
  border-radius: 999px;
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 0.01em;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .2s var(--ease), color .2s var(--ease), box-shadow .25s var(--ease), border-color .25s var(--ease);
  overflow: hidden;
  isolation: isolate;
  font-family: var(--font-sans);
}
.btn span { position: relative; z-index: 2; }
.btn svg { position: relative; z-index: 2; transition: transform .35s var(--ease); }
.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  transition: transform .5s var(--ease);
}

.btn-primary {
  background: var(--green-600);
  color: var(--text-1);
  border-color: var(--green-500);
  box-shadow: 0 6px 18px rgba(0,0,0,0.4);
}
.btn-primary::before {
  background: linear-gradient(120deg, var(--green-700) 0%, var(--green-500) 100%);
  transform: translateX(-100%);
}
.btn-primary:hover {
  color: var(--text-1);
  transform: translateY(-2px);
  border-color: var(--green-400);
  box-shadow: 0 10px 28px rgba(0,0,0,0.55);
}
.btn-primary:hover::before { transform: translateX(0); }
.btn-primary:hover svg { transform: translateX(4px); }

.btn-ghost {
  background: transparent;
  color: var(--text-2);
  border-color: var(--border-3);
}
.btn-ghost::before {
  background: var(--green-600);
  transform: scale(0);
  border-radius: 999px;
}
.btn-ghost:hover {
  color: var(--text-1);
  border-color: var(--green-500);
  transform: translateY(-2px);
}
.btn-ghost:hover::before { transform: scale(1); }

.btn-gold {
  background: var(--gold-600);
  color: var(--text-1);
  border-color: var(--gold-500);
  box-shadow: 0 6px 18px rgba(0,0,0,0.4);
}
.btn-gold::before {
  background: linear-gradient(120deg, var(--gold-500), var(--gold-400));
  transform: translateX(-100%);
}
.btn-gold:hover {
  color: var(--bg-0);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(0,0,0,0.55);
  border-color: var(--gold-400);
}
.btn-gold:hover::before { transform: translateX(0); }

.btn-sm { padding: 10px 18px; font-size: 13.5px; }

/* =========================================================
   STATS
   ========================================================= */
.hero-points {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 600px;
}
.hero-points li {
  font-size: 13px;
  color: var(--text-3);
  padding: 22px 18px;
  background: var(--bg-2);
  border-radius: var(--radius);
  border: 1px solid var(--border-1);
  transition: transform .3s var(--ease), border-color .3s var(--ease), background .3s var(--ease);
  display: flex;
  flex-direction: column;
  gap: 4px;
  line-height: 1.4;
}
.hero-points li:hover {
  transform: translateY(-4px);
  border-color: var(--green-500);
  background: var(--bg-3);
}
.hero-points strong {
  display: block;
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: 30px;
  color: var(--gold-300);
  letter-spacing: -0.02em;
}

/* GRANDES STATS */
.big-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin: 40px 0;
}
.big-stat {
  background: var(--bg-2);
  padding: 30px 24px;
  border-radius: var(--radius);
  border: 1px solid var(--border-1);
  text-align: center;
  transition: transform .3s var(--ease), border-color .3s var(--ease), background .3s var(--ease);
}
.big-stat:hover {
  transform: translateY(-4px);
  border-color: var(--green-500);
  background: var(--bg-3);
}
.big-stat-number {
  font-family: var(--font-serif);
  font-size: 48px;
  font-weight: 400;
  background: linear-gradient(135deg, var(--green-300), var(--gold-300));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: -0.02em;
  display: block;
  margin-bottom: 6px;
  line-height: 1;
}
.big-stat-label {
  font-size: 14px;
  color: var(--text-3);
  line-height: 1.5;
}

/* =========================================================
   REVEAL ANIMATIONS
   ========================================================= */
.reveal-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .9s var(--ease-out), transform .9s var(--ease-out);
  transition-delay: var(--delay, 0.2s);
}
.reveal-up.in { opacity: 1; transform: translateY(0); }

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .9s var(--ease-out), transform .9s var(--ease-out);
}
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal-stagger > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .8s var(--ease-out), transform .8s var(--ease-out);
}
.reveal-stagger.in > * { opacity: 1; transform: translateY(0); }
.reveal-stagger.in > *:nth-child(1) { transition-delay: 0.05s; }
.reveal-stagger.in > *:nth-child(2) { transition-delay: 0.15s; }
.reveal-stagger.in > *:nth-child(3) { transition-delay: 0.25s; }
.reveal-stagger.in > *:nth-child(4) { transition-delay: 0.35s; }
.reveal-stagger.in > *:nth-child(5) { transition-delay: 0.45s; }
.reveal-stagger.in > *:nth-child(6) { transition-delay: 0.55s; }
.reveal-stagger.in > *:nth-child(7) { transition-delay: 0.65s; }
.reveal-stagger.in > *:nth-child(8) { transition-delay: 0.75s; }
.reveal-stagger.in > *:nth-child(9) { transition-delay: 0.85s; }
.reveal-stagger.in > *:nth-child(10) { transition-delay: 0.95s; }

/* =========================================================
   SUNFLOWER CARD HERO
   ========================================================= */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  perspective: 1200px;
}
.sunflower-card {
  position: relative;
  width: 100%;
  max-width: 460px;
  aspect-ratio: 1 / 1;
  border-radius: var(--radius-lg);
  background: radial-gradient(circle at 30% 20%, #2a4a35 0%, var(--green-700) 40%, var(--green-900) 100%);
  box-shadow: 0 30px 80px rgba(0,0,0,0.65), 0 0 0 1px rgba(216,178,72,0.08) inset;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 36px;
  isolation: isolate;
  transform-style: preserve-3d;
  transition: transform .6s var(--ease);
  will-change: transform;
}
.sunflower-card-shine {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at var(--mx, 50%) var(--my, 50%),
    rgba(216,178,72,0.12) 0%,
    transparent 50%
  );
  opacity: 0;
  transition: opacity .3s var(--ease);
  z-index: 3;
  pointer-events: none;
}
.sunflower-card:hover .sunflower-card-shine { opacity: 1; }
.sunflower-card::before {
  content: '';
  position: absolute;
  inset: -20%;
  background:
    radial-gradient(circle at 50% 50%, rgba(216,178,72,0.04) 0 40%, transparent 60%),
    repeating-linear-gradient(45deg, transparent 0 20px, rgba(216,178,72,0.02) 20px 21px);
  z-index: 0;
}
.sunflower-card::after {
  content: '';
  position: absolute;
  width: 200%; height: 80px;
  top: 30%; left: -50%;
  background: linear-gradient(90deg, transparent, rgba(216,178,72,0.06), transparent);
  transform: rotate(-25deg);
  animation: shimmer 8s ease-in-out infinite;
  z-index: 1;
}
@keyframes shimmer {
  0%, 100% { transform: translateX(-30%) rotate(-25deg); }
  50%      { transform: translateX(30%) rotate(-25deg); }
}
.sunflower-card-inner {
  position: relative;
  width: 100%; height: 100%;
  z-index: 2;
  transform: translateZ(40px);
}
.sunflower {
  position: absolute;
  width: 78%; height: 78%;
  top: 8%; left: 11%;
  filter: drop-shadow(0 14px 36px rgba(0,0,0,0.5));
  /* Tournesol statique — pas de flottement */
  opacity: 0.9;
}
.sunflower .petals {
  transform-origin: center;
  /* Pas de rotation — tournesol statique */
}
@keyframes spinPetals { to { transform: rotate(360deg); } }
.sunflower-2 {
  width: 28%; height: 28%;
  top: auto; bottom: 6%; right: 6%; left: auto;
  opacity: 0.7;
}
.sunflower-2 g:first-child {
  transform-origin: center;
}
@keyframes floaty {
  0%, 100% { transform: translateY(0) rotate(-1deg); }
  50%      { transform: translateY(-12px) rotate(1deg); }
}
.sunflower-caption {
  position: absolute;
  bottom: 18px; left: 18px; right: 18px;
  margin: 0;
  font-size: 13px;
  color: var(--text-1);
  background: rgba(13,20,16,0.65);
  padding: 10px 16px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  gap: 10px;
  backdrop-filter: blur(8px);
  z-index: 4;
  border: 1px solid var(--border-2);
}
.sunflower-caption .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--gold-400);
  box-shadow: 0 0 0 4px rgba(216,178,72,0.18);
  animation: pulseDot 2.5s ease-in-out infinite;
}
@keyframes pulseDot {
  0%, 100% { box-shadow: 0 0 0 4px rgba(216,178,72,0.18); }
  50%      { box-shadow: 0 0 0 8px rgba(216,178,72,0.0); }
}

/* =========================================================
   CARDS
   ========================================================= */
.cards-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-bottom: 36px;
}
.cards-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}
.cards-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.card {
  background: var(--bg-2);
  border: 1px solid var(--border-1);
  border-radius: var(--radius);
  padding: 32px;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s var(--ease), background .4s var(--ease);
  position: relative;
  overflow: hidden;
  transform-style: preserve-3d;
  will-change: transform;
}
.card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at var(--mx, 50%) var(--my, 50%),
    rgba(216,178,72,0.06) 0%,
    transparent 50%
  );
  opacity: 0;
  transition: opacity .3s var(--ease);
  pointer-events: none;
}
.card:hover::before { opacity: 1; }
.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--green-500);
  background: var(--bg-3);
}
.card-icon {
  width: 56px; height: 56px;
  border-radius: 16px;
  background: var(--green-100);
  color: var(--green-300);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  position: relative;
  z-index: 2;
  transition: transform .4s var(--ease), background .4s var(--ease);
  border: 1px solid var(--border-1);
}
.card:hover .card-icon {
  transform: scale(1.08) rotate(-4deg);
  background: var(--green-50);
}
.card-icon-gold {
  background: var(--gold-100);
  color: var(--gold-300);
}
.card-icon-rose {
  background: var(--rose-100);
  color: var(--rose-500);
}
.card-icon-blue {
  background: var(--blue-100);
  color: var(--blue-600);
}
.card h3 {
  font-size: 22px;
  margin-bottom: 10px;
  position: relative;
  z-index: 2;
  color: var(--text-1);
}
.card p {
  color: var(--text-3);
  font-size: 15px;
  margin: 0;
  position: relative;
  z-index: 2;
  line-height: 1.65;
}

/* APP BADGE "Prochainement" */
.app-badge {
  position: absolute;
  top: 0;
  right: 0;
  width: 180px;
  background: linear-gradient(135deg, var(--gold-500), var(--gold-400));
  color: var(--bg-1);
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 5px 0;
  transform: translate(38px, 22px) rotate(35deg);
  z-index: 10;
  box-shadow: 0 2px 8px rgba(0,0,0,0.3);
  text-align: center;
  white-space: nowrap;
  line-height: 1.2;
}

/* CARDS LIEN */
a.card { color: var(--text-1); display: block; }
a.card:hover h3 { color: var(--green-300); }
.card-arrow {
  position: absolute;
  bottom: 24px; right: 24px;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--green-100);
  color: var(--green-300);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform .35s var(--ease), background .35s var(--ease), color .35s var(--ease);
  z-index: 2;
  border: 1px solid var(--border-1);
}
a.card:hover .card-arrow {
  background: var(--green-600);
  color: var(--text-1);
  border-color: var(--green-500);
  transform: translate(4px, -4px) rotate(-8deg);
}

/* CALLOUT */
.callout {
  margin: 20px 0;
  padding: 26px 30px;
  background: var(--bg-2);
  border-left: 3px solid var(--green-500);
  border-radius: 12px;
  color: var(--text-2);
  position: relative;
  overflow: hidden;
}
.callout::before {
  content: '"';
  position: absolute;
  top: -20px; right: 20px;
  font-family: var(--font-serif);
  font-size: 140px;
  color: var(--green-100);
  line-height: 1;
}
.callout p { margin: 0; position: relative; z-index: 1; color: var(--text-2); }

.callout-warn {
  background: var(--warn-bg);
  border-left-color: var(--warn);
}
.callout-info {
  background: var(--blue-100);
  border-left-color: var(--blue-600);
}

/* =========================================================
   TABS
   ========================================================= */
.tabs {
  display: inline-flex;
  background: var(--bg-2);
  border: 1px solid var(--border-1);
  border-radius: 999px;
  padding: 6px;
  gap: 4px;
  margin-bottom: 32px;
  position: relative;
}
.tab {
  border: 0;
  background: transparent;
  padding: 11px 24px;
  border-radius: 999px;
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 500;
  color: var(--text-3);
  cursor: pointer;
  transition: color .3s var(--ease);
  position: relative;
  z-index: 2;
}
.tab:hover { color: var(--text-1); }
.tab.active { color: var(--text-1); }
.tab-indicator {
  position: absolute;
  top: 6px;
  bottom: 6px;
  background: var(--green-600);
  border-radius: 999px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.4);
  transition: left .4s var(--ease), width .4s var(--ease);
  z-index: 1;
}
.tab-panels { position: relative; }
.tab-panel { animation: fadeUp .5s var(--ease-out); }
.tab-panel[hidden] { display: none; }
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}
.panel-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  background: var(--bg-2);
  border: 1px solid var(--border-1);
  border-radius: var(--radius);
  padding: 40px;
}
.panel-grid h3 {
  font-size: 21px;
  margin-bottom: 18px;
}

/* =========================================================
   LISTES
   ========================================================= */
.check-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.check-list li {
  position: relative;
  padding: 10px 0 10px 32px;
  color: var(--text-2);
  font-size: 15.5px;
  border-bottom: 1px dashed var(--border-1);
  transition: padding-left .25s var(--ease), color .25s var(--ease);
}
.check-list li:last-child { border-bottom: 0; }
.check-list li:hover {
  padding-left: 38px;
  color: var(--text-1);
}
.check-list li::before {
  content: '';
  position: absolute;
  left: 0; top: 14px;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--green-100);
  border: 1.5px solid var(--green-500);
  transition: transform .25s var(--ease);
}
.check-list li:hover::before { transform: scale(1.15); }
.check-list li::after {
  content: '';
  position: absolute;
  left: 5px; top: 18px;
  width: 9px; height: 5px;
  border-left: 2px solid var(--green-300);
  border-bottom: 2px solid var(--green-300);
  transform: rotate(-45deg);
}
.check-positive li::before { background: var(--green-50); border-color: var(--green-500); }
.check-positive li::after { border-color: var(--green-300); }
.check-warning li::before {
  background: var(--warn-bg);
  border-color: var(--warn);
}
.check-warning li::after {
  content: '!';
  border: 0;
  font-weight: 700;
  font-size: 12px;
  color: var(--warn);
  left: 8px;
  top: 11px;
  transform: none;
  width: auto; height: auto;
  font-family: var(--font-sans);
}

/* TIMELINE */
.timeline {
  position: relative;
  padding-left: 40px;
  list-style: none;
  margin: 30px 0 0;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 11px; top: 8px; bottom: 8px;
  width: 2px;
  background: linear-gradient(180deg, var(--green-500), var(--gold-500));
  border-radius: 2px;
  opacity: 0.5;
}
.timeline-item {
  position: relative;
  padding: 0 0 32px 0;
}
.timeline-item:last-child { padding-bottom: 0; }
.timeline-item::before {
  content: '';
  position: absolute;
  left: -36px; top: 8px;
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--bg-2);
  border: 2px solid var(--green-500);
  box-shadow: 0 0 0 4px var(--bg-1);
  transition: transform .3s var(--ease), border-color .3s var(--ease);
}
.timeline-item:hover::before {
  transform: scale(1.15);
  border-color: var(--gold-500);
}
.timeline-step {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--green-300);
  font-weight: 600;
  margin-bottom: 4px;
}
.timeline-item h4 {
  font-size: 19px;
  margin: 0 0 8px;
  color: var(--text-1);
}
.timeline-item p {
  color: var(--text-3);
  font-size: 15px;
  margin: 0;
  line-height: 1.65;
}

/* =========================================================
   TIPS GRID
   ========================================================= */
.tips-grid {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.tip {
  position: relative;
  padding: 32px 32px 32px 100px;
  background: var(--bg-2);
  border: 1px solid var(--border-1);
  border-radius: var(--radius);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s var(--ease), background .4s var(--ease);
  overflow: hidden;
  transform-style: preserve-3d;
}
.tip::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at var(--mx, 50%) var(--my, 50%),
    rgba(216,178,72,0.06) 0%,
    transparent 50%
  );
  opacity: 0;
  transition: opacity .3s var(--ease);
  pointer-events: none;
}
.tip:hover::before { opacity: 1; }
.tip:hover {
  transform: translateY(-4px);
  border-color: var(--green-500);
  background: var(--bg-3);
}
.tip-num {
  position: absolute;
  left: 28px; top: 28px;
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: 38px;
  background: linear-gradient(135deg, var(--green-300), var(--gold-300));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: -0.02em;
  transition: transform .4s var(--ease);
  opacity: 0.85;
}
.tip:hover .tip-num { transform: scale(1.12); opacity: 1; }
.tip h3 {
  font-size: 19px;
  margin-bottom: 8px;
  position: relative;
  z-index: 2;
}
.tip p {
  color: var(--text-3);
  font-size: 14.5px;
  margin: 0;
  position: relative;
  z-index: 2;
  line-height: 1.65;
}

/* =========================================================
   DUO
   ========================================================= */
.duo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.duo-col {
  background: var(--bg-2);
  padding: 36px;
  border-radius: var(--radius);
  border: 1px solid var(--border-1);
  transition: transform .4s var(--ease), border-color .4s var(--ease), background .4s var(--ease);
}
.duo-col:hover {
  transform: translateY(-4px);
  border-color: var(--green-500);
  background: var(--bg-3);
}
.duo-col h3 {
  font-size: 22px;
  margin-bottom: 20px;
}

/* =========================================================
   FAQ
   ========================================================= */
.faq {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  max-width: 920px;
}
.faq-item {
  background: var(--bg-2);
  border: 1px solid var(--border-1);
  border-radius: var(--radius);
  padding: 4px 28px;
  transition: border-color .3s var(--ease), background .3s var(--ease);
}
.faq-item:hover { border-color: var(--border-3); }
.faq-item[open] {
  border-color: var(--green-500);
  background: var(--bg-3);
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 0;
  font-family: var(--font-serif);
  font-size: 19px;
  color: var(--text-1);
  display: flex;
  align-items: center;
  gap: 14px;
  position: relative;
  padding-right: 40px;
  transition: color .3s var(--ease);
  font-weight: 400;
}
.faq-item:hover summary { color: var(--green-300); }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '';
  position: absolute;
  right: 0; top: 50%;
  transform: translateY(-50%);
  width: 32px; height: 32px;
  border-radius: 50%;
  background-color: var(--green-100);
  background-image:
    linear-gradient(currentColor, currentColor),
    linear-gradient(currentColor, currentColor);
  background-size: 12px 1.5px, 1.5px 12px;
  background-position: center, center;
  background-repeat: no-repeat;
  color: var(--green-300);
  border: 1px solid var(--border-1);
  transition: transform .35s var(--ease), background-color .3s var(--ease), color .3s var(--ease);
}
.faq-item[open] summary::after {
  background-color: var(--green-600);
  color: var(--text-1);
  border-color: var(--green-500);
  background-size: 12px 1.5px, 0 0;
  transform: translateY(-50%) rotate(180deg);
}
.faq-item p, .faq-item ul {
  margin: 0 0 20px 0;
  color: var(--text-2);
  font-size: 16px;
  animation: faqIn .4s var(--ease-out);
  line-height: 1.75;
}
@keyframes faqIn {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}
.myth-tag {
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--warn);
  background: var(--warn-bg);
  padding: 4px 11px;
  border-radius: 999px;
  font-weight: 600;
  flex-shrink: 0;
  border: 1px solid rgba(199,144,100,0.2);
}
.fact-tag {
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green-300);
  background: var(--green-100);
  padding: 4px 11px;
  border-radius: 999px;
  font-weight: 600;
  flex-shrink: 0;
  border: 1px solid var(--border-1);
}

/* =========================================================
   TOURNESOL SECTION
   ========================================================= */
.sunflower-section {
  background: linear-gradient(135deg, var(--green-900) 0%, #08110b 100%);
  color: var(--text-1);
  position: relative;
  overflow: hidden;
}
.sunflower-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at var(--spotlight-x, 90%) var(--spotlight-y, 20%), rgba(216,178,72,0.12), transparent 60%),
    radial-gradient(ellipse 50% 40% at 10% 90%, rgba(216,178,72,0.06), transparent 60%);
  pointer-events: none;
}
.sunflower-section h2 {
  color: var(--text-1);
  font-size: clamp(32px, 4.2vw, 52px);
}
.sunflower-section h2 em {
  background: linear-gradient(120deg, var(--gold-200), var(--gold-400));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.sunflower-block {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 64px;
  align-items: center;
  z-index: 1;
}
.sunflower-block-text p {
  color: var(--text-2);
  font-size: 17px;
  line-height: 1.8;
}
.sunflower-quote {
  margin-top: 22px;
  padding: 22px 26px;
  background: rgba(216,178,72,0.05);
  border-left: 3px solid var(--gold-500);
  border-radius: 10px;
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--text-1);
  font-size: 18px;
  position: relative;
}

.lanyard {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.lanyard-strap {
  width: 100%;
  max-width: 480px;
  height: 130px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 30px 70px rgba(0,0,0,0.65), inset 0 0 0 1px rgba(216,178,72,0.08);
  position: relative;
  transform: rotate(-2deg);
  transition: transform .5s var(--ease);
}
.lanyard-strap:hover { transform: rotate(0deg) scale(1.03); }
.lanyard-strap::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,0.06), transparent 30%, transparent 70%, rgba(0,0,0,0.3));
  pointer-events: none;
  z-index: 2;
}
.lanyard-strap::after {
  content: '';
  position: absolute;
  width: 200%; height: 100%;
  top: 0; left: -50%;
  background: linear-gradient(90deg, transparent 0%, rgba(216,178,72,0.10) 50%, transparent 100%);
  animation: lanyardShimmer 5s ease-in-out infinite;
  z-index: 3;
}
@keyframes lanyardShimmer {
  0%, 100% { transform: translateX(-30%); opacity: 0; }
  50%      { transform: translateX(30%); opacity: 1; }
}
.lanyard-svg { width: 100%; height: 100%; display: block; }
.lanyard-svg rect:first-child { fill: var(--green-700) !important; }
.lanyard-svg ellipse { fill: var(--gold-400) !important; }
.lanyard-svg circle { fill: #3a2a14 !important; }
.lanyard-flowers > g {
  animation: turn 14s linear infinite;
  transform-origin: center;
  transform-box: fill-box;
}
.lanyard-flowers g:nth-child(2) { animation-duration: 12s; animation-direction: reverse; }
.lanyard-flowers g:nth-child(3) { animation-duration: 16s; }
.lanyard-flowers g:nth-child(4) { animation-duration: 11s; animation-direction: reverse; }
.lanyard-flowers g:nth-child(5) { animation-duration: 15s; }
@keyframes turn { to { transform: rotate(360deg); } }

/* =========================================================
   RESOURCES
   ========================================================= */
.resources-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.resource {
  display: block;
  background: var(--bg-2);
  border: 1px solid var(--border-1);
  border-radius: var(--radius);
  padding: 30px;
  color: var(--text-1);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s var(--ease), background .4s var(--ease);
  position: relative;
  overflow: hidden;
  transform-style: preserve-3d;
}
.resource::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--green-500), var(--gold-400));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .5s var(--ease);
}
.resource:hover::before { transform: scaleX(1); }
.resource:hover {
  transform: translateY(-6px);
  border-color: var(--green-500);
  background: var(--bg-3);
  box-shadow: var(--shadow-md);
}
.resource h3 {
  font-size: 19px;
  margin-bottom: 10px;
  color: var(--text-1);
  transition: color .3s var(--ease);
}
.resource:hover h3 { color: var(--green-300); }
.resource p {
  color: var(--text-3);
  font-size: 14.5px;
  margin: 0 0 20px;
  line-height: 1.65;
}
.resource-tag {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green-300);
  background: var(--green-100);
  padding: 4px 11px;
  border-radius: 999px;
  font-weight: 600;
  margin-bottom: 14px;
  border: 1px solid var(--border-1);
}
.resource-link {
  font-size: 13px;
  font-weight: 500;
  color: var(--green-300);
  letter-spacing: 0.02em;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: gap .3s var(--ease), color .3s var(--ease);
}
.resource:hover .resource-link {
  gap: 10px;
  color: var(--gold-300);
}

.emergency {
  margin-top: 40px;
  padding: 28px 32px;
  background: var(--warn-bg);
  border-left: 3px solid var(--warn);
  border-radius: 12px;
  position: relative;
  overflow: hidden;
}
.emergency::before {
  content: '';
  position: absolute;
  top: -50%; right: -50%;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(199,144,100,0.08), transparent 70%);
  border-radius: 50%;
}
.emergency h3 {
  font-size: 18px;
  margin-bottom: 8px;
  color: var(--warn);
  position: relative;
}
.emergency p {
  margin: 0;
  color: var(--text-2);
  font-size: 15px;
  position: relative;
  line-height: 1.7;
}
.emergency strong { color: var(--text-1); }

/* =========================================================
   TABLEAU
   ========================================================= */
.table-wrap {
  overflow-x: auto;
  border-radius: var(--radius);
  border: 1px solid var(--border-1);
  background: var(--bg-2);
}
table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
  color: var(--text-2);
}
th, td {
  padding: 18px 22px;
  text-align: left;
  border-bottom: 1px solid var(--border-1);
}
th {
  background: var(--green-100);
  font-weight: 600;
  color: var(--text-1);
  font-size: 12.5px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
tr:last-child td { border-bottom: 0; }
tr:hover td { background: var(--bg-3); }
td strong { color: var(--green-300); }

/* =========================================================
   QUOTE
   ========================================================= */
.quote-block {
  margin: 50px auto;
  max-width: 760px;
  text-align: center;
  position: relative;
  padding: 40px 30px;
}
.quote-block::before {
  content: '"';
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-serif);
  font-size: 200px;
  color: var(--green-100);
  line-height: 1;
  z-index: 0;
  opacity: 0.7;
}
.quote-block blockquote {
  position: relative;
  z-index: 1;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(22px, 2.6vw, 28px);
  line-height: 1.5;
  margin: 0;
  color: var(--text-1);
  font-weight: 400;
}
.quote-block cite {
  display: block;
  margin-top: 16px;
  font-style: normal;
  font-family: var(--font-sans);
  font-size: 13px;
  color: var(--text-3);
  letter-spacing: 0.04em;
}

/* =========================================================
   PROCESS / ÉTAPES
   ========================================================= */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-top: 40px;
}
.process-step {
  background: var(--bg-2);
  border: 1px solid var(--border-1);
  border-radius: var(--radius);
  padding: 28px;
  position: relative;
  transition: transform .35s var(--ease), border-color .35s var(--ease), background .35s var(--ease);
}
.process-step:hover {
  transform: translateY(-5px);
  border-color: var(--green-500);
  background: var(--bg-3);
}
.process-step-num {
  position: absolute;
  top: -18px; left: 24px;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--green-600);
  color: var(--text-1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 16px;
  border: 1px solid var(--green-500);
  box-shadow: 0 4px 12px rgba(0,0,0,0.4);
}
.process-step h4 {
  font-size: 17px;
  margin: 14px 0 8px;
}
.process-step p {
  font-size: 14px;
  color: var(--text-3);
  margin: 0;
  line-height: 1.65;
}

/* =========================================================
   PILLS
   ========================================================= */
.pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 24px 0;
}
.pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 999px;
  background: var(--green-100);
  color: var(--green-300);
  font-size: 13px;
  font-weight: 500;
  border: 1px solid var(--border-1);
  transition: background .25s var(--ease), border-color .25s var(--ease), color .25s var(--ease);
}
.pill:hover {
  background: var(--green-50);
  border-color: var(--green-500);
  color: var(--text-1);
}
.pill-gold {
  background: var(--gold-100);
  color: var(--gold-300);
}
.pill-gold:hover {
  background: rgba(216,178,72,0.15);
  border-color: var(--gold-500);
  color: var(--gold-200);
}

/* =========================================================
   SPLIT 2 COLONNES
   ========================================================= */
.split-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.split-2-text h2 {
  font-size: clamp(28px, 3.6vw, 42px);
  margin-bottom: 20px;
}
.split-2-text p {
  color: var(--text-2);
  font-size: 17px;
  line-height: 1.8;
}

/* =========================================================
   CTA BANNER
   ========================================================= */
.cta-banner {
  background: linear-gradient(135deg, var(--green-700), #0a1410);
  border: 1px solid var(--green-600);
  border-radius: var(--radius-lg);
  padding: 50px 50px;
  position: relative;
  overflow: hidden;
  margin: 80px 0;
  color: var(--text-1);
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%; right: -10%;
  width: 60%; height: 200%;
  background: radial-gradient(circle, rgba(216,178,72,0.10), transparent 60%);
  filter: blur(60px);
}
.cta-banner-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.5fr auto;
  gap: 32px;
  align-items: center;
}
.cta-banner h2 {
  color: var(--text-1);
  font-size: clamp(24px, 3vw, 34px);
  margin: 0 0 10px;
}
.cta-banner p {
  color: var(--text-2);
  margin: 0;
  font-size: 16.5px;
  line-height: 1.7;
}

/* =========================================================
   SHARE BAR
   ========================================================= */
.share-bar {
  background: var(--bg-2);
  border-top: 1px solid var(--border-2);
  border-bottom: 1px solid var(--border-2);
  padding: 28px 0;
  text-align: center;
}
.share-bar .container { max-width: 600px; margin: 0 auto; padding: 0 24px; }
.share-bar p {
  font-size: 0.88rem;
  color: var(--text-3);
  margin-bottom: 16px;
}
.share-buttons {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}
.share-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 18px;
  border-radius: 50px;
  font-size: 0.84rem;
  font-weight: 500;
  font-family: inherit;
  text-decoration: none;
  border: 1px solid var(--border-3);
  background: var(--bg-3);
  color: var(--text-2);
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
}
.share-btn:hover { background: var(--bg-4); border-color: var(--green-500); color: var(--text-1); text-decoration: none; }
.share-btn svg { width: 16px; height: 16px; flex-shrink: 0; }
.share-btn--whatsapp:hover { border-color: #25d366; }
.share-btn--facebook:hover { border-color: #1877f2; }
.share-btn--twitter:hover { border-color: #1da1f2; }
.share-btn--email:hover { border-color: var(--gold-400); }
.share-btn--copy:hover { border-color: var(--green-400); }
.share-btn--copy.copied { border-color: var(--green-400); color: var(--green-400); }

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer {
  background:
    radial-gradient(ellipse 60% 50% at 80% 0%, rgba(74,125,94,0.15), transparent 60%),
    var(--bg-0);
  color: var(--text-3);
  padding: 80px 0 0;
  margin-top: 32px;
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--border-1);
}
.site-footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(216,178,72,0.3), transparent);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 48px;
  padding-bottom: 56px;
  position: relative;
}
.brand-footer { color: var(--text-1); margin-bottom: 18px; }
.brand-footer .brand-text { color: var(--text-1); }
.footer-mission {
  font-size: 14px;
  color: var(--text-3);
  max-width: 320px;
  margin: 0;
  line-height: 1.75;
}
.site-footer h4 {
  color: var(--text-1);
  font-family: var(--font-sans);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  margin-bottom: 18px;
  font-weight: 600;
}
.footer-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
  font-size: 14px;
}
.footer-list a {
  color: var(--text-3);
  transition: color .25s var(--ease), padding-left .25s var(--ease);
  position: relative;
}
.footer-list a::before {
  content: '→';
  position: absolute;
  left: -16px;
  opacity: 0;
  transition: opacity .25s var(--ease), transform .25s var(--ease);
  color: var(--gold-400);
  transform: translateX(-4px);
}
.footer-list a:hover {
  color: var(--gold-300);
  padding-left: 18px;
}
.footer-list a:hover::before {
  opacity: 1;
  transform: translateX(0);
  left: 0;
}
.footer-list li { color: var(--text-3); }
.footer-disclaimer {
  font-size: 13px;
  color: var(--text-4);
  margin: 0;
  line-height: 1.75;
}
.footer-bottom {
  border-top: 1px solid var(--border-1);
  padding: 24px 0;
}
.footer-bottom p {
  margin: 0;
  font-size: 12.5px;
  color: var(--text-5);
  text-align: center;
}

/* =========================================================
   BACK TO TOP
   ========================================================= */
.back-to-top {
  position: fixed;
  bottom: 28px; right: 28px;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--green-600);
  color: var(--text-1);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--green-500);
  box-shadow: 0 8px 24px rgba(0,0,0,0.5);
  opacity: 0;
  transform: translateY(20px) scale(0.8);
  pointer-events: none;
  transition: opacity .4s var(--ease), transform .4s var(--ease), box-shadow .3s var(--ease), background .25s var(--ease);
  z-index: 40;
}
.back-to-top.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}
.back-to-top:hover {
  color: var(--text-1);
  transform: translateY(-4px) scale(1.05);
  background: var(--green-500);
  box-shadow: 0 12px 32px rgba(0,0,0,0.6);
}

/* =========================================================
   TABLE DES MATIÈRES
   ========================================================= */
.toc {
  position: sticky;
  top: 96px;
  background: var(--bg-2);
  border: 1px solid var(--border-1);
  border-radius: var(--radius);
  padding: 24px;
  font-size: 14px;
  max-height: calc(100vh - 120px);
  overflow-y: auto;
}
.toc h4 {
  font-family: var(--font-sans);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--green-300);
  margin: 0 0 14px;
  font-weight: 600;
}
.toc ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 4px;
}
.toc a {
  display: block;
  padding: 8px 12px;
  color: var(--text-3);
  border-radius: 8px;
  border-left: 2px solid transparent;
  transition: all .25s var(--ease);
}
.toc a:hover {
  color: var(--text-1);
  background: var(--bg-3);
}
.toc a.active {
  color: var(--green-300);
  background: var(--green-100);
  border-left-color: var(--green-500);
  font-weight: 500;
}

.with-toc {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 60px;
  align-items: start;
}
.with-toc-content > section + section { margin-top: 80px; }
.with-toc-content h2 {
  font-size: clamp(28px, 3.4vw, 38px);
  margin-bottom: 18px;
  font-weight: 400;
}
.with-toc-content h3 {
  font-size: 21px;
  margin: 32px 0 12px;
  color: var(--text-1);
  font-weight: 500;
}
.with-toc-content p {
  color: var(--text-2);
  font-size: 16.5px;
  line-height: 1.8;
}

/* =========================================================
   HERO PAGE VARIANTS (très subtils en mode sombre)
   ========================================================= */
.hero-page-soft {
  background:
    radial-gradient(ellipse 60% 40% at 80% -10%, rgba(216,178,72,0.06), transparent 60%),
    radial-gradient(ellipse 50% 40% at -10% 110%, rgba(74,125,94,0.06), transparent 60%);
}
.hero-page-green {
  background:
    radial-gradient(ellipse 50% 40% at 80% 0%, rgba(74,125,94,0.10), transparent 60%),
    radial-gradient(ellipse 50% 40% at 0% 100%, rgba(74,125,94,0.06), transparent 60%);
}
.hero-page-gold {
  background:
    radial-gradient(ellipse 50% 40% at 80% 0%, rgba(216,178,72,0.08), transparent 60%),
    radial-gradient(ellipse 50% 40% at 0% 100%, rgba(216,178,72,0.05), transparent 60%);
}
.hero-page-rose {
  background:
    radial-gradient(ellipse 50% 40% at 80% 0%, rgba(176,112,121,0.08), transparent 60%),
    radial-gradient(ellipse 50% 40% at 0% 100%, rgba(176,112,121,0.04), transparent 60%);
}
.hero-page-blue {
  background:
    radial-gradient(ellipse 50% 40% at 80% 0%, rgba(111,140,174,0.08), transparent 60%),
    radial-gradient(ellipse 50% 40% at 0% 100%, rgba(111,140,174,0.04), transparent 60%);
}

/* =========================================================
   RESPONSIVE
   ========================================================= */

/* --- TABLET (≤ 1100px) --- */
@media (max-width: 1100px) {
  .with-toc { grid-template-columns: 1fr; gap: 30px; }
  .toc { position: static; max-height: none; }
}

/* --- SMALL TABLET (≤ 980px) --- */
@media (max-width: 980px) {
  .section { padding: 80px 0; }
  .hero { padding: 70px 0 90px; }
  .hero-page { padding: 60px 0 50px; }
  .hero-grid { grid-template-columns: 1fr; gap: 50px; }
  .hero-visual { order: -1; }
  .sunflower-card { max-width: 380px; margin: 0 auto; }
  .cards-3, .cards-4, .resources-grid { grid-template-columns: 1fr 1fr; }
  .panel-grid { grid-template-columns: 1fr; padding: 30px; gap: 28px; }
  .duo, .cards-2 { grid-template-columns: 1fr; }
  .sunflower-block { grid-template-columns: 1fr; gap: 36px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .split-2 { grid-template-columns: 1fr; gap: 40px; }
  .big-stats { grid-template-columns: 1fr 1fr; }
  .process-grid { grid-template-columns: 1fr 1fr; }
  .cta-banner-content { grid-template-columns: 1fr; gap: 24px; }
}

/* --- MOBILE (≤ 720px) ---
   ⚡ Animations révélation désactivées pour ne pas masquer le contenu.
   Tout est rendu immédiatement visible.
   ========================================================= */
/* =========================================================
   Sources & References
   ========================================================= */
.sources-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
  margin-top: 24px;
}
.source-card {
  background: var(--bg-2);
  border: 1px solid var(--border-2);
  border-radius: 14px;
  padding: 20px 24px;
  transition: border-color .25s var(--ease), transform .25s var(--ease);
}
.source-card:hover {
  border-color: var(--green-500);
  transform: translateY(-2px);
}
.source-card h4 { margin: 0 0 6px; font-size: 1rem; color: var(--text-1); }
.source-card p { margin: 0; font-size: 0.85rem; color: var(--text-3); line-height: 1.5; }
.source-card .source-link {
  display: inline-flex; align-items: center; gap: 4px;
  margin-top: 10px; font-size: 0.8rem; color: var(--green-400); font-weight: 500;
}
.source-card .source-link:hover { text-decoration: underline; }
.source-tag {
  display: inline-block; padding: 3px 10px; border-radius: 99px; font-size: 0.7rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 10px;
}
.source-tag.official { background: var(--green-100); color: var(--green-400); }
.source-tag.research { background: var(--blue-100); color: var(--blue-600); }
.source-tag.association { background: var(--gold-100); color: var(--gold-400); }

/* =========================================================
   Self-Screening Quiz
   ========================================================= */
.quiz-box {
  background: var(--bg-2);
  border: 1px solid var(--border-2);
  border-radius: 16px;
  padding: 32px;
  max-width: 820px;
  margin-top: 24px;
}
.quiz-disclaimer {
  background: var(--warn-bg);
  border-left: 4px solid var(--warn);
  border-radius: 0 10px 10px 0;
  padding: 16px 20px;
  margin-bottom: 24px;
  font-size: 0.88rem;
  color: var(--warn);
  line-height: 1.6;
}
.quiz-questions { counter-reset: quiz; }
.quiz-question {
  padding: 14px 0;
  border-bottom: 1px solid var(--border-1);
}
.quiz-question:last-of-type { border-bottom: none; }
.quiz-question label {
  display: flex; align-items: flex-start; gap: 12px;
  cursor: pointer; font-size: 0.95rem; color: var(--text-2); line-height: 1.5;
}
.quiz-question label::before {
  counter-increment: quiz;
  content: counter(quiz) ".";
  color: var(--text-4); font-weight: 600; min-width: 24px;
}
.quiz-question input[type="checkbox"] {
  -webkit-appearance: none; appearance: none;
  width: 22px; height: 22px; min-width: 22px;
  border: 2px solid var(--border-3); border-radius: 6px;
  background: var(--bg-3); cursor: pointer; margin-top: 1px;
  transition: background .2s, border-color .2s;
}
.quiz-question input[type="checkbox"]:checked {
  background: var(--green-600); border-color: var(--green-500);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23e3dfd2' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: center;
}
.quiz-score {
  margin-top: 24px; padding: 20px 24px; border-radius: 12px;
  background: var(--bg-3); border: 1px solid var(--border-2);
}
.quiz-score h4 { margin: 0 0 8px; color: var(--text-1); font-size: 1.1rem; }
.quiz-score p { margin: 0; color: var(--text-2); line-height: 1.6; font-size: 0.92rem; }
.quiz-score .score-num { font-size: 1.8rem; font-weight: 700; color: var(--gold-400); font-family: var(--font-serif); }
.quiz-score .score-bar {
  height: 8px; border-radius: 99px; background: var(--bg-4); margin: 12px 0; overflow: hidden;
}
.quiz-score .score-bar-fill {
  height: 100%; border-radius: 99px; transition: width .6s var(--ease);
  background: linear-gradient(90deg, var(--green-500), var(--gold-400));
}
.quiz-btn {
  display: inline-flex; align-items: center; gap: 8px;
  margin-top: 20px; padding: 12px 28px; border-radius: 10px;
  background: var(--green-600); color: var(--text-1);
  border: 1px solid var(--green-500);
  font-family: inherit; font-size: 0.95rem; font-weight: 500; cursor: pointer;
  transition: background .2s var(--ease), transform .2s var(--ease);
}
.quiz-btn:hover { background: var(--green-500); transform: translateY(-1px); }

@media (max-width: 720px) {

  /* ── FORCER VISIBILITÉ : les animations reveal cachent le contenu ── */
  .reveal,
  .reveal-up,
  .reveal-stagger > * {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
  .split-text .word-inner {
    transform: none !important;
    transition: none !important;
  }

  /* ── TYPOGRAPHIE ── */
  body { font-size: 16.5px; line-height: 1.75; }
  h1 { font-size: 1.75rem; }
  h2 { font-size: 1.45rem; }
  h3 { font-size: 1.15rem; }

  /* ── LAYOUT ── */
  .container { padding-left: 24px; padding-right: 24px; }
  .section { padding: 56px 0; }
  .section-sm { padding: 40px 0; }
  .section-head { margin-bottom: 28px; }
  .section-head h2 { font-size: 1.5rem; margin-bottom: 12px; }
  .section-sub { font-size: 1rem; line-height: 1.7; }
  .eyebrow { font-size: 0.72rem; letter-spacing: 0.12em; margin-bottom: 12px; }

  /* ── HEADER FIXE + NAV MOBILE ── */
  .site-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 50;
    background: rgba(10,16,13,0.95);
    backdrop-filter: saturate(160%) blur(20px);
    -webkit-backdrop-filter: saturate(160%) blur(20px);
    border-bottom: 1px solid var(--border-2);
  }
  body { padding-top: 64px; }
  .nav-wrap { height: 64px; gap: 12px; }
  .brand-mark { width: 32px; height: 32px; }
  .brand-mark svg { width: 32px; height: 32px; }
  .brand-text { font-size: 15px; }
  .nav-toggle { display: flex; }
  .primary-nav {
    position: absolute;
    top: 64px; left: 0; right: 0;
    flex-direction: column;
    flex-wrap: nowrap;
    background: var(--bg-1);
    padding: 12px 20px;
    gap: 0;
    border-bottom: 1px solid var(--border-2);
    transform-origin: top;
    transform: scaleY(0);
    opacity: 0;
    transition: transform .3s var(--ease), opacity .3s var(--ease);
    align-items: stretch;
    box-shadow: var(--shadow-lg);
    z-index: 100;
    max-height: calc(100vh - 64px);
    max-height: calc(100dvh - 64px);
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
  }
  .primary-nav.open {
    transform: scaleY(1);
    opacity: 1;
  }
  html.nav-open,
  body.nav-open {
    overflow: hidden;
    height: 100%;
  }
  .primary-nav.open {
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
  }
  .primary-nav a {
    width: 100%;
    padding: 11px 12px;
    border-bottom: 1px solid var(--border-1);
    font-size: 15px;
    color: var(--text-2);
  }
  .primary-nav a::after { display: none; }
  .primary-nav a:last-child { border-bottom: 0; }
  .nav-cta {
    margin-top: 8px;
    text-align: center;
    justify-content: center;
    padding: 12px 20px;
    font-size: 15px;
    border-radius: 12px;
    margin-bottom: 4px;
  }

  /* ── HERO ── */
  .hero { padding: 50px 0 60px; }
  .hero h1, .hero-text h1 { font-size: 2rem; line-height: 1.15; margin-bottom: 18px; }
  .hero-text .lead { font-size: 1rem; line-height: 1.7; margin-bottom: 28px; }
  .hero-cta { gap: 12px; }
  .hero-cta .btn { width: 100%; text-align: center; justify-content: center; }
  .sunflower-card { max-width: 300px; }

  .hero-page { padding: 40px 0 30px; }
  .hero-page h1 { font-size: 1.85rem; line-height: 1.2; margin-bottom: 16px; }
  .hero-page .lead { font-size: 1rem; line-height: 1.7; }

  .breadcrumb { font-size: 0.82rem; margin-bottom: 16px; }

  /* ── GRILLES → 1 colonne sur mobile ── */
  .cards-3, .cards-4, .resources-grid, .tips-grid, .hero-points,
  .big-stats, .process-grid {
    grid-template-columns: 1fr;
  }
  .cards-3, .cards-4 { gap: 16px; }
  .resources-grid { gap: 16px; }
  .hero-points { gap: 12px; }
  .duo, .cards-2 { grid-template-columns: 1fr; }

  /* ── CARDS ── */
  .card {
    padding: 24px 20px;
    border-radius: var(--radius);
  }
  .card h3 { font-size: 1.15rem; margin-bottom: 8px; }
  .card p { font-size: 0.95rem; line-height: 1.7; }
  .card:hover { transform: none; }
  .card-icon { width: 48px; height: 48px; border-radius: 14px; margin-bottom: 14px; }
  .card-arrow { bottom: 20px; right: 20px; }

  /* ── BOUTIQUE : LIEN-PILLS dans les cartes ── */
  .card div[style*="flex-wrap"] {
    gap: 10px !important;
    margin-top: 16px !important;
  }
  .card div[style*="flex-wrap"] a {
    font-size: 0.88rem !important;
    padding: 10px 16px !important;
    min-height: 44px;
    display: inline-flex !important;
    align-items: center;
    border-radius: 12px !important;
    line-height: 1.3;
  }
  /* Visit buttons en bas des cartes boutique */
  .card > a[style*="border-radius:20px"] {
    font-size: 0.9rem !important;
    padding: 12px 20px !important;
    min-height: 44px;
    display: inline-flex !important;
    align-items: center;
    border-radius: 12px !important;
    margin-top: 16px !important;
  }

  /* ── SUPER-SPECTRE BANNER ── */
  .sunflower-block[style*="flex-wrap"] {
    padding: 28px 20px !important;
    gap: 24px !important;
    flex-direction: column !important;
    border-radius: 16px !important;
    align-items: flex-start !important;
  }
  .sunflower-block[style*="flex-wrap"] .sunflower-block-text {
    min-width: 0 !important;
  }
  .sunflower-block[style*="flex-wrap"] h2 {
    font-size: 1.5rem !important;
    margin-top: 6px !important;
  }
  .sunflower-block[style*="flex-wrap"] p {
    font-size: 0.95rem !important;
    line-height: 1.7 !important;
  }
  .sunflower-block[style*="flex-wrap"] > div:last-child {
    order: -1;
  }
  .sunflower-block[style*="flex-wrap"] > div:last-child > div {
    width: 80px !important;
    height: 80px !important;
    border-radius: 16px !important;
  }
  .sunflower-block[style*="flex-wrap"] > div:last-child > div svg {
    width: 40px !important;
    height: 40px !important;
  }
  .sunflower-block[style*="flex-wrap"] .btn {
    width: 100%;
    text-align: center;
    justify-content: center;
    padding: 14px 24px !important;
    font-size: 0.95rem !important;
  }

  /* ── TIPS ── */
  .tip { padding: 24px 20px 24px 80px; }
  .tip-num { left: 20px; top: 22px; font-size: 32px; }
  .tip h3 { font-size: 1.05rem; }
  .tip p { font-size: 0.9rem; }
  .tip:hover { transform: none; }

  /* ── STATS ── */
  .big-stat-number { font-size: 36px; }
  .hero-points strong { font-size: 26px; }

  /* ── FAQ ── */
  .faq-item { padding: 2px 20px; }
  .faq-item summary { font-size: 1rem; gap: 10px; padding: 18px 44px 18px 0; }
  .faq-item summary::after { width: 28px; height: 28px; }
  .faq-item p, .faq-item ul { font-size: 0.95rem; margin-bottom: 18px; }

  /* ── TABS ── */
  .tabs { flex-wrap: wrap; border-radius: 16px; padding: 4px; gap: 2px; width: 100%; }
  .tab { padding: 10px 16px; font-size: 13px; flex: 1; text-align: center; }
  .panel-grid { padding: 24px 18px; gap: 24px; }

  /* ── DUO ── */
  .duo-col { padding: 24px 20px; }
  .duo-col:hover { transform: none; }

  /* ── TIMELINE ── */
  .timeline { padding-left: 32px; }
  .timeline-item::before { left: -28px; width: 20px; height: 20px; }
  .timeline-item h4 { font-size: 1.05rem; }
  .timeline-item p { font-size: 0.9rem; }

  /* ── PROCESS ── */
  .process-step { padding: 24px 20px; }
  .process-step h4 { font-size: 1rem; }
  .process-step p { font-size: 0.9rem; }

  /* ── QUOTE ── */
  .quote-block { padding: 30px 10px; }
  .quote-block blockquote { font-size: 1.15rem; }
  .quote-block::before { font-size: 120px; top: -20px; }

  /* ── TABLE ── */
  .table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
  th, td { padding: 14px 16px; font-size: 0.9rem; }

  /* ── CTA BANNER ── */
  .cta-banner { padding: 32px 24px; border-radius: var(--radius); margin: 50px 0; }
  .cta-banner h2 { font-size: 1.3rem; }
  .cta-banner p { font-size: 0.95rem; }

  /* ── CALLOUT ── */
  .callout { padding: 22px 20px; border-radius: 10px; }
  .callout::before { font-size: 80px; top: -10px; right: 10px; }
  .emergency { padding: 22px 20px; }
  .emergency h3 { font-size: 1.05rem; }

  /* ── RESOURCES ── */
  .resource { padding: 24px 20px; }
  .resource h3 { font-size: 1.05rem; }
  .resource p { font-size: 0.9rem; }

  /* ── LANYARD ── */
  .lanyard-strap { transform: rotate(-1deg); height: 100px; }

  /* ── PILLS ── */
  .pills { gap: 8px; }
  .pill { font-size: 0.82rem; padding: 8px 14px; min-height: 36px; }

  /* ── TOC ── */
  .toc { padding: 20px; border-radius: 12px; }
  .toc h4 { font-size: 0.78rem; }
  .toc a { font-size: 0.88rem; padding: 10px 12px; min-height: 40px; display: flex; align-items: center; }
  .with-toc-content > section + section { margin-top: 50px; }
  .with-toc-content h2 { font-size: 1.4rem; }
  .with-toc-content p { font-size: 1rem; }

  /* ── FOOTER ── */
  .site-footer { padding: 50px 0 0; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-mission { font-size: 0.9rem; max-width: none; }
  .site-footer h4 { margin-bottom: 14px; }
  .footer-list { font-size: 0.9rem; gap: 8px; }
  .footer-list a { padding: 6px 0; min-height: 36px; display: inline-flex; align-items: center; }
  .footer-bottom { padding: 18px 0; }
  .footer-bottom p { font-size: 0.78rem; }
  .footer-disclaimer { font-size: 0.85rem; }

  /* ── BACK TO TOP ── */
  .back-to-top { width: 44px; height: 44px; right: 16px; bottom: 16px; }

  /* ── BUTTONS ── */
  .btn { padding: 14px 24px; font-size: 0.95rem; }
  .btn-sm { padding: 10px 18px; font-size: 0.85rem; }
}

/* --- EXTRA SMALL (≤ 420px) --- */
@media (max-width: 420px) {
  body { font-size: 16px; }
  .container { padding-left: 20px; padding-right: 20px; }

  .hero { padding: 36px 0 44px; }
  .hero h1, .hero-text h1 { font-size: 1.65rem; }
  .hero-page { padding: 30px 0 20px; }
  .hero-page h1 { font-size: 1.55rem; }
  .hero-page .lead { font-size: 0.95rem; }

  .section { padding: 40px 0; }
  .section-sm { padding: 30px 0; }
  .section-head h2 { font-size: 1.3rem; }

  .nav-wrap { height: 56px; }
  .primary-nav { top: 56px; }
  .brand-mark { width: 28px; height: 28px; }
  .brand-mark svg { width: 28px; height: 28px; }
  .brand-text { font-size: 13.5px; }

  .card { padding: 20px 16px; }
  .card h3 { font-size: 1.05rem; }
  .card-icon { width: 42px; height: 42px; }

  .faq-item { padding: 2px 16px; }
  .faq-item summary { font-size: 0.95rem; padding: 16px 40px 16px 0; }

  .sunflower-block[style*="flex-wrap"] {
    padding: 22px 16px !important;
  }

  .big-stat-number { font-size: 30px; }

  .callout { padding: 18px 16px; }
  .emergency { padding: 18px 16px; }

  .cta-banner { padding: 26px 18px; margin: 36px 0; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal, .reveal-up, .reveal-stagger > *,
  .split-text .word-inner { opacity: 1 !important; transform: none !important; }
  .blob { animation: none; }
}
