@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,300;0,9..144,600;0,9..144,700;0,9..144,800;1,9..144,400&family=DM+Sans:opsz,wght@9..40,300;9..40,400;9..40,500;9..40,600;9..40,700&display=swap');

/* ================================================================
   ZONES GRISES — main.css (v3)
   Palette : vert dominant (institution) + turquoise (Catherine)
   1. Variables CSS
   2. Reset & Base
   3. Layout
   4. Typographie
   5. Header & Nav
   6. Boutons
   7. Hero
   8. Bande statistiques
   9. Cards génériques
   10. Profils
   11. Étapes
   12. Tarifs / Pricing
   13. FAQ Accordéon
   14. Formulaires
   15. Garanties
   16. Image placeholders
   17. Articles (ressources)
   18. Citation & Bénéfices structurés (turquoise = Catherine)
   19. Knowledge cards (le saviez-vous ?)
   20. Sections utilitaires & CTA
   21. Bandeau cookies
   22. Pages légales
   23. Footer
   24. Responsive
   ================================================================ */

/* ===== 1. VARIABLES ===== */
:root {
  /* PALETTE VERT (couleur primaire — institution Zones Grises, conformité) */
  --green:        #2BB840;
  --green-dark:   #1E9930;
  --green-darker: #146522;
  --green-light:  #EDF9F0;
  --green-bg:     #F4FBF6;

  /* PALETTE TURQUOISE (couleur secondaire — Catherine, vision, parole personnelle) */
  --teal:        #0E7C95;
  --teal-dark:   #0A6079;
  --teal-light:  #E0F2F7;

  /* ORANGE (urgence — stats alarmantes, warnings) */
  --orange:       #D93D07;
  --orange-mid:   #F5821F;
  --orange-light: #FFF2EC;

  /* Neutres */
  --dark:    #141A17;       /* dark teint subtilement vert */
  --text:    #1F2724;
  --muted:   #5C6B62;
  --border:  #DDE5DF;
  --bg:      #FAFCFA;
  --white:   #FFFFFF;

  /* Typographie */
  --display: 'Fraunces', Georgia, serif;
  --body:    'DM Sans', system-ui, sans-serif;

  /* Espacements */
  --s1:  0.25rem;
  --s2:  0.5rem;
  --s3:  0.75rem;
  --s4:  1rem;
  --s5:  1.25rem;
  --s6:  1.5rem;
  --s8:  2rem;
  --s10: 2.5rem;
  --s12: 3rem;
  --s16: 4rem;
  --s20: 5rem;
  --s24: 6rem;

  /* Tailles de texte agrandies (héritage v2) */
  --xs:    0.75rem;
  --sm:    0.875rem;
  --base:  1.0625rem;
  --lg:    1.1875rem;
  --xl:    1.375rem;
  --2xl:   1.625rem;
  --3xl:   2.125rem;
  --4xl:   2.625rem;
  --5xl:   3.5rem;
  --6xl:   4.25rem;

  /* Layout */
  --max-w: 1200px;
  --r:     8px;
  --r-lg:  16px;
  --r-xl:  24px;

  /* Ombres teintées vert (signature visuelle) */
  --sh-sm: 0 2px 8px rgba(43, 184, 60, 0.08);
  --sh:    0 8px 24px rgba(43, 184, 60, 0.10);
  --sh-md: 0 12px 32px rgba(43, 184, 60, 0.13);
  --sh-lg: 0 20px 48px rgba(43, 184, 60, 0.16);
  --sh-xl: 0 28px 64px rgba(43, 184, 60, 0.20);

  /* Ombres turquoise pour zones Catherine */
  --sh-teal: 0 12px 32px rgba(14, 124, 149, 0.15);

  --ease: 220ms cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== 2. RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--body);
  font-size: var(--base);
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--green-dark); text-decoration: none; transition: color var(--ease); }
a:hover { color: var(--green-darker); }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: var(--body); }
input, textarea, select { font-family: var(--body); }

/* ===== 3. LAYOUT ===== */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--s6);
}
.container--narrow { max-width: 800px; }
.section         { padding: var(--s24) 0; }
.section--sm     { padding: var(--s16) 0; }
.section--lg     { padding: var(--s24) 0 calc(var(--s24) + var(--s8)); }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--s10); }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--s8); }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--s6); }
.text-center { text-align: center; }

/* ===== 4. TYPOGRAPHIE ===== */
h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.015em;
  color: var(--dark);
}
h1 { font-size: clamp(2.5rem, 5.5vw, var(--6xl)); font-weight: 800; line-height: 1.05; }
h2 { font-size: clamp(2rem, 4vw, var(--5xl)); line-height: 1.1; }
h3 { font-size: var(--2xl); }
h4 { font-size: var(--xl); }

.lead {
  font-size: var(--lg);
  color: var(--muted);
  line-height: 1.7;
  max-width: 680px;
}
.lead--center { margin: 0 auto; }

