/* ==========================================================================
   syntropi — Design System
   ========================================================================== */

:root {
  --primary:           #1B4D3E;
  --primary-light:     #2a6b57;
  --primary-dark:      #133829;
  --accent:            #DC851F;
  --accent-hover:      #c87418;
  --fluo:              #DC851F;
  --fluo-hover:        #c87418;
  --background:        #E8F3EF;
  --foreground:        #0F2A23;
  --muted-bg:          #F6F1EB;
  --muted-fg:          #4e6459;
  --border:            #E5E5E5;
  --white:             #FFFFFF;
  --radius:            0.5rem;
  --container-max:     1400px;
  --section-padding:   clamp(60px, 8vw, 112px);
  --header-height:     80px;
  /* Mega-menu icon palette */
  --icon-green:        #86efac;
  --icon-green-bg:     rgba(74,222,128,0.2);
  --icon-purple:       #c4b5fd;
  --icon-purple-bg:    rgba(167,139,250,0.2);
}

/* ==========================================================================
   Accessibility: Reduced Motion Support
   ========================================================================== */

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ==========================================================================
   Reset & Base
   ========================================================================== */

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

html {
  scroll-behavior: smooth;
  font-size: 17px;
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background-color: var(--background);
  color: var(--foreground);
  line-height: 1.625;
  text-align: left;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Fraunces", serif;
  letter-spacing: -0.02em;
  line-height: 1.2;
  text-wrap: balance;
  color: var(--foreground);
}

/* Éléments qui ne doivent pas être justifiés — text-align: left */
nav, .site-header, .site-footer,
.btn, .badge, .pill, .tag, .article-tag,
.article-meta, .breadcrumb,
.partners-track,
.act-step__question, .toc-title, .toc-list a,
.nav-mega, .mega-col, .mega-item,
label, input, select, textarea,
.article-card-meta, .hp-article-card__body h3,
.article-card-body h3, .article-card-body p,
.why-pillar h3, .why-pillar p,
.prerequisite-item p, .why-us-item p,
.related-service-card p,
.benefit-card p, .value-card p {
  text-align: left;
}

h1 { font-size: clamp(2rem, 5vw, 3.75rem); font-weight: 700; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.5rem); font-weight: 600; }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.875rem); font-weight: 600; }
h4 { font-size: clamp(1.1rem, 2vw, 1.5rem); font-weight: 500; }

p { max-width: 70ch; }

/* Badge-pill inline dans les titres */
.badge-pill {
  display: inline-block;
  background: var(--white);
  color: var(--accent);
  font-family: inherit;
  font-weight: inherit;
  font-size: inherit;
  padding: 0.15em 0.6em;
  border-radius: 100px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

a { color: inherit; text-decoration: none; }

/* Liens textuels (dans les paragraphes) */
p a, li a, blockquote a {
  color: var(--accent-hover);
  text-decoration: underline;
  text-decoration-color: rgba(200, 116, 24, 0.3);
  text-underline-offset: 3px;
  border-radius: 3px;
  padding: 0 2px;
  transition: color 0.15s ease, background 0.15s ease, text-decoration-color 0.15s ease;
}

p a:hover, li a:hover, blockquote a:hover {
  color: var(--accent-hover);
  background: rgba(220, 133, 31, 0.12);
  text-decoration-color: var(--accent);
}

img { display: block; max-width: 100%; height: auto; }

ul { list-style: none; }

/* ==========================================================================
   Layout utilities
   ========================================================================== */

.container {
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: clamp(1rem, 4vw, 2rem);
}

.section {
  padding-block: var(--section-padding);
}

.section--muted {
  background-color: var(--muted-bg);
}

.section--primary {
  background-color: var(--primary);
  color: var(--white);
}

.section--primary h1,
.section--primary h2,
.section--primary h3,
.section--primary p {
  color: var(--white);
}

.text-center { text-align: center; }
.mx-auto { margin-inline: auto; }

/* ==========================================================================
   Buttons
   ========================================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border-radius: var(--radius);
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  border: none;
  transition: filter 0.2s ease, transform 0.15s ease, background-color 0.2s ease;
  text-decoration: none;
}

.btn:active { transform: scale(0.98); }

.btn:focus-visible,
a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.btn--primary {
  background-color: var(--accent);
  color: var(--white);
}
.btn--primary:hover { background-color: var(--accent-hover); filter: none; }

.btn--green {
  background-color: var(--primary);
  color: var(--white);
}
.btn--green:hover { filter: brightness(1.15); }

.btn--white {
  background-color: var(--white);
  color: var(--primary);
}
.btn--white:hover { background-color: rgba(255,255,255,0.9); }

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

.btn--lg {
  padding: 1rem 2.5rem;
  font-size: 1.05rem;
}

.btn svg {
  width: 1.1em;
  height: 1.1em;
  flex-shrink: 0;
}

/* ==========================================================================
   Header & Navigation
   ========================================================================== */

/* Wrapper sticky englobant le header + mega menu */
.site-header-wrap {
  position: sticky;
  top: 0;
  z-index: 300;
  overflow: visible;
}

.site-header {
  height: var(--header-height);
  background-color: var(--primary);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.site-logo {
  font-family: "Fraunces", serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  text-decoration: none;
  letter-spacing: -0.01em;
  display: flex;
  align-items: center;
}
.site-logo img {
  height: 38px;
  width: auto;
  display: block;
}


/* Desktop nav */
.nav-primary {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-primary a,
.nav-primary .nav-services-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.55rem 1.1rem;
  border-radius: var(--radius);
  font-size: 0.95rem;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  transition: color 0.15s, background-color 0.15s;
  background: none;
  border: none;
  cursor: pointer;
  font-family: "Inter", sans-serif;
}

.nav-primary a:hover,
.nav-primary .nav-services-toggle:hover,
.nav-primary a.current-menu-item,
.nav-primary a[aria-current="page"] {
  color: var(--white);
  background-color: rgba(255,255,255,0.12);
}

/* Annuler le hover générique sur le bouton Contact */
.nav-primary .nav-contact-btn:hover,
.nav-primary .nav-contact-btn[aria-current="page"] {
  background-color: var(--fluo-hover) !important;
  color: var(--foreground) !important;
}

/* Bouton Contact — pilule fluo avec cercle flèche */
.nav-primary .nav-contact-btn {
  margin-left: 1.75rem;
  background: var(--fluo) !important;
  color: var(--foreground) !important;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.45rem 0.45rem 0.45rem 1.25rem;
  border-radius: 999px;
  gap: 0.75rem;
  transition: background 0.15s, transform 0.12s;
}

.nav-primary .nav-contact-btn:hover {
  background: var(--fluo-hover) !important;
  color: var(--foreground) !important;
  transform: translateY(-1px);
}

.nav-contact-btn-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.1rem;
  height: 2.1rem;
  background: #0F2A23;
  border-radius: 50%;
  color: #ffffff;
  flex-shrink: 0;
  transition: background 0.15s;
}

.nav-primary .nav-contact-btn:hover .nav-contact-btn-arrow {
  background: #1a1a1a;
}

/* ── Mega menu Services ────────────────────────────────────────────────── */
.nav-services {
  position: relative;
}

/* Panneau mega menu — dropdown centré sur le bouton */
.nav-mega {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  right: auto;
  width: 680px;
  max-width: 95vw;
  background: var(--primary);
  border-radius: calc(var(--radius) * 2);
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
  padding: 1.5rem;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  align-items: start;
  gap: 1.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.18s ease;
  transform: translateX(-50%) translateY(-8px);
  z-index: 99;
}

/* Petite flèche vers le haut */
.nav-mega::before {
  content: '';
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%);
  width: 12px;
  height: 12px;
  background: var(--primary);
  border-radius: 2px;
  rotate: 45deg;
}

.nav-services.open .nav-mega {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

/* Colonnes */
.mega-col {}

/* Label catégorie */
.mega-col-label {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.5);
  margin-bottom: 0.6rem;
  padding-left: 0.5rem;
  font-family: "Inter", sans-serif;
}

/* Items */
.mega-col-items {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.mega-item {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.65rem 0.65rem;
  border-radius: var(--radius);
  text-decoration: none;
  color: var(--white);
  transition: background-color 0.15s;
}

.mega-item:hover {
  background: rgba(255,255,255,0.1);
}

.mega-item-icon {
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 8px;
  background: rgba(255,255,255,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: rgba(255,255,255,0.85);
  transition: background-color 0.15s, color 0.15s;
}

.mega-item:hover .mega-item-icon {
  background: rgba(255,255,255,0.2);
  color: #fff;
}

.mega-item-icon svg { stroke: currentColor; }

.mega-item > span {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.mega-item strong {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--white);
}

.mega-item small {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.5);
  font-weight: 400;
}

/* Footer CTA dans le mega menu */
.mega-footer {
  grid-column: 1 / -1;
  border-top: 1px solid rgba(255,255,255,0.15);
  padding-top: 1rem;
  margin-top: 0.25rem;
}

.mega-footer-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255,255,255,0.7) !important;
  text-decoration: none;
  padding: 0.6rem 1rem;
  border-radius: var(--radius);
  transition: background-color 0.15s;
}

.mega-footer-cta:hover {
  background: rgba(255,255,255,0.08);
  color: var(--white) !important;
}

.mega-footer-cta svg {
  transition: transform 0.2s;
}

.mega-footer-cta:hover svg {
  transform: translateX(3px);
}

/* Toggle chevron */
.nav-services-toggle svg {
  transition: transform 0.2s;
}
.nav-services:hover .nav-services-toggle svg,
.nav-services.open .nav-services-toggle svg {
  transform: rotate(180deg);
}

/* ── Mobile : points couleur catégorie ─────────────────────────────────── */
.nav-mobile-sub-label--sub {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
  padding-left: 1.25rem;
  gap: 0.5rem;
  margin-top: 0.25rem;
}

.mobile-cat-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
  display: inline-block;
}
.mobile-cat-dot--green  { background: #4ade80; }
.mobile-cat-dot--blue   { background: #DC851F; }
.mobile-cat-dot--purple { background: #a78bfa; }

.nav-mobile-sub--deep {
  padding-left: 2.5rem;
}
.nav-mobile-sub--deep a {
  font-size: 0.825rem;
  color: rgba(255,255,255,0.6);
  padding-block: 0.4rem;
}

/* Mobile hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 0.5rem;
  background: none;
  border: none;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.2s;
}

/* Mobile menu drawer */
.nav-mobile {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 200;
}

.nav-mobile.open { display: flex; }

.nav-mobile-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
}

.nav-mobile-panel {
  position: relative;
  margin-left: auto;
  width: min(320px, 90vw);
  height: 100%;
  background: var(--primary);
  padding: 2rem 1.5rem;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  animation: slideInRight 0.25s ease;
}

@keyframes slideInRight {
  from { transform: translateX(100%); }
  to   { transform: translateX(0); }
}

.nav-mobile-close {
  align-self: flex-end;
  background: none;
  border: none;
  color: var(--white);
  cursor: pointer;
  font-size: 1.5rem;
  line-height: 1;
  margin-bottom: 1rem;
}

.nav-mobile-panel a {
  display: block;
  padding: 0.75rem 1rem;
  border-radius: var(--radius);
  color: rgba(255,255,255,0.85);
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
  transition: background-color 0.15s, color 0.15s;
}

.nav-mobile-panel a:hover { background: rgba(255,255,255,0.12); color: var(--white); }

.nav-mobile-sub {
  padding-left: 1rem;
  margin-top: 0.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.nav-mobile-sub a {
  font-size: 0.9rem;
  padding: 0.5rem 1rem;
  color: rgba(255,255,255,0.7);
}

.nav-mobile-sub-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 0.75rem 1rem;
  border-radius: var(--radius);
  background: none;
  border: none;
  color: rgba(255,255,255,0.85);
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  font-weight: 500;
  text-align: left;
  cursor: pointer;
  transition: background-color 0.15s;
}
.nav-mobile-sub-label:hover { background: rgba(255,255,255,0.12); }

.nav-mobile-sub-label svg { transition: transform 0.2s; }
.nav-mobile-sub-label.open svg { transform: rotate(180deg); }

/* ==========================================================================
   Footer
   ========================================================================== */

.site-footer {
  background-color: var(--foreground);
  color: rgba(255,255,255,0.8);
  padding-block: 3rem 2rem;
}

.site-footer .container {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2.5rem;
}

.footer-brand .site-logo {
  display: inline-flex;
  margin-bottom: 0.75rem;
  font-size: 1.1rem;
}

.footer-brand p {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
  max-width: 28ch;
  margin-bottom: 1.25rem;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-contact-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  transition: color 0.15s;
  font-family: "Inter", sans-serif;
}

.footer-contact-link svg {
  flex-shrink: 0;
  opacity: 0.65;
}

.footer-contact-link:hover {
  color: var(--white);
}

.footer-contact-link:hover svg {
  opacity: 1;
}

.footer-col h4 {
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1rem;
  font-family: "Inter", sans-serif;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-col a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  transition: color 0.15s;
}
.footer-col a:hover { color: var(--white); }

.footer-bottom {
  margin-top: 2.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  text-align: center;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
}

/* ==========================================================================
   Hero Section
   ========================================================================== */

.hero {
  position: relative;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  text-align: center;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}

/* Bandelettes verticales — symétrie parfaite, orange (bords) → vert foncé (centre) */
/* 26 bandes de 4% — mirroir exact autour de 48-52% */
.hero-bg--stripes {
  background: linear-gradient(
    to right,
    #c07015   0%,   #c07015   4%,
    #DC851F   4%,   #DC851F   8%,
    #e8a030   8%,   #e8a030  12%,
    #f0c87a  12%,   #f0c87a  16%,
    #f5ead8  16%,   #f5ead8  20%,
    #E8F3EF  20%,   #E8F3EF  24%,
    #c4ddd5  24%,   #c4ddd5  28%,
    #7ab49a  28%,   #7ab49a  32%,
    #4a8c72  32%,   #4a8c72  36%,
    #2a6b57  36%,   #2a6b57  40%,
    #1B4D3E  40%,   #1B4D3E  44%,
    #133829  44%,   #133829  48%,
    #0d2a1e  48%,   #0d2a1e  52%,
    #133829  52%,   #133829  56%,
    #1B4D3E  56%,   #1B4D3E  60%,
    #2a6b57  60%,   #2a6b57  64%,
    #4a8c72  64%,   #4a8c72  68%,
    #7ab49a  68%,   #7ab49a  72%,
    #c4ddd5  72%,   #c4ddd5  76%,
    #E8F3EF  76%,   #E8F3EF  80%,
    #f5ead8  80%,   #f5ead8  84%,
    #f0c87a  84%,   #f0c87a  88%,
    #e8a030  88%,   #e8a030  92%,
    #DC851F  92%,   #DC851F  96%,
    #c07015  96%,   #c07015 100%
  );
  transform-origin: center;
  animation: heroStripesConverge 1.6s cubic-bezier(0.16, 1, 0.3, 1) both;
}

@keyframes heroStripesConverge {
  0%   { transform: scaleX(3.2); }
  100% { transform: scaleX(1); }
}

/* Overlay pour lisibilité du texte centré sur les bandes sombres */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 28, 20, 0.28);
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 4rem 1rem 5rem;
  max-width: 860px;
}

.hero-content h1 {
  color: var(--white);
  font-size: clamp(2.6rem, 6vw, 4.5rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  max-width: 16ch;
  margin-inline: auto;
  margin-bottom: 1.25rem;
  text-align: center;
  text-shadow: 0 2px 24px rgba(0,0,0,0.25);
}

.hero-content h1 em {
  font-style: italic;
  color: var(--accent);
  font-family: 'Fraunces', Georgia, serif;
}

.hero-content p {
  color: #fff;
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  max-width: 52ch;
  margin-inline: auto;
  margin-bottom: 3rem;
  line-height: 1.65;
  text-align: center;
  text-shadow: 0 1px 12px rgba(0,0,0,0.5);
}

/* Badge au-dessus du titre */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(255,255,255,0.18);
  border: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.9);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  margin-bottom: 1.5rem;
  letter-spacing: 0.03em;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Bouton principal hero — orange plus grand */
