/* ════════════════════════════════════════
   VARIABLES
════════════════════════════════════════ */
:root {
  --pink:      #e91e63;
  --pink-dark: #c2185b;
  --pink-light:#fce4ec;
  --dark:      #1a1a2e;
  --navy:      #344767;
  --muted:     #7b809a;
  --border:    #e8eaf0;
  --bg:        #f7f8fc;
  --radius:    1rem;
  --shadow:    0 2px 12px rgba(0,0,0,0.07);
  --shadow-md: 0 8px 32px rgba(0,0,0,0.10);
  --shadow-lg: 0 16px 48px rgba(0,0,0,0.13);
}

/* ════════════════════════════════════════
   BASE
════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Roboto', Helvetica, Arial, sans-serif;
  font-size: 1rem;
  font-weight: 400;
  color: var(--navy);
  background: #fff;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  display: flex; flex-direction: column; min-height: 100vh;
}

h1, h2, h3, h4, h5 {
  font-family: 'Roboto', Helvetica, Arial, sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: var(--dark);
}

a { text-decoration: none; }

.text-sm { font-size: 0.725rem; }

/* ════════════════════════════════════════
   REVEAL
════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .8s cubic-bezier(.22,1,.36,1), transform .8s cubic-bezier(.22,1,.36,1);
}
.reveal.visible { opacity: 1; transform: none; }
.reveal-d1 { transition-delay: .2s; }
.reveal-d2 { transition-delay: .4s; }
.reveal-d3 { transition-delay: .6s; }

/* ════════════════════════════════════════
   EYEBROW LABEL
════════════════════════════════════════ */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .09em;
  padding: .3em .85em;
  border-radius: 999px;
  margin-bottom: 1rem;
}
.eyebrow.pink  { background: var(--pink-light); color: var(--pink-dark); }
.eyebrow.blue  { background: #e3f2fd;            color: #1565c0; }
.eyebrow.light { background: rgba(255,255,255,.12); color: rgba(255,255,255,.75); }

/* ════════════════════════════════════════
   SECTION UTILITAIRES
════════════════════════════════════════ */
.section-lg { padding: 6rem 0; }
.section-md { padding: 4rem 0; }

.section-title {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  margin-bottom: .75rem;
}
.section-sub {
  font-size: 1rem;
  color: var(--muted);
  font-weight: 300;
  line-height: 1.7;
}

/* ════════════════════════════════════════
   NAVBAR — variante transparente (landing)
════════════════════════════════════════ */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: .7rem 0;
  background: transparent;
  transition: background .3s, box-shadow .3s;
}
.site-nav.scrolled {
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 var(--border);
}

/* Navbar — variante toujours blanche (pages outils) */
.site-nav.nav-solid {
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 var(--border);
}

.nav-logo {
  display: flex; align-items: center; gap: .6rem; text-decoration: none;
}
.nav-logo-text {
  font-weight: 700; font-size: 1.1rem; color: white;
  transition: color .25s;
}
.site-nav.scrolled .nav-logo-text,
.site-nav.nav-solid .nav-logo-text { color: var(--dark); }

/* Logo cross-fade : blanc sur dark, couleur sur blanc */
.nav-logo-imgs {
  position: relative;
  width: 36px; height: 36px;
  flex-shrink: 0;
}
.nav-logo-imgs img {
  position: absolute; inset: 0;
  width: 36px; height: 36px;
  object-fit: contain;
  transition: opacity .3s;
}
.logo-white { opacity: 1; }
.logo-color { opacity: 0; }
.site-nav.scrolled .logo-white,
.site-nav.nav-solid .logo-white { opacity: 0; }
.site-nav.scrolled .logo-color,
.site-nav.nav-solid .logo-color { opacity: 1; }

.nav-link-item {
  font-size: .875rem; font-weight: 500;
  color: rgba(255,255,255,.85);
  text-decoration: none; padding: .4rem .6rem;
  border-radius: .5rem; transition: color .2s;
}
.nav-link-item:hover { color: white; }
.site-nav.scrolled .nav-link-item,
.site-nav.nav-solid .nav-link-item { color: var(--navy); }
.site-nav.scrolled .nav-link-item:hover,
.site-nav.nav-solid .nav-link-item:hover { color: var(--pink); }

.nav-link-item.active { color: var(--pink) !important; }

.nav-sep {
  width: 1px; height: 18px;
  background: rgba(255,255,255,.2);
  margin: 0 .35rem;
  transition: background .3s;
}
.site-nav.scrolled .nav-sep,
.site-nav.nav-solid .nav-sep { background: var(--border); }

