/* ══════════════════════════════════════════════════════════════
   CABINET HÉLOÏSE LAMBERT · Infirmière libérale
   Palette bleue · Outfit + Instrument Serif + Inter
   ══════════════════════════════════════════════════════════════ */

:root {
  --blue:        #2557D6;
  --blue-deep:   #1a3fa8;
  --blue-soft:   #e8eefc;
  --blue-mist:   #f4f7fe;
  --blue-navy:   #0f2450;
  --blue-link:   #4a7dd9;
  --mint:        #c9ecd8;
  --mint-deep:   #5aa574;
  --cream:       #fef5e6;
  --cream-deep:  #d4a04f;
  --ink:         #17233d;
  --ink-soft:    #465271;
  --ink-faded:   #7b849c;
  --line:        #e3e9f5;
  --line-soft:   #eff3fb;
  --white:       #ffffff;
  --shadow-sm:   0 1px 2px rgba(15, 36, 80, 0.04), 0 2px 8px rgba(15, 36, 80, 0.04);
  --shadow-md:   0 4px 12px rgba(15, 36, 80, 0.06), 0 12px 28px rgba(15, 36, 80, 0.08);
  --shadow-lg:   0 12px 32px rgba(15, 36, 80, 0.08), 0 24px 56px rgba(15, 36, 80, 0.12);
  --radius-sm:   12px;
  --radius-md:   20px;
  --radius-lg:   28px;
  --radius-xl:   36px;
  --radius-pill: 999px;
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: 'Outfit', -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img, svg { display: block; max-width: 100%; }

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

em { font-family: 'Instrument Serif', serif; font-style: italic; font-weight: 400; }

.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 32px;
}

/* ── TOP BAR ──────────────────────────────────────────────── */
.topbar {
  background: var(--blue-navy);
  color: #d0dcef;
  font-size: 13px;
  position: relative;
  z-index: 30;
}
.topbar-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 10px 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}
.topbar-left { display: flex; align-items: center; gap: 18px; }
.pill-pulse {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(90, 165, 116, 0.15);
  color: #9fd8b6;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  font-weight: 500;
}
.pulse-dot {
  width: 7px; height: 7px;
  background: var(--mint-deep);
  border-radius: 50%;
  position: relative;
}
.pulse-dot::after {
  content: '';
  position: absolute; inset: -2px;
  border-radius: 50%;
  background: var(--mint-deep);
  opacity: .6;
  animation: pulse 1.8s ease-out infinite;
}
@keyframes pulse {
  0% { transform: scale(1); opacity: .55; }
  100% { transform: scale(2.4); opacity: 0; }
}
.topbar-text { color: #a8b5cc; }
.topbar-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--white);
  font-weight: 500;
  transition: opacity .2s;
}
.topbar-phone:hover { opacity: .8; }

/* ── NAV ──────────────────────────────────────────────────── */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: saturate(180%) blur(18px);
  -webkit-backdrop-filter: saturate(180%) blur(18px);
  border-bottom: 1px solid transparent;
  transition: all .3s ease;
}
.nav.scrolled {
  background: rgba(255, 255, 255, 0.92);
  border-bottom-color: var(--line);
  box-shadow: var(--shadow-sm);
}
.nav-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 16px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.brand-mark { width: 40px; height: 40px; flex-shrink: 0; }
.brand-text { display: flex; flex-direction: column; line-height: 1.15; }
.brand-name { font-weight: 700; font-size: 17px; color: var(--blue-navy); letter-spacing: -0.01em; }
.brand-sub { font-size: 11.5px; color: var(--ink-faded); font-weight: 500; text-transform: uppercase; letter-spacing: 0.08em; }

.nav-menu {
  display: flex;
  gap: 6px;
}
.nav-menu a {
  padding: 8px 14px;
  border-radius: var(--radius-pill);
  font-size: 14.5px;
  font-weight: 500;
  color: var(--ink-soft);
  transition: all .2s;
}
.nav-menu a:hover {
  background: var(--blue-soft);
  color: var(--blue);
}
.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--blue);
  color: var(--white);
  padding: 11px 20px;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 14px;
  transition: all .2s;
  box-shadow: 0 6px 16px rgba(37, 87, 214, 0.25);
}
.nav-cta:hover {
  background: var(--blue-deep);
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(37, 87, 214, 0.32);
}