.hero-actions .btn--accent {
  font-size: 1.05rem;
  padding: 0.85rem 2rem;
  box-shadow: 0 6px 24px rgba(220,133,31,0.4);
}

.hero-actions .btn--accent:hover {
  box-shadow: 0 8px 32px rgba(220,133,31,0.55);
  transform: translateY(-1px);
}

/* Bouton secondaire hero — contour blanc */
.hero-actions .btn--white-outline {
  font-size: 1.05rem;
  padding: 0.85rem 2rem;
  background: rgba(255,255,255,0.12);
}

/* Scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  color: rgba(255,255,255,0.45);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  animation: hero-bounce 2s ease-out infinite;
}

.hero-scroll svg { opacity: 0.5; }

@keyframes hero-bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(6px); }
}

.btn--accent {
  background: var(--accent);
  color: var(--white);
  border: 2px solid var(--accent);
}

.btn--accent:hover {
  background: var(--accent-hover);
  border-color: var(--accent-hover);
  color: var(--white);
}

.btn--white-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.5);
}

.btn--white-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
  color: var(--white);
}

/* ==========================================================================
   Partners marquee
   ========================================================================== */

.partners-section {
  padding-block: var(--section-padding);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}

.partners-marquee {
  overflow: hidden;
  max-width: 900px;
  margin: 0 auto;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 15%, black 85%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 15%, black 85%, transparent 100%);
}

.partners-track {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5rem;
  width: max-content;
  animation: partners-scroll 22s linear infinite;
  will-change: transform;
}

.partners-track:hover {
  animation-play-state: paused;
}

.partner-logo {
  flex-shrink: 0;
  transition: opacity 0.2s;
  display: flex;
  align-items: center;
  opacity: 0.7;
}

.partner-logo img {
  height: 48px;
  width: auto;
  object-fit: contain;
}

.partner-logo:hover {
  opacity: 1;
}

@keyframes partners-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@media (max-width: 640px) {
  .partners-marquee {
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
    mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
  }
  .partners-track {
    animation-duration: 14s;
    gap: 3rem;
  }
}

/* ==========================================================================
   Pourquoi nous — 3 blocs horizontaux
   ========================================================================== */

.why-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 960px;
  margin: 0 auto;
}

.why-pillar {
  padding: 2.5rem 2rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  text-align: left;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.why-pillar:hover {
  box-shadow: 0 8px 32px rgba(27,77,62,0.1);
  transform: translateY(-3px);
}

.why-pillar__icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(220,133,31,0.1);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.why-pillar h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--foreground);
  margin: 0 0 0.75rem;
}

.why-pillar p {
  font-size: 0.88rem;
  color: var(--muted-fg);
  line-height: 1.7;
  margin: 0;
}

@media (max-width: 768px) {
  .why-pillars {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
}

/* ==========================================================================
   Mission block
   ========================================================================== */

.mission-block {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.mission-text {
  font-size: clamp(1.1rem, 2.5vw, 1.35rem);
  line-height: 1.7;
  color: var(--foreground);
}

/* ==========================================================================
   Journey steps — parcours en 3 étapes
   ========================================================================== */

/* ==========================================================================
   Journey — Timeline diagonale
   ========================================================================== */

.journey-steps {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 5rem;
  padding-bottom: 2rem;
}

/* Canvas pour la ligne diagonale (tracée en JS) */
.journey-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

/* Chaque étape : dot + contenu côte à côte */
.journey-step {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 2.5rem;
  align-items: start;
}

/* Décalage diagonal progressif   toujours vers la droite */
.journey-step--2 { padding-left: clamp(40px, 5vw, 90px); }
.journey-step--3 { padding-left: clamp(90px, 10vw, 190px); }
.journey-step--4 { padding-left: clamp(150px, 16vw, 300px); }

/* Noeud circulaire */
.journey-dot {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--white);
  position: relative;
}

.journey-step--1 .journey-dot { background: var(--primary); box-shadow: 0 4px 20px rgba(27,77,62,0.30); }
.journey-step--2 .journey-dot { background: var(--primary-light); box-shadow: 0 4px 20px rgba(42,107,87,0.30); }
.journey-step--3 .journey-dot { background: var(--accent); box-shadow: 0 4px 20px rgba(220,133,31,0.30); }
.journey-step--4 .journey-dot { background: var(--foreground); box-shadow: 0 4px 20px rgba(15,42,35,0.30); }

/* Statut d'un pilier (disponible / à venir)   sobre, pas de badge coloré */
.journey-step__status {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted-fg);
}
.journey-step__status::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
}
.journey-step__status--available { color: var(--primary); }
.journey-step__status--soon { color: var(--accent); }

/* Contenu de l'étape */
.journey-step__body {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.journey-step__title {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--foreground);
  margin: 0;
  padding-top: 0.75rem;
  line-height: 1.25;
}

.journey-step__desc {
  font-size: 0.9rem;
  color: var(--muted-fg);
  line-height: 1.7;
  margin: 0;
  max-width: 60ch;
}

/* Cards en grille 2 colonnes */
.journey-services {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 0.25rem;
}

.journey-service-card {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 2rem 1.75rem;
  border-radius: var(--radius);
  text-decoration: none;
  transition: transform 0.18s, box-shadow 0.18s;
}

.journey-service-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.10);
}

/* Couleurs par étape — même famille, deux teintes */

/* Étape 1 : famille verte */
.journey-step--1 .journey-service-card:nth-child(1) { background: #E8F3EF; } /* vert très clair */
.journey-step--1 .journey-service-card:nth-child(2) { background: #1B4D3E; } /* vert foncé */

/* Étape 2 : famille vert moyen */
.journey-step--2 .journey-service-card:nth-child(1) { background: #c4ddd5; } /* vert doux */
.journey-step--2 .journey-service-card:nth-child(2) { background: #2a6b57; } /* vert moyen */

/* Étape 3 : famille orange */
.journey-step--3 .journey-service-card:nth-child(1) { background: #fef0dc; } /* orange très clair */
.journey-step--3 .journey-service-card:nth-child(2) { background: #DC851F; } /* orange */

/* Étape 4 : famille neutre foncée */
.journey-step--4 .journey-service-card:nth-child(1) { background: var(--muted-bg); } /* beige clair */
.journey-step--4 .journey-service-card:nth-child(2) { background: var(--foreground); } /* quasi-noir */

.journey-step--4 .journey-service-card:nth-child(2) h4 { color: var(--white); }
.journey-step--4 .journey-service-card:nth-child(2) p { color: rgba(255,255,255,0.75); }
.journey-step--4 .journey-service-card:nth-child(2) .journey-service-card__cta { color: rgba(255,255,255,0.9); }
.journey-step--4 .journey-service-card:nth-child(1) h4 { color: var(--foreground); }
.journey-step--4 .journey-service-card:nth-child(1) p { color: var(--muted-fg); }
.journey-step--4 .journey-service-card:nth-child(1) .journey-service-card__cta { color: var(--primary); }

/* Carte "à venir"   dégradé plein, même famille de couleur que l'étape */
.journey-step--2 .journey-service-card--soon {
  background: linear-gradient(135deg, #c4ddd5 0%, #7ab49a 100%);
}
.journey-step--3 .journey-service-card--soon {
  background: linear-gradient(135deg, #fef0dc 0%, #f0c87a 100%);
}
.journey-service-card--soon h4 { color: var(--foreground) !important; }
.journey-service-card--soon p { color: rgba(15,42,35,0.65) !important; }
.journey-service-card--soon .journey-service-card__cta { color: var(--primary) !important; }

.journey-services--single { grid-template-columns: 1fr; max-width: 420px; }

/* Textes : fonds clairs = sombre, fonds foncés = blanc */
.journey-step--1 .journey-service-card:nth-child(1) h4,
.journey-step--2 .journey-service-card:nth-child(1) h4,
.journey-step--3 .journey-service-card:nth-child(1) h4 { color: var(--foreground); }

.journey-step--1 .journey-service-card:nth-child(2) h4,
.journey-step--2 .journey-service-card:nth-child(2) h4,
.journey-step--3 .journey-service-card:nth-child(2) h4 { color: var(--white); }

.journey-step--1 .journey-service-card:nth-child(1) p,
.journey-step--2 .journey-service-card:nth-child(1) p,
.journey-step--3 .journey-service-card:nth-child(1) p { color: var(--muted-fg); }

.journey-step--1 .journey-service-card:nth-child(2) p,
.journey-step--2 .journey-service-card:nth-child(2) p,
.journey-step--3 .journey-service-card:nth-child(2) p { color: rgba(255,255,255,0.75); }

.journey-step--1 .journey-service-card:nth-child(1) .journey-service-card__cta,
.journey-step--2 .journey-service-card:nth-child(1) .journey-service-card__cta,
.journey-step--3 .journey-service-card:nth-child(1) .journey-service-card__cta { color: var(--primary); }

.journey-step--1 .journey-service-card:nth-child(2) .journey-service-card__cta,
.journey-step--2 .journey-service-card:nth-child(2) .journey-service-card__cta,
.journey-step--3 .journey-service-card:nth-child(2) .journey-service-card__cta { color: rgba(255,255,255,0.9); }

.journey-service-card h4 {
  font-size: 1rem;
  font-weight: 700;
  margin: 0;
}

.journey-service-card p {
  font-size: 0.87rem;
  margin: 0;
  line-height: 1.6;
  flex: 1;
}

.journey-service-card__cta {
  font-size: 0.82rem;
  font-weight: 600;
  margin-top: 0.25rem;
  letter-spacing: 0.02em;
}

@media (max-width: 768px) {
  .journey-step {
    grid-template-columns: 48px 1fr;
    gap: 1.25rem;
  }
  .journey-dot { width: 48px; height: 48px; font-size: 1.1rem; }
  .journey-step--2 { padding-left: 0; }
  .journey-step--3 { padding-left: 0; }
  .journey-step--4 { padding-left: 0; }
  .journey-services { grid-template-columns: 1fr; }
  .journey-canvas { display: none; }

  /* Ligne pointillée verticale reliant les 4 volets sur mobile */
  .journey-step {
    position: relative;
  }
  .journey-step:not(:last-child)::before {
    content: '';
    position: absolute;
    top: 48px;
    left: 24px;
    width: 0;
    height: calc(100% + 5rem - 48px);
    border-left: 2px dashed rgba(27, 77, 62, 0.35);
    z-index: 0;
    pointer-events: none;
  }
}

@media (max-width: 640px) {
  .journey-step {
    grid-template-columns: 36px 1fr;
    gap: 1rem;
  }

  .journey-step__number {
    width: 36px;
    height: 36px;
    font-size: 1rem;
  }
}

/* ==========================================================================
   Homepage — article cards légères (image + titre)
   ========================================================================== */

.hp-article-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.hp-article-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border-radius: calc(var(--radius) * 1.5);
  overflow: hidden;
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06), 0 0 0 1px rgba(0,0,0,0.04);
  transition: box-shadow 0.25s ease, transform 0.22s ease;
}

.hp-article-card:hover {
  box-shadow: 0 12px 32px rgba(27, 77, 62, 0.13), 0 0 0 1px rgba(27,77,62,0.08);
  transform: translateY(-4px);
}

.hp-article-card__thumb {
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--muted-bg);
}

.hp-article-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.hp-article-card:hover .hp-article-card__thumb img {
  transform: scale(1.04);
}

.hp-article-card__thumb-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(27,77,62,0.08) 0%, rgba(27,77,62,0.15) 100%);
}

.hp-article-card__body {
  padding: 1.1rem 1.25rem 1.35rem;
}

.hp-article-card__body h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--foreground);
  line-height: 1.4;
  margin: 0;
}

@media (max-width: 768px) {
  .hp-article-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   Section dark (bandeau financement)
   ========================================================================== */

.section--dark {
  background: var(--primary);
  padding-block: clamp(3rem, 5vw, 4.5rem);
}

.funding-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.funding-banner__text {
  max-width: 600px;
}

.funding-banner__text h3 {
  color: var(--white);
  font-size: 1.35rem;
  margin: 0 0 0.5rem;
}

.funding-banner__text p {
  color: rgba(255,255,255,0.85);
  font-size: 0.95rem;
  margin: 0;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .funding-banner {
    flex-direction: column;
    text-align: center;
  }
}

/* ==========================================================================
   Page hero (inner pages)
   ========================================================================== */

.page-hero {
  background-color: var(--primary);
  padding-block: clamp(3rem, 6vw, 5rem);
  text-align: center;
}

.page-hero h1 {
  color: var(--white);
  margin-bottom: 1rem;
  text-align: center;
}

.page-hero p {
  text-align: center;
}

.page-hero p {
  color: rgba(255,255,255,0.85);
  font-size: clamp(1rem, 2vw, 1.2rem);
  max-width: 55ch;
  margin-inline: auto;
}

/* ==========================================================================
   Cards & Grids
   ========================================================================== */

.grid-2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
  gap: 2rem;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 240px), 1fr));
  gap: 1.75rem;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 200px), 1fr));
  gap: 1.5rem;
}

.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: calc(var(--radius) * 1.5);
  padding: 1.75rem;
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.card:hover {
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  transform: translateY(-3px);
}

.card-icon {
  width: 3rem;
  height: 3rem;
  border-radius: var(--radius);
  background-color: rgba(27,77,62,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.card-icon svg {
  width: 1.4rem;
  height: 1.4rem;
  color: var(--primary);
  stroke: var(--primary);
}

.card h3 {
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
}

.card p {
  font-size: 0.9rem;
  color: var(--muted-fg);
  line-height: 1.6;
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 1.25rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--primary);
  text-decoration: none;
}
.card-link:hover { text-decoration: underline; }
.card-link svg { width: 1em; height: 1em; }

/* ==========================================================================
   Pillar items (icon + text inline)
   ========================================================================== */

.pillar {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}

.pillar-icon {
  flex-shrink: 0;
  width: 3rem;
  height: 3rem;
  border-radius: var(--radius);
  background-color: rgba(27,77,62,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.pillar-icon svg {
  width: 1.4rem;
  height: 1.4rem;
  stroke: var(--primary);
}

.pillar-body h3 {
  font-size: 1.125rem;
  margin-bottom: 0.4rem;
}

.pillar-body p {
  font-size: 0.9rem;
  color: var(--muted-fg);
}

/* ==========================================================================
   Service detail page
   ========================================================================== */

.service-description {
  max-width: 72ch;
}

.service-description p + p { margin-top: 1.25rem; }

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr));
  gap: 1.5rem;
}

.benefit-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
}

.benefit-card h4 {
  font-size: 1rem;
  margin-bottom: 0.4rem;
  color: var(--primary);
}

.benefit-card p {
  font-size: 0.875rem;
  color: var(--muted-fg);
}

.methodology-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.methodology-step {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}

.step-number {
  flex-shrink: 0;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 700;
  font-family: "Inter", sans-serif;
}

.step-body h4 {
  font-size: 1rem;
  margin-bottom: 0.3rem;
}

.step-body p {
  font-size: 0.875rem;
  color: var(--muted-fg);
}

.why-us-box {
  background: var(--muted-bg);
  border-radius: calc(var(--radius) * 1.5);
  padding: 2rem 2.5rem;
  max-width: 72ch;
}

.why-us-box p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--foreground);
}

/* ==========================================================================
   Section heading block
   ========================================================================== */

.section-heading {
  text-align: center;
  max-width: 56ch;
  margin-inline: auto;
  margin-bottom: 3.5rem;
}

.section-heading h2 { margin-bottom: 0.75rem; text-align: center; }
.section-heading p { text-align: center; }

.section-heading p {
  font-size: 1.05rem;
  color: var(--muted-fg);
  max-width: 56ch;
  margin-inline: auto;
}

/* ==========================================================================
   Articles / Blog
   ========================================================================== */

.article-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

@media (max-width: 900px) {
  .article-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 580px) {
  .article-grid {
    grid-template-columns: 1fr;
  }
}

.article-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: calc(var(--radius) * 1.5);
  overflow: hidden;
  transition: box-shadow 0.25s ease, transform 0.25s ease;
  display: flex;
  flex-direction: column;
}

.article-card:hover {
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  transform: translateY(-3px);
}

