/* ============================================
   DÉCLIC PÉDAGO — Design System Optimisé
   Marine Masse Pollett · Orthopédagogue
   Soutien Scolaire Primaire · Val-d'Oise (95)
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400;1,500&family=Jost:wght@300;400;500;600&display=swap');

/* ── TOKENS ── */
:root {
  /* Couleurs principales (ADN visuel conservé) */
  --navy:       #1d3a5e;
  --navy-dark:  #142d4a;
  --navy-mid:   #264d7a;
  --navy-pale:  #e8eef5;
  --ocre:       #d4924a;
  --ocre-light: #e8b87a;
  --terra:      #c05840;
  --sand:       #f4ede2;
  --sand-dark:  #ebe1d2;
  --cream:      #fdfaf5;
  --white:      #ffffff;
  --ink:        #1a1a1a;
  --ink-mid:    #484848;
  --ink-light:  #787878;
  --border:     rgba(29, 58, 94, 0.1);
  
  /* Typographie */
  --ff-display: 'Cormorant Garamond', Georgia, serif;
  --ff-body:    'Jost', system-ui, -apple-system, sans-serif;
  
  /* Animations */
  --ease:       cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-out:   cubic-bezier(0.0, 0.0, 0.2, 1);
  --dur:        0.42s;
  
  /* Spacing & Layout */
  --r:          4px;
  --r-lg:       8px;
  --max:        1200px;
  --nav-h:      80px;
}

/* ── RESET & BASE ── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: var(--ff-body);
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  line-height: 1.6;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--dur) var(--ease);
}

ul, ol {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

/* ── NAVIGATION ── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 900;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  padding: 0 clamp(20px, 5vw, 64px);
  background: rgba(253, 250, 245, 0.97);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border);
  transition: height var(--dur) var(--ease), 
              box-shadow var(--dur) var(--ease),
              background var(--dur) var(--ease);
}

.nav.scrolled {
  height: 68px;
  box-shadow: 0 4px 32px rgba(29,58,94,0.08);
  background: rgba(253, 250, 245, 0.99);
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
  transition: transform var(--dur) var(--ease);
}

.nav__logo:hover {
  transform: translateY(-1px);
}

.nav__logo-img {
  height: 48px;
  width: auto;
}

.nav__logo-text {
  display: flex;
  flex-direction: column;
}

.nav__logo-name {
  font-family: var(--ff-display);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--navy);
  line-height: 1.1;
  letter-spacing: 0.01em;
}

.nav__logo-sub {
  font-size: 0.63rem;
  font-weight: 400;
  color: var(--ocre);
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 36px;
  margin-left: auto;
}

.nav__links a {
  font-size: 0.77rem;
  font-weight: 400;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--ink-mid);
  position: relative;
  transition: color var(--dur) var(--ease);
}

.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--ocre);
  transition: width var(--dur) var(--ease);
}

.nav__links a:hover {
  color: var(--navy);
}

.nav__links a:hover::after,
.nav__links a.active::after {
  width: 100%;
}

.nav__links a.active {
  color: var(--navy);
  font-weight: 500;
}

.nav__cta {
  margin-left: 24px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 24px;
  background: var(--navy);
  color: var(--white) !important;
  font-size: 0.73rem !important;
  font-weight: 500 !important;
  letter-spacing: 0.1em !important;
  text-transform: uppercase !important;
  border-radius: var(--r);
  transition: background var(--dur) var(--ease),
              transform var(--dur) var(--ease),
              box-shadow var(--dur) var(--ease) !important;
}

.nav__cta::after {
  display: none !important;
}

.nav__cta:hover {
  background: var(--navy-mid) !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(29,58,94,0.2);
}

/* Navigation mobile */
.nav__burger {
  display: none;
  margin-left: auto;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
  transition: transform var(--dur) var(--ease);
}

.nav__burger:hover {
  transform: scale(1.05);
}

.nav__burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: all var(--dur) var(--ease);
}

.nav__burger.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.nav__burger.active span:nth-child(2) {
  opacity: 0;
}

.nav__burger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

@media (max-width: 1024px) {
  .nav__links {
    display: none;
  }
  
  .nav__links.open {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    position: fixed;
    top: var(--nav-h);
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--cream);
    padding: 40px clamp(20px, 5vw, 64px);
    overflow-y: auto;
    z-index: 899;
    animation: slideIn 0.3s var(--ease-out);
  }
  
  @keyframes slideIn {
    from {
      opacity: 0;
      transform: translateY(-20px);
    }
    to {
      opacity: 1;
      transform: none;
    }
  }
  
  .nav__links.open a {
    font-size: 2rem;
    letter-spacing: 0;
    font-family: var(--ff-display);
    font-weight: 300;
    text-transform: none;
    color: var(--navy);
    padding: 16px 0;
    border-bottom: 1px solid var(--border);
    width: 100%;
  }
  
  .nav__links.open a::after {
    display: none;
  }
  
  .nav__links.open a:hover {
    color: var(--ocre);
  }
  
  .nav__cta {
    margin: 28px 0 0;
    width: 100%;
    justify-content: center;
    padding: 16px 32px;
    font-size: 0.85rem !important;
  }
  
  .nav__burger {
    display: flex;
  }
}

/* ── PAGE WRAPPER ── */
.page-wrap {
  padding-top: var(--nav-h);
  min-height: 100vh;
}

/* ── CONTAINER ── */
.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 64px);
}

.container--wide {
  max-width: 1400px;
}

.container--narrow {
  max-width: 920px;
}

/* ── SECTION ── */
.section {
  padding: clamp(64px, 10vw, 110px) 0;
}

.section--sm {
  padding: clamp(48px, 6vw, 76px) 0;
}

.section--lg {
  padding: clamp(80px, 12vw, 140px) 0;
}

.section--navy {
  background: var(--navy);
}

.section--sand {
  background: var(--sand);
}

.section--cream {
  background: var(--cream);
}

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

/* ── EYEBROW ── */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 0.69rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ocre);
  margin-bottom: 20px;
}

.eyebrow::before {
  content: '';
  display: block;
  width: 32px;
  height: 2px;
  background: var(--ocre);
}

.eyebrow--white {
  color: rgba(255,255,255,0.75);
}

.eyebrow--white::before {
  background: rgba(255,255,255,0.4);
}

.eyebrow--center {
  justify-content: center;
}

/* ── HEADINGS ── */
.h-display {
  font-family: var(--ff-display);
  font-size: clamp(2.5rem, 5vw, 4.2rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--navy);
  letter-spacing: -0.015em;
}

.h-display em {
  font-style: italic;
  color: var(--terra);
}

.h-display--white {
  color: var(--white);
}