.btn-nav-secondary {
  background: transparent; color: white;
  font-weight: 500; font-size: .875rem;
  padding: .5rem 1rem; border-radius: 999px;
  border: 1.5px solid rgba(255,255,255,.4);
  cursor: pointer; text-decoration: none;
  display: inline-flex; align-items: center; gap: .4rem;
  transition: border-color .2s, color .2s;
}
.btn-nav-secondary:hover { border-color: white; color: white; }
.site-nav.scrolled .btn-nav-secondary,
.site-nav.nav-solid .btn-nav-secondary { border-color: var(--border); color: var(--navy); }
.site-nav.scrolled .btn-nav-secondary:hover,
.site-nav.nav-solid .btn-nav-secondary:hover { border-color: var(--navy); color: var(--dark); }

.btn-nav-primary, .btn-submit-primary{
  background: var(--pink); color: white;
  font-weight: 600; font-size: .875rem;
  padding: .5rem 1.25rem; border-radius: 999px; border: none;
  cursor: pointer; text-decoration: none;
  display: inline-flex; align-items: center; gap: .4rem;
  transition: background .2s, transform .15s;
}
.btn-nav-primary:hover, .btn-submit-primary:hover { background: var(--pink-dark); color: white; }

.nav-mobile-toggle {
  display: none; background: none; border: none; cursor: pointer; padding: .4rem; color: white;
}
.site-nav.scrolled .nav-mobile-toggle,
.site-nav.nav-solid .nav-mobile-toggle { color: var(--dark); }
.hamburger-line { display: block; width: 22px; height: 2px; background: currentColor; border-radius: 2px; margin: 4px 0; }

/* ════════════════════════════════════════
   HERO — split layout (landing)
════════════════════════════════════════ */
.hero {
  display: flex;
  min-height: 100vh;
  overflow: hidden;
}

.hero-left {
  flex: 0 0 50%;
  background: var(--dark);
  position: relative;
  display: flex; align-items: center; justify-content: center;
  padding: 8rem 3rem 5rem;
  z-index: 2;
}
.hero-left::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}
.hero-glow {
  position: absolute;
  width: 360px; height: 360px; border-radius: 50%;
  background: var(--pink); opacity: .10;
  top: -100px; left: -80px; filter: blur(80px);
  pointer-events: none;
}
.hero-content { position: relative; z-index: 2; width: 100%; max-width: 560px; }

.hero-right {
  flex: 0 0 50%;
  position: relative;
  overflow: hidden;
}
.hero-right img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
}
.hero-right::after {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 180px; z-index: 2; pointer-events: none;
  background: linear-gradient(to bottom, rgba(26,26,46,.80) 0%, transparent 100%);
}
.hero-right-fade {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: linear-gradient(
    to right,
    #1a1a2e             0%,
    rgba(26,26,46,.95) 10%,
    rgba(26,26,46,.80) 25%,
    rgba(26,26,46,.52) 42%,
    rgba(26,26,46,.20) 62%,
    rgba(26,26,46,.04) 80%,
    transparent        95%
  );
}

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: .5rem;
  font-size: .75rem; font-weight: 600; letter-spacing: .09em;
  color: rgba(255,255,255,.5); margin-bottom: 1.25rem;
}
.pulse-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--pink); animation: pulse 2s infinite;
}
@keyframes pulse {
  0%,100% { transform: scale(1); opacity: 1; }
  50%      { transform: scale(1.5); opacity: .5; }
}
.hero-title { font-size: clamp(2.4rem, 3.8vw, 3.6rem); color: white; line-height: 1.12; margin-bottom: 1.4rem; }
.hero-title em { font-style: italic; color: var(--pink); font-weight: 300; }
.hero-sub { font-size: 1rem; color: rgba(255,255,255,.62); line-height: 1.75; font-weight: 300; margin-bottom: 2.25rem; max-width: 460px; }
.hero-cta { display: flex; flex-wrap: wrap; gap: .75rem; align-items: center; }

.hero-stats { display: flex; gap: 2.5rem; flex-wrap: wrap; margin-top: 3rem; padding-top: 2.25rem; border-top: 1px solid rgba(255,255,255,.12); }
.hero-stat-val { font-size: 1.875rem; font-weight: 700; color: white; line-height: 1; }
.hero-stat-lbl { font-size: .78rem; color: rgba(255,255,255,.45); margin-top: .3rem; }

