/* ═══════════════════════════════════════════════════════
   ENDOSLEEVE LUXEMBOURG · DR JULIEN SITTE
   Centre Expert de Médecine Métabolique Mini-Invasive
   Conçu par CX Agency · 2026 · V4
═══════════════════════════════════════════════════════ */

:root {
  /* Palette premium clinique — Boston Scientific inspired (V5) */
  --bg: #FFFFFF;            /* Blanc clinique pur */
  --bg-cool: #F6F7F9;       /* Blanc cassé bleuté — sections alternées */
  --bg-warm: #F6F7F9;       /* Mappé sur cool (la chaleur crème disparaît) */
  --ink: #2B2F36;           /* Gris charbon texte (palette client) */
  --ink-deep: #1E2A3A;      /* Navy profond (palette client) */
  --ink-soft: #4A5568;
  --muted: #6B7785;
  --muted-soft: #94A0AE;
  --line: #E3E6EA;          /* Bordures claires (palette client) */
  --line-soft: #EDEFF2;
  --line-warm: #E3E6EA;     /* Mappé sur line (plus de chaleur) */

  /* Trust blues — clinical premium */
  --navy: #1E2A3A;
  --navy-deep: #14202E;
  --navy-mid: #2A3D54;

  /* Accent — TEAL (remplace l'or pour cohérence Boston) */
  --gold: #2D7373;          /* anciennement #B68E4C — devient teal-deep */
  --gold-soft: #3A8C8C;     /* anciennement #C4A574 — devient teal */
  --warm: #5BA9A9;          /* anciennement #D4B886 — devient teal-soft */

  /* Medical teal — palette client */
  --teal: #3A8C8C;
  --teal-deep: #2D7373;
  --teal-soft: #5BA9A9;
  --teal-bg: #E8F2F2;

  --white: #FFFFFF;
  --shadow-sm: 0 4px 14px rgba(30, 42, 58, 0.04);
  --shadow-md: 0 18px 40px rgba(30, 42, 58, 0.06);
  --shadow-lg: 0 32px 70px rgba(30, 42, 58, 0.08);

  --radius: 8px;
  --radius-lg: 14px;
  --radius-xl: 20px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Manrope', system-ui, -apple-system, sans-serif;
  font-weight: 400;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/* Prevent ugly word breaks on titles */
h1, h2, h3, h4, h5,
.section-head h2, .section-head-center h2,
.hero h1, .page-header h1,
.programme-intro h2, .expertise-content h3,
.doctor-content h3, .expertise-secondary-content h3,
.cta-band h2, .pillar h3, .team-card h4,
.testi-text, .step h4, .case-item h5,
.faq-question, .programme-features-head h3 {
  word-break: keep-all;
  overflow-wrap: break-word;
  hyphens: manual;
  -webkit-hyphens: manual;
}

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

::selection { background: var(--navy); color: var(--bg); }

/* ═══ SCROLL REVEAL ANIMATIONS ═══ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 1s var(--ease), transform 1s var(--ease);
  will-change: opacity, transform;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }
.reveal-delay-3 { transition-delay: 0.24s; }
.reveal-delay-4 { transition-delay: 0.32s; }
.reveal-delay-5 { transition-delay: 0.40s; }

.reveal-fade {
  opacity: 0;
  transition: opacity 1.2s var(--ease);
}
.reveal-fade.visible { opacity: 1; }

.reveal-scale {
  opacity: 0;
  transform: scale(0.96);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}
.reveal-scale.visible {
  opacity: 1;
  transform: scale(1);
}

/* Floating animation for hero cards */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
@keyframes floatAlt {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

/* Subtle shimmer for gold accents */
@keyframes shimmer {
  0%, 100% { opacity: 0.85; }
  50% { opacity: 1; }
}

/* ═══ TYPOGRAPHY ═══ */
.display { font-family: 'Cormorant Garamond', Georgia, serif; font-weight: 400; letter-spacing: -0.01em; }
.eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.eyebrow::before {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--gold);
  display: inline-block;
}
.eyebrow-teal { color: var(--teal); }
.eyebrow-teal::before { background: var(--teal); }

/* ═══ LAYOUT ═══ */
.container { max-width: 1280px; margin: 0 auto; padding: 0 40px; }
.container-narrow { max-width: 900px; margin: 0 auto; padding: 0 40px; }
section { padding: 90px 0; position: relative; }
.section-pad { padding: 70px 0; }
.section-pad-tight { padding: 51px 0; }

/* ═══ NAV ═══ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 20px 0;
  background: rgba(91, 169, 169, 0.92);
  backdrop-filter: saturate(180%) blur(24px);
  -webkit-backdrop-filter: saturate(180%) blur(24px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: padding .35s var(--ease), background .35s var(--ease), box-shadow .35s var(--ease);
}
.nav.scrolled {
  padding: 12px 0;
  background: rgba(91, 169, 169, 0.98);
  box-shadow: 0 1px 30px rgba(30, 42, 58, 0.12);
}
.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}
.brand-mark {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal-deep);
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.02em;
  position: relative;
  flex-shrink: 0;
}
.brand-mark::after {
  content: '';
  position: absolute;
  inset: 3px;
  border-radius: 50%;
  border: 1px solid rgba(45, 115, 115, 0.15);
}
.brand-text { line-height: 1.1; }
.brand-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 500;
  color: var(--white);
  letter-spacing: -0.01em;
}
.brand-sub {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 3px;
  font-weight: 600;
}
.nav-links { display: flex; gap: 36px; list-style: none; align-items: center; }
.nav-links a,
.nav-links .nav-parent {
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.82);
  position: relative;
  transition: color .25s;
  padding: 4px 0;
}
.nav-links .nav-parent {
  cursor: default;
  display: inline-flex;
  align-items: center;
  -webkit-user-select: none;
  user-select: none;
}
.nav-links a::after,
.nav-links .nav-parent::after {
  content: '';
  position: absolute;
  left: 0; bottom: -2px;
  height: 1px;
  width: 0;
  background: var(--white);
  transition: width .35s var(--ease);
}
.nav-links a:hover, .nav-links a.active,
.nav-has-dropdown:hover .nav-parent, .nav-links .nav-parent.active { color: var(--white); }
.nav-links a:hover::after, .nav-links a.active::after,
.nav-has-dropdown:hover .nav-parent::after, .nav-links .nav-parent.active::after { width: 100%; }

/* ═══ Nav dropdown (sous-menu La technique) ═══ */
.nav-has-dropdown { position: relative; }
.nav-caret {
  display: inline-block;
  font-size: 9px;
  margin-left: 4px;
  opacity: 0.7;
  transition: transform .3s var(--ease);
}
.nav-has-dropdown:hover .nav-caret { transform: rotate(180deg); }
.nav-dropdown {
  position: absolute;
  top: calc(100% + 18px);
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  min-width: 320px;
  background: var(--white);
  border-radius: 14px;
  padding: 10px;
  box-shadow: 0 24px 60px rgba(14, 27, 42, 0.18), 0 4px 12px rgba(14, 27, 42, 0.08);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .25s var(--ease), transform .25s var(--ease), visibility .25s;
  z-index: 200;
}
.nav-dropdown::before {
  content: '';
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 16px;
  height: 16px;
  background: var(--white);
  border-radius: 3px 0 0 0;
}
.nav-dropdown::after {
  content: '';
  position: absolute;
  top: -18px;
  left: 0; right: 0;
  height: 18px;
}
.nav-has-dropdown:hover .nav-dropdown,
.nav-has-dropdown:focus-within .nav-dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.nav-dropdown a {
  display: flex !important;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  color: var(--ink-deep) !important;
  border-radius: 10px;
  text-decoration: none;
  transition: background .2s var(--ease);
  position: relative;
}
.nav-dropdown a::after { display: none !important; }
.nav-dropdown a:hover {
  background: var(--bg-cool);
  color: var(--ink-deep) !important;
}
.nav-dropdown-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  font-weight: 500;
  color: var(--teal-deep);
  line-height: 1;
  width: 32px;
  flex-shrink: 0;
  text-align: center;
}
.nav-dropdown-title {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink-deep);
  line-height: 1.3;
}
.nav-dropdown-sub {
  display: block;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
  margin-top: 3px;
}
.nav-cta {
  background: var(--white);
  color: var(--teal-deep);
  padding: 12px 22px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 700;
  transition: all .3s var(--ease);
  border: 1px solid var(--white);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  flex-shrink: 0;
}
.nav-cta:hover {
  background: var(--navy-deep);
  color: var(--white);
  border-color: var(--navy-deep);
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(30, 42, 58, 0.25);
}
.burger { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.burger span { display: block; width: 24px; height: 1.5px; background: var(--white); margin: 5px 0; transition: .3s; }

/* ═══ HERO ═══ */
.hero {
  min-height: auto;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 124px 0 84px;
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-cool) 100%);
}
.hero-bg-art {
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: 56%;
  pointer-events: none;
  z-index: 0;
  background-image: url('hero-lifestyle.jpg');
  background-size: cover;
  background-position: center;
  /* Dissolve the left edge into the page so there is no hard seam */
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, transparent 5%, rgba(0,0,0,0.35) 26%, #000 48%);
          mask-image: linear-gradient(90deg, transparent 0%, transparent 5%, rgba(0,0,0,0.35) 26%, #000 48%);
}
.hero-bg-art::before {
  content: '';
  position: absolute;
  inset: 0;
  /* Subtle palette tint only — the left fade is handled by the mask above */
  background: linear-gradient(180deg, rgba(91, 169, 169, 0.08) 0%, transparent 40%, rgba(30, 42, 58, 0.05) 100%);
}
.hero-bg-art::after {
  content: '';
  position: absolute;
  top: -20%; right: -15%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(91, 169, 169, 0.18), transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.hero-bg-shape { display: none; }
@keyframes heroFloat {
  0%, 100% { transform: rotate(-8deg) translateY(0); }
  50% { transform: rotate(-6deg) translateY(-12px); }
}

.hero-floating-card {
  position: absolute;
  z-index: 3;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.7);
  border-radius: 14px;
  padding: 18px 22px;
  box-shadow: 0 24px 60px rgba(30, 42, 58, 0.1);
  display: flex;
  align-items: center;
  gap: 14px;
  animation: float 6s ease-in-out infinite;
}
.hero-card-1 {
  top: 20%;
  right: 20%;
  animation-delay: 0s;
}
.hero-card-2 {
  bottom: 28%;
  right: 16%;
  animation: floatAlt 7s ease-in-out infinite;
  animation-delay: 1s;
}
.hero-card-3 {
  top: 47%;
  right: 30%;
  animation-delay: 2s;
}

.hero-card-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.hero-card-icon svg { stroke: var(--bg); }
.hero-card-text { font-size: 12px; line-height: 1.4; color: var(--ink); }
.hero-card-text strong { display: block; font-weight: 700; font-size: 13px; color: var(--navy-deep); margin-bottom: 2px; }

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 58px;
  align-items: center;
  width: 100%;
}
.hero-content { max-width: 620px; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 18px;
  background: rgba(255,255,255,0.75);
  border: 1px solid rgba(14, 42, 74, 0.14);
  border-radius: 100px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 36px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.hero-badge-dot {
  width: 7px; height: 7px;
  background: var(--gold);
  border-radius: 50%;
  position: relative;
}
.hero-badge-dot::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0.3;
  animation: ringPulse 2.2s ease-in-out infinite;
}
@keyframes ringPulse {
  0%, 100% { transform: scale(1); opacity: 0.3; }
  50% { transform: scale(1.7); opacity: 0; }
}

.hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(48px, 6.4vw, 84px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin-bottom: 32px;
}
.hero h1 em {
  font-style: italic;
  font-weight: 300;
  color: var(--navy);
  position: relative;
}
.hero h1 em::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0.12em;
  width: 100%;
  height: 0.04em;
  background: var(--gold);
  opacity: 0.4;
}
.hero-lead {
  font-size: 19px;
  line-height: 1.7;
  color: var(--ink-soft);
  margin-bottom: 44px;
  max-width: 540px;
  font-weight: 300;
}

.hero-actions {
  display: flex;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 17px 30px;
  font-family: 'Manrope', sans-serif;
  font-size: 14px;
  font-weight: 600;
  border-radius: 100px;
  transition: all .35s var(--ease);
  letter-spacing: 0.01em;
  border: 1px solid transparent;
  cursor: pointer;
}
.btn-primary {
  background: var(--navy-deep);
  color: var(--bg);
  border-color: var(--navy-deep);
}
.btn-primary:hover {
  background: var(--navy);
  border-color: var(--navy);
  transform: translateY(-3px);
  box-shadow: 0 18px 36px rgba(14, 42, 74, 0.22);
}
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn-ghost:hover { background: var(--ink); color: var(--bg); transform: translateY(-3px); }
.btn-arrow { width: 14px; height: 14px; transition: transform .3s var(--ease); }
.btn:hover .btn-arrow { transform: translateX(5px); }

.hero-author {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 8px;
}
.hero-author-line { width: 36px; height: 1px; background: var(--gold); }
.hero-author-text {
  font-size: 13px;
  font-style: italic;
  color: var(--muted);
  font-family: 'Cormorant Garamond', serif;
}
.hero-author-text strong {
  font-style: normal;
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: 0.02em;
  margin-right: 4px;
}

/* HERO STATS — Floating premium bar */
.hero-stats-wrap {
  position: absolute;
  bottom: 0;
  left: 0; right: 0;
  z-index: 4;
  padding: 0 40px;
}
.hero-stats-inner {
  max-width: 1280px;
  margin: 0 auto;
  background: linear-gradient(135deg, var(--ink-deep) 0%, var(--navy) 100%);
  color: var(--bg);
  border-radius: 20px 20px 0 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  overflow: hidden;
  box-shadow: 0 -10px 50px rgba(30, 42, 58, 0.22);
  position: relative;
}
.hero-stats-inner::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--teal-soft), transparent);
  opacity: 0.8;
}
.hero-stats-inner::after {
  content: '';
  position: absolute;
  top: -150px; right: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(91, 169, 169, 0.18), transparent 70%);
  pointer-events: none;
}
.hero-stat {
  padding: 44px 36px;
  border-right: 1px solid rgba(255,255,255,0.08);
  position: relative;
  z-index: 1;
}
.hero-stat:last-child { border-right: none; }
.hero-stat-source {
  position: absolute;
  top: 14px;
  right: 14px;
  font-size: 9px;
  letter-spacing: 0.16em;
  color: rgba(255,255,255,0.32);
  font-weight: 600;
  text-transform: uppercase;
}
.hero-stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 68px;
  font-weight: 400;
  line-height: 1;
  color: var(--bg);
  margin-bottom: 14px;
  letter-spacing: -0.03em;
  text-shadow: 0 0 60px rgba(91, 169, 169, 0.25);
  display: inline-flex;
  align-items: baseline;
  gap: 2px;
}
.hero-stat-num .unit {
  font-size: 0.42em;
  color: var(--teal-soft);
  font-weight: 400;
  margin-left: 4px;
  font-style: italic;
}
.hero-stat-label {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.62);
  line-height: 1.6;
  font-weight: 600;
}

/* Count-up animation — pure fade, NO glow/flash final */
.num-anim {
  display: inline-block;
  font-variant-numeric: tabular-nums;
}
.num-anim-done {
  /* Pas d'effet visuel final — fondu pur, propre */
}

/* Stagger reveal on the stats */
.hero-stat,
.keyfact,
.doctor-stat,
.expertise-highlight {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .9s var(--ease), transform .9s var(--ease);
}
.hero-stat.stat-visible,
.keyfact.stat-visible,
.doctor-stat.stat-visible,
.expertise-highlight.stat-visible {
  opacity: 1;
  transform: translateY(0);
}
.hero-stat:nth-child(1).stat-visible,
.keyfact:nth-child(1).stat-visible,
.doctor-stat:nth-child(1).stat-visible,
.expertise-highlight:nth-child(1).stat-visible { transition-delay: 0s; }
.hero-stat:nth-child(2).stat-visible,
.keyfact:nth-child(2).stat-visible,
.doctor-stat:nth-child(2).stat-visible,
.expertise-highlight:nth-child(2).stat-visible { transition-delay: 0.12s; }
.hero-stat:nth-child(3).stat-visible,
.keyfact:nth-child(3).stat-visible,
.doctor-stat:nth-child(3).stat-visible,
.expertise-highlight:nth-child(3).stat-visible { transition-delay: 0.24s; }
.hero-stat:nth-child(4).stat-visible,
.keyfact:nth-child(4).stat-visible,
.doctor-stat:nth-child(4).stat-visible,
.expertise-highlight:nth-child(4).stat-visible { transition-delay: 0.36s; }

/* ═══ GOALS / LIFESTYLE SECTION (homepage) ═══ */
.goals-section {
  background: var(--bg);
  padding: 77px 0;
  position: relative;
}
.goals-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 42px;
}
.goals-head .eyebrow { justify-content: center; display: inline-flex; }
.goals-head h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 4.2vw, 52px);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--ink-deep);
  margin: 20px 0 22px;
}
.goals-head h2 em { font-style: italic; color: var(--teal-deep); font-weight: 400; }
.goals-head p {
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink-soft);
  font-weight: 300;
}

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

.goal-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .5s var(--ease), box-shadow .5s var(--ease), border-color .5s var(--ease);
  position: relative;
}
.goal-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--teal-soft), var(--teal-deep));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .6s var(--ease);
  z-index: 2;
}
.goal-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 28px 60px rgba(30, 42, 58, 0.1);
  border-color: var(--teal);
}
.goal-card:hover::after { transform: scaleX(1); }

.goal-card-visual {
  width: 100%;
  height: 180px;
  min-height: 180px;
  flex-shrink: 0;
  background: var(--bg-cool);
  overflow: hidden;
  position: relative;
  display: block;
}
.goal-card-visual svg {
  width: 100%;
  height: 100%;
  display: block;
  transition: transform .8s var(--ease);
}
.goal-card:hover .goal-card-visual svg { transform: scale(1.05); }

.goal-card-body {
  padding: 28px 26px 32px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.goal-card-tag {
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--teal-deep);
  font-weight: 700;
  margin-bottom: 14px;
}
.goal-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.18;
  letter-spacing: -0.01em;
  color: var(--ink-deep);
  margin-bottom: 14px;
}
.goal-card p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--ink-soft);
  font-weight: 300;
}