.nav-burger {
  display: none;
  background: none;
  border: none;
  width: 40px; height: 40px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  cursor: pointer;
  padding: 0;
}
.nav-burger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--blue-navy);
  border-radius: 2px;
  transition: all .3s;
}
.nav-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-mobile {
  display: none;
  background: var(--white);
  padding: 16px 32px 24px;
  border-top: 1px solid var(--line);
  flex-direction: column;
  gap: 4px;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  font-weight: 500;
  color: var(--ink);
}
.nav-mobile a:hover { background: var(--blue-mist); }
.nav-mobile-cta {
  background: var(--blue);
  color: var(--white) !important;
  text-align: center;
  margin-top: 8px;
}

/* ── BUTTONS ──────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: var(--radius-pill);
  font-family: inherit;
  font-size: 15px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all .25s;
  text-decoration: none;
}
.btn-primary {
  background: var(--blue);
  color: var(--white);
  box-shadow: 0 8px 22px rgba(37, 87, 214, 0.28);
}
.btn-primary:hover {
  background: var(--blue-deep);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(37, 87, 214, 0.36);
}
.btn-ghost {
  background: var(--white);
  color: var(--blue-navy);
  border: 1.5px solid var(--line);
}
.btn-ghost:hover {
  border-color: var(--blue);
  color: var(--blue);
  background: var(--blue-mist);
}
.btn-block {
  width: 100%;
}

/* ── HERO ─────────────────────────────────────────────────── */
.hero {
  position: relative;
  padding: 80px 0 120px;
  background:
    radial-gradient(ellipse at 80% -20%, rgba(74, 125, 217, 0.09), transparent 60%),
    linear-gradient(180deg, var(--blue-mist) 0%, var(--white) 80%);
  overflow: hidden;
}
.hero-blob {
  position: absolute;
  pointer-events: none;
  z-index: 0;
  opacity: .7;
  filter: blur(2px);
}
.hero-blob-1 {
  width: 620px; height: 620px;
  top: -80px; right: -120px;
}
.hero-blob-2 {
  width: 380px; height: 380px;
  bottom: -80px; left: -80px;
  opacity: .5;
}
.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 80px;
  align-items: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-soft);
  box-shadow: var(--shadow-sm);
}
.badge-dot {
  width: 7px; height: 7px;
  background: var(--mint-deep);
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(90, 165, 116, 0.18);
}
.hero-title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(42px, 6.2vw, 78px);
  font-weight: 700;
  line-height: 1.04;
  letter-spacing: -0.035em;
  color: var(--blue-navy);
  margin: 24px 0 28px;
}
.hero-title em {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-weight: 400;
  color: var(--blue);
  letter-spacing: -0.01em;
}
.hero-accent {
  color: var(--ink);
}
.hero-sub {
  font-size: 18px;
  color: var(--ink-soft);
  max-width: 540px;
  line-height: 1.65;
  margin-bottom: 36px;
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.hero-trust {
  display: flex;
  align-items: center;
  gap: 16px;
}
.trust-avatars {
  display: flex;
}
.trust-avatars img {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 2.5px solid var(--white);
  margin-left: -10px;
  object-fit: cover;
  box-shadow: var(--shadow-sm);
}
.trust-avatars img:first-child { margin-left: 0; }
.trust-text { font-size: 13.5px; color: var(--ink-soft); line-height: 1.4; }
.trust-stars { color: #f4b740; letter-spacing: 2px; font-size: 13px; }
.trust-text strong { color: var(--blue-navy); font-weight: 700; }

/* ── HERO VISUAL ──────────────────────────────────────────── */
.hero-visual {
  position: relative;
  aspect-ratio: 1 / 1.05;
  min-height: 420px;
}
.hero-portrait {
  position: absolute;
  inset: 0;
  width: 82%;
  margin: auto;
  border-radius: 140px 140px 40px 40px / 180px 180px 40px 40px;
  overflow: hidden;
  background: var(--blue-soft);
  box-shadow: var(--shadow-lg);
}
.hero-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.float-card {
  position: absolute;
  background: var(--white);
  padding: 12px 18px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 2;
}
.float-card strong {
  display: block;
  font-size: 18px;
  font-weight: 700;
  color: var(--blue-navy);
  line-height: 1;
  margin-bottom: 4px;
}
.float-card span {
  font-size: 12px;
  color: var(--ink-soft);
}
.float-ic {
  width: 38px; height: 38px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.float-ic-blue { background: var(--blue-soft); color: var(--blue); }
.float-ic-mint { background: var(--mint); color: var(--mint-deep); }
.float-ic-cream { background: var(--cream); color: var(--cream-deep); }
.float-card-1 { top: 10%; left: -8%; }
.float-card-2 { top: 44%; right: -12%; }
.float-card-3 { bottom: 14%; left: -4%; }
.float-chip {
  bottom: -6%;
  right: 4%;
  flex-direction: column;
  align-items: flex-start;
  padding: 10px 16px;
}
.float-chip .chip-label {
  font-size: 10.5px;
  font-weight: 600;
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
.float-chip .chip-year {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-size: 17px;
  color: var(--blue-navy);
  margin-top: 2px;
}

/* ── TRUST STRIP ──────────────────────────────────────────── */
.trust-strip {
  padding: 0;
  margin-top: -40px;
  position: relative;
  z-index: 2;
}
.trust-strip-grid {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  padding: 34px 40px;
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  gap: 18px;
  align-items: center;
  box-shadow: var(--shadow-lg);
}
.ts-item { text-align: center; }
.ts-num {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-size: 42px;
  color: var(--blue);
  line-height: 1;
  margin-bottom: 6px;
}
.ts-label {
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-soft);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.ts-sep {
  width: 1px;
  height: 40px;
  background: var(--line);
  justify-self: center;
}

/* ── SECTION HEADER ───────────────────────────────────────── */
.section-header {
  max-width: 780px;
  margin: 0 auto 68px;
  text-align: center;
}
.section-header-narrow {
  max-width: 680px;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-bottom: 20px;
}
.eyebrow-light { color: #9fb8e8; }
.eyebrow-line {
  width: 24px; height: 1.5px;
  background: currentColor;
  border-radius: 2px;
}
.section-title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(36px, 4.8vw, 58px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--blue-navy);
  margin-bottom: 18px;
}
.section-title em {
  color: var(--blue);
  font-weight: 400;
}
.section-title-light {
  color: var(--white);
}
.section-title-light em { color: #9fb8e8; }
.section-lede {
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink-soft);
  max-width: 620px;
  margin: 0 auto;
}

/* ── SOINS ────────────────────────────────────────────────── */
.soins {
  padding: 120px 0;
  background: var(--white);
}
.soins-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}
.soin-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px 26px 30px;
  transition: all .3s ease;
  display: flex;
  flex-direction: column;
}
.soin-card:hover {
  border-color: transparent;
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.soin-icon {
  width: 54px; height: 54px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  color: var(--blue);
  background: var(--blue-soft);
  margin-bottom: 20px;
}
.soin-icon-1 { background: var(--blue-soft); color: var(--blue); }
.soin-icon-2 { background: var(--mint); color: var(--mint-deep); }
.soin-icon-3 { background: var(--cream); color: var(--cream-deep); }
.soin-icon-4 { background: #ece3ff; color: #6b4db5; }
.soin-icon-5 { background: #fde5e8; color: #c1526b; }
.soin-icon-6 { background: var(--mint); color: var(--mint-deep); }
.soin-icon-7 { background: #ffe8d4; color: #c67c3c; }

.soin-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--blue-navy);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}
.soin-card p {
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--ink-soft);
  margin-bottom: 18px;
  flex: 1;
}
.soin-tag {
  font-size: 11.5px;
  font-weight: 500;
  color: var(--ink-faded);
  padding-top: 14px;
  border-top: 1px dashed var(--line);
  letter-spacing: 0.02em;
}
.soin-card-cta {
  background: linear-gradient(145deg, var(--blue) 0%, var(--blue-deep) 100%);
  color: var(--white);
  border: none;
  justify-content: space-between;
}
.soin-card-cta:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 44px rgba(37, 87, 214, 0.35);
}
.soin-card-cta h3 {
  color: var(--white);
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-size: 30px;
  font-weight: 400;
  margin-bottom: 16px;
}
.soin-card-cta p {
  color: rgba(255, 255, 255, 0.82);
  font-size: 14.5px;
  margin-bottom: 22px;
}
.soin-cta-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--white);
  font-weight: 600;
  font-size: 14px;
  transition: gap .2s;
}
.soin-cta-link:hover { gap: 12px; }