/* ════════════════════════════════════════
   PAGE HERO — header sombre (pages outils)
════════════════════════════════════════ */
.page-hero {
  background: var(--dark);
  padding: 7rem 0 3.5rem;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}
.page-hero-glow {
  position: absolute;
  width: 360px; height: 360px; border-radius: 50%;
  background: var(--pink); opacity: .10;
  top: -100px; right: -80px; filter: blur(80px);
  pointer-events: none;
}
.page-hero-content { position: relative; z-index: 2; }
.page-hero h1 {
  color: white;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  margin-bottom: .75rem;
}
.page-hero p {
  color: rgba(255,255,255,.55);
  font-weight: 300;
  font-size: 1rem;
  line-height: 1.75;
  max-width: 560px;
}

/* Corps des pages outils */
.page-body { padding: 3rem 0 5rem; flex:1; }

/* ════════════════════════════════════════
   BOUTONS PRIMAIRES
════════════════════════════════════════ */
.btn-primary-lg {
  display: inline-flex; align-items: center; gap: .5rem;
  background: var(--pink); color: white; font-weight: 600; font-size: 1rem;
  padding: .875rem 1.875rem; border-radius: 999px; border: none; cursor: pointer;
  transition: background .2s, transform .15s;
}
.btn-primary-lg:hover { background: var(--pink-dark); color: white; }

.btn-ghost-lg {
  display: inline-flex; align-items: center; gap: .5rem;
  background: rgba(255,255,255,.10); color: white; font-weight: 400; font-size: 1rem;
  padding: .875rem 1.875rem; border-radius: 999px; border: 1.5px solid rgba(255,255,255,.25);
  transition: background .2s, border-color .2s;
}
.btn-ghost-lg:hover { background: rgba(255,255,255,.16); border-color: rgba(255,255,255,.45); color: white; }