.article-card-thumb {
  aspect-ratio: 16/9;
  background-color: var(--muted-bg);
  overflow: hidden;
}

.article-card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.article-card-body {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.article-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;   /* les pills passent à la ligne ensemble, pas en plein milieu */
  gap: 0.4rem 0.5rem;
  font-size: 0.8rem;
  color: var(--muted-fg);
  margin-bottom: 0.75rem;
}

.article-tag {
  background: rgba(27,77,62,0.1);
  color: var(--primary);
  padding: 0.2rem 0.6rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 500;
}

.article-card-body h3 {
  font-size: 1.1rem;
  margin-bottom: 0.6rem;
  flex: 1;
}

.article-card-body p {
  font-size: 0.875rem;
  color: var(--muted-fg);
  flex: 1;
  margin-bottom: 1.25rem;
}

.article-card-body .card-link {
  margin-top: auto;
}

/* Single article */
.article-content {
  max-width: 68ch;
  margin-inline: auto;
}

.article-content h1 {
  margin-bottom: 1rem;
}

.article-content .article-meta {
  margin-bottom: 2rem;
}

.article-content .wp-post-image {
  width: 100%;
  border-radius: calc(var(--radius) * 1.5);
  margin-bottom: 2.5rem;
}

.article-body {
  font-size: 1.05rem;
  line-height: 1.85;
  color: var(--foreground);
  max-width: 68ch;
}

.article-body h2 {
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--foreground);
  margin: 2.5rem 0 0.75rem;
  padding-top: 0.5rem;
  border-top: 2px solid var(--border);
}
.article-body h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--foreground);
  margin: 1.75rem 0 0.5rem;
}
.article-body p  { margin-bottom: 1.4rem; color: var(--foreground); }
.article-body ul, .article-body ol { padding-left: 1.5rem; margin-bottom: 1.4rem; }
.article-body li { margin-bottom: 0.5rem; color: var(--foreground); }
.article-body strong { color: var(--foreground); }
.article-body a { color: var(--primary); text-decoration: underline; text-underline-offset: 3px; }
.article-body a:hover { color: var(--accent); }
.article-body blockquote {
  border-left: 3px solid var(--primary);
  margin: 1.5rem 0;
  padding: 0.75rem 1.25rem;
  background: rgba(27,77,62,0.04);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-style: italic;
  color: var(--muted-fg);
}

/* ==========================================================================
   About page
   ========================================================================== */

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr));
  gap: 1.5rem;
}

.value-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
}

.value-card h4 {
  font-size: 1rem;
  color: var(--primary);
  margin-bottom: 0.4rem;
}

.value-card p {
  font-size: 0.875rem;
  color: var(--muted-fg);
}

/* ==========================================================================
   Contact page
   ========================================================================== */

/* Section hero contact — fond vert comme le header */
.contact-hero {
  padding-block: clamp(4rem, 8vw, 7rem);
  background: var(--primary);
}

/* Layout deux colonnes */
.contact-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: start;
}

/* ── Colonne gauche — tout en blanc sur fond vert ── */
.contact-left {
  padding-top: 0.5rem;
}

.contact-eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--white);
  background: rgba(255,255,255,0.15);
  padding: 0.3rem 0.75rem;
  border-radius: 2rem;
  margin-bottom: 1.25rem;
}

.contact-headline {
  font-size: clamp(2rem, 4vw, 2.75rem);
  line-height: 1.15;
  margin-bottom: 1rem;
  color: var(--white);
}

.contact-sub {
  font-size: 1rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
  max-width: 42ch;
  margin-bottom: 2.5rem;
}

/* Bénéfices */
.contact-benefits {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.contact-benefits li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact-benefit-icon {
  flex-shrink: 0;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 0.6rem;
  background: rgba(255,255,255,0.15);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
}

.contact-benefits strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.2rem;
}

.contact-benefits p {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.55;
  margin: 0;
}

/* Liens directs */
.contact-direct-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.contact-direct-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--white);
  text-decoration: none;
  padding: 0.5rem 1rem;
  border: 1.5px solid rgba(255,255,255,0.35);
  border-radius: 2rem;
  transition: background 0.15s, border-color 0.15s;
}

.contact-direct-link:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.7);
}

/* ── Colonne droite : carte formulaire blanche ── */
.contact-form-card {
  background: var(--white);
  border: none;
  border-radius: 1rem;
  padding: clamp(1.5rem, 4vw, 2.5rem);
  box-shadow: 0 8px 40px rgba(0,0,0,0.2);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

/* Rangée deux colonnes dans le formulaire */
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.form-group label {
  font-size: 0.83rem;
  font-weight: 600;
  color: var(--foreground);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.form-required {
  color: var(--primary);
  font-weight: 700;
}

.form-optional {
  font-size: 0.72rem;
  font-weight: 400;
  color: var(--muted-fg);
  background: var(--muted-bg);
  padding: 0.1rem 0.45rem;
  border-radius: 2rem;
  letter-spacing: 0.02em;
}

.form-group input,
.form-group textarea,
.form-group select {
  padding: 0.7rem 0.9rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: "Inter", sans-serif;
  font-size: 0.92rem;
  background: var(--white);
  color: var(--foreground);
  transition: border-color 0.15s, box-shadow 0.15s;
  outline: none;
  width: 100%;
}

.form-group select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23737373' stroke-width='2.5'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.9rem center;
  padding-right: 2.25rem;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(27,77,62,0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 110px;
}

/* Bouton submit */
.contact-submit {
  width: 100%;
  justify-content: center;
  margin-top: 0.5rem;
}

/* Mention confidentialité */
.contact-privacy {
  display: flex;
  align-items: flex-start;
  gap: 0.4rem;
  font-size: 0.76rem;
  color: var(--muted-fg);
  line-height: 1.5;
  margin-top: 0.25rem;
}

.contact-privacy svg {
  flex-shrink: 0;
  margin-top: 2px;
  opacity: 0.6;
}

/* Notifications */
.form-notice {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  padding: 0.875rem 1rem;
  border-radius: var(--radius);
  font-size: 0.875rem;
  margin-bottom: 1.25rem;
}

.form-notice svg { flex-shrink: 0; margin-top: 1px; }

.form-notice--success {
  background: rgba(27,77,62,0.08);
  border: 1px solid rgba(27,77,62,0.25);
  color: var(--primary-dark);
}

.form-notice--error {
  background: rgba(220,38,38,0.06);
  border: 1px solid rgba(220,38,38,0.25);
  color: #b91c1c;
}

/* ==========================================================================
   CTA Section
   ========================================================================== */

.cta-section {
  background-color: var(--primary);
  padding-block: var(--section-padding);
  text-align: center;
}

.cta-section h2 {
  color: var(--white);
  margin-bottom: 1rem;
  text-align: center;
}

.cta-section p {
  color: rgba(255,255,255,0.85);
  font-size: 1.05rem;
  max-width: 50ch;
  margin-inline: auto;
  margin-bottom: 2.5rem;
  text-align: center;
}

/* ==========================================================================
   Breadcrumb
   ========================================================================== */

.breadcrumb {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 1rem;
}

.breadcrumb a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
}
.breadcrumb a:hover { color: var(--white); }
.breadcrumb span { margin-inline: 0.4rem; }

/* ==========================================================================
   404 page
   ========================================================================== */

.not-found {
  min-height: calc(100vh - var(--header-height));
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 3rem 1rem;
}

.not-found h1 {
  font-size: clamp(4rem, 12vw, 8rem);
  color: var(--primary);
  margin-bottom: 0.25rem;
}

.not-found h2 {
  font-size: clamp(1.2rem, 3vw, 1.75rem);
  margin-bottom: 1rem;
}

.not-found p {
  color: var(--muted-fg);
  margin-bottom: 2rem;
}

/* ==========================================================================
   Responsive
   ========================================================================== */

@media (max-width: 768px) {
  .nav-primary { display: none; }
  .nav-toggle  { display: flex; }

  .site-footer .container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .contact-split {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .contact-sub {
    max-width: none;
  }

  .form-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .grid-2, .grid-3, .grid-4 {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   Animations
   ========================================================================== */

/* ==========================================================================
   Homepage services — 3 colonnes
   ========================================================================== */

.homepage-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 0;
}

.homepage-service-col {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: calc(var(--radius) * 1.5);
  padding: 1.75rem;
}

.homepage-service-header {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  margin-bottom: 1.25rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);
}

.homepage-service-header h3 {
  font-size: 1rem;
  font-weight: 600;
}

.homepage-service-list {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.homepage-service-list li { list-style: none; }

.homepage-service-list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem 0.625rem;
  border-radius: var(--radius);
  font-size: 0.875rem;
  color: var(--muted-fg);
  text-decoration: none;
  transition: background-color 0.15s, color 0.15s;
}

.homepage-service-list a::after {
  content: '→';
  opacity: 0;
  transition: opacity 0.15s, transform 0.15s;
  font-size: 0.8rem;
}

.homepage-service-list a:hover {
  background: var(--muted-bg);
  color: var(--primary);
}
.homepage-service-list a:hover::after { opacity: 1; transform: translateX(2px); }

@media (max-width: 768px) {
  .homepage-services-grid { grid-template-columns: 1fr; }
}

/* ==========================================================================
   Page Services — 3 catégories
   ========================================================================== */

/* Hero */
.svc-hero {
  background: var(--foreground);
  color: var(--white);
  padding: 6rem 0 4rem;
  overflow: hidden;
}

.svc-hero .container {
  position: relative;
}

.svc-hero__inner {
  position: relative;
  z-index: 2;
  max-width: 600px;
}

.svc-hero__label {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--accent);
  margin-bottom: 1.5rem;
}

.svc-hero__title {
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--white);
  margin-bottom: 1.25rem;
}

.svc-hero__sub {
  font-size: 1rem;
  color: rgba(255,255,255,0.55);
  margin: 0;
}

.svc-hero__count {
  position: absolute;
  right: -2rem;
  top: 50%;
  transform: translateY(-60%);
  font-size: clamp(10rem, 22vw, 18rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.05em;
  color: rgba(255,255,255,0.04);
  pointer-events: none;
  user-select: none;
  z-index: 1;
}

/* Blocs catégories */
.svc-block {
  padding: 5rem 0;
  border-bottom: 1px solid var(--border);
}

.svc-block--1 { background: var(--white); }
.svc-block--2 { background: var(--muted-bg); }
.svc-block--3 { background: var(--white); }

.svc-block__inner {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 5rem;
  align-items: start;
}

.svc-block__left {
  position: sticky;
  top: calc(var(--header-height, 64px) + 2rem);
}

.svc-block__num {
  font-size: 5rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--border);
  margin-bottom: 1rem;
  font-family: 'DM Mono', monospace;
}

.svc-block--1 .svc-block__num { color: rgba(27,77,62,0.12); }
.svc-block--2 .svc-block__num { color: rgba(220,133,31,0.15); }
.svc-block--3 .svc-block__num { color: rgba(27,77,62,0.1); }

.svc-block__title {
  font-size: clamp(1.7rem, 3vw, 2.2rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--foreground);
  margin-bottom: 1rem;
}

.svc-block__desc {
  font-size: 0.9rem;
  color: var(--muted-fg);
  line-height: 1.7;
  margin: 0;
  max-width: 28ch;
}

/* Lignes de services */
.svc-block__right {
  display: flex;
  flex-direction: column;
  border-top: 2px solid var(--foreground);
}

.svc-line {
  display: grid;
  grid-template-columns: 3.5rem 1fr 1fr 2rem;
  align-items: center;
  gap: 1.5rem;
  padding: 1.75rem 1rem;
  border-bottom: 1px solid var(--border);
  text-decoration: none;
  color: var(--foreground);
  transition: background 0.18s, padding-left 0.18s;
  position: relative;
}

.svc-line::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--accent);
  transform: scaleY(0);
  transition: transform 0.2s;
  transform-origin: bottom;
}

.svc-line:hover {
  background: rgba(27,77,62,0.04);
  padding-left: 1.5rem;
}

.svc-line:hover::before {
  transform: scaleY(1);
}

.svc-line__idx {
  font-size: 0.72rem;
  font-weight: 700;
  font-family: 'DM Mono', monospace;
  color: var(--accent);
  letter-spacing: 0.08em;
}

.svc-line__name {
  font-size: 1rem;
  font-weight: 700;
  color: var(--foreground);
}

.svc-line__desc {
  font-size: 0.85rem;
  color: var(--muted-fg);
  line-height: 1.55;
}

.svc-line__arrow {
  font-size: 1.1rem;
  color: var(--muted-fg);
  transition: color 0.18s, transform 0.18s;
  text-align: right;
}

.svc-line:hover .svc-line__arrow {
  color: var(--accent);
  transform: translateX(4px);
}

@media (max-width: 900px) {
  .svc-block__inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .svc-block__left {
    position: static;
  }
  .svc-block__num {
    font-size: 3.5rem;
  }
}

@media (max-width: 640px) {
  .svc-line {
    grid-template-columns: 3rem 1fr 2rem;
    grid-template-rows: auto auto;
    gap: 0.75rem 1rem;
  }
  .svc-line__desc {
    grid-column: 2;
    grid-row: 2;
  }
  .svc-line__arrow {
    grid-column: 3;
    grid-row: 1;
  }
}

/* Legacy .service-card (utilisé dans d'autres pages) */
.service-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: calc(var(--radius) * 1.5);
  padding: 1.75rem;
  text-decoration: none;
  color: var(--foreground);
  transition: box-shadow 0.25s ease, transform 0.25s ease, border-color 0.2s;
}

.service-card:hover {
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  transform: translateY(-3px);
  border-color: var(--primary);
}

.service-card h3 { font-size: 1.05rem; margin-bottom: 0.5rem; }
.service-card p  { font-size: 0.875rem; color: var(--muted-fg); flex: 1; margin-bottom: 1.25rem; }
.service-card .card-link { margin-top: auto; }

/* ==========================================================================
   Animations
   ========================================================================== */

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

.animate-fade-up {
  animation: fadeUp 0.6s ease both;
}

.animate-delay-1 { animation-delay: 0.1s; }
.animate-delay-2 { animation-delay: 0.2s; }
.animate-delay-3 { animation-delay: 0.3s; }
.animate-delay-4 { animation-delay: 0.4s; }

/* ==========================================================================
   Actualités — Recherche & filtres
   ========================================================================== */

.actu-filters {
  margin-bottom: 3rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.actu-search-wrap {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 0.6rem 1rem;
  max-width: 560px;
  transition: border-color 0.15s, box-shadow 0.15s;
}

.actu-search-wrap:focus-within {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(27,77,62,0.1);
}

.actu-search-wrap svg { flex-shrink: 0; color: var(--muted-fg); }

.actu-search-wrap input {
  flex: 1;
  border: none;
  outline: none;
  background: transparent;
  font-family: "Inter", sans-serif;
  font-size: 0.95rem;
  color: var(--foreground);
}

.actu-search-wrap input::placeholder { color: var(--muted-fg); }

.actu-search-btn {
  flex-shrink: 0;
  padding: 0.4rem 1rem;
  background: var(--accent);
  color: var(--white);
  border: none;
  border-radius: calc(var(--radius) - 2px);
  font-family: "Inter", sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.15s;
}
.actu-search-btn:hover { background: var(--accent-hover); }

/* Filtres par catégorie */
.actu-cats {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.actu-cat-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.875rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--muted-fg);
  background: var(--white);
  border: 1.5px solid var(--border);
  text-decoration: none;
  cursor: pointer;
  font-family: inherit;
  line-height: inherit;
  transition: background-color 0.15s, color 0.15s, border-color 0.15s;
}

.actu-cat-pill:hover {
  background: rgba(27,77,62,0.06);
  border-color: var(--primary);
  color: var(--primary);
}

.actu-cat-pill.active {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
}

.actu-cat-count {
  background: rgba(255,255,255,0.25);
  padding: 0.05rem 0.35rem;
  border-radius: 999px;
  font-size: 0.7rem;
}

.actu-cat-pill.active .actu-cat-count { background: rgba(255,255,255,0.25); }
.actu-cat-pill:not(.active) .actu-cat-count { background: var(--muted-bg); color: var(--muted-fg); }