.label {
  display: inline-block;
  font-size: var(--xs);
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--green-dark);
  margin-bottom: var(--s4);
}
.label--orange { color: var(--orange); }
.label--green  { color: var(--green-dark); }
.label--teal   { color: var(--teal); }
.label--white  { color: rgba(255, 255, 255, 0.75); }

.section-header { margin-bottom: var(--s16); }
.section-header .lead { margin-top: var(--s5); }
.section-header.text-center .lead { margin: var(--s5) auto 0; }

/* ===== 5. HEADER & NAV ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--sh-sm);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  gap: var(--s6);
}

.logo {
  display: flex;
  align-items: center;
  gap: var(--s3);
  text-decoration: none;
  flex-shrink: 0;
}
.logo img { height: 40px; width: auto; border-radius: var(--r); }
.logo-name {
  font-family: var(--display);
  font-size: var(--xl);
  font-weight: 700;
  color: var(--dark);
  white-space: nowrap;
  letter-spacing: -0.015em;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: var(--s4);
}
.main-nav ul {
  display: flex;
  align-items: center;
  gap: 0;
}
.main-nav ul a {
  font-size: var(--sm);
  font-weight: 500;
  color: var(--text);
  padding: var(--s2) var(--s3);
  border-radius: var(--r);
  transition: all var(--ease);
  white-space: nowrap;
}
.main-nav ul a:hover,
.main-nav ul a.active {
  color: var(--green-dark);
  background: var(--green-light);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: var(--s2);
  border-radius: var(--r);
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: all var(--ease);
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ===== 6. BOUTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--s2);
  padding: 0.85rem 1.6rem;
  font-family: var(--body);
  font-size: var(--base);
  font-weight: 600;
  border-radius: var(--r);
  transition: all var(--ease);
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
  border: 2px solid transparent;
  line-height: 1;
}
.btn--primary {
  background: var(--green);
  color: var(--white);
  border-color: var(--green);
  box-shadow: var(--sh-sm);
}
.btn--primary:hover {
  background: var(--green-dark);
  border-color: var(--green-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--sh-md);
}
.btn--secondary {
  background: transparent;
  color: var(--green-dark);
  border-color: var(--green);
}
.btn--secondary:hover {
  background: var(--green-light);
  color: var(--green-darker);
}
.btn--ghost {
  background: rgba(255, 255, 255, 0.10);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.30);
}
.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.18);
  color: var(--white);
}
.btn--dark {
  background: var(--dark);
  color: var(--white);
  border-color: var(--dark);
}
.btn--dark:hover { background: #283226; color: var(--white); }
.btn--sm  { padding: 0.55rem 1.05rem; font-size: var(--sm); }
.btn--lg  { padding: 1.05rem 2.1rem; font-size: var(--lg); }
.btn--full { width: 100%; }
.btn-group { display: flex; gap: var(--s4); align-items: center; flex-wrap: wrap; }

/* ===== 7. HERO ===== */
.hero {
  background:
    radial-gradient(ellipse at top right, rgba(43, 184, 60, 0.18) 0%, transparent 55%),
    radial-gradient(ellipse at bottom left, rgba(217, 61, 7, 0.10) 0%, transparent 60%),
    var(--dark);
  color: var(--white);
  padding: var(--s24) 0 var(--s20);
  position: relative;
  overflow: hidden;
}
.hero-content { position: relative; z-index: 1; max-width: 820px; }
.hero h1 { color: var(--white); margin-bottom: var(--s8); font-size: clamp(2.5rem, 5.5vw, 4.25rem); }
.hero h1 em {
  font-style: normal;
  color: var(--green);
  background: linear-gradient(120deg, #5BE070 0%, #2BB840 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero .lead { color: rgba(255, 255, 255, 0.78); margin-bottom: var(--s10); max-width: 680px; font-size: var(--xl); }

/* Promo code badge dans hero */
.promo-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--s3);
  background: rgba(43, 184, 60, 0.18);
  border: 1.5px solid rgba(43, 184, 60, 0.45);
  color: #6FE085;
  padding: var(--s2) var(--s4);
  border-radius: 100px;
  font-size: var(--sm);
  font-weight: 600;
  margin-bottom: var(--s6);
}
.promo-badge strong { color: var(--white); font-family: var(--display); letter-spacing: 0.04em; }

/* Section "La bonne foi ne suffit plus" — posture institutionnelle juste après hero */
.posture-section {
  background: var(--green-bg);
  padding: var(--s20) 0;
  border-bottom: 1px solid var(--border);
}
.posture-section .label {
  color: var(--green-dark);
}
.posture-content {
  max-width: 920px;
  margin: 0 auto;
  text-align: center;
}
.posture-content h2 em {
  font-style: normal;
  color: var(--green-dark);
}
.posture-content .lead {
  margin: var(--s8) auto 0;
  font-size: var(--xl);
}