/* ════════════════════════════════════════
   WORKFLOW
════════════════════════════════════════ */
.workflow-section { background: #fff; }

.workflow-step {
  display: grid;
  grid-template-columns: 1fr 72px 1fr;
  align-items: center;
  gap: 0 2rem;
  margin-bottom:6rem;
}

.workflow-step.even .step-visual  { order: 1; }
.workflow-step.even .step-spine   { order: 2; }
.workflow-step.even .step-content { order: 3; }
.workflow-step.odd  .step-content { order: 1; }
.workflow-step.odd  .step-spine   { order: 2; }
.workflow-step.odd  .step-visual  { order: 3; }

.step-spine {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.spine-line {
  width: 2px;
  min-height: 40px;
  flex: 1;
  background: var(--border);
}
.spine-line.fade { background: linear-gradient(to bottom, var(--border), transparent); }

.step-icon {
  width: 48px; height: 48px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.step-icon i { font-size: 22px; color: white; }
.si-pink   { background: #e91e63; }
.si-blue   { background: #1976d2; }
.si-green  { background: #388e3c; }
.si-amber  { background: #f57c00; }
.si-purple { background: #7b1fa2; }
.si-teal   { background: #00796b; }

.step-content { padding: 3.5rem 1rem; }
.step-content h3 { font-size: 1.25rem; margin-bottom: .5rem; }
.step-content p {
  font-size: .9rem; color: var(--muted);
  line-height: 1.7; font-weight: 300; margin-bottom: 1rem;
}
.step-bullets { list-style: none; display: flex; flex-direction: column; gap: .4rem; }
.step-bullets li {
  display: flex; align-items: center; gap: .6rem;
  font-size: .85rem; color: var(--navy);
}
.step-bullets li::before {
  content: '';
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--pink); flex-shrink: 0;
}

.step-visual { padding: 2.5rem 1rem; text-align: center; }
.step-img-wrap {
  border-radius: 1.25rem;
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--bg);
  display: inline-flex; align-items: center; justify-content: center;
}
.step-img-wrap img { width: 100%; max-width: 260px; display: block; margin: 0 auto; }

/* ════════════════════════════════════════
   BDD MÉDECINS
════════════════════════════════════════ */
.doctors-section {
  background: var(--dark);
  padding: 6rem 0 0;
  position: relative;
  overflow: hidden;
}
.doctors-section::before {
  content: '';
  position: absolute;
  width: 450px; height: 450px; border-radius: 50%;
  background: var(--pink); opacity: .07;
  top: -120px; right: -80px;
  filter: blur(90px); pointer-events: none;
}

.doctor-card-mock {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 1.25rem;
  padding: 1.75rem;
  opacity: 60%;
}
.doctor-search-bar {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: .6rem;
  padding: .65rem 1rem;
  display: flex; align-items: center; gap: .6rem;
  margin-bottom: 1.25rem;
  color: rgba(255,255,255,.35);
  font-size: .875rem;
}
.doctor-search-bar i { color: var(--pink); font-size: 18px; }
.doctor-result {
  display: flex; align-items: center; gap: .875rem;
  padding: .875rem 1rem;
  border-radius: .65rem;
  margin-bottom: .6rem;
  border: 1px solid rgba(255,255,255,.07);
}
.doctor-result.active { background: rgba(233,30,99,.12); border-color: rgba(233,30,99,.25); }
.doctor-result:not(.active) { background: rgba(255,255,255,.03); }
.dr-avatar {
  width: 36px; height: 36px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.dr-avatar.a { background: var(--pink); }
.dr-avatar.b { background: rgba(255,255,255,.1); }
.dr-avatar i { font-size: 17px; color: white; }
.dr-name { font-weight: 500; font-size: .875rem; color: white; }
.dr-meta { font-size: .72rem; color: rgba(255,255,255,.4); margin-top: .1rem; }
.dr-arrow { margin-left: auto; color: rgba(255,255,255,.2); font-size: 16px; }
.blur-text { filter: blur(3px); user-select: none; }

.doctors-detail { display: flex; flex-direction: column; gap: 1.5rem; padding-left: 1rem; }
.dr-feature { display: flex; align-items: flex-start; gap: 1rem; }
.dr-feature-icon {
  width: 40px; height: 40px; border-radius: .65rem;
  background: rgba(233,30,99,.15);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.dr-feature-icon i { font-size: 20px; color: var(--bs-gray-200); }
.dr-feature-title { font-weight: 500; font-size: .9rem; color: white; margin-bottom: .2rem; }
.dr-feature-desc  { font-size: .85rem; color: rgba(255,255,255,.45); line-height: 1.6; font-weight: 300; }

/* ════════════════════════════════════════
   FEATURES GRID
════════════════════════════════════════ */
.features-section { background: var(--bg); }

.feature-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  height: 100%;
  transition: transform .2s, box-shadow .2s, border-color .2s;
}
.fc-icon {
  width: 42px; height: 42px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.fc-icon i { font-size: 21px; color: white; }
.feature-card-header { display: flex; align-items: center; gap: .85rem; margin-bottom: .75rem; }
.feature-card h4 { font-size: 1rem; margin-bottom: 0; }
.feature-card p  { font-size: .86rem; color: var(--muted); line-height: 1.65; font-weight: 300; }

/* ════════════════════════════════════════
   OUTILS GRATUITS
════════════════════════════════════════ */
.tools-section { background: white; }

.tool-link {
  display: flex; align-items: center; gap: 1rem;
  padding: 1rem 1.25rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: white;
  transition: border-color .2s, box-shadow .2s;
  text-decoration: none;
  max-width: 720px;
}
.tool-link:hover { border-color: #f8bbd0; box-shadow: var(--shadow); }
.tool-link-icon {
  width: 40px; height: 40px; border-radius: .65rem;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.tool-link-icon i { font-size: 20px; color: white; }
.tool-link-title { font-weight: 600; font-size: .9rem; color: var(--dark); }
.tool-link-sub   { font-size: .78rem; color: var(--muted); margin-top: .1rem; }
.tool-link-arrow { margin-left: auto; color: var(--muted); font-size: 18px; }

/* ════════════════════════════════════════
   TARIFS
════════════════════════════════════════ */
.pricing-section { background: var(--bg); }

.pricing-card {
  border-radius: 1.5rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
}
.pricing-header {
  background: var(--dark);
  padding: 2.25rem 2.25rem 1.75rem;
  position: relative;
  border-radius: 1.5rem 1.5rem 0 0;
}
.pricing-header::before {
  content: '';
  position: absolute;
  width: 150px;
  height: 150px; border-radius: 50%;
  background: var(--pink); opacity: .12;
  top: -60px; 
  /*right: -40px; */
  filter: blur(50px);
}
.pricing-badge {
  position: absolute;
  top: 0; left: 50%;
  transform: translate(-50%, -50%);
  display: inline-flex; align-items: center; gap: .35rem;
  background: var(--pink); color: white;
  font-size: .72rem; font-weight: 700;
  padding: .28em .8em; border-radius: 999px;
  letter-spacing: .06em; z-index: 2;
}
.pricing-price {
  font-size: 3.25rem; font-weight: 700;
  color: white; line-height: 1; text-align: center;
}
.pricing-price-sub { font-size: .875rem; color: rgba(255,255,255,.45); margin-top: .35rem; font-weight: 300; text-align: center; }
.pricing-body { padding: 2.25rem; }
.pricing-features { list-style: none; display: flex; flex-direction: column; gap: .8rem; margin-bottom: 2rem; }
.pricing-features li { display: flex; align-items: flex-start; gap: .75rem; font-size: .9rem; color: var(--navy); }
.pricing-features li i { font-size: 18px; color: var(--pink); flex-shrink: 0; margin-top: 1px; }
.btn-pricing {
  display: flex; align-items: center; justify-content: center; gap: .5rem;
  width: 100%; background: var(--pink); color: white;
  font-weight: 600; font-size: .975rem;
  padding: .95rem; border-radius: 999px; border: none; cursor: pointer;
  transition: background .2s;
}
.btn-pricing:hover { background: var(--pink-dark); color: white; }

.pricing-aside { display: flex; flex-direction: column; gap: 0; }
.pricing-aside-item {
  display: flex; align-items: flex-start; gap: .875rem;
  padding: 1.25rem 0; border-bottom: 1px solid var(--border);
}
.pricing-aside-item:last-child { border-bottom: none; }
.pai-icon {
  width: 38px; height: 38px; border-radius: .6rem;
  background: white; border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.pai-icon i { font-size: 19px; color: var(--pink); }
.pai-title { font-weight: 600; font-size: .875rem; color: var(--dark); margin-bottom: .2rem; }
.pai-desc  { font-size: .825rem; color: var(--muted); line-height: 1.6; font-weight: 300; }

/* ════════════════════════════════════════
   FAQ
════════════════════════════════════════ */
.faq-section { background: white; }

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: .6rem;
  overflow: hidden;
}
.faq-q {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 1.1rem 1.4rem;
  background: none; border: none; width: 100%;
  text-align: left; cursor: pointer;
  font-weight: 500; font-size: .925rem; color: var(--dark);
  transition: color .2s;
}
.faq-q:hover { color: var(--pink); }
.faq-q i { font-size: 20px; color: var(--muted); flex-shrink: 0; transition: transform .3s; }
.faq-item.open .faq-q i { transform: rotate(45deg); color: var(--pink); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.faq-item.open .faq-a { max-height: 300px; }
.faq-a-inner { padding: 0 1.4rem 1.1rem; font-size: .875rem; color: var(--muted); line-height: 1.75; font-weight: 300; }

/* ════════════════════════════════════════
   CTA BANNER
════════════════════════════════════════ */
.cta-section {
  background: var(--dark);
  padding: 6rem 0;
  position: relative; overflow: hidden;
  text-align: center;
}
.cta-section::before {
  content: '';
  position: absolute;
  width: 500px; height: 500px; border-radius: 50%;
  background: var(--pink); opacity: .1;
  top: -200px; right: -80px; filter: blur(90px);
}
.cta-section h2 { color: white; font-size: clamp(1.9rem, 3.5vw, 2.8rem); margin-bottom: .75rem; }
.cta-section p  { color: rgba(255,255,255,.5); font-weight: 300; font-size: 1rem; margin-bottom: 2.25rem; }

/* ════════════════════════════════════════
   FOOTER
════════════════════════════════════════ */
.site-footer {
  background: var(--dark);
  border-top: 1px solid rgba(255,255,255,.07);
  padding: 3rem 0 2rem;
}
.site-footer-small {
  background: var(--dark);
  border-top: 1px solid rgba(255,255,255,.07);
  padding: 1rem 0 1rem;
}
.footer-brand { display: flex; align-items: center; gap: .55rem; }
.footer-brand-name { font-weight: 700; font-size: 1rem; color: white; }
.footer-tagline { font-size: .8rem; color: rgba(255,255,255,.35); margin-top: .3rem; }
.footer-col-title {
  font-size: .7rem; font-weight: 700; letter-spacing: .08em;
  color: rgba(255,255,255,.28); margin-bottom: .75rem;
}
.footer-link {
  display: block; font-size: .875rem;
  color: rgba(255,255,255,.5); margin-bottom: .45rem;
  transition: color .2s;
}
.footer-link:hover { color: white; }
.footer-hr { border-color: rgba(255,255,255,.07); margin: 1.5rem 0; }
.footer-copy { font-size: .78rem; color: rgba(255,255,255,.25); }

/* Images logo dans footer */
.footer-logo-imgs {
  position: relative; width: 30px; height: 30px; flex-shrink: 0;
}
.footer-logo-imgs img {
  position: absolute; inset: 0; width: 30px; height: 30px; object-fit: contain;
}

.footer-legal-link {
  font-size: .78rem;
  color: rgba(255,255,255,.25);
  transition: color .2s;
}
.footer-legal-link:hover { color: rgba(255,255,255,.6); }

/* ════════════════════════════════════════
   CONTENU LÉGAL
════════════════════════════════════════ */
.legal-section {
  padding: 1.75rem 0;
  border-bottom: 1px solid var(--border);
}

.legal-section h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: .75rem;
}

.legal-section p {
  font-size: .9rem;
  color: var(--muted);
  line-height: 1.75;
  font-weight: 300;
  margin-bottom: .5rem;
}

.legal-section p:last-child { margin-bottom: 0; }

.legal-section a {
  color: var(--pink);
  transition: color .2s;
}
.legal-section a:hover { color: var(--pink-dark); }

/* ════════════════════════════════════════
   MUTUELLES
════════════════════════════════════════ */
.mutuelles-sub {
  background: rgba(255,255,255,.06);
  border-top: 1px solid rgba(255,255,255,.08);
  margin-top: 4rem;
  padding: 2.5rem 2rem;
}
.mutuelles-sub-label {
  font-size: .72rem; font-weight: 600;
  letter-spacing: .08em; color: rgba(255,255,255,.35);
  text-align: center; margin-bottom: 1.5rem;
}
.mutuelles-logos {
  display: flex; flex-wrap: wrap;
  align-items: center; justify-content: center;
  gap: 1rem 2rem;
}
.mutuelle-logo {
  width: 56px; height: 56px;
  background: white; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  padding: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,.15);
  transition: transform .2s ease, box-shadow .2s ease;
}
.mutuelle-logo img { max-width: 100%; max-height: 100%; object-fit: contain; }
.mutuelle-logo:hover { transform: translateY(-2px); box-shadow: 0 8px 18px rgba(0,0,0,.25); }

/* ════════════════════════════════════════
   INAMI PREVIEW (landing — section outils)
════════════════════════════════════════ */
.inami-preview {
  background: var(--bg);
  border-radius: 1.25rem;
  border: 1px solid var(--border);
  padding: 1.25rem;
}
.inami-preview-header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 1rem;
}
.inami-preview-header-left { display: flex; align-items: center; gap: 8px; }
.inami-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--pink); flex-shrink: 0; }
.inami-situation { font-size: .72rem; font-weight: 600; color: var(--muted); letter-spacing: .06em; }
.inami-convention { font-size: .7rem; color: var(--muted); }
.inami-footer { display: flex; align-items: center; justify-content: center; margin-top: 1rem; gap: 6px; }
.inami-footer-label { font-size: .72rem; color: var(--muted); }

/* ════════════════════════════════════════
   INAMI ROWS (page codes & preview partagée)
════════════════════════════════════════ */
.inami-list { display: flex; flex-direction: column; gap: 8px; }

.inami-row {
  background: white;
  border-radius: .75rem;
  border: 1px solid var(--border);
  padding: 14px 16px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  transition: border-color .2s, box-shadow .2s;
}
/* .inami-row:hover { border-color: #f8bbd0; box-shadow: var(--shadow); } */

.inami-row-left { flex: 1; min-width: 0; }
.inami-row-right {
  font-size: 0.78rem;
}

.inami-row-top {
  display: flex; align-items: center; gap: 8px;
  margin-bottom: 4px; flex-wrap: wrap;
}

.inami-code {
  font-size: .85rem; font-weight: 700;
  color: var(--dark); font-family: monospace;
  letter-spacing: .03em;
}

.inami-badge { font-size: .68rem; padding: 2px 9px; border-radius: 999px; font-weight: 600; }
.inami-badge-pink  { background: var(--pink-light); color: var(--pink-dark); }
.inami-badge-blue  { background: #e3f2fd; color: #1565c0; }
.inami-badge-green { background: #e8f5e9; color: #2e7d32; }
.inami-badge-amber { background: #fff8e1; color: #f57f17; }

.inami-desc { font-size: .75rem; color: var(--muted); margin-top: 2px; }

/* Deux colonnes tarifaires */
.inami-tarifs { display: flex; gap: 8px; flex-shrink: 0; }

.inami-tarif-col {
  border-radius: .6rem;
  padding: 8px 12px;
  min-width: 104px;
  text-align: center;
  border: 1px solid var(--border);
}
.inami-tarif-col.is-standard { background: white; }
.inami-tarif-col.is-bim { background: var(--bg); opacity: .85; }

.inami-tarif-label {
  font-size: .62rem; font-weight: 700;
  letter-spacing: .07em; color: var(--muted);
  margin-bottom: 6px;
}
.inami-tarif-col.is-standard .inami-tarif-label { color: var(--navy); }

.inami-tarif-line {
  display: flex; align-items: center; justify-content: space-between;
  gap: 8px; margin-bottom: 3px;
}
.inami-tarif-line:last-child { margin-bottom: 0; }

.inami-tarif-who { font-size: .68rem; color: var(--muted); white-space: nowrap; }

.inami-tarif-amount { font-size: .78rem; font-weight: 700; color: var(--dark); }
.inami-tarif-col.is-bim .inami-tarif-amount { color: var(--navy); font-weight: 500; }

.inami-tarif-sep { height: 1px; background: var(--border); margin: 5px 0; }

/* Groupes */
.inami-group { margin-bottom: 1.5rem; }
.inami-group-label, .pathology-result-label {
  font-size: .7rem; font-weight: 700;
  letter-spacing: .05em; color: var(--muted);
  margin-bottom: .6rem; padding-left: 2px;
}

/* ════════════════════════════════════════
   FORMULAIRES (pages outils)
════════════════════════════════════════ */
.search-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 1.25rem;
  padding: 1.75rem 2rem;
  margin-bottom: 2rem;
  /* box-shadow: var(--shadow); */
}
.search-card h2 { font-size: 1rem; font-weight: 600; margin-bottom: 1.25rem; color: var(--dark); }

.form-group { display: flex; flex-direction: column; gap: .35rem; }
.form-label { font-size: .75rem; font-weight: 600; letter-spacing: .05em; color: var(--muted); }

.form-select-custom {
  appearance: none;
  background: var(--bg) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24'%3E%3Cpath fill='%237b809a' d='M7 10l5 5 5-5z'/%3E%3C/svg%3E") no-repeat right .85rem center;
  border: 1px solid var(--border);
  border-radius: .65rem;
  padding: .65rem 2.5rem .65rem 1rem;
  font-size: .9rem; color: var(--navy);
  font-family: 'Roboto', sans-serif;
  width: 100%; cursor: pointer;
  transition: border-color .2s;
}
.form-select-custom:focus { outline: none; border-color: var(--pink); }

.btn-search {
  display: inline-flex; align-items: center; gap: .5rem;
  background: var(--pink); color: white;
  font-weight: 600; font-size: .9rem;
  border-radius: 999px;
  border: none; cursor: pointer;
  transition: background .2s, transform .15s;
  white-space: nowrap;
  min-width: 48px;
  aspect-ratio: 1;
  justify-content: center;
}
.btn-search:hover { background: var(--pink-dark); }
.btn-search i { font-size: 18px; }

/* Résultats */
.results-header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 1rem; flex-wrap: wrap; gap: .5rem;
}
.results-title { font-size: .9rem; font-weight: 600; color: var(--dark); }
.results-count {
  font-size: .75rem; color: var(--muted);
  background: var(--bg); border: 1px solid var(--border);
  padding: .2em .7em; border-radius: 999px;
}

/* États vide / chargement */
.empty-state { text-align: center; padding: 4rem 2rem; color: var(--muted); }
.empty-state i { font-size: 2.5rem; opacity: .35; margin-bottom: 1rem; display: block; }
.empty-state p { font-size: .9rem; font-weight: 300; }

.loading-state { text-align: center; padding: 3rem; display: none; }
.spinner {
  width: 28px; height: 28px;
  border: 3px solid var(--border);
  border-top-color: var(--pink);
  border-radius: 50%;
  animation: spin .7s linear infinite;
  margin: 0 auto 1rem;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* Honoraire total — affiché dans la colonne gauche */
.inami-honoraires {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 0.5rem;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 3px 10px;
  width: 100%;
  justify-content: center;
}

.inami-hon-item {
  display: flex;
  align-items: center;
  gap: 4px;
}

.inami-hon-label {
  font-size: .68rem;
}

.inami-hon-amount {
  font-size: .78rem;
  font-weight: 700;
  color: var(--dark);
}

.inami-hon-bim .inami-hon-label,
.inami-hon-bim .inami-hon-amount { opacity: .55; }

.inami-hon-sep {
  font-size: .7rem;
  color: var(--border);
}

/* ════════════════════════════════════════
   FORMULAIRE — input texte
════════════════════════════════════════ */
.form-input-custom {
  appearance: none;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: .65rem;
  padding: .65rem 1rem;
  font-size: .9rem;
  color: var(--navy);
  font-family: 'Roboto', sans-serif;
  width: 100%;
  transition: border-color .2s;
  resize: vertical;
}
.form-input-custom::placeholder { color: var(--muted); }
.form-input-custom:focus { outline: none; border-color: var(--pink); }

/* ════════════════════════════════════════
   ALERTES CONTACT
════════════════════════════════════════ */
.contact-alert {
  display: flex;
  align-items: center;
  gap: .6rem;
  padding: .9rem 1.25rem;
  border-radius: .75rem;
  font-size: .875rem;
  font-weight: 500;
  margin-bottom: 1.25rem;
}
.contact-alert-success {
  background: #e8f5e9;
  color: #2e7d32;
  border: 1px solid #c8e6c9;
}
.contact-alert-danger,
.contact-alert-error {
  background: #fce4ec;
  color: var(--pink-dark);
  border: 1px solid #f8bbd0;
}

/* ════════════════════════════════════════
   MOBILE
════════════════════════════════════════ */
@media (max-width: 991px) {
  .hero { flex-direction: column; min-height: auto; }
  .hero-left  { flex: none; width: 100%; padding: 8rem 1.5rem 4rem; justify-content: flex-start; }
  .hero-right { flex: none; width: 100%; height: 260px; }
  .hero-right-fade {
    background: linear-gradient(to bottom, #1a1a2e 0%, rgba(26,26,46,.3) 60%, transparent 100%);
  }
}

@media (max-width: 768px) {
  /* Navbar */
  .nav-desktop { display: none !important; }
  .nav-mobile-toggle { display: block; }

  /* Boutons pleine largeur */
  .hero-cta { flex-direction: column; align-items: stretch; }
  .hero-cta .btn-primary-lg,
  .hero-cta .btn-ghost-lg { width: 100%; justify-content: center; }

  .cta-section .d-flex { flex-direction: column; align-items: stretch; padding: 0 1rem; }
  .cta-section .btn-primary-lg,
  .cta-section .btn-ghost-lg { width: 100%; justify-content: center; }

  .btn-pricing { width: 100%; }
  .btn-search  { 
    width: 100%;
    aspect-ratio: unset;
    justify-content: center;
    padding: .7rem 1.5rem;
    margin-top: 0.5rem;
  }

  /* Eyebrow centré */
  .eyebrow { display: table; margin-left: auto; margin-right: auto; }

  .eyebrow-left {
    display: inline-flex;
    margin-left: 0;
    margin-right: 0;
  }

  /* Doctors : card après le texte */
  .doctors-section .row { flex-direction: column-reverse; }

  /* Workflow steps : icône → texte → image */
  .workflow-step {
    display: flex; flex-direction: column;
    align-items: center; gap: 0;
    padding: 4rem 0;
  }
  .workflow-step .step-spine,
  .workflow-step .step-content,
  .workflow-step .step-visual {
    order: unset !important;
    grid-row: unset !important;
    grid-column: unset !important;
    width: 100%;
  }
  .workflow-step .step-spine {
    display: flex; flex-direction: row;
    justify-content: center; align-items: center;
    order: 1 !important; margin-bottom: 1.25rem;
  }
  .spine-line { display: none !important; }
  .step-icon { width: 52px; height: 52px; }
  .step-icon i { font-size: 24px; }

  .workflow-step .step-content {
    order: 2 !important; padding: 0 0 1.25rem; text-align: left;
  }
  .workflow-step .step-content h3 { text-align: center; }
  .workflow-step .step-content p { display: none; }
  .workflow-step .step-content .step-bullets { padding-left: 1rem; padding-top: 1rem; }

  .workflow-step .step-visual { order: 3 !important; padding: 0 0 0.5rem; }
  .step-img-wrap { width: 80%; border-radius: 1rem; }
  .step-img-wrap img { max-width: 100%; }
}

@media (max-width: 600px) {
  /* INAMI tarifs empilés sur très petit écran */
  .inami-row { flex-direction: column; gap: 12px; }
  .inami-tarifs { width: 100%; }
  .inami-tarif-col { flex: 1; }
}