/*
Theme Name: NutraConseils
Theme URI: https://nutraconseils.fr
Author: NutraConseils
Description: Thème custom NutraConseils - compléments alimentaires
Version: 2.25.0
Text Domain: nutraconseils
*/

/* ========================
   VARIABLES & RESET
======================== */
:root {
  --color-primary:    #739C7F;
  --color-dark-green: #2A4231;
  --color-mint:       #ABCBB5;
  --color-pale-green: #DEEED9;
  --color-light-mint: #F3FFFB;
  --color-text:       #1F1F1F;
  --color-gray:       #6E7A84;
  --color-white:      #FFFFFF;
  --color-peach:      #FFD0B5;
  --color-terracotta: #ED9969;
  --color-light-gray: #F0F0F0;
  --color-lavender:   #DCDDE8;
  --font-heading:     'Onest', sans-serif;
  --font-body:        'Inter', sans-serif;
  --font-accent:      'Lora', serif;
  --radius-btn:       30px;
  --radius-card:      25px;
  --radius-img:       9px;
  --shadow-card:      0 0 10px rgba(0,0,0,0.15);
  --shadow-hover:     0 0 30px rgba(0,0,0,0.15);
  --container-max:    1280px;

  /* Aliases pour cohérence */
  --color-light-green: #ABCBB5;
  --color-bg-light:    #F3FFFB;
  --color-text-muted:  #6E7A84;
  --color-border:      #E8EDE9;
  --font-serif:        'Lora', serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--color-text);
  line-height: 1.6;
  background: var(--color-white);
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ========================
   TYPOGRAPHY
======================== */
h1, h2, h3, h4, h5, h6 { font-family: var(--font-heading); line-height: 1.2; }

h1 { font-size: clamp(38px, 5vw, 67px); font-weight: 300; }
h2 { font-size: clamp(30px, 4vw, 51px); font-weight: 300; }
h3 { font-size: clamp(24px, 3vw, 38px); font-weight: 400; }
h4 { font-size: clamp(20px, 2.5vw, 28px); font-weight: 500; }
h5 { font-size: clamp(16px, 2vw, 21px); font-weight: 500; line-height: 1.4; }

.section-tag {
  font-family: var(--font-accent);
  font-size: 16px;
  font-weight: 500;
  font-style: italic;
  color: var(--color-primary);
  display: block;
  margin-bottom: 12px;
}

/* ========================
   LAYOUT HELPERS
======================== */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 40px;
}

.section { padding: 80px 0; }

/* ========================
   BUTTONS
======================== */
.btn {
  display: inline-block;
  padding: 16px 30px;
  border-radius: var(--radius-btn);
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
}

.btn-primary {
  background: var(--color-primary);
  color: var(--color-white);
}
.btn-primary:hover {
  background: var(--color-mint);
  color: var(--color-dark-green);
}

.btn-outline {
  background: transparent;
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
}
.btn-outline:hover {
  background: var(--color-primary);
  color: var(--color-white);
}

/* ========================
   HEADER
======================== */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: 72px;
  display: flex;
  align-items: center;
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(42,66,49,.06);
  transition: box-shadow .3s;
}
.site-header.scrolled {
  box-shadow: 0 4px 20px rgba(0,0,0,.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 32px;
}

.site-logo img { height: 42px; width: auto; }

/* Nav links */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
  justify-content: center;
}

.nav-menu > a,
.nav-dropdown-trigger {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 500;
  color: var(--color-text);
  padding: 7px 14px;
  border-radius: 8px;
  transition: background .18s, color .18s;
  white-space: nowrap;
}
.nav-menu > a:hover,
.nav-dropdown-trigger:hover {
  background: var(--color-bg-light);
  color: var(--color-dark-green);
}

/* Page active — pill vert clair */
.nav-menu > a.nav-active,
.nav-dropdown-trigger.nav-active {
  background: var(--color-pale-green);
  color: var(--color-dark-green);
  font-weight: 600;
}

/* Dropdown */
.nav-item-dropdown { position: relative; }

.nav-dropdown-trigger {
  display: flex;
  align-items: center;
  gap: 5px;
  cursor: pointer;
  border: none;
  background: none;
}
.nav-item-dropdown--active .nav-dropdown-trigger {
  background: var(--color-pale-green);
  color: var(--color-dark-green);
  font-weight: 600;
}

.nav-chevron {
  width: 13px; height: 13px;
  transition: transform .22s ease;
  flex-shrink: 0;
  opacity: .6;
}
.nav-item-dropdown:hover .nav-chevron,
.nav-item-dropdown.open  .nav-chevron { transform: rotate(180deg); }

.nav-dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 16px;
  box-shadow: 0 12px 40px rgba(0,0,0,.1);
  padding: 8px;
  padding-top: 16px;
  min-width: 210px;
  opacity: 0;
  visibility: hidden;
  transition: opacity .2s, transform .2s, visibility .2s;
  z-index: 200;
  pointer-events: none;
}
.nav-item-dropdown:hover .nav-dropdown,
.nav-item-dropdown.open  .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}

.nav-dropdown li a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 14px;
  border-radius: 10px;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--color-text);
  transition: background .15s, color .15s;
  white-space: nowrap;
}
.nav-dropdown li a:hover,
.nav-dropdown li a[aria-current="page"] {
  background: var(--color-bg-light);
  color: var(--color-dark-green);
}
.dropdown-svg { color: var(--color-primary); flex-shrink: 0; display: flex; }
.nav-dropdown li + li { border-top: 1px solid var(--color-border); }

/* CTA bouton header */
.nav-cta-btn {
  display: inline-flex;
  align-items: center;
  background: var(--color-dark-green);
  color: #fff !important;
  font-family: var(--font-heading);
  font-size: 13.5px;
  font-weight: 600;
  padding: 9px 20px;
  border-radius: 100px;
  white-space: nowrap;
  transition: background .2s, transform .2s;
  flex-shrink: 0;
}
.nav-cta-btn:hover {
  background: var(--color-primary);
  transform: translateY(-1px);
}

/* Le CTA mobile ne s'affiche que dans le menu ouvert */
.nav-cta-mobile { display: none; }

/* Icônes sociales */
.nav-social {
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav-social a {
  color: var(--color-text-muted);
  transition: color .2s, transform .2s;
  display: flex;
  padding: 4px;
  border-radius: 6px;
}
.nav-social a:hover {
  color: var(--color-dark-green);
  transform: translateY(-1px);
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

/* Sélecteur de langue Polylang */
.nav-lang-switcher ul {
  display: flex;
  align-items: center;
  gap: 2px;
  list-style: none;
  margin: 0;
  padding: 0;
  background: rgba(42,66,49,.08);
  border-radius: 20px;
  padding: 3px;
}
.nav-lang-switcher li a,
.nav-lang-switcher li span {
  display: block;
  padding: 4px 10px;
  border-radius: 16px;
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: var(--color-dark-green);
  text-decoration: none;
  transition: background .15s, color .15s;
}
.nav-lang-switcher li.current-lang a,
.nav-lang-switcher li.current-lang span {
  background: var(--color-dark-green);
  color: #fff;
}
.nav-lang-switcher li a:hover {
  background: var(--color-pale-green);
}

/* Mobile burger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  border-radius: 8px;
  transition: background .2s;
}
.nav-toggle:hover { background: var(--color-bg-light); }
.nav-toggle span {
  display: block;
  width: 22px; height: 2px;
  background: var(--color-text);
  border-radius: 2px;
  transition: all .3s;
}

/* ========================
   HERO
======================== */
.hero {
  padding-top: 80px;
  min-height: 92vh;
  background: linear-gradient(150deg, var(--color-dark-green) 0%, #3D6348 60%, #4A7A5A 100%);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.hero-bg-image {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image:
    linear-gradient(to right, rgba(42,66,49,0.65) 0%, rgba(42,66,49,0.3) 45%, rgba(42,66,49,0.05) 100%),
    url('assets/images/Hero-10.webp');
  background-size: cover;
  background-position: right center;
  background-repeat: no-repeat;
  opacity: 1;
  pointer-events: none;
}
.hero .container {
  position: relative;
  z-index: 1;
}
.hero--centered .hero-content {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
  padding: 80px 0;
}

/* Hero texte gauche */
.hero--left .container {
  margin-left: 0;
  padding-left: clamp(40px, 8vw, 120px);
}
.hero--left .hero-content {
  max-width: 520px;
  padding: 80px 0 100px;
  text-align: left;
  margin-left: 0;
}

/* Image droite */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-visual-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.12);
  box-shadow:
    0 2px 0 rgba(255,255,255,.08) inset,
    0 24px 64px rgba(0,0,0,.3);
}
.hero-visual-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.hero-visual-badge {
  position: absolute;
  bottom: -16px;
  left: -16px;
  background: #fff;
  border-radius: 12px;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .82rem;
  font-weight: 600;
  color: var(--color-dark-green);
  box-shadow: 0 8px 24px rgba(0,0,0,.12);
  white-space: nowrap;
}
.hero-visual-badge svg {
  color: var(--color-primary);
  flex-shrink: 0;
}
.hero .section-tag,
.fondatrice-hero-text .section-tag,
.contact-hero-text .section-tag {
  display: inline-block;
  background: #fff;
  color: var(--color-primary);
  border: 1px solid rgba(255,255,255,.4);
  border-radius: 100px;
  padding: 5px 16px;
  font-size: .8rem;
  letter-spacing: .05em;
  text-transform: uppercase;
  font-style: normal;
  font-family: var(--font-accent);
  font-weight: 600;
}
.hero .section-tag {
  margin-bottom: 24px;
  display: inline-block;
}
.hero h1 {
  color: #fff;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  margin-bottom: 24px;
  line-height: 1.18;
}
.hero h1 em {
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--color-light-green);
}
.hero-lead {
  color: rgba(255,255,255,.82);
  font-size: 1rem;
  line-height: 1.75;
  margin: 0 auto 36px;
  max-width: 600px;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 40px;
}
.btn-ghost {
  background: rgba(255,255,255,.12);
  color: #fff;
  border: 1px solid rgba(255,255,255,.3);
}
.btn-ghost:hover {
  background: rgba(255,255,255,.22);
  color: #fff;
  transform: translateY(-2px);
}
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: flex-start;
}
.hero-trust span {
  color: rgba(255,255,255,.65);
  font-size: .82rem;
  font-weight: 500;
}

.hero-wave {
  position: absolute;
  bottom: -1px;
  left: 0; right: 0;
  line-height: 0;
}
.hero-wave svg { width: 100%; display: block; }

/* Hero animation */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero .section-tag { animation: fadeInUp 0.6s ease 0.1s both; }
.hero h1           { animation: fadeInUp 0.6s ease 0.25s both; }
.hero h5           { animation: fadeInUp 0.6s ease 0.4s both; }
.hero .btn         { animation: fadeInUp 0.6s ease 0.55s both; }