/* ===== 8. BANDE STATISTIQUES ===== */
.stats-band {
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-mid) 100%);
  color: var(--white);
  padding: var(--s12) 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--s8);
  text-align: center;
}
.stat-number {
  font-family: var(--display);
  font-size: clamp(2.4rem, 4.5vw, 3.5rem);
  font-weight: 800;
  line-height: 1;
  margin-bottom: var(--s3);
}
.stat-label { font-size: var(--sm); opacity: 0.9; line-height: 1.4; font-weight: 500; }

/* ===== 9. CARDS GÉNÉRIQUES ===== */
.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: var(--s10);
  transition: all var(--ease);
  box-shadow: var(--sh-sm);
}
.card:hover {
  box-shadow: var(--sh-lg);
  transform: translateY(-4px);
  border-color: rgba(43, 184, 60, 0.18);
}
.card-icon {
  width: 56px;
  height: 56px;
  background: var(--green-light);
  color: var(--green-dark);
  border-radius: var(--r-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  margin-bottom: var(--s5);
  flex-shrink: 0;
}

/* ===== 10. PROFILS ===== */
.profils-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--s8);
}
.profil-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: var(--s10);
  display: flex;
  flex-direction: column;
  gap: var(--s4);
  transition: all var(--ease);
  box-shadow: var(--sh-sm);
}
.profil-card:hover {
  box-shadow: var(--sh-lg);
  transform: translateY(-4px);
  border-color: rgba(43, 184, 60, 0.18);
}
.profil-card .profil-icon { font-size: 2.6rem; line-height: 1; }
.profil-card h3 { font-size: var(--xl); color: var(--dark); }
.profil-card p { color: var(--muted); font-size: var(--base); line-height: 1.7; flex: 1; }
.profil-tag {
  align-self: flex-start;
  font-size: var(--xs);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green-dark);
  background: var(--green-light);
  padding: var(--s1) var(--s3);
  border-radius: 100px;
}

/* ===== 11. ÉTAPES ===== */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s8);
  position: relative;
}
.steps--4 { grid-template-columns: repeat(4, 1fr); }
.steps::before {
  content: '';
  position: absolute;
  top: 32px;
  left: calc(16.67% + var(--s4));
  right: calc(16.67% + var(--s4));
  height: 2px;
  background: var(--border);
}
.steps--4::before {
  left: calc(12.5% + var(--s4));
  right: calc(12.5% + var(--s4));
}
.step {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: var(--s4) var(--s3);
}
.step-number {
  width: 64px;
  height: 64px;
  background: var(--green);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--display);
  font-size: var(--3xl);
  font-weight: 800;
  margin: 0 auto var(--s5);
  box-shadow: 0 0 0 8px var(--green-light), var(--sh);
}
.step h3 { font-size: var(--xl); margin-bottom: var(--s3); }
.step p  { font-size: var(--sm); color: var(--muted); line-height: 1.65; }

/* ===== 12. TARIFS / PRICING ===== */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--s5);
  align-items: start;
}
.pricing-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--r-lg);
  padding: var(--s10) var(--s6);
  text-align: center;
  transition: all var(--ease);
  display: flex;
  flex-direction: column;
  gap: var(--s4);
  box-shadow: var(--sh-sm);
}
.pricing-card:hover {
  box-shadow: var(--sh-lg);
  transform: translateY(-4px);
}
.pricing-card.featured {
  background: linear-gradient(160deg, var(--green) 0%, var(--green-dark) 100%);
  border-color: var(--green);
  transform: scale(1.05);
  box-shadow: var(--sh-xl);
}
.pricing-card.featured:hover { transform: scale(1.05) translateY(-4px); }
.pricing-badge {
  display: inline-block;
  font-size: var(--xs);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: var(--orange-mid);
  color: var(--white);
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: var(--s2);
}
.pack-name {
  font-family: var(--display);
  font-size: var(--2xl);
  font-weight: 700;
  color: var(--dark);
}
.featured .pack-name { color: var(--white); }
.price-amount {
  font-family: var(--display);
  font-size: var(--6xl);
  font-weight: 800;
  color: var(--dark);
  line-height: 1;
  margin: var(--s3) 0;
  letter-spacing: -0.02em;
}
.featured .price-amount { color: var(--white); }
.price-unit {
  font-size: var(--sm);
  color: var(--muted);
  margin-bottom: var(--s5);
}
.featured .price-unit { color: rgba(255, 255, 255, 0.78); }
.pricing-card .btn { width: 100%; }
.featured .btn--primary {
  background: var(--white);
  color: var(--green-darker);
  border-color: var(--white);
}
.featured .btn--primary:hover {
  background: var(--green-light);
  color: var(--green-darker);
  box-shadow: none;
  transform: translateY(-1px);
}
.pricing-note { font-size: var(--xs); color: var(--muted); margin-top: var(--s3); }
.featured .pricing-note { color: rgba(255, 255, 255, 0.7); }