/* ── JOURNÉE / TIMELINE ───────────────────────────────────── */
.journee {
  padding: 120px 0;
  background: var(--blue-navy);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.journee::before {
  content: '';
  position: absolute;
  top: -100px; right: -150px;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(74, 125, 217, 0.15), transparent 70%);
  pointer-events: none;
}
.timeline {
  max-width: 780px;
  margin: 0 auto;
  position: relative;
}
.timeline-line {
  position: absolute;
  left: 100px;
  top: 12px;
  bottom: 12px;
  width: 2px;
  background: linear-gradient(180deg, rgba(74, 125, 217, 0.6), rgba(74, 125, 217, 0.15));
}
.tl-step {
  display: grid;
  grid-template-columns: 80px 36px 1fr;
  gap: 24px;
  align-items: flex-start;
  padding: 20px 0;
  position: relative;
}
.tl-time {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-size: 22px;
  color: #9fb8e8;
  text-align: right;
  padding-top: 4px;
}
.tl-dot {
  width: 16px; height: 16px;
  border-radius: 50%;
  background: var(--white);
  border: 4px solid var(--blue-navy);
  box-shadow: 0 0 0 2px var(--blue-link);
  margin: 8px 0 0 10px;
  position: relative;
  z-index: 2;
}
.tl-dot-accent {
  background: var(--mint-deep);
  box-shadow: 0 0 0 2px var(--mint-deep), 0 0 0 8px rgba(90, 165, 116, 0.25);
}
.tl-body h4 {
  font-size: 19px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}