/* État vide */
.actu-empty {
  text-align: center;
  padding: 5rem 1rem;
  color: var(--muted-fg);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.actu-empty h2 { color: var(--foreground); }

/* Séparateur — masqué, les pills se suffisent */
.article-meta-sep { display: none; }

/* Pill date — bleu ardoise */
.article-meta time {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.2rem 0.65rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 500;
  white-space: nowrap;
  background: rgba(220,133,31,0.12);
  color: #a05c0a;
}

/* Pill temps de lecture — ambre */
.article-reading-time {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.2rem 0.65rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 500;
  white-space: nowrap;
  background: rgba(245,158,11,0.12);
  color: #92400e;
}

/* Pill catégorie — pas de retour à la ligne non plus */
.article-tag {
  white-space: nowrap;
}

/* Placeholder vignette vide */
.article-card-thumb--empty {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--muted-bg);
}

/* Pagination */
.pagination {
  margin-top: 3rem;
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.25rem;
  height: 2.25rem;
  padding-inline: 0.5rem;
  border-radius: var(--radius);
  font-size: 0.875rem;
  color: var(--foreground);
  border: 1.5px solid var(--border);
  text-decoration: none;
  transition: background-color 0.15s, color 0.15s, border-color 0.15s;
}
.pagination .page-numbers:hover { border-color: var(--primary); color: var(--primary); }
.pagination .page-numbers.current { background: var(--primary); color: var(--white); border-color: var(--primary); }
.pagination .page-numbers.prev, .pagination .page-numbers.next { padding-inline: 1rem; }

/* ==========================================================================
   Single article — Hero split layout (texte gauche / image droite)
   ========================================================================== */

.article-hero-split {
  background: var(--muted-bg);
  padding-block: 0;
  min-height: 420px;
  display: flex;
  align-items: stretch;
}

.article-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 0;
  align-items: stretch;
  width: 100%;
}

.article-hero-text {
  padding: clamp(2.5rem, 5vw, 4rem) clamp(1.5rem, 3vw, 3rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.article-hero-text .breadcrumb {
  margin-bottom: 1.5rem;
}

.article-hero-title {
  color: var(--foreground);
  font-size: clamp(1.4rem, 2.8vw, 2.2rem);
  line-height: 1.2;
  margin: 0 0 1.25rem;
  max-width: 100%;
}

.article-hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 0.75rem;
}

.article-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.3rem 0.85rem;
  border-radius: var(--radius);
  font-size: 0.8rem;
  font-weight: 600;
  border: 1.5px solid;
}

.article-pill--cat {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}

.article-pill--reading {
  background: rgba(27, 77, 62, 0.06);
  border-color: var(--primary);
  color: var(--primary);
}

.article-pill--date {
  background: rgba(220, 133, 31, 0.06);
  border-color: var(--accent);
  color: var(--accent);
}

.article-hero-image {
  border-radius: 0;
  overflow: hidden;
  aspect-ratio: unset;
  background: var(--border);
}

.article-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.article-hero-image-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--background);
}

@media (max-width: 768px) {
  .article-hero-grid {
    grid-template-columns: 1fr;
  }

  .article-hero-image {
    max-height: 300px;
  }

  .article-hero-title {
    max-width: 100%;
  }
}

/* Layout article + sommaire */
.single-layout {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 4rem;
  align-items: start;
}

/* Fond blanc section corps d'article */
.section--article-body {
  background: var(--white);
}

/* Navigation bas de page */
.article-nav {
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.article-nav-link {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.875rem;
  color: var(--primary);
  text-decoration: none;
  max-width: 280px;
  transition: opacity 0.15s;
}
.article-nav-link:hover { opacity: 0.75; }

.article-nav-link span {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.article-nav-link small {
  font-size: 0.75rem;
  color: var(--muted-fg);
  font-style: normal;
}

.article-nav-link--next { margin-left: auto; text-align: right; }
.article-nav-link--next span { align-items: flex-end; }

/* ==========================================================================
   Sommaire (TOC) — sticky sidebar
   ========================================================================== */

.article-toc {
  position: sticky;
  top: calc(var(--header-height) + 1.5rem);
  background: var(--primary);
  border-radius: calc(var(--radius) * 1.5);
  padding: 1.5rem;
  max-height: calc(100vh - var(--header-height) - 3rem);
  overflow-y: auto;
  min-height: 60px;
  box-shadow: 0 4px 24px rgba(27,77,62,0.18);
}

/* Scrollbar discrète dans le TOC */
.article-toc::-webkit-scrollbar { width: 4px; }
.article-toc::-webkit-scrollbar-track { background: transparent; }
.article-toc::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.2); border-radius: 2px; }

.toc-title {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.5);
  margin-bottom: 1rem;
  font-family: "Inter", sans-serif;
}

.toc-list {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.toc-list li { list-style: none; }

.toc-list a {
  display: block;
  font-size: 0.83rem;
  line-height: 1.45;
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  padding: 0.35rem 0.75rem;
  border-radius: var(--radius);
  transition: color 0.15s, background-color 0.15s;
}

.toc-list a:hover {
  color: var(--white);
  background: rgba(255,255,255,0.08);
}

.toc-list a.toc-active {
  color: var(--white);
  font-weight: 600;
  background: rgba(220,133,31,0.2);
}

/* H3 sous-items décalés */
.toc-list .toc-h3 a {
  padding-left: 1.5rem;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
}

/* Responsive : TOC passe en bas sur mobile */
@media (max-width: 900px) {
  .single-layout {
    grid-template-columns: 1fr;
  }

  .article-toc {
    position: static;
    order: -1; /* Avant l'article sur mobile */
    max-height: none;
  }
}

/* ==========================================================================
   ACT Pas à Pas — Étapes
   ========================================================================== */

.act-steps {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 900px;
  margin: 0 auto;
}

.act-step {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 1.25rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
}

.act-step:hover {
  border-color: var(--primary);
  box-shadow: 0 4px 20px rgba(27, 77, 62, 0.08);
}

.act-step__number {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  font-size: 1.5rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.act-step__content {
  min-width: 0;
}

.act-step__header h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--foreground);
  margin: 0 0 0.35rem;
}

.act-step__question {
  display: block;
  font-size: 0.88rem;
  font-style: italic;
  color: var(--muted-fg);
  margin-bottom: 1rem;
  line-height: 1.5;
}

.act-step__details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.act-step__col h5 {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--primary);
  font-weight: 700;
  margin: 0 0 0.5rem;
}

.act-step__col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.act-step__col li {
  position: relative;
  padding-left: 1.1rem;
  font-size: 0.88rem;
  color: var(--foreground);
  line-height: 1.6;
  margin-bottom: 0.35rem;
}

.act-step__col li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--primary);
  opacity: 0.5;
}

@media (max-width: 640px) {
  .act-step {
    grid-template-columns: 1fr;
    padding: 1.25rem;
  }

  .act-step__number {
    width: 44px;
    height: 44px;
    font-size: 1.2rem;
  }

  .act-step__details {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

/* ==========================================================================
   Financement — grille de chiffres
   ========================================================================== */

.funding-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  max-width: 100%;
  margin: 0 auto;
}

.funding-card {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 16px;
  padding: 2.5rem 2.25rem 2.25rem;
  text-align: left;
  position: relative;
  overflow: hidden;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.funding-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.28s ease;
}

.funding-card:hover {
  border-color: var(--primary);
  box-shadow: 0 6px 24px rgba(27, 77, 62, 0.1);
  transform: translateY(-3px);
}

.funding-card:hover::after {
  transform: scaleX(1);
}

.funding-card__icon {
  color: var(--accent);
  margin-bottom: 1.25rem;
  display: flex;
}

.funding-card__value {
  font-size: clamp(2rem, 2.8vw, 3rem);
  font-weight: 900;
  color: var(--primary);
  line-height: 1;
  letter-spacing: -0.04em;
  margin-bottom: 0.65rem;
  display: block;
}

.funding-card__label {
  font-size: 0.78rem;
  color: var(--muted-fg);
  line-height: 1.5;
  text-align: left;
}

.funding-card__dual {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 0.65rem;
}

.funding-card__dual-row {
  display: flex;
  align-items: baseline;
  gap: 0.6rem;
}

.funding-card__dual-value {
  font-size: clamp(1.5rem, 2vw, 2rem);
  font-weight: 900;
  color: var(--primary);
  letter-spacing: -0.03em;
  line-height: 1;
}

.funding-card__dual-tag {
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

@media (max-width: 768px) {
  .funding-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .funding-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   Prérequis
   ========================================================================== */

.prerequisites-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 720px;
  margin: 0 auto;
}

.prerequisite-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
}

.prerequisite-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(27, 77, 62, 0.1);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.prerequisite-item h5 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--foreground);
  margin: 0 0 0.25rem;
}

.prerequisite-item p {
  font-size: 0.88rem;
  color: var(--muted-fg);
  margin: 0;
  line-height: 1.5;
}

/* ==========================================================================
   Pourquoi nous — grille
   ========================================================================== */

.why-us-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  max-width: 900px;
  margin: 0 auto;
}

.why-us-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.why-us-item:hover {
  border-color: var(--primary);
  box-shadow: 0 4px 20px rgba(27, 77, 62, 0.08);
}

.why-us-item h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--foreground);
  margin: 0 0 0.5rem;
}

.why-us-item p {
  font-size: 0.88rem;
  color: var(--muted-fg);
  margin: 0;
  line-height: 1.6;
}

@media (max-width: 640px) {
  .why-us-grid {
    grid-template-columns: 1fr;
  }
}

/* Grille benefits 3 colonnes */
.benefits-grid--3 {
  grid-template-columns: repeat(3, 1fr);
}

.benefit-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(27, 77, 62, 0.1);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.75rem;
}

@media (max-width: 768px) {
  .benefits-grid--3 {
    grid-template-columns: 1fr;
  }
}

/* Services complémentaires */
.related-services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
  gap: 1.25rem;
  max-width: 900px;
  margin: 0 auto;
}

.related-service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
  display: flex;
  flex-direction: column;
}

.related-service-card:hover {
  border-color: var(--primary);
  box-shadow: 0 4px 20px rgba(27, 77, 62, 0.08);
  transform: translateY(-2px);
}

.related-service-card h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--foreground);
  margin: 0 0 0.5rem;
}

.related-service-card p {
  font-size: 0.88rem;
  color: var(--muted-fg);
  margin: 0 0 1rem;
  line-height: 1.5;
  flex: 1;
}

.related-service-card .card-link {
  margin-top: auto;
}

/* ==========================================================================
   Page À propos — Fondateur
   ========================================================================== */

.founder-block {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 3rem;
  align-items: start;
  max-width: 960px;
  margin-inline: auto;
}

.founder-photo {
  position: static;
}

.founder-img {
  width: 100%;
  height: auto;
  border-radius: calc(var(--radius) * 2);
  object-fit: cover;
  aspect-ratio: 3 / 4;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
}

.founder-text {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--foreground);
}

.founder-intro {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--foreground);
  margin-bottom: 1rem;
}

.founder-text p {
  margin-bottom: 1.15rem;
}

.founder-signature {
  margin-top: 2rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
}

.founder-signature strong {
  font-size: 1.05rem;
  color: var(--foreground);
}

.founder-signature span {
  font-size: 0.88rem;
  color: var(--muted-fg);
}

/* Valeurs — icônes */
.value-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(27,77,62,0.1);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.75rem;
}

@media (max-width: 768px) {
  .founder-block {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .founder-photo {
    position: static;
    max-width: 260px;
    margin-inline: auto;
  }
}

/* ==========================================================================
   About — Timeline parcours
   ========================================================================== */

.about-timeline {
  max-width: 640px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
}

.about-timeline::before {
  content: '';
  position: absolute;
  left: 11px;
  top: 6px;
  bottom: 6px;
  width: 2px;
  background: linear-gradient(
    to bottom,
    var(--primary) 0%,
    var(--accent) 50%,
    var(--foreground) 100%
  );
  opacity: 0.25;
}

.about-timeline__item {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 1.5rem;
  padding-bottom: 2.5rem;
  position: relative;
}

.about-timeline__item:last-child { padding-bottom: 0; }

.about-timeline__marker {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--primary);
  border: 4px solid var(--background);
  box-shadow: 0 0 0 2px var(--primary);
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.about-timeline__marker--primary {
  background: var(--primary);
  box-shadow: 0 0 0 2px var(--primary);
}

.about-timeline__marker--accent {
  background: var(--accent);
  box-shadow: 0 0 0 2px var(--accent);
}

.about-timeline__marker--dark {
  background: var(--foreground);
  box-shadow: 0 0 0 2px var(--foreground);
}

.about-timeline__year {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 0.25rem;
}

.about-timeline__content h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--foreground);
  margin: 0 0 0.5rem;
}

.about-timeline__content p {
  font-size: 0.9rem;
  color: var(--muted-fg);
  line-height: 1.65;
  margin: 0;
}

.about-timeline__certs {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.about-timeline__certs li {
  font-size: 0.9rem;
  color: var(--muted-fg);
  line-height: 1.65;
  padding-left: 1.25rem;
  position: relative;
}

.about-timeline__certs li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}

.about-timeline__certs li strong {
  color: var(--foreground);
}

/* ==========================================================================
   About — Pro bono
   ========================================================================== */

.probono-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 960px;
  margin-inline: auto;
}

.probono-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem 1.75rem;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  transition: transform 0.18s, box-shadow 0.18s;
}

.probono-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(0,0,0,0.10);
}

/* Icônes cercles remplis (style B) */
.icon-filled {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  flex-shrink: 0;
}

.icon-filled--primary { background: var(--primary); }
.icon-filled--primary-light { background: var(--primary-light); }
.icon-filled--accent { background: var(--accent); }
.icon-filled--dark { background: var(--foreground); }

.probono-card h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--foreground);
  margin: 0 0 0.5rem;
}

.probono-card p {
  font-size: 0.88rem;
  color: var(--muted-fg);
  line-height: 1.65;
  margin: 0;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--muted-fg);
  line-height: 1.65;
  max-width: 56ch;
  margin: 0.5rem auto 0;
}