/* Bandeau de réassurance sous la grille tarifs */
.pricing-reassurance {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--s8);
  margin-top: var(--s12);
  padding: var(--s5) var(--s8);
  background: var(--green-light);
  border-radius: var(--r-lg);
  border: 1px solid rgba(43, 184, 60, 0.20);
}
.reassurance-item {
  display: flex;
  align-items: center;
  gap: var(--s2);
  font-size: var(--sm);
  font-weight: 500;
  color: var(--green-darker);
}
.reassurance-item-icon { color: var(--green-dark); font-weight: 700; font-size: var(--lg); }

/* ===== 13. FAQ ACCORDÉON ===== */
.faq-categories { display: flex; flex-direction: column; gap: var(--s12); }
.faq-cat-title {
  font-family: var(--display);
  font-size: var(--2xl);
  font-weight: 700;
  color: var(--dark);
  margin-bottom: var(--s5);
  padding-bottom: var(--s3);
  border-bottom: 2px solid var(--green-light);
  display: flex;
  align-items: center;
  gap: var(--s3);
}
.faq-list { border-top: 1px solid var(--border); }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s4);
  padding: var(--s5) 0;
  text-align: left;
  font-size: var(--lg);
  font-weight: 600;
  color: var(--dark);
  transition: color var(--ease);
}
.faq-question:hover { color: var(--green-dark); }
.faq-icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  background: var(--green-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-dark);
  font-size: var(--xl);
  font-weight: 700;
  transition: all var(--ease);
  line-height: 1;
}
.faq-item.open .faq-icon {
  background: var(--green);
  color: var(--white);
  transform: rotate(45deg);
}
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 320ms ease; }
.faq-answer-inner {
  padding: 0 0 var(--s6);
  color: var(--muted);
  line-height: 1.8;
  font-size: var(--base);
}
.faq-answer-inner strong { color: var(--text); }

/* ===== 14. FORMULAIRES ===== */
.form-group { margin-bottom: var(--s6); }
.form-label {
  display: block;
  font-size: var(--sm);
  font-weight: 600;
  color: var(--text);
  margin-bottom: var(--s2);
}
.form-input,
.form-textarea {
  width: 100%;
  padding: 0.85rem 1.1rem;
  font-size: var(--base);
  color: var(--text);
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--r);
  transition: all var(--ease);
  outline: none;
}
.form-input:focus,
.form-textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 4px rgba(43, 184, 60, 0.12);
}
.form-textarea { min-height: 160px; resize: vertical; }
.form-hint { font-size: var(--xs); color: var(--muted); margin-top: var(--s2); }

/* ===== 15. GARANTIES ===== */
.garanties-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s10);
}
.garantie-item { display: flex; gap: var(--s4); align-items: flex-start; }
.garantie-icon {
  font-size: 1.8rem;
  flex-shrink: 0;
  line-height: 1;
  margin-top: 2px;
  width: 48px;
  height: 48px;
  background: var(--green-light);
  border-radius: var(--r);
  display: flex;
  align-items: center;
  justify-content: center;
}
.garantie-item h4 { font-size: var(--lg); font-weight: 700; margin-bottom: var(--s2); }
.garantie-item p  { font-size: var(--sm); color: var(--muted); line-height: 1.7; }

/* ===== 16. IMAGE PLACEHOLDERS & SCREENSHOTS ===== */
/*
  IMAGES : Pour insérer une image (montage rapport, questionnaire, etc.) :
  1. Ajoutez votre fichier dans assets/img/ (format recommandé : JPG ou WebP)
  2. Remplacez la <div class="img-placeholder"> par :
     <img src="assets/img/votre-image.jpg" alt="Description" class="screenshot">
  3. Si vous êtes dans /ressources/, le chemin devient ../assets/img/...
*/
.img-placeholder {
  width: 100%;
  aspect-ratio: 16/10;
  background: linear-gradient(135deg, var(--green-light) 0%, #c8efcf 100%);
  border: 2px dashed rgba(43, 184, 60, 0.4);
  border-radius: var(--r-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--s3);
  color: var(--green-darker);
  font-size: var(--sm);
  font-weight: 500;
  text-align: center;
  padding: var(--s8);
  box-shadow: var(--sh-sm);
}
.img-placeholder::before { content: '📸'; font-size: 2.8rem; display: block; }
.screenshot {
  border-radius: var(--r-lg);
  box-shadow: var(--sh-lg);
  width: 100%;
  border: 1px solid var(--border);
}

/* ===== 17. ARTICLES (RESSOURCES) ===== */
.article-header {
  background:
    radial-gradient(ellipse at top right, rgba(43, 184, 60, 0.18) 0%, transparent 55%),
    var(--dark);
  color: var(--white);
  padding: var(--s20) 0 var(--s16);
}
.article-header h1 { color: var(--white); }
.article-header .lead { color: rgba(255, 255, 255, 0.75); }
.article-meta {
  display: flex;
  align-items: center;
  gap: var(--s4);
  flex-wrap: wrap;
  margin-bottom: var(--s8);
  font-size: var(--xs);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 600;
}
.article-body { padding: var(--s20) 0; }
.article-content { max-width: 760px; margin: 0 auto; font-size: var(--lg); }
.article-content h2 { font-size: var(--3xl); margin: var(--s12) 0 var(--s5); }
.article-content h3 { font-size: var(--2xl); margin: var(--s10) 0 var(--s3); }
.article-content p  { margin-bottom: var(--s5); line-height: 1.8; color: var(--text); }
.article-content ul {
  list-style: none;
  margin-bottom: var(--s8);
  display: flex;
  flex-direction: column;
  gap: var(--s3);
}
.article-content ul li {
  padding-left: var(--s8);
  position: relative;
  color: var(--muted);
  line-height: 1.7;
}
.article-content ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 800;
  font-size: var(--lg);
}

.callout {
  background: var(--green-light);
  border-left: 4px solid var(--green);
  border-radius: 0 var(--r-lg) var(--r-lg) 0;
  padding: var(--s8);
  margin: var(--s10) 0;
  box-shadow: var(--sh-sm);
}
.callout--orange {
  background: var(--orange-light);
  border-color: var(--orange);
}
.callout--green {
  background: var(--green-light);
  border-color: var(--green);
}
.callout strong { color: var(--dark); }
.callout p { margin: 0; color: var(--text); font-size: var(--base); }

/* Articles index grid */
.articles-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--s8); }
.article-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: all var(--ease);
  display: flex;
  flex-direction: column;
  box-shadow: var(--sh-sm);
}
.article-card:hover {
  box-shadow: var(--sh-lg);
  transform: translateY(-4px);
}
.article-card-header {
  background: linear-gradient(135deg, var(--dark) 0%, #283226 100%);
  padding: var(--s10) var(--s6);
  flex-shrink: 0;
}
.article-card-header .label { margin-bottom: var(--s2); }
.article-card-content { padding: var(--s8); flex: 1; display: flex; flex-direction: column; gap: var(--s4); }
.article-card-date { font-size: var(--xs); color: var(--muted); font-weight: 500; }
.article-card h3 { font-size: var(--xl); }
.article-card h3 a { color: var(--dark); }
.article-card h3 a:hover { color: var(--green-dark); }
.article-card p { font-size: var(--sm); color: var(--muted); flex: 1; line-height: 1.65; }

/* ===== 18. CITATION & BÉNÉFICES STRUCTURÉS — TURQUOISE (zones Catherine) ===== */

/* Section "Catherine parle" — fond turquoise très clair pour signaler la voix personnelle */
.section--catherine {
  background:
    linear-gradient(180deg, var(--bg) 0%, var(--teal-light) 100%);
  position: relative;
}

/* Citation Catherine — encadré expressif turquoise */
.citation {
  background: var(--white);
  border: 1px solid var(--border);
  border-left: 5px solid var(--teal);
  border-radius: var(--r-xl);
  padding: var(--s12);
  margin: var(--s8) 0;
  box-shadow: var(--sh-teal);
  position: relative;
  text-align: center;
}
.citation::before {
  content: '"';
  position: absolute;
  top: -10px;
  left: 32px;
  font-family: var(--display);
  font-size: 6rem;
  font-weight: 800;
  color: var(--teal);
  line-height: 1;
  opacity: 0.85;
}
.citation-text {
  font-family: var(--display);
  font-size: var(--2xl);
  font-style: italic;
  font-weight: 400;
  line-height: 1.5;
  color: var(--text);
  margin-bottom: var(--s5);
}
.citation-author {
  font-family: var(--body);
  font-size: var(--base);
  font-weight: 600;
  color: var(--teal-dark);
  letter-spacing: 0.02em;
}
.citation-author small {
  display: block;
  font-weight: 400;
  color: var(--muted);
  font-size: var(--sm);
  margin-top: 4px;
}

/* Grille des 4 bénéfices structurés (Crédibilité / Diligence / Sérénité / Protection) */
/* Section dark personnalisée avec accents turquoise — c'est la vision de Catherine */
.benefits-section {
  background:
    radial-gradient(ellipse at top right, rgba(14, 124, 149, 0.25) 0%, transparent 55%),
    radial-gradient(ellipse at bottom left, rgba(43, 184, 60, 0.10) 0%, transparent 60%),
    var(--dark);
}
.benefits-section h2 { color: var(--white); }
.benefits-section .label { color: var(--teal); }
.benefits-section .lead { color: rgba(255, 255, 255, 0.75); }

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--s5);
}
.benefit-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: var(--r-lg);
  padding: var(--s8);
  position: relative;
  transition: all var(--ease);
  backdrop-filter: blur(4px);
}
.benefit-card:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(14, 124, 149, 0.40);
  transform: translateY(-3px);
}
.benefit-number {
  font-family: var(--display);
  font-size: var(--5xl);
  font-weight: 800;
  color: var(--teal);
  background: linear-gradient(120deg, #2DD0E8 0%, #0E7C95 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
  margin-bottom: var(--s3);
  letter-spacing: -0.02em;
  opacity: 0.95;
}
.benefit-card h4 {
  font-size: var(--xl);
  font-weight: 700;
  color: var(--white);
  margin-bottom: var(--s3);
}
.benefit-card p {
  font-size: var(--sm);
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.65;
}

/* ===== 19. KNOWLEDGE CARDS (le saviez-vous ?) ===== */
.knowledge-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-left: 5px solid var(--green);
  border-radius: var(--r-lg);
  padding: var(--s8);
  box-shadow: var(--sh-sm);
  display: flex;
  flex-direction: column;
  gap: var(--s3);
}
.knowledge-card--orange { border-left-color: var(--orange); }
.knowledge-card .label { margin-bottom: 0; }
.knowledge-card h4 {
  font-size: var(--xl);
  font-weight: 700;
  color: var(--dark);
}
.knowledge-card p {
  font-size: var(--base);
  color: var(--muted);
  line-height: 1.7;
}