/* ═══ TRUST BAR — Clean grid ═══ */
.trustbar {
  background: var(--bg);
  padding: 58px 0 46px;
  border-top: 1px solid var(--line-soft);
}
.trustbar-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 38px;
}
.trustbar-label {
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 14px;
}
.trustbar-label::before,
.trustbar-label::after {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--line);
}
.trustbar-items {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  width: 100%;
  max-width: 1080px;
}
.trust-item {
  text-align: center;
  padding: 18px 14px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 17px;
  color: var(--ink-soft);
  font-weight: 500;
  font-style: italic;
  border-left: 1px solid var(--line-soft);
  line-height: 1.35;
  position: relative;
}
.trust-item:first-child { border-left: none; }
.trust-item small {
  display: block;
  font-family: 'Manrope', sans-serif;
  font-style: normal;
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-top: 6px;
}

/* ═══ SECTION HEADS ═══ */
.section-head { margin-bottom: 54px; max-width: 780px; }
.section-head-center { margin: 0 auto 54px; text-align: center; max-width: 780px; }
.section-head h2, .section-head-center h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(38px, 4.8vw, 60px);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-top: 22px;
  margin-bottom: 28px;
}
.section-head h2 em, .section-head-center h2 em {
  font-style: italic;
  color: var(--navy);
  font-weight: 300;
}
.section-head p, .section-head-center p {
  font-size: 18px;
  line-height: 1.75;
  color: var(--ink-soft);
  font-weight: 300;
}

/* ═══ THREE PILLARS — Sécurité / Efficacité / Suivi ═══ */
.pillars {
  background: var(--bg);
}
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 36px;
}
.pillar {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 44px 38px;
  position: relative;
  transition: transform .5s var(--ease), box-shadow .5s var(--ease), border-color .5s var(--ease);
  overflow: hidden;
}
.pillar::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--navy), var(--teal), var(--gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.7s var(--ease);
}
.pillar:hover {
  transform: translateY(-8px);
  box-shadow: 0 32px 64px rgba(30, 42, 58, 0.1);
  border-color: var(--teal);
}
.pillar:hover::before { transform: scaleX(1); }
.pillar-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--bg-warm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
  border: 1px solid var(--line);
  transition: background .5s var(--ease), border-color .5s var(--ease), transform .5s var(--ease);
}
.pillar:hover .pillar-icon {
  background: var(--teal-bg);
  border-color: var(--teal);
  transform: scale(1.08) rotate(-5deg);
}
.pillar-icon svg { stroke: var(--navy); width: 26px; height: 26px; fill: none; stroke-width: 1.6; transition: stroke .4s var(--ease); }
.pillar:hover .pillar-icon svg { stroke: var(--teal); }
.pillar h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 30px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 16px;
  letter-spacing: -0.01em;
  position: relative;
  padding-bottom: 14px;
}
.pillar h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 42px;
  height: 3px;
  border-radius: 2px;
  transition: width .35s var(--ease);
}
.pillar:hover h3::after { width: 70px; }
.pillar p {
  font-size: 15px;
  line-height: 1.75;
  color: var(--ink-soft);
  font-weight: 300;
  margin-bottom: 0;
}

/* — Teasing innovation sur page Docteur — */
.doctor-innov-teasing {
  padding: 51px 0;
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-cool) 100%);
}
.doctor-innov-card {
  position: relative;
  background: linear-gradient(160deg, var(--navy-deep) 0%, #0E1B2A 100%);
  border-radius: 22px;
  padding: 70px 80px 60px;
  color: var(--white);
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(14, 27, 42, 0.18);
}
.doctor-innov-card::before {
  content: '';
  position: absolute;
  top: -200px; right: -150px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(91, 169, 169, 0.18), transparent 70%);
  pointer-events: none;
}
.doctor-innov-quote-mark {
  position: absolute;
  top: 20px;
  left: 60px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 200px;
  font-weight: 400;
  line-height: 1;
  color: var(--teal-soft);
  opacity: 0.15;
  user-select: none;
  pointer-events: none;
}
.doctor-innov-content {
  position: relative;
  z-index: 1;
  max-width: 820px;
}
.doctor-innov-content .eyebrow {
  display: inline-flex;
  margin-bottom: 24px;
  background: rgba(91, 169, 169, 0.12);
  border-color: rgba(91, 169, 169, 0.3);
  color: var(--teal-soft);
}
.doctor-innov-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(28px, 3.4vw, 44px);
  font-weight: 400;
  line-height: 1.18;
  letter-spacing: -0.018em;
  color: var(--white);
  margin-bottom: 28px;
}
.doctor-innov-quote em {
  font-style: italic;
  color: var(--teal-soft);
}
.doctor-innov-context {
  font-size: 15.5px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 300;
  margin-bottom: 32px;
  max-width: 700px;
}
.doctor-innov-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  background: var(--white);
  color: var(--navy-deep);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: all .35s var(--ease);
}
.doctor-innov-cta svg { width: 12px; height: 12px; transition: transform .35s var(--ease); }
.doctor-innov-cta:hover {
  background: var(--teal-soft);
  transform: translateX(2px);
}
.doctor-innov-cta:hover svg { transform: translateX(3px); }

@media (max-width: 1100px) {
  .doctor-innov-teasing { padding: 50px 0; }
  .doctor-innov-card { padding: 50px 30px 40px; border-radius: 16px; }
  .doctor-innov-quote-mark { font-size: 130px; top: 0; left: 24px; }
  .doctor-innov-quote { font-size: 24px; }
  .doctor-innov-context { font-size: 14px; }
}

/* ═══════════════════════════════════════════════════════════════════════
   PAGE INNOVATION — Layout éditorial premium (style NYT / Vogue Business)
   ═══════════════════════════════════════════════════════════════════════ */

/* — Hero éditorial — */
.innov-hero {
  padding: 200px 0 80px;
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-cool) 100%);
  position: relative;
  overflow: hidden;
}
.innov-hero::before {
  content: '';
  position: absolute;
  top: 80px; right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(91, 169, 169, 0.07), transparent 70%);
  pointer-events: none;
}
.innov-hero .eyebrow { margin-bottom: 32px; display: inline-flex; }
.innov-hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(40px, 5.4vw, 76px);
  font-weight: 400;
  line-height: 1.04;
  letter-spacing: -0.025em;
  color: var(--ink-deep);
  margin-bottom: 40px;
  max-width: 1100px;
}
.innov-hero-title em {
  font-style: italic;
  color: var(--teal-deep);
  font-weight: 400;
}
.innov-hero-lead {
  font-size: 19px;
  line-height: 1.7;
  color: var(--ink-soft);
  font-weight: 300;
  max-width: 780px;
}
.innov-hero-lead strong {
  color: var(--ink-deep);
  font-weight: 500;
}

/* — Hero side image (right) dissolving into the page on the left, like the homepage hero — */
.innov-hero .container { position: relative; }
.innov-hero-text { position: relative; z-index: 2; max-width: 600px; }
.innov-hero-text .innov-hero-title { max-width: none; font-size: clamp(34px, 3.6vw, 54px); }
.innov-hero-text .innov-hero-lead { max-width: 560px; }
.innov-hero-art {
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: 52%;
  z-index: 0;
  pointer-events: none;
  background-image: url('innov-hero.jpg');
  background-size: cover;
  background-position: center;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, transparent 6%, rgba(0,0,0,0.32) 28%, #000 52%);
          mask-image: linear-gradient(90deg, transparent 0%, transparent 6%, rgba(0,0,0,0.32) 28%, #000 52%);
}

/* — Pull quote magistrale (accroche + clôture) — */
.innov-pullquote-section {
  padding: 64px 0;
  background: var(--white);
  position: relative;
}
.innov-pullquote-section.innov-pullquote-final {
  background: linear-gradient(180deg, var(--bg-cool) 0%, var(--bg) 100%);
}
.innov-pullquote {
  text-align: center;
  margin: 0 auto;
  max-width: 920px;
  position: relative;
  padding: 0 20px;
}
.innov-pullquote-mark {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(120px, 14vw, 200px);
  font-weight: 400;
  line-height: 0.8;
  color: var(--teal-soft);
  opacity: 0.35;
  margin-bottom: -40px;
  user-select: none;
}
.innov-pullquote p {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(32px, 4.2vw, 58px);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.018em;
  color: var(--ink-deep);
  margin: 0 auto 36px;
  max-width: 880px;
}
.innov-pullquote p em {
  font-style: italic;
  color: var(--teal-deep);
}
.innov-pullquote cite {
  display: inline-block;
  font-style: normal;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--muted);
  padding-top: 16px;
  position: relative;
}
.innov-pullquote cite::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 48px;
  height: 1px;
  background: var(--teal);
}

/* — Story Nancy 2020 (narrative + sidebar stats) — */
.innov-story {
  background: var(--bg);
}
.innov-story-grid {
  display: grid;
  grid-template-columns: 1.45fr 1fr;
  gap: 65px;
  align-items: start;
}
.innov-story-content .eyebrow {
  display: inline-flex;
  margin-bottom: 22px;
}
.innov-story-content h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(34px, 4vw, 52px);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.018em;
  color: var(--ink-deep);
  margin-bottom: 36px;
}
.innov-story-content h2 em {
  font-style: italic;
  color: var(--teal-deep);
  font-weight: 400;
}
.innov-lead {
  font-size: 19px !important;
  line-height: 1.65 !important;
  color: var(--ink-deep) !important;
  font-weight: 400 !important;
  margin-bottom: 30px !important;
  padding-left: 22px;
  border-left: 3px solid var(--teal-deep);
}
.innov-lead strong {
  color: var(--ink-deep);
  font-weight: 600;
}
.innov-story-content p {
  font-size: 16px;
  line-height: 1.85;
  color: var(--ink-soft);
  font-weight: 300;
  margin-bottom: 22px;
}
.innov-story-content p strong {
  color: var(--ink-deep);
  font-weight: 600;
}
.innov-story-content p em {
  font-style: italic;
  color: var(--teal-deep);
}

/* — Sidebar stats card — */
.innov-story-stats { position: sticky; top: 110px; }
.innov-stats-card {
  background: linear-gradient(160deg, var(--navy-deep) 0%, #0E1B2A 100%);
  border-radius: 18px;
  padding: 44px 38px;
  color: var(--white);
  position: relative;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(14, 27, 42, 0.18);
}
.innov-stats-card::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 280px; height: 280px;
  background: radial-gradient(circle, rgba(91, 169, 169, 0.2), transparent 70%);
  pointer-events: none;
}
.innov-stats-eyebrow {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--teal-soft);
  margin-bottom: 30px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  z-index: 1;
}
.innov-stat {
  padding: 22px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 24px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.innov-stat:last-child { border-bottom: none; padding-bottom: 0; }
.innov-stat:first-of-type { padding-top: 0; }
.innov-stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 62px;
  font-weight: 300;
  line-height: 0.95;
  letter-spacing: -0.03em;
  color: var(--teal-soft);
  text-align: right;
}
.innov-stat-pct {
  font-size: 0.45em;
  font-style: italic;
  font-weight: 400;
  color: var(--warm);
  margin-left: 3px;
}
.innov-stat-label {
  font-size: 14px;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.92);
  font-weight: 600;
}
.innov-stat-label span {
  display: block;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.55);
  font-weight: 400;
  margin-top: 2px;
}

/* — 4 piliers — */
.innov-pillars {
  background: var(--bg-cool);
  position: relative;
  overflow: hidden;
}
.innov-pillars-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 36px;
}
.innov-pillar {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 40px 30px 34px;
  position: relative;
  transition: all .4s var(--ease);
  overflow: hidden;
}
.innov-pillar::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--teal-soft), var(--teal-deep));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .5s var(--ease);
}
.innov-pillar:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 50px rgba(30, 42, 58, 0.08);
  border-color: var(--teal);
}
.innov-pillar:hover::before { transform: scaleX(1); }
.innov-pillar-num {
  position: absolute;
  top: 24px;
  right: 28px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 32px;
  font-weight: 400;
  color: var(--teal-deep);
  opacity: 0.18;
  letter-spacing: -0.02em;
  line-height: 1;
}
.innov-pillar-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--teal-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 26px;
}
.innov-pillar-icon svg {
  width: 26px;
  height: 26px;
  color: var(--teal-deep);
}
.innov-pillar h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 23px;
  font-weight: 500;
  color: var(--ink-deep);
  line-height: 1.22;
  letter-spacing: -0.01em;
  margin-bottom: 14px;
}
.innov-pillar p {
  font-size: 13.5px;
  line-height: 1.72;
  color: var(--ink-soft);
  font-weight: 300;
  margin: 0;
}

/* — Impact section — */
.innov-impact {
  padding: 83px 0;
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-cool) 100%);
}
.innov-impact-inner {
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
}
.innov-impact .eyebrow { display: inline-flex; margin-bottom: 26px; }
.innov-impact h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(28px, 3.6vw, 46px);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.015em;
  color: var(--ink-deep);
  margin-bottom: 36px;
}
.innov-impact h2 em {
  font-style: italic;
  color: var(--teal-deep);
  font-weight: 400;
}
.innov-impact-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
  text-align: left;
  margin-bottom: 30px;
}
.innov-impact-item {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 22px;
  padding: 26px 32px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  align-items: start;
  transition: all .35s var(--ease);
}
.innov-impact-item:hover {
  border-color: var(--teal);
  transform: translateX(4px);
}
.innov-impact-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--teal-bg);
  display: flex;
  align-items: center;
  justify-content: center;
}
.innov-impact-icon svg {
  width: 22px;
  height: 22px;
  color: var(--teal-deep);
}
.innov-impact-item strong {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 500;
  color: var(--ink-deep);
  line-height: 1.25;
  margin-bottom: 6px;
}
.innov-impact-item span {
  font-size: 14px;
  line-height: 1.6;
  color: var(--ink-soft);
  font-weight: 300;
}
.innov-impact-conclusion {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-style: italic;
  color: var(--teal-deep);
  margin: 0;
}
.innov-impact-conclusion strong {
  font-style: normal;
  color: var(--ink-deep);
  font-weight: 600;
}

/* — Fil conducteur : Nancy → Luxembourg — */
.innov-thread {
  background: var(--bg);
}
.innov-thread .section-head-center { margin-bottom: 42px; }
.innov-thread .section-head-center h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(32px, 4vw, 50px);
  font-weight: 400;
  line-height: 1.1;
  color: var(--ink-deep);
  letter-spacing: -0.018em;
}
.innov-thread .section-head-center h2 em {
  font-style: italic;
  color: var(--teal-deep);
}
.innov-thread-bridge {
  display: grid;
  grid-template-columns: 1fr 100px 1fr;
  gap: 36px;
  align-items: stretch;
  margin-bottom: 36px;
}
.innov-thread-side {
  padding: 44px 40px;
  border-radius: 16px;
  position: relative;
  transition: all .35s var(--ease);
}
.innov-thread-past {
  background: var(--bg-cool);
  border: 1px solid var(--line);
}
.innov-thread-present {
  background: linear-gradient(160deg, rgba(91, 169, 169, 0.08) 0%, rgba(45, 115, 115, 0.06) 100%);
  border: 1px solid rgba(91, 169, 169, 0.25);
}
.innov-thread-side:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 50px rgba(30, 42, 58, 0.06);
}
.innov-thread-year {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  font-weight: 500;
  color: var(--teal-deep);
  letter-spacing: -0.02em;
  margin-bottom: 6px;
  line-height: 1;
}
.innov-thread-past .innov-thread-year { color: var(--muted); }
.innov-thread-location {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--ink-soft);
  padding-bottom: 24px;
  margin-bottom: 24px;
  border-bottom: 1px solid var(--line);
  position: relative;
}
.innov-thread-present .innov-thread-location {
  color: var(--teal-deep);
  border-bottom-color: rgba(91, 169, 169, 0.2);
}
.innov-thread-side h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 500;
  color: var(--ink-deep);
  line-height: 1.25;
  letter-spacing: -0.01em;
  margin-bottom: 18px;
}
.innov-thread-side p {
  font-size: 14.5px;
  line-height: 1.7;
  color: var(--ink-soft);
  font-weight: 300;
  margin: 0;
}
.innov-thread-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal);
}
.innov-thread-arrow svg {
  width: 100%;
  max-width: 80px;
  height: 24px;
}
.innov-thread-closing {
  text-align: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  line-height: 1.5;
  color: var(--ink-deep);
  font-weight: 400;
  max-width: 820px;
  margin: 0 auto;
}
.innov-thread-closing em {
  font-style: italic;
  color: var(--teal-deep);
}

/* — Mobile responsive — */
@media (max-width: 1100px) {
  .innov-hero { padding: 160px 0 60px; }
  .innov-hero-title { font-size: clamp(32px, 9vw, 52px); }
  .innov-hero-lead { font-size: 16px; }
  .innov-hero-art { display: none; }
  .innov-hero-text { max-width: 100%; }
  .innov-hero-text .innov-hero-title { font-size: clamp(32px, 9vw, 52px); }
  .innov-hero-text .innov-hero-lead { max-width: 100%; }

  .innov-pullquote-section { padding: 45px 0; }
  .innov-pullquote-mark { font-size: 100px; margin-bottom: -30px; }
  .innov-pullquote p { font-size: clamp(24px, 6vw, 36px); }

  .innov-story-grid { grid-template-columns: 1fr; gap: 50px; }
  .innov-story-stats { position: static; }
  .innov-story-content h2 { font-size: 30px; }
  .innov-lead { font-size: 17px !important; padding-left: 16px; }
  .innov-story-content p { font-size: 15px; }

  .innov-stats-card { padding: 32px 26px; }
  .innov-stat { grid-template-columns: 90px 1fr; gap: 18px; padding: 18px 0; }
  .innov-stat-num { font-size: 50px; }

  .innov-pillars-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .innov-pillar { padding: 32px 24px 28px; }

  .innov-impact { padding: 51px 0; }
  .innov-impact h2 { font-size: 26px; margin-bottom: 40px; }
  .innov-impact-item { grid-template-columns: 42px 1fr; gap: 16px; padding: 22px; }
  .innov-impact-item strong { font-size: 19px; }

  .innov-thread-bridge { grid-template-columns: 1fr; gap: 20px; }
  .innov-thread-side { padding: 32px 26px; }
  .innov-thread-arrow {
    transform: rotate(90deg);
    height: 40px;
  }
  .innov-thread-closing { font-size: 18px; }
}

@media (max-width: 700px) {
  .innov-pillars-grid { grid-template-columns: 1fr; }
}

