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

:root {
  /* ── Palette — Bleu ardoise désaturé (clinique épuré) ──────
     On quitte le bleu pétrole + cyan brillant (cliché santé)
     pour un bleu ardoise sobre, plus haut de gamme. ────────── */
  --klein:        #2F5563;   /* Primary — bleu ardoise profond */
  --klein-dark:   #223F4A;   /* Hover / actif */
  --klein-light:  #EEF1F0;   /* Fond doux — gris-vert très clair */
  --klein-mid:    #6C8893;   /* Accent secondaire — ardoise clair */

  /* ── Accent CTA — même famille, plus dense ─────────────────
     Plus de cyan : le CTA reste dans la palette, on joue le
     contraste par la densité, pas par la saturation. ──────── */
  --cta:        #2F5563;   /* identique au primary — cohérence */
  --cta-dark:   #223F4A;

  /* ── Neutres — légèrement réchauffés (moins « bleu écran ») ─ */
  --text:        #1B2A33;   /* presque noir, nuance ardoise */
  --text-light:  #51616B;
  --text-muted:  #9AA6AD;
  --border:      #E4E7E6;
  --bg-soft:     #F7F8F8;

  /* ── Polices ───────────────────────────────────────────────
     Nouvelles variables : utilisées par le bloc typo ci-dessous
     et réutilisables partout (--font-display / --font-body). ── */
  --font-display: 'Newsreader', Georgia, 'Times New Roman', serif;
  --font-body:    'Inter', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;

  /* ── Espacements (échelle 4-base — inchangée) ─────────────── */
  --space-1:  4px;
  --space-2:  8px;
  --space-3:  12px;
  --space-4:  16px;
  --space-6:  24px;
  --space-8:  32px;
  --space-12: 48px;
  --space-16: 64px;
  --space-24: 96px;
  --space-32: 128px;

  /* ── Radius — légèrement resserrés (plus net, moins « bulle ») */
  --radius-sm:   3px;
  --radius-md:   6px;
  --radius-lg:   10px;
  --radius-pill: 999px;

  /* ── Shadows — encore plus discrètes (esthétique épurée) ──── */
  --shadow-sm: 0 1px 2px rgba(27,42,51,0.04);
  --shadow-md: 0 1px 3px rgba(27,42,51,0.05), 0 1px 2px rgba(27,42,51,0.03);
  --shadow-lg: 0 4px 14px rgba(27,42,51,0.06), 0 2px 4px rgba(27,42,51,0.03);
  --shadow-xl: 0 14px 36px rgba(27,42,51,0.07), 0 4px 8px rgba(27,42,51,0.03);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--text);
  font-size: 15px;
  line-height: 1.6;
  background: #fff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

/* ── TYPOGRAPHIE ──────────────────────────────────────────────
   Les titres passent en serif Newsreader. Le contraste
   serif/sans est ce qui sort le site du « look IA ». ──────── */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  letter-spacing: -0.005em;   /* la serif respire mieux, on relâche le tracking */
  color: var(--text);
  font-weight: 500;
}

/* H1 — grand, posé, présence éditoriale */
h1 {
  font-weight: 500;
  line-height: 1.1;
}

/* H2 — légèrement plus grand qu'avant, la serif porte la taille */
h2 {
  font-size: 2.15rem;
  font-weight: 500;
  margin-bottom: 1rem;
  line-height: 1.18;
}

/* H3 / H4 — la serif tient même en petite taille */
h3 {
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1.35;
}

h4 {
  font-size: 1.05rem;
  font-weight: 500;
  line-height: 1.4;
}

/* Italique d'accent — la serif italique de Newsreader est
   expressive : c'est elle qui donne le caractère éditorial. */
em {
  font-style: italic;
  color: var(--klein);
}

.page-hero em,
.video-hero em {
  color: rgba(255,255,255,0.82);
}

/* Eyebrow / sur-titre — on garde les capitales mais en sans,
   pour le contraste avec les titres serif. */
.section-label,
.mt-eyebrow {
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--klein-mid);
  font-weight: 500;
}

.section-label {
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--klein-mid);
  margin-bottom: 1rem;
  font-weight: 500;
}
.sub {
  font-size: 13px;
  color: var(--text-light);
  margin-bottom: 2rem;
  max-width: 560px;
}

/* ── NAVIGATION ───────────────────────────────────────────── */
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.3rem 2.5rem;
  background: transparent;
  position: absolute;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background 0.3s, box-shadow 0.3s;
}
nav.scrolled {
  background: #fff;
  box-shadow: 0 1px 0 var(--border);
  position: fixed;
}
nav.static-nav {
  background: #fff;
  box-shadow: 0 1px 0 var(--border);
  position: sticky;
  top: 0;
}

.nav-brand { display: flex; align-items: center; gap: 14px; }

.nav-logo-img {
  height: 60px;
  width: auto;
  background: #fff;
  border-radius: 6px;
  padding: 3px;
}
.footer-brand img { height: 48px; width: auto; opacity: 0.9; }

.nav-sep {
  width: 1px; height: 32px;
  background: rgba(255,255,255,0.3);
  transition: background 0.3s;
}
nav.scrolled .nav-sep,
nav.static-nav .nav-sep { background: var(--border); }

.nav-logo {
  font-size: 1.35rem;
  font-weight: 600;
  color: #fff;
  line-height: 1.2;
}
nav.scrolled .nav-logo,
nav.static-nav .nav-logo { color: var(--klein); }