@media (max-width: 768px) {
  .probono-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

/* ==========================================================================
   Responsive — Tablette (max-width: 768px)
   ========================================================================== */

@media (max-width: 768px) {

  /* Texte justifié → aligné à gauche sur mobile pour lisibilité */
  body { text-align: left; hyphens: none; }

  /* Section padding réduit */
  :root { --section-padding: clamp(40px, 6vw, 80px); }

  /* Hero */
  .hero-content { padding: 2.5rem 1rem 3rem; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { text-align: center; justify-content: center; }
  .hero-scroll { display: none; }

  /* Partners marquee */
  .partners-track { gap: 2.5rem; }
  .partner-logo img { height: 36px !important; }
  .partners-section { padding-block: 2rem; }

  /* Section headings */
  .section-heading h2 { font-size: 1.6rem; }
  .section-heading p { font-size: 0.95rem; }

  /* CTA */
  .cta-section h2 { font-size: 1.5rem; }
  .cta-section p { font-size: 0.95rem; }


  /* Why pillars */
  .why-pillars { grid-template-columns: 1fr !important; gap: 1rem; }

  /* Benefits grid */
  .benefits-grid, .benefits-grid--3 { grid-template-columns: 1fr; }

  /* Related services */
  .related-services-grid { grid-template-columns: 1fr; }

  /* Breadcrumb */
  .breadcrumb { font-size: 0.78rem; flex-wrap: wrap; }

  /* Service description */
  .service-description { font-size: 0.95rem; }

  /* About / Founder */
  .founder-intro { font-size: 1.05rem; }

  /* Article hero split */
  .article-hero-split { gap: 1.5rem; }
  .article-hero-img { max-height: 280px; }
}

/* ==========================================================================
   Responsive — Mobile (max-width: 640px)
   ========================================================================== */

@media (max-width: 640px) {
  .actu-search-wrap { max-width: 100%; }
  .article-hero-title { max-width: 100%; }

  /* Cards padding */
  .article-card-body { padding: 1.25rem; }
  .hp-article-card__body { padding: 1rem; }
  .service-card { padding: 1.25rem; }
  .why-pillar { padding: 1.25rem; }
  .benefit-card { padding: 1.25rem; }

  /* Funding cards */
  .funding-card { padding: 1.5rem 1.25rem; }
  .funding-card__value { font-size: 2rem; letter-spacing: -0.03em; }

  /* Prerequisites */
  .prerequisite-item { flex-direction: column; gap: 0.75rem; }

  /* ACT steps padding */
  .act-step { padding: 1.25rem; }
  .act-step__col li { font-size: 0.82rem; }

  /* Contact benefits */
  .contact-benefits { gap: 1rem; }
  .contact-benefit-icon { width: 1.75rem; height: 1.75rem; }

  /* Article meta pills smaller */
  .article-meta { font-size: 0.72rem; gap: 0.3rem 0.4rem; }
}

/* ==========================================================================
   Responsive — Petit mobile (max-width: 480px)
   ========================================================================== */

@media (max-width: 480px) {

  /* Base font reduction */
  html { font-size: 15px; }

  /* Container padding */
  .container { padding-inline: 1rem; }

  /* Header */
  .site-logo { font-size: 1.15rem; }
  .nav-contact-btn { padding: 0.4rem 0.8rem; font-size: 0.75rem; }
  .nav-contact-btn .btn-arrow { width: 22px; height: 22px; }
  .nav-contact-btn .btn-arrow svg { width: 10px; height: 10px; }

  /* Hero */
  .hero-content { padding: 2rem 0.75rem 2.5rem; }
  .hero-content h1 { font-size: 1.8rem; }
  .hero-content p { font-size: 0.92rem; }
  .hero-actions .btn { font-size: 0.88rem; padding: 0.7rem 1.25rem; }

  /* Partners */
  .partners-track { gap: 2rem; }
  .partner-logo img { height: 30px !important; }
  .partners-label { font-size: 1.1rem; }

  /* Article cards */
  .article-card-body h3 { font-size: 1rem; }
  .hp-article-card__body h3 { font-size: 0.95rem; }

  /* CTA section */
  .cta-section { padding-block: clamp(40px, 6vw, 80px); }
  .cta-section h2 { font-size: 1.3rem; }
  .cta-section p { font-size: 0.88rem; }
  .cta-section .btn { font-size: 0.88rem; }

  /* Footer */
  .site-footer .container { gap: 1.5rem; }
  .footer-brand p { font-size: 0.82rem; }
  .footer-col h4 { font-size: 0.72rem; }

  /* Contact form */
  .form-group input,
  .form-group textarea,
  .form-group select { padding: 0.6rem 0.8rem; font-size: 0.88rem; }
  .contact-headline { font-size: 1.5rem; }

  /* About page */
  .founder-photo { max-width: 180px; }
  .founder-intro { font-size: 1rem; }
  .founder-text p { font-size: 0.88rem; }

  /* TOC */
  .toc-list a { font-size: 0.75rem; }

  /* Funding grid */
  .funding-grid { grid-template-columns: 1fr; }

  /* Section heading */
  .section-heading h2 { font-size: 1.35rem; }

  /* Page hero */
  .page-hero h1 { font-size: 1.5rem; }
  .page-hero p { font-size: 0.92rem; }

  /* Buttons global */
  .btn { font-size: 0.88rem; padding: 0.65rem 1.25rem; }
  .btn--lg { font-size: 0.92rem; padding: 0.75rem 1.5rem; }

  /* Certification badge */
  .certif-badge { flex-direction: column; text-align: center; gap: 1.25rem; }
  .certif-badge__logo { max-width: 120px; }
  .certif-badge__text h3 { font-size: 1.1rem; }

  /* FAQ */
  .faq-item__question { font-size: 0.95rem; padding: 1rem 1.1rem; }
  .faq-item__answer { font-size: 0.88rem; padding: 0 1.1rem 1rem; }
}

/* ==========================================================================
   Service pages — Visual enhancement layer
   ========================================================================== */

/* Hero : gradient + texture radiale */
.page-hero {
  background: linear-gradient(145deg, var(--primary-dark) 0%, var(--primary) 55%, var(--primary-light) 100%);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 90% at 88% 5%, rgba(220,133,31,0.18) 0%, transparent 55%),
    radial-gradient(ellipse 40% 60% at 8% 95%, rgba(255,255,255,0.05) 0%, transparent 50%),
    repeating-linear-gradient(-45deg, transparent, transparent 28px, rgba(255,255,255,0.018) 28px, rgba(255,255,255,0.018) 56px);
  pointer-events: none;
}
.page-hero .container { position: relative; z-index: 1; }

/* Eyebrow — étiquette catégorie */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.9rem;
}
.eyebrow::before {
  content: '';
  display: inline-block;
  width: 1.75rem;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
  flex-shrink: 0;
}
/* Eyebrow dans le hero (fond sombre) */
.page-hero .eyebrow { color: rgba(220,133,31,0.9); }

/* Strip de stats dans le hero */
.hero-stats {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 2rem;
}
.hero-stat {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 99px;
  padding: 0.35rem 0.9rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(255,255,255,0.92);
}
.hero-stat svg { opacity: 0.75; }

/* Section heading — barre accent orange */
.section-heading {
  padding-bottom: 2rem;
  position: relative;
}
.section-heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 2.75rem;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), rgba(220,133,31,0.3));
  border-radius: 2px;
}
.section-heading .eyebrow {
  display: flex;
  justify-content: center;
  color: var(--accent);
}

/* Service description — premier paragraphe en lead */
.service-description p:first-child {
  font-size: clamp(1.05rem, 2vw, 1.18rem);
  font-weight: 500;
  color: var(--foreground);
  line-height: 1.7;
  padding: 1rem 1.25rem;
  background: rgba(27,77,62,0.05);
  border-radius: var(--radius);
  margin-bottom: 1.5rem;
}

/* Benefit cards — top accent + hover lift */
.benefit-card {
  border-left: none;
  border-top: 3px solid var(--border);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-top-color 0.25s ease;
}
.benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 36px rgba(27,77,62,0.1);
  border-top-color: var(--accent);
}

/* Methodology — ligne verticale connectant les étapes */
.methodology-list {
  position: relative;
}
.methodology-list::before {
  content: '';
  position: absolute;
  left: 1.1rem;
  top: 1.8rem;
  bottom: 1.8rem;
  width: 2px;
  background: linear-gradient(to bottom, var(--primary) 0%, rgba(27,77,62,0.08) 100%);
  border-radius: 2px;
}
.step-number {
  position: relative;
  z-index: 1;
  box-shadow: 0 0 0 5px rgba(27,77,62,0.1), 0 0 0 10px rgba(27,77,62,0.04);
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}
.methodology-step:hover .step-number {
  box-shadow: 0 0 0 5px rgba(220,133,31,0.2), 0 0 0 10px rgba(220,133,31,0.07);
  transform: scale(1.08);
}

/* CTA — gradient + texture diagonale */
.cta-section {
  background: var(--primary);
  position: relative;
  overflow: hidden;
}
.cta-section .container { position: relative; z-index: 1; }

/* ACT steps — hover lift */
.act-step:hover {
  box-shadow: 0 6px 24px rgba(27,77,62,0.1);
}

/* Why us — top accent sur hover */
.why-us-item:hover {
  border-color: var(--primary);
  border-top-color: var(--accent);
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(27,77,62,0.1);
}

/* Funding cards — hover géré dans le bloc principal */

/* Prérequis items — accent hover */
.prerequisite-item {
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}
.prerequisite-item:hover {
  border-color: var(--primary);
  box-shadow: 0 6px 20px rgba(27,77,62,0.08);
  transform: translateX(3px);
}

/* ==========================================================================
   Certification Badge
   ========================================================================== */

.certif-section {
  background: var(--muted-bg);
  padding-block: clamp(48px, 6vw, 80px);
}

.certif-badge {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  max-width: 780px;
  margin: 0 auto;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem 2.5rem;
  box-shadow: 0 4px 20px rgba(27,77,62,0.1);
}

.certif-badge__logo {
  flex-shrink: 0;
  max-width: 110px;
  filter: none;
}

.certif-badge__logo--act {
  filter: none;
  max-width: 130px;
}

.certif-badge__text h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--foreground);
}

.certif-badge__text p {
  font-size: 0.95rem;
  color: var(--muted-fg);
  line-height: 1.55;
  text-align: left;
  margin: 0;
}

.certif-badge__pill {
  display: inline-block;
  margin-top: 0.75rem;
  padding: 0.3rem 0.85rem;
  background: var(--primary);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-radius: 99px;
}

/* ==========================================================================
   FAQ Accordion
   ========================================================================== */

.faq-list {
  max-width: 780px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--white);
  overflow: hidden;
}

.faq-item__question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  background: none;
  border: none;
  cursor: pointer;
  padding: 1.1rem 1.5rem;
  font-size: 1rem;
  font-weight: 600;
  color: var(--foreground);
  text-align: left;
  font-family: inherit;
  line-height: 1.4;
  transition: color 0.2s;
}

.faq-item__question:hover { color: var(--primary); }

.faq-item__question[aria-expanded="true"] { color: var(--primary); }

.faq-item__icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, transform 0.3s;
}

.faq-item__question[aria-expanded="true"] .faq-item__icon {
  background: var(--primary);
  transform: rotate(45deg);
}

.faq-item__icon svg {
  display: block;
}

.faq-item__question[aria-expanded="true"] .faq-item__icon svg path {
  stroke: var(--white);
}

.faq-item__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.2s ease;
  padding: 0 1.5rem;
  font-size: 0.95rem;
  color: var(--muted-fg);
  line-height: 1.7;
}

.faq-item__question[aria-expanded="true"] + .faq-item__answer {
  max-height: 400px;
  padding: 0 1.5rem 1.25rem;
}

/* ==========================================================================
   Accessibilité — focus-visible
   ========================================================================== */

.skip-to-content {
  position: absolute;
  top: -9999px;
  left: 1rem;
  background: var(--accent);
  color: #fff;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: 0 0 4px 4px;
  z-index: 9999;
  text-decoration: none;
}
.skip-to-content:focus {
  top: 0;
}

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 2px;
}

/* ==========================================================================
   CTA Réassurance
   ========================================================================== */

.cta-reassurance {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.65);
  margin-top: 0.75rem;
  margin-bottom: 1.5rem;
  text-align: center;
  letter-spacing: 0.01em;
}

.cta-reassurance span::before {
  content: "✓ ";
}

.cta-reassurance--dark {
  color: var(--muted-fg);
}

/* ==========================================================================
   Social proof — strip métriques homepage
   ========================================================================== */

.metrics-strip {
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding-block: 2.5rem;
}

.metrics-strip .container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}

.metric-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 3rem;
  border-right: 1px solid var(--border);
  flex: 1;
  min-width: 160px;
}

.metric-item:last-child { border-right: none; }

.metric-item__value {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  color: var(--primary);
  line-height: 1.1;
  margin-bottom: 0.35rem;
  font-family: "Fraunces", serif;
}

.metric-item__label {
  font-size: 0.82rem;
  color: var(--muted-fg);
  line-height: 1.4;
  max-width: 14ch;
}

@media (max-width: 640px) {
  .metrics-strip .container { gap: 1.5rem; }
  .metric-item { border-right: none; border-bottom: 1px solid var(--border); padding: 1rem 0; width: 100%; }
  .metric-item:last-child { border-bottom: none; }
}

/* ==========================================================================
   Testimonial — homepage
   ========================================================================== */

.testimonial-strip {
  padding-block: clamp(48px, 6vw, 72px);
  background: var(--primary);
  position: relative;
  overflow: hidden;
}

.testimonial-strip::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(-45deg, transparent, transparent 28px, rgba(255,255,255,0.02) 28px, rgba(255,255,255,0.02) 56px);
  pointer-events: none;
}

.testimonial-strip .container {
  position: relative;
  z-index: 1;
  max-width: 680px;
  text-align: center;
}

.testimonial-quote {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  font-style: italic;
  color: rgba(255,255,255,0.92);
  line-height: 1.7;
  margin-bottom: 1.25rem;
  font-family: "Fraunces", serif;
}

.testimonial-quote::before { content: '\201C'; }
.testimonial-quote::after  { content: '\201D'; }

.testimonial-author {
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.testimonial-stars {
  display: flex;
  justify-content: center;
  gap: 0.25rem;
  margin-bottom: 1rem;
  color: var(--accent);
}

/* ==========================================================================
   Founder block — homepage
   ========================================================================== */

.founder-hp {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 3.5rem;
  align-items: center;
  max-width: 860px;
  margin: 0 auto;
}

.founder-hp__photo {
  flex-shrink: 0;
}

.founder-hp__photo img,
.founder-hp__photo .founder-hp__placeholder {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: calc(var(--radius) * 2);
  display: block;
}

.founder-hp__placeholder {
  background: linear-gradient(145deg, var(--primary-light), var(--primary));
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.3);
  font-size: 4rem;
}

.founder-hp__body {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.founder-hp__tagline {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--foreground);
  line-height: 1.5;
  margin: 0;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--border);
}

.founder-hp__metrics {
  display: flex;
  gap: 2.5rem;
  flex-wrap: wrap;
}

.founder-metric {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.founder-metric__num {
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -0.03em;
  line-height: 1;
}

.founder-metric__label {
  font-size: 0.78rem;
  color: var(--muted-fg);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  font-weight: 600;
}

.founder-hp__body blockquote {
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  font-family: "Fraunces", serif;
  font-style: italic;
  color: var(--foreground);
  line-height: 1.7;
  border-left: 3px solid var(--accent);
  padding-left: 1.25rem;
  margin: 0;
}

.founder-hp__body p {
  font-size: 0.95rem;
  color: var(--muted-fg);
  line-height: 1.7;
  margin: 0;
}

.founder-hp__sig {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 0.5rem;
}

.founder-hp__sig strong {
  display: block;
  font-size: 1rem;
  color: var(--foreground);
}

.founder-hp__sig span {
  font-size: 0.82rem;
  color: var(--muted-fg);
}

.founder-hp__certs {
  margin-left: auto;
  flex-shrink: 0;
}

.founder-cert-logo {
  height: 56px;
  width: auto;
  display: block;
  opacity: 0.9;
}

@media (max-width: 768px) {
  .founder-hp {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .founder-hp__photo {
    max-width: 200px;
    margin: 0 auto;
  }
}

/* ==========================================================================
   CTA intermédiaire inline dans page de service
   ========================================================================== */

.cta-inline {
  background: var(--white);
  border: 1.5px solid var(--primary);
  border-radius: calc(var(--radius) * 1.5);
  padding: 2rem 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  max-width: 860px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.cta-inline__text h3 {
  font-size: 1.1rem;
  color: var(--foreground);
  margin-bottom: 0.3rem;
}

.cta-inline__text p {
  font-size: 0.88rem;
  color: var(--muted-fg);
  margin: 0;
}

@media (max-width: 640px) {
  .cta-inline { flex-direction: column; text-align: center; padding: 1.5rem; }
}

/* Eyebrow — fix taille minimale */
.eyebrow { font-size: 0.8rem; }

/* ==========================================================================
   Pages légales
   ========================================================================== */

.legal-content h2 {
  font-size: 1.2rem;
  color: var(--foreground);
  margin-top: 2.5rem;
  margin-bottom: 0.75rem;
  padding-bottom: 0.4rem;
  border-bottom: 2px solid var(--accent);
  display: inline-block;
}
.legal-content h2:first-child {
  margin-top: 0;
}
.legal-content p,
.legal-content li {
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--foreground);
}
.legal-content ul {
  padding-left: 1.25rem;
  margin: 0.75rem 0 1rem;
}
.legal-content ul li {
  margin-bottom: 0.4rem;
}
.legal-content a {
  color: var(--accent);
  text-decoration: underline;
}
.legal-content table th {
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--foreground);
}
.legal-content table td {
  font-size: 0.875rem;
  color: var(--foreground);
  vertical-align: top;
}
@media (max-width: 640px) {
  .legal-content table {
    display: block;
    overflow-x: auto;
  }
}

/* ==========================================================================
   ACT — Bloc crédibilité (Banque de France + citation)
   ========================================================================== */

.act-credibility {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.act-credibility__didyouknow {
  background: var(--background);
  border: 1px solid rgba(27, 77, 62, 0.15);
  border-radius: 12px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.act-credibility__tag {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--primary);
  background: rgba(27, 77, 62, 0.1);
  border-radius: 4px;
  padding: 0.2rem 0.55rem;
  width: fit-content;
}

.act-credibility__didyouknow p {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--foreground);
  margin: 0;
  max-width: none;
}

.act-credibility__quote {
  background: var(--primary);
  border-radius: 12px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1rem;
  margin: 0;
}

.act-credibility__quote p {
  font-size: 0.9rem;
  font-style: italic;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
  max-width: none;
}

.act-credibility__quote footer {
  font-size: 0.72rem;
  font-style: normal;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.03em;
}

@media (max-width: 768px) {
  .act-credibility {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   ACT — 3 Piliers
   ========================================================================== */

.act-pillars {
  display: flex;
  align-items: stretch;
  gap: 0;
  margin-top: 2.5rem;
}

.act-pillar {
  flex: 1;
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 1px 4px rgba(0,0,0,0.06);
}

.act-pillar__num {
  background: var(--primary);
  color: var(--accent);
  font-family: "Fraunces", serif;
  font-size: 3rem;
  font-weight: 700;
  line-height: 1;
  padding: 1.25rem 1.5rem 1rem;
  letter-spacing: -0.04em;
}

.act-pillar__body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  flex: 1;
}

.act-pillar__icon {
  width: 26px;
  height: 26px;
  color: var(--primary);
  flex-shrink: 0;
}

.act-pillar__title {
  font-family: "Fraunces", serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--foreground);
  letter-spacing: -0.02em;
  margin: 0;
}

.act-pillar__text {
  font-size: 0.875rem;
  color: var(--muted-fg);
  line-height: 1.6;
  margin: 0;
  max-width: none;
}

.act-pillar__connector {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 0.5rem;
  color: var(--primary);
  opacity: 0.35;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .act-pillars {
    flex-direction: column;
    gap: 1rem;
  }

  .act-pillar__connector {
    padding: 0;
    transform: rotate(90deg);
    height: 1.5rem;
  }

  .act-pillar__num {
    font-size: 2.25rem;
    padding: 1rem 1.25rem 0.75rem;
  }
}

/* ==========================================================================
   ACT — Tableau comparatif
   ========================================================================== */

.act-compare-table {
  width: 100%;
  border-collapse: collapse;
  border-radius: 12px;
  overflow: hidden;
  font-size: 0.9rem;
  box-shadow: 0 1px 3px rgba(0,0,0,0.07);
}

/* En-têtes */
.act-compare-table thead tr {
  background: var(--primary);
  color: #fff;
}

.act-compare-table thead th {
  padding: 1rem 1.25rem;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.01em;
  text-align: center;
  vertical-align: bottom;
  border: none;
}

.act-compare-table thead th:first-child {
  text-align: left;
  width: 35%;
}

/* Colonne ACT mise en avant */
.act-compare-table__col--highlight {
  background: rgba(255, 255, 255, 0.08);
  position: relative;
}

thead .act-compare-table__col--highlight {
  background: transparent;
}

.act-compare-table__badge {
  display: block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.35rem;
}

/* Corps du tableau */
.act-compare-table tbody tr {
  border-bottom: 1px solid var(--border);
  transition: background 0.15s ease;
}

.act-compare-table tbody tr:last-child {
  border-bottom: none;
}

.act-compare-table tbody tr {
  background: #fff;
}

.act-compare-table tbody tr:hover {
  background: var(--background);
}

.act-compare-table tbody td {
  padding: 0.9rem 1.25rem;
  text-align: center;
  color: var(--foreground);
  vertical-align: middle;
  border: none;
}

.act-compare-table tbody td:first-child {
  text-align: left;
  font-weight: 500;
  color: var(--foreground);
}

/* Indicateurs oui / non / variable */
.act-compare-table__yes {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--primary);
  background: rgba(27, 77, 62, 0.1);
  border-radius: 6px;
  padding: 0.2rem 0.6rem;
  white-space: nowrap;
}

.act-compare-table__no {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
  color: #9b6e6e;
  background: rgba(180, 80, 80, 0.08);
  border-radius: 6px;
  padding: 0.2rem 0.6rem;
}

.act-compare-table__maybe {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  color: var(--muted-fg);
  background: rgba(0,0,0,0.04);
  border-radius: 6px;
  padding: 0.2rem 0.6rem;
}

/* Colonne highlight en tbody */
.act-compare-table tbody .act-compare-table__col--highlight {
  background: rgba(27, 77, 62, 0.04);
  border-left: 2px solid var(--accent);
  border-right: 2px solid var(--accent);
}

.act-compare-table tbody tr:last-child .act-compare-table__col--highlight {
  border-bottom: 2px solid var(--accent);
}

.act-compare-table thead .act-compare-table__col--highlight th {
  border-left: 2px solid var(--accent);
  border-right: 2px solid var(--accent);
  border-top: 2px solid var(--accent);
}

@media (max-width: 640px) {
  .act-compare-table {
    font-size: 0.78rem;
  }

  .act-compare-table thead th,
  .act-compare-table tbody td {
    padding: 0.7rem 0.6rem;
  }

  .act-compare-table tbody td:first-child {
    min-width: 110px;
  }
}

/* ==========================================================================
   ACT — Chiffres-clés intro (étude ADEME)
   ========================================================================== */

.act-proof-stats {
  margin-top: 2.5rem;
  background: var(--primary);
  border-radius: 14px;
  overflow: hidden;
}

.act-proof-stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.act-proof-stats__item {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 2rem 1.75rem;
  text-align: center;
  position: relative;
}

.act-proof-stats__item + .act-proof-stats__item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 20%;
  height: 60%;
  width: 1px;
  background: rgba(255, 255, 255, 0.15);
}

.act-proof-stats__number {
  font-size: 2.75rem;
  font-weight: 700;
  line-height: 1;
  color: var(--accent);
  letter-spacing: -0.04em;
  font-family: "Fraunces", serif;
}

.act-proof-stats__label {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.4;
}

.act-proof-stats__icon {
  width: 28px;
  height: 28px;
  color: var(--accent);
  margin-bottom: 0.25rem;
}

.act-proof-stats__footer {
  padding: 0.7rem 1.75rem;
  background: rgba(0, 0, 0, 0.18);
  width: 100%;
}

.act-proof-stats__source {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.45);
  margin: 0;
  text-align: center;
}

@media (max-width: 768px) {
  .act-proof-stats__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .act-proof-stats__item:nth-child(3)::before {
    display: none;
  }

  .act-proof-stats__item {
    padding: 1.5rem 1.25rem;
  }

  .act-proof-stats__number {
    font-size: 2.1rem;
  }
}

@media (max-width: 480px) {
  .act-proof-stats__number {
    font-size: 1.85rem;
  }
}

/* ==========================================================================
   ACT — Schéma parcours 3 phases
   ========================================================================== */

.act-parcours {
  margin-top: 2.5rem;
}

.act-parcours__phases {
  display: flex;
  align-items: stretch;
  gap: 0;
}

.act-parcours__phase {
  flex: 1;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: relative;
}

.act-parcours__phase--1 { background: rgba(107,174,142,0.07); }
.act-parcours__phase--2 { background: rgba(220,133,31,0.07); }
.act-parcours__phase--3 { background: rgba(27,77,62,0.07); }

.act-parcours__arrow {
  display: flex;
  align-items: center;
  padding: 0 0.5rem;
  color: var(--muted-fg);
  flex-shrink: 0;
  margin-top: -1.5rem;
}

.act-parcours__phase-header {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.act-parcours__phase-num {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
}

.act-parcours__phase h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--foreground);
  margin: 0;
  line-height: 1.3;
}

.act-parcours__duration {
  font-size: 0.78rem;
  color: var(--muted-fg);
  font-style: italic;
}

.act-parcours__bullets {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex: 1;
}

.act-parcours__bullets li {
  font-size: 0.875rem;
  color: var(--foreground);
  line-height: 1.5;
  padding-left: 1.1rem;
  position: relative;
}

.act-parcours__bullets li::before {
  content: '›';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}

.act-parcours__livrables {
  background: var(--muted-bg);
  border-radius: 6px;
  padding: 0.75rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.act-parcours__livrables-label {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted-fg);
  margin-bottom: 0.15rem;
}

.act-parcours__livrable {
  font-size: 0.82rem;
  color: var(--foreground);
}

/* ==========================================================================
   ACT — Détail 5 étapes
   ========================================================================== */

.act-phase-detail {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 1.25rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.act-phase-detail:hover {
  border-color: var(--primary);
  box-shadow: 0 4px 16px rgba(27, 77, 62, 0.15);
}

.act-phase-detail__header {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1.25rem 1.5rem;
  background: var(--muted-bg);
  border-bottom: 1px solid var(--border);
}

.act-phase-detail__badge {
  background: var(--accent);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.3rem 0.75rem;
  border-radius: 20px;
  white-space: nowrap;
  flex-shrink: 0;
}

.act-phase-detail__badge--2 { background: #3a8a6e; }
.act-phase-detail__badge--3 { background: var(--primary); }

.act-phase-detail__header h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin: 0 0 0.2rem;
  color: var(--foreground);
}

.act-phase-detail__duration {
  font-size: 0.8rem;
  color: var(--muted-fg);
}

.act-phase-detail__body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.act-phase-detail__col {
  padding: 1.5rem;
}

.act-phase-detail__col:first-child {
  border-right: 1px solid var(--border);
}

.act-phase-detail__col h5 {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted-fg);
  margin-bottom: 0.85rem;
}

.act-phase-detail__col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.act-phase-detail__col ul li {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--foreground);
  padding-left: 1.25rem;
  position: relative;
}

.act-phase-detail__col ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}

.act-phase-detail__deliverables {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.deliverable-item {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.875rem;
  color: var(--foreground);
  line-height: 1.5;
}

.deliverable-item svg {
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--accent);
}

/* Mobile */
@media (max-width: 900px) {
  .act-parcours__phases {
    flex-direction: column;
  }
  .act-parcours__arrow {
    transform: rotate(90deg);
    align-self: center;
    margin: 0;
  }
  .act-phase-detail__body {
    grid-template-columns: 1fr;
  }
  .act-phase-detail__col:first-child {
    border-right: none;
    border-bottom: 1px solid var(--border);
  }
}

/* ==========================================================================
   Service intro grid (tension section)
   ========================================================================== */

.service-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

.service-intro-grid__text h2 {
  margin-bottom: 1.25rem;
}

.service-intro-grid__text p {
  margin-bottom: 1rem;
  color: var(--muted-fg);
  line-height: 1.7;
}

.service-intro-grid__highlights {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.highlight-stat {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.5rem 1.75rem;
  border: 1px solid var(--border);
}

.highlight-stat__value {
  display: block;
  font-family: "Fraunces", serif;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--primary);
  line-height: 1.2;
  margin-bottom: 0.35rem;
}

.highlight-stat__label {
  display: block;
  font-size: 0.9rem;
  color: var(--muted-fg);
  line-height: 1.5;
}

@media (max-width: 768px) {
  .service-intro-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   Benefit card icons
   ========================================================================== */

.benefit-card__icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--background);
  border-radius: var(--radius);
  margin-bottom: 1rem;
  color: var(--primary);
}

/* ==========================================================================
   Step duration tags
   ========================================================================== */

.step-duration {
  display: inline-block;
  margin-top: 0.75rem;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--accent);
  background: rgba(220, 133, 31, 0.08);
  padding: 0.3rem 0.75rem;
  border-radius: 100px;
}

/* ==========================================================================
   CTA mid-page variant
   ========================================================================== */

.cta-section--mid {
  background: var(--primary);
  padding-block: clamp(3rem, 6vw, 5rem);
  text-align: center;
}

.cta-section--mid h2 {
  color: var(--white);
  font-size: clamp(1.5rem, 3.5vw, 2.25rem);
}

.cta-section--mid p {
  color: rgba(255,255,255,0.75);
  margin-inline: auto;
  margin-bottom: 0.5rem;
}

/* ==========================================================================
   Page hero subtitle
   ========================================================================== */

.page-hero__sub {
  max-width: 640px;
  margin-inline: auto;
}

/* ==========================================================================
   Page Évaluation — Editorial Redesign
   ========================================================================== */

.eval-page {
  background: var(--white);
}

/* ── Hero ── */
.eval-hero {
  background: var(--primary);
  padding: clamp(5rem, 10vw, 9rem) 0 clamp(3rem, 6vw, 5rem);
  position: relative;
  overflow: hidden;
}

.eval-hero::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 60%;
  height: 140%;
  background: radial-gradient(circle, rgba(220,133,31,0.08) 0%, transparent 60%);
  pointer-events: none;
}

.eval-hero__inner {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: end;
  position: relative;
  z-index: 1;
}

.eval-kicker {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.25rem;
}

.eval-hero h1 {
  color: var(--white);
  font-size: clamp(2.8rem, 7vw, 5rem);
  line-height: 1.02;
  margin-bottom: 1.75rem;
  max-width: 14ch;
  letter-spacing: -0.02em;
  font-weight: 600;
}

.eval-hero h1 em {
  font-style: italic;
  color: var(--accent);
  font-weight: 500;
}

.eval-hero__sub {
  color: rgba(255,255,255,0.78);
  font-size: clamp(1.05rem, 1.8vw, 1.2rem);
  line-height: 1.65;
  max-width: 52ch;
  margin-bottom: 2.25rem;
}

.eval-hero .btn {
  margin-bottom: 0;
}

.eval-hero__markers {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.6rem;
  padding-left: 1.75rem;
  border-left: 1px solid rgba(255,255,255,0.18);
}

.eval-hero__marker-num {
  font-family: "Fraunces", serif;
  font-size: clamp(3.5rem, 6vw, 5rem);
  font-weight: 700;
  color: var(--accent);
  line-height: 0.9;
  letter-spacing: -0.04em;
}

.eval-hero__marker-label {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  margin-bottom: 0.5rem;
}

.eval-hero__divider {
  display: block;
  width: 32px;
  height: 1px;
  background: rgba(255,255,255,0.2);
  margin: 0.5rem 0;
}

.eval-hero__markers span:not(.eval-hero__marker-num):not(.eval-hero__marker-label):not(.eval-hero__divider) {
  font-size: 0.82rem;
  font-weight: 500;
  color: rgba(255,255,255,0.65);
  line-height: 1.4;
}

/* ── Editorial intro ── */
.eval-editorial {
  padding: clamp(4rem, 8vw, 7rem) 0;
}

.eval-editorial__grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: clamp(2rem, 5vw, 5rem);
  margin-bottom: clamp(3rem, 5vw, 4.5rem);
}

.eval-editorial__lead h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  line-height: 1.15;
  position: sticky;
  top: calc(var(--header-height) + 2rem);
}

.eval-editorial__body p {
  font-size: clamp(1rem, 1.8vw, 1.1rem);
  color: var(--muted-fg);
  line-height: 1.8;
  margin-bottom: 1.25rem;
}

.eval-stats-bar {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--border);
  padding-top: clamp(2rem, 4vw, 3rem);
}

.eval-stat {
  padding-right: 2rem;
}

.eval-stat:not(:last-child) {
  border-right: 1px solid var(--border);
  margin-right: 2rem;
}