/* ═══════ JOURNEY — Parcours patient en 4 étapes ═══════ */
.journey-section {
  background: linear-gradient(180deg, var(--bg-cool) 0%, var(--bg) 100%);
  position: relative;
}
.journey-timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 42px;
  position: relative;
}
.journey-timeline::before {
  content: '';
  position: absolute;
  top: 60px;
  left: calc(12.5% + 30px);
  right: calc(12.5% + 30px);
  height: 2px;
  background: linear-gradient(90deg,
    var(--teal-soft) 0%,
    var(--teal) 33%,
    var(--teal-deep) 66%,
    var(--navy) 100%);
  z-index: 0;
  opacity: 0.4;
}
.journey-step {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 36px 28px 30px;
  position: relative;
  transition: all .4s var(--ease);
  z-index: 1;
}
.journey-step:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 50px rgba(30, 42, 58, 0.08);
  border-color: var(--teal);
}
.journey-step-num {
  position: absolute;
  top: -22px;
  left: 28px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--teal-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--teal-deep);
  letter-spacing: -0.02em;
  z-index: 2;
  transition: all .4s var(--ease);
}
.journey-step:nth-child(2) .journey-step-num { border-color: var(--teal); color: var(--teal); }
.journey-step:nth-child(3) .journey-step-num { border-color: var(--teal-deep); color: var(--teal-deep); }
.journey-step:nth-child(4) .journey-step-num { border-color: var(--navy); color: var(--navy-deep); }
.journey-step:hover .journey-step-num {
  background: var(--teal-bg);
  transform: scale(1.05);
}
.journey-step-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: var(--teal-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 20px 0 20px;
}
.journey-step-icon svg {
  width: 26px;
  height: 26px;
  color: var(--teal-deep);
}
.journey-step:nth-child(4) .journey-step-icon { background: rgba(30, 42, 58, 0.06); }
.journey-step:nth-child(4) .journey-step-icon svg { color: var(--navy-deep); }
.journey-step-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  font-weight: 500;
  color: var(--ink-deep);
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin-bottom: 14px;
}
.journey-step-desc {
  font-size: 14px;
  line-height: 1.7;
  color: var(--ink-soft);
  font-weight: 300;
  margin-bottom: 18px;
}
.journey-step-duration {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--teal-deep);
  background: var(--teal-bg);
  padding: 6px 14px;
  border-radius: 100px;
}
.journey-cta {
  text-align: center;
  margin-top: 42px;
}
.journey-cta-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-style: italic;
  color: var(--ink-deep);
  margin-bottom: 26px;
}
.journey-cta-text em { color: var(--teal-deep); font-style: italic; }

/* ═══════ WHAT IS ENDOSLEEVE — section accroche ═══════ */
.what-is-section {
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-cool) 100%);
  position: relative;
  overflow: hidden;
}
.what-is-section::before {
  content: '';
  position: absolute;
  top: -150px;
  right: -150px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(91, 169, 169, 0.08), transparent 70%);
  pointer-events: none;
}
.what-is-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 58px;
  align-items: center;
  position: relative;
}
.what-is-content > .eyebrow { display: inline-flex; margin-bottom: 22px; }
.what-is-content h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 4.5vw, 56px);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--ink-deep);
  margin-bottom: 26px;
}
.what-is-content h2 em {
  font-style: italic;
  color: var(--teal-deep);
  font-weight: 500;
}
.what-is-lead {
  font-size: 17px;
  line-height: 1.75;
  color: var(--ink-soft);
  font-weight: 300;
  margin-bottom: 40px;
}
.what-is-lead strong {
  color: var(--ink-deep);
  font-weight: 600;
}
.what-is-benefits {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px 30px;
  margin-bottom: 44px;
}
.what-is-benefit {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 14px;
  align-items: start;
}
.what-is-benefit-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--teal-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.what-is-benefit-icon svg {
  width: 14px;
  height: 14px;
  color: var(--teal-deep);
}
.what-is-benefit strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--ink-deep);
  margin-bottom: 2px;
  line-height: 1.35;
}
.what-is-benefit span {
  display: block;
  font-size: 13px;
  color: var(--ink-soft);
  font-weight: 300;
  line-height: 1.5;
}
.what-is-cta { display: inline-flex; }

/* Visual stat cards stack */
.what-is-visual {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.what-is-stat-card {
  position: relative;
  padding: 34px 36px;
  border-radius: 18px;
  background: var(--white);
  border: 1px solid var(--line);
  transition: all .35s var(--ease);
  overflow: hidden;
}
.what-is-stat-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; bottom: 0;
  width: 5px;
  border-radius: 18px 0 0 18px;
}
.what-is-stat-teal::before { background: linear-gradient(180deg, var(--teal-soft), var(--teal)); }
.what-is-stat-navy::before { background: linear-gradient(180deg, var(--navy), var(--navy-deep)); }
.what-is-stat-deep::before { background: linear-gradient(180deg, var(--teal), var(--teal-deep)); }
.what-is-stat-card:hover {
  transform: translateX(4px);
  box-shadow: 0 20px 40px rgba(30, 42, 58, 0.06);
}
.what-is-stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 56px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--ink-deep);
  margin-bottom: 10px;
}
.what-is-stat-num span {
  font-size: 0.45em;
  font-style: italic;
  font-weight: 400;
  color: var(--teal-deep);
  margin-left: 4px;
}
.what-is-stat-teal .what-is-stat-num span { color: var(--teal); }
.what-is-stat-navy .what-is-stat-num span { color: var(--navy); }
.what-is-stat-deep .what-is-stat-num span { color: var(--teal-deep); }
.what-is-stat-label {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-deep);
  margin-bottom: 6px;
}
.what-is-stat-sub {
  font-size: 13px;
  line-height: 1.55;
  color: var(--ink-soft);
  font-weight: 300;
}

/* ═══ Pillar color variants — titres TRÈS visibles ═══ */
.pillar-teal h3 {
  color: var(--teal-deep);
  font-weight: 700;
}
.pillar-teal h3::after { background: var(--teal); }
.pillar-teal .pillar-icon { background: var(--teal-bg); border-color: rgba(91, 169, 169, 0.45); }
.pillar-teal .pillar-icon svg { stroke: var(--teal-deep); }

.pillar-navy h3 {
  color: var(--navy-deep);
  font-weight: 700;
}
.pillar-navy h3::after { background: var(--navy); }
.pillar-navy .pillar-icon { background: rgba(30, 42, 58, 0.08); border-color: rgba(30, 42, 58, 0.28); }
.pillar-navy .pillar-icon svg { stroke: var(--navy-deep); }

.pillar-deep h3 {
  color: var(--teal-deep);
  font-weight: 700;
}
.pillar-deep h3::after { background: var(--teal-deep); }
.pillar-deep .pillar-icon { background: rgba(45, 115, 115, 0.12); border-color: rgba(45, 115, 115, 0.4); }
.pillar-deep .pillar-icon svg { stroke: var(--teal-deep); }

.pillar-teal::before { background: linear-gradient(90deg, var(--teal-soft), var(--teal)); }
.pillar-navy::before { background: linear-gradient(90deg, var(--navy), var(--navy-deep)); }
.pillar-deep::before { background: linear-gradient(90deg, var(--teal), var(--teal-deep)); }

/* ═══ BREADCRUMB / PAGE HEADER ═══ */
.page-header {
  padding: 132px 0 60px;
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-warm) 100%);
  position: relative;
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
  margin-bottom: 30px;
}
.breadcrumb a { color: var(--muted); transition: color .25s; }
.breadcrumb a:hover { color: var(--navy); }
.breadcrumb span { color: var(--gold); }
.page-header h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(46px, 5.5vw, 72px);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-top: 16px;
}
.page-header h1 em { font-style: italic; color: var(--navy); font-weight: 300; }
.page-lead {
  font-size: 18px;
  line-height: 1.75;
  color: var(--ink-soft);
  font-weight: 300;
  max-width: 720px;
  margin-top: 24px;
}

/* ═══════════════════════════════════════════════════
   TECHNIQUES PAGE — Refonte 3 sections distinctes
   ESG · TORe · Révision sleeve
   ═══════════════════════════════════════════════════ */

/* Anchor menu navigation (sticky-style) */
.techniques-anchor-nav {
  padding: 0 0 50px;
  background: var(--bg);
}
.techniques-anchor {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  border-radius: 18px;
  padding: 4px;
  background: var(--bg-cool);
  border: 1px solid var(--line);
}
.techniques-anchor-item {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 22px 26px;
  background: var(--white);
  border-radius: 14px;
  text-decoration: none;
  transition: all .35s var(--ease);
  position: relative;
  overflow: hidden;
  border: 1px solid transparent;
}
.techniques-anchor-item::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 0%, rgba(91, 169, 169, 0.07) 100%);
  opacity: 0;
  transition: opacity .35s var(--ease);
  pointer-events: none;
}
.techniques-anchor-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 38px rgba(30, 42, 58, 0.08);
}
.techniques-anchor-item:hover::before { opacity: 1; }
.techniques-anchor-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 38px;
  font-weight: 400;
  line-height: 1;
  color: var(--teal-deep);
  letter-spacing: -0.03em;
  flex-shrink: 0;
}
.techniques-anchor-esg:hover .techniques-anchor-num { color: var(--teal); }
.techniques-anchor-tore:hover .techniques-anchor-num { color: var(--navy); }
.techniques-anchor-sleeve:hover .techniques-anchor-num { color: var(--teal-deep); }
.techniques-anchor-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 21px;
  font-weight: 500;
  color: var(--ink-deep);
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin-bottom: 4px;
}
.techniques-anchor-sub {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
}

/* Coloured borders per technique */
.techniques-anchor-esg { border-color: rgba(91, 169, 169, 0.25); }
.techniques-anchor-tore { border-color: rgba(30, 42, 58, 0.18); }
.techniques-anchor-sleeve { border-color: rgba(45, 115, 115, 0.25); }

/* ═══ Technique section wrapper (color-coded) ═══ */
.technique-section { position: relative; }
.technique-section-header {
  padding: 92px 0 26px;
  position: relative;
  scroll-margin-top: 54px;
}
.technique-section-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  border-radius: 2px;
}
.technique-section-esg .technique-section-header::before { background: var(--teal-soft); }
.technique-section-tore .technique-section-header::before { background: var(--navy); }
.technique-section-sleeve .technique-section-header::before { background: var(--teal-deep); }

.technique-section-eyebrow {
  text-align: center;
  margin-bottom: 22px;
}
.technique-section-badge {
  display: inline-block;
  padding: 8px 18px;
  border-radius: 100px;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
}
.technique-section-esg .technique-section-badge {
  background: rgba(91, 169, 169, 0.12);
  color: var(--teal-deep);
  border: 1px solid rgba(91, 169, 169, 0.3);
}
.technique-section-tore .technique-section-badge {
  background: rgba(30, 42, 58, 0.08);
  color: var(--navy-deep);
  border: 1px solid rgba(30, 42, 58, 0.18);
}
.technique-section-sleeve .technique-section-badge {
  background: rgba(45, 115, 115, 0.12);
  color: var(--teal-deep);
  border: 1px solid rgba(45, 115, 115, 0.3);
}

.technique-section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--ink-deep);
  text-align: center;
  margin-bottom: 22px;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}
.technique-section-title em { font-style: italic; color: var(--teal-deep); font-weight: 400; }
.technique-section-tore .technique-section-title em { color: var(--navy); }
.technique-section-lead {
  text-align: center;
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink-soft);
  font-weight: 300;
  max-width: 780px;
  margin: 0 auto;
}

/* Section coloured backgrounds — vraies "poches" distinctes */
.technique-section {
  padding-top: 30px;
  padding-bottom: 30px;
  position: relative;
}
/* Poche ESG : blanc → bg-cool très léger */
.technique-section-esg {
  background: linear-gradient(180deg, var(--bg) 0%, #F7F9FA 100%);
  border-bottom: 2px solid var(--line-soft);
}
/* Poche TORe : tonalité navy/grise plus marquée */
.technique-section-tore {
  background: linear-gradient(180deg, #EEF1F5 0%, #E4EAF0 100%);
  border-bottom: 2px solid #D2DBE3;
  position: relative;
}
.technique-section-tore::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--navy), transparent);
  opacity: 0.4;
}
/* Poche Sleeve : tonalité teal pâle bien identifiable */
.technique-section-sleeve {
  background: linear-gradient(180deg, #E8F0F0 0%, #DCE9E9 100%);
  position: relative;
}
.technique-section-sleeve::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--teal-deep), transparent);
  opacity: 0.5;
}

/* Reinforce header divider per section */
.technique-section-esg .results-section { background: var(--navy-deep); }
.technique-section-tore .results-section { background: var(--navy-deep); }
.technique-section-sleeve .results-section { background: var(--navy-deep); }

/* ═══ Video slot section ═══ */
.technique-video-section {
  padding: 50px 0 80px;
}
.technique-video-wrap {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 50px;
  align-items: center;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 50px;
  box-shadow: 0 20px 50px rgba(30, 42, 58, 0.05);
  position: relative;
  overflow: hidden;
}
.technique-video-wrap::before {
  content: '';
  position: absolute;
  top: 0; left: 0; bottom: 0;
  width: 5px;
}
.technique-video-esg::before { background: var(--teal-soft); }
.technique-video-tore::before { background: var(--navy); }
.technique-video-sleeve::before { background: var(--teal-deep); }
.technique-video-meta .eyebrow { margin-bottom: 16px; display: inline-flex; }
.technique-video-meta h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(26px, 2.8vw, 32px);
  font-weight: 400;
  line-height: 1.18;
  letter-spacing: -0.01em;
  color: var(--ink-deep);
  margin-bottom: 16px;
}
.technique-video-meta h3 em { font-style: italic; color: var(--teal-deep); font-weight: 400; }
.technique-video-meta p {
  font-size: 14px;
  line-height: 1.75;
  color: var(--ink-soft);
  font-weight: 300;
}
.technique-video-placeholder {
  background: linear-gradient(135deg, var(--ink-deep) 0%, var(--navy) 100%);
  border-radius: 14px;
  aspect-ratio: 16 / 9;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: transform .35s var(--ease);
}
.technique-video-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 60% 40%, rgba(91, 169, 169, 0.22), transparent 60%);
  pointer-events: none;
}
.technique-video-placeholder:hover { transform: scale(1.01); }
.technique-video-placeholder-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 24px;
}
.technique-video-placeholder svg {
  width: 64px;
  height: 64px;
  fill: var(--white);
  margin-bottom: 18px;
  opacity: 0.92;
  filter: drop-shadow(0 0 24px rgba(91, 169, 169, 0.45));
}
.technique-video-placeholder-label {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}
.technique-video-placeholder-sub {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  font-weight: 600;
}

/* ═══ Video placeholder when ACTIVE (preview image + play button) ═══ */
.technique-video-placeholder.technique-video-ready {
  cursor: pointer;
}
.technique-video-active-inner {
  position: absolute;
  inset: 0;
  background-color: var(--navy-deep);
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform .5s var(--ease);
}
.technique-video-placeholder.technique-video-ready:hover .technique-video-active-inner {
  transform: scale(1.02);
}
.technique-video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(14, 27, 42, 0.25) 0%, rgba(14, 27, 42, 0.55) 100%);
  transition: background .35s var(--ease);
}
.technique-video-placeholder.technique-video-ready:hover .technique-video-overlay {
  background: linear-gradient(180deg, rgba(14, 27, 42, 0.15) 0%, rgba(14, 27, 42, 0.45) 100%);
}
.technique-video-play-btn {
  position: relative;
  z-index: 2;
  width: 84px;
  height: 84px;
  border: none;
  background: transparent;
  padding: 0;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
  transition: transform .3s var(--ease), opacity .3s var(--ease);
}
.technique-video-play-btn svg {
  width: 100%;
  height: 100%;
  display: block;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.4)) drop-shadow(0 3px 14px rgba(0, 0, 0, 0.4));
}
.technique-video-placeholder.technique-video-ready:hover .technique-video-play-btn {
  transform: scale(1.08);
}

/* ═══ Video lightbox modal ═══ */
.video-lightbox {
  position: fixed;
  inset: 0;
  background: rgba(14, 27, 42, 0.92);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 30px 30px;
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s ease, visibility .3s;
}
.video-lightbox.open {
  opacity: 1;
  visibility: visible;
}
.video-lightbox-close {
  position: absolute;
  top: 20px;
  right: 24px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.06);
  color: var(--white);
  font-size: 30px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  padding-bottom: 4px;
  transition: all .25s;
}
.video-lightbox-close:hover {
  background: rgba(255,255,255,0.15);
  border-color: rgba(255,255,255,0.4);
}
.video-lightbox-frame {
  width: 100%;
  max-width: 1100px;
  aspect-ratio: 16 / 9;
  background: #000;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.6);
  position: relative;
}
.video-lightbox-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* ═══ Inline video player — real <video> that plays in place ═══ */
.technique-video-el {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  background: var(--navy-deep);
}
.technique-video-overlay,
.technique-video-play-btn {
  transition: opacity .45s var(--ease), background .35s var(--ease),
              transform .35s var(--ease), box-shadow .35s var(--ease);
}
.technique-video-placeholder.is-playing { cursor: default; }
.technique-video-placeholder.is-playing:hover { transform: none; }
.technique-video-placeholder.is-playing .technique-video-overlay,
.technique-video-placeholder.is-playing .technique-video-play-btn {
  opacity: 0;
  pointer-events: none;
}
.technique-video-el:focus { outline: none; }

/* ═══ Inverted grid (image on right) ═══ */
.expertise-grid-inverted .expertise-content { order: 1; }
.expertise-grid-inverted .expertise-visual { order: 2; }

/* ═══════ TECHNIQUES OVERVIEW (technique.html index page) ═══════ */
.techniques-overview {
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-cool) 100%);
}
.techniques-overview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.technique-overview-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 44px 36px 40px;
  position: relative;
  transition: all .45s var(--ease);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.technique-overview-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .6s var(--ease);
}
.technique-overview-esg::before { background: linear-gradient(90deg, var(--teal-soft), var(--teal)); }
.technique-overview-tore::before { background: linear-gradient(90deg, var(--navy), var(--navy-deep)); }
.technique-overview-sleeve::before { background: linear-gradient(90deg, var(--teal), var(--teal-deep)); }
.technique-overview-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 32px 64px rgba(30, 42, 58, 0.1);
}
.technique-overview-card:hover::before { transform: scaleX(1); }

.technique-overview-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 54px;
  font-weight: 300;
  color: var(--teal-deep);
  line-height: 1;
  letter-spacing: -0.03em;
  margin-bottom: 8px;
}
.technique-overview-tore .technique-overview-num { color: var(--navy); }
.technique-overview-sleeve .technique-overview-num { color: var(--teal-deep); }