.nav-logo small {
  display: block;
  font-size: 11.5px;
  color: rgba(255,255,255,0.6);
  font-weight: 400;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
nav.scrolled .nav-logo small,
nav.static-nav .nav-logo small { color: #999; }

.nav-links { display: flex; gap: 2px; }

.nav-link {
  font-size: 14.5px;
  color: rgba(255,255,255,0.85);
  padding: 7px 16px;
  border-bottom: 2px solid transparent;
  transition: color 0.15s;
  white-space: nowrap;
}
.nav-link:hover,
.nav-link.active { color: #fff; border-bottom-color: rgba(255,255,255,0.6); }
nav.scrolled .nav-link,
nav.static-nav .nav-link { color: #555; }
nav.scrolled .nav-link:hover,
nav.static-nav .nav-link:hover { color: var(--klein); }
nav.scrolled .nav-link.active,
nav.static-nav .nav-link.active { color: var(--klein); border-bottom-color: var(--klein); }

.btn-nav {
  background: #fff;
  color: var(--klein);
  font-size: 15.5px;
  font-weight: 600;
  padding: 14px 34px;
  border-radius: 5px;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  display: inline-block;
  letter-spacing: 0.01em;
  transition: background 0.2s, color 0.2s, transform 0.2s, box-shadow 0.2s;
  position: relative;
  overflow: hidden;
  animation: pulse-cta-white 2.4s ease-in-out infinite;
}
/* Halo pulsé version blanche (homepage) */
@keyframes pulse-cta-white {
  0%, 100% {
    box-shadow:
      0 0 0 1px rgba(255,255,255,0.35),
      0 4px 16px rgba(255,255,255,0.35),
      0 0 0 0 rgba(255,255,255,0.55);
  }
  50% {
    box-shadow:
      0 0 0 1px rgba(255,255,255,0.5),
      0 6px 28px rgba(255,255,255,0.55),
      0 0 0 12px rgba(255,255,255,0);
  }
}
/* Sweep lumineux qui défile sur les lettres (homepage) */
.btn-nav::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 55%;
  left: -55%;
  background: linear-gradient(
    100deg,
    transparent 0%,
    rgba(21,94,117,0.10) 45%,
    rgba(21,94,117,0.22) 50%,
    rgba(21,94,117,0.10) 55%,
    transparent 100%
  );
  animation: sweep-cta 3.5s ease-in-out infinite;
  pointer-events: none;
  z-index: 1;
}
.btn-nav > * { position: relative; z-index: 2; }

.btn-nav::after {
  content: ' →';
  display: inline;
  margin-left: 4px;
  transition: transform 0.2s;
  position: relative;
  z-index: 2;
}
.btn-nav:hover {
  transform: translateY(-2px);
  animation: none;
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.6),
    0 10px 32px rgba(255,255,255,0.6),
    0 0 60px rgba(255,255,255,0.4);
}
.btn-nav:hover::before { animation: none; opacity: 0; }
.btn-nav:hover::after { transform: translateX(3px); }

nav.scrolled .btn-nav,
nav.static-nav .btn-nav {
  background: var(--cta);
  color: #fff;
  position: relative;
  overflow: hidden;
  animation: pulse-cta 2.4s ease-in-out infinite;
}
/* Halo pulsé */
@keyframes pulse-cta {
  0%, 100% {
    box-shadow:
      0 0 0 1px rgba(47,85,99,0.18),
      0 4px 16px rgba(47,85,99,0.18),
      0 0 0 0 rgba(47,85,99,0.45);
  }
  50% {
    box-shadow:
      0 0 0 1px rgba(47,85,99,0.28),
      0 6px 28px rgba(47,85,99,0.35),
      0 0 0 12px rgba(47,85,99,0);
  }
}
/* Sweep lumineux qui défile sur les lettres */
nav.scrolled .btn-nav::before,
nav.static-nav .btn-nav::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 55%;
  left: -55%;
  background: linear-gradient(
    100deg,
    transparent 0%,
    rgba(255,255,255,0.25) 45%,
    rgba(255,255,255,0.5) 50%,
    rgba(255,255,255,0.25) 55%,
    transparent 100%
  );
  animation: sweep-cta 3.5s ease-in-out infinite;
  pointer-events: none;
  z-index: 1;
}
@keyframes sweep-cta {
  0%   { left: -55%; }
  60%  { left: 100%; }
  100% { left: 100%; }
}
/* Le texte du bouton reste au-dessus du sweep */
nav.scrolled .btn-nav,
nav.static-nav .btn-nav { z-index: 1; }
nav.scrolled .btn-nav > *,
nav.static-nav .btn-nav > * { position: relative; z-index: 2; }

/* Stop les anims au survol pour ne pas concurrencer l'effet hover */
nav.scrolled .btn-nav:hover,
nav.static-nav .btn-nav:hover { animation: none; }
nav.scrolled .btn-nav:hover::before,
nav.static-nav .btn-nav:hover::before { animation: none; opacity: 0; }
nav.scrolled .btn-nav:hover,
nav.static-nav .btn-nav:hover {
  background: var(--cta-dark);
  box-shadow:
    0 0 0 1px rgba(47,85,99,0.22),
    0 10px 40px rgba(34,63,74,0.32),
    0 0 70px rgba(47,85,99,0.22),
    0 0 100px rgba(47,85,99,0.15);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.hamburger span {
  display: block; width: 22px; height: 2px;
  background: #fff; border-radius: 2px; transition: background 0.3s;
}
nav.scrolled .hamburger span,
nav.static-nav .hamburger span { background: var(--text); }

/* Mobile menu */
.mobile-menu {
  display: none;
  flex-direction: column;
  position: fixed;
  inset: 0;
  background: #fff;
  z-index: 200;
  padding: 2rem;
  gap: 0;
}
.mobile-menu.open { display: flex; }
.mobile-menu-close {
  align-self: flex-end;
  font-size: 24px;
  cursor: pointer;
  color: var(--text-light);
  background: none;
  border: none;
  margin-bottom: 1rem;
}
.mobile-menu a {
  font-size: 1.8rem;
  color: var(--text);
  padding: 0.6rem 0;
  border-bottom: 0.5px solid var(--border);
}
.mobile-menu a.active { color: var(--klein); }
.mobile-menu .btn-primary { text-align: center; margin-top: 1.5rem; }

/* ── BUTTONS ──────────────────────────────────────────────── */
.btn-primary {
  background: var(--klein); color: #fff;
  font-size: 13px; font-weight: 500;
  padding: 11px 24px; border-radius: 2px;
  border: none; cursor: pointer;
  display: inline-block;
  transition: background 0.15s;
}
.btn-primary:hover { background: var(--klein-dark); }

.btn-outline {
  background: transparent; color: var(--klein);
  font-size: 13px; font-weight: 500;
  padding: 11px 24px; border-radius: 2px;
  border: 1.5px solid var(--klein);
  cursor: pointer; display: inline-block;
  transition: background 0.15s, color 0.15s;
}
.btn-outline:hover { background: var(--klein); color: #fff; }

.btn-white {
  background: #fff; color: var(--klein);
  font-size: 13px; font-weight: 500;
  padding: 12px 28px; border-radius: 2px;
  border: none; cursor: pointer; display: inline-block;
}
.btn-ghost {
  background: transparent; color: #fff;
  font-size: 13px; font-weight: 500;
  padding: 12px 28px; border-radius: 2px;
  border: 1.5px solid rgba(255,255,255,0.5);
  cursor: pointer; display: inline-block;
}

/* ── PAGE HERO (pages internes) ───────────────────────────── */
.page-hero {
  background: linear-gradient(135deg, var(--klein-dark) 0%, var(--klein) 100%);
  padding: 8rem 2.5rem 4rem;
  color: #fff;
}
.page-hero .badge {
  display: inline-block;
  font-size: 10px; letter-spacing: 0.15em; text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  border: 0.5px solid rgba(255,255,255,0.35);
  padding: 5px 14px; border-radius: 2px;
  margin-bottom: 1.5rem;
}
.page-hero h1 {
  font-size: 2.8rem;
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
  max-width: 760px;
  color: #fff;
}
.page-hero p {
  font-size: 15px;
  color: rgba(255,255,255,0.75);
  max-width: 560px; line-height: 1.7;
}

/* ── VIDEO HERO (accueil) ─────────────────────────────────── */
.video-hero {
  position: relative;
  min-height: 100vh;
  display: flex; align-items: flex-start; justify-content: center;
  overflow: hidden;
  padding-top: 160px;
  padding-bottom: 60px;
}
.video-hero video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; z-index: 0;
}
.fallback-bg {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, #1B2A33 0%, #223F4A 50%, #2F5563 100%);
  z-index: 0;
}
.video-hero .overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(135deg, rgba(27,42,51,0.85) 0%, rgba(47,85,99,0.65) 100%);
}
.video-hero .content {
  position: relative; z-index: 2;
  text-align: center; color: #fff;
  max-width: 700px; padding: 2rem;
}
.hero-badge {
  display: inline-block;
  font-size: 10px; letter-spacing: 0.15em; text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  border: 0.5px solid rgba(255,255,255,0.35);
  padding: 5px 14px; border-radius: 2px; margin-bottom: 1.5rem;
}
.video-hero h1 {
  font-size: 3.6rem; font-weight: 600;
  line-height: 1.12; margin-bottom: 1.2rem;
  letter-spacing: -0.02em;
  color: #fff;
}
.video-hero h1 em {
  font-style: italic;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
}
.hero-subtitle {
  font-size: 1.15rem;
  font-weight: 400;
  color: rgba(255,255,255,0.78);
  margin-bottom: 1.8rem;
  letter-spacing: 0.01em;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
}
.video-hero .content > p {
  font-size: 15px; color: rgba(255,255,255,0.78);
  max-width: 480px; margin: 0 auto 2rem; line-height: 1.7;
}
.pill-banner {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.15); backdrop-filter: blur(8px);
  border: 0.5px solid rgba(255,255,255,0.3);
  color: #fff; border-radius: 30px;
  padding: 7px 18px; font-size: 12px; font-weight: 500;
  margin-bottom: 2rem;
}
.pill-banner .dot {
  width: 7px; height: 7px;
  border-radius: 50%; background: #fff; flex-shrink: 0;
}
.hero-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* Hero stride illustration */
.hero-stride {
  width: 100%;
  max-width: 360px;
  height: auto;
  margin: 0.5rem auto 1.6rem;
  display: block;
  opacity: 0;
  animation: stride-fade 1.2s ease-out 0.4s forwards;
}
.hero-stride-img {
  /* L'image PNG est déjà en blanc sur fond transparent */
}
@keyframes stride-fade {
  from { opacity: 0; transform: translateX(-16px); }
  to   { opacity: 1; transform: translateX(0); }
}
@media (max-width: 480px) {
  .hero-stride { max-width: 240px; margin: 0.3rem auto 1.1rem; }
}