.h-section {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 3.8vw, 3rem);
  font-weight: 300;
  line-height: 1.16;
  color: var(--navy);
  margin-bottom: 24px;
}

.h-section em {
  font-style: italic;
  color: var(--terra);
}

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

.h-card {
  font-family: var(--ff-display);
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 12px;
  line-height: 1.3;
}

.h3 {
  font-family: var(--ff-display);
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--navy);
  margin-bottom: 16px;
  line-height: 1.35;
}

/* ── BODY TEXT ── */
.lead {
  font-size: 1.05rem;
  font-weight: 300;
  line-height: 1.8;
  color: var(--ink-mid);
  max-width: 600px;
}

.lead--white {
  color: rgba(255,255,255,0.75);
}

.lead--wide {
  max-width: none;
}

.body-text {
  font-size: 0.95rem;
  line-height: 1.85;
  color: var(--ink-light);
}

.body-text--white {
  color: rgba(255,255,255,0.7);
}

.body-text p + p {
  margin-top: 1.2em;
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--ff-body);
  font-size: 0.77rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 15px 30px;
  border-radius: var(--r);
  border: 1.5px solid transparent;
  transition: all var(--dur) var(--ease);
  cursor: pointer;
  white-space: nowrap;
}

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

.btn--navy:hover {
  background: var(--navy-mid);
  border-color: var(--navy-mid);
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(29,58,94,0.22);
}

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

.btn--ocre:hover {
  background: var(--terra);
  border-color: var(--terra);
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(192,88,64,0.28);
}

.btn--outline {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}

.btn--outline:hover {
  background: var(--navy);
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(29,58,94,0.18);
}

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

.btn--outline-white:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--white);
  transform: translateY(-2px);
}

.btn--lg {
  padding: 18px 38px;
  font-size: 0.82rem;
}

.btn--full {
  width: 100%;
}

/* ── WHATSAPP BUTTON ── */
.whatsapp-btn {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 60px;
  height: 60px;
  background: #25d366;
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  z-index: 850;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
  transition: all var(--dur) var(--ease);
  cursor: pointer;
  text-decoration: none;
}

.whatsapp-btn:hover {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.5);
  background: #20ba5a;
}

.whatsapp-btn::before {
  content: '💬';
}

@media (max-width: 768px) {
  .whatsapp-btn {
    bottom: 20px;
    right: 20px;
    width: 56px;
    height: 56px;
  }
}

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  background: var(--navy);
  padding: clamp(64px, 9vw, 100px) 0 clamp(52px, 7vw, 80px);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 60% 80% at 50% 100%, 
    rgba(212,146,74,0.09) 0%, 
    transparent 65%
  );
  pointer-events: none;
}

.page-hero__content {
  position: relative;
  z-index: 2;
}

.page-hero__eyebrow {
  justify-content: center;
}

.page-hero__title {
  color: var(--white);
  max-width: 780px;
  margin: 0 auto 20px;
}

.page-hero__sub {
  color: rgba(255,255,255,0.7);
  max-width: 640px;
  margin: 0 auto;
  font-size: 1rem;
  line-height: 1.75;
}

/* ── CARD ── */
.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 42px 36px;
  transition: transform var(--dur) var(--ease), 
              box-shadow var(--dur) var(--ease);
  position: relative;
  overflow: hidden;
  height: 100%;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--navy), var(--ocre));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--dur) var(--ease);
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 56px rgba(29,58,94,0.12);
}

.card:hover::before {
  transform: scaleX(1);
}

.card--dark {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.1);
}

.card--dark:hover {
  background: rgba(255,255,255,0.1);
  box-shadow: 0 12px 40px rgba(0,0,0,0.2);
}

.card--dark::before {
  background: linear-gradient(90deg, rgba(255,255,255,0.25), var(--ocre));
}

.card__icon {
  font-size: 2.2rem;
  margin-bottom: 22px;
  display: block;
}

.card__num {
  font-family: var(--ff-display);
  font-size: 3.8rem;
  font-weight: 300;
  color: var(--sand-dark);
  line-height: 1;
  margin-bottom: 18px;
}

/* ── GRID HELPERS ── */
.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 64px);
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

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

.grid-2--asym {
  grid-template-columns: 1fr 1.4fr;
}

.grid-2--rasym {
  grid-template-columns: 1.4fr 1fr;
}

.grid-align-center {
  align-items: center;
}

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

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

/* ── DIVIDER ── */
.divider {
  width: 56px;
  height: 3px;
  background: var(--ocre);
  margin: 24px 0;
  border-radius: 2px;
}

.divider--center {
  margin: 24px auto;
}

/* ── CTA BAND ── */
.cta-band {
  background: var(--ocre);
  padding: clamp(56px, 8vw, 88px) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 80% 100% at 50% 50%, 
    rgba(255,255,255,0.08) 0%, 
    transparent 70%
  );
  pointer-events: none;
}

.cta-band__title {
  font-family: var(--ff-display);
  font-size: clamp(1.9rem, 3.2vw, 2.8rem);
  font-weight: 300;
  color: var(--white);
  margin-bottom: 12px;
  position: relative;
  z-index: 2;
}

.cta-band__sub {
  color: rgba(255,255,255,0.85);
  margin-bottom: 40px;
  font-size: 0.95rem;
  position: relative;
  z-index: 2;
}

.cta-band .btn--navy {
  background: var(--white);
  color: var(--ocre);
  border-color: var(--white);
  position: relative;
  z-index: 2;
}

.cta-band .btn--navy:hover {
  background: var(--sand);
  border-color: var(--sand);
  color: var(--navy);
}

/* ── FOOTER ── */
.footer {
  background: var(--navy-dark);
  padding: clamp(56px, 8vw, 88px) 0 0;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 56px;
  padding-bottom: 64px;
}

@media (max-width: 1024px) {
  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

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

.footer__logo-img {
  height: 48px;
  filter: brightness(0) invert(1);
  opacity: 0.6;
  margin-bottom: 20px;
}

.footer__brand {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.8;
  margin-bottom: 28px;
  max-width: 380px;
}

.footer__badge-wrapper {
  margin-top: 24px;
}

.footer__badge {
  max-width: 120px;
  opacity: 0.75;
  transition: opacity var(--dur) var(--ease);
}

.footer__badge:hover {
  opacity: 1;
}

.footer__col-title {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ocre);
  margin-bottom: 24px;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer__links a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.45);
  transition: color var(--dur) var(--ease);
  display: inline-block;
}

.footer__links a:hover {
  color: rgba(255,255,255,0.9);
}

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 28px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer__bottom p {
  font-size: 0.74rem;
  color: rgba(255,255,255,0.35);
}

.footer__legal {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.footer__legal a {
  font-size: 0.74rem;
  color: rgba(255,255,255,0.35);
  transition: color var(--dur) var(--ease);
}

.footer__legal a:hover {
  color: rgba(255,255,255,0.7);
}

/* ── REVEAL ANIMATION ── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.75s var(--ease-out), 
              transform 0.75s var(--ease-out);
}

.reveal.in {
  opacity: 1;
  transform: none;
}

.reveal-delay-1 {
  transition-delay: 0.12s;
}

.reveal-delay-2 {
  transition-delay: 0.24s;
}

.reveal-delay-3 {
  transition-delay: 0.36s;
}

/* ── SCROLL-TO-TOP ── */
.scroll-top {
  position: fixed;
  bottom: 100px;
  right: 28px;
  width: 48px;
  height: 48px;
  background: var(--navy);
  color: var(--white);
  border-radius: var(--r);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  z-index: 800;
  opacity: 0;
  pointer-events: none;
  transform: translateY(16px);
  transition: all var(--dur) var(--ease);
  cursor: pointer;
}

.scroll-top.show {
  opacity: 1;
  pointer-events: all;
  transform: none;
}

.scroll-top:hover {
  background: var(--navy-mid);
  transform: translateY(-3px);
}

@media (max-width: 768px) {
  .scroll-top {
    bottom: 88px;
    right: 20px;
    width: 44px;
    height: 44px;
  }
}

/* ── FORM ── */
.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 24px;
}

.form-label {
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-light);
}

.form-label--required::after {
  content: ' *';
  color: var(--terra);
}

.form-control {
  padding: 14px 18px;
  border: 1.5px solid var(--border);
  border-radius: var(--r);
  font-family: var(--ff-body);
  font-size: 0.95rem;
  color: var(--ink);
  background: var(--white);
  outline: none;
  transition: border-color var(--dur) var(--ease),
              box-shadow var(--dur) var(--ease);
  width: 100%;
}

.form-control:focus {
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(29,58,94,0.1);
}

.form-control::placeholder {
  color: var(--ink-light);
  opacity: 0.6;
}

textarea.form-control {
  resize: vertical;
  min-height: 140px;
  font-family: inherit;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

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

.form-notice {
  font-size: 0.8rem;
  color: var(--ink-light);
  line-height: 1.6;
  margin-top: 8px;
}

.form-error {
  font-size: 0.8rem;
  color: var(--terra);
  margin-top: 6px;
}

/* ── BADGE ── */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 16px;
  background: var(--sand);
  border-radius: 100px;
  font-size: 0.78rem;
  color: var(--navy);
  font-weight: 500;
}

.badge::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--ocre);
  flex-shrink: 0;
}

.badge--navy {
  background: var(--navy);
  color: var(--white);
}

.badge--navy::before {
  background: var(--ocre);
}

/* ── QUOTE ── */
.blockquote {
  border-left: 4px solid var(--ocre);
  padding: 24px 28px;
  margin: 28px 0;
  background: var(--sand);
  border-radius: 0 var(--r-lg) var(--r-lg) 0;
}

.blockquote p {
  font-family: var(--ff-display);
  font-size: 1.2rem;
  font-style: italic;
  font-weight: 300;
  color: var(--navy);
  line-height: 1.6;
}

.blockquote cite {
  display: block;
  margin-top: 14px;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ocre);
  font-style: normal;
  font-weight: 500;
}

/* ── TABLE ── */
.table-responsive {
  overflow-x: auto;
  margin: 32px 0;
  border-radius: var(--r-lg);
  box-shadow: 0 2px 12px rgba(29,58,94,0.08);
}

.table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
}

.table th {
  background: var(--navy);
  color: var(--white);
  padding: 14px 18px;
  text-align: left;
  font-weight: 500;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.table td {
  padding: 14px 18px;
  border-bottom: 1px solid var(--border);
  color: var(--ink-mid);
}

.table tr:nth-child(even) td {
  background: var(--sand);
}

.table tr:last-child td {
  border-bottom: none;
}

/* ── COOKIE BANNER ── */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 990;
  background: var(--navy-dark);
  color: rgba(255,255,255,0.9);
  padding: 20px clamp(20px, 5vw, 64px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  transform: translateY(100%);
  transition: transform 0.5s var(--ease-out);
  box-shadow: 0 -4px 24px rgba(0,0,0,0.2);
}

.cookie-banner.show {
  transform: translateY(0);
}

.cookie-banner__text {
  font-size: 0.85rem;
  line-height: 1.7;
  max-width: 800px;
}

.cookie-banner__text a {
  color: var(--ocre);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.cookie-banner__actions {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

.cookie-banner__actions .btn {
  padding: 10px 20px;
  font-size: 0.73rem;
}

@media (max-width: 768px) {
  .cookie-banner {
    flex-direction: column;
    align-items: stretch;
    padding: 20px;
  }
  
  .cookie-banner__actions {
    width: 100%;
  }
  
  .cookie-banner__actions .btn {
    flex: 1;
  }
}

/* ── UTILITY CLASSES ── */
.text-center {
  text-align: center;
}

.text-navy {
  color: var(--navy);
}

.text-ocre {
  color: var(--ocre);
}

.mb-0 {
  margin-bottom: 0 !important;
}

.mb-sm {
  margin-bottom: 16px !important;
}

.mb-md {
  margin-bottom: 32px !important;
}

.mb-lg {
  margin-bottom: 48px !important;
}

.mt-0 {
  margin-top: 0 !important;
}

.mt-sm {
  margin-top: 16px !important;
}

.mt-md {
  margin-top: 32px !important;
}

.mt-lg {
  margin-top: 48px !important;
}

/* ── RESPONSIVE UTILITIES ── */
@media (max-width: 768px) {
  .hide-mobile {
    display: none !important;
  }
}

@media (min-width: 769px) {
  .show-mobile {
    display: none !important;
  }
}

/* ══════════════════════════════════════════════
   STYLES ADDITIONNELS — FAQ, Timeline, Articles,
   Témoignages, Calculateur, Filtres Blog, Séances
   ══════════════════════════════════════════════ */

/* ── FAQ ACCORDÉON ── */
.faq__section {
  margin-bottom: 56px;
}

.faq__section-title {
  font-family: var(--ff-display);
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--navy);
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 2px solid var(--border);
  display: flex;
  align-items: center;
  gap: 12px;
}

.faq__section-title .faq__section-icon {
  width: 32px;
  height: 32px;
  color: var(--ocre);
  flex-shrink: 0;
}

.faq__item {
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  margin-bottom: 12px;
  overflow: hidden;
  transition: box-shadow var(--dur) var(--ease),
              border-color var(--dur) var(--ease);
  background: var(--white);
}

.faq__item:hover {
  border-color: rgba(29,58,94,0.2);
}

.faq__item.active {
  border-color: var(--ocre);
  box-shadow: 0 4px 20px rgba(212,146,74,0.1);
}

.faq__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 28px;
  cursor: pointer;
  font-size: 0.97rem;
  font-weight: 500;
  color: var(--navy);
  line-height: 1.5;
  user-select: none;
  transition: background var(--dur) var(--ease);
}

.faq__question:hover {
  background: var(--sand);
}

.faq__item.active .faq__question {
  background: var(--navy-pale);
  color: var(--navy);
}

.faq__question-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: var(--navy);
  transition: transform var(--dur) var(--ease),
              background var(--dur) var(--ease);
  font-weight: 700;
  line-height: 1;
}