.technique-overview-badge {
  display: inline-block;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--muted);
  padding: 6px 14px;
  border: 1px solid var(--line);
  border-radius: 100px;
  background: var(--bg-cool);
  margin-bottom: 22px;
  align-self: flex-start;
}
.technique-overview-esg .technique-overview-badge {
  background: rgba(91, 169, 169, 0.1);
  border-color: rgba(91, 169, 169, 0.28);
  color: var(--teal-deep);
}
.technique-overview-tore .technique-overview-badge {
  background: rgba(30, 42, 58, 0.06);
  border-color: rgba(30, 42, 58, 0.18);
  color: var(--navy-deep);
}
.technique-overview-sleeve .technique-overview-badge {
  background: rgba(45, 115, 115, 0.1);
  border-color: rgba(45, 115, 115, 0.28);
  color: var(--teal-deep);
}
.technique-overview-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(28px, 2.8vw, 36px);
  font-weight: 400;
  line-height: 1.1;
  color: var(--ink-deep);
  letter-spacing: -0.01em;
  margin-bottom: 10px;
}
.technique-overview-title em { font-style: italic; color: var(--teal-deep); font-weight: 400; }
.technique-overview-tore .technique-overview-title em { color: var(--navy); }
.technique-overview-sub {
  font-family: 'Cormorant Garamond', serif;
  font-size: 16px;
  font-style: italic;
  color: var(--muted);
  margin-bottom: 24px;
  line-height: 1.4;
}
.technique-overview-desc {
  font-size: 14px;
  line-height: 1.72;
  color: var(--ink-soft);
  font-weight: 300;
  margin-bottom: 30px;
  flex: 1;
}
.technique-overview-stats {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  padding: 22px 0;
  margin-bottom: 28px;
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}
.technique-overview-stat {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  font-size: 12px;
}
.technique-overview-stat strong {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 500;
  color: var(--teal-deep);
  letter-spacing: -0.01em;
  flex-shrink: 0;
}
.technique-overview-tore .technique-overview-stat strong { color: var(--navy-deep); }
.technique-overview-stat span {
  color: var(--muted);
  font-size: 11px;
  letter-spacing: 0.04em;
  text-align: right;
  line-height: 1.4;
}
.technique-overview-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  background: var(--navy-deep);
  color: var(--white);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 0.01em;
  transition: all .35s var(--ease);
  align-self: flex-start;
}
.technique-overview-cta svg { width: 12px; height: 12px; transition: transform .35s var(--ease); }
.technique-overview-cta:hover {
  background: var(--teal-deep);
  transform: translateX(2px);
}
.technique-overview-cta:hover svg { transform: translateX(3px); }

/* Mobile - 1 col stack */
@media (max-width: 1100px) {
  .techniques-overview-grid { grid-template-columns: 1fr; gap: 18px; }
  .technique-overview-card { padding: 36px 28px 32px; }
  .technique-overview-num { font-size: 44px; }
  .technique-overview-title { font-size: 26px; }
  .technique-overview-sub { font-size: 14px; }
  .technique-overview-desc { font-size: 13px; margin-bottom: 24px; }
}

/* ═══ Visual card placeholder (icon + label) for TORe and sleeve ═══ */
/* Technique pages — right column holds a compact card + a technical-spec box */
.expertise-grid-inverted { align-items: start !important; }

.technique-visual-col {
  order: 2;
  display: flex;
  flex-direction: column;
  gap: 22px;
  align-self: start;
}

.technique-visual-card {
  border-radius: 20px;
  background: var(--bg-cool);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 0;
  border: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}
.technique-visual-card::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 280px; height: 280px;
  background: radial-gradient(circle, rgba(91, 169, 169, 0.18), transparent 70%);
  pointer-events: none;
}
.technique-visual-tore { background: linear-gradient(160deg, #F8FAFB 0%, #EBF0F3 100%); }
.technique-visual-sleeve { background: linear-gradient(160deg, #F4F8F8 0%, #E5EFEF 100%); }
.technique-visual-card-inner {
  text-align: center;
  padding: 40px;
  position: relative;
  z-index: 1;
}
.technique-visual-card-icon {
  width: 110px;
  height: 110px;
  margin: 0 auto 24px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 14px 32px rgba(30, 42, 58, 0.08);
}
.technique-visual-card-icon svg {
  width: 56px;
  height: 56px;
  color: var(--teal-deep);
}
.technique-visual-tore .technique-visual-card-icon svg { color: var(--navy); }
.technique-visual-card-label {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  font-weight: 500;
  color: var(--ink-deep);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}
.technique-visual-card-text {
  font-size: 13px;
  color: var(--ink-soft);
  line-height: 1.6;
  font-weight: 300;
  max-width: 320px;
  margin: 0 auto;
}

/* Technical-spec box sitting beneath the technique card */
.technique-spec-box {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 28px 30px;
}
.technique-spec-box .technique-spec-label {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 14px;
}
.technique-spec-box .technique-spec-label::before {
  content: '';
  width: 22px;
  height: 1.5px;
  background: var(--teal-deep, var(--navy));
}
.technique-spec-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.technique-spec-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  line-height: 1.5;
  color: var(--ink-soft);
  padding: 9px 0;
  border-bottom: 1px solid var(--line);
}
.technique-spec-list li:last-child { border-bottom: none; padding-bottom: 0; }
.technique-spec-list li::before {
  content: '';
  flex-shrink: 0;
  width: 6px;
  height: 6px;
  margin-top: 7px;
  border-radius: 50%;
  background: var(--teal-deep, var(--navy));
}

/* ═══ Sleeve specificity note ═══ */
.sleeve-note-card {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 28px;
  align-items: flex-start;
  background: var(--white);
  border: 1px solid var(--line);
  border-left: 4px solid var(--teal-deep);
  border-radius: 14px;
  padding: 36px 44px;
  box-shadow: 0 14px 32px rgba(30, 42, 58, 0.04);
}
.sleeve-note-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--teal-bg);
  display: flex;
  align-items: center;
  justify-content: center;
}
.sleeve-note-icon svg { width: 28px; height: 28px; color: var(--teal-deep); }
.sleeve-note-card .eyebrow { margin-bottom: 14px; display: inline-flex; }
.sleeve-note-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(24px, 2.6vw, 30px);
  font-weight: 400;
  line-height: 1.18;
  letter-spacing: -0.01em;
  color: var(--ink-deep);
  margin-bottom: 14px;
}
.sleeve-note-card h3 em { font-style: italic; color: var(--teal-deep); font-weight: 400; }
.sleeve-note-card p {
  font-size: 15px;
  line-height: 1.75;
  color: var(--ink-soft);
  font-weight: 300;
}

/* ═══ KEY FACTS BAR ═══ */
.keyfacts {
  background: var(--bg-warm);
  padding: 45px 0;
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}
/* Tighter spacing when keyfacts follow a page-header */
.page-header + .keyfacts {
  padding: 50px 0;
}
.page-header.tight,
.page-header:has(+ .keyfacts) {
  padding-bottom: 38px;
}
.keyfacts-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  max-width: 1100px;
  margin: 0 auto;
}
.keyfact {
  text-align: center;
  padding: 0 24px;
  border-right: 1px solid var(--line);
}
.keyfact:last-child { border-right: none; }
.keyfact-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 48px;
  font-weight: 400;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}
.keyfact-num .unit { font-size: 0.5em; color: var(--gold); font-style: italic; margin-left: 4px; }
.keyfact-label {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-soft);
  font-weight: 600;
  line-height: 1.5;
}

/* ═══ EXPERTISE SECTION (REPOSITIONED) ═══ */
.expertise-section {
  background: var(--bg);
  position: relative;
  overflow: hidden;
}
.expertise-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 65px;
  align-items: center;
}
.expertise-visual {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: 6px;
  overflow: hidden;
  background: var(--navy-deep);
}
.expertise-visual::before {
  content: '';
  position: absolute;
  inset: -16px;
  border: 1px solid var(--gold);
  z-index: -1;
  border-radius: 6px;
}
.expertise-visual img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(.92);
}
.expertise-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(5, 17, 33, 0.5) 100%);
}
.expertise-visual-tag {
  position: absolute;
  bottom: 28px; left: 28px; right: 28px;
  color: var(--bg);
  z-index: 2;
}
.expertise-visual-tag .eyebrow { color: var(--warm); }
.expertise-visual-tag .eyebrow::before { background: var(--warm); }
.expertise-visual-tag h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  font-weight: 400;
  font-style: italic;
  line-height: 1.3;
  margin-top: 10px;
}

.expertise-content h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 42px;
  font-weight: 400;
  line-height: 1.15;
  margin: 18px 0 28px;
  color: var(--ink);
  letter-spacing: -0.015em;
}
.expertise-content h3 em { font-style: italic; color: var(--navy); }
.expertise-content > p {
  font-size: 16px;
  line-height: 1.85;
  color: var(--ink-soft);
  margin-bottom: 22px;
  font-weight: 300;
}

.expertise-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 36px;
  padding-top: 36px;
  border-top: 1px solid var(--line);
}
.expertise-highlight {
  background: var(--bg-warm);
  border-radius: 10px;
  padding: 24px 22px;
  border: 1px solid var(--line-soft);
}
.expertise-highlight-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 38px;
  font-weight: 400;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}
.expertise-highlight-num .unit { font-size: 0.5em; color: var(--gold); }
.expertise-highlight-label {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-soft);
  font-weight: 700;
  line-height: 1.4;
}
.expertise-highlight-sub {
  font-size: 12px;
  color: var(--muted);
  font-weight: 400;
  margin-top: 6px;
  line-height: 1.5;
}

/* ═══ PROGRAMME (Multidisciplinary) ═══ */
.programme {
  background: var(--bg-warm);
  position: relative;
}
.programme-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 58px;
  align-items: center;
  margin-bottom: 48px;
}
.programme-intro h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 4.4vw, 54px);
  font-weight: 400;
  line-height: 1.1;
  margin-top: 18px;
  margin-bottom: 30px;
  letter-spacing: -0.02em;
}
.programme-intro h2 em { font-style: italic; color: var(--navy); font-weight: 300; }
.programme-intro p {
  font-size: 16px;
  line-height: 1.85;
  color: var(--ink-soft);
  font-weight: 300;
  margin-bottom: 18px;
}

.programme-team {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.team-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 34px 28px;
  text-align: center;
  transition: all .35s var(--ease);
}
.team-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold);
}
.team-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--bg-warm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 22px;
  border: 1px solid var(--line);
}
.team-icon svg { width: 28px; height: 28px; stroke: var(--navy); fill: none; stroke-width: 1.5; }
.team-card h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.team-role {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 14px;
}
.team-card p {
  font-size: 13px;
  line-height: 1.65;
  color: var(--ink-soft);
  font-weight: 300;
}

/* Programme features cards */
.programme-features {
  margin-top: 48px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 60px;
  position: relative;
  overflow: hidden;
}
.programme-features::before {
  content: '';
  position: absolute;
  top: 0; left: 0; bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, var(--navy), var(--gold));
}
.programme-features-head {
  text-align: center;
  margin-bottom: 30px;
}
.programme-features-head h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 34px;
  font-weight: 500;
  color: var(--ink);
  margin-top: 16px;
  letter-spacing: -0.015em;
}
.programme-features-head h3 em { font-style: italic; color: var(--navy); font-weight: 400; }

.features-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px 40px;
}
.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 16px 0;
}
.feature-check {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--teal-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(45, 122, 122, 0.2);
}
.feature-check svg { stroke: var(--teal); width: 14px; height: 14px; fill: none; stroke-width: 2.4; }
.feature-text strong {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 4px;
}
.feature-text span {
  display: block;
  font-size: 13px;
  color: var(--ink-soft);
  font-weight: 300;
  line-height: 1.6;
}

/* ═══ LIFESTYLE GOALS — Inspiration everself ═══ */
.goals {
  background: var(--bg-cool);
  position: relative;
}
.goals-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-top: 34px;
}
.goal-card {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  cursor: default;
  transition: transform .6s var(--ease), box-shadow .6s var(--ease);
  box-shadow: 0 14px 36px rgba(30, 42, 58, 0.08);
}
.goal-card:hover {
  transform: translateY(-8px) scale(1.012);
  box-shadow: 0 28px 60px rgba(30, 42, 58, 0.18);
}
.goal-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 1.4s var(--ease);
}
.goal-card:hover .goal-bg { transform: scale(1.08); }

/* Default lifestyle images — replaced by admin if uploaded */
#goal-img-1 { background-image: url('goal-confidence.jpg'); }
#goal-img-2 { background-image: url('goal-family.jpg'); }
#goal-img-3 { background-image: url('goal-energy.jpg'); }
#goal-img-4 { background-image: url('goal-health.jpg'); }

.goal-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
    rgba(30, 42, 58, 0.15) 0%,
    rgba(30, 42, 58, 0.55) 55%,
    rgba(30, 42, 58, 0.92) 100%);
}
.goal-content {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 30px 26px;
  color: var(--white);
  z-index: 2;
}
.goal-eyebrow {
  display: inline-block;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--teal-soft);
  font-weight: 700;
  margin-bottom: 12px;
  padding: 5px 10px;
  border-radius: 100px;
  background: rgba(91, 169, 169, 0.18);
  border: 1px solid rgba(91, 169, 169, 0.35);
}
.goal-content h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.15;
  margin-bottom: 14px;
  color: var(--white);
}
.goal-content p {
  font-size: 13px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 400;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height .6s var(--ease), opacity .5s var(--ease), margin .6s var(--ease);
}
.goal-card:hover .goal-content p {
  max-height: 120px;
  opacity: 1;
}

/* ═══ CLINICAL STATS — moved to bottom of homepage ═══ */
.clinical-stats {
  background: linear-gradient(160deg, var(--ink-deep) 0%, var(--navy) 100%);
  color: var(--white);
  padding: 72px 0 64px;
  position: relative;
  overflow: hidden;
}
.clinical-stats::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--teal-soft), transparent);
}
.clinical-stats::after {
  content: '';
  position: absolute;
  top: -200px; right: -150px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(91, 169, 169, 0.18), transparent 70%);
  pointer-events: none;
}
.clinical-stats-head {
  text-align: center;
  margin-bottom: 42px;
  max-width: 760px;
  margin-left: auto; margin-right: auto;
  position: relative;
  z-index: 1;
}
.eyebrow-on-dark {
  color: var(--teal-soft) !important;
}
.eyebrow-on-dark::before {
  background: var(--teal-soft) !important;
}
.clinical-stats-head h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(34px, 4vw, 50px);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-top: 18px;
  color: var(--white);
}
.clinical-stats-head h2 em {
  font-style: italic;
  color: var(--teal-soft);
  font-weight: 300;
}
.clinical-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
  z-index: 1;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.clinical-stat {
  padding: 50px 36px;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .9s var(--ease), transform .9s var(--ease);
}
.clinical-stat:last-child { border-right: none; }
.clinical-stat.stat-visible {
  opacity: 1;
  transform: translateY(0);
}
.clinical-stat:nth-child(1).stat-visible { transition-delay: 0s; }
.clinical-stat:nth-child(2).stat-visible { transition-delay: 0.12s; }
.clinical-stat:nth-child(3).stat-visible { transition-delay: 0.24s; }
.clinical-stat:nth-child(4).stat-visible { transition-delay: 0.36s; }
.clinical-stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 72px;
  font-weight: 400;
  line-height: 1;
  color: var(--white);
  margin-bottom: 18px;
  letter-spacing: -0.03em;
  text-shadow: 0 0 60px rgba(91, 169, 169, 0.25);
  display: inline-flex;
  align-items: baseline;
  gap: 2px;
}
.clinical-stat-num .unit {
  font-size: 0.4em;
  color: var(--teal-soft);
  font-weight: 400;
  margin-left: 4px;
  font-style: italic;
}
.clinical-stat-label {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.6;
  font-weight: 600;
}

/* ═══ PROGRAMME LINK (homepage → programme page) ═══ */
.programme-link-wrap {
  text-align: center;
  margin-top: 42px;
}
.programme-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 32px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 100px;
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: 0.02em;
  transition: all .4s var(--ease);
}
.programme-link:hover {
  background: var(--navy);
  color: var(--bg);
  border-color: var(--navy);
  transform: translateY(-2px);
  box-shadow: 0 18px 36px rgba(30, 42, 58, 0.18);
}
.programme-link svg { transition: transform .4s var(--ease); }
.programme-link:hover svg { transform: translateX(6px); }

/* ═══ BOSTON SCIENTIFIC SECTION ═══ */
.boston-section {
  background: var(--bg-cool);
  position: relative;
  overflow: hidden;
}
.boston-section::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(58, 140, 140, 0.06), transparent 70%);
  pointer-events: none;
}
.boston-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 70px 64px;
  display: grid;
  grid-template-columns: 1.3fr 0.85fr;
  gap: 50px;
  align-items: center;
  box-shadow: 0 30px 80px rgba(30, 42, 58, 0.06);
  position: relative;
  overflow: hidden;
}
.boston-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--teal), var(--navy), var(--teal));
}
.boston-content h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(34px, 4vw, 48px);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--ink-deep);
  margin-top: 18px;
  margin-bottom: 26px;
}
.boston-content h2 em { font-style: italic; color: var(--teal-deep); font-weight: 400; }
.boston-content > p {
  font-size: 16px;
  line-height: 1.85;
  color: var(--ink-soft);
  margin-bottom: 36px;
  font-weight: 400;
}
.boston-content > p strong { color: var(--ink-deep); font-weight: 700; }

.boston-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}
.boston-feature {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.boston-feature-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--teal-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(58, 140, 140, 0.18);
  transition: transform .4s var(--ease);
}
.boston-feature:hover .boston-feature-icon { transform: scale(1.08) rotate(-5deg); }
.boston-feature-icon svg { stroke: var(--teal-deep); width: 20px; height: 20px; fill: none; stroke-width: 1.7; }
.boston-feature strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--ink-deep);
  margin-bottom: 4px;
  letter-spacing: -0.005em;
}
.boston-feature span {
  display: block;
  font-size: 13px;
  color: var(--ink-soft);
  line-height: 1.55;
}

.boston-visual {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.boston-logo-block {
  background: linear-gradient(135deg, var(--ink-deep), var(--navy));
  border-radius: 16px;
  padding: 50px 32px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.boston-logo-block::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--teal-soft), transparent);
}
.boston-logo { color: var(--white); margin-bottom: 20px; }
.boston-logo svg { max-width: 200px; height: auto; margin: 0 auto; display: block; }
.boston-tag {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--teal-soft);
  font-weight: 700;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.boston-stat-strip {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.boston-stat-strip > div {
  background: var(--bg-cool);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 22px 20px;
  text-align: center;
  transition: all .35s var(--ease);
}
.boston-stat-strip > div:hover {
  border-color: var(--teal);
  transform: translateY(-3px);
}
.boston-stat-n {
  font-family: 'Cormorant Garamond', serif;
  font-size: 38px;
  font-weight: 400;
  color: var(--teal-deep);
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}
.boston-stat-n sup { font-size: 0.5em; vertical-align: super; color: var(--gold); }
.boston-stat-l {
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-soft);
  font-weight: 600;
  line-height: 1.45;
}
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 42px;
  background: var(--white);
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--line);
}
.step {
  padding: 44px 32px;
  border-right: 1px solid var(--line-soft);
  position: relative;
  transition: background .5s var(--ease), transform .5s var(--ease);
  overflow: hidden;
}
.step::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--teal-soft), var(--teal-deep));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .6s var(--ease);
}
.step::after {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 140px; height: 140px;
  background: radial-gradient(circle at top right, rgba(91, 169, 169, 0.12), transparent 70%);
  opacity: 0;
  transition: opacity .5s var(--ease);
  pointer-events: none;
}
.step:last-child { border-right: none; }
.step:hover {
  background: var(--bg-cool);
  transform: translateY(-6px);
}
.step:hover::before { transform: scaleX(1); }
.step:hover::after { opacity: 1; }
.step-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
}
.step-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 58px;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  letter-spacing: -0.04em;
  transition: transform .5s var(--ease), color .5s var(--ease);
}
.step:hover .step-number {
  transform: scale(1.12) translateY(-4px);
  color: var(--teal-deep);
}
.step-icon-wrap {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--bg-warm);
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--line);
  transition: all .5s var(--ease);
}
.step:hover .step-icon-wrap {
  background: var(--teal-deep);
  border-color: var(--teal-deep);
  transform: rotate(-8deg) scale(1.08);
  box-shadow: 0 12px 28px rgba(45, 115, 115, 0.32);
}
.step-icon-wrap svg {
  stroke: var(--navy);
  fill: none;
  stroke-width: 1.6;
  transition: stroke .4s var(--ease);
}
.step:hover .step-icon-wrap svg { stroke: var(--white); }
.step h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  font-weight: 500;
  margin-bottom: 14px;
  color: var(--ink);
  line-height: 1.2;
  letter-spacing: -0.01em;
  transition: color .4s var(--ease);
}
.step:hover h4 { color: var(--teal-deep); }
.step p {
  font-size: 14px;
  line-height: 1.75;
  color: var(--ink-soft);
  font-weight: 300;
}
.step-duration {
  display: inline-block;
  margin-top: 18px;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  padding: 5px 12px;
  background: rgba(91, 169, 169, 0.1);
  border-radius: 100px;
  transition: all .4s var(--ease);
}
.step:hover .step-duration {
  background: var(--teal-deep);
  color: var(--white);
}

/* ═══ RESULTS (DARK) ═══ */
.results-section {
  background: var(--ink);
  color: var(--bg);
  position: relative;
  overflow: hidden;
}
.results-section::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(196, 165, 116, 0.08), transparent 70%);
  pointer-events: none;
}
.results-section .section-head h2 { color: var(--bg); }
.results-section .section-head h2 em { color: var(--warm); }
.results-section .section-head p { color: rgba(255,255,255,0.7); }
.results-section .eyebrow { color: var(--warm); }
.results-section .eyebrow::before { background: var(--warm); }

.results-layout {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 43px;
  align-items: start;
  position: relative;
  z-index: 2;
}
.results-feature {
  background: linear-gradient(135deg, rgba(255,255,255,0.05), rgba(255,255,255,0.01));
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 56px 50px;
  position: relative;
  overflow: hidden;
}
.results-feature::before {
  content: '';
  position: absolute;
  top: -150px; right: -150px;
  width: 360px; height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(196, 165, 116, 0.2), transparent 70%);
}
.results-feature-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 144px;
  font-weight: 300;
  line-height: 0.95;
  letter-spacing: -0.05em;
  background: linear-gradient(135deg, var(--bg) 0%, var(--warm) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 12px;
  position: relative;
  z-index: 2;
}
.results-feature-num sup {
  font-size: 0.38em;
  color: var(--warm);
  font-weight: 300;
  vertical-align: super;
  -webkit-text-fill-color: var(--warm);
}
.results-feature-sub {
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--warm);
  margin-bottom: 32px;
  font-weight: 700;
  position: relative;
  z-index: 2;
}
.results-feature p {
  font-size: 16px;
  line-height: 1.8;
  color: rgba(255,255,255,0.78);
  font-weight: 300;
  position: relative;
  z-index: 2;
}
.results-feature-source {
  margin-top: 30px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  font-weight: 600;
  position: relative;
  z-index: 2;
}

/* ═══ results-features (3-card layout, used for TORe + Sleeve "en chiffres") ═══ */
.results-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 36px;
  position: relative;
  z-index: 2;
}
.results-features .results-feature {
  padding: 44px 36px;
  border-radius: 18px;
  background: linear-gradient(160deg, rgba(255,255,255,0.07), rgba(255,255,255,0.02));
  border: 1px solid rgba(255,255,255,0.12);
  position: relative;
  overflow: hidden;
}
.results-features .results-feature::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 240px; height: 240px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(91,169,169,0.15), transparent 70%);
  pointer-events: none;
}
.results-features .results-feature-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(54px, 5.6vw, 72px);
  font-weight: 300;
  line-height: 1;
  letter-spacing: -0.03em;
  background: linear-gradient(135deg, var(--bg) 0%, var(--teal-soft) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 22px;
  position: relative;
  z-index: 2;
}
.results-feature-unit {
  font-size: 0.45em;
  font-weight: 400;
  color: var(--teal-soft);
  -webkit-text-fill-color: var(--teal-soft);
  margin-left: 4px;
  vertical-align: super;
}
.results-feature-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 19px;
  font-weight: 500;
  color: var(--white);
  line-height: 1.3;
  letter-spacing: -0.01em;
  margin-bottom: 14px;
  position: relative;
  z-index: 2;
}
.results-features .results-feature p {
  font-size: 13px;
  line-height: 1.7;
  color: rgba(255,255,255,0.7);
  font-weight: 300;
  position: relative;
  z-index: 2;
}
/* Smaller, more elegant version for non-percentage glyphs (▼) */
.results-feature-num.results-feature-num--icon {
  font-size: clamp(34px, 3.2vw, 42px);
  background: none;
  -webkit-text-fill-color: var(--teal-soft);
  color: var(--teal-soft);
  line-height: 1.2;
}
.results-sources {
  margin-top: 36px;
  text-align: center;
  font-size: 12px;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.48);
  font-weight: 400;
  position: relative;
  z-index: 2;
}
.results-sources em { color: rgba(255,255,255,0.62); font-style: italic; }

.results-secondary {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 24px;
  margin-bottom: 24px;
}
.result-mini {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  padding: 26px 24px;
}
.result-mini-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 38px;
  font-weight: 400;
  color: var(--warm);
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}
.result-mini-l {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  font-weight: 600;
  line-height: 1.4;
}

.results-benefits {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  overflow: hidden;
}
.benefit {
  background: var(--ink);
  padding: 24px 26px;
  display: flex;
  align-items: center;
  gap: 22px;
  transition: background .35s var(--ease);
}
.benefit:hover { background: rgba(255,255,255,0.04); }
.benefit-icon {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(196, 165, 116, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(196, 165, 116, 0.2);
}
.benefit-icon svg { width: 22px; height: 22px; stroke: var(--warm); fill: none; stroke-width: 1.5; }
.benefit-text h5 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 500;
  color: var(--bg);
  margin-bottom: 3px;
  letter-spacing: -0.01em;
}
.benefit-text p {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  font-weight: 300;
  line-height: 1.5;
  margin: 0;
}

/* ═══ ELIGIBILITY ═══ */
.eligibility-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 64px 60px;
  margin-top: 36px;
  position: relative;
  overflow: hidden;
}
.eligibility-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 3px;
  background: linear-gradient(90deg, var(--navy), var(--gold), var(--navy));
}

/* ═══ Eligibility criteria — refonte typographique élégante (TORe + Sleeve) ═══ */
.eligibility-content > .eyebrow { display: inline-flex; }
.eligibility-content > h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(32px, 4vw, 46px);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--ink-deep);
  margin: 16px 0 18px;
}
.eligibility-content > h2 em { font-style: italic; color: var(--teal-deep); font-weight: 400; }
.eligibility-lead {
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink-soft);
  font-weight: 300;
  margin-bottom: 30px;
  max-width: 720px;
}
.eligibility-criteria {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px 56px;
  margin-bottom: 34px;
}
.eligibility-criterion {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 26px;
  align-items: flex-start;
  position: relative;
}
.eligibility-criterion .eligibility-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 76px;
  font-weight: 300;
  line-height: 0.85;
  color: var(--teal-deep);
  letter-spacing: -0.05em;
  text-align: right;
  padding-top: 4px;
  position: relative;
}
.eligibility-criterion p {
  font-size: 15px;
  line-height: 1.75;
  color: var(--ink-soft);
  font-weight: 300;
  padding-top: 6px;
  margin: 0;
}
.eligibility-criterion p strong {
  color: var(--ink-deep);
  font-weight: 600;
}

.eligibility-quote {
  background: linear-gradient(135deg, var(--bg-cool) 0%, var(--teal-bg) 100%);
  border-left: 4px solid var(--teal-deep);
  padding: 32px 40px;
  border-radius: 12px;
  margin-top: 40px;
  position: relative;
}
.eligibility-quote::before {
  content: '"';
  position: absolute;
  top: -10px;
  left: 24px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 100px;
  line-height: 1;
  color: var(--teal-deep);
  opacity: 0.18;
  font-weight: 400;
}
.eligibility-quote p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 19px;
  line-height: 1.55;
  color: var(--ink-deep);
  font-weight: 400;
  margin: 0;
  position: relative;
  z-index: 1;
}
.eligibility-quote p em {
  font-style: italic;
}

.imc-visual { position: relative; padding: 50px 0 24px; }
.imc-track {
  position: relative;
  height: 10px;
  background: linear-gradient(90deg,
    #DBE3E8 0%, #DBE3E8 33%,
    var(--teal-soft) 33%, var(--teal-soft) 66%,
    #C9D5DC 66%, #C9D5DC 100%);
  border-radius: 100px;
}
.imc-ticks {
  display: flex;
  justify-content: space-between;
  margin-top: 18px;
}
.imc-tick {
  text-align: center;
  font-size: 12px;
  color: var(--muted);
  font-weight: 500;
}
.imc-tick.highlight { color: var(--navy); font-weight: 800; }
.imc-zone-label {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  background: var(--navy-deep);
  color: var(--bg);
  padding: 8px 22px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  box-shadow: 0 6px 18px rgba(14, 42, 74, 0.28);
}
.imc-zone-label::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 0; height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-top: 8px solid var(--navy-deep);
}

.eligibility-cases {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  margin-top: 30px;
  background: var(--line);
  border-radius: 12px;
  overflow: hidden;
}
.case-item {
  background: var(--white);
  padding: 36px 32px;
}
.case-item-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 44px;
  color: var(--gold);
  font-weight: 300;
  line-height: 1;
  margin-bottom: 18px;
  letter-spacing: -0.03em;
}
.case-item h5 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}
.case-item p {
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.7;
  font-weight: 300;
}

/* ═══ ELIGIBILITY STATEMENT (client text) ═══ */
.eligibility-statement {
  display: flex;
  gap: 22px;
  align-items: flex-start;
  background: var(--teal-bg);
  border: 1px solid rgba(58, 140, 140, 0.18);
  border-radius: 14px;
  padding: 30px 32px;
  margin-top: 44px;
}
.eligibility-statement-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(58, 140, 140, 0.25);
}
.eligibility-statement-icon svg { stroke: var(--teal-deep); width: 22px; height: 22px; }
.eligibility-statement-text p {
  font-size: 15px;
  line-height: 1.8;
  color: var(--ink-soft);
  font-weight: 400;
  margin-bottom: 12px;
}
.eligibility-statement-text p:last-child { margin-bottom: 0; }
.eligibility-statement-text strong { color: var(--teal-deep); font-weight: 700; }

.eligibility-cta {
  text-align: center;
  margin-top: 44px;
}

/* ═══ TECHNIQUES COMPARISON TABLE (4 cols) ═══ */
.techtable {
  margin-top: 36px;
}
.techtable-scroll {
  overflow-x: auto;
  border-radius: 16px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
  -webkit-overflow-scrolling: touch;
}
.techtable-grid {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  min-width: 760px;
}
.techtable-grid th,
.techtable-grid td {
  padding: 22px 24px;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid var(--line-soft);
  border-right: 1px solid var(--line-soft);
  font-size: 14px;
  line-height: 1.55;
  color: var(--ink-soft);
}
.techtable-grid th:last-child,
.techtable-grid td:last-child { border-right: none; }
.techtable-grid thead th {
  font-family: 'Cormorant Garamond', serif;
  font-size: 21px;
  font-weight: 500;
  color: var(--ink-deep);
  background: var(--bg-warm);
  border-bottom: 2px solid var(--line);
  letter-spacing: -0.01em;
  position: relative;
}
.techtable-rowhead {
  font-weight: 700 !important;
  color: var(--ink-deep) !important;
  font-size: 13px !important;
  background: rgba(0,0,0,0.015);
  font-family: 'Manrope', sans-serif !important;
  width: 18%;
}
.techtable-col-highlight {
  background: rgba(58, 140, 140, 0.06) !important;
}
thead .techtable-col-highlight {
  background: var(--navy-deep) !important;
  color: var(--bg) !important;
}
.techtable-tag {
  display: block;
  font-family: 'Manrope', sans-serif;
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--warm);
  font-weight: 700;
  margin-bottom: 6px;
}
.techtable-col-highlight strong { color: var(--teal-deep); font-weight: 700; }
.techtable-note {
  font-size: 13px;
  color: var(--muted);
  font-style: italic;
  text-align: center;
  margin-top: 22px;
  line-height: 1.6;
}

/* ═══ SCIENTIFIC REFERENCES ═══ */
.references-block {
  margin-top: 36px;
  background: var(--bg-cool);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 44px 48px;
}
.references-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  font-weight: 500;
  color: var(--ink-deep);
  margin-bottom: 24px;
  letter-spacing: -0.01em;
}
.references-list {
  margin: 0;
  padding-left: 22px;
  counter-reset: ref;
}
.references-list li {
  font-size: 13px;
  line-height: 1.7;
  color: var(--ink-soft);
  margin-bottom: 14px;
  padding-left: 8px;
}
.references-list li:last-child { margin-bottom: 0; }
.references-list li em { font-style: italic; color: var(--ink); }
.references-list a {
  color: var(--teal-deep);
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
}
.references-list a:hover { text-decoration: underline; }

/* ═══ BMI CALCULATOR (candidat page) ═══ */
.bmi-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 40px;
  align-items: stretch;
}
.bmi-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 48px 44px;
  box-shadow: var(--shadow-md);
}
.bmi-card-head { margin-bottom: 34px; }
.bmi-card-head h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 30px;
  font-weight: 500;
  color: var(--ink-deep);
  margin-top: 12px;
  letter-spacing: -0.01em;
}
.bmi-field { margin-bottom: 26px; }
.bmi-field label {
  display: block;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--teal-deep);
  font-weight: 700;
  margin-bottom: 12px;
}
.bmi-input-wrap {
  position: relative;
  display: flex;
  align-items: center;
}
.bmi-input-wrap input {
  width: 100%;
  background: var(--bg-cool);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 18px 60px 18px 20px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 30px;
  font-weight: 500;
  color: var(--ink-deep);
  transition: all .3s var(--ease);
  -moz-appearance: textfield;
}
.bmi-input-wrap input::-webkit-outer-spin-button,
.bmi-input-wrap input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.bmi-input-wrap input:focus {
  outline: none;
  border-color: var(--teal);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(58, 140, 140, 0.1);
}
.bmi-unit {
  position: absolute;
  right: 20px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  pointer-events: none;
}
.bmi-calc-btn {
  width: 100%;
  background: var(--navy-deep);
  color: var(--bg);
  border: none;
  padding: 18px;
  border-radius: 100px;
  font-family: 'Manrope', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: all .35s var(--ease);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 8px;
}
.bmi-calc-btn:hover {
  background: var(--teal-deep);
  transform: translateY(-2px);
  box-shadow: 0 16px 32px rgba(58, 140, 140, 0.25);
}
.bmi-calc-btn svg { transition: transform .3s var(--ease); }
.bmi-calc-btn:hover svg { transform: translateX(5px); }
.bmi-disclaimer {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.6;
  margin-top: 20px;
  text-align: center;
}

/* Result panel */
.bmi-result {
  background: linear-gradient(160deg, var(--ink-deep) 0%, var(--navy) 100%);
  border-radius: 20px;
  padding: 48px 44px;
  color: var(--bg);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.bmi-result::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--teal-soft), transparent);
}
.bmi-result-empty {
  text-align: center;
  opacity: 0.7;
}
.bmi-result-empty-icon {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 24px;
}
.bmi-result-empty-icon svg { width: 28px; height: 28px; stroke: var(--teal-soft); }
.bmi-result-empty p {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255,255,255,0.65);
  max-width: 320px;
  margin: 0 auto;
  font-weight: 300;
}