.scroll-indicator {
  position: absolute; bottom: 2rem; left: 50%;
  transform: translateX(-50%); z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  color: rgba(255,255,255,0.5); font-size: 10px;
  letter-spacing: 0.1em; text-transform: uppercase;
  animation: bounce 2s infinite;
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}
.scroll-indicator svg { opacity: 0.5; }

/* Video upload */
.video-upload-hint {
  position: absolute; bottom: 5rem; right: 2rem; z-index: 3;
  background: rgba(255,255,255,0.12); backdrop-filter: blur(8px);
  border: 1px dashed rgba(255,255,255,0.4); border-radius: 8px;
  padding: 10px 16px; color: rgba(255,255,255,0.8); font-size: 11px;
  cursor: pointer; transition: background 0.15s;
  display: flex; align-items: center; gap: 8px;
}
.video-upload-hint:hover { background: rgba(255,255,255,0.22); }
.video-upload-hint input { position: absolute; inset: 0; opacity: 0; cursor: pointer; }

/* ── SECTIONS ─────────────────────────────────────────────── */
section { padding: 4rem 2.5rem; border-bottom: 0.5px solid var(--border); }
section.bg-soft { background: var(--bg-soft); }

/* ── INFO STRIP ───────────────────────────────────────────── */
.info-strip {
  display: grid; grid-template-columns: repeat(4, 1fr);
  border-top: 0.5px solid var(--border);
  border-bottom: 0.5px solid var(--border);
}
.info-item { padding: 1.8rem 2rem; border-right: 0.5px solid var(--border); }
.info-item:last-child { border-right: none; }
.info-item .i-label { font-size: 10px; text-transform: uppercase; letter-spacing: 0.1em; color: #aaa; margin-bottom: 6px; }
.info-item .i-val { font-size: 1.3rem; font-weight: 500; }
.info-item .i-sub { font-size: 11px; color: var(--text-muted); margin-top: 2px; }

/* ── PHOTO PLACEHOLDERS ───────────────────────────────────── */
.photo-placeholder {
  border: 2px dashed #d1d5db; border-radius: 12px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 8px; cursor: pointer; background: #f9fafb;
  transition: border-color 0.15s, background 0.15s;
  position: relative; overflow: hidden;
}
.photo-placeholder:hover { border-color: var(--klein); background: var(--klein-light); }
.photo-placeholder .ph-icon { font-size: 22px; opacity: 0.35; }
.photo-placeholder .ph-label { font-size: 11px; color: #999; text-align: center; line-height: 1.4; }
.photo-placeholder .ph-label strong { display: block; font-size: 12px; color: #555; margin-bottom: 2px; }
.photo-placeholder input[type="file"] { position: absolute; inset: 0; opacity: 0; cursor: pointer; width: 100%; height: 100%; }
.photo-placeholder img.loaded { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.photo-placeholder .ph-overlay {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.45);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity 0.15s;
}
.photo-placeholder:hover .ph-overlay { opacity: 1; }
.photo-placeholder .ph-overlay span { color: #fff; font-size: 12px; font-weight: 500; }

/* ── ABOUT ────────────────────────────────────────────────── */
.about-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 3rem; align-items: center; }
.about-photo .photo-placeholder { height: 420px; }
.about-text p { font-size: 13px; color: var(--text-light); margin-bottom: 1rem; line-height: 1.8; }

/* ── SERVICE CARDS ────────────────────────────────────────── */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.service-card {
  border: 0.5px solid var(--border); border-top: 2px solid var(--klein);
  border-radius: 12px; padding: 1.4rem; transition: box-shadow 0.2s;
}
.service-card:hover { box-shadow: 0 4px 16px rgba(47,85,99,0.08); }
.service-card .icon { font-size: 22px; margin-bottom: 10px; }
.service-card h3 { font-size: 14px; font-weight: 500; margin-bottom: 5px; }
.service-card p { font-size: 12px; color: var(--text-light); }

/* ── PROCESS STEPS ────────────────────────────────────────── */
.process-steps { display: grid; grid-template-columns: repeat(4, 1fr); margin-top: 1.5rem; }
.proc-step { padding: 1.5rem; border-right: 0.5px solid var(--border); }
.proc-step:last-child { border-right: none; }
.proc-num {
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--klein); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 500; margin-bottom: 1rem;
}
.proc-step h3 { font-size: 13px; font-weight: 500; margin-bottom: 5px; }
.proc-step p { font-size: 12px; color: var(--text-light); }
.proc-badge {
  display: inline-block; margin-top: 8px;
  background: var(--klein-light); color: var(--klein-dark);
  font-size: 10px; font-weight: 500; padding: 2px 9px; border-radius: 2px;
}

/* ── GALLERY ──────────────────────────────────────────────── */
.gallery-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 12px; }
.gallery-grid .photo-placeholder { height: 300px; }
.gallery-side { display: grid; gap: 12px; }
.gallery-side .photo-placeholder { height: 142px; }

/* ── STATS BAR ────────────────────────────────────────────── */
.stats-bar { background: var(--klein); display: grid; grid-template-columns: repeat(3, 1fr); }
.stat-item { padding: 2rem; text-align: center; border-right: 0.5px solid rgba(255,255,255,0.15); }
.stat-item:last-child { border-right: none; }
.stat-num { font-size: 2.4rem; font-weight: 400; color: #fff; }
.stat-label { font-size: 11px; color: rgba(255,255,255,0.6); margin-top: 2px; }

/* ── CTA ──────────────────────────────────────────────────── */
.cta-section { background: var(--bg-soft); text-align: center; padding: 5rem 2rem; border-bottom: 0.5px solid var(--border); }
.cta-section h2 { font-size: 2.2rem; font-weight: 400; margin-bottom: 1rem; }
.cta-section p { font-size: 13px; color: #666; max-width: 400px; margin: 0 auto 1.5rem; }
.cta-section .phone { margin-top: 1rem; font-size: 12px; color: #aaa; }
.cta-section .phone strong { color: var(--text); }

/* ── FOOTER ───────────────────────────────────────────────── */
footer {
  padding: 1.5rem 2.5rem;
  display: flex; justify-content: space-between; align-items: center;
  border-top: 0.5px solid var(--border);
  font-size: 11px; color: #aaa;
  flex-wrap: wrap; gap: 1rem;
}
.footer-zones {
  width: 100%;
  margin-top: 1.2rem;
  padding-top: 1.2rem;
  border-top: 0.5px solid var(--border);
  font-size: 11px;
  color: #999;
  line-height: 1.8;
  text-align: center;
}
.footer-zones-label {
  display: block;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #aaa;
  margin-bottom: 0.4rem;
  font-weight: 500;
}

/* Pathologies liées (maillage interne sous-pages) */
.related-pathos {
  margin: 4rem 0 0;
  padding-top: 2.5rem;
  border-top: 0.5px solid var(--border);
}
.related-pathos-label {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1.2rem;
  font-weight: 500;
}
.related-pathos h3 {
  font-size: 1.6rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
  color: var(--text);
}
.related-pathos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.related-patho-card {
  border: 0.5px solid var(--border);
  border-radius: 4px;
  padding: 1.2rem 1.4rem;
  transition: border-color 0.2s, transform 0.2s;
  text-decoration: none;
  color: inherit;
  display: block;
}
.related-patho-card:hover {
  border-color: var(--klein);
  transform: translateY(-2px);
}
.related-patho-card .rp-icon {
  font-size: 22px;
  margin-bottom: 0.6rem;
}
.related-patho-card h4 {
  font-size: 1.05rem;
  font-weight: 500;
  margin-bottom: 0.3rem;
  color: var(--text);
}
.related-patho-card p {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.5;
  margin: 0;
}
@media (max-width: 700px) {
  .related-pathos-grid { grid-template-columns: 1fr; }
}

.footer-brand { display: flex; align-items: center; gap: 14px; }
.footer-brand img { height: 36px; width: auto; opacity: 0.5; }
.footer-brand .sep { width: 1px; height: 24px; background: var(--border); }
.footer-brand span { color: var(--klein); font-weight: 500; }
.footer-links { display: flex; gap: 1.5rem; }
.footer-links a { color: #aaa; transition: color 0.15s; }
.footer-links a:hover { color: var(--klein); }

/* ── ANIMATIONS ───────────────────────────────────────────── */
.fade-up { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ── PATHOLOGIES PAGE ─────────────────────────────────────── */
.patho-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 2rem; }
.patho-card {
  border: 0.5px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  transition: box-shadow 0.2s, transform 0.2s, border-color 0.2s;
  display: block;
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}
.patho-card:hover {
  box-shadow: 0 6px 24px rgba(0,0,0,0.08);
  border-color: var(--klein);
  transform: translateY(-2px);
}
.patho-card:hover h3 { color: var(--klein); }
.patho-card h3 { transition: color 0.2s; }
.patho-img {
  height: 160px; background: var(--klein-light);
  display: flex; align-items: center; justify-content: center; font-size: 3rem;
}
.patho-body { padding: 1.2rem; }
.patho-body h3 { font-size: 15px; margin-bottom: 6px; }
.patho-body p { font-size: 12px; color: var(--text-light); margin-bottom: 1rem; line-height: 1.7; }
.patho-tag {
  display: inline-block; background: var(--klein-light); color: var(--klein-dark);
  font-size: 10px; padding: 2px 8px; border-radius: 2px; font-weight: 500;
}

/* ── SEMELLES PAGE ────────────────────────────────────────── */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.semelles-features { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 2rem; }
.feature-item { display: flex; gap: 12px; align-items: flex-start; }
.feature-icon {
  width: 36px; height: 36px; border-radius: 8px;
  background: var(--klein-light);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; flex-shrink: 0;
}
.feature-item h4 { font-size: 13px; font-weight: 500; margin-bottom: 3px; }
.feature-item p { font-size: 11px; color: var(--text-light); }

.matiere-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin-top: 2rem; }
.matiere-card { border: 0.5px solid var(--border); border-radius: 12px; padding: 1.4rem; text-align: center; }
.matiere-card .m-icon { font-size: 2rem; margin-bottom: 0.5rem; }
.matiere-card h4 { font-size: 13px; font-weight: 500; margin-bottom: 4px; }
.matiere-card p { font-size: 11px; color: var(--text-light); }

/* ── DÉROULEMENT PAGE ─────────────────────────────────────── */
.timeline { position: relative; max-width: 800px; margin: 3rem auto 0; }
.timeline::before {
  content: ''; position: absolute; left: 40px; top: 0; bottom: 0;
  width: 1px; background: var(--border);
}
.timeline-item { display: flex; gap: 2rem; margin-bottom: 2.5rem; position: relative; }
.tl-num {
  width: 80px; height: 80px; border-radius: 50%;
  background: var(--klein); color: #fff; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem;
  position: relative; z-index: 1;
}
.tl-body { padding-top: 1.5rem; }
.tl-body h3 { font-size: 1.1rem; margin-bottom: 0.4rem; }
.tl-body p { font-size: 13px; color: var(--text-light); line-height: 1.7; margin-bottom: 0.5rem; }
.tl-badge { display: inline-block; background: var(--klein-light); color: var(--klein-dark); font-size: 10px; padding: 2px 9px; border-radius: 2px; font-weight: 500; }

.faq-list { max-width: 700px; margin-top: 2rem; }
.faq-item { border-bottom: 0.5px solid var(--border); padding: 1rem 0; cursor: pointer; }
.faq-question { display: flex; justify-content: space-between; align-items: center; font-size: 14px; font-weight: 500; }
.faq-toggle { color: var(--klein); font-size: 18px; line-height: 1; transition: transform 0.2s; }
.faq-item.open .faq-toggle { transform: rotate(45deg); }
.faq-answer { font-size: 13px; color: var(--text-light); line-height: 1.7; max-height: 0; overflow: hidden; transition: max-height 0.3s ease, padding 0.3s; }
.faq-item.open .faq-answer { max-height: 200px; padding-top: 0.8rem; }

/* ── BLOG PAGE ────────────────────────────────────────────── */
.ai-generator {
  background: linear-gradient(135deg, var(--klein-dark) 0%, var(--klein) 100%);
  border-radius: 16px; padding: 2rem; color: #fff; margin-bottom: 3rem;
}
.ai-generator h3 { font-size: 1.2rem; font-weight: 400; margin-bottom: 0.5rem; }
.ai-generator > p { font-size: 13px; color: rgba(255,255,255,0.75); margin-bottom: 1.5rem; }

.ai-form { display: flex; gap: 10px; flex-wrap: wrap; }
.ai-input {
  flex: 1; min-width: 240px;
  padding: 10px 14px; border-radius: 6px; border: none;
  font-size: 13px;
  background: rgba(255,255,255,0.15); color: #fff;
  backdrop-filter: blur(8px);
}
.ai-input::placeholder { color: rgba(255,255,255,0.5); }
.ai-input:focus { outline: none; background: rgba(255,255,255,0.22); }

.btn-generate {
  background: #fff; color: var(--klein-dark);
  font-size: 13px; font-weight: 500;
  padding: 10px 22px; border-radius: 6px;
  border: none; cursor: pointer; white-space: nowrap;
  transition: opacity 0.15s;
}
.btn-generate:disabled { opacity: 0.6; cursor: not-allowed; }

.ai-loading { display: none; align-items: center; gap: 10px; margin-top: 1rem; font-size: 13px; color: rgba(255,255,255,0.7); }
.ai-loading.visible { display: flex; }
.spinner { width: 18px; height: 18px; border: 2px solid rgba(255,255,255,0.3); border-top-color: #fff; border-radius: 50%; animation: spin 0.7s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

.ai-result { margin-top: 1.5rem; background: rgba(255,255,255,0.1); border-radius: 8px; padding: 1.5rem; display: none; }
.ai-result.visible { display: block; }
.ai-result h4 { font-size: 1.6rem; font-weight: 400; margin-bottom: 0.8rem; }
.ai-result .result-intro { font-size: 13px; color: rgba(255,255,255,0.85); line-height: 1.7; margin-bottom: 1rem; }
.ai-section { margin-bottom: 1rem; }
.ai-section h5 { font-size: 13px; font-weight: 500; margin-bottom: 4px; color: rgba(255,255,255,0.95); }
.ai-section p { font-size: 12px; color: rgba(255,255,255,0.8); line-height: 1.7; }
.ai-conclusion { font-size: 12px; color: rgba(255,255,255,0.8); line-height: 1.7; font-style: italic; margin-top: 0.5rem; }

.ai-error { margin-top: 1rem; background: rgba(255,80,80,0.2); border-radius: 6px; padding: 0.8rem 1rem; font-size: 12px; color: rgba(255,255,255,0.9); display: none; }
.ai-error.visible { display: block; }

.blog-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 2rem; flex-wrap: wrap; gap: 1rem; }
.articles-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.article-card { border: 0.5px solid var(--border); border-radius: 12px; overflow: hidden; transition: box-shadow 0.2s; }
.article-card:hover { box-shadow: 0 4px 20px rgba(0,0,0,0.08); }
.article-img { height: 160px; background: var(--klein-light); display: flex; align-items: center; justify-content: center; font-size: 2.5rem; }
.article-body { padding: 1.2rem; }
.article-tag { display: inline-block; background: var(--klein-light); color: var(--klein-dark); font-size: 10px; padding: 2px 8px; border-radius: 2px; font-weight: 500; margin-bottom: 0.6rem; }
.article-body h3 { font-size: 15px; margin-bottom: 6px; line-height: 1.3; }
.article-body p { font-size: 12px; color: var(--text-light); line-height: 1.7; }
.article-date { font-size: 10px; color: #bbb; margin-top: 0.8rem; }

/* ── RDV PAGE ─────────────────────────────────────────────── */
.rdv-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start; }
.rdv-info p { font-size: 13px; color: var(--text-light); line-height: 1.8; margin-bottom: 1.5rem; }
.contact-list { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.contact-list li { display: flex; align-items: center; gap: 12px; font-size: 13px; }
.c-icon { width: 38px; height: 38px; border-radius: 8px; background: var(--klein-light); display: flex; align-items: center; justify-content: center; font-size: 16px; flex-shrink: 0; }
.contact-list strong { display: block; font-weight: 500; }
.contact-list span { font-size: 11px; color: var(--text-muted); }

.hours-grid { display: grid; grid-template-columns: auto 1fr; gap: 6px 1.5rem; margin-top: 1.5rem; font-size: 13px; }
.hours-grid .day { font-weight: 500; }
.hours-grid .hours { color: var(--text-light); }
.hours-grid .closed { color: #bbb; }

.doctolib-block {
  border: 0.5px solid var(--border); border-radius: 12px; overflow: hidden;
  background: var(--bg-soft);
}
.doctolib-header { padding: 1.5rem; border-bottom: 0.5px solid var(--border); }
.doctolib-header h3 { font-size: 1rem; margin-bottom: 0.3rem; }
.doctolib-header p { font-size: 12px; color: var(--text-muted); }
.doctolib-iframe-wrap { padding: 1.5rem; text-align: center; }
.doctolib-cta {
  display: inline-flex; align-items: center; gap: 10px;
  background: #0596DE; color: #fff;
  padding: 14px 28px; border-radius: 6px;
  font-size: 14px; font-weight: 500;
  text-decoration: none; transition: opacity 0.15s;
  margin-bottom: 1rem;
}
.doctolib-cta:hover { opacity: 0.9; }
.doctolib-note { font-size: 11px; color: var(--text-muted); }

/* ── CONTACT PAGE ─────────────────────────────────────────── */
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 3rem; }
.contact-form { display: flex; flex-direction: column; gap: 14px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-group { display: flex; flex-direction: column; gap: 5px; }
.form-group label { font-size: 11px; font-weight: 500; color: var(--text-light); text-transform: uppercase; letter-spacing: 0.05em; }
.form-group input,
.form-group textarea,
.form-group select {
  padding: 10px 12px; border: 1px solid var(--border); border-radius: 6px;
  font-size: 13px; color: var(--text);
  background: #fff; transition: border-color 0.15s;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { outline: none; border-color: var(--klein); }
.form-group textarea { resize: vertical; min-height: 110px; }

.form-success {
  background: var(--klein-light); color: var(--klein-dark);
  border-radius: 8px; padding: 1rem 1.2rem;
  font-size: 13px; display: none;
}

.map-container { border-radius: 12px; overflow: hidden; border: 0.5px solid var(--border); }
.map-container iframe { width: 100%; height: 380px; display: block; border: none; }
.map-info { padding: 1.2rem; background: var(--bg-soft); border-top: 0.5px solid var(--border); }
.map-info h4 { font-size: 13px; font-weight: 500; margin-bottom: 4px; }
.map-info p { font-size: 12px; color: var(--text-muted); }

/* ── RESPONSIVE ───────────────────────────────────────────── */
@media (max-width: 900px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .patho-grid { grid-template-columns: repeat(2, 1fr); }
  .articles-grid { grid-template-columns: repeat(2, 1fr); }
  .matiere-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  nav { padding: 0.9rem 1.2rem; }
  .nav-links, .btn-nav { display: none; }
  .hamburger { display: flex; }

  .video-hero h1 { font-size: 2.4rem; }
  .info-strip { grid-template-columns: repeat(2, 1fr); }
  .info-item { border-right: none; border-bottom: 0.5px solid var(--border); }
  .info-item:nth-child(odd) { border-right: 0.5px solid var(--border); }

  .about-grid,
  .two-col,
  .rdv-grid,
  .contact-grid { grid-template-columns: 1fr; }

  .semelles-features { grid-template-columns: 1fr; }

  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .proc-step:nth-child(even) { border-right: none; }
  .proc-step:nth-child(odd):not(:last-child) { border-bottom: 0.5px solid var(--border); }

  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-side { grid-template-columns: repeat(2, 1fr); }

  .stats-bar { grid-template-columns: 1fr; }
  .stat-item { border-right: none; border-bottom: 0.5px solid rgba(255,255,255,0.15); }

  .articles-grid { grid-template-columns: 1fr; }
  .patho-grid { grid-template-columns: 1fr; }

  section { padding: 3rem 1.2rem; }
  .page-hero { padding: 7rem 1.2rem 3rem; }
  .page-hero h1 { font-size: 2rem; }

  footer { flex-direction: column; text-align: center; }
  .footer-links { flex-wrap: wrap; justify-content: center; }

  .video-upload-hint { display: none; }
}

@media (max-width: 480px) {
  .services-grid, .process-steps { grid-template-columns: 1fr; }
  .proc-step { border-right: none; border-bottom: 0.5px solid var(--border); }
  .matiere-grid { grid-template-columns: repeat(2, 1fr); }
  .form-row { grid-template-columns: 1fr; }
  .video-hero h1 { font-size: 2rem; }
}

/* ── MEDTECH MODULES (clean minimal style) ─────────────────── */
.mt-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 7rem 2rem;
}
.mt-section.tight { padding: 4rem 2rem; }
.mt-section.soft { background: var(--bg-soft); max-width: 100%; }
.mt-section.soft > .mt-inner { max-width: 1200px; margin: 0 auto; }

.mt-eyebrow {
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--klein);
  font-weight: 500;
  margin-bottom: 1.2rem;
}
.mt-h2 {
  font-size: 2.6rem;
  font-weight: 400;
  line-height: 1.15;
  color: var(--text);
  margin-bottom: 1.2rem;
  max-width: 720px;
}
.mt-h2 em { font-style: italic; color: var(--klein); }
.mt-lead {
  font-size: 16px;
  color: var(--text-light);
  line-height: 1.65;
  max-width: 620px;
  margin-bottom: 2rem;
}

/* Trust strip — partners / credentials */
.trust-strip {
  border-top: 0.5px solid var(--border);
  border-bottom: 0.5px solid var(--border);
  padding: 2.4rem 2rem;
  background: #fff;
}
.trust-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.trust-label {
  font-size: 11px;
  color: var(--text-muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.trust-items {
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem;
  align-items: center;
}
.trust-item {
  font-size: 1.05rem;
  color: var(--text-light);
  font-weight: 500;
  letter-spacing: 0.02em;
}

/* 3 product modules side by side */
.mt-products {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.mt-product {
  background: #fff;
  border: 0.5px solid var(--border);
  border-radius: 4px;
  padding: 2rem 1.8rem;
  display: flex;
  flex-direction: column;
  transition: border-color 0.2s, transform 0.2s;
}
.mt-product:hover {
  border-color: var(--klein);
  transform: translateY(-2px);
}
.mt-product-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--klein-light);
  color: var(--klein);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 1.5rem;
}
.mt-product h3 {
  font-size: 1.4rem;
  font-weight: 500;
  margin-bottom: 0.6rem;
  color: var(--text);
}
.mt-product p {
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}
.mt-product-link {
  font-size: 12px;
  color: var(--klein);
  font-weight: 500;
  border-bottom: 1px solid transparent;
  align-self: flex-start;
  transition: border-color 0.15s;
}
.mt-product-link:hover { border-bottom-color: var(--klein); }

/* Problem / Solution split */
.mt-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
  margin-top: 3rem;
}
.mt-split-col h4 {
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1.2rem;
  font-weight: 500;
}
.mt-split-col h3 {
  font-size: 1.7rem;
  font-weight: 400;
  line-height: 1.3;
  margin-bottom: 1.2rem;
  color: var(--text);
}
.mt-split-col p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.75;
  margin-bottom: 0.8rem;
}
.mt-list {
  list-style: none;
  margin-top: 1rem;
}
.mt-list li {
  font-size: 13px;
  color: var(--text-light);
  padding: 0.7rem 0;
  padding-left: 1.6rem;
  position: relative;
  border-bottom: 0.5px solid var(--border);
}
.mt-list li:last-child { border-bottom: none; }
.mt-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 1.1rem;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--klein);
}

/* Patient story card with stats — version clinique claire */
.mt-story {
  background: var(--klein-light);
  color: var(--text);
  border-radius: var(--radius-lg);
  border: 0.5px solid var(--border);
  border-left: 3px solid var(--klein);
  padding: 3.5rem 3.5rem;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 4rem;
  align-items: center;
  box-shadow: var(--shadow-md);
}
.mt-story-eyebrow {
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--klein);
  margin-bottom: 1.5rem;
  font-weight: 600;
}
.mt-story blockquote {
  font-size: 1.5rem;
  font-style: italic;
  font-weight: 400;
  line-height: 1.45;
  margin-bottom: 1.8rem;
  color: var(--text);
  position: relative;
}
.mt-story-cite {
  font-size: 13px;
  color: var(--text-light);
}
.mt-story-cite strong { color: var(--text); font-weight: 600; }
.mt-stats {
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
}
.mt-stat {
  border-left: 2px solid var(--klein);
  padding-left: 1.2rem;
}
.mt-stat-num {
  font-size: 2.4rem;
  font-weight: 600;
  color: var(--klein);
  line-height: 1.05;
  margin-bottom: 0.4rem;
  letter-spacing: -0.02em;
}
.mt-stat-lbl {
  font-size: 11px;
  color: var(--text-light);
  letter-spacing: 0.04em;
  line-height: 1.55;
}

/* Compliance / credentials grid */
.mt-compliance {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 3rem;
  border-top: 0.5px solid var(--border);
  border-left: 0.5px solid var(--border);
}
.mt-comp-cell {
  border-right: 0.5px solid var(--border);
  border-bottom: 0.5px solid var(--border);
  padding: 2rem 1.5rem;
  text-align: center;
}
.mt-comp-cell .icon {
  font-size: 24px;
  color: var(--klein);
  margin-bottom: 0.8rem;
}
.mt-comp-cell h4 {
  font-size: 1.1rem;
  font-weight: 500;
  margin-bottom: 0.4rem;
  color: var(--text);
}
.mt-comp-cell p {
  font-size: 11px;
  color: var(--text-muted);
  line-height: 1.5;
}

/* Final CTA medtech style */
.mt-final-cta {
  background: var(--bg-soft);
  padding: 5rem 2rem;
  text-align: center;
}
.mt-final-cta-inner { max-width: 720px; margin: 0 auto; }
.mt-final-cta h2 {
  font-size: 2.4rem;
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 1rem;
}
.mt-final-cta p {
  font-size: 15px;
  color: var(--text-light);
  margin-bottom: 2rem;
}
.mt-cta-buttons {
  display: inline-flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

@media (max-width: 900px) {
  .mt-section { padding: 4.5rem 1.5rem; }
  .mt-products { grid-template-columns: 1fr; }
  .mt-split { grid-template-columns: 1fr; gap: 2.5rem; }
  .mt-story { grid-template-columns: 1fr; padding: 2.5rem 2rem; gap: 2rem; }
  .mt-compliance { grid-template-columns: repeat(2, 1fr); }
  .mt-h2 { font-size: 2rem; }
  .mt-story blockquote { font-size: 1.4rem; }
}
@media (max-width: 480px) {
  .mt-compliance { grid-template-columns: 1fr; }
  .trust-inner { flex-direction: column; align-items: flex-start; }
}

/* ── BLOCS PATHOLOGIE (sous-pages) ────────────────────────── */
.patho-block {
  padding: 4rem 0;
  border-top: 0.5px solid var(--border);
  scroll-margin-top: 90px;
}
.patho-block:first-child { border-top: none; padding-top: 1rem; }

.patho-block-header {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}
.patho-block-header h2 {
  font-size: 2.2rem;
  font-weight: 500;
  color: var(--text);
  margin: 0;
}
.patho-block-tag {
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--klein);
  font-weight: 500;
  background: var(--klein-light);
  padding: 4px 10px;
  border-radius: 2px;
}
.patho-block-intro {
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.75;
  margin-bottom: 2rem;
  max-width: 700px;
}

.patho-block-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-bottom: 1.5rem;
}
.patho-block-grid h3 {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 500;
  margin-bottom: 0.8rem;
}
.patho-block-symptoms ul {
  list-style: none;
  padding: 0;
}
.patho-block-symptoms li {
  font-size: 13px;
  color: var(--text-light);
  padding: 0.55rem 0;
  padding-left: 1.4rem;
  position: relative;
  border-bottom: 0.5px solid var(--border);
  line-height: 1.5;
}
.patho-block-symptoms li:last-child { border-bottom: none; }
.patho-block-symptoms li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 1rem;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--klein);
}
.patho-block-causes p {
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.75;
  margin-bottom: 0.8rem;
}