/* ===== 20. SECTIONS UTILITAIRES & CTA ===== */
.section--green-light { background: var(--green-light); }
.section--green-bg    { background: var(--green-bg); }
.section--teal-light  { background: var(--teal-light); }
.section--dark {
  background:
    radial-gradient(ellipse at top right, rgba(43, 184, 60, 0.18) 0%, transparent 60%),
    var(--dark);
  color: var(--white);
}
.section--dark h2, .section--dark h3 { color: var(--white); }
.section--dark .lead { color: rgba(255, 255, 255, 0.75); }
.section--dark .label { color: var(--green); }

.cta-section {
  background:
    radial-gradient(ellipse at center top, rgba(43, 184, 60, 0.20) 0%, transparent 65%),
    linear-gradient(160deg, var(--dark) 0%, #283226 100%);
  padding: var(--s24) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section h2 { color: var(--white); margin-bottom: var(--s5); }
.cta-section .lead { color: rgba(255, 255, 255, 0.72); margin-bottom: var(--s10); font-size: var(--xl); }

.beta-section {
  background: linear-gradient(135deg, #0a1009 0%, #1a2419 100%);
  border: 1px solid rgba(43, 184, 60, 0.30);
  border-radius: var(--r-xl);
  padding: var(--s16);
  position: relative;
  overflow: hidden;
  box-shadow: var(--sh-xl);
}
.beta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(43, 184, 60, 0.18) 0%, transparent 70%);
  pointer-events: none;
}
.beta-section h2 { color: var(--white); }
.beta-section .lead { color: rgba(255, 255, 255, 0.72); }
.beta-benefits {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--s5);
  margin: var(--s10) 0;
}
.beta-benefit {
  display: flex;
  gap: var(--s3);
  align-items: flex-start;
}
.beta-benefit-check {
  width: 26px;
  height: 26px;
  background: var(--green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 13px;
  font-weight: 800;
  flex-shrink: 0;
  margin-top: 2px;
}
.beta-benefit-text { font-size: var(--base); color: rgba(255, 255, 255, 0.78); line-height: 1.65; }
.beta-benefit-text strong { color: var(--white); }

/* Badge inline */
.badge {
  display: inline-flex;
  align-items: center;
  gap: var(--s2);
  font-size: var(--xs);
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 100px;
  letter-spacing: 0.05em;
}
.badge--green  { background: var(--green-light); color: var(--green-dark); }
.badge--orange { background: var(--orange-light); color: var(--orange); }
.badge--teal   { background: var(--teal-light); color: var(--teal-dark); }
.badge--dark   { background: rgba(255, 255, 255, 0.08); color: rgba(255, 255, 255, 0.85); border: 1px solid rgba(255, 255, 255, 0.15); }

/* Liste features rapport */
.report-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--s5);
  margin: var(--s10) 0;
}
.report-feature {
  display: flex;
  gap: var(--s3);
  align-items: flex-start;
}
.report-feature-icon {
  color: var(--green);
  font-size: 1.4rem;
  flex-shrink: 0;
  margin-top: 1px;
  line-height: 1;
}
.report-feature-text h4 { font-size: var(--base); font-weight: 700; margin-bottom: var(--s1); color: var(--dark); }
.report-feature-text p  { font-size: var(--sm); color: var(--muted); line-height: 1.55; }