.tl-body p {
  color: #a8b5cc;
  font-size: 15px;
  line-height: 1.6;
}
.tl-step-alt .tl-body h4 { color: #d8e8c7; }

/* ── PARCOURS ─────────────────────────────────────────────── */
.parcours {
  padding: 120px 0;
  background: var(--white);
}
.parcours-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
  gap: 80px;
  align-items: center;
}
.parcours-visual {
  position: relative;
}
.parcours-img {
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--blue-soft);
  box-shadow: var(--shadow-md);
}
.parcours-img img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.parcours-badge {
  position: absolute;
  bottom: 24px;
  right: -24px;
  background: var(--white);
  padding: 16px 22px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: var(--shadow-lg);
  color: var(--mint-deep);
}
.parcours-badge svg {
  background: var(--mint);
  border-radius: 12px;
  padding: 6px;
  width: 36px; height: 36px;
}
.parcours-badge strong {
  display: block;
  font-size: 14.5px;
  font-weight: 700;
  color: var(--blue-navy);
  margin-bottom: 2px;
}
.parcours-badge span {
  font-size: 12px;
  color: var(--ink-soft);
}
.parcours-text .section-title { text-align: left; }
.parcours-text .eyebrow { margin-bottom: 18px; }
.parcours-lead {
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink-soft);
  margin-bottom: 30px;
}
.parcours-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 36px;
}
.parcours-list li {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 14px;
  align-items: flex-start;
  padding: 14px 18px;
  background: var(--blue-mist);
  border-radius: var(--radius-md);
  border-left: 3px solid var(--blue);
}
.parcours-list li svg {
  color: var(--blue);
  margin-top: 2px;
}
.parcours-list li strong {
  display: block;
  font-size: 15.5px;
  font-weight: 600;
  color: var(--blue-navy);
  margin-bottom: 2px;
}
.parcours-list li span {
  font-size: 13.5px;
  color: var(--ink-soft);
}
.signature-block {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}
.sig-svg {
  width: 120px; height: 32px;
  color: var(--blue);
}
.signature-block span {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-size: 18px;
  color: var(--blue-navy);
}

/* ── ZONE ─────────────────────────────────────────────────── */
.zone {
  padding: 120px 0;
  background: var(--blue-mist);
}
.zone-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 60px;
  align-items: center;
}
.zone-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.zone-pill {
  padding: 10px 20px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  font-size: 14.5px;
  font-weight: 500;
  color: var(--ink);
  transition: all .2s;
}
.zone-pill:hover {
  border-color: var(--blue);
  color: var(--blue);
}
.zone-pill-main {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
  font-weight: 600;
}
.zone-pill-soft {
  background: transparent;
  color: var(--ink-soft);
  border-style: dashed;
}
.zone-map {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  padding: 28px;
  box-shadow: var(--shadow-md);
}
.zone-map svg {
  width: 100%;
  height: auto;
  margin-bottom: 12px;
}
.zone-map-legend {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  font-size: 12.5px;
  color: var(--ink-soft);
  padding-top: 16px;
  border-top: 1px solid var(--line);
}
.zone-map-legend div { display: inline-flex; align-items: center; gap: 8px; }
.map-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--blue-link);
  display: inline-block;
}
.map-dot-main { background: var(--blue); }