.patho-block-approach {
  background: var(--bg-soft);
  border-left: 3px solid var(--klein);
  padding: 1.5rem 1.8rem;
  border-radius: 0 4px 4px 0;
  margin-top: 1.5rem;
}
.patho-block-approach h3 {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--klein-dark);
  font-weight: 600;
  margin-bottom: 0.8rem;
}
.patho-block-approach p {
  font-size: 14px;
  color: var(--text);
  line-height: 1.75;
  margin-bottom: 0;
}

.patho-zones-nav {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}
.patho-zone-link {
  font-size: 12px;
  font-weight: 500;
  color: var(--text-light);
  border: 0.5px solid var(--border);
  padding: 7px 14px;
  border-radius: 20px;
  transition: all 0.15s;
}
.patho-zone-link:hover { border-color: var(--klein); color: var(--klein); }
.patho-zone-link.active {
  background: var(--klein);
  color: #fff;
  border-color: var(--klein);
}

.patho-toc {
  background: var(--bg-soft);
  border-radius: 4px;
  padding: 1.2rem 1.5rem;
  margin-bottom: 3rem;
}
.patho-toc-label {
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.6rem;
  font-weight: 500;
}
.patho-toc-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 1.2rem;
}
.patho-toc-list a {
  font-size: 13px;
  color: var(--klein);
  font-weight: 500;
  border-bottom: 1px solid transparent;
  transition: border-color 0.15s;
}
.patho-toc-list a:hover { border-bottom-color: var(--klein); }