/* ========================
   FEATURES GRID
======================== */
.features {
  background: var(--color-white);
  padding: 70px 0;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.feature-card {
  text-align: center;
  padding: 36px 24px;
  border-radius: var(--radius-card);
  background: var(--color-light-mint);
  transition: box-shadow 0.3s;
}
.feature-card:hover { box-shadow: var(--shadow-hover); }

.feature-icon {
  width: 49px;
  height: 49px;
  margin: 0 auto 18px;
  color: var(--color-primary);
}
.feature-icon svg { width: 100%; height: 100%; }

.feature-card h5 {
  font-size: 15px;
  color: var(--color-dark-green);
  font-weight: 600;
}

/* ========================
   TIMELINE
======================== */
.timeline-section {
  background: var(--color-white);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}


.timeline-header { text-align: center; margin-bottom: 60px; }
.timeline-header h2 { color: var(--color-dark-green); margin-top: 8px; }

.timeline {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: repeating-linear-gradient(
    to bottom,
    var(--color-primary) 0,
    var(--color-primary) 8px,
    transparent 8px,
    transparent 16px
  );
  transform: translateX(-50%);
}

.timeline-item {
  display: flex;
  justify-content: flex-end;
  padding-right: calc(50% + 40px);
  margin-bottom: 48px;
  position: relative;
  opacity: 0;
  transform: translateX(-20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.timeline-item.visible { opacity: 1; transform: translateX(0); }

.timeline-item:nth-child(even) {
  justify-content: flex-start;
  padding-right: 0;
  padding-left: calc(50% + 40px);
  transform: translateX(20px);
}
.timeline-item:nth-child(even).visible { transform: translateX(0); }

.timeline-dot {
  position: absolute;
  left: 50%;
  top: 20px;
  transform: translateX(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--color-dark-green);
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 600;
  z-index: 2;
  flex-shrink: 0;
}

.timeline-card {
  background: var(--color-white);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  padding: 28px 32px;
  max-width: 380px;
  width: 100%;
  transition: box-shadow 0.3s;
}
.timeline-card:hover { box-shadow: var(--shadow-hover); }

.timeline-card h4 {
  color: var(--color-dark-green);
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 12px;
}
.timeline-card p {
  font-size: 14px;
  color: var(--color-gray);
  line-height: 1.6;
  margin-bottom: 10px;
}
.timeline-card ul {
  margin-top: 8px;
}
.timeline-card ul li {
  font-size: 14px;
  color: var(--color-gray);
  padding: 3px 0 3px 16px;
  position: relative;
}
.timeline-card ul li::before {
  content: '–';
  position: absolute;
  left: 0;
  color: var(--color-primary);
}

/* ========================
   SERVICES
======================== */
.services-section {
  background: #fff;
  padding: 100px 0;
}

.services-header { text-align: center; margin-bottom: 56px; }
.services-header h2 { color: var(--color-dark-green); margin-top: 8px; }

.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}
.services-grid--3 {
  grid-template-columns: repeat(3, 1fr);
  align-items: start;
}

/* Nouvelle version cartes service */
.service-card-v2 {
  background: var(--color-bg-light);
  border: 1px solid var(--color-border);
  border-radius: 24px;
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  transition: box-shadow .25s, transform .25s;
}
.service-card-v2:hover {
  box-shadow: 0 16px 48px rgba(42,66,49,.1);
  transform: translateY(-4px);
}
.service-card-v2--featured {
  background: var(--color-dark-green);
  border-color: var(--color-dark-green);
  box-shadow: 0 20px 56px rgba(42,66,49,.22);
}
.service-card-v2-badge {
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  background: var(--color-primary);
  color: #fff;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 5px 18px;
  border-radius: 100px;
  white-space: nowrap;
}
.service-card-v2-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: rgba(115,156,127,.15);
  display: flex; align-items: center; justify-content: center;
  color: var(--color-primary);
}
.service-card-v2--featured .service-card-v2-icon {
  background: rgba(255,255,255,.15);
  color: var(--color-light-green);
}
.service-card-v2-tag {
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--color-primary);
}
.service-card-v2--featured .service-card-v2-tag { color: var(--color-light-green); }

.service-card-v2 h3 {
  color: var(--color-dark-green);
  font-size: clamp(1.1rem, 1.8vw, 1.45rem);
  margin: 0;
}
.service-card-v2--featured h3 { color: #fff; }

.service-card-v2 > p {
  color: var(--color-text-muted);
  font-size: .9rem;
  line-height: 1.7;
  margin: 0;
}
.service-card-v2--featured > p { color: rgba(255,255,255,.72); }

.service-list-v2 {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
  margin: 8px 0 24px;
}
.service-list-v2 li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .88rem;
  color: var(--color-text);
  line-height: 1.5;
}
.service-list-v2 li::before {
  content: '';
  flex-shrink: 0;
  margin-top: 5px;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--color-primary);
}
.service-card-v2--featured .service-list-v2 li { color: rgba(255,255,255,.85); }
.service-card-v2--featured .service-list-v2 li::before { background: var(--color-light-green); }

/* ancienne version — gardée pour compat */
.service-card { display: none; }

/* ========================
   BLOG CATÉGORIES
======================== */
.blog-section { background: var(--color-white); }

.blog-header {
  text-align: center;
  margin-bottom: 52px;
}
.blog-header h2 { color: var(--color-dark-green); margin: 8px 0 16px; }
.blog-header p  { color: var(--color-gray); max-width: 560px; margin: 0 auto; font-size: 16px; }

.blog-categories-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.blog-cat-card {
  display: flex;
  flex-direction: column;
  border-radius: var(--radius-card);
  overflow: hidden;
  padding: 36px 28px 28px;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
  text-decoration: none;
}
.blog-cat-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}

/* couleurs par catégorie */
.blog-cat--ingredients    { background: #4A7A5A; }
.blog-cat--ingredients .blog-cat-body h4 { color: #fff; }
.blog-cat--ingredients .blog-cat-body p  { color: rgba(255,255,255,.7); }
.blog-cat--ingredients .blog-cat-arrow   { color: var(--color-mint); }
.blog-cat--reglementations { background: var(--color-pale-green); }
.blog-cat--marketing      { background: #FFF5EE; }
.blog-cat--rd             { background: var(--color-lavender); }

.blog-cat-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  background: rgba(255,255,255,0.7);
  flex-shrink: 0;
}
.blog-cat-icon svg {
  width: 28px;
  height: 28px;
  color: var(--color-dark-green);
}

.blog-cat-body { flex: 1; }
.blog-cat-body h4 {
  font-size: 18px;
  font-weight: 600;
  color: var(--color-dark-green);
  margin-bottom: 10px;
}
.blog-cat-body p {
  font-size: 13px;
  color: var(--color-gray);
  line-height: 1.6;
}

.blog-cat-arrow {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-top: 24px;
  color: var(--color-primary);
  transition: transform 0.2s ease;
}
.blog-cat-arrow svg { width: 20px; height: 20px; }
.blog-cat-card:hover .blog-cat-arrow { transform: translateX(6px); }

@media (max-width: 1024px) {
  .blog-categories-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 767px) {
  .blog-categories-grid { grid-template-columns: 1fr; gap: 16px; }
}

/* ========================
   FOUNDER
======================== */
.founder-section {
  background: var(--color-pale-green);
  padding: 100px 0;
}
.founder-inner {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 72px;
  align-items: center;
}
.founder-photo {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(42,66,49,.15);
  aspect-ratio: 1;
}
.founder-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.founder-content .section-tag { margin-bottom: 12px; }
.founder-content h2 {
  color: var(--color-dark-green);
  margin-bottom: 4px;
}
.founder-title {
  color: var(--color-primary);
  font-size: .9rem;
  font-weight: 600;
  margin-bottom: 24px !important;
}
.founder-quote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--color-dark-green);
  border-left: 3px solid var(--color-primary);
  padding-left: 20px;
  margin: 0 0 24px;
  line-height: 1.65;
}
.founder-content p {
  color: var(--color-gray);
  line-height: 1.75;
  margin-bottom: 32px;
}

/* ========================
   STATS (kept for compat)
======================== */
.stats-section { display: none; }
.stat-number {
  font-family: var(--font-heading);
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 300;
  line-height: 1;
  display: block;
}

/* ========================
   BOTTOM CTA
======================== */
.bottom-cta {
  background: var(--color-pale-green);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.bottom-cta::before {
  content: '';
  position: absolute;
  right: -80px; top: -80px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: rgba(115,156,127,.15);
  pointer-events: none;
}
.bottom-cta-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 64px;
  align-items: center;
  position: relative;
}
.bottom-cta-text h2 { color: var(--color-dark-green); margin-bottom: 16px; font-size: clamp(1.5rem, 2.5vw, 2.2rem); }
.bottom-cta-text p  { color: var(--color-text-muted, #6E7A84); margin-bottom: 32px; max-width: 480px; line-height: 1.7; }
.bottom-cta-image img { width: 280px; border-radius: 16px; display: block; }

/* ========================
   FOOTER
======================== */
.footer-cta {
  background: var(--color-pale-green);
  padding: 56px 0;
  position: relative;
  overflow: hidden;
}
.footer-cta::before {
  content: '';
  position: absolute;
  right: -80px; top: -80px;
  width: 360px; height: 360px;
  border-radius: 50%;
  background: rgba(115,156,127,.15);
  pointer-events: none;
}
.footer-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  position: relative;
}
.footer-cta h4 { color: var(--color-dark-green); max-width: 400px; font-size: clamp(1.2rem, 2vw, 1.6rem); }
.footer-cta-image img { height: 160px; width: auto; }

/* ========================
   BARRE CTA FOOTER
======================== */
.footer-rdv-bar {
  background: var(--color-primary);
  padding: 36px 0;
}
.footer-rdv-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.footer-rdv-bar-title {
  color: #fff;
  font-size: 1.15rem;
  font-weight: 700;
  font-family: var(--font-heading);
  margin: 0 0 4px;
}
.footer-rdv-bar-sub {
  color: rgba(255,255,255,.8);
  font-size: .9rem;
  margin: 0;
}
.footer-rdv-bar-btn {
  background: #fff;
  color: var(--color-dark-green);
  white-space: nowrap;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: var(--radius-btn);
  font-weight: 700;
  font-size: .95rem;
  text-decoration: none;
  transition: background .2s;
}
.footer-rdv-bar-btn:hover { background: var(--color-pale-green); }

/* ========================
   FOOTER PRINCIPAL
======================== */
.footer-main {
  background: var(--color-dark-green);
  padding: 64px 0 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.4fr;
  gap: 60px;
  margin-bottom: 48px;
}

.footer-logo-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border-radius: 16px;
  padding: 14px 20px;
  margin-bottom: 20px;
}
.footer-logo-wrap img { display: block; width: 110px; height: auto; }
.footer-logo p {
  color: var(--color-mint);
  font-size: 13.5px;
  line-height: 1.7;
  max-width: 280px;
  margin-bottom: 20px;
}

.footer-col h5 {
  color: var(--color-white);
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}

.footer-links { list-style: none; padding: 0; }
.footer-links li { margin-bottom: 10px; }
.footer-links a {
  color: var(--color-mint);
  font-size: 14px;
  text-decoration: none;
  transition: color 0.2s, padding-left 0.2s;
  display: inline-block;
}
.footer-links a:hover { color: var(--color-white); padding-left: 4px; }

.footer-contact-block {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--color-mint);
  font-size: 13.5px;
}
.footer-contact-item svg { flex-shrink: 0; color: var(--color-primary); }
.footer-contact-item a {
  color: var(--color-mint);
  text-decoration: none;
  transition: color .2s;
}
.footer-contact-item a:hover { color: #fff; }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-copyright {
  color: rgba(255,255,255,0.4);
  font-size: 12.5px;
  margin: 0;
}

/* ========================
   BANDEAU COOKIES
======================== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: var(--color-dark-green);
  color: #fff;
  padding: 20px 0;
  box-shadow: 0 -4px 24px rgba(0,0,0,0.15);
}
.cookie-banner-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}
.cookie-banner-text { flex: 1; min-width: 260px; }
.cookie-banner-text strong { font-size: 15px; display: block; margin-bottom: 4px; }
.cookie-banner-text p { font-size: 13px; color: rgba(255,255,255,.75); margin: 0; line-height: 1.5; }
.cookie-banner-text a { color: var(--color-mint); text-decoration: underline; }
.cookie-banner-actions { display: flex; gap: 12px; flex-shrink: 0; }
.cookie-btn {
  padding: 10px 22px;
  border-radius: var(--radius-btn);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: opacity .2s;
}
.cookie-btn:hover { opacity: .85; }
.cookie-btn--accept { background: var(--color-primary); color: #fff; }
.cookie-btn--refuse { background: transparent; color: #fff; border: 1px solid rgba(255,255,255,.4); }

@media (max-width: 767px) {
  .cookie-banner-inner { flex-direction: column; align-items: flex-start; gap: 16px; padding: 0 20px; }
  .cookie-banner-actions { width: 100%; }
  .cookie-btn { flex: 1; text-align: center; }
}

/* ========================
   MENTIONS LÉGALES
======================== */
.mentions-hero {
  background: linear-gradient(150deg, var(--color-dark-green) 0%, #3D6348 100%);
  padding: 120px 0 60px;
}
.mentions-hero .section-tag { color: var(--color-mint); }
.mentions-hero h1 { color: #fff; margin-top: 10px; }

.mentions-inner {
  max-width: 780px;
  margin: 0 auto;
}
.mentions-date {
  color: var(--color-gray);
  font-size: 14px;
  margin-bottom: 32px;
}
.mentions-inner p {
  color: var(--color-text);
  line-height: 1.8;
  margin-bottom: 16px;
}
.mentions-inner h2 {
  font-size: 22px;
  font-weight: 600;
  color: var(--color-dark-green);
  margin: 40px 0 16px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--color-pale-green);
}
.mentions-inner ul {
  margin: 12px 0 16px 20px;
  list-style: disc;
}
.mentions-inner ul li {
  color: var(--color-text);
  line-height: 1.8;
  margin-bottom: 6px;
}
.mentions-inner a {
  color: var(--color-primary);
  text-decoration: underline;
}
.footer-copyright a { color: var(--color-primary); transition: color 0.2s; }
.footer-copyright a:hover { color: var(--color-white); }

.footer-social {
  display: flex;
  gap: 10px;
}
.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  background: rgba(255,255,255,.1);
  border-radius: 50%;
  color: var(--color-mint);
  transition: background .2s, color .2s;
}
.footer-social a:hover {
  background: rgba(255,255,255,.2);
  color: #fff;
}
.footer-social svg { width: 18px; height: 18px; }

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