/* Gauge */
.bmi-gauge { margin-bottom: 34px; }
.bmi-gauge-value {
  text-align: center;
  margin-bottom: 30px;
}
.bmi-gauge-value span {
  font-family: 'Cormorant Garamond', serif;
  font-size: 88px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.03em;
  background: linear-gradient(135deg, var(--bg) 0%, var(--teal-soft) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.bmi-gauge-value small {
  display: block;
  font-family: 'Manrope', sans-serif;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--teal-soft);
  font-weight: 700;
  margin-top: 8px;
}
.bmi-gauge-track {
  position: relative;
  margin-bottom: 12px;
}
.bmi-gauge-segments {
  display: flex;
  height: 8px;
  border-radius: 100px;
  overflow: hidden;
}
.bmi-gauge-segments .seg { height: 100%; }
.seg-1 { width: 33.3%; background: #94A8BC; }
.seg-2 { width: 6.7%; background: #C9D5DC; }
.seg-3 { width: 26.7%; background: var(--teal-soft); }
.seg-4 { width: 33.3%; background: #94A8BC; }
.bmi-gauge-marker {
  position: absolute;
  top: -6px;
  width: 4px;
  height: 20px;
  background: var(--white);
  border-radius: 100px;
  transform: translateX(-50%);
  transition: left .8s var(--ease);
  box-shadow: 0 0 0 3px rgba(30,42,58,0.5), 0 2px 8px rgba(0,0,0,0.3);
}
.bmi-gauge-labels {
  display: flex;
  justify-content: space-between;
  font-size: 10px;
  color: rgba(255,255,255,0.5);
  font-weight: 600;
  letter-spacing: 0.04em;
}

/* Verdict */
.bmi-verdict {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 14px;
  padding: 28px 30px;
  margin-bottom: 24px;
  border-left: 3px solid var(--teal-soft);
}
.bmi-verdict-good { border-left-color: var(--teal-soft); }
.bmi-verdict-mid { border-left-color: var(--warm); }
.bmi-verdict-normal { border-left-color: #5B8BA8; }
.bmi-verdict-badge {
  display: inline-block;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 100px;
  background: rgba(91, 169, 169, 0.15);
  color: var(--teal-soft);
  margin-bottom: 16px;
}
.bmi-verdict-mid .bmi-verdict-badge { background: rgba(255, 255, 255, 0.08); color: rgba(255,255,255,0.85); }
.bmi-verdict-normal .bmi-verdict-badge { background: rgba(148, 168, 188, 0.18); color: #B4C5D6; }
.bmi-verdict h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  font-weight: 500;
  color: var(--bg);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
  line-height: 1.2;
}
.bmi-verdict p {
  font-size: 14px;
  line-height: 1.75;
  color: rgba(255,255,255,0.78);
  font-weight: 300;
}
.bmi-verdict-cta {
  width: 100%;
  background: var(--warm);
  color: var(--ink-deep);
  border-color: var(--warm);
  justify-content: center;
}
.bmi-verdict-cta:hover {
  background: var(--bg);
  border-color: var(--bg);
}

/* IMC reference cards */
.imc-ref-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 30px;
}
.imc-ref-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 32px 26px;
  transition: all .35s var(--ease);
}
.imc-ref-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.imc-ref-card-good { border-color: var(--teal); background: var(--teal-bg); }
.imc-ref-card-mid { border-color: rgba(212, 184, 134, 0.4); }
.imc-ref-range {
  font-family: 'Cormorant Garamond', serif;
  font-size: 36px;
  font-weight: 500;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}
.imc-ref-card-good .imc-ref-range { color: var(--teal-deep); }
.imc-ref-name {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 14px;
}
.imc-ref-card-good .imc-ref-name { color: var(--teal-deep); }
.imc-ref-card p {
  font-size: 13px;
  line-height: 1.65;
  color: var(--ink-soft);
  font-weight: 300;
}

/* ═══ FORMATIONS & CERTIFICATIONS ═══ */
.formations-section {
  background: var(--bg-cool);
}
.formations-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 34px;
  align-items: start;
}
.formations-block {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 44px 40px;
  box-shadow: var(--shadow-sm);
}
.formations-block-head {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 36px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
}
.formations-block-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--teal-bg);
  border: 1px solid rgba(58, 140, 140, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
}
.formations-block-icon svg {
  width: 22px; height: 22px;
  stroke: var(--teal-deep);
}
.formations-block-head h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  font-weight: 500;
  color: var(--ink-deep);
  letter-spacing: -0.01em;
}

/* Timeline */
.formations-timeline {
  list-style: none;
  padding: 0;
  margin: 0;
  position: relative;
}
.formations-timeline::before {
  content: '';
  position: absolute;
  left: 7px;
  top: 6px; bottom: 6px;
  width: 1px;
  background: var(--line);
}
.formation-item {
  position: relative;
  padding-left: 36px;
  padding-bottom: 32px;
}
.formation-item:last-child { padding-bottom: 0; }
.formation-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 6px;
  width: 15px; height: 15px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--teal);
  box-shadow: 0 0 0 4px var(--white);
  z-index: 1;
}
.formation-item-highlight::before {
  background: var(--teal);
  border-color: var(--teal-deep);
  box-shadow: 0 0 0 4px var(--white), 0 0 0 6px rgba(58, 140, 140, 0.2);
}
.formation-year {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--teal-deep);
  font-weight: 700;
  margin-bottom: 8px;
}
.formation-content h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 19px;
  font-weight: 600;
  color: var(--ink-deep);
  letter-spacing: -0.005em;
  line-height: 1.25;
  margin-bottom: 6px;
}
.formation-meta {
  font-size: 12px;
  color: var(--muted);
  font-weight: 600;
  font-style: italic;
  margin-bottom: 12px;
}
.formation-content p {
  font-size: 13.5px;
  line-height: 1.7;
  color: var(--ink-soft);
  font-weight: 400;
}
.formation-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}
.formation-tag {
  font-size: 11px;
  letter-spacing: 0.04em;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 100px;
  background: var(--teal-bg);
  color: var(--teal-deep);
  border: 1px solid rgba(58, 140, 140, 0.15);
}

/* Boston partner highlight block inside certifications */
.formations-partner-block {
  margin-top: 36px;
  padding: 28px 24px;
  background: linear-gradient(135deg, var(--ink-deep) 0%, var(--navy) 100%);
  border-radius: 14px;
  color: var(--white);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.formations-partner-block::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--teal-soft), transparent);
}
.formations-partner-logo {
  color: var(--white);
  margin-bottom: 12px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.formations-partner-logo svg {
  max-width: 180px;
  height: auto;
  margin: 0 auto;
  display: block;
}
.formations-partner-block p {
  font-size: 12.5px;
  line-height: 1.65;
  color: rgba(255,255,255,0.78);
  font-weight: 400;
  max-width: 360px;
  margin: 0 auto;
}

/* ═══ ACTIVITÉ CLINIQUE AU CHEM (Bloc 2 docteur) ═══ */
.clinical-activity-section {
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-cool) 100%);
}
.clinical-activity-subtitle {
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--teal-deep);
  font-weight: 600;
  margin-bottom: 22px !important;
}
.clinical-activity-lead {
  font-size: 16px;
  line-height: 1.75;
  color: var(--ink-soft);
  font-weight: 300;
  max-width: 820px;
  margin: 0 auto;
}
.clinical-activity-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 42px;
}
.clinical-activity-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 36px 32px;
  position: relative;
  transition: all .4s var(--ease);
  overflow: hidden;
}
.clinical-activity-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--teal-soft), var(--teal-deep));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .5s var(--ease);
}
.clinical-activity-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 50px rgba(30, 42, 58, 0.09);
  border-color: var(--teal);
}
.clinical-activity-card:hover::before { transform: scaleX(1); }
.clinical-activity-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 38px;
  font-weight: 400;
  color: var(--teal-deep);
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 18px;
  transition: color .4s var(--ease);
}
.clinical-activity-card:hover .clinical-activity-num { color: var(--teal); }
.clinical-activity-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 500;
  color: var(--ink-deep);
  line-height: 1.25;
  letter-spacing: -0.01em;
  margin-bottom: 16px;
  min-height: 56px;
}
.clinical-activity-card p {
  font-size: 14px;
  line-height: 1.72;
  color: var(--ink-soft);
  font-weight: 300;
  margin: 0;
}
.clinical-activity-card p strong { color: var(--ink-deep); font-weight: 600; }

/* ═══ SOCIÉTÉS SAVANTES (page docteur) ═══ */
.societies-section {
  margin-top: 54px;
  padding-top: 70px;
  border-top: 1px solid var(--line-soft);
}
.societies-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 30px;
}
.societies-head .eyebrow { display: inline-flex; justify-content: center; }
.societies-head h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(28px, 3.4vw, 40px);
  font-weight: 400;
  line-height: 1.18;
  letter-spacing: -0.01em;
  color: var(--ink-deep);
  margin: 18px 0 18px;
}
.societies-head h3 em { font-style: italic; color: var(--teal-deep); font-weight: 400; }
.societies-head p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--ink-soft);
  font-weight: 300;
}
.societies-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.society-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 28px 24px;
  text-align: center;
  transition: all .35s var(--ease);
  position: relative;
  overflow: hidden;
}
.society-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--teal-soft), var(--teal-deep));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .5s var(--ease);
}
.society-card:hover {
  border-color: var(--teal);
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(30, 42, 58, 0.07);
}
.society-card:hover::before { transform: scaleX(1); }
.society-acronym {
  font-family: 'Cormorant Garamond', serif;
  font-size: 36px;
  font-weight: 500;
  color: var(--teal-deep);
  letter-spacing: -0.02em;
  margin-bottom: 14px;
  line-height: 1;
}
.society-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-deep);
  line-height: 1.4;
  margin-bottom: 10px;
  min-height: 36px;
}
.society-scope {
  font-size: 11px;
  letter-spacing: 0.04em;
  color: var(--muted);
  line-height: 1.6;
  font-style: italic;
}

/* ═══ LINKEDIN PILL CTA (page docteur, en bas des formations) ═══ */
.formations-linkedin-cta {
  margin-top: 42px;
  text-align: center;
  padding-top: 50px;
  border-top: 1px solid var(--line-soft);
}
.linkedin-pill {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 16px 28px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 100px;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink-deep);
  letter-spacing: 0.01em;
  transition: all .35s var(--ease);
  text-decoration: none;
}
.linkedin-pill svg:first-of-type {
  width: 22px; height: 22px;
  fill: #0A66C2;
  flex-shrink: 0;
  transition: transform .35s var(--ease);
}
.linkedin-pill .linkedin-arrow {
  width: 14px; height: 14px;
  stroke: var(--ink-soft);
  transition: transform .35s var(--ease);
}
.linkedin-pill:hover {
  background: #0A66C2;
  border-color: #0A66C2;
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(10, 102, 194, 0.28);
}
.linkedin-pill:hover svg:first-of-type { fill: var(--white); transform: scale(1.08); }
.linkedin-pill:hover .linkedin-arrow { stroke: var(--white); transform: translateX(5px); }

/* ═══ COMPARISON TABLE ═══ */
.compare-table {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--line);
  margin-top: 36px;
  box-shadow: var(--shadow-md);
}
.compare-header { display: grid; grid-template-columns: 1fr 1fr 1fr; }
.compare-col-label {
  padding: 36px 32px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}
.compare-col-endos {
  background: var(--navy-deep);
  color: var(--bg);
  padding: 36px 32px;
  position: relative;
}
.compare-col-endos::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--warm);
}
.compare-col-endos .eyebrow { color: var(--warm); margin-bottom: 8px; }
.compare-col-endos .eyebrow::before { background: var(--warm); }
.compare-col-endos h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  margin-top: 8px;
  font-weight: 500;
}
.compare-col-chir { padding: 36px 32px; background: rgba(0,0,0,0.02); }
.compare-col-chir .eyebrow { color: var(--muted); margin-bottom: 8px; }
.compare-col-chir .eyebrow::before { background: var(--muted); }
.compare-col-chir h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  color: var(--muted);
  font-weight: 500;
  margin-top: 8px;
}
.compare-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  border-top: 1px solid var(--line-soft);
}
.compare-row .compare-feature {
  padding: 24px 32px;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  background: rgba(0,0,0,0.02);
}
.compare-row .compare-cell {
  padding: 24px 32px;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.compare-row .compare-cell.good { color: var(--ink); }
.compare-row .compare-cell.bad { color: var(--muted); }
.compare-icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.compare-icon.yes { background: var(--teal-bg); color: var(--teal); }
.compare-icon.no { background: rgba(0,0,0,0.06); color: var(--muted); }
.compare-icon svg { width: 12px; height: 12px; }

/* ═══ DOCTOR LINKEDIN-STYLE CARD ═══ */
.doctor-linkedin-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 40px 44px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 36px;
  align-items: center;
  box-shadow: 0 24px 60px rgba(30, 42, 58, 0.06);
  position: relative;
  overflow: hidden;
}
.doctor-linkedin-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 56px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--teal-deep) 100%);
  z-index: 0;
}
.doctor-linkedin-photo {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  overflow: hidden;
  border: 5px solid var(--white);
  position: relative;
  z-index: 1;
  margin-top: 12px;
  box-shadow: 0 12px 32px rgba(30, 42, 58, 0.18);
}
.doctor-linkedin-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.doctor-linkedin-online {
  position: absolute;
  bottom: 12px; right: 12px;
  width: 22px; height: 22px;
  background: var(--teal);
  border: 3px solid var(--white);
  border-radius: 50%;
  z-index: 2;
}
.doctor-linkedin-online::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: var(--teal);
  opacity: 0.4;
  animation: ringPulse 2s ease-in-out infinite;
}
.doctor-linkedin-body {
  position: relative;
  z-index: 1;
  padding-top: 60px;
}
.doctor-linkedin-name {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 6px;
}
.doctor-linkedin-name h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 36px;
  font-weight: 500;
  color: var(--ink-deep);
  letter-spacing: -0.015em;
  line-height: 1;
}
.doctor-linkedin-verified {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--teal);
  color: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.doctor-linkedin-verified svg { width: 16px; height: 16px; }
.doctor-linkedin-role {
  font-size: 15px;
  color: var(--ink-soft);
  font-weight: 500;
  margin-bottom: 10px;
  letter-spacing: 0.01em;
}
.doctor-linkedin-loc {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 22px;
}
.doctor-linkedin-loc svg { stroke: var(--gold); }
.doctor-linkedin-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}
.doctor-linkedin-tag {
  font-size: 11px;
  letter-spacing: 0.06em;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 100px;
  background: var(--teal-bg);
  color: var(--teal-deep);
  border: 1px solid rgba(58, 140, 140, 0.15);
}
.doctor-linkedin-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 22px;
  background: #0A66C2;
  color: var(--white);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  transition: all .3s var(--ease);
}
.doctor-linkedin-cta:hover {
  background: #084E96;
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(10, 102, 194, 0.3);
}
.doctor-linkedin-cta svg { width: 16px; height: 16px; fill: currentColor; }

/* ═══ ESD HIGHLIGHT BAND ═══ */
.esd-highlight-band {
  background: linear-gradient(135deg, var(--ink-deep) 0%, var(--navy) 100%);
  border-radius: 22px;
  padding: 56px 60px;
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 43px;
  align-items: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.esd-highlight-band::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 360px; height: 360px;
  background: radial-gradient(circle, rgba(58, 140, 140, 0.25), transparent 70%);
  pointer-events: none;
}
.esd-highlight-band::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--teal-soft), transparent);
}
.esd-highlight-num-block {
  text-align: center;
  position: relative;
  z-index: 1;
}
.esd-highlight-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 144px;
  font-weight: 300;
  line-height: 1;
  letter-spacing: -0.05em;
  background: linear-gradient(135deg, var(--white) 0%, var(--teal-soft) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 14px;
}
.esd-unit {
  font-size: 0.32em;
  font-style: italic;
  color: var(--teal-soft);
  -webkit-text-fill-color: var(--teal-soft);
  font-weight: 400;
  margin-left: 4px;
}
.esd-highlight-label {
  font-size: 14px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--teal-soft);
  font-weight: 700;
  margin-bottom: 6px;
}
.esd-highlight-sub {
  font-size: 11px;
  color: rgba(255,255,255,0.5);
  font-weight: 500;
  letter-spacing: 0.04em;
}
.esd-highlight-text { position: relative; z-index: 1; }
.esd-highlight-text .eyebrow {
  color: var(--teal-soft);
}
.esd-highlight-text .eyebrow::before { background: var(--teal-soft); }
.esd-highlight-text h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(26px, 2.8vw, 34px);
  font-weight: 400;
  line-height: 1.25;
  margin: 18px 0 18px;
  color: var(--white);
  letter-spacing: -0.015em;
}
.esd-highlight-text h3 em { font-style: italic; color: var(--teal-soft); font-weight: 400; }
.esd-highlight-text p {
  font-size: 15px;
  line-height: 1.8;
  color: rgba(255,255,255,0.78);
  font-weight: 400;
}
.doctor-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 65px;
  align-items: center;
}
.doctor-photo {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: 6px;
  overflow: hidden;
}
.doctor-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.doctor-photo-frame {
  position: absolute;
  inset: -16px -16px 28px 28px;
  border: 1px solid var(--gold);
  border-radius: 6px;
  z-index: -1;
}
.doctor-photo-tag {
  position: absolute;
  bottom: 22px;
  left: 22px;
  background: rgba(255,255,255,0.94);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 14px 20px;
  border-radius: 8px;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink);
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 10px;
}
.doctor-photo-tag-icon {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--navy-deep);
  display: flex; align-items: center; justify-content: center;
  color: var(--warm);
  font-family: 'Cormorant Garamond', serif;
  font-size: 13px;
  font-weight: 600;
}

.doctor-content h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 48px;
  font-weight: 400;
  line-height: 1.1;
  margin: 20px 0 14px;
  color: var(--ink);
  letter-spacing: -0.02em;
}
.doctor-role {
  font-size: 14px;
  letter-spacing: 0.06em;
  color: var(--navy);
  font-weight: 600;
  margin-bottom: 28px;
}
.doctor-content p {
  font-size: 16px;
  line-height: 1.85;
  color: var(--ink-soft);
  margin-bottom: 22px;
  font-weight: 300;
}
.doctor-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 42px;
  padding-top: 42px;
  border-top: 1px solid var(--line);
}
.doctor-stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 44px;
  font-weight: 400;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}
.doctor-stat-label {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
}
.doctor-affiliations {
  margin-top: 36px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.doctor-affil {
  font-size: 11px;
  color: var(--ink-soft);
  letter-spacing: 0.04em;
  font-weight: 600;
  padding: 9px 18px;
  border: 1px solid var(--line);
  border-radius: 100px;
  background: var(--white);
  transition: all .3s var(--ease);
}
.doctor-affil:hover { border-color: var(--gold); color: var(--navy); }
.doctor-linkedin-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 32px;
  padding: 13px 24px;
  background: var(--navy);
  color: var(--bg);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  transition: all .3s var(--ease);
}
.doctor-linkedin-btn:hover {
  background: var(--navy-deep);
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(14, 42, 74, 0.22);
}
.doctor-linkedin-btn svg { width: 16px; height: 16px; fill: currentColor; }

/* ═══ EXPERTISE COMPLEMENTARY (ESD) ═══ */
.expertise-secondary {
  background: var(--bg-warm);
  position: relative;
}
.expertise-secondary-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 60px 56px;
  margin-top: 30px;
  position: relative;
  overflow: hidden;
}
.expertise-secondary-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, var(--navy), var(--gold));
}
.expertise-secondary-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 43px;
  align-items: center;
}
.expertise-secondary-content h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 36px;
  font-weight: 400;
  margin: 18px 0 24px;
  color: var(--ink);
  line-height: 1.15;
  letter-spacing: -0.015em;
}
.expertise-secondary-content h3 em { font-style: italic; color: var(--navy); }
.expertise-secondary-content p {
  font-size: 15px;
  line-height: 1.85;
  color: var(--ink-soft);
  font-weight: 300;
  margin-bottom: 16px;
}
.expertise-stat-block {
  background: var(--navy-deep);
  color: var(--bg);
  border-radius: 14px;
  padding: 42px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.expertise-stat-block::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.expertise-stat-block-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 108px;
  font-weight: 300;
  color: var(--warm);
  line-height: 1;
  letter-spacing: -0.04em;
  margin-bottom: 14px;
}
.expertise-stat-block-label {
  font-size: 14px;
  color: var(--bg);
  line-height: 1.5;
  font-weight: 500;
  max-width: 220px;
  margin: 0 auto;
}
.expertise-stat-block-sub {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--warm);
  font-weight: 700;
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(212, 184, 134, 0.2);
}

/* Alt variant — list version (no number) */
.expertise-stat-block-eyebrow {
  display: inline-block;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--teal-soft);
  font-weight: 700;
  padding: 6px 14px;
  background: rgba(91, 169, 169, 0.14);
  border: 1px solid rgba(91, 169, 169, 0.28);
  border-radius: 100px;
  margin-bottom: 22px;
}
.expertise-stat-block-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 32px;
  font-weight: 400;
  color: var(--white);
  line-height: 1.18;
  letter-spacing: -0.01em;
  margin-bottom: 28px;
  text-align: left;
}
.expertise-stat-list {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
}
.expertise-stat-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 14px;
  color: rgba(255,255,255,0.85);
  font-weight: 400;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.expertise-stat-list li:last-child { border-bottom: none; }
.expertise-stat-list .dot {
  width: 6px; height: 6px;
  background: var(--teal-soft);
  border-radius: 50%;
  flex-shrink: 0;
  box-shadow: 0 0 0 4px rgba(91, 169, 169, 0.18);
}

/* ═══ TESTIMONIALS ═══ */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 42px;
}
.testi-card {
  background: var(--white);
  border: 1px solid var(--line);
  padding: 40px 36px;
  border-radius: 14px;
  position: relative;
  transition: all .4s var(--ease);
}
.testi-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold);
}
.testi-quote-mark {
  font-family: 'Cormorant Garamond', serif;
  font-size: 90px;
  line-height: 0.4;
  color: var(--gold);
  position: absolute;
  top: 36px;
  right: 32px;
  opacity: 0.3;
}
.testi-stars {
  color: var(--gold);
  font-size: 14px;
  letter-spacing: 2px;
  margin-bottom: 18px;
}
.testi-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 19px;
  font-weight: 400;
  line-height: 1.5;
  color: var(--ink);
  margin-bottom: 32px;
  font-style: italic;
}
.testi-author {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-top: 26px;
  border-top: 1px solid var(--line-soft);
}
.testi-avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy-deep), var(--navy));
  color: var(--bg);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 19px;
  font-weight: 500;
}
.testi-author-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 2px;
}
.testi-author-meta { font-size: 12px; color: var(--muted); }

/* ═══ STUDIES / ARTICLES ═══ */
.studies-list {
  margin-top: 36px;
  border-top: 1px solid var(--line);
}
.study {
  padding: 36px 0;
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: 130px 1fr auto;
  gap: 40px;
  align-items: start;
  transition: all .35s var(--ease);
}
.study:hover { background: rgba(14, 42, 74, 0.02); padding-left: 20px; padding-right: 20px; }
.study-meta {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  line-height: 1.5;
}
.study-content h5 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 10px;
  line-height: 1.3;
}
.study-content p {
  font-size: 14px;
  color: var(--ink-soft);
  font-weight: 300;
  line-height: 1.7;
}
.study-link {
  font-size: 13px;
  color: var(--navy);
  font-weight: 600;
  letter-spacing: 0.04em;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  padding-top: 6px;
  transition: gap .3s var(--ease);
}
.study-link:hover { color: var(--navy-deep); gap: 14px; }

.articles-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 36px;
}
.article-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 36px 34px;
  transition: all .35s var(--ease);
}
.article-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold);
}
.article-source {
  display: inline-block;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 12px;
}
.article-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 14px;
  line-height: 1.3;
  letter-spacing: -0.01em;
}
.article-card p {
  font-size: 14px;
  color: var(--ink-soft);
  font-weight: 300;
  line-height: 1.7;
  margin-bottom: 22px;
}
.article-link {
  font-size: 13px;
  color: var(--navy);
  font-weight: 600;
  letter-spacing: 0.04em;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding-top: 16px;
  border-top: 1px solid var(--line-soft);
  width: 100%;
  transition: gap .3s var(--ease);
}
.article-link:hover { color: var(--navy-deep); gap: 14px; }
.article-link svg { width: 14px; height: 14px; }

/* ═══ FAQ ═══ */
.faq-list { margin-top: 30px; }
.faq-item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  margin-bottom: 16px;
  overflow: hidden;
  transition: all .4s var(--ease);
}
.faq-item:hover {
  border-color: var(--teal);
  transform: translateX(2px);
}
.faq-item[open] {
  box-shadow: 0 24px 50px rgba(30, 42, 58, 0.06);
  border-color: var(--teal);
  background: var(--bg-cool);
}
.faq-question {
  padding: 28px 34px;
  cursor: pointer;
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 500;
  color: var(--ink-deep);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background .25s;
  letter-spacing: -0.01em;
  gap: 20px;
}
.faq-question::-webkit-details-marker { display: none; }
.faq-question:hover { background: rgba(58, 140, 140, 0.04); }
.faq-question::after {
  content: '';
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--bg-warm);
  background-image:
    linear-gradient(to right, var(--navy) 45%, var(--navy) 55%),
    linear-gradient(to bottom, var(--navy) 45%, var(--navy) 55%);
  background-size: 12px 1.6px, 1.6px 12px;
  background-position: center, center;
  background-repeat: no-repeat;
  border: 1px solid var(--line);
  transition: all .4s var(--ease);
}
.faq-item[open] .faq-question::after {
  background-size: 12px 1.6px, 1.6px 0;
  background-color: var(--teal-bg);
  border-color: var(--teal);
  transform: rotate(180deg);
}
.faq-answer {
  padding: 4px 34px 30px;
  font-size: 15px;
  color: var(--ink-soft);
  font-weight: 400;
  line-height: 1.85;
}
.faq-answer p { margin-bottom: 14px; }
.faq-answer p:last-child { margin-bottom: 0; }
.faq-answer ul { margin: 10px 0; padding-left: 22px; }
.faq-answer li { margin-bottom: 8px; line-height: 1.7; }

/* FAQ Key Info Box */
.faq-keyinfo {
  display: flex;
  align-items: center;
  gap: 18px;
  background: var(--white);
  border: 1px solid var(--line);
  border-left: 3px solid var(--teal);
  border-radius: 8px;
  padding: 18px 22px;
  margin-top: 18px;
  font-size: 14px;
}
.faq-keyinfo-icon {
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--teal-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(58, 140, 140, 0.2);
}
.faq-keyinfo-icon svg { stroke: var(--teal); width: 18px; height: 18px; fill: none; stroke-width: 2; }
.faq-keyinfo-content {
  flex: 1;
  font-size: 13px;
  color: var(--ink-soft);
  line-height: 1.5;
}
.faq-keyinfo-content strong {
  display: block;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--teal-deep);
  font-weight: 700;
  margin-bottom: 4px;
}

/* FAQ inline numbers — make key stats pop */
.faq-num {
  display: inline-block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6em;
  font-weight: 500;
  color: var(--teal-deep);
  letter-spacing: -0.02em;
  line-height: 1;
  margin: 0 2px;
  vertical-align: -2px;
}

/* ═══ CONTACT PAGE ═══ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 58px;
  align-items: start;
}
.contact-info-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 38px;
  font-weight: 500;
  line-height: 1.1;
  margin-top: 16px;
  margin-bottom: 16px;
  letter-spacing: -0.015em;
  color: var(--ink);
}
.contact-info-lead {
  font-size: 16px;
  color: var(--ink-soft);
  font-weight: 300;
  line-height: 1.75;
  margin-bottom: 40px;
}
.contact-detail {
  display: flex;
  gap: 18px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line-soft);
  align-items: flex-start;
}
.contact-detail:last-child { border-bottom: none; }
.contact-detail-icon {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(182, 142, 76, 0.1);
  border: 1px solid rgba(182, 142, 76, 0.2);
  color: var(--gold);
  display: flex; align-items: center; justify-content: center;
}
.contact-detail-label {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
  font-weight: 700;
}
.contact-detail-value {
  font-size: 15px;
  color: var(--ink);
  font-weight: 500;
  line-height: 1.6;
}
.contact-detail-value span {
  display: block;
  font-size: 13px;
  color: var(--muted);
  font-weight: 300;
  margin-top: 4px;
}

.contact-form {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 48px;
  box-shadow: var(--shadow-md);
}
.form-header { margin-bottom: 32px; padding-bottom: 24px; border-bottom: 1px solid var(--line-soft); }
.form-header h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 500;
  color: var(--ink);
  margin-top: 12px;
  letter-spacing: -0.01em;
}
.form-header h3 em { font-style: italic; color: var(--navy); }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.form-group { margin-bottom: 22px; }
.form-group label {
  display: block;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
  font-weight: 700;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 14px 16px;
  font-family: 'Manrope', sans-serif;
  font-size: 14px;
  color: var(--ink);
  transition: all .3s var(--ease);
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--navy);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(14, 42, 74, 0.08);
}
.form-group textarea { resize: vertical; min-height: 130px; font-family: 'Manrope', sans-serif; }

.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin: 4px 0 24px;
  cursor: pointer;
  font-size: 13px;
  color: var(--ink-soft);
  line-height: 1.6;
}
.form-checkbox input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  flex-shrink: 0;
  accent-color: var(--navy);
}
.form-checkbox a { color: var(--navy); text-decoration: underline; }

.form-submit {
  width: 100%;
  background: var(--navy-deep);
  color: var(--bg);
  border: none;
  padding: 18px;
  border-radius: 100px;
  font-family: 'Manrope', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.06em;
  cursor: pointer;
  transition: all .35s var(--ease);
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.form-submit:hover:not(:disabled) {
  background: var(--navy);
  transform: translateY(-2px);
  box-shadow: 0 16px 32px rgba(14, 42, 74, 0.2);
}
.form-submit:disabled { opacity: 0.7; cursor: wait; }

.form-note {
  font-size: 12px;
  color: var(--muted);
  font-weight: 300;
  margin-top: 16px;
  line-height: 1.6;
  text-align: center;
}

/* ═══ LEGAL PAGES ═══ */
.legal-content h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 32px;
  font-weight: 500;
  color: var(--ink);
  margin-top: 34px;
  margin-bottom: 20px;
  letter-spacing: -0.01em;
}
.legal-content h2:first-child { margin-top: 0; }
.legal-content p {
  font-size: 16px;
  line-height: 1.85;
  color: var(--ink-soft);
  font-weight: 300;
  margin-bottom: 16px;
}
.legal-content p strong, .legal-content li strong { color: var(--ink); font-weight: 600; }
.legal-content a {
  color: var(--navy);
  text-decoration: underline;
  text-decoration-color: rgba(14, 42, 74, 0.3);
  text-underline-offset: 3px;
  transition: color .25s;
}
.legal-content a:hover { color: var(--navy-deep); }

.legal-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 16px;
}
.legal-list li {
  font-size: 16px;
  line-height: 1.8;
  color: var(--ink-soft);
  font-weight: 300;
  padding: 8px 0 8px 28px;
  position: relative;
}
.legal-list li::before {
  content: '';
  position: absolute;
  left: 0; top: 16px;
  width: 8px; height: 8px;
  background: var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(182, 142, 76, 0.12);
}

.legal-block {
  background: var(--bg-warm);
  border-left: 3px solid var(--gold);
  padding: 24px 28px;
  border-radius: 4px;
  margin: 20px 0 28px;
}
.legal-block p { margin-bottom: 12px; font-size: 15px; }
.legal-block p:last-child { margin-bottom: 0; }

.legal-update {
  margin-top: 36px;
  padding-top: 30px;
  border-top: 1px solid var(--line);
  font-size: 13px;
  color: var(--muted);
  font-style: italic;
  text-align: center;
}

.cookie-table {
  margin: 24px 0 32px;
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
}
.cookie-row {
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  gap: 0;
  padding: 18px 24px;
  border-bottom: 1px solid var(--line-soft);
  font-size: 14px;
  line-height: 1.6;
}
.cookie-row:last-child { border-bottom: none; }
.cookie-row.cookie-header {
  background: var(--bg-warm);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--gold);
}

/* ═══ FOOTER ═══ */
.footer {
  background: var(--navy-deep);
  color: rgba(255,255,255,0.6);
  padding: 54px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 43px;
  margin-bottom: 36px;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
}
.footer-brand .brand-mark { background: var(--warm); color: var(--navy-deep); }
.footer-brand .brand-mark::after { border-color: rgba(14, 42, 74, 0.2); }
.footer-brand .brand-name { color: var(--bg); }
.footer-brand .brand-sub { color: rgba(255,255,255,0.55); }
.footer-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-size: 19px;
  font-style: italic;
  font-weight: 400;
  color: rgba(255,255,255,0.7);
  line-height: 1.5;
  max-width: 340px;
}
.footer-linkedin {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 22px;
  padding: 11px 18px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 100px;
  color: var(--bg) !important;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  transition: all .25s;
}
.footer-linkedin:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--warm);
}
.footer-linkedin svg { width: 16px; height: 16px; fill: currentColor; }

.footer-col h6 {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--warm);
  margin-bottom: 24px;
  font-weight: 700;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 14px; }
.footer-col a {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  transition: color .25s;
}
.footer-col a:hover { color: var(--bg); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  flex-wrap: wrap;
  gap: 16px;
}
.footer-credit a {
  color: var(--warm);
  font-weight: 600;
  letter-spacing: 0.04em;
}

/* ═══ FINAL CTA BAND ═══ */
.cta-band {
  background: var(--navy-deep);
  color: var(--bg);
  padding: 64px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 600px; height: 300px;
  background: radial-gradient(ellipse, rgba(196, 165, 116, 0.15), transparent 70%);
  pointer-events: none;
}
.cta-band h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(38px, 4.5vw, 54px);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 22px;
  color: var(--bg);
}
.cta-band h2 em { font-style: italic; color: var(--warm); font-weight: 300; }
.cta-band p {
  font-size: 17px;
  color: rgba(255,255,255,0.7);
  font-weight: 300;
  max-width: 600px;
  margin: 0 auto 36px;
  line-height: 1.7;
}
.cta-band .btn-primary {
  background: var(--warm);
  color: var(--ink);
  border-color: var(--warm);
}
.cta-band .btn-primary:hover {
  background: var(--bg);
  border-color: var(--bg);
}