@media (max-width: 700px) {
  .patho-block-grid { grid-template-columns: 1fr; gap: 2rem; }
  .patho-block-header h2 { font-size: 1.8rem; }
}

/* ── PRATICIENS (équipe) ──────────────────────────────────── */
.mt-practitioners {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}
.mt-pract-card {
  background: #fff;
  border: 0.5px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color 0.2s, transform 0.2s;
}
.mt-pract-card:hover {
  border-color: var(--klein);
  transform: translateY(-2px);
}
.mt-pract-photo {
  width: 100%;
  aspect-ratio: 1 / 1;
  background: var(--bg-soft);
  position: relative;
  overflow: hidden;
  border-bottom: 0.5px solid var(--border);
}
.mt-pract-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.mt-pract-photo .photo-empty {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: var(--text-muted);
  font-size: 12px;
}
.mt-pract-photo .photo-empty .ph-icon {
  font-size: 36px;
  opacity: 0.4;
}
.mt-pract-body {
  padding: 1.6rem 1.8rem;
}
.mt-pract-name {
  font-size: 1.5rem;
  font-weight: 500;
  margin-bottom: 0.3rem;
  color: var(--text);
}
.mt-pract-role {
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--klein);
  font-weight: 500;
  margin-bottom: 1rem;
}
.mt-pract-detail {
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.7;
}
.mt-pract-detail strong {
  color: var(--text);
  font-weight: 500;
}
@media (max-width: 700px) {
  .mt-practitioners { grid-template-columns: 1fr; gap: 1.5rem; }
}