/* --- Tablette large (≤ 1024px) --- */
@media (max-width: 1024px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid    { grid-template-columns: repeat(2, 1fr); }

  /* Footer : 3 colonnes → 1 colonne pour éviter le bloc orphelin */
  .footer-grid   { grid-template-columns: 1fr; gap: 36px; }

  /* Nav : masquer icônes sociales sur tablette */
  .nav-social    { display: none; }
}

/* --- Tablette intermédiaire (≤ 900px) --- */
@media (max-width: 900px) {
  .services-grid { grid-template-columns: 1fr; }
  .service-card img { height: 260px; }
}

/* --- Mobile (≤ 767px) --- */
@media (max-width: 767px) {
  .container { padding: 0 20px; }
  .section   { padding: 60px 0; }

  /* Header mobile */
  .nav-menu   { display: none; }
  .nav-toggle { display: flex; }
  .nav-cta-btn { display: none; }

  .nav-menu.open {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    position: fixed;
    top: 72px; left: 0; right: 0;
    background: #fff;
    border-top: 1px solid var(--color-border);
    padding: 16px 20px 24px;
    gap: 4px;
    box-shadow: 0 12px 32px rgba(0,0,0,.1);
    z-index: 999;
    max-height: calc(100vh - 72px);
    overflow-y: auto;
  }
  .nav-menu.open > a,
  .nav-menu.open .nav-dropdown-trigger {
    padding: 12px 16px;
    border-radius: 10px;
    font-size: 15px;
    width: 100%;
  }
  .nav-menu.open .nav-cta-mobile {
    display: inline-flex;
    margin-top: 8px;
    background: var(--color-dark-green);
    color: #fff;
    padding: 13px 20px;
    border-radius: 100px;
    font-weight: 600;
    text-align: center;
    justify-content: center;
  }

  /* Sélecteur de langue : masqué sur mobile (peu utile sans traduction) */
  .nav-lang-switcher { display: none; }

  /* Hero : 100svh pour iOS */
  .hero { min-height: 100vh; min-height: 100svh; }

  /* Dropdown dans le menu burger : s'ouvre en ligne */
  .nav-dropdown {
    position: static;
    transform: none !important;
    box-shadow: none;
    border-radius: 12px;
    background: var(--color-light-mint);
    padding: 4px 0 4px 12px;
    margin-top: 4px;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    display: none;
    min-width: unset;
  }
  .nav-dropdown::before { display: none; }
  .nav-item-dropdown.open .nav-dropdown { display: block; }
  .nav-dropdown li + li { border-top-color: rgba(0,0,0,0.06); }
  .hero-content { padding: 60px 0 80px; }

  /* Features : 2 colonnes en mobile paysage, 1 en portrait très étroit */
  .features-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }

  /* Timeline : tout à gauche, pas d'alternance */
  .timeline::before { left: 24px; transform: none; }
  .timeline-item,
  .timeline-item:nth-child(even) {
    padding-left: 72px;
    padding-right: 0;
    justify-content: flex-start;
    opacity: 0;           /* conserve l'animation fade */
    transform: none;      /* supprime le slide latéral */
  }
  .timeline-item.visible,
  .timeline-item:nth-child(even).visible {
    opacity: 1;
    transform: none;
  }
  .timeline-dot { left: 0; transform: none; }

  /* Stats : padding réduit */
  .stats-inner {
    border-radius: 25px 0 0 0;
    padding: 40px 20px;
  }

  /* Footer */
  .footer-rdv-bar-inner { flex-direction: column; text-align: center; gap: 20px; }
  .footer-rdv-bar-btn   { width: 100%; justify-content: center; }
  .footer-grid          { gap: 28px; }

  /* Bottom CTA visible uniquement sur mobile */
  .bottom-cta { display: block; }
}

/* --- Très petit écran (≤ 400px) --- */
@media (max-width: 400px) {
  .features-grid { grid-template-columns: 1fr; }
  .stats-grid    { grid-template-columns: 1fr; }
  .btn           { width: 100%; text-align: center; }
}

/* ========================
   BLOG — ARCHIVE & LISTING
======================== */
.blog-main { padding-top: 80px; }

/* Hero archive — réutilise le style blog-hero */
.blog-archive-hero-inner {
  padding-bottom: 80px;
  position: relative;
  z-index: 1;
  max-width: 100%;
}

.blog-archive-breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .85rem;
  color: rgba(255,255,255,.6);
  margin-bottom: 16px;
}
.blog-archive-breadcrumb a {
  color: rgba(255,255,255,.75);
  text-decoration: none;
  transition: color .15s;
}
.blog-archive-breadcrumb a:hover { color: #fff; }
.blog-archive-breadcrumb span:last-child {
  color: #fff;
  font-weight: 600;
}

/* Section filtres sous la wave */
.blog-archive-filters-section {
  background: #fff;
  padding: 28px 0 0;
}

/* Filtres */
.blog-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}
.blog-filter-btn {
  padding: 8px 20px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 500;
  font-family: var(--font-heading);
  color: var(--color-gray);
  background: var(--color-white);
  border: 2px solid var(--color-light-gray);
  transition: all 0.2s;
  cursor: pointer;
  text-decoration: none;
}
.blog-filter-btn:hover,
.blog-filter-btn.active {
  background: var(--color-dark-green);
  border-color: var(--color-dark-green);
  color: var(--color-white);
}

/* Grille */
.blog-grid-section { padding: 60px 0 80px; }
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

/* Carte article */
.blog-card {
  background: var(--color-white);
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s, box-shadow 0.3s;
}
.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.blog-card-thumb {
  position: relative;
  display: block;
  overflow: hidden;
  /* aspect-ratio réserve l'espace avant chargement → zéro layout shift */
  aspect-ratio: 16 / 9;
  flex-shrink: 0;
  background: var(--color-light-mint); /* fond pendant le chargement */
}
.blog-card-thumb .blog-card-vignette,
.blog-card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.blog-card-thumb svg { width: 100%; height: 100%; display: block; }
/* SVG vignette généré : pas de zoom au hover */
.blog-card-thumb .vignette-svg { width: 100%; height: 100%; }
.blog-card:hover .blog-card-thumb img { transform: scale(1.04); }

/* Badges catégorie */
.blog-card-cat {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 5px 14px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  font-family: var(--font-heading);
  letter-spacing: 0.02em;
}
.blog-cat-badge--ingredients     { background: #2A4231; color: #ABCBB5; }
.blog-cat-badge--reglementations { background: var(--color-white); color: var(--color-dark-green); }
.blog-cat-badge--marketing       { background: #9B4B10; color: #FFF5EE; }
.blog-cat-badge--rd              { background: #2D3065; color: #DCDDE8; }

.blog-card-body {
  padding: 24px 28px 28px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.blog-card-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--color-gray);
  margin-bottom: 12px;
}
.blog-card-meta-sep { opacity: 0.4; }

.blog-card-title {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.35;
  margin-bottom: 12px;
  flex: 1;
}
.blog-card-title a { color: var(--color-dark-green); transition: color 0.2s; }
.blog-card-title a:hover { color: var(--color-primary); }

.blog-card-excerpt {
  font-size: 14px;
  color: var(--color-gray);
  line-height: 1.6;
  margin-bottom: 20px;
}

.blog-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--color-primary);
  transition: gap 0.2s, color 0.2s;
  margin-top: auto;
}
.blog-card-link svg { width: 16px; height: 16px; }
.blog-card:hover .blog-card-link { gap: 10px; color: var(--color-dark-green); }

/* Filtrage catégories */
.blog-card--hidden { display: none; }

/* Pagination */
.blog-pagination {
  display: flex;
  justify-content: center;
  margin-top: 48px;
}
.blog-pagination .nav-links { display: flex; gap: 8px; align-items: center; }
.blog-pagination .page-numbers {
  padding: 8px 16px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 500;
  color: var(--color-gray);
  background: var(--color-light-gray);
  transition: all 0.2s;
  text-decoration: none;
}
.blog-pagination .page-numbers.current,
.blog-pagination .page-numbers:hover {
  background: var(--color-dark-green);
  color: var(--color-white);
}

/* Vide */
.blog-empty { text-align: center; padding: 80px 0; }
.blog-empty p { color: var(--color-gray); margin-bottom: 24px; }

/* ========================
   BLOG — HERO + DERNIERS ARTICLES
======================== */

/* --- Hero (même structure que La fondatrice) --- */
.blog-hero {
  background: linear-gradient(135deg, var(--color-dark-green) 0%, #3D6348 100%);
  padding: 120px 0 0;
  position: relative;
  overflow: hidden;
  color: #fff;
}
.blog-hero::before {
  content: '';
  position: absolute;
  top: -120px; right: -120px;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: rgba(115,156,127,.15);
  pointer-events: none;
}
.blog-hero::after {
  content: '';
  position: absolute;
  bottom: -80px; left: -80px;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: rgba(115,156,127,.10);
  pointer-events: none;
}

/* Hero 3 colonnes : logo | texte | catégories */
.blog-hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 64px;
  align-items: center;
  padding-bottom: 80px;
}

.blog-hero-logo-col {
  display: flex;
  align-items: center;
  justify-content: center;
}
.blog-hero-logo-wrap {
  background: #ffffff;
  border-radius: 28px;
  padding: 28px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 32px rgba(0,0,0,.15);
}
.blog-hero-logo {
  width: 170px;
  height: auto;
  display: block;
}
.blog-hero-text-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

/* section-tag identique à la fondatrice : badge pill blanc */
.blog-hero-inner .section-tag {
  display: inline-block;
  background: #fff;
  color: var(--color-primary);
  border: 1px solid rgba(255,255,255,.4);
  border-radius: 100px;
  padding: 5px 16px;
  font-size: .8rem;
  letter-spacing: .05em;
  text-transform: uppercase;
  font-style: normal;
  font-family: var(--font-accent);
  font-weight: 600;
  margin-bottom: 20px;
}

/* h1 : grand et élégant */
.blog-hero-title {
  font-size: clamp(2.8rem, 5vw, 4rem);
  font-weight: 300;
  color: #fff;
  margin: 0 0 20px;
  line-height: 1.1;
}

.blog-hero-lead {
  font-size: 1rem;
  color: rgba(255,255,255,.85);
  margin: 0 0 20px;
  line-height: 1.7;
}
.blog-hero-count {
  font-size: .82rem;
  color: rgba(255,255,255,.55);
  margin: 0;
}

/* Colonne catégories — cartes empilées verticalement */
.blog-hero-cats-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.blog-hero-skill {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #ffffff;
  border-radius: 16px;
  padding: 16px 20px;
  font-size: .92rem;
  font-weight: 600;
  color: var(--color-dark-green);
  text-decoration: none;
  box-shadow: 0 2px 14px rgba(0,0,0,.10);
  transition: transform 0.18s, box-shadow 0.18s;
  border-left: 4px solid transparent;
}
.blog-hero-skill:hover {
  transform: translateX(5px);
  box-shadow: 0 8px 28px rgba(0,0,0,.28);
}
.blog-hero-skill > svg:first-child {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
}
.blog-hero-skill-arrow {
  margin-left: auto;
  flex-shrink: 0;
  opacity: .35;
  transition: opacity .18s, transform .18s;
}
.blog-hero-skill:hover .blog-hero-skill-arrow {
  opacity: .8;
  transform: translateX(3px);
}