/* ═══ RESPONSIVE ═══ */
@media (max-width: 1100px) {
  section { padding: 64px 0; }
  .nav-links { display: none; }
  .nav-links.open {
    display: flex !important;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    flex-direction: column;
    align-items: center;
    background: #5BA9A9;
    padding: 24px 32px;
    gap: 18px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 20px 40px rgba(30, 42, 58, 0.18);
  }
  .nav-links.open li {
    width: 100%;
    text-align: center;
  }
  .nav-links.open a, .nav-links.open .nav-parent { color: var(--white); }
  .burger { display: block; }
  /* Mobile dropdown: turns into expandable list */
  .nav-has-dropdown {
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .nav-has-dropdown > a,
  .nav-has-dropdown > .nav-parent {
    justify-content: center;
    display: inline-flex;
    align-items: center;
  }
  .nav-dropdown {
    position: static;
    transform: none;
    left: auto;
    right: auto;
    background: rgba(255,255,255,0.08);
    box-shadow: none;
    padding: 6px;
    margin: 10px 0 0;
    min-width: 0;
    width: 90%;
    max-width: 320px;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    display: none;
    border-radius: 12px;
    overflow: hidden;
  }
  .nav-has-dropdown.open .nav-dropdown { display: block; }
  .nav-has-dropdown:hover .nav-dropdown,
  .nav-has-dropdown:focus-within .nav-dropdown {
    transform: none;
  }
  .nav-dropdown::before, .nav-dropdown::after { display: none; }
  .nav-dropdown a {
    color: var(--white) !important;
    padding: 12px 14px;
    justify-content: flex-start;
    min-width: 0;
  }
  .nav-dropdown a > span:last-child { min-width: 0; flex: 1; }
  .nav-dropdown a:hover { background: rgba(255,255,255,0.1); }
  .nav-dropdown-num { color: var(--white); }
  .nav-dropdown-title { color: var(--white); }
  .nav-dropdown-sub { color: rgba(255,255,255,0.7); }
  .nav-has-dropdown .nav-caret { transform: rotate(0deg); }
  .nav-has-dropdown.open .nav-caret { transform: rotate(180deg); }
  .hero { padding: 112px 0 150px; }
  .hero-bg-art { display: none; }
  .hero-floating-card { display: none; }
  .hero-grid { grid-template-columns: 1fr; gap: 0; }

  /* Goals on tablet → 2x2 */
  .goals-grid { grid-template-columns: 1fr 1fr; gap: 18px; }
  /* Show description always on tablet (no hover) */
  .goal-content p { max-height: 120px; opacity: 1; }

  /* Formations: 1 col on tablet */
  .formations-layout { grid-template-columns: 1fr; gap: 28px; }
  .formations-block { padding: 36px 32px; }

  /* Clinical stats on tablet → 2x2 */
  .clinical-stats { padding: 54px 0 48px; }
  .clinical-stats-grid { grid-template-columns: 1fr 1fr; }
  .clinical-stat { padding: 38px 26px; border-right: none; }
  .clinical-stat:nth-child(1), .clinical-stat:nth-child(2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }
  .clinical-stat:nth-child(odd) { border-right: 1px solid rgba(255, 255, 255, 0.08); }
  .clinical-stat-num { font-size: 56px; }
  .expertise-grid, .doctor-grid, .results-layout,
  .contact-grid, .expertise-secondary-grid, .programme-intro {
    grid-template-columns: 1fr;
    gap: 43px;
  }
  .pillars-grid { grid-template-columns: 1fr; gap: 18px; }
  .programme-team { grid-template-columns: repeat(2, 1fr); }
  .boston-card { grid-template-columns: 1fr; gap: 50px; padding: 50px 40px; }
  .boston-features { grid-template-columns: 1fr; gap: 18px; }
  .esd-highlight-band { grid-template-columns: 1fr; gap: 40px; text-align: center; padding: 44px 40px; }
  .doctor-linkedin-card { padding: 36px 32px; }
  .bmi-layout { grid-template-columns: 1fr; gap: 28px; }
  .imc-ref-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .step:nth-child(2) { border-right: none; }
  .step:nth-child(1), .step:nth-child(2) { border-bottom: 1px solid var(--line-soft); }
  .testi-grid { grid-template-columns: 1fr; }
  .eligibility-cases { grid-template-columns: 1fr; }
  .features-list { grid-template-columns: 1fr; }
  .programme-features { padding: 44px 36px; }
  .articles-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .hero-stats-inner { grid-template-columns: 1fr 1fr; }
  .hero-stat { padding: 28px 24px; }
  .hero-stat:nth-child(2) { border-right: none; }
  .hero-stat:nth-child(1), .hero-stat:nth-child(2) { border-bottom: 1px solid rgba(255,255,255,0.08); }
  .keyfacts-grid { grid-template-columns: repeat(2, 1fr); gap: 30px 0; }
  .keyfact:nth-child(2) { border-right: none; }
  .trustbar-items { grid-template-columns: repeat(2, 1fr); gap: 8px 16px; }
  .trust-item { border-left: none; border-top: 1px solid var(--line-soft); padding: 22px 14px; }
  .trust-item:nth-child(1), .trust-item:nth-child(2) { border-top: none; padding-top: 0; }
  .goals-grid { grid-template-columns: repeat(2, 1fr); gap: 22px; }
  .goals-section { padding: 58px 0; }
  .goals-head { margin-bottom: 30px; }
  .goal-card-visual { height: 200px; min-height: 200px; }
}

@media (max-width: 700px) {
  .container, .container-narrow, .nav-inner { padding: 0 22px; }
  section { padding: 51px 0; }
  .section-pad { padding: 45px 0; }
  .nav { padding: 14px 0; }
  .nav.scrolled { padding: 10px 0; }
  .nav-cta { padding: 10px 14px; font-size: 12px; }
  .nav-cta svg { display: none; }
  .brand-mark { width: 38px; height: 38px; font-size: 17px; }
  .brand-name { font-size: 17px; }
  .brand-sub { display: none; }
  .nav-inner { gap: 12px; }

  .hero { padding: 120px 0 80px; min-height: auto; }
  .hero h1 { font-size: 44px; line-height: 1.05; }
  .hero-lead { font-size: 17px; }
  .hero-actions { width: 100%; }
  .hero-actions .btn { flex: 1; justify-content: center; padding: 15px 18px; font-size: 13px; }
  .hero-author { margin-top: 12px; }
  .hero-author-text { font-size: 12px; line-height: 1.5; }
  /* Mobile: hide em-dash, push role to new line */
  .hero-author-dash { display: none; }
  .hero-author-role { display: block; margin-top: 4px; }

  /* Goals on mobile → 1 col */
  .goals-grid { grid-template-columns: 1fr; gap: 14px; margin-top: 40px; }
  .goal-card { aspect-ratio: 16 / 11; }
  .goal-content { padding: 22px 22px; }
  .goal-content h3 { font-size: 22px; }

  /* Formations mobile */
  .formations-block { padding: 28px 22px; }
  .formations-block-head h3 { font-size: 20px; }
  .formation-content h4 { font-size: 17px; }
  .formation-item { padding-left: 28px; }

  /* Clinical stats on mobile → 2x2, smaller */
  .clinical-stats { padding: 60px 0 50px; }
  .clinical-stats-head { margin-bottom: 40px; }
  .clinical-stats-head h2 { font-size: 28px; }
  .clinical-stats-grid { grid-template-columns: 1fr 1fr; }
  .clinical-stat { padding: 28px 16px; border-right: none; }
  .clinical-stat:nth-child(1), .clinical-stat:nth-child(2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }
  .clinical-stat:nth-child(odd) { border-right: 1px solid rgba(255, 255, 255, 0.08); }
  .clinical-stat-num { font-size: 44px; margin-bottom: 10px; }
  .clinical-stat-label { font-size: 9.5px; letter-spacing: 0.1em; }

  .hero-stats-wrap { padding: 0; }
  .hero-stats-inner { border-radius: 0; }
  .hero-stat { padding: 24px 18px; }
  .hero-stat-num { font-size: 42px; margin-bottom: 10px; }
  .hero-stat-num .unit { font-size: 0.5em; }
  .hero-stat-label { font-size: 10px; letter-spacing: 0.12em; }
  .hero-stat-source { display: none; }

  .trustbar { padding: 30px 0 40px; }
  .trustbar-inner { gap: 28px; }
  .trustbar-label { font-size: 9px; letter-spacing: 0.22em; }
  .trustbar-label::before, .trustbar-label::after { width: 20px; }
  .trustbar-items { grid-template-columns: 1fr; gap: 0; }
  .trust-item { font-size: 16px; border-top: 1px solid var(--line-soft); padding: 18px 14px; border-left: none; }
  .trust-item:first-child { border-top: none; padding-top: 0; }
  .trust-item small { font-size: 9px; letter-spacing: 0.14em; }

  .section-head h2, .section-head-center h2 { font-size: 34px; }
  .section-head, .section-head-center { margin-bottom: 30px; }
  .section-head p, .section-head-center p { font-size: 16px; }

  .pillars-grid { gap: 16px; margin-top: 40px; }
  .pillar { padding: 32px 26px; }
  .pillar h3 { font-size: 22px; }

  .keyfacts { padding: 50px 0; }
  .keyfacts-grid { grid-template-columns: 1fr 1fr; }
  .keyfact { padding: 14px; }
  .keyfact-num { font-size: 36px; }
  .keyfact-label { font-size: 10px; }

  .page-header { padding: 100px 0 46px; }
  .page-header.tight { padding-bottom: 40px; }
  .page-header.tight + .keyfacts { padding: 36px 0; }
  .page-header h1 { font-size: 40px; }

  .expertise-content h3, .doctor-content h3 { font-size: 32px; }
  .expertise-secondary-card { padding: 36px 26px; }
  .expertise-secondary-content h3 { font-size: 28px; }
  .expertise-stat-block { padding: 32px 24px; }
  .expertise-stat-block-num { font-size: 80px; }
  .expertise-highlights { grid-template-columns: 1fr; }

  .programme-team { grid-template-columns: 1fr; }
  .team-card { padding: 28px 24px; }
  .programme-features { padding: 32px 24px; }
  .features-list { gap: 8px; }

  .boston-card { padding: 36px 24px; gap: 36px; }
  .boston-content h2 { font-size: 28px; }
  .boston-stat-n { font-size: 30px; }
  .programme-link { padding: 14px 24px; font-size: 13px; }

  .steps { grid-template-columns: 1fr; }
  .step { border-right: none; border-bottom: 1px solid var(--line-soft); }
  .step:last-child { border-bottom: none; }
  .step-number { font-size: 46px; }
  .step h4 { font-size: 22px; }

  .results-feature { padding: 38px 28px; }
  .results-feature-num { font-size: 96px; }
  .results-secondary { grid-template-columns: 1fr; }
  .benefit { padding: 20px 22px; gap: 16px; }
  .benefit-icon { width: 44px; height: 44px; }
  .benefit-text h5 { font-size: 18px; }

  .eligibility-card { padding: 36px 24px; }
  .eligibility-statement { flex-direction: column; gap: 16px; padding: 24px 22px; }
  .eligibility-statement-text p { font-size: 14px; }
  .references-block { padding: 30px 24px; }
  .references-title { font-size: 21px; }
  .references-list { padding-left: 18px; }
  .references-list a { white-space: normal; }
  .techtable-note { font-size: 12px; }
  .case-item { padding: 28px 24px; }

  /* ═══ Techniques refonte mobile ═══ */
  .techniques-anchor { grid-template-columns: 1fr; gap: 10px; padding: 12px; border-radius: 14px; }
  .techniques-anchor-item { padding: 18px 20px; gap: 14px; }
  .techniques-anchor-num { font-size: 30px; }
  .techniques-anchor-title { font-size: 18px; }
  .techniques-anchor-sub { font-size: 10px; }
  .technique-section-header { padding: 78px 0 20px; }
  .technique-section-title { font-size: 32px; line-height: 1.1; }
  .technique-section-lead { font-size: 15px; }
  .technique-video-section { padding: 30px 0 50px; }
  .technique-video-wrap {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 28px 22px;
    border-radius: 16px;
  }
  .technique-video-wrap::before { width: 100%; height: 5px; bottom: auto; }
  .technique-video-meta h3 { font-size: 24px; }
  .technique-video-placeholder { border-radius: 12px; }
  .technique-video-placeholder svg { width: 48px; height: 48px; margin-bottom: 12px; }
  .technique-video-placeholder-label { font-size: 18px; }
  .technique-video-placeholder-sub { font-size: 10px; }
  .technique-video-play-btn { width: 72px; height: 72px; }
  .technique-video-play-btn svg { width: 100%; height: 100%; }
  .video-lightbox { padding: 40px 16px 16px; }
  .video-lightbox-close { top: 8px; right: 12px; width: 38px; height: 38px; font-size: 26px; }
  .technique-visual-card { min-height: 320px; }
  .technique-visual-card-icon { width: 92px; height: 92px; }
  .technique-visual-card-icon svg { width: 44px; height: 44px; }
  .technique-visual-card-label { font-size: 22px; }
  .expertise-grid-inverted .expertise-content { order: 2; }
  .expertise-grid-inverted .expertise-visual { order: 1; }
  .sleeve-note-card {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 28px 22px;
  }
  .sleeve-note-icon { width: 52px; height: 52px; }
  .sleeve-note-icon svg { width: 24px; height: 24px; }
  .sleeve-note-card h3 { font-size: 22px; }

  /* results-features (3 cards data clinique TORe/Sleeve) on mobile */
  .results-features { grid-template-columns: 1fr; gap: 16px; margin-top: 40px; }
  .results-features .results-feature { padding: 32px 26px; }
  .results-features .results-feature-num { font-size: 48px; margin-bottom: 16px; }
  .results-feature-title { font-size: 17px; }
  .results-feature-num.results-feature-num--icon { font-size: 30px; }
  .results-sources { font-size: 11px; margin-top: 26px; padding: 0 14px; }

  /* eligibility-criteria mobile */
  .eligibility-card { padding: 40px 28px; }
  .eligibility-criteria { grid-template-columns: 1fr; gap: 30px; margin-bottom: 36px; }
  .eligibility-criterion { grid-template-columns: 70px 1fr; gap: 18px; }
  .eligibility-criterion .eligibility-num { font-size: 56px; }
  .eligibility-criterion p { font-size: 14px; padding-top: 4px; }
  .eligibility-content > h2 { font-size: 28px; }
  .eligibility-lead { font-size: 14px; margin-bottom: 30px; }
  .eligibility-quote { padding: 24px 28px; }
  .eligibility-quote p { font-size: 16px; }

  .bmi-card { padding: 34px 26px; }
  .bmi-input-wrap input { font-size: 26px; padding: 16px 56px 16px 18px; }
  .bmi-result { padding: 36px 28px; }
  .bmi-gauge-value span { font-size: 70px; }
  .bmi-verdict { padding: 24px 22px; }
  .bmi-verdict h3 { font-size: 22px; }
  .imc-ref-grid { grid-template-columns: 1fr; }
  .imc-ref-card { padding: 26px 24px; }
  .case-item-num { font-size: 36px; margin-bottom: 12px; }
  .case-item h5 { font-size: 20px; }

  /* ═══ Compare table mobile redesign ═══
     Each row = critère label on top + 2 cards side-by-side (Endosleeve vs Chirurgie) */
  .compare-table { border-radius: 14px; border: none; background: transparent; box-shadow: none; }
  .compare-header { display: none; }
  .compare-row {
    display: grid !important;
    grid-template-columns: 1fr 1fr;
    grid-template-areas: "label label" "endos chir";
    gap: 8px;
    border-top: none !important;
    margin-bottom: 18px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 18px 16px;
  }
  .compare-row .compare-feature {
    grid-area: label;
    background: transparent !important;
    color: var(--ink-deep) !important;
    padding: 0 0 14px !important;
    font-size: 13px !important;
    font-weight: 700 !important;
    letter-spacing: 0.04em;
    text-align: center;
    border-bottom: 1px solid var(--line-soft);
    margin-bottom: 6px;
  }
  .compare-row .compare-cell {
    flex-direction: column;
    align-items: center !important;
    text-align: center;
    padding: 14px 10px !important;
    border-radius: 8px;
    font-size: 13px !important;
    gap: 10px !important;
    position: relative;
    min-height: 100%;
  }
  .compare-row .compare-cell.good {
    grid-area: endos;
    background: rgba(58, 140, 140, 0.06);
    border: 1px solid rgba(58, 140, 140, 0.18);
    color: var(--ink-deep);
  }
  .compare-row .compare-cell.bad {
    grid-area: chir;
    background: rgba(0,0,0,0.025);
    border: 1px solid var(--line);
    color: var(--muted);
  }
  /* Add header tag inside each cell */
  .compare-row .compare-cell::before {
    display: block;
    font-size: 9px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-weight: 700;
    padding-bottom: 2px;
    width: 100%;
    text-align: center;
  }
  .compare-row .compare-cell.good::before {
    content: 'Endosleeve';
    color: var(--teal-deep);
  }
  .compare-row .compare-cell.bad::before {
    content: 'Chirurgie classique';
    color: var(--muted);
  }
  .compare-row .compare-cell .compare-icon { margin-bottom: 0; }
  .compare-icon { width: 26px; height: 26px; }

  .doctor-stats { grid-template-columns: 1fr 1fr; gap: 22px; }
  .doctor-affiliations { gap: 8px; }
  .doctor-affil { font-size: 10px; padding: 7px 14px; }
  .societies-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
  .clinical-activity-grid { grid-template-columns: 1fr; gap: 14px; margin-top: 30px; }
  .what-is-grid { grid-template-columns: 1fr; gap: 40px; }
  .journey-timeline { grid-template-columns: 1fr; gap: 32px; margin-top: 30px; }
  .journey-timeline::before { display: none; }
  .journey-step { padding: 30px 24px 26px; }
  .journey-step-num { width: 48px; height: 48px; font-size: 18px; top: -18px; left: 22px; }
  .journey-step-icon { width: 44px; height: 44px; margin: 18px 0 16px; }
  .journey-step-title { font-size: 21px; }
  .journey-cta { margin-top: 30px; }
  .journey-cta-text { font-size: 18px; }
  .what-is-content h2 { font-size: 32px; }
  .what-is-lead { font-size: 15px; margin-bottom: 30px; }
  .what-is-benefits { grid-template-columns: 1fr; gap: 18px; margin-bottom: 32px; }
  .what-is-stat-card { padding: 26px 24px; }
  .what-is-stat-num { font-size: 44px; }
  .clinical-activity-card { padding: 28px 24px; }
  .clinical-activity-title { font-size: 20px; min-height: 0; }
  .clinical-activity-num { font-size: 32px; margin-bottom: 14px; }
  .clinical-activity-subtitle { font-size: 11px; margin-bottom: 18px !important; }
  .clinical-activity-lead { font-size: 14px; }
  .societies-section { margin-top: 36px; padding-top: 50px; }
  .society-card { padding: 22px 18px; }
  .society-acronym { font-size: 30px; }
  .society-name { font-size: 12px; min-height: 0; }

  .doctor-linkedin-card { padding: 30px 24px; grid-template-columns: 1fr; gap: 20px; text-align: center; }
  .doctor-linkedin-card::before { height: 100px; }
  .doctor-linkedin-photo { width: 130px; height: 130px; margin: 30px auto 0; }
  .doctor-linkedin-body { padding-top: 0; }
  .doctor-linkedin-name { justify-content: center; }
  .doctor-linkedin-name h2 { font-size: 28px; }
  .doctor-linkedin-tags { justify-content: center; }
  .doctor-linkedin-loc { justify-content: center; }

  .esd-highlight-band { padding: 36px 26px; grid-template-columns: 1fr; gap: 32px; text-align: center; }
  .esd-highlight-num { font-size: 100px; }
  .esd-highlight-text h3 { font-size: 24px; }

  .testi-card { padding: 32px 26px; }
  .testi-text { font-size: 17px; }

  .study { grid-template-columns: 1fr; gap: 12px; padding: 26px 0; }
  .study:hover { padding-left: 0; padding-right: 0; }
  .article-card { padding: 28px 24px; }
  .article-card h3 { font-size: 20px; }

  .faq-question { font-size: 19px; padding: 22px 24px; }
  .faq-answer { padding: 0 24px 24px; font-size: 14px; }
  /* Harmonize bg between summary and body when open */
  .faq-item[open] .faq-question {
    background: var(--bg-cool);
  }
  .faq-item[open] .faq-question:hover {
    background: var(--bg-cool);
  }

  .contact-form { padding: 32px 24px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .contact-info-title { font-size: 30px; }

  .legal-content h2 { font-size: 26px; margin-top: 40px; }
  .legal-content p { font-size: 15px; }
  .cookie-row { grid-template-columns: 1fr; gap: 6px; }
  .cookie-row.cookie-header > div:nth-child(n+2) { display: none; }

  .footer { padding: 60px 0 30px; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; margin-bottom: 40px; }
  .footer-bottom { flex-direction: column; gap: 14px; text-align: center; font-size: 11px; }

  .cta-band { padding: 45px 0; }
  .cta-band h2 { font-size: 34px; }
  .cta-band p { font-size: 15px; }

  .goals-section { padding: 45px 0; }
  .goals-grid { grid-template-columns: 1fr; gap: 18px; }
  .goals-head h2 { font-size: 32px; }
  .goal-card h3 { font-size: 22px; }
}

@media (max-width: 380px) {
  .hero h1 { font-size: 38px; }
  .section-head h2, .section-head-center h2 { font-size: 28px; }
  .page-header h1 { font-size: 34px; }
}