/* ===== 21. BANDEAU COOKIES ===== */
.cookie-banner {
  position: fixed;
  bottom: var(--s6);
  left: var(--s6);
  max-width: 440px;
  background: var(--dark);
  color: var(--white);
  border-radius: var(--r-lg);
  padding: var(--s6);
  box-shadow: var(--sh-xl);
  z-index: 999;
  display: none;
  border: 1px solid rgba(255, 255, 255, 0.10);
}
.cookie-banner.visible { display: block; }
.cookie-banner p { font-size: var(--sm); margin-bottom: var(--s4); color: rgba(255, 255, 255, 0.82); line-height: 1.6; }
.cookie-banner p a { color: #6FE085; }
.cookie-actions { display: flex; gap: var(--s3); }

/* ===== 22. PAGES LÉGALES ===== */
.legal-hero {
  background:
    radial-gradient(ellipse at top right, rgba(43, 184, 60, 0.18) 0%, transparent 55%),
    var(--dark);
  color: var(--white);
  padding: var(--s16) 0;
}
.legal-hero h1 { color: var(--white); font-size: var(--4xl); }
.legal-hero p  { color: rgba(255, 255, 255, 0.65); font-size: var(--base); margin-top: var(--s3); }
.legal-body  { padding: var(--s20) 0; }
.legal-content { max-width: 800px; margin: 0 auto; font-size: var(--lg); }
.legal-content h2 { font-size: var(--3xl); margin: var(--s12) 0 var(--s5); color: var(--dark); }
.legal-content h3 { font-size: var(--2xl); margin: var(--s10) 0 var(--s3); color: var(--dark); }
.legal-content p  { margin-bottom: var(--s5); color: var(--muted); line-height: 1.8; }
.legal-content ul { list-style: disc; padding-left: var(--s8); margin-bottom: var(--s5); }
.legal-content ul li { margin-bottom: var(--s2); color: var(--muted); }
.legal-placeholder {
  background: var(--green-light);
  border-left: 4px solid var(--green);
  border-radius: 0 var(--r) var(--r) 0;
  padding: var(--s6);
  margin: var(--s8) 0;
  font-size: var(--sm);
  color: var(--green-darker);
}

/* ===== 23. FOOTER ===== */
.site-footer {
  background:
    radial-gradient(ellipse at top right, rgba(43, 184, 60, 0.10) 0%, transparent 60%),
    var(--dark);
  color: rgba(255, 255, 255, 0.7);
  padding: var(--s20) 0 var(--s10);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--s12);
  margin-bottom: var(--s12);
}
.footer-brand img { height: 40px; width: auto; border-radius: var(--r); margin-bottom: var(--s5); }
.footer-brand p { font-size: var(--sm); line-height: 1.7; color: rgba(255, 255, 255, 0.65); }
.footer-badges { display: flex; gap: var(--s3); flex-wrap: wrap; margin-top: var(--s5); }
.footer-col h4 {
  font-family: var(--display);
  font-size: var(--lg);
  font-weight: 700;
  color: var(--white);
  margin-bottom: var(--s5);
}
.footer-col ul li { margin-bottom: var(--s3); }
.footer-col ul a { font-size: var(--sm); color: rgba(255, 255, 255, 0.55); transition: color var(--ease); }
.footer-col ul a:hover { color: #6FE085; }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s4);
  flex-wrap: wrap;
  padding-top: var(--s8);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: var(--xs);
  color: rgba(255, 255, 255, 0.4);
}
.footer-bottom-right { display: flex; gap: var(--s6); }
.footer-bottom-right span { display: flex; align-items: center; gap: var(--s2); }

/* ===== 24. RESPONSIVE ===== */
@media (max-width: 1024px) {
  .pricing-grid    { grid-template-columns: repeat(2, 1fr); }
  .stats-grid      { grid-template-columns: repeat(2, 1fr); }
  .footer-grid     { grid-template-columns: 1fr 1fr; gap: var(--s8); }
  .garanties-grid  { grid-template-columns: repeat(2, 1fr); }
  .articles-grid   { grid-template-columns: repeat(2, 1fr); }
  .benefits-grid   { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .section { padding: var(--s16) 0; }
  .posture-section { padding: var(--s16) 0; }

  /* Nav mobile */
  .main-nav {
    display: none;
    position: fixed;
    inset: 76px 0 0 0;
    background: var(--bg);
    flex-direction: column;
    align-items: flex-start;
    padding: var(--s6);
    gap: var(--s2);
    border-top: 1px solid var(--border);
    overflow-y: auto;
    z-index: 99;
  }
  .main-nav.open { display: flex; }
  .main-nav ul   { flex-direction: column; width: 100%; }
  .main-nav ul a { display: block; padding: var(--s4); font-size: var(--lg); border-radius: var(--r); }
  .main-nav .btn { width: 100%; margin-top: var(--s4); }
  .nav-toggle { display: flex; }

  /* Grilles */
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .profils-grid    { grid-template-columns: 1fr; }
  .steps           { grid-template-columns: 1fr; }
  .steps--4        { grid-template-columns: 1fr; }
  .steps::before, .steps--4::before { display: none; }
  .pricing-grid    { grid-template-columns: 1fr; }
  .pricing-card.featured { transform: none; }
  .articles-grid   { grid-template-columns: 1fr; }
  .stats-grid      { grid-template-columns: repeat(2, 1fr); }
  .footer-grid     { grid-template-columns: 1fr; gap: var(--s8); }
  .garanties-grid  { grid-template-columns: 1fr; }
  .report-features { grid-template-columns: 1fr; }
  .beta-benefits   { grid-template-columns: 1fr; }
  .benefits-grid   { grid-template-columns: 1fr; }

  /* Hero */
  .hero { padding: var(--s16) 0 var(--s12); }
  .btn-group { flex-direction: column; }
  .btn-group .btn { width: 100%; }

  /* Citation */
  .citation { padding: var(--s8); }
  .citation::before { font-size: 4rem; left: 16px; }

  /* Cookie */
  .cookie-banner { left: var(--s4); right: var(--s4); bottom: var(--s4); max-width: none; }

  /* Pricing reassurance */
  .pricing-reassurance { flex-direction: column; gap: var(--s3); align-items: flex-start; }
}

@media (max-width: 480px) {
  .container   { padding: 0 var(--s4); }
  .stats-grid  { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  :root { --base: 1rem; }
}
/* ===== Hotfix responsive — version 3 ===== */

/* Force la grille tarifs à 3 colonnes (3 cartes solo / 3 cartes collectif) */
.pricing-grid {
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 1024px) {
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .pricing-grid { grid-template-columns: 1fr; }

  /* Toggle solo/collectif : passage en colonne pleine largeur sur mobile */
  #packs > div {
    width: 100%;
    flex-direction: column;
    border-radius: var(--r-lg) !important;
  }
  #packs button.pricing-toggle {
    width: 100%;
    text-align: center;
    border-radius: var(--r) !important;
  }

  /* Les cartes tarifs prennent toute la largeur sans débordement */
  .pricing-view { width: 100%; }
  .pricing-card { width: 100%; max-width: 100%; }
}