/* ── MODE ÉDITION (outil interne) ─────────────────────────── */
#edit-toggle {
  position: fixed;
  bottom: 22px;
  right: 22px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #fff;
  border: 0.5px solid var(--border);
  cursor: pointer;
  font-size: 18px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.12);
  z-index: 9998;
  opacity: 0.45;
  transition: opacity 0.2s, transform 0.2s;
  padding: 0;
}
#edit-toggle:hover {
  opacity: 1;
  transform: scale(1.05);
}

#edit-toolbar {
  position: fixed;
  bottom: 22px;
  right: 22px;
  background: #111;
  color: #fff;
  padding: 10px 12px;
  border-radius: 10px;
  display: flex;
  gap: 8px;
  align-items: center;
  z-index: 9999;
  box-shadow: 0 6px 28px rgba(0,0,0,0.35);
  font-size: 12px;
  max-width: calc(100vw - 44px);
  flex-wrap: wrap;
}
#edit-toolbar .edit-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-right: 6px;
  padding-right: 10px;
  border-right: 0.5px solid rgba(255,255,255,0.15);
}
.edit-badge {
  font-size: 9px;
  letter-spacing: 0.12em;
  color: #fff;
  font-weight: 600;
  text-transform: uppercase;
}
.edit-hint {
  font-size: 11px;
  color: rgba(255,255,255,0.55);
}
#edit-toolbar button {
  background: var(--klein);
  color: #fff;
  border: none;
  padding: 8px 12px;
  border-radius: 5px;
  cursor: pointer;
  font-size: 11px;
  font-weight: 500;
  font-family: inherit;
  white-space: nowrap;
}
#edit-toolbar button:hover {
  background: var(--klein-dark);
}
#edit-toolbar #edit-exit {
  background: transparent;
  color: rgba(255,255,255,0.6);
  padding: 8px 10px;
  font-size: 14px;
}
#edit-toolbar #edit-exit:hover {
  background: rgba(255,255,255,0.08);
  color: #fff;
}

body.edit-mode #edit-toggle { display: none; }

body.edit-mode [contenteditable="true"] {
  outline: 1px dashed rgba(47,85,99,0.45);
  outline-offset: 4px;
  border-radius: 2px;
  cursor: text;
  transition: outline-color 0.15s, background 0.15s;
  min-width: 20px;
  min-height: 1em;
}
body.edit-mode [contenteditable="true"]:hover {
  outline-color: var(--klein);
  background: rgba(47,85,99,0.04);
}
body.edit-mode [contenteditable="true"]:focus {
  outline: 2px solid var(--klein);
  outline-offset: 4px;
  background: rgba(47,85,99,0.06);
}
/* Sur fond sombre, l'outline doit être visible */
body.edit-mode .video-hero [contenteditable="true"],
body.edit-mode .mt-story [contenteditable="true"] {
  outline-color: rgba(255,255,255,0.5);
}
body.edit-mode .video-hero [contenteditable="true"]:hover,
body.edit-mode .mt-story [contenteditable="true"]:hover {
  outline-color: #fff;
  background: rgba(255,255,255,0.06);
}
body.edit-mode .video-hero [contenteditable="true"]:focus,
body.edit-mode .mt-story [contenteditable="true"]:focus {
  outline: 2px solid #fff;
  background: rgba(255,255,255,0.1);
}