/* Fond dégradé coloré par catégorie */
.blog-hero-skill--ingredients {
  background: linear-gradient(135deg, #2E7D32 0%, #43A047 100%);
  border-left-color: #A5D6A7;
  color: #fff;
}
.blog-hero-skill--ingredients > svg:first-child { color: #A5D6A7; }

.blog-hero-skill--reglementations {
  background: linear-gradient(135deg, #1565C0 0%, #1E88E5 100%);
  border-left-color: #90CAF9;
  color: #fff;
}
.blog-hero-skill--reglementations > svg:first-child { color: #90CAF9; }

.blog-hero-skill--rd {
  background: linear-gradient(135deg, #6A1B9A 0%, #8E24AA 100%);
  border-left-color: #CE93D8;
  color: #fff;
}
.blog-hero-skill--rd > svg:first-child { color: #CE93D8; }

.blog-hero-skill--marketing {
  background: linear-gradient(135deg, #BF360C 0%, #E64A19 100%);
  border-left-color: #FFD0B5;
  color: #fff;
}
.blog-hero-skill--marketing > svg:first-child { color: #FFD0B5; }

/* ========================
   BLOG — SECTION CATÉGORIES
======================== */
.blog-cats-section {
  padding: 64px 0 56px;
  background: #fff;
}

.blog-cats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.blog-cat-card {
  border-radius: 24px;
  padding: 36px 28px 32px;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform 0.22s, box-shadow 0.22s;
  position: relative;
  overflow: hidden;
  min-height: 280px;
}
.blog-cat-card::before {
  content: '';
  position: absolute;
  top: -50px; right: -50px;
  width: 180px; height: 180px;
  border-radius: 50%;
  background: rgba(255,255,255,.1);
  pointer-events: none;
}
.blog-cat-card::after {
  content: '';
  position: absolute;
  bottom: -70px; left: -30px;
  width: 220px; height: 220px;
  border-radius: 50%;
  background: rgba(255,255,255,.07);
  pointer-events: none;
}
.blog-cat-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 56px rgba(0,0,0,.22);
}
.blog-cat-card-icon {
  width: 56px;
  height: 56px;
  background: rgba(255,255,255,.2);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  position: relative;
  flex-shrink: 0;
}
.blog-cat-card h3 {
  color: #fff;
  font-size: 1.3rem;
  font-weight: 700;
  font-family: var(--font-heading);
  margin: 0;
  position: relative;
}
.blog-cat-card p {
  color: rgba(255,255,255,.82);
  font-size: .88rem;
  line-height: 1.65;
  flex: 1;
  margin: 0;
  position: relative;
}
.blog-cat-card-cta {
  color: #fff;
  font-size: .85rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  position: relative;
  margin-top: 4px;
  transition: gap .18s;
}
.blog-cat-card:hover .blog-cat-card-cta { gap: 10px; }

.blog-cat-card--ingredients    { background: linear-gradient(135deg, #1B5E20 0%, #388E3C 100%); }
.blog-cat-card--reglementations { background: linear-gradient(135deg, #0D47A1 0%, #1976D2 100%); }
.blog-cat-card--rd              { background: linear-gradient(135deg, #4527A0 0%, #7B1FA2 100%); }
.blog-cat-card--marketing       { background: linear-gradient(135deg, #BF360C 0%, #F4511E 100%); }

@media (max-width: 900px) {
  .blog-cats-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 540px) {
  .blog-cats-grid { grid-template-columns: 1fr; }
  .blog-cat-card  { min-height: auto; }
}

/* --- Section derniers articles --- */
.blog-latest-section { padding: 60px 0 80px; }

.blog-latest-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--color-dark-green);
  margin: 0 0 24px;
  padding-bottom: 14px;
  border-bottom: 2px solid var(--color-pale-green);
}

.blog-latest-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* Carte horizontale compacte */
.blog-latest-card {
  display: flex;
  align-items: stretch;
  background: #fff;
  border: 1px solid rgba(42,66,49,.10);
  border-radius: 14px;
  overflow: hidden;
  transition: box-shadow 0.2s, transform 0.18s;
  min-height: 120px;
}
.blog-latest-card:hover {
  box-shadow: 0 6px 24px rgba(42,66,49,.10);
  transform: translateY(-2px);
}

/* Vignette à gauche — même hauteur que la carte */
.blog-latest-thumb {
  flex-shrink: 0;
  width: 160px;
  position: relative;
  overflow: hidden;
}
.blog-latest-thumb .vignette-svg,
.blog-latest-thumb .blog-latest-vignette {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.blog-latest-thumb .vignette-svg svg {
  width: 100%;
  height: 100%;
}

/* Couleur de fond fallback par catégorie */
.blog-latest-thumb--ingredients     { background: #DEEED9; }
.blog-latest-thumb--reglementations { background: #DCE3F0; }
.blog-latest-thumb--rd              { background: #E8E3F0; }
.blog-latest-thumb--marketing       { background: #F5E8DC; }
.blog-latest-thumb--default         { background: #DEEED9; }

/* Corps texte */
.blog-latest-body {
  flex: 1;
  padding: 18px 22px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  min-width: 0;
}

.blog-latest-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.blog-latest-badge {
  padding: 2px 10px;
  border-radius: 20px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.blog-latest-date,
.blog-latest-time {
  font-size: 0.75rem;
  color: #8A9B90;
}

.blog-latest-heading {
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-dark-green);
  line-height: 1.3;
  margin: 0;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.blog-latest-heading a {
  color: inherit;
  text-decoration: none;
}
.blog-latest-heading a:hover { color: var(--color-primary); }

.blog-latest-excerpt {
  font-size: 0.82rem;
  color: #6B7F72;
  margin: 0;
  line-height: 1.5;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}

.blog-latest-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 4px;
  padding: 7px 18px;
  background: var(--color-dark-green);
  color: #fff;
  border-radius: 30px;
  font-size: 0.8rem;
  font-weight: 600;
  text-decoration: none;
  align-self: flex-start;
  transition: background 0.2s, gap 0.2s;
}
.blog-latest-cta:hover {
  background: var(--color-primary);
  gap: 10px;
}

/* Responsive blog hero */
@media (max-width: 1100px) {
  .blog-hero-inner {
    grid-template-columns: 1fr 280px;
    gap: 40px;
  }
}
@media (max-width: 860px) {
  .blog-hero-inner {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
  }
  .blog-hero-text-col { align-items: center; }
  .blog-hero-cats-col { max-width: 380px; margin: 0 auto; width: 100%; }
  .blog-hero-skill { text-align: left; }
}
@media (max-width: 640px) {
  .blog-hero { padding: 70px 0 52px; }
  .blog-hero-title { font-size: 2rem; }
  .blog-hero-lead { font-size: 0.93rem; }
}
@media (max-width: 420px) {
  .blog-hero-cats-col { max-width: 300px; }
}

/* ========================
   BLOG HOME — LAYOUT PAGE
======================== */

.blog-body-section { padding: 60px 0 80px; }

/* 2 colonnes : articles + sidebar */
.blog-page-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 48px;
  align-items: start;
}

/* ---- Blocs catégorie ---- */
.blog-cat-block {
  margin-bottom: 56px;
}
.blog-cat-block:last-child { margin-bottom: 0; }

.blog-cat-block-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 2px solid var(--color-pale-green);
}

/* Badge catégorie — fond coloré charte, texte clair */
.blog-cat-block-header .blog-badge {
  font-size: 1.1rem;
  font-weight: 700;
  padding: 8px 22px;
  border-radius: 30px;
  letter-spacing: 0;
  text-transform: none;
}
.blog-cat-block-header .blog-badge--ingredients     { background: #2A4231; color: #ABCBB5; }
.blog-cat-block-header .blog-badge--reglementations { background: #3D6348; color: #DEEED9; }
.blog-cat-block-header .blog-badge--rd              { background: #2D3065; color: #DCDDE8; }
.blog-cat-block-header .blog-badge--marketing       { background: #9B4B10; color: #FFD0B5; }

.blog-cat-see-all {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--color-primary);
  text-decoration: none;
  transition: gap 0.2s, color 0.2s;
}
.blog-cat-see-all:hover { gap: 10px; color: var(--color-dark-green); }

.blog-cat-articles {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* Sidebar */
.blog-page-sidebar {
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: sticky;
  top: 100px;
}

/* Responsive layout */
@media (max-width: 1024px) {
  .blog-page-layout { grid-template-columns: 1fr; }
  .blog-page-sidebar { position: static; }
}

/* ========================
   BLOG HOME — CARTES HORIZONTALES
======================== */

/* Liste verticale de cartes horizontales */
.blog-articles-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Carte de base : image gauche, texte droite */
.blog-hcard {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  text-decoration: none;
  border: 1px solid rgba(42,66,49,.09);
  transition: box-shadow 0.22s, transform 0.2s;
  min-height: 120px;
}
.blog-hcard:hover {
  box-shadow: 0 6px 28px rgba(42,66,49,.12);
  transform: translateY(-2px);
}

/* Carte article mis en avant (index 0) : plus grande */
.blog-hcard--featured {
  min-height: 220px;
  border-radius: 20px;
  box-shadow: 0 2px 18px rgba(42,66,49,.08);
}
.blog-hcard--featured:hover {
  box-shadow: 0 10px 36px rgba(42,66,49,.15);
}

/* Vignette / thumbnail — côté gauche */
.blog-hcard-thumb {
  flex-shrink: 0;
  width: 200px;
  position: relative;
  overflow: hidden;
}
.blog-hcard--featured .blog-hcard-thumb {
  width: 340px;
}
.blog-hcard-thumb .vignette-svg,
.blog-hcard-thumb .blog-featured-vignette,
.blog-hcard-thumb .blog-grid-vignette {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.blog-hcard-thumb .vignette-svg svg {
  width: 100%;
  height: 100%;
}

/* Couleurs de fond par catégorie */
.blog-thumb--ingredients     { background: #DEEED9; }
.blog-thumb--reglementations { background: #DCE3F0; }
.blog-thumb--rd              { background: #E8E3F0; }
.blog-thumb--marketing       { background: #F5E8DC; }
.blog-thumb--default         { background: #DEEED9; }

/* Corps texte — côté droit */
.blog-hcard-body {
  flex: 1;
  padding: 20px 26px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
  min-width: 0;
}
.blog-hcard--featured .blog-hcard-body {
  padding: 28px 36px;
}

.blog-hcard-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.blog-hcard-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-dark-green);
  line-height: 1.3;
  margin: 0;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.blog-hcard--featured .blog-hcard-title {
  font-size: 1.45rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  -webkit-line-clamp: 2;
}

.blog-hcard-excerpt {
  font-size: 0.85rem;
  color: #6B7F72;
  line-height: 1.6;
  margin: 0;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.blog-hcard--featured .blog-hcard-excerpt {
  font-size: 0.95rem;
  -webkit-line-clamp: 3;
}

.blog-hcard-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--color-primary);
  margin-top: 4px;
  transition: gap 0.2s, color 0.2s;
}
.blog-hcard--featured .blog-hcard-cta {
  padding: 10px 22px;
  background: var(--color-dark-green);
  color: #fff;
  border-radius: 30px;
  font-size: 0.85rem;
  align-self: flex-start;
}
.blog-hcard:hover .blog-hcard-cta { gap: 10px; }
.blog-hcard--featured:hover .blog-hcard-cta { background: var(--color-primary); }

/* ---- Badges catégories ---- */
.blog-badge {
  display: inline-block;
  padding: 3px 12px;
  border-radius: 20px;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.blog-badge--ingredients     { background: #2A4231; color: #ABCBB5; }
.blog-badge--reglementations { background: #1E2D5A; color: #B0BBDE; }
.blog-badge--rd              { background: #2D3065; color: #DCDDE8; }
.blog-badge--marketing       { background: #9B4B10; color: #FFF5EE; }
.blog-badge--default         { background: #2A4231; color: #ABCBB5; }

.blog-meta-date,
.blog-meta-time {
  font-size: 0.75rem;
  color: #8A9B90;
}

/* ---- Responsive ---- */
@media (max-width: 768px) {
  .blog-hcard--featured .blog-hcard-thumb { width: 220px; }
  .blog-hcard-thumb { width: 140px; }
  .blog-hcard--featured .blog-hcard-body { padding: 22px 24px; }
  .blog-hcard--featured .blog-hcard-title { font-size: 1.2rem; }
}
@media (max-width: 560px) {
  .blog-hcard { flex-direction: column; min-height: auto; }
  .blog-hcard-thumb,
  .blog-hcard--featured .blog-hcard-thumb { width: 100%; height: 180px; position: relative; }
  .blog-hcard--featured .blog-hcard-title { font-size: 1.1rem; }
  .blog-hcard-body,
  .blog-hcard--featured .blog-hcard-body { padding: 18px 20px 20px; }
  .blog-hero-cats-col { max-width: 320px; margin: 0 auto; }
}

/* ========================
   SINGLE ARTICLE
======================== */
.single-main { padding-top: 80px; }

/* ---- Sommaire article ---- */
.article-toc {
  background: var(--color-light-mint);
  border-left: 3px solid var(--color-primary);
  border-radius: 0 10px 10px 0;
  padding: 14px 20px 16px;
  margin-bottom: 32px;
  max-width: 560px;
}
.article-toc-title {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--color-primary);
  margin-bottom: 10px;
}
.article-toc-list {
  list-style: decimal;
  padding-left: 18px;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.article-toc-list a {
  font-size: .88rem;
  color: var(--color-dark-green);
  text-decoration: none;
  line-height: 1.4;
  transition: color .15s;
}
.article-toc-list a:hover {
  color: var(--color-primary);
  text-decoration: underline;
}

.single-hero {
  position: relative;
  height: 480px;
  overflow: hidden;
}
.single-hero-vignette {
  width: 100%;
  height: 100%;
  background: var(--color-dark-green);
}
.single-hero-vignette .single-vignette-img,
.single-hero-vignette img,
.single-hero-vignette svg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.single-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
    rgba(0,0,0,0.82) 0%,
    rgba(0,0,0,0.55) 35%,
    rgba(0,0,0,0.15) 70%,
    transparent 100%);
  display: flex;
  align-items: flex-end;
  padding-bottom: 48px;
}

.single-cat-badge {
  display: inline-block;
  padding: 5px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  font-family: var(--font-heading);
  margin-bottom: 14px;
  text-decoration: none;
}

.single-title {
  color: #fff;
  font-size: clamp(26px, 4vw, 46px);
  font-weight: 300;
  max-width: 780px;
  margin-bottom: 16px;
  line-height: 1.2;
  text-shadow: 0 2px 12px rgba(0,0,0,.4);
}

.single-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.85);
  font-size: 14px;
}

/* Layout 2 colonnes */
.single-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 60px;
  padding: 60px 0 80px;
  align-items: start;
}

/* Contenu article */
.single-content { min-width: 0; }

.single-content h2 {
  font-size: clamp(20px, 2.5vw, 26px);
  color: var(--color-dark-green);
  font-family: var(--font-heading);
  font-weight: 700;
  margin: 48px 0 18px;
  padding-bottom: 10px;
  border-bottom: 3px solid var(--color-pale-green);
}
.single-content h2::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 22px;
  background: var(--color-primary);
  border-radius: 3px;
  margin-right: 12px;
  vertical-align: middle;
  position: relative;
  top: -2px;
}
.single-content h3 {
  font-size: clamp(16px, 2vw, 19px);
  color: var(--color-dark-green);
  font-family: var(--font-heading);
  font-weight: 600;
  margin: 32px 0 12px;
}
.single-content p {
  font-size: 16px;
  line-height: 1.85;
  color: #333;
  margin-bottom: 20px;
}
.single-content ul, .single-content ol {
  margin: 0 0 24px 8px;
  padding-left: 0;
  list-style: none;
}
.single-content ul li {
  font-size: 16px;
  line-height: 1.8;
  color: #333;
  margin-bottom: 8px;
  padding-left: 28px;
  position: relative;
}
.single-content ul li::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--color-primary);
  border-radius: 50%;
  position: absolute;
  left: 6px;
  top: 9px;
}
.single-content ol { list-style: decimal; padding-left: 24px; }
.single-content ol li { font-size: 16px; line-height: 1.8; color: #333; margin-bottom: 8px; }
.single-content strong { font-weight: 700; color: var(--color-dark-green); }
.single-content em { font-style: italic; }
.single-content a { color: var(--color-primary); text-decoration: underline; }
.single-content a:hover { color: var(--color-dark-green); }

.single-content blockquote {
  border-left: 4px solid var(--color-primary);
  background: var(--color-light-mint);
  padding: 20px 24px;
  border-radius: 0 12px 12px 0;
  margin: 28px 0;
  font-style: italic;
  color: var(--color-dark-green);
  font-size: 17px;
  line-height: 1.7;
}

/* Info-box */
.single-content .info-box {
  background: var(--color-pale-green);
  border-radius: 16px;
  padding: 24px 28px;
  margin: 28px 0;
}
.single-content .info-box strong { display: block; margin-bottom: 8px; font-size: 15px; }

/* ─── À savoir 💡 — vert menthe ─── */
.single-content .nutra-callout {
  background: #EEF8F2;
  border: 2px solid #739C7F;
  border-radius: 14px;
  padding: 20px 22px 20px 64px;
  margin: 28px 0;
  position: relative;
}
.single-content .nutra-callout::before {
  content: "💡";
  font-size: 22px;
  position: absolute;
  left: 20px;
  top: 18px;
}
.single-content .nutra-callout p { margin: 0; color: #2A4231; font-size: 14px; line-height: 1.75; }
.single-content .nutra-callout strong { color: #2A4231; }

/* ─── Bilan ✅ — vert foncé ─── */
.single-content .nutra-bilan {
  background: #2A4231;
  border: 2px solid #1e3025;
  border-radius: 14px;
  padding: 22px 24px 22px 64px;
  margin: 28px 0;
  position: relative;
}
.single-content .nutra-bilan::before {
  content: "✅";
  font-size: 22px;
  position: absolute;
  left: 22px;
  top: 20px;
}
.single-content .nutra-bilan p { margin: 0 0 10px; color: #fff; font-size: 14px; line-height: 1.75; }
.single-content .nutra-bilan p:last-child { margin-bottom: 0; }
.single-content .nutra-bilan ul { padding-left: 20px; margin: 6px 0 0; }
.single-content .nutra-bilan li { color: #DEEED9; font-size: 14px; line-height: 1.75; margin-bottom: 4px; }
.single-content .nutra-bilan strong { color: #ABCBB5; }

/* ─── Livrables 📋 — ambre chaud ─── */
.single-content .nutra-livrables {
  background: #FFF5E6;
  border: 2px solid #D4813A;
  border-radius: 14px;
  padding: 20px 22px 20px 64px;
  margin: 28px 0;
  position: relative;
}
.single-content .nutra-livrables::before {
  content: "📋";
  font-size: 22px;
  position: absolute;
  left: 20px;
  top: 18px;
}
.single-content .nutra-livrables p { margin: 0 0 8px; font-size: 13px; color: #7A3E0A; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; }
.single-content .nutra-livrables ul { padding-left: 18px; margin: 0; }
.single-content .nutra-livrables li { font-size: 14px; color: #5C2E00; line-height: 1.75; margin-bottom: 4px; }

/* ─── Grille côte à côte ─── */
.single-content .nutra-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 28px 0;
}
.single-content .nutra-row > * { margin: 0; }

@media (max-width: 700px) {
  .single-content .nutra-row { grid-template-columns: 1fr; }
}

/* Encadré "À retenir" */
.single-content .nutra-retenir {
  background: #DEEED9;
  border-left: 4px solid #2A4231;
  border-radius: 8px;
  padding: 16px 20px;
  margin: 24px 0;
}
.single-content .nutra-retenir p { margin: 0; font-size: 14px; color: #2A4231; line-height: 1.75; }
.single-content .nutra-retenir strong { color: #1B4332; }

/* Bibliographie — tout ce qui suit le dernier <hr> de l'article */
.single-content hr:last-of-type ~ h2,
.single-content hr:last-of-type ~ h3,
.single-content hr:last-of-type ~ p,
.single-content hr:last-of-type ~ ol,
.single-content hr:last-of-type ~ ul {
  font-size: 0.8em;
  color: #999;
  line-height: 1.8;
}
.single-content hr:last-of-type ~ h2,
.single-content hr:last-of-type ~ h3 {
  font-size: 0.9em;
  font-weight: 600;
  color: #bbb;
  margin-top: 0;
}
.single-content hr:last-of-type ~ ol li,
.single-content hr:last-of-type ~ ul li {
  font-size: inherit;
  color: inherit;
}
.single-content hr:last-of-type ~ ol li::before,
.single-content hr:last-of-type ~ ul li::before { display: none; }
.single-content hr:last-of-type ~ p strong,
.single-content hr:last-of-type ~ ol strong { color: #999; font-weight: normal; }

/* CTA inline dans article */
.single-content .nutra-cta-inline {
  background: var(--color-pale-green);
  border: 2px solid var(--color-primary);
  border-radius: 12px;
  padding: 20px 24px;
  margin: 28px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.single-content .nutra-cta-inline p { margin: 0; font-size: 14px; color: var(--color-dark-green); line-height: 1.6; }
.single-content .nutra-cta-inline a {
  display: inline-block;
  background: var(--color-dark-green);
  color: #fff;
  padding: 10px 22px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s;
}
.single-content .nutra-cta-inline a:hover { background: var(--color-primary); }

/* PDF embed article */
.single-content .nutra-pdf {
  background: #f8f8f8;
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  padding: 20px 24px;
  margin: 24px 0;
  display: flex;
  align-items: center;
  gap: 16px;
}
.single-content .nutra-pdf::before { content: "📄"; font-size: 28px; }
.single-content .nutra-pdf p { margin: 0; font-size: 14px; color: #444; }
.single-content .nutra-pdf a { color: var(--color-primary); font-weight: 600; text-decoration: none; }

/* Schéma / tableau article */
.single-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 28px 0;
  font-size: 15px;
}
.single-content table th {
  background: var(--color-dark-green);
  color: var(--color-white);
  padding: 12px 16px;
  text-align: left;
  font-weight: 600;
}
.single-content table td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--color-pale-green);
  color: var(--color-text);
}
.single-content table tr:nth-child(even) td {
  background: var(--color-light-mint);
}

/* Steps — liste numérotée stylisée */
.single-content .nutra-steps {
  list-style: none;
  margin: 28px 0;
  padding: 0;
  counter-reset: step-counter;
}
.single-content .nutra-steps li {
  counter-increment: step-counter;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 20px;
  padding: 20px 24px;
  background: var(--color-white);
  border: 1px solid var(--color-pale-green);
  border-radius: 12px;
  list-style: none;
}
.single-content .nutra-steps li::before {
  content: counter(step-counter);
  background: var(--color-primary);
  color: var(--color-white);
  font-weight: 700;
  font-size: 15px;
  min-width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* Tags */
/* Bibliographie article — ciblage automatique via hr + h2 */
.single-content hr {
  border: none;
  border-top: 1px solid var(--color-light-gray);
  margin: 40px 0 0;
}
.single-content hr + h2 {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--color-primary);
  margin: 0;
  padding: 20px 24px 12px;
  background: var(--color-bg-light);
  border-left: 3px solid var(--color-primary);
  border-radius: 0 12px 0 0;
}
.single-content hr + h2 + p {
  background: var(--color-bg-light);
  border-left: 3px solid var(--color-primary);
  border-radius: 0 0 12px 0;
  padding: 0 24px 24px;
  margin: 0 0 40px;
  font-size: 0.85rem !important;
  color: var(--color-gray) !important;
  line-height: 2;
}
.single-content hr + h2 + p em {
  color: var(--color-text);
  font-style: italic;
}

.single-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 36px 0;
  padding-top: 28px;
  border-top: 1px solid var(--color-light-gray);
}
.single-tag {
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 13px;
  color: var(--color-gray);
  background: var(--color-light-gray);
  transition: all 0.2s;
  text-decoration: none;
}
.single-tag:hover { background: var(--color-primary); color: var(--color-white); }

/* CTA fin d'article */
.single-cta-box {
  background: var(--color-dark-green);
  border-radius: var(--radius-card);
  padding: 36px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin: 40px 0;
}
.single-cta-content h3 { color: var(--color-white); font-size: 20px; margin-bottom: 8px; }
.single-cta-content p  { color: var(--color-mint); font-size: 14px; margin: 0; }
/* Bouton visible sur fond vert foncé */
.single-cta-box .btn-primary {
  background: #ffffff;
  color: var(--color-dark-green);
  white-space: nowrap;
  flex-shrink: 0;
}
.single-cta-box .btn-primary:hover {
  background: var(--color-mint);
  color: var(--color-dark-green);
}

/* Navigation précédent/suivant */
.single-post-nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--color-light-gray);
}
.single-post-nav a {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 20px;
  border-radius: 16px;
  background: var(--color-light-mint);
  transition: background 0.2s;
  text-decoration: none;
}
.single-post-nav a:hover { background: var(--color-pale-green); }
.single-post-nav-next a { align-items: flex-end; text-align: right; }
.nav-label { font-size: 12px; color: var(--color-primary); font-weight: 600; }
.nav-title  { font-size: 14px; color: var(--color-dark-green); font-weight: 500; line-height: 1.4; }

/* Sidebar */
.single-sidebar { display: flex; flex-direction: column; gap: 28px; position: sticky; top: 100px; }

.sidebar-widget {
  background: var(--color-white);
  border-radius: var(--radius-card);
  padding: 28px;
  box-shadow: var(--shadow-card);
}
.sidebar-widget-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--color-dark-green);
  margin-bottom: 20px;
  font-family: var(--font-heading);
}

.sidebar-search .sidebar-widget-title { display: block; margin-bottom: 10px; }
.sidebar-search-inner {
  display: flex;
  align-items: center;
  border: 1.5px solid var(--color-border);
  border-radius: 30px;
  overflow: hidden;
  background: #fff;
  transition: border-color .2s;
}
.sidebar-search-inner:focus-within {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(115,156,127,.12);
}
.sidebar-search-inner input {
  flex: 1;
  border: none;
  outline: none;
  padding: 10px 16px;
  font-size: .88rem;
  font-family: inherit;
  background: transparent;
  color: var(--color-dark-green);
}
.sidebar-search-inner input::placeholder { color: var(--color-text-muted); }
.sidebar-search-inner button {
  background: none;
  border: none;
  padding: 0 14px;
  cursor: pointer;
  color: var(--color-primary);
  display: flex;
  align-items: center;
  transition: color .2s;
}
.sidebar-search-inner button:hover { color: var(--color-dark-green); }

.sidebar-about { text-align: center; background: var(--color-light-mint); }
.sidebar-about-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--color-dark-green);
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 600;
  margin: 0 auto 16px;
}
.sidebar-about-photo {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 16px;
  border: 3px solid var(--color-pale-green);
}
.sidebar-about-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}
.sidebar-about h4 { color: var(--color-dark-green); margin-bottom: 10px; font-size: 17px; }
.sidebar-about p  { color: var(--color-gray); font-size: 13px; margin-bottom: 20px; line-height: 1.6; }

.btn-sm { padding: 10px 20px; font-size: 14px; }

.sidebar-related { display: flex; flex-direction: column; gap: 16px; }
.sidebar-related a {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  text-decoration: none;
  transition: opacity 0.2s;
}
.sidebar-related a:hover { opacity: 0.8; }
.sidebar-related-thumb {
  width: 72px;
  height: 52px;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
}
.sidebar-related-thumb svg,
.sidebar-related-thumb .sidebar-vignette,
.sidebar-related-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.sidebar-related-title { display: block; font-size: 13px; font-weight: 600; color: var(--color-dark-green); line-height: 1.4; margin-bottom: 4px; }
.sidebar-related time { font-size: 12px; color: var(--color-gray); }

.sidebar-cta { background: var(--color-dark-green); text-align: center; }
.sidebar-cta h4 { color: var(--color-white); margin-bottom: 10px; font-size: 17px; }
.sidebar-cta p  { color: var(--color-mint); font-size: 13px; margin-bottom: 20px; }

/* ========================
   BLOG RESPONSIVE
======================== */
@media (max-width: 1024px) {
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .single-layout { grid-template-columns: 1fr; }
  .single-sidebar { position: static; }
}
@media (max-width: 767px) {
  .single-hero { height: 320px; }
  .blog-grid   { grid-template-columns: 1fr; }
  .single-cta-box { flex-direction: column; text-align: center; }
  .single-post-nav { grid-template-columns: 1fr; }
  .single-post-nav-next a { align-items: flex-start; text-align: left; }
  /* Tableaux scrollables horizontalement sur mobile */
  .single-content table { display: block; overflow-x: auto; -webkit-overflow-scrolling: touch; white-space: nowrap; }
  .single-content table th,
  .single-content table td { white-space: normal; min-width: 120px; }
}

/* ============================================================
   PAGE FONDATRICE
   ============================================================ */

/* --- Hero --- */
.fondatrice-hero {
  background: linear-gradient(135deg, var(--color-dark-green) 0%, #3D6348 100%);
  padding: 120px 0 0;
  position: relative;
  overflow: hidden;
  color: #fff;
}
.fondatrice-hero::before {
  content: '';
  position: absolute;
  top: -120px; right: -120px;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: rgba(115,156,127,.15);
  pointer-events: none;
}
.fondatrice-hero-inner {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 64px;
  align-items: center;
  padding-bottom: 80px;
}
.fondatrice-hero-text h1 {
  color: #fff;
  font-size: clamp(2rem, 4vw, 3rem);
  margin: 16px 0 20px;
}
.fondatrice-hero-text h1 em {
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--color-light-green);
  font-size: .85em;
}
.fondatrice-hero-lead {
  color: rgba(255,255,255,.85);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 28px;
  max-width: 520px;
}
.fondatrice-hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 36px;
}
.fondatrice-hero-skills {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 36px;
}
.fondatrice-hero-skill {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 10px;
  padding: 10px 14px;
  font-size: .85rem;
  color: rgba(255,255,255,.92);
  font-weight: 500;
}
.fondatrice-hero-skill svg {
  flex-shrink: 0;
  color: var(--color-light-green);
}
.hero-badge {
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.2);
  color: rgba(255,255,255,.9);
  border-radius: 100px;
  padding: 6px 16px;
  font-size: .82rem;
  font-weight: 500;
}
.fondatrice-hero-photo {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.fondatrice-photo-wrap {
  width: 280px;
  height: 280px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid rgba(255,255,255,.25);
  box-shadow: 0 24px 64px rgba(0,0,0,.25);
}
.fondatrice-photo-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
}
.fondatrice-photo-card {
  margin-top: -20px;
  background: #fff;
  border-radius: 16px;
  padding: 16px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  box-shadow: 0 8px 32px rgba(0,0,0,.12);
  width: 280px;
}
.fondatrice-photo-card strong {
  color: var(--color-dark-green);
  font-size: .95rem;
}
.fondatrice-photo-card span {
  color: var(--color-text-muted, #6E7A84);
  font-size: .82rem;
}
.fondatrice-photo-social {
  margin-top: 6px;
}
.fondatrice-photo-social a {
  color: var(--color-text-muted, #6E7A84);
  transition: color .2s;
}
.fondatrice-photo-social a:hover { color: var(--color-dark-green); }

/* --- Story --- */
.fondatrice-story {
  padding: 100px 0;
  background: #fff;
}
.fondatrice-story-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.fondatrice-story-image {
  position: relative;
}
.fondatrice-story-image img {
  width: 100%;
  border-radius: 20px;
  display: block;
  box-shadow: 0 16px 48px rgba(42,66,49,.1);
}
.fondatrice-story-stat {
  position: absolute;
  bottom: -20px; right: -20px;
  background: var(--color-dark-green);
  color: #fff;
  border-radius: 16px;
  padding: 20px 24px;
  text-align: center;
  box-shadow: 0 8px 24px rgba(42,66,49,.3);
  min-width: 120px;
}
.fondatrice-story-stat .stat-number {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-light-green);
  line-height: 1;
}
.fondatrice-story-stat span:last-child {
  font-size: .78rem;
  opacity: .8;
  margin-top: 4px;
  display: block;
}
.fondatrice-story-text h2 {
  margin: 12px 0 20px;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
}
.fondatrice-story-text p {
  color: var(--color-text-muted);
  line-height: 1.75;
  margin-bottom: 16px;
}
.fondatrice-story-values {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.fondatrice-value {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.fondatrice-value-icon {
  flex-shrink: 0;
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--color-bg-light);
  display: flex; align-items: center; justify-content: center;
  color: var(--color-primary);
}
.fondatrice-value strong {
  display: block;
  color: var(--color-dark-green);
  font-size: .92rem;
  margin-bottom: 4px;
}
.fondatrice-value p {
  margin: 0;
  font-size: .88rem;
  color: var(--color-text-muted);
  line-height: 1.6;
}

/* --- Stats --- */
.fondatrice-stats {
  background: var(--color-dark-green);
  padding: 64px 0;
}
.fondatrice-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}
.fondatrice-stat-item .stat-number {
  display: block;
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--color-light-green);
  line-height: 1;
  margin-bottom: 8px;
}
.fondatrice-stat-label {
  color: rgba(255,255,255,.7);
  font-size: .88rem;
  font-weight: 500;
}

/* --- Parcours / Timeline --- */
.fondatrice-parcours {
  padding: 100px 0;
  background: var(--color-bg-light);
}
.fondatrice-parcours-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 64px;
}
.fondatrice-parcours-header h2 {
  margin: 12px 0 16px;
}
.fondatrice-parcours-header p {
  color: var(--color-text-muted);
  line-height: 1.7;
}
/* Parcours — trait chronologique */
.parcours-line {
  max-width: 560px;
  margin: 48px auto 0;
  position: relative;
  padding-left: 24px;
  border-left: 2px solid var(--color-primary);
}
.parcours-line-item {
  display: flex;
  align-items: center;
  gap: 0;
  padding: 20px 0;
}
.parcours-line-item:first-child { padding-top: 0; }
.parcours-line-item:last-child  { padding-bottom: 0; }
.parcours-line-connector {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  position: relative;
  left: -24px;
  margin-right: -24px;
}
.parcours-line-connector span {
  display: block;
  width: 32px;
  height: 2px;
  background: var(--color-primary);
}
.parcours-line-label {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 20px;
  border-radius: 10px;
  flex: 1;
}
.parcours-line-tag {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: var(--color-primary);
  white-space: nowrap;
}
.parcours-line-label strong {
  font-size: 1rem;
  color: var(--color-dark-green);
  font-weight: 600;
}
.parcours-line-item--current .parcours-line-label {
  background: var(--color-bg-light, #F3FFFB);
  border: 2px solid var(--color-primary);
}
.parcours-line-item--current .parcours-line-label strong {
  color: var(--color-dark-green);
}

@media (max-width: 767px) {
  .parcours-line-label  { flex-direction: column; align-items: flex-start; gap: 4px; }
  .parcours-line-label strong { font-size: .95rem; }
}


/* --- Expertise --- */
.fondatrice-expertise {
  padding: 100px 0;
  background: #fff;
}
.fondatrice-expertise-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.fondatrice-expertise-text h2 {
  margin: 12px 0 20px;
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
}
.fondatrice-expertise-text p {
  color: var(--color-text-muted);
  line-height: 1.75;
  margin-bottom: 16px;
}
.fondatrice-expertise-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 28px;
}
.fondatrice-expertise-tags span {
  background: var(--color-bg-light);
  color: var(--color-dark-green);
  border-radius: 100px;
  padding: 6px 16px;
  font-size: .82rem;
  font-weight: 500;
  border: 1px solid var(--color-border);
}
.fondatrice-mission-quote {
  background: linear-gradient(135deg, var(--color-dark-green), #3D6348);
  color: #fff;
  border-radius: 24px;
  padding: 48px 40px;
  margin: 0;
  position: sticky;
  top: 120px;
}
.fondatrice-mission-quote p {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1.1rem, 1.8vw, 1.35rem);
  line-height: 1.65;
  color: rgba(255,255,255,.95);
  margin-bottom: 32px;
}
.fondatrice-mission-quote-author {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.2);
}
.fondatrice-mission-quote-author strong {
  color: #fff;
  font-size: 1rem;
}
.fondatrice-mission-quote-author span {
  color: rgba(255,255,255,.6);
  font-size: .85rem;
}

/* --- Logos clients --- */
.fondatrice-clients {
  padding: 60px 0;
  background: var(--color-bg-light);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}
.fondatrice-clients-label {
  text-align: center;
  color: var(--color-text-muted);
  font-size: .85rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 36px;
}
.fondatrice-clients-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 40px 56px;
}
.fondatrice-clients-logos img {
  height: 36px;
  width: auto;
  object-fit: contain;
  filter: grayscale(1) opacity(.55);
  transition: filter .3s;
}
.fondatrice-clients-logos img:hover {
  filter: grayscale(0) opacity(1);
}

/* --- CTA fondatrice --- */
.fondatrice-cta {
  background: var(--color-pale-green);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.fondatrice-cta::before {
  content: '';
  position: absolute;
  right: -80px; top: -80px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: rgba(115,156,127,.15);
  pointer-events: none;
}
.fondatrice-cta-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 64px;
  align-items: center;
  position: relative;
}
.fondatrice-cta-text h2 {
  color: var(--color-dark-green);
  font-size: clamp(1.5rem, 2.5vw, 2.2rem);
  margin-bottom: 16px;
}
.fondatrice-cta-text p {
  color: var(--color-text-muted, #6E7A84);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 480px;
}
.fondatrice-cta-image img {
  width: 300px;
  border-radius: 16px;
  display: block;
}
.btn-light {
  background: #fff;
  color: var(--color-dark-green);
  font-weight: 600;
}
.btn-light:hover {
  background: var(--color-light-green);
  color: var(--color-dark-green);
  transform: translateY(-2px);
}

/* ============================================================
   RESPONSIVE FONDATRICE
   ============================================================ */
@media (max-width: 1024px) {
  .fondatrice-hero-inner  { grid-template-columns: 1fr; gap: 48px; padding-bottom: 60px; }
  .fondatrice-hero-photo  { order: -1; align-items: flex-start; flex-direction: row; gap: 24px; }
  .fondatrice-photo-wrap  { width: 180px; height: 180px; flex-shrink: 0; }
  .fondatrice-photo-card  { margin-top: 0; width: auto; flex: 1; justify-content: center; background: rgba(255,255,255,.12); color: #fff; box-shadow: none; border: 1px solid rgba(255,255,255,.2); }
  .fondatrice-photo-card strong { color: #fff; }
  .fondatrice-photo-card span   { color: rgba(255,255,255,.7); }
  .fondatrice-photo-social a    { color: rgba(255,255,255,.7); }
  .fondatrice-story-inner       { grid-template-columns: 1fr; gap: 48px; }
  .fondatrice-story-stat        { bottom: 16px; right: 16px; }
  .fondatrice-stats-grid        { grid-template-columns: repeat(2, 1fr); }
  .fondatrice-expertise-inner   { grid-template-columns: 1fr; gap: 48px; }
  .fondatrice-mission-quote     { position: static; }
  .fondatrice-cta-inner         { grid-template-columns: 1fr; gap: 40px; }
  .fondatrice-cta-image         { display: none; }
}

@media (max-width: 767px) {
  .fondatrice-hero              { padding-top: 100px; }
  .fondatrice-hero-photo        { flex-direction: column; align-items: center; }
  .fondatrice-photo-wrap        { width: 220px; height: 220px; }
  .fondatrice-photo-card        { width: 260px; margin-top: -16px; }
  .fondatrice-hero-badges       { justify-content: center; }
  .fondatrice-hero-skills       { grid-template-columns: 1fr 1fr; }
  .fondatrice-hero-lead         { text-align: center; }
  .fondatrice-hero-text         { text-align: center; }
  .fondatrice-hero-text .btn    { width: 100%; text-align: center; }
  .fondatrice-stats-grid        { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .fondatrice-mission-quote     { padding: 32px 24px; }
  .fondatrice-clients-logos     { gap: 28px 36px; }
  .fondatrice-clients-logos img { height: 28px; }
  .fondatrice-expertise-tags    { gap: 6px; }
}

@media (max-width: 400px) {
  .fondatrice-stats-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
}

/* ============================================================
   HOMEPAGE — NOUVELLES SECTIONS
   ============================================================ */

/* --- Logos clients homepage --- */
.home-clients {
  padding: 48px 0;
  border-bottom: 1px solid var(--color-border);
}
.home-clients-label {
  text-align: center;
  color: var(--color-text-muted);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 28px;
}
.home-clients-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 32px 48px;
}
.home-clients-logos img {
  height: 32px;
  width: auto;
  object-fit: contain;
  filter: grayscale(1) opacity(.5);
  transition: filter .3s;
}
.home-clients-logos img:hover { filter: grayscale(0) opacity(1); }

/* --- Services intro text --- */
.services-intro {
  color: var(--color-text-muted);
  max-width: 560px;
  margin: 12px auto 0;
  line-height: 1.7;
}
.services-header { text-align: center; margin-bottom: 48px; }

/* --- Expertise (remplace stats) --- */
.home-expertise {
  background: var(--color-dark-green);
  padding: 80px 0;
}
.home-expertise-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  text-align: center;
}
.home-expertise-item .stat-number {
  color: var(--color-light-green);
  margin-bottom: 10px;
}
.home-expertise-icon {
  display: flex;
  justify-content: center;
  margin-bottom: 10px;
  color: var(--color-light-green);
}
.home-expertise-label {
  display: block;
  color: #fff;
  font-weight: 600;
  font-size: .95rem;
  margin-bottom: 10px;
}
.home-expertise-item p {
  color: rgba(255,255,255,.6);
  font-size: .85rem;
  line-height: 1.6;
  margin: 0;
}

/* --- Témoignage --- */
.home-testimonial {
  background: var(--color-bg-light);
  padding: 100px 0;
}
.home-testimonial-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.home-testimonial-quote {
  background: #fff;
  border-radius: 24px;
  padding: 48px 40px;
  box-shadow: 0 8px 40px rgba(42,66,49,.08);
  position: relative;
}
.quote-mark {
  color: var(--color-bg-light);
  width: 40px; height: 32px;
  margin-bottom: 20px;
  display: block;
}
.home-testimonial-quote blockquote {
  margin: 0 0 32px;
  border: none;
  padding: 0;
}
.home-testimonial-quote blockquote p {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--color-dark-green);
  margin: 0;
}
.home-testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 24px;
  border-top: 1px solid var(--color-border);
}
.testimonial-author-info strong {
  display: block;
  color: var(--color-dark-green);
  font-size: .92rem;
}
.testimonial-author-info span {
  color: var(--color-text-muted);
  font-size: .82rem;
}
.home-testimonial-cta .section-tag { margin-bottom: 16px; }
.home-testimonial-cta h3 {
  color: var(--color-dark-green);
  font-size: clamp(1.3rem, 2vw, 1.7rem);
  margin-bottom: 16px;
}
.home-testimonial-cta p {
  color: var(--color-text-muted);
  line-height: 1.7;
  margin-bottom: 32px;
}

/* Timeline intro */
.timeline-intro {
  color: var(--color-text-muted);
  max-width: 560px;
  margin: 12px auto 0;
  line-height: 1.7;
  text-align: center;
}
.timeline-header { text-align: center; margin-bottom: 56px; }

/* ============================================================
   RESPONSIVE HOMEPAGE
   ============================================================ */
@media (max-width: 1100px) {
  .hero-split-inner          { grid-template-columns: 1fr 380px; gap: 40px; }
  .hero-photo-wrap           { width: 320px; height: 320px; }
  .home-expertise-grid       { grid-template-columns: repeat(2, 1fr); gap: 32px; }
}

@media (max-width: 1024px) {
  .hero-split-inner          { grid-template-columns: 1fr; padding: 60px 0 0; }
  .hero-visual               { order: -1; padding-bottom: 0; justify-content: flex-start; gap: 24px; display: flex; align-items: center; }
  .hero-photo-wrap           { width: 140px; height: 140px; flex-shrink: 0; }
  .hero-visual-card          { position: static; }
  .hero-visual-card--2       { display: none; }
  .home-testimonial-inner    { grid-template-columns: 1fr; gap: 48px; }
  .founder-inner             { grid-template-columns: 280px 1fr; gap: 48px; }
  .bottom-cta-inner          { grid-template-columns: 1fr; }
  .bottom-cta-image          { display: none; }
}

@media (max-width: 767px) {
  .hero-visual               { flex-direction: column; align-items: center; text-align: center; }
  .hero-photo-wrap           { width: 180px; height: 180px; }
  .hero-visual-card          { font-size: .78rem; }
  .hero-actions              { flex-direction: column; }
  .hero-actions .btn         { text-align: center; }
  .hero-trust                { justify-content: center; }
  .hero h1, .hero-lead       { text-align: center; }
  .hero .section-tag         { display: block; text-align: center; }
  .home-expertise-grid       { grid-template-columns: 1fr 1fr; gap: 24px; }
  .home-testimonial-quote    { padding: 32px 24px; }
  .founder-inner             { grid-template-columns: 1fr; }
  .founder-photo             { max-width: 260px; margin: 0 auto; }
  .founder-content           { text-align: center; }
  .founder-quote             { text-align: left; }
  .home-clients-logos        { gap: 24px 32px; }
  .home-clients-logos img    { height: 26px; }
}

@media (max-width: 400px) {
  .home-expertise-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   RESPONSIVE — HERO CENTRÉ & SERVICES V2
   ============================================================ */
@media (max-width: 1024px) {
  .services-grid--3     { grid-template-columns: 1fr; max-width: 560px; margin: 0 auto; }
  .service-card-v2      { padding: 36px 28px; }
}

@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; padding: 72px 0 80px; }
  .hero-visual { max-width: 420px; margin: 0 auto; width: 100%; }
}

@media (max-width: 767px) {
  .hero--centered .hero-content { padding: 60px 0 80px; }
  .hero--left .container        { margin-left: 0; padding-left: 20px; padding-right: 20px; }
  .hero--left .hero-content     { padding: 60px 0 80px; max-width: 100%; }
  .hero-inner                   { padding: 56px 0 64px; gap: 36px; }
  .hero h1                      { font-size: clamp(1.7rem, 6vw, 2.4rem); }
  .hero-actions                 { flex-direction: column; align-items: flex-start; }
  .hero-actions .btn            { width: 100%; max-width: 320px; text-align: center; }
  .hero-trust                   { gap: 12px; flex-direction: column; }
  .services-grid--3             { max-width: 100%; }
  .hero-visual                  { max-width: 100%; }
  .hero-visual-badge            { left: 8px; bottom: -12px; font-size: .78rem; }
}

/* ============================================================
   PAGE CONTACT
   ============================================================ */

/* Hero */
.contact-hero {
  background: linear-gradient(135deg, var(--color-dark-green) 0%, #3D6348 100%);
  color: #fff;
  padding: 120px 0 0;
  position: relative;
  overflow: hidden;
}
.contact-hero::before {
  content: '';
  position: absolute;
  top: -120px; right: -120px;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: rgba(115,156,127,.15);
  pointer-events: none;
}
.contact-hero-inner {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 64px;
  align-items: center;
  padding-bottom: 80px;
}
.contact-hero-text h1 {
  color: #fff;
  font-size: clamp(2rem, 4vw, 3rem);
  margin: 16px 0 20px;
}
.contact-hero-text h1 em {
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--color-light-green);
  font-size: .85em;
}
.contact-hero-lead {
  color: rgba(255,255,255,.85);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 28px;
  max-width: 520px;
}
.contact-hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 36px;
}
.contact-hero-text .btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

/* Colonne visuelle droite — photo */
.contact-hero-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}
.contact-photo-wrap {
  width: 260px;
  height: 260px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid rgba(255,255,255,.28);
  box-shadow: 0 20px 56px rgba(0,0,0,.22);
}
.contact-photo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.contact-photo-card {
  margin-top: -20px;
  background: #fff;
  border-radius: 16px;
  padding: 16px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  box-shadow: 0 8px 32px rgba(0,0,0,.12);
  width: 260px;
  text-align: center;
}
.contact-photo-card strong {
  color: var(--color-dark-green);
  font-size: .95rem;
  font-family: var(--font-heading);
  font-weight: 700;
}
.contact-photo-card > span {
  color: var(--color-text-muted, #6E7A84);
  font-size: .82rem;
}
.contact-photo-availability {
  margin-top: 8px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .73rem;
  font-weight: 600;
  color: #2A7A45;
  background: #e6f7ee;
  padding: 4px 12px;
  border-radius: 20px;
}

.hero-wave {
  display: block;
  line-height: 0;
}
.hero-wave svg {
  display: block;
  width: 100%;
  height: 50px;
}

/* Layout principal */
.contact-main {
  padding: 64px 0 96px;
  background: #fff;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 48px;
  align-items: start;
}

/* ---- Bloc Calendly — fond vert foncé ---- */
.contact-calendly-block {
  background: linear-gradient(135deg, var(--color-dark-green) 0%, #3D6348 100%);
  border: none;
  border-radius: 20px;
  padding: 36px 32px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.contact-calendly-block::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 200px; height: 200px;
  border-radius: 50%;
  background: rgba(115,156,127,.18);
  pointer-events: none;
}
.contact-block-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
  position: relative;
}
.contact-block-icon {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  background: rgba(255,255,255,.2);
  color: #fff;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-block-header h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 4px;
}
.contact-block-header p {
  font-size: .9rem;
  color: rgba(255,255,255,.75);
  margin: 0;
}
.contact-calendly-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  justify-content: center;
  padding: 15px 28px;
  font-size: 1rem;
  background: #fff;
  color: var(--color-dark-green);
  position: relative;
}
.contact-calendly-btn:hover {
  background: var(--color-pale-green);
  color: var(--color-dark-green);
}

/* ---- Séparateur ---- */
.contact-divider {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 32px 0;
  color: var(--color-text-muted, #6E7A84);
  font-size: .85rem;
}
.contact-divider::before,
.contact-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--color-border, #E8EDE9);
}

/* ---- Formulaire ---- */
.contact-form-block h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-dark-green);
  margin: 0 0 24px;
}
.contact-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.contact-form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}
.contact-form-group label {
  font-size: .85rem;
  font-weight: 600;
  color: var(--color-dark-green);
}
.contact-form-group label span {
  color: var(--color-primary);
}
.contact-form-group input,
.contact-form-group textarea {
  border: 1.5px solid var(--color-border, #E8EDE9);
  border-radius: 8px;
  padding: 10px 14px;
  font-size: .95rem;
  font-family: inherit;
  color: var(--color-dark-green);
  background: #fff;
  transition: border-color .2s;
  outline: none;
}
.contact-form-group input:focus,
.contact-form-group textarea:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(115,156,127,.12);
}
.contact-form-group textarea {
  resize: vertical;
  min-height: 120px;
}
.contact-form-consent {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-bottom: 20px;
}
.contact-form-consent input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--color-primary);
  flex-shrink: 0;
  cursor: pointer;
}
.contact-form-consent label {
  font-size: .82rem;
  color: var(--color-text-muted, #6E7A84);
  line-height: 1.5;
  cursor: pointer;
}
.contact-form .btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.contact-form-success {
  margin-top: 16px;
  background: #D4EBD9;
  color: #2A4231;
  border-radius: 8px;
  padding: 12px 16px;
  font-size: .9rem;
  font-weight: 500;
}
.contact-form-error {
  margin-top: 16px;
  background: #FDECEA;
  color: #B71C1C;
  border-radius: 8px;
  padding: 12px 16px;
  font-size: .9rem;
}

/* ---- Aside ---- */
.contact-col-aside {
  position: sticky;
  top: 96px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* ---- Carte infos ---- */
.contact-info-card {
  background: #fff;
  border: 1.5px solid var(--color-border, #E8EDE9);
  border-radius: 16px;
  padding: 28px;
}
.contact-faq-card {
  background: var(--color-light-mint);
  border: 1.5px solid var(--color-pale-green);
  border-radius: 16px;
  padding: 28px;
}
.contact-info-card h4,
.contact-faq-card h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-dark-green);
  margin: 0 0 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--color-border, #E8EDE9);
}
.contact-info-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 16px;
}
.contact-info-item:last-of-type { margin-bottom: 0; }
.contact-info-icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  background: var(--color-bg-light, #F3FFFB);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
}
.contact-info-item strong {
  display: block;
  font-size: .8rem;
  font-weight: 600;
  color: var(--color-dark-green);
  margin-bottom: 2px;
}
.contact-info-item a,
.contact-info-item span {
  font-size: .88rem;
  color: var(--color-text-muted, #6E7A84);
  text-decoration: none;
}
.contact-info-item a:hover { color: var(--color-primary); }
.contact-info-social {
  display: flex;
  gap: 12px;
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid var(--color-border, #E8EDE9);
}
.contact-info-social a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .82rem;
  font-weight: 500;
  color: var(--color-text-muted, #6E7A84);
  text-decoration: none;
  padding: 6px 12px;
  border: 1px solid var(--color-border, #E8EDE9);
  border-radius: 20px;
  transition: color .2s, border-color .2s, background .2s;
}
.contact-info-social a:hover {
  color: var(--color-primary);
  border-color: var(--color-primary);
  background: var(--color-bg-light, #F3FFFB);
}

/* ---- FAQ card ---- */
.contact-faq-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.contact-faq-list li {
  font-size: .88rem;
  color: var(--color-text-muted, #6E7A84);
  padding-left: 12px;
  border-left: 3px solid var(--color-primary);
  line-height: 1.55;
}
.contact-faq-list li strong {
  display: block;
  color: var(--color-dark-green);
  font-weight: 600;
  margin-bottom: 2px;
  font-size: .9rem;
}

/* ---- Responsive contact ---- */
@media (max-width: 1024px) {
  .contact-hero-inner {
    grid-template-columns: 1fr;
    gap: 48px;
    padding-bottom: 60px;
  }
  .contact-hero-visual { align-items: center; }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-col-aside {
    position: static;
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 767px) {
  .contact-hero { padding: 100px 0 0; }
  .contact-hero-inner { gap: 32px; padding-bottom: 48px; }
  .contact-hero-text { text-align: center; }
  .contact-hero-lead { max-width: 100%; }
  .contact-hero-badges { justify-content: center; }
  .contact-hero-text .btn { width: 100%; justify-content: center; }
  .contact-hero-visual { flex-direction: column; }
  .contact-main { padding: 40px 0 64px; }
  .contact-form-row { grid-template-columns: 1fr; gap: 0; }
  .contact-col-aside { grid-template-columns: 1fr; }
  .contact-block-header { flex-direction: column; gap: 12px; }
}

/* ─── Enquête de satisfaction ─────────────────────────────────────────────── */
.enquete-main { padding: 80px 0 100px; }
.enquete-wrap { max-width: 680px; margin: 0 auto; }

.enquete-header { text-align: center; margin-bottom: 48px; }
.enquete-header h1 { font-size: clamp(28px, 4vw, 40px); color: var(--color-dark-green); margin: 12px 0; }
.enquete-header p { color: var(--color-text); font-size: 16px; line-height: 1.7; max-width: 520px; margin: 0 auto; }

.enquete-form { display: flex; flex-direction: column; gap: 32px; }

.enquete-field { background: var(--color-white); border: 1px solid var(--color-pale-green); border-radius: 16px; padding: 24px 28px; }

.enquete-label { display: flex; align-items: flex-start; gap: 12px; font-size: 15px; font-weight: 600; color: var(--color-dark-green); margin-bottom: 16px; line-height: 1.5; }

.enquete-num { background: var(--color-primary); color: var(--color-white); font-size: 12px; font-weight: 700; min-width: 26px; height: 26px; border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 1px; }

.enquete-optional { font-size: 13px; font-weight: 400; color: var(--color-primary); margin-left: 4px; }

.enquete-input { width: 100%; padding: 12px 16px; border: 1.5px solid var(--color-pale-green); border-radius: 10px; font-family: var(--font-body); font-size: 15px; color: var(--color-dark-green); background: var(--color-light-mint); transition: border-color 0.2s; }
.enquete-input:focus { outline: none; border-color: var(--color-primary); }

/* Étoiles */
.enquete-stars { display: flex; gap: 8px; }
.star-label { display: flex; flex-direction: column; align-items: center; gap: 4px; cursor: pointer; }
.star-label input { display: none; }
.star-icon { font-size: 36px; color: var(--color-pale-green); transition: color 0.15s, transform 0.15s; }
.star-val { font-size: 11px; color: var(--color-primary); font-weight: 500; }
.star-label:hover .star-icon,
.star-label:hover ~ .star-label .star-icon { color: #f0a500; }
.star-label input:checked ~ .star-label .star-icon { color: #f0a500; }
.enquete-stars:has(.star-label:nth-child(1) input:checked) .star-label:nth-child(1) .star-icon { color: #f0a500; }
.enquete-stars:has(.star-label:nth-child(2) input:checked) .star-label:nth-child(-n+2) .star-icon { color: #f0a500; }
.enquete-stars:has(.star-label:nth-child(3) input:checked) .star-label:nth-child(-n+3) .star-icon { color: #f0a500; }
.enquete-stars:has(.star-label:nth-child(4) input:checked) .star-label:nth-child(-n+4) .star-icon { color: #f0a500; }
.enquete-stars:has(.star-label:nth-child(5) input:checked) .star-label:nth-child(-n+5) .star-icon { color: #f0a500; }

/* NPS */
.enquete-nps { display: flex; gap: 8px; flex-wrap: wrap; }
.nps-item { display: flex; flex-direction: column; align-items: center; cursor: pointer; }
.nps-item input { display: none; }
.nps-circle { width: 42px; height: 42px; border: 2px solid var(--color-pale-green); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 14px; font-weight: 600; color: var(--color-primary); transition: all 0.15s; }
.nps-item:hover .nps-circle,
.nps-item input:checked + .nps-circle { background: var(--color-dark-green); border-color: var(--color-dark-green); color: var(--color-white); }
.enquete-nps-legend { display: flex; justify-content: space-between; margin-top: 8px; font-size: 12px; color: var(--color-primary); }

/* Textarea */
.enquete-textarea { width: 100%; padding: 14px 16px; border: 1.5px solid var(--color-pale-green); border-radius: 10px; font-family: var(--font-body); font-size: 15px; color: var(--color-dark-green); background: var(--color-light-mint); resize: vertical; line-height: 1.6; transition: border-color 0.2s; }
.enquete-textarea:focus { outline: none; border-color: var(--color-primary); }

.enquete-submit { width: 100%; justify-content: center; gap: 10px; padding: 18px; font-size: 16px; }

/* Confirmation */
.enquete-confirm { text-align: center; padding: 60px 40px; background: var(--color-white); border: 1px solid var(--color-pale-green); border-radius: 24px; }
.enquete-confirm-icon { font-size: 56px; margin-bottom: 20px; }
.enquete-confirm h1 { color: var(--color-dark-green); margin-bottom: 16px; }
.enquete-confirm p { color: var(--color-text); font-size: 16px; line-height: 1.7; }
.enquete-avis-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-top: 28px; }
.enquete-avis-btn { display: inline-flex; align-items: center; gap: 8px; padding: 14px 24px; border-radius: 50px; font-weight: 600; font-size: 14px; text-decoration: none; transition: opacity 0.2s; }
.enquete-avis-btn--google { background: var(--color-dark-green); color: var(--color-white); }
.enquete-avis-btn--malt { background: #FF5C57; color: var(--color-white); }
.enquete-avis-btn:hover { opacity: 0.88; }

@media (max-width: 640px) {
  .enquete-field { padding: 20px 18px; }
  .enquete-stars { gap: 6px; }
  .star-icon { font-size: 28px; }
  .nps-circle { width: 34px; height: 34px; font-size: 13px; }
}