/* Garde-fous généraux contre le débordement horizontal */
html, body { overflow-x: hidden; }
img, picture, video, iframe { max-width: 100%; height: auto; }
* { box-sizing: border-box; }

/* ===== Header fixe : reste au-dessus de tout, visible en scroll =====
   Définition unique. position:fixed est incompatible avec un ancêtre en
   overflow-x:hidden si on veut que sticky fonctionne — d'où le choix de fixed. */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}

/* Compense la disparition du header dans le flux : espace équivalent en haut du body */
body { padding-top: 76px; }

/* Décale les ancres pour qu'elles ne soient pas cachées sous le header fixe */
:target,
[id] { scroll-margin-top: 90px; }

/* Menu mobile : prend toute la hauteur réelle, espacement réduit, contenu visible d'un coup */
@media (max-width: 768px) {
  .main-nav.open {
    z-index: 9999;
    height: calc(100vh - 76px);
    height: calc(100dvh - 76px);
    inset: 76px 0 auto 0;
    padding: var(--s4);
    gap: 0;
  }
  .main-nav.open ul {
    width: 100%;
    gap: 0;
    margin: 0;
    padding: 0;
  }
  .main-nav.open ul li {
    width: 100%;
    list-style: none;
  }
  .main-nav.open ul a {
    padding: var(--s3) var(--s4);
    font-size: var(--base);
  }
  .main-nav.open .btn {
    width: 100%;
    margin-top: var(--s4);
  }
}

/* ===== Bouton remonter en haut ===== */
.back-to-top {
  position: fixed;
  bottom: var(--s6);
  right: var(--s6);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--green);
  color: var(--white);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  box-shadow: var(--sh);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.25s, visibility 0.25s, transform 0.25s, background 0.2s;
  z-index: 90;
}
.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.back-to-top:hover { background: var(--green-dark); }
.back-to-top:focus-visible {
  outline: 2px solid var(--white);
  outline-offset: 3px;
}

@media (max-width: 768px) {
  .back-to-top {
    bottom: var(--s4);
    right: var(--s4);
    width: 44px;
    height: 44px;
  }
}

/* ==========================================================================
   Classes utilitaires : grilles 2 colonnes pour formulaires
   Remplace les inline `style="display: grid; grid-template-columns: 1fr 1fr"`
   pour respecter les media queries (mobile → 1 colonne automatique).
   ========================================================================== */
.form-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s5);
}
@media (max-width: 640px) {
  .form-row-2 { grid-template-columns: 1fr; }
}

/* Variante de pricing-grid forcée à 3 colonnes (max-width 980px, centrée) */
.pricing-grid--3 {
  grid-template-columns: repeat(3, 1fr);
  max-width: 980px;
  margin: 0 auto;
}
@media (max-width: 1024px) {
  .pricing-grid--3 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .pricing-grid--3 { grid-template-columns: 1fr; }
}

/* ==========================================================================
   Nav : compaction sur écrans intermédiaires (entre 768px et 1100px)
   Évite que "Audit Sémantique Éthique" + autres items ne débordent.
   En dessous de 768px, le menu mobile prend le relais (déjà géré).
   ========================================================================== */
@media (min-width: 769px) and (max-width: 1100px) {
  .main-nav ul a { padding: var(--s2); font-size: 0.85rem; }
  .main-nav { gap: var(--s3); }
}