/* ── PRATIQUE ─────────────────────────────────────────────── */
.pratique {
  padding: 120px 0;
  background: var(--white);
}
.pratique-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}
.pratique-card {
  padding: 32px 28px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  transition: all .3s;
}
.pratique-card:hover {
  border-color: transparent;
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.pratique-ic {
  width: 48px; height: 48px;
  border-radius: 14px;
  background: var(--blue-soft);
  color: var(--blue);
  display: grid;
  place-items: center;
  margin-bottom: 18px;
}
.pratique-card h4 {
  font-size: 17px;
  font-weight: 600;
  color: var(--blue-navy);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}
.pratique-card p {
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--ink-soft);
}

/* ── AVIS ─────────────────────────────────────────────────── */
.avis {
  padding: 120px 0;
  background: var(--blue-mist);
}
.avis-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}
.avis-card {
  background: var(--white);
  padding: 32px 30px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.avis-stars {
  color: #f4b740;
  letter-spacing: 3px;
  font-size: 16px;
}
.avis-card blockquote {
  font-size: 15.5px;
  line-height: 1.65;
  color: var(--ink);
  flex: 1;
  font-style: normal;
}
.avis-card figcaption {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}
.avis-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background-size: cover;
  background-position: center;
  background-color: var(--blue-soft);
  flex-shrink: 0;
}
.avis-card figcaption strong {
  display: block;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--blue-navy);
  margin-bottom: 2px;
}
.avis-card figcaption span {
  font-size: 12.5px;
  color: var(--ink-soft);
}

/* ── FAQ ──────────────────────────────────────────────────── */
.faq {
  padding: 120px 0;
  background: var(--white);
}
.faq-list {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.faq-item {
  background: var(--blue-mist);
  border: 1px solid transparent;
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all .25s;
}
.faq-item[open] {
  background: var(--white);
  border-color: var(--line);
  box-shadow: var(--shadow-sm);
}
.faq-item summary {
  list-style: none;
  padding: 22px 28px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  font-size: 16.5px;
  font-weight: 600;
  color: var(--blue-navy);
  letter-spacing: -0.005em;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-plus {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid var(--line);
  position: relative;
  flex-shrink: 0;
  transition: all .25s;
}
.faq-plus::before, .faq-plus::after {
  content: '';
  position: absolute;
  background: var(--blue);
  left: 50%; top: 50%;
  border-radius: 1px;
}
.faq-plus::before { width: 12px; height: 2px; transform: translate(-50%, -50%); }
.faq-plus::after  { width: 2px; height: 12px; transform: translate(-50%, -50%); transition: transform .25s; }
.faq-item[open] .faq-plus { background: var(--blue); }
.faq-item[open] .faq-plus::before,
.faq-item[open] .faq-plus::after { background: var(--white); }
.faq-item[open] .faq-plus::after { transform: translate(-50%, -50%) rotate(90deg); }
.faq-answer {
  padding: 0 28px 26px;
  color: var(--ink-soft);
  font-size: 15.5px;
  line-height: 1.65;
}

/* ── RDV ──────────────────────────────────────────────────── */
.rdv {
  padding: 120px 0;
  background: var(--blue-navy);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.rdv::before {
  content: '';
  position: absolute;
  bottom: -200px; left: -120px;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(74, 125, 217, 0.18), transparent 70%);
  pointer-events: none;
}
.rdv-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
  gap: 70px;
  align-items: start;
}
.rdv-text .section-title { text-align: left; }
.rdv-text > p {
  color: #b8c4da;
  font-size: 17px;
  line-height: 1.65;
  margin: 18px 0 36px;
  max-width: 420px;
}
.rdv-info {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.rdv-info-block {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 22px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  color: var(--white);
  transition: all .2s;
}
a.rdv-info-block:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(159, 184, 232, 0.3);
}
.rdv-info-block svg { flex-shrink: 0; color: #9fb8e8; }
.rdv-info-block span {
  display: block;
  font-size: 11.5px;
  color: #9fb8e8;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 3px;
}
.rdv-info-block strong {
  font-size: 15px;
  font-weight: 600;
  color: var(--white);
}

.rdv-form {
  background: var(--white);
  color: var(--ink);
  padding: 40px 38px;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
}
.rdv-form h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--blue-navy);
  margin-bottom: 22px;
  letter-spacing: -0.015em;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.rdv-form label {
  display: block;
  margin-bottom: 14px;
}
.rdv-form label span {
  display: block;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--ink-soft);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 6px;
}
.rdv-form input,
.rdv-form select,
.rdv-form textarea {
  width: 100%;
  padding: 13px 16px;
  background: var(--blue-mist);
  border: 1.5px solid transparent;
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 14.5px;
  color: var(--ink);
  transition: all .2s;
}
.rdv-form input:focus,
.rdv-form select:focus,
.rdv-form textarea:focus {
  outline: none;
  background: var(--white);
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(37, 87, 214, 0.1);
}
.rdv-form textarea { resize: vertical; min-height: 80px; font-family: inherit; }
.form-check {
  display: flex !important;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 22px !important;
}
.form-check input {
  width: auto !important;
  margin-top: 3px;
  flex-shrink: 0;
  accent-color: var(--blue);
}
.form-check span {
  margin: 0 !important;
  font-size: 12.5px !important;
  color: var(--ink-soft) !important;
  text-transform: none !important;
  letter-spacing: 0 !important;
  font-weight: 400 !important;
  line-height: 1.5;
}
.form-ok {
  display: none;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  margin-top: 16px;
  background: var(--mint);
  color: var(--mint-deep);
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 500;
}
.form-ok.show { display: flex; }