.edit-toast {
  position: fixed;
  bottom: 90px;
  right: 22px;
  background: #111;
  color: #fff;
  padding: 10px 16px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 500;
  z-index: 10000;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.25s, transform 0.25s;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}
.edit-toast.show {
  opacity: 1;
  transform: translateY(0);
}

/* ── ICÔNES SVG ─────────────────────────────────────────────── */
.ico {
  width: 1em;
  height: 1em;
  display: inline-block;
  vertical-align: -0.125em;
  fill: none;
  color: inherit;            /* hérite de la couleur du parent */
  flex-shrink: 0;
}

/* Icône dans les cartes modules (Sport, Travail, Pathologies) */
.mt-product-icon {
  color: var(--klein);
  font-size: 1.75rem;        /* pilote la taille de l'icône */
}

/* Icône dans les cellules « garanties » (D.E., Secteur 1, etc.) */
.mt-comp-cell .icon {
  color: var(--klein);
  font-size: 1.5rem;
}

/* ── Icônes dans les contextes ajoutés (cartes pathologies,
       contact, articles blog, features semelles) ──────────── */
.patho-img       { color: var(--klein); font-size: 2.4rem; }
.patho-img .ico  { width: 1em; height: 1em; }

.related-patho-card .rp-icon { color: var(--klein); font-size: 1.6rem; }
.rp-icon .ico    { width: 1em; height: 1em; }

.c-icon          { color: var(--klein); font-size: 18px; }
.c-icon .ico     { width: 1em; height: 1em; }

.article-img     { color: var(--klein); font-size: 2.4rem; }
.article-img .ico { width: 1em; height: 1em; }

.feature-icon    { color: var(--klein); font-size: 18px; }
.feature-icon .ico { width: 1em; height: 1em; }