.faq__item.active .faq__question-icon {
  transform: rotate(45deg);
  background: var(--ocre);
  color: var(--white);
}

.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease-out);
}

.faq__answer-inner {
  padding: 0 28px 24px;
  font-size: 0.93rem;
  line-height: 1.85;
  color: var(--ink-mid);
}

.faq__answer-inner p + p {
  margin-top: 12px;
}

.faq__answer-inner strong {
  color: var(--navy);
  font-weight: 600;
}

.faq__answer-inner a {
  color: var(--ocre);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.faq__answer-inner ul {
  list-style: none;
  margin-top: 12px;
}

.faq__answer-inner ul li {
  padding: 6px 0;
  padding-left: 20px;
  position: relative;
  font-size: 0.9rem;
}

.faq__answer-inner ul li::before {
  content: '→';
  color: var(--ocre);
  position: absolute;
  left: 0;
  font-weight: 700;
}

/* FAQ Search */
.faq__search-wrap {
  margin-bottom: 48px;
}

.faq__search-input {
  width: 100%;
  max-width: 560px;
  padding: 16px 20px 16px 48px;
  border: 1.5px solid var(--border);
  border-radius: 100px;
  font-family: var(--ff-body);
  font-size: 0.95rem;
  color: var(--ink);
  background: var(--white);
  outline: none;
  transition: border-color var(--dur) var(--ease),
              box-shadow var(--dur) var(--ease);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23787878' stroke-width='1.5'%3E%3Ccircle cx='10.5' cy='10.5' r='6.75'/%3E%3Cpath d='M15.75 15.75L21 21'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: 16px center;
  background-size: 20px;
}

.faq__search-input:focus {
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(29,58,94,0.1);
}

.faq__item--hidden {
  display: none;
}

/* ── TIMELINE ── */
.timeline {
  position: relative;
  padding-left: 40px;
  margin: 48px 0;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 12px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--ocre), var(--navy));
  border-radius: 2px;
}

.timeline__item {
  position: relative;
  padding: 0 0 44px 36px;
}

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

.timeline__dot {
  position: absolute;
  left: -40px;
  top: 4px;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--white);
  border: 3px solid var(--ocre);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  transition: transform var(--dur) var(--ease);
}

.timeline__item:hover .timeline__dot {
  transform: scale(1.15);
  background: var(--ocre);
}

.timeline__year {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ocre);
  margin-bottom: 6px;
}

.timeline__title {
  font-family: var(--ff-display);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 8px;
}

.timeline__desc {
  font-size: 0.88rem;
  color: var(--ink-light);
  line-height: 1.75;
}

/* ── ARTICLE BLOG ── */
.article-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 64px;
  align-items: flex-start;
}

@media (max-width: 1024px) {
  .article-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

.article-hero {
  background: var(--navy);
  padding: clamp(56px, 8vw, 88px) 0 clamp(44px, 6vw, 64px);
  position: relative;
  overflow: hidden;
}

.article-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 80% at 30% 50%, rgba(212,146,74,0.08) 0%, transparent 60%);
  pointer-events: none;
}

.article-hero__content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.article-hero__breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.76rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 20px;
}

.article-hero__breadcrumb a {
  color: rgba(255,255,255,0.55);
  transition: color var(--dur) var(--ease);
}

.article-hero__breadcrumb a:hover {
  color: var(--ocre);
}

.article-hero__breadcrumb span {
  color: rgba(255,255,255,0.3);
}

.article-hero__meta {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.article-hero__meta-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
}

.article-hero__meta-item svg {
  width: 16px;
  height: 16px;
  color: var(--ocre);
}

.article-body {
  font-size: 1rem;
  line-height: 1.9;
  color: var(--ink-mid);
}

.article-body h2 {
  font-family: var(--ff-display);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 400;
  color: var(--navy);
  margin: 48px 0 20px;
  line-height: 1.3;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--border);
}

.article-body h3 {
  font-family: var(--ff-display);
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--navy);
  margin: 32px 0 14px;
}

.article-body p {
  margin-bottom: 20px;
}

.article-body ul, .article-body ol {
  margin: 20px 0;
  padding-left: 0;
  list-style: none;
}

.article-body ul li, .article-body ol li {
  padding: 8px 0 8px 28px;
  position: relative;
  border-bottom: 1px solid var(--border);
  font-size: 0.95rem;
}

.article-body ul li:last-child, .article-body ol li:last-child {
  border-bottom: none;
}

.article-body ul li::before {
  content: '→';
  color: var(--ocre);
  position: absolute;
  left: 0;
  font-weight: 700;
}

.article-body ol {
  counter-reset: ol-counter;
}

.article-body ol li::before {
  counter-increment: ol-counter;
  content: counter(ol-counter) '.';
  color: var(--ocre);
  position: absolute;
  left: 0;
  font-weight: 700;
}

.article-body strong {
  color: var(--navy);
  font-weight: 600;
}