.eval-stat__number {
  display: block;
  font-family: "Fraunces", serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.eval-stat__text {
  display: block;
  font-size: 0.88rem;
  color: var(--muted-fg);
  line-height: 1.5;
}

/* ── Section header (shared) ── */
.eval-section-header {
  max-width: 48ch;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.eval-section-header h2 {
  margin-bottom: 0.75rem;
}

.eval-section-header p {
  font-size: 1.05rem;
  color: var(--muted-fg);
  line-height: 1.6;
}

/* ── Audit items ── */
.eval-audit {
  padding: clamp(4rem, 8vw, 7rem) 0;
  background: var(--background);
}

.eval-audit__list {
  display: flex;
  flex-direction: column;
}

.eval-audit__item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  padding: clamp(1.5rem, 3vw, 2.25rem) 0;
  border-top: 1px solid var(--border);
  align-items: baseline;
}

.eval-audit__item:last-child {
  border-bottom: 1px solid var(--border);
}

.eval-audit__num {
  font-family: "Fraunces", serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 300;
  color: rgba(27,77,62,0.18);
  line-height: 1;
  letter-spacing: -0.03em;
  transition: color 0.3s ease;
  min-width: 4rem;
}

.eval-audit__item:hover {
  background: var(--white);
  margin-inline: -1.5rem;
  padding-inline: 1.5rem;
  border-radius: var(--radius);
}

.eval-audit__item:hover .eval-audit__num {
  color: var(--accent);
}

.eval-audit__item h3 {
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  margin-bottom: 0.5rem;
}

.eval-audit__item p {
  font-size: 0.95rem;
  color: var(--muted-fg);
  line-height: 1.7;
  max-width: 60ch;
}

/* ── Format cards ── */
.eval-formats {
  padding: clamp(4rem, 8vw, 7rem) 0;
  background: var(--white);
}

.eval-formats__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.eval-format-card {
  padding: clamp(2rem, 4vw, 3rem);
  border: 1px solid var(--border);
  border-radius: calc(var(--radius) * 2);
  background: var(--muted-bg);
  position: relative;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.eval-format-card:hover {
  border-color: var(--primary);
  box-shadow: 0 8px 32px rgba(27,77,62,0.08);
}

.eval-format-card--accent {
  border-color: var(--primary);
  background: var(--primary);
  color: var(--white);
}

.eval-format-card--accent h3 { color: var(--white); }
.eval-format-card--accent p { color: rgba(255,255,255,0.8); }

.eval-format-card__tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.25rem;
}

.eval-format-card--accent .eval-format-card__tag {
  color: rgba(220,133,31,0.85);
}

.eval-format-card h3 {
  font-size: clamp(1.25rem, 2.5vw, 1.6rem);
  margin-bottom: 1rem;
}

.eval-format-card p {
  font-size: 0.95rem;
  color: var(--muted-fg);
  line-height: 1.7;
}

/* ── Deliverables ── */
.eval-deliverables {
  padding: clamp(4rem, 8vw, 7rem) 0;
}

.eval-deliverables__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border: 1px solid var(--border);
  border-radius: calc(var(--radius) * 2);
  overflow: hidden;
}

.eval-deliverable {
  padding: clamp(1.75rem, 3vw, 2.5rem);
  position: relative;
  transition: background-color 0.25s ease;
}

.eval-deliverable:nth-child(1) {
  background: var(--background);
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.eval-deliverable:nth-child(2) {
  background: var(--muted-bg);
  border-bottom: 1px solid var(--border);
}
.eval-deliverable:nth-child(3) {
  background: var(--muted-bg);
  border-right: 1px solid var(--border);
}
.eval-deliverable:nth-child(4) {
  background: var(--background);
}

.eval-deliverable:hover {
  filter: brightness(0.97);
}

.eval-deliverable h3 {
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  margin-bottom: 0.6rem;
}

.eval-deliverable p {
  font-size: 0.9rem;
  color: var(--muted-fg);
  line-height: 1.7;
}

/* ── CTA interstitiel ── */
.eval-cta-break {
  padding: clamp(3rem, 6vw, 5rem) 0;
}

.eval-cta-break__inner {
  background: var(--primary);
  border-radius: calc(var(--radius) * 3);
  padding: clamp(2.5rem, 5vw, 4rem);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.eval-cta-break__inner::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(-55deg, transparent, transparent 24px, rgba(255,255,255,0.02) 24px, rgba(255,255,255,0.02) 48px);
  pointer-events: none;
}

.eval-cta-break__inner > * { position: relative; z-index: 1; }

.eval-cta-break h2 {
  color: var(--white);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  margin-bottom: 0.75rem;
  text-align: center;
}

.eval-cta-break p {
  color: rgba(255,255,255,0.75);
  font-size: 1.05rem;
  max-width: 50ch;
  margin: 0 auto 1.5rem;
  text-align: center;
}

.eval-cta-break__meta {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 2rem;
  text-align: center;
}

.eval-cta-break__meta span::before {
  content: "— ";
}

/* ── Compliance ── */
.eval-compliance {
  padding: clamp(4rem, 8vw, 7rem) 0;
  background: var(--background);
}

.eval-compliance__intro {
  max-width: 64ch;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.eval-compliance__intro h2 {
  margin-bottom: 1.25rem;
}

.eval-compliance__intro p {
  font-size: 1.05rem;
  color: var(--muted-fg);
  line-height: 1.8;
}

.eval-compliance__standards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-bottom: 2.5rem;
}

.eval-standard {
  padding: 1.75rem 2rem 1.75rem 0;
}


.eval-standard:not(:last-child) {
  border-right: 1px solid var(--border);
  margin-right: 2rem;
}

.eval-standard h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.eval-standard p {
  font-size: 0.9rem;
  color: var(--muted-fg);
  line-height: 1.65;
}

.eval-compliance__link {
  font-size: 0.95rem;
  color: var(--muted-fg);
}

/* ── FAQ ── */
.eval-faq {
  padding: clamp(4rem, 8vw, 7rem) 0;
  background: var(--white);
}

.eval-faq__list {
  max-width: 780px;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

/* ── Related services ── */
.eval-related {
  padding: clamp(4rem, 8vw, 7rem) 0;
  background: var(--muted-bg);
}

.eval-related h2 {
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.eval-related__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: calc(var(--radius) * 2);
  overflow: hidden;
}

.eval-related__card {
  background: var(--white);
  padding: clamp(1.75rem, 3vw, 2.5rem);
  text-decoration: none;
  color: inherit;
  transition: background-color 0.25s ease;
}

.eval-related__card:hover {
  background: var(--background);
}

.eval-related__card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.eval-related__card p {
  font-size: 0.88rem;
  color: var(--muted-fg);
  line-height: 1.6;
}

/* ── CTA final ── */
.eval-cta-final {
  background: var(--primary);
  padding: clamp(4rem, 8vw, 6rem) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.eval-cta-final::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 80% 50%, rgba(220,133,31,0.08) 0%, transparent 60%);
  pointer-events: none;
}

.eval-cta-final .container { position: relative; z-index: 1; }

.eval-cta-final h2 {
  color: var(--white);
  margin-bottom: 1rem;
  text-align: center;
}

.eval-cta-final p {
  color: rgba(255,255,255,0.75);
  font-size: 1.05rem;
  max-width: 50ch;
  margin: 0 auto 2.5rem;
  text-align: center;
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .eval-hero__inner {
    grid-template-columns: 1fr;
  }
  .eval-hero__markers {
    flex-direction: row;
    flex-wrap: wrap;
    border-left: none;
    padding-left: 0;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255,255,255,0.12);
    gap: 0.4rem 1.25rem;
  }
  .eval-editorial__grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .eval-editorial__lead h2 {
    position: static;
  }
  .eval-stats-bar {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .eval-stat:not(:last-child) {
    border-right: none;
    margin-right: 0;
    padding-right: 0;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border);
  }
  .eval-formats__grid {
    grid-template-columns: 1fr;
  }
  .eval-deliverables__grid {
    grid-template-columns: 1fr;
  }
  .eval-deliverable:nth-child(1),
  .eval-deliverable:nth-child(3) {
    border-right: none;
  }
  .eval-deliverable:nth-child(1),
  .eval-deliverable:nth-child(2),
  .eval-deliverable:nth-child(3) {
    border-bottom: 1px solid var(--border);
  }
  .eval-compliance__standards {
    grid-template-columns: 1fr;
  }
  .eval-standard:not(:last-child) {
    border-right: none;
    margin-right: 0;
    padding-bottom: 1.5rem;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid var(--border);
  }
  .eval-related__grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   Page Bilan Carbone — Editorial Redesign
   ========================================================================== */

.bilan-page {
  background: var(--white);
}

/* ── Hero ── */
.bilan-hero {
  background: var(--primary);
  padding: clamp(5rem, 10vw, 9rem) 0 0;
  position: relative;
  overflow: hidden;
}

.bilan-hero::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 60%;
  height: 140%;
  background: radial-gradient(circle, rgba(220,133,31,0.08) 0%, transparent 60%);
  pointer-events: none;
}


.bilan-hero__inner {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: end;
  padding-bottom: clamp(3rem, 6vw, 5rem);
  position: relative;
  z-index: 1;
}

.bilan-hero h1 {
  color: var(--white);
  font-size: clamp(2.8rem, 7vw, 5rem);
  line-height: 1.02;
  margin-bottom: 1.75rem;
  max-width: 14ch;
  letter-spacing: -0.02em;
  font-weight: 600;
}

.bilan-hero h1 em {
  font-style: italic;
  color: var(--accent);
  font-weight: 500;
}

.bilan-hero__sub {
  color: rgba(255,255,255,0.78);
  font-size: clamp(1.05rem, 1.8vw, 1.2rem);
  line-height: 1.65;
  max-width: 52ch;
  margin-bottom: 2.25rem;
}

.bilan-hero__actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.bilan-hero .btn {
  margin-bottom: 0;
}

.bilan-hero__hint {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.02em;
}

.bilan-hero__markers {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.6rem;
  padding-left: 1.75rem;
  border-left: 1px solid rgba(255,255,255,0.18);
}

.bilan-hero__marker-num {
  font-family: "Fraunces", serif;
  font-size: clamp(3.5rem, 6vw, 5rem);
  font-weight: 700;
  color: var(--accent);
  line-height: 0.9;
  letter-spacing: -0.04em;
}

.bilan-hero__marker-label {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  margin-bottom: 0.5rem;
}

.bilan-hero__divider {
  display: block;
  width: 32px;
  height: 1px;
  background: rgba(255,255,255,0.2);
  margin: 0.5rem 0;
}

.bilan-hero__markers > span:not(.bilan-hero__marker-num):not(.bilan-hero__marker-label):not(.bilan-hero__divider) {
  font-size: 0.82rem;
  font-weight: 500;
  color: rgba(255,255,255,0.65);
  line-height: 1.4;
}

/* ── Editorial intro ── */
.bilan-editorial {
  padding: clamp(4rem, 8vw, 7rem) 0;
}

.bilan-editorial__grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: clamp(2rem, 5vw, 5rem);
  margin-bottom: clamp(3rem, 5vw, 4.5rem);
}

.bilan-editorial__lead h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  line-height: 1.15;
  position: sticky;
  top: calc(var(--header-height) + 2rem);
}

.bilan-editorial__body p {
  font-size: clamp(1rem, 1.8vw, 1.1rem);
  color: var(--muted-fg);
  line-height: 1.8;
  margin-bottom: 1.25rem;
}

.bilan-stats-bar {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--border);
  padding-top: clamp(2rem, 4vw, 3rem);
}

.bilan-stat {
  padding-right: 2rem;
}

.bilan-stat:not(:last-child) {
  border-right: 1px solid var(--border);
  margin-right: 2rem;
}

.bilan-stat__number {
  display: block;
  font-family: "Fraunces", serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.bilan-stat__text {
  display: block;
  font-size: 0.88rem;
  color: var(--muted-fg);
  line-height: 1.5;
}

/* ── Section header (shared) ── */
.bilan-section-header {
  max-width: 48ch;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.bilan-section-header--center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.bilan-eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}

.bilan-section-header h2 {
  margin-bottom: 0.75rem;
}

.bilan-section-header p {
  font-size: 1.05rem;
  color: var(--muted-fg);
  line-height: 1.6;
}

/* ── Audit items (Ce que contient votre bilan) ── */
.bilan-audit {
  padding: clamp(4rem, 8vw, 7rem) 0;
  background: var(--background);
}

.bilan-audit__list {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2rem, 4vw, 3.5rem);
}

.bilan-audit__list--horizontal {
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid rgba(15,42,35,0.12);
  border-bottom: 1px solid rgba(15,42,35,0.12);
}

.bilan-audit__list--horizontal .bilan-audit__item {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: flex-start;
  padding: clamp(2rem, 3vw, 2.5rem) clamp(1.5rem, 2.5vw, 2rem);
  position: relative;
  transition: background-color 250ms ease;
}

.bilan-audit__list--horizontal .bilan-audit__item:not(:last-child) {
  border-right: 1px solid rgba(15,42,35,0.12);
}

.bilan-audit__list--horizontal .bilan-audit__item:hover {
  background: rgba(255,255,255,0.5);
  opacity: 1;
}

.bilan-audit__list--horizontal .bilan-audit__num {
  font-size: clamp(2.5rem, 5vw, 4rem);
  margin-bottom: 0.25rem;
  position: relative;
}

.bilan-audit__list--horizontal .bilan-audit__num::after {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background: var(--accent);
  margin-top: 0.75rem;
}

.bilan-audit__list--horizontal .bilan-audit__body h3 {
  font-size: clamp(1.05rem, 1.8vw, 1.25rem);
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.bilan-audit__list--horizontal .bilan-audit__body p {
  font-size: 0.92rem;
  line-height: 1.6;
}

.bilan-audit__item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(2rem, 5vw, 3rem);
  align-items: start;
}

.bilan-audit__num {
  display: block;
  font-family: "Fraunces", serif;
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 700;
  color: var(--primary);
  line-height: 0.9;
  min-width: 60px;
}

.bilan-audit__item h3 {
  font-size: clamp(1.2rem, 2.5vw, 1.5rem);
  margin-bottom: 0.75rem;
}

.bilan-audit__item p {
  font-size: clamp(0.95rem, 1.5vw, 1.05rem);
  color: var(--muted-fg);
  line-height: 1.7;
}

.bilan-audit__item:hover {
  opacity: 0.85;
}

/* ── Methodology steps ── */
.bilan-methodology {
  padding: clamp(4rem, 8vw, 7rem) 0;
  background: var(--white);
}

.bilan-methodology__list {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2rem, 4vw, 3.5rem);
}

.bilan-methodology__item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(2rem, 5vw, 3rem);
  align-items: start;
}

.bilan-methodology__num {
  display: block;
  font-family: "Fraunces", serif;
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 700;
  color: var(--accent);
  line-height: 0.9;
  min-width: 60px;
}

.bilan-methodology__item h3 {
  font-size: clamp(1.2rem, 2.5vw, 1.5rem);
  margin-bottom: 0.75rem;
}

.bilan-methodology__item p {
  font-size: clamp(0.95rem, 1.5vw, 1.05rem);
  color: var(--muted-fg);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.bilan-methodology__duration {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--primary);
  background: rgba(27, 77, 62, 0.08);
  padding: 0.5rem 1rem;
  border-radius: 3px;
}

/* ── CTA break ── */
.bilan-cta-break {
  padding: clamp(3rem, 6vw, 5rem) 0;
  background: var(--background);
}

.bilan-cta-break .container {
  max-width: 600px;
  text-align: center;
}

.bilan-cta-break h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.25rem);
  margin-bottom: 0.75rem;
}

.bilan-cta-break > .container > p {
  font-size: 1.05rem;
  color: var(--muted-fg);
  margin-bottom: 2rem;
}

.bilan-cta-reassurance {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.bilan-cta-reassurance span {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--muted-fg);
}

/* ── Compliance / Certification ── */
.bilan-compliance {
  padding: clamp(4rem, 8vw, 7rem) 0;
  background: var(--white);
}