/* ── FOOTER ───────────────────────────────────────────────── */
.footer {
  background: #0a1a3d;
  color: #9fb0cc;
  padding: 80px 0 32px;
}
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  gap: 40px;
  flex-wrap: wrap;
}
.brand-footer .brand-name { color: var(--white); }
.brand-footer .brand-sub { color: #9fb0cc; }
.footer-tag {
  font-size: 14px;
  line-height: 1.6;
  max-width: 360px;
  text-align: right;
}
.footer-tag em { color: #9fb8e8; }
.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 32px;
  padding: 50px 0;
}
.footer-col { display: flex; flex-direction: column; gap: 10px; }
.footer-col h5 {
  font-size: 13px;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 10px;
}
.footer-col a,
.footer-col span {
  font-size: 14px;
  color: #9fb0cc;
  line-height: 1.5;
  transition: color .2s;
}
.footer-col a:hover { color: var(--white); }
.footer-urgent {
  font-weight: 600;
  color: #ffb6b6 !important;
}
.footer-urgent:hover { color: #ffd5d5 !important; }
.footer-bottom {
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: space-between;
  gap: 20px;
  font-size: 12.5px;
  color: #6b7a99;
  flex-wrap: wrap;
}
.footer-credits a { color: #9fb8e8; font-weight: 500; }
.footer-credits a:hover { color: var(--white); }

/* ── REVEAL ───────────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .8s ease, transform .8s ease;
}
.reveal.in {
  opacity: 1;
  transform: none;
}

/* ── RESPONSIVE ───────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 60px; }
  .hero-visual { max-width: 440px; margin: 0 auto; }
  .trust-strip-grid { grid-template-columns: 1fr 1fr; padding: 28px; gap: 28px; }
  .ts-sep { display: none; }
  .soins-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .pratique-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .avis-grid { grid-template-columns: 1fr; }
  .parcours-grid { grid-template-columns: 1fr; gap: 60px; }
  .zone-layout { grid-template-columns: 1fr; gap: 40px; }
  .rdv-grid { grid-template-columns: 1fr; gap: 50px; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .timeline-line { left: 70px; }
  .tl-step { grid-template-columns: 54px 24px 1fr; gap: 16px; }
  .tl-time { font-size: 18px; }
}
@media (max-width: 720px) {
  .container { padding: 0 20px; }
  .topbar { font-size: 12px; }
  .topbar-inner { padding: 8px 20px; flex-wrap: wrap; gap: 10px; }
  .topbar-text { display: none; }
  .nav-inner { padding: 14px 20px; }
  .nav-menu, .nav-cta { display: none; }
  .nav-burger { display: flex; }
  .hero { padding: 40px 0 80px; }
  .hero-portrait { border-radius: 90px 90px 30px 30px; }
  .float-card { padding: 10px 14px; }
  .float-card strong { font-size: 15px; }
  .float-card span { font-size: 11px; }
  .soins, .journee, .parcours, .zone, .pratique, .avis, .faq, .rdv { padding: 80px 0; }
  .soins-grid, .pratique-grid { grid-template-columns: 1fr; }
  .footer-top { flex-direction: column; align-items: flex-start; }
  .footer-tag { text-align: left; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .rdv-form { padding: 28px 22px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .section-header { margin-bottom: 48px; }
}