.article-body a {
  color: var(--ocre);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.article-body .highlight-box {
  background: var(--navy-pale);
  border-left: 4px solid var(--navy);
  border-radius: 0 var(--r-lg) var(--r-lg) 0;
  padding: 24px 28px;
  margin: 28px 0;
}

.article-body .highlight-box p {
  margin: 0;
  color: var(--navy);
  font-size: 0.95rem;
}

.article-body .highlight-box strong {
  display: block;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 8px;
  opacity: 0.7;
}

/* Article Sommaire (TOC) */
.article-toc {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 28px;
  position: sticky;
  top: calc(var(--nav-h) + 24px);
}

.article-toc__title {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ocre);
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.article-toc__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.article-toc__list a {
  font-size: 0.85rem;
  color: var(--ink-mid);
  padding: 6px 10px;
  border-radius: var(--r);
  display: block;
  transition: all var(--dur) var(--ease);
  line-height: 1.5;
}

.article-toc__list a:hover {
  background: var(--sand);
  color: var(--navy);
  padding-left: 16px;
}

.article-toc__list a.active {
  background: var(--navy-pale);
  color: var(--navy);
  font-weight: 500;
}

/* Article CTA Sidebar */
.article-cta-sidebar {
  background: var(--navy);
  border-radius: var(--r-lg);
  padding: 28px;
  margin-top: 24px;
  text-align: center;
}

.article-cta-sidebar__title {
  font-family: var(--ff-display);
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 12px;
  line-height: 1.4;
}

.article-cta-sidebar__text {
  font-size: 0.83rem;
  color: rgba(255,255,255,0.65);
  margin-bottom: 20px;
  line-height: 1.7;
}

/* Article FAQ inline */
.article-faq {
  background: var(--sand);
  border-radius: var(--r-lg);
  padding: 40px;
  margin: 48px 0 0;
}

.article-faq__title {
  font-family: var(--ff-display);
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--navy);
  margin-bottom: 32px;
}

/* Article author */
.article-author {
  display: flex;
  align-items: center;
  gap: 20px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 24px 28px;
  margin: 48px 0;
}

.article-author__avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--sand);
  flex-shrink: 0;
  overflow: hidden;
}

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

.article-author__name {
  font-weight: 600;
  color: var(--navy);
  font-size: 0.95rem;
  margin-bottom: 4px;
}

.article-author__role {
  font-size: 0.8rem;
  color: var(--ocre);
  margin-bottom: 8px;
}

.article-author__bio {
  font-size: 0.85rem;
  color: var(--ink-light);
  line-height: 1.7;
}

/* ── TÉMOIGNAGES / AVIS ── */
.testimonials-section {
  background: var(--white);
  padding: clamp(64px, 10vw, 110px) 0;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 56px;
}

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

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

.testimonial-card {
  background: var(--sand);
  border-radius: var(--r-lg);
  padding: 36px 32px 32px;
  position: relative;
  transition: transform var(--dur) var(--ease),
              box-shadow var(--dur) var(--ease);
}

.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 56px rgba(29,58,94,0.1);
}

.testimonial-card__stars {
  display: flex;
  gap: 4px;
  margin-bottom: 16px;
  color: var(--ocre);
  font-size: 1.1rem;
}

.testimonial-card__text {
  font-family: var(--ff-display);
  font-size: 1.1rem;
  font-style: italic;
  font-weight: 300;
  color: var(--navy);
  line-height: 1.7;
  margin-bottom: 24px;
  position: relative;
  z-index: 2;
}

.testimonial-card__quote-mark {
  position: absolute;
  top: 20px;
  right: 24px;
  font-family: Georgia, serif;
  font-size: 5rem;
  color: var(--ocre);
  opacity: 0.12;
  line-height: 1;
  pointer-events: none;
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 20px;
  border-top: 1px solid var(--sand-dark);
}

.testimonial-card__author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--navy-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.testimonial-card__author-name {
  font-weight: 600;
  color: var(--navy);
  font-size: 0.88rem;
}

.testimonial-card__author-meta {
  font-size: 0.77rem;
  color: var(--ink-light);
}

/* ── CALCULATEUR CRÉDIT D'IMPÔT ── */
.calculateur {
  background: var(--navy);
  border-radius: var(--r-lg);
  padding: 48px;
  margin: 56px 0;
  position: relative;
  overflow: hidden;
}

.calculateur::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212,146,74,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.calculateur__title {
  font-family: var(--ff-display);
  font-size: 1.8rem;
  font-weight: 300;
  color: var(--white);
  margin-bottom: 8px;
}

.calculateur__sub {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 36px;
}

.calculateur__slider-label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.calculateur__slider-label span:first-child {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.06em;
}

.calculateur__slider-value {
  font-family: var(--ff-display);
  font-size: 1.6rem;
  font-weight: 300;
  color: var(--white);
}

.calculateur__slider {
  width: 100%;
  -webkit-appearance: none;
  appearance: none;
  height: 6px;
  border-radius: 3px;
  background: rgba(255,255,255,0.2);
  outline: none;
  margin-bottom: 36px;
  cursor: pointer;
}

.calculateur__slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--ocre);
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(212,146,74,0.4);
  transition: transform 0.15s ease;
}

.calculateur__slider::-webkit-slider-thumb:hover {
  transform: scale(1.15);
}

.calculateur__slider::-moz-range-thumb {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--ocre);
  border: none;
  cursor: pointer;
}

.calculateur__results {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 24px;
}

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

  .calculateur {
    padding: 32px 24px;
  }
}

.calculateur__result-item {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--r-lg);
  padding: 20px;
  text-align: center;
}

.calculateur__result-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 10px;
}

.calculateur__result-value {
  font-family: var(--ff-display);
  font-size: 2rem;
  font-weight: 300;
  color: var(--white);
  line-height: 1;
}

.calculateur__result-item--highlight .calculateur__result-value {
  color: var(--ocre);
  font-size: 2.4rem;
}

.calculateur__result-sub {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
  margin-top: 6px;
}

.calculateur__mention {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.45);
  text-align: center;
  line-height: 1.7;
}

/* ── FILTRES BLOG ── */
.blog-filters {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.blog-filter-btn {
  padding: 9px 20px;
  border: 1.5px solid var(--border);
  border-radius: 100px;
  background: var(--white);
  font-family: var(--ff-body);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-mid);
  cursor: pointer;
  transition: all var(--dur) var(--ease);
}

.blog-filter-btn:hover {
  border-color: var(--navy);
  color: var(--navy);
}

.blog-filter-btn.active {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 32px;
}

.blog-card-v2 {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: all var(--dur) var(--ease);
  display: flex;
  flex-direction: column;
  text-decoration: none;
}

.blog-card-v2:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(29,58,94,0.12);
  border-color: var(--ocre);
}

.blog-card-v2__thumb {
  background: var(--sand);
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.5rem;
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.blog-card-v2__category {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 5px 14px;
  background: var(--white);
  border-radius: 100px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--navy);
}

.blog-card-v2__body {
  padding: 28px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.blog-card-v2__meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 12px;
}

.blog-card-v2__date {
  font-size: 0.73rem;
  color: var(--ink-light);
}

.blog-card-v2__read-time {
  font-size: 0.73rem;
  color: var(--ocre);
  font-weight: 500;
}

.blog-card-v2__title {
  font-family: var(--ff-display);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--navy);
  line-height: 1.4;
  margin-bottom: 12px;
  flex-grow: 1;
}

.blog-card-v2__excerpt {
  font-size: 0.85rem;
  color: var(--ink-light);
  line-height: 1.7;
  margin-bottom: 20px;
}

.blog-card-v2__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--navy);
  transition: gap var(--dur) var(--ease);
}

.blog-card-v2__link::after {
  content: '→';
  transition: transform var(--dur) var(--ease);
}

.blog-card-v2:hover .blog-card-v2__link {
  gap: 12px;
}

.blog-card-v2:hover .blog-card-v2__link::after {
  transform: translateX(4px);
}

.blog-card-v2--hidden {
  display: none !important;
}

/* ── PAGE SÉANCES ── */
.seance-step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 28px;
  align-items: flex-start;
  padding: 36px 0;
  border-bottom: 1px solid var(--border);
}

.seance-step:last-child {
  border-bottom: none;
}

.seance-step__num {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  font-family: var(--ff-display);
  font-size: 1.8rem;
  font-weight: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform var(--dur) var(--ease),
              background var(--dur) var(--ease);
}

.seance-step:hover .seance-step__num {
  background: var(--ocre);
  transform: rotate(-5deg) scale(1.05);
}

.seance-step__title {
  font-family: var(--ff-display);
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 10px;
}

.seance-step__duration {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ocre);
  margin-bottom: 12px;
}

.seance-step__desc {
  font-size: 0.93rem;
  color: var(--ink-mid);
  line-height: 1.8;
}

.seance-step__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.seance-step__tag {
  padding: 4px 12px;
  background: var(--navy-pale);
  border-radius: 100px;
  font-size: 0.72rem;
  color: var(--navy);
  font-weight: 500;
}

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

  .seance-step__num {
    width: 56px;
    height: 56px;
    font-size: 1.4rem;
  }
}

/* ── ZONE D'INTERVENTION ── */
.zone-communes {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px;
  margin: 36px 0;
}

.commune-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: all var(--dur) var(--ease);
}

.commune-card:hover {
  border-color: var(--ocre);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(29,58,94,0.08);
}

.commune-card__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--ocre);
  flex-shrink: 0;
}

.commune-card__name {
  font-weight: 500;
  color: var(--navy);
  font-size: 0.9rem;
}

.commune-card__dept {
  font-size: 0.75rem;
  color: var(--ink-light);
}

/* ── VALEURS (à-propos) ── */
.valeur-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 40px 32px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: transform var(--dur) var(--ease),
              box-shadow var(--dur) var(--ease);
}

.valeur-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--navy), var(--ocre));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--dur) var(--ease);
}

.valeur-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 56px rgba(29,58,94,0.1);
}

.valeur-card:hover::before {
  transform: scaleX(1);
}

.valeur-card__icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 24px;
  color: var(--ocre);
}

.valeur-card__icon svg {
  width: 100%;
  height: 100%;
}

.valeur-card__title {
  font-family: var(--ff-display);
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 12px;
}

.valeur-card__desc {
  font-size: 0.9rem;
  color: var(--ink-light);
  line-height: 1.8;
}

/* ── CESU SECTION ── */
.cesu-section {
  background: linear-gradient(135deg, var(--navy-pale) 0%, var(--sand) 100%);
  border-radius: var(--r-lg);
  padding: 48px;
  margin: 48px 0;
}

.cesu-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 36px;
}

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

  .cesu-section {
    padding: 32px 24px;
  }
}

.cesu-step {
  text-align: center;
}

.cesu-step__num {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  font-family: var(--ff-display);
  font-size: 1.4rem;
  font-weight: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.cesu-step__title {
  font-weight: 600;
  color: var(--navy);
  font-size: 0.9rem;
  margin-bottom: 8px;
}

.cesu-step__desc {
  font-size: 0.83rem;
  color: var(--ink-light);
  line-height: 1.7;
}

/* ── RESSOURCES HUB ── */
.ressource-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 32px;
  display: flex;
  gap: 24px;
  align-items: flex-start;
  transition: all var(--dur) var(--ease);
}

.ressource-card:hover {
  border-color: var(--ocre);
  box-shadow: 0 8px 32px rgba(29,58,94,0.08);
  transform: translateX(4px);
}

.ressource-card__icon {
  width: 52px;
  height: 52px;
  background: var(--navy-pale);
  border-radius: var(--r-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  flex-shrink: 0;
}

.ressource-card__icon svg {
  width: 28px;
  height: 28px;
}

.ressource-card__title {
  font-family: var(--ff-display);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 8px;
}

.ressource-card__desc {
  font-size: 0.88rem;
  color: var(--ink-light);
  line-height: 1.7;
  margin-bottom: 14px;
}

.ressource-card__link {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ocre);
}

/* ── BREADCRUMB PAGES ── */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: var(--ink-light);
  padding: 16px 0;
  flex-wrap: wrap;
}

.breadcrumb a {
  color: var(--navy);
  transition: color var(--dur) var(--ease);
}

.breadcrumb a:hover {
  color: var(--ocre);
}

.breadcrumb__sep {
  color: var(--border);
  font-size: 0.7rem;
}

/* ── SVG ICONS HELPERS ── */
.icon {
  display: inline-block;
  vertical-align: middle;
}

.icon svg {
  display: block;
}

.icon--sm svg { width: 18px; height: 18px; }
.icon--md svg { width: 24px; height: 24px; }
.icon--lg svg { width: 32px; height: 32px; }
.icon--xl svg { width: 48px; height: 48px; }

/* ── PAGE INTRO CENTRÉ ── */
.page-intro {
  text-align: center;
  max-width: 780px;
  margin: 0 auto clamp(48px, 7vw, 80px);
}

/* ── GARANTIE BADGE ── */
.garantie-badge {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 28px;
  background: var(--sand);
  border-radius: var(--r-lg);
  border-left: 4px solid var(--ocre);
}

.garantie-badge__icon {
  font-size: 2rem;
  flex-shrink: 0;
}

.garantie-badge__text {
  font-size: 0.92rem;
  color: var(--ink-mid);
  line-height: 1.7;
}

.garantie-badge__text strong {
  color: var(--navy);
  display: block;
  font-size: 0.85rem;
  margin-bottom: 2px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.garantie-badge__icon {
  width: 52px;
  height: 52px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ocre);
  flex-shrink: 0;
  box-shadow: 0 2px 12px rgba(29,58,94,0.08);
}

.garantie-badge__title {
  font-family: var(--ff-display);
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--navy);
  margin-bottom: 6px;
}

/* ── TESTIMONIALS GRID (index) ── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

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

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

.testimonial-card {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 28px 28px 24px;
  border: 1px solid var(--border);
  box-shadow: 0 2px 16px rgba(29,58,94,0.06);
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: box-shadow var(--dur) var(--ease), transform var(--dur) var(--ease);
}

.testimonial-card:hover {
  box-shadow: 0 8px 32px rgba(29,58,94,0.12);
  transform: translateY(-3px);
}

.testimonial-card__stars {
  display: flex;
  gap: 3px;
}

.testimonial-card__text {
  font-family: var(--ff-display);
  font-size: 1.05rem;
  font-style: italic;
  color: var(--ink);
  line-height: 1.7;
  flex: 1;
  margin: 0;
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 4px;
}

.testimonial-card__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--navy-pale);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-display);
  font-size: 1.1rem;
  font-weight: 600;
  flex-shrink: 0;
}

.testimonial-card__name {
  font-family: var(--ff-body);
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--navy);
}

.testimonial-card__detail {
  font-size: 0.8rem;
  color: var(--ink-light);
  margin-top: 2px;
}

/* ── BADGE NAVY (index ateliers) ── */
.badge--navy {
  background: var(--navy-pale);
  color: var(--navy);
  border: 1px solid rgba(29,58,94,0.15);
  padding: 6px 14px;
  border-radius: 100px;
  font-family: var(--ff-body);
  font-size: 0.82rem;
  font-weight: 500;
}

/* ── VALEUR CARD (a-propos) ── */
.valeur-card {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 36px 28px;
  border: 1px solid var(--border);
  text-align: center;
  transition: box-shadow var(--dur) var(--ease), transform var(--dur) var(--ease);
}

.valeur-card:hover {
  box-shadow: 0 8px 32px rgba(29,58,94,0.1);
  transform: translateY(-4px);
}

.valeur-card__icon {
  width: 64px;
  height: 64px;
  background: var(--navy-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  margin: 0 auto 20px;
}

.valeur-card__title {
  font-family: var(--ff-display);
  font-size: 1.35rem;
  font-weight: 400;
  color: var(--navy);
  margin-bottom: 12px;
}

.valeur-card__text {
  font-family: var(--ff-body);
  font-size: 0.93rem;
  color: var(--ink-mid);
  line-height: 1.75;
  margin-bottom: 16px;
}

.valeur-card__detail {
  font-family: var(--ff-body);
  font-size: 0.82rem;
  color: var(--ocre);
  font-style: italic;
  line-height: 1.6;
  padding-top: 14px;
  border-top: 1px solid var(--border);
}

/* ── BLOG CARD V2 THUMB COLORS ── */
.blog-card-v2__thumb--dys      { background: var(--navy-pale); }
.blog-card-v2__thumb--tdah     { background: var(--sand-dark); }
.blog-card-v2__thumb--confiance { background: #fce8df; }
.blog-card-v2__thumb--pratique { background: #e8f5e9; }
.blog-card-v2__thumb--difficultes { background: var(--cream); }
.blog-card-v2__thumb--methodes { background: var(--sand); }
.blog-card-v2__thumb--local    { background: var(--navy-pale); }

/* ── BLOG FILTERS ── */
.blog-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 40px;
}

/* ── CESU SECTION ── */
.cesu-section__highlight {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px 24px;
  background: var(--sand);
  border-radius: var(--r-lg);
  margin-bottom: 14px;
  font-family: var(--ff-body);
  font-size: 0.93rem;
  color: var(--ink-mid);
  line-height: 1.65;
}

.cesu-section__highlight--best {
  background: var(--navy);
  color: var(--white);
}

.cesu-section__highlight--best strong {
  color: var(--ocre-light);
}

/* ── PRICING CARD BADGE ── */
.pricing__card-badge {
  display: inline-block;
  background: var(--ocre);
  color: var(--white);
  font-family: var(--ff-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 16px;
}

/* ── PRICING NOTICE ── */
.pricing__notice {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 28px 32px;
  margin: 40px 0;
}

/* ── RESPONSIVE BLOG GRID ── */
@media (max-width: 640px) {
  .blog-filters { gap: 8px; }
  .blog-filter-btn { font-size: 0.8rem; padding: 7px 14px; }
}

/* ══════════════════════════════════════════════
   POSITIONNEMENT PLURIDISCIPLINAIRE & COLLABORATIF
   Sections : collab-intro, collab-story, collab-card,
              collab-disclaimer, collab-bridge
   ══════════════════════════════════════════════ */

/* ── INTRO COLLABORATIVE ── */
.collab-intro {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 56px;
}

/* ── STORYTELLING PANEL ── */
.collab-story {
  background: var(--navy);
  border-radius: var(--r-lg);
  margin-bottom: 56px;
  overflow: hidden;
  position: relative;
}

.collab-story::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 5px;
  background: linear-gradient(to bottom, var(--ocre), var(--terra));
}

.collab-story__inner {
  padding: 44px 52px;
}

.collab-story__text {
  font-size: 1.05rem;
  line-height: 1.85;
  color: rgba(255,255,255,0.82);
}

.collab-story__text + .collab-story__text {
  margin-top: 16px;
}

.collab-story__text strong {
  color: var(--white);
  font-weight: 600;
}

@media (max-width: 768px) {
  .collab-story__inner {
    padding: 32px 28px;
  }
}

/* ── PILIERS COLLABORATIFS (3 cards) ── */
.collab-grid {
  margin-bottom: 40px;
}

.collab-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 36px 32px;
  transition: transform var(--dur) var(--ease),
              box-shadow var(--dur) var(--ease);
  position: relative;
  overflow: hidden;
}

.collab-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--ocre), var(--terra));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--dur) var(--ease);
}

.collab-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(29,58,94,0.1);
}

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

.collab-card__icon {
  width: 52px;
  height: 52px;
  background: var(--navy-pale);
  border-radius: var(--r-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  color: var(--navy);
}

.collab-card__icon svg {
  width: 26px;
  height: 26px;
}

.collab-card__title {
  font-family: var(--ff-display);
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 12px;
  line-height: 1.3;
}

.collab-card__text {
  font-size: 0.92rem;
  line-height: 1.8;
  color: var(--ink-mid);
  margin-bottom: 20px;
}

.collab-card__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.collab-card__list li {
  font-size: 0.84rem;
  color: var(--ink-light);
  padding-left: 18px;
  position: relative;
  line-height: 1.5;
}

.collab-card__list li::before {
  content: '→';
  color: var(--ocre);
  font-weight: 700;
  position: absolute;
  left: 0;
}

/* ── DISCLAIMER JURIDIQUE ── */
.collab-disclaimer {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: var(--sand);
  border-radius: var(--r-lg);
  padding: 24px 28px;
  border-left: 3px solid var(--ocre);
  max-width: 860px;
  margin: 0 auto;
}

.collab-disclaimer p {
  font-size: 0.83rem;
  color: var(--ink-mid);
  line-height: 1.75;
}

.collab-disclaimer strong {
  color: var(--navy);
}

/* ── BRIDGE SECTION (seances.html) ── */
.collab-bridge-section {
  padding: clamp(40px, 6vw, 64px) 0;
}

.collab-bridge {
  background: var(--white);
  border-radius: var(--r-lg);
  border: 1px solid var(--border);
  padding: 44px 48px;
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 32px;
  align-items: flex-start;
  box-shadow: 0 4px 24px rgba(29,58,94,0.06);
}

@media (max-width: 640px) {
  .collab-bridge {
    grid-template-columns: 1fr;
    padding: 32px 24px;
  }
}

.collab-bridge__icon-wrap {
  width: 64px;
  height: 64px;
  background: var(--navy);
  border-radius: var(--r-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--white);
}

.collab-bridge__icon-wrap svg {
  width: 30px;
  height: 30px;
}

.collab-bridge__title {
  font-family: var(--ff-display);
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--navy);
  margin-bottom: 14px;
  line-height: 1.25;
}

.collab-bridge__text {
  font-size: 0.95rem;
  line-height: 1.85;
  color: var(--ink-mid);
  margin-bottom: 20px;
}

.collab-bridge__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
}

.collab-bridge__tags span {
  display: inline-flex;
  align-items: center;
  padding: 5px 14px;
  background: var(--navy-pale);
  border-radius: 100px;
  font-size: 0.78rem;
  color: var(--navy);
  font-weight: 500;
  letter-spacing: 0.02em;
}

.collab-bridge__note {
  font-size: 0.8rem;
  color: var(--ink-light);
  line-height: 1.7;
  padding-top: 14px;
  border-top: 1px solid var(--border);
  font-style: italic;
}

/* ════════════════════════════════════════════
   B2B / PROFESSIONNELS
   ════════════════════════════════════════════ */

/* Badge hero B2B */
.pro-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: var(--ocre);
  color: #fff;
  border-radius: 100px;
  font-family: 'Jost', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.pro-badge::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  background: rgba(255,255,255,0.8);
  border-radius: 50%;
}

/* Types de structures */
.structure-types {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 32px;
}

.structure-type {
  display: inline-flex;
  align-items: center;
  padding: 8px 18px;
  background: var(--cream);
  border: 1.5px solid var(--border);
  border-radius: 100px;
  font-family: 'Jost', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--navy);
  transition: background 0.2s, border-color 0.2s;
}

.structure-type:hover {
  background: var(--navy-pale);
  border-color: var(--navy);
}

/* Cards types d'interventions */
.intervention-card {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
  position: relative;
  transition: box-shadow 0.25s, transform 0.25s;
}

.intervention-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--ocre);
  border-radius: 16px 16px 0 0;
}

.intervention-card:hover {
  box-shadow: 0 12px 40px rgba(29,58,94,0.12);
  transform: translateY(-3px);
}

.intervention-card__icon {
  width: 52px;
  height: 52px;
  background: var(--navy-pale);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--navy);
}

.intervention-card__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 10px;
  line-height: 1.3;
}

.intervention-card__desc {
  font-family: 'Jost', sans-serif;
  font-size: 0.88rem;
  color: var(--ink-mid);
  line-height: 1.65;
  margin-bottom: 16px;
}

.intervention-card__info {
  font-family: 'Jost', sans-serif;
  font-size: 0.8rem;
  color: var(--ocre);
  font-weight: 600;
  margin-bottom: 14px;
  letter-spacing: 0.02em;
}

.intervention-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--border);
}

.intervention-tag {
  display: inline-block;
  padding: 3px 10px;
  background: var(--navy-pale);
  border-radius: 100px;
  font-family: 'Jost', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: 0.02em;
}

/* Cards formats d'intervention */
.format-card {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 28px;
  display: flex;
  gap: 18px;
  align-items: flex-start;
  transition: box-shadow 0.22s;
}

.format-card:hover {
  box-shadow: 0 8px 32px rgba(29,58,94,0.1);
}

.format-card__num {
  width: 40px;
  height: 40px;
  min-width: 40px;
  background: var(--ocre);
  color: #fff;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 700;
}

.format-card__title {
  font-family: 'Jost', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--navy);
  margin-bottom: 6px;
}

.format-card__desc {
  font-family: 'Jost', sans-serif;
  font-size: 0.84rem;
  color: var(--ink-mid);
  line-height: 1.6;
}

/* Formulaire B2B */
.form-pro {
  background: var(--sand);
  border-radius: 20px;
  padding: 48px;
  max-width: 800px;
  margin: 0 auto;
}

@media (max-width: 640px) {
  .form-pro {
    padding: 28px 20px;
  }
}

.form-pro .form-group {
  margin-bottom: 20px;
}

.form-pro label {
  display: block;
  font-family: 'Jost', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px;
  letter-spacing: 0.02em;
}

.form-pro input,
.form-pro select,
.form-pro textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  background: #fff;
  font-family: 'Jost', sans-serif;
  font-size: 0.9rem;
  color: var(--ink);
  transition: border-color 0.2s;
  box-sizing: border-box;
}

.form-pro input:focus,
.form-pro select:focus,
.form-pro textarea:focus {
  outline: none;
  border-color: var(--navy);
}

.form-pro textarea {
  min-height: 120px;
  resize: vertical;
}

.form-check-group {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 4px 0;
}

.form-check-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  cursor: pointer;
  font-family: 'Jost', sans-serif;
  font-size: 0.83rem;
  font-weight: 500;
  color: var(--ink-mid);
  transition: border-color 0.18s, background 0.18s;
}

.form-check-label input[type="checkbox"] {
  width: auto;
  min-width: unset;
  padding: 0;
  margin: 0;
  accent-color: var(--navy);
}

.form-check-label:has(input:checked) {
  border-color: var(--navy);
  background: var(--navy-pale);
  color: var(--navy);
}

/* Chiffres clés B2B */
.pro-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 28px;
}

.pro-stat {
  text-align: center;
  padding: 20px 16px;
  background: var(--navy-pale);
  border-radius: 12px;
}

.pro-stat__num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 6px;
}

.pro-stat__label {
  font-family: 'Jost', sans-serif;
  font-size: 0.78rem;
  color: var(--ink-mid);
  line-height: 1.4;
}

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

/* Grid interventions */
.interventions-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

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

/* Grid formats */
.formats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

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

/* Blog card tag pro & bien-etre */
.blog-card-v2__thumb--pro {
  background: var(--navy-pale);
}

.blog-card-v2__thumb--bienetre {
  background: #eaf4ee;
}