.bilan-compliance__badge {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

.bilan-compliance__logo {
  width: 120px;
  height: auto;
}

.bilan-compliance__text h3 {
  font-size: clamp(1.3rem, 2.5vw, 1.75rem);
  margin-bottom: 1rem;
}

.bilan-compliance__text p {
  font-size: clamp(0.95rem, 1.5vw, 1.05rem);
  color: var(--muted-fg);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.bilan-compliance__pill {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(220, 133, 31, 0.08);
  padding: 0.75rem 1.5rem;
  border-radius: 3px;
}

/* ── Regulation section ── */
.bilan-regulation {
  padding: clamp(4rem, 8vw, 7rem) 0;
  background: var(--background);
}

.bilan-regulation__desc {
  max-width: 72ch;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.bilan-regulation__desc p {
  font-size: clamp(0.95rem, 1.5vw, 1.05rem);
  color: var(--muted-fg);
  line-height: 1.8;
}

.bilan-regulation__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(2rem, 4vw, 3rem);
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.bilan-regulation__card {
  padding: clamp(1.5rem, 3vw, 2rem);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.bilan-regulation__card h4 {
  font-size: clamp(1.05rem, 1.8vw, 1.25rem);
  margin-bottom: 0.75rem;
}

.bilan-regulation__card p {
  font-size: 0.95rem;
  color: var(--muted-fg);
  line-height: 1.6;
}

.bilan-regulation__footer {
  max-width: 72ch;
}

.bilan-regulation__footer p {
  font-size: clamp(0.95rem, 1.5vw, 1.05rem);
  color: var(--muted-fg);
  line-height: 1.8;
}

.bilan-regulation__footer a {
  color: var(--primary);
  font-weight: 600;
  text-decoration: none;
}

.bilan-regulation__footer a:hover {
  text-decoration: underline;
}

/* ── FAQ ── */
.bilan-faq {
  padding: clamp(4rem, 8vw, 7rem) 0;
  background: var(--white);
}

.bilan-faq__list {
  max-width: 72ch;
  display: grid;
  gap: 1.25rem;
}

.bilan-faq__item {
  border: 1px solid var(--border);
}

.bilan-faq__question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 1.5rem;
  background: var(--white);
  border: none;
  cursor: pointer;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--foreground);
  transition: background-color 200ms ease;
}

.bilan-faq__question:hover {
  background: rgba(27, 77, 62, 0.04);
}

.bilan-faq__question[aria-expanded="true"] {
  background: rgba(27, 77, 62, 0.08);
}

.bilan-faq__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  color: var(--primary);
  transition: transform 200ms ease;
}

.bilan-faq__question[aria-expanded="true"] .bilan-faq__icon {
  transform: rotate(180deg);
}

.bilan-faq__answer {
  padding: 0 1.5rem;
  max-height: 0;
  overflow: hidden;
  transition: max-height 300ms ease, padding 200ms ease;
}

.bilan-faq__question[aria-expanded="true"] + .bilan-faq__answer {
  max-height: 500px;
  padding: 0 1.5rem 1.5rem;
}

.bilan-faq__answer p {
  font-size: 0.95rem;
  color: var(--muted-fg);
  line-height: 1.7;
}

/* ── Related services ── */
.bilan-related {
  padding: clamp(4rem, 8vw, 7rem) 0;
  background: var(--muted-bg);
}

.bilan-related__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(2rem, 4vw, 3rem);
}

.bilan-related__card {
  padding: clamp(2rem, 3vw, 2.5rem);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 4px;
  text-decoration: none;
  transition: all 250ms ease;
}

.bilan-related__card:hover {
  border-color: var(--accent);
  box-shadow: 0 4px 16px rgba(27, 77, 62, 0.12);
}

.bilan-related__card h4 {
  font-size: clamp(1.15rem, 2vw, 1.4rem);
  margin-bottom: 0.75rem;
  color: var(--foreground);
}

.bilan-related__card p {
  font-size: 0.95rem;
  color: var(--muted-fg);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.bilan-related__link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--accent);
  text-decoration: none;
}

.bilan-related__card:hover .bilan-related__link {
  gap: 0.75rem;
}

.bilan-related__link svg {
  transition: transform 200ms ease;
}

/* ── Final CTA ── */
.bilan-final-cta {
  padding: clamp(4rem, 8vw, 7rem) 0;
  background: var(--primary);
  color: var(--white);
  text-align: center;
}

.bilan-final-cta h2 {
  color: var(--white);
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  margin-bottom: 0.75rem;
}

.bilan-final-cta > .container > p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.75);
  margin-bottom: 2rem;
  max-width: 52ch;
  margin-left: auto;
  margin-right: auto;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .bilan-audit__list--horizontal {
    grid-template-columns: repeat(2, 1fr);
  }
  .bilan-audit__list--horizontal .bilan-audit__item:nth-child(2) {
    border-right: none;
  }
  .bilan-audit__list--horizontal .bilan-audit__item:nth-child(1),
  .bilan-audit__list--horizontal .bilan-audit__item:nth-child(2) {
    border-bottom: 1px solid rgba(15,42,35,0.12);
  }
}

@media (max-width: 768px) {
  .bilan-hero {
    padding-top: clamp(4rem, 8vw, 6rem);
  }
  .bilan-hero__inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .bilan-hero h1 {
    font-size: clamp(2.2rem, 9vw, 3.2rem);
  }
  .bilan-hero__markers {
    border-left: none;
    border-top: 1px solid rgba(255,255,255,0.15);
    padding-left: 0;
    padding-top: 1.5rem;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
  .bilan-hero__marker-num {
    font-size: 3rem;
  }
  .bilan-hero__divider {
    width: 24px;
  }
  .bilan-hero__marquee {
    font-size: 1rem;
    gap: 1.5rem;
    padding: 1rem 0;
  }
  .bilan-hero__actions {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }
  .bilan-editorial__grid {
    grid-template-columns: 1fr;
  }
  .bilan-stats-bar {
    grid-template-columns: 1fr;
  }
  .bilan-stat {
    padding-right: 0;
    padding-bottom: 1.5rem;
  }
  .bilan-stat:not(:last-child) {
    border-right: none;
    margin-right: 0;
    border-bottom: 1px solid var(--border);
    margin-bottom: 1.5rem;
  }
  .bilan-audit__list--horizontal {
    grid-template-columns: 1fr;
  }
  .bilan-audit__list--horizontal .bilan-audit__item {
    border-right: none !important;
    border-bottom: 1px solid rgba(15,42,35,0.12);
  }
  .bilan-audit__list--horizontal .bilan-audit__item:last-child {
    border-bottom: none;
  }
  .bilan-audit__num,
  .bilan-methodology__num {
    font-size: 2.5rem;
  }
  .bilan-compliance__badge {
    grid-template-columns: 1fr;
  }
  .bilan-compliance__logo {
    width: 100px;
  }
  .bilan-regulation__grid {
    grid-template-columns: 1fr;
  }
  .bilan-related__grid {
    grid-template-columns: 1fr;
  }
  .bilan-cta-reassurance {
    flex-direction: column;
    gap: 1rem;
  }
}

/* ==========================================================================
   Page Décarbonisation — Hero Style
   ========================================================================== */

.decarb-hero {
  background: var(--primary);
  padding: clamp(5rem, 10vw, 9rem) 0 clamp(3rem, 6vw, 5rem);
  position: relative;
  overflow: hidden;
}

.decarb-hero::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 60%;
  height: 140%;
  background: radial-gradient(circle, rgba(220,133,31,0.08) 0%, transparent 60%);
  pointer-events: none;
}

.decarb-hero__inner {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: end;
  position: relative;
  z-index: 1;
}

.decarb-hero h1 {
  color: var(--white);
  font-size: clamp(2.8rem, 7vw, 5rem);
  line-height: 1.02;
  margin-bottom: 1.75rem;
  max-width: 14ch;
  letter-spacing: -0.02em;
  font-weight: 600;
}

.decarb-hero h1 em {
  font-style: italic;
  color: var(--accent);
  font-weight: 500;
}

.decarb-hero__sub {
  color: rgba(255,255,255,0.78);
  font-size: clamp(1.05rem, 1.8vw, 1.2rem);
  line-height: 1.65;
  max-width: 52ch;
  margin-bottom: 2.25rem;
}

.decarb-hero .btn {
  margin-bottom: 0;
}

.decarb-hero__markers {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.6rem;
  padding-left: 1.75rem;
  border-left: 1px solid rgba(255,255,255,0.18);
}

.decarb-hero__marker-num {
  font-family: "Fraunces", serif;
  font-size: clamp(3.5rem, 6vw, 5rem);
  font-weight: 700;
  color: var(--accent);
  line-height: 0.9;
  letter-spacing: -0.04em;
}

.decarb-hero__marker-label {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  margin-bottom: 0.5rem;
}

.decarb-hero__divider {
  display: block;
  width: 32px;
  height: 1px;
  background: rgba(255,255,255,0.2);
  margin: 0.5rem 0;
}

.decarb-hero__markers span:not(.decarb-hero__marker-num):not(.decarb-hero__marker-label):not(.decarb-hero__divider) {
  font-size: 0.82rem;
  font-weight: 500;
  color: rgba(255,255,255,0.65);
  line-height: 1.4;
}

@media (max-width: 768px) {
  .decarb-hero__inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .decarb-hero h1 {
    font-size: clamp(2.2rem, 9vw, 3.2rem);
  }
  .decarb-hero__markers {
    border-left: none;
    border-top: 1px solid rgba(255,255,255,0.15);
    padding-left: 0;
    padding-top: 1.5rem;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
  .decarb-hero__marker-num {
    font-size: 3rem;
  }
  .decarb-hero__divider {
    width: 24px;
  }
}

/* ── Service hero partagé (CSRD, ACV, Écoconception, VSME, Rapport RSE) ── */
.svc-hero {
  background: var(--primary);
  padding: clamp(5rem, 10vw, 9rem) 0 clamp(3rem, 6vw, 5rem);
  position: relative;
  overflow: hidden;
}

.svc-hero::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 60%;
  height: 140%;
  background: radial-gradient(circle, rgba(220,133,31,0.08) 0%, transparent 60%);
  pointer-events: none;
}

.svc-hero__inner {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: end;
  position: relative;
  z-index: 1;
}

.svc-hero h1 {
  color: var(--white);
  font-size: clamp(2.8rem, 7vw, 5rem);
  line-height: 1.02;
  margin-bottom: 1.75rem;
  max-width: 16ch;
  letter-spacing: -0.02em;
  font-weight: 600;
}

.svc-hero h1 em {
  font-style: italic;
  color: var(--accent);
  font-weight: 500;
  font-family: 'Fraunces', serif;
}

.svc-hero__sub {
  color: rgba(255,255,255,0.78);
  font-size: clamp(1.05rem, 1.8vw, 1.2rem);
  line-height: 1.65;
  max-width: 52ch;
  margin-bottom: 2.25rem;
}

.svc-hero .btn {
  margin-bottom: 0;
}

.svc-hero__markers {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.6rem;
  padding-left: 1.75rem;
  border-left: 1px solid rgba(255,255,255,0.18);
}

.svc-hero__marker-num {
  font-family: 'Fraunces', serif;
  font-size: clamp(3.5rem, 6vw, 5rem);
  font-weight: 700;
  color: var(--accent);
  line-height: 0.9;
  letter-spacing: -0.04em;
}

.svc-hero__marker-label {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  margin-bottom: 0.5rem;
}

.svc-hero__divider {
  display: block;
  width: 32px;
  height: 1px;
  background: rgba(255,255,255,0.2);
  margin: 0.5rem 0;
}

.svc-hero__markers span:not(.svc-hero__marker-num):not(.svc-hero__marker-label):not(.svc-hero__divider) {
  font-size: 0.82rem;
  font-weight: 500;
  color: rgba(255,255,255,0.65);
  line-height: 1.4;
}

@media (max-width: 768px) {
  .svc-hero__inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .svc-hero h1 {
    font-size: clamp(2.2rem, 9vw, 3.2rem);
  }
  .svc-hero__markers {
    border-left: none;
    border-top: 1px solid rgba(255,255,255,0.15);
    padding-left: 0;
    padding-top: 1.5rem;
    gap: 0.5rem;
  }
  .svc-hero__marker-num {
    font-size: 3rem;
  }
  .svc-hero__divider {
    width: 24px;
  }
}

/* ==========================================================================
   Case Studies — Retours d'expérience
   ========================================================================== */

.cases-list {
  margin-top: 3rem;
  display: flex;
  flex-direction: column;
}

/* ── Témoignages ─────────────────────────────────────────────────────────── */
.section--testimonials {
  background: var(--background);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 2.5rem;
}

.testimonial {
  background: var(--primary);
  border-radius: var(--radius);
  padding: 2.25rem 2rem;
  margin: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1.5rem;
  position: relative;
}

.testimonial::before {
  content: '\201C';
  font-family: "Fraunces", serif;
  font-size: 5rem;
  line-height: 1;
  color: var(--accent);
  opacity: 0.5;
  position: absolute;
  top: 1rem;
  left: 1.75rem;
}

.testimonial__quote {
  font-size: 0.95rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
  padding-top: 1.5rem;
}

.testimonial__author {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.testimonial__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  object-position: top;
  flex-shrink: 0;
}

.testimonial__author div {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.testimonial__author strong {
  font-size: 0.9rem;
  color: #fff;
}

.testimonial__author span {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: 0.03em;
}

@media (max-width: 640px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
}

/* ── Défilement logos clients ────────────────────────────────────────────── */
.clients-marquee {
  overflow: hidden;
  max-width: 900px;
  margin: 2.5rem auto 0;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 15%, black 85%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 15%, black 85%, transparent 100%);
}

.clients-track {
  display: flex;
  align-items: center;
  gap: 4rem;
  width: max-content;
  animation: clients-scroll 28s linear infinite;
  will-change: transform;
}

.clients-track:hover {
  animation-play-state: paused;
}

@keyframes clients-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

@media (max-width: 640px) {
  .clients-marquee {
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
    mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
  }
  .clients-track {
    animation-duration: 18s;
    gap: 2.5rem;
  }
}

.client-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.5;
  filter: grayscale(100%);
  transition: opacity 0.2s, filter 0.2s;
  flex-shrink: 0;
}

.clients-track:hover .client-logo:hover {
  opacity: 1;
  filter: grayscale(0%);
}

.client-logo img {
  height: 36px;
  width: auto;
  max-width: 130px;
  object-fit: contain;
  display: block;
}

/* ── Tableau missions réalisées ─────────────────────────────────────────── */
.cases-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.cases-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}

.cases-th {
  text-align: left;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted-fg);
  padding: 0 1rem 1rem 0;
  border-bottom: 2px solid var(--foreground);
  white-space: nowrap;
}

.cases-th--num {
  width: 2.5rem;
  color: var(--accent);
}

.cases-th--result {
  text-align: right;
}

.cases-tr {
  border-bottom: 1px solid var(--border);
}

.cases-tr:hover {
  background: rgba(27,77,62,0.03);
}

.cases-td {
  padding: 1.5rem 1rem 1.5rem 0;
  vertical-align: top;
  line-height: 1.6;
}

.cases-td--num {
  font-size: 0.75rem;
  font-weight: 700;
  font-family: 'DM Mono', monospace;
  color: var(--accent);
  letter-spacing: 0.1em;
  padding-top: 1.6rem;
  white-space: nowrap;
}

.cases-td--sector {
  font-weight: 700;
  color: var(--foreground);
  white-space: nowrap;
}

.cases-td--prestation {
  color: var(--primary);
  font-weight: 600;
  white-space: nowrap;
}

.cases-td--context {
  color: var(--muted-fg);
  font-size: 0.86rem;
  max-width: 28ch;
}

.cases-td--result {
  text-align: right;
  font-size: 0.88rem;
  color: var(--foreground);
  min-width: 16ch;
}

.cases-td--result strong {
  display: block;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 0.2rem;
}

@media (max-width: 768px) {
  .cases-table thead {
    display: none;
  }
  .cases-tr {
    display: block;
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--border);
  }
  .cases-td {
    display: block;
    padding: 0.2rem 0;
  }
  .cases-td--num { display: none; }
  .cases-td--result {
    text-align: left;
    margin-top: 0.75rem;
    padding-top: 0.75rem;
    border-top: 1px solid var(--border);
  }
  .cases-td--result strong {
    display: inline;
    font-size: 1.2rem;
  }
}

/* ==========================================================================
   Encart mis en avant (financement, information clé)
   ========================================================================== */

.pillar-card__highlight {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--primary);
  background: rgba(27,77,62,0.06);
  border-left: 2px solid var(--accent);
  padding: 0.9rem 1.1rem;
  border-radius: 0 6px 6px 0;
}

/* Mention de statut en tête de page service (à venir)   sobre, texte seul */
.svc-status-banner {
  font-size: 0.85rem;
  color: var(--muted-fg);
  padding-bottom: 1.5rem;
  margin-bottom: 0;
  border-bottom: 1px solid var(--border);
}

.svc-status-banner strong {
  color: var(--accent-hover);
}
