:root {
  --navy: #081b3f;
  --navy-2: #123666;
  --blue: #1d5bc6;
  --teal: #158e8a;
  --ink: #152033;
  --muted: #637087;
  --line: #dce5ef;
  --surface: #f4f7fa;
  --surface-blue: #eef4fb;
  --white: #ffffff;
  --warn: #fff7e5;
  --warn-line: #e9d59c;
  --max: 1160px;
  --shadow: 0 24px 60px rgba(8, 27, 63, 0.13);
  --shadow-sm: 0 12px 32px rgba(8, 27, 63, 0.09);
}

* { box-sizing: border-box; }
[hidden] { display: none !important; }
html { scroll-behavior: smooth; }
body {
  min-height: 100vh;
  margin: 0;
  display: flex;
  flex-direction: column;
  color: var(--ink);
  background: var(--white);
  font-family: "Inter", "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
main { flex: 1; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }

.container { width: min(calc(100% - 48px), var(--max)); margin-inline: auto; }
.skip-link {
  position: absolute;
  left: -9999px;
  top: auto;
  z-index: 2000;
  padding: 11px 15px;
  color: var(--navy);
  background: var(--white);
  border: 2px solid var(--blue);
  border-radius: 8px;
}
.skip-link:focus { left: 16px; top: 16px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, .96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}
.nav {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.brand {
  min-width: max-content;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.brand img { width: 50px; height: 50px; object-fit: contain; }
.brand-copy strong { display: block; color: var(--navy); font-size: 16px; line-height: 1.15; }
.brand-copy span { display: block; margin-top: 3px; color: var(--muted); font-size: 12px; line-height: 1.2; }
.nav-links { display: flex; align-items: center; gap: 26px; color: #334259; font-size: 14px; font-weight: 700; }
.nav-links a { padding: 9px 0; }
.nav-links a:hover, .nav-links a[aria-current="page"] { color: var(--blue); }
.nav-actions { display: flex; align-items: center; gap: 10px; }
.mobile-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 9px;
  color: var(--navy);
  background: transparent;
  border: 1px solid transparent;
  border-radius: 8px;
}
.mobile-toggle:hover, .mobile-toggle:focus-visible { border-color: var(--blue); background: var(--surface-blue); }
.mobile-toggle svg { display: block; width: 24px; height: 24px; }
.mobile-menu { display: none; }
body.menu-open { overflow: hidden; }

.btn {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 18px;
  color: var(--navy);
  background: transparent;
  border: 1px solid transparent;
  border-radius: 9px;
  font-weight: 800;
  line-height: 1.2;
  white-space: nowrap;
  transition: background-color .2s ease, border-color .2s ease, color .2s ease, transform .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn-primary { color: var(--white); background: var(--navy); box-shadow: 0 10px 24px rgba(8, 27, 63, .18); }
.btn-primary:hover { background: var(--navy-2); }
.btn-secondary { color: var(--navy); background: var(--surface-blue); border-color: #d7e4f4; }
.btn-secondary:hover { background: #e3eefb; border-color: #b9cfe9; }
.btn-ghost { color: var(--navy); border-color: var(--line); }
.btn-ghost:hover { border-color: #b4c7dc; background: var(--surface); }
.btn-light { color: var(--navy); background: var(--white); }
.btn-light:hover { background: #eaf1fa; }

:focus-visible { outline: 3px solid rgba(29, 91, 198, .45); outline-offset: 3px; }

.eyebrow, .section-kicker, .kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--blue);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .14em;
  line-height: 1.2;
  text-transform: uppercase;
}
.eyebrow::before, .section-kicker::before {
  content: "";
  width: 24px;
  height: 2px;
  flex: 0 0 auto;
  background: var(--teal);
}
.section-kicker.on-dark { color: #9ee3df; }

h1, h2, h3, p { overflow-wrap: break-word; }
h1, h2 { font-family: "Source Serif 4", Georgia, "Times New Roman", serif; font-weight: 600; }
h1, h2, h3, h4 { color: var(--navy); }
p { margin-top: 0; }

.hero {
  position: relative;
  overflow: hidden;
  padding: 76px 0 92px;
  background: var(--surface);
  border-bottom: 1px solid var(--line);
}
.hero::after {
  content: "";
  position: absolute;
  right: -170px;
  top: -150px;
  width: 560px;
  height: 560px;
  background: url("/dr-neo-matontsi/assets/dr-neo-logo.png") center / contain no-repeat;
  opacity: .045;
  transform: rotate(8deg);
  pointer-events: none;
}
.hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.02fr .88fr; gap: 76px; align-items: center; }
.hero h1 {
  max-width: 700px;
  margin: 18px 0 22px;
  color: var(--navy);
  font-size: clamp(52px, 6.2vw, 80px);
  letter-spacing: -.045em;
  line-height: .98;
}
.hero h1 em { color: var(--blue); font-style: normal; }
.hero-lead { max-width: 620px; margin-bottom: 0; color: #526176; font-size: 18px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 11px; margin-top: 30px; }
.hero-proof { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); width: min(100%, 690px); margin: 33px 0 0; padding-top: 20px; border-top: 1px solid #cbd7e5; }
.proof-item { min-width: 0; padding: 0 18px; border-left: 1px solid #b9c8da; color: #46556c; font-size: 13px; }
.proof-item:first-child { padding-left: 0; border-left: 0; }
.proof-item strong { display: block; color: var(--navy); font-size: 13px; }
.proof-item span { display: block; margin-top: 2px; }
.hero-visual { position: relative; min-height: 600px; }
.hero-photo {
  position: absolute;
  inset: 0 0 16px 42px;
  overflow: hidden;
  background: #dfe7f0;
  border-radius: 6px 6px 62px 6px;
  box-shadow: var(--shadow);
}
.hero-photo::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 58%, rgba(8, 27, 63, .2)); pointer-events: none; }
.hero-photo img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 25%; }
.section { padding: 100px 0; }
.section-tight { padding: 66px 0; }
.section-alt { background: var(--surface); }
.section-dark { color: var(--white); background: var(--navy); }
.section-head { display: flex; align-items: end; justify-content: space-between; gap: 42px; margin-bottom: 40px; }
.section-head h2 { max-width: 650px; margin: 11px 0 0; color: var(--navy); font-size: clamp(38px, 4.5vw, 58px); letter-spacing: -.04em; line-height: 1.02; }
.section-head p { max-width: 510px; margin-bottom: 3px; color: var(--muted); }
.section-dark h2 { color: var(--white); }
.section-dark .section-head p { color: #b9c8dc; }

.service-ledger { display: grid; grid-template-columns: repeat(2, 1fr); border-top: 1px solid var(--line); }
.service-ledger-row { min-height: 152px; display: grid; grid-template-columns: 50px 1fr; gap: 18px; padding: 27px 26px 25px 0; border-bottom: 1px solid var(--line); }
.service-ledger-row:nth-child(odd) { padding-right: 32px; }
.service-ledger-row:nth-child(even) { padding-left: 26px; border-left: 1px solid var(--line); }
.service-ledger-row .service-index { color: var(--teal); font-family: "Source Serif 4", Georgia, "Times New Roman", serif; font-size: 27px; line-height: 1; }
.service-ledger-row h3 { margin: 0 0 6px; font-size: 18px; }
.service-ledger-row p { max-width: 450px; margin: 0; color: var(--muted); font-size: 14px; }
.text-link { display: inline-flex; align-items: center; gap: 7px; margin-top: 22px; color: var(--blue); font-size: 14px; font-weight: 800; }
.text-link:hover { color: var(--navy); }

.profile-layout { display: grid; grid-template-columns: .82fr 1.18fr; gap: 72px; align-items: start; }
.profile-photo { position: relative; aspect-ratio: 4 / 5; }
.profile-photo picture { display: block; height: 100%; }
.profile-photo img { display: block; width: 100%; height: 100%; object-fit: cover; object-position: 50% 50%; border-radius: 5px 5px 48px 5px; box-shadow: var(--shadow); }
.profile-copy h2 { max-width: 650px; margin: 12px 0 20px; color: var(--navy); font-size: clamp(40px, 4.7vw, 62px); letter-spacing: -.045em; line-height: 1; }
.profile-copy p { max-width: 650px; color: var(--muted); font-size: 17px; }
.profile-copy .bio-lead { color: var(--navy); font-size: 20px; font-weight: 600; line-height: 1.45; }
.fact-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px 28px; margin-top: 30px; }
.fact { padding-top: 11px; border-top: 1px solid var(--line); }
.fact strong, .fact b { display: block; color: var(--navy); font-size: 13px; }
.fact span { display: block; margin-top: 2px; color: var(--muted); font-size: 13px; }

.consultation-list { border-top: 1px solid rgba(255, 255, 255, .2); }
.consultation-row { display: grid; grid-template-columns: .6fr 1.35fr .34fr auto; gap: 28px; align-items: center; padding: 24px 0; border-bottom: 1px solid rgba(255, 255, 255, .2); }
.consultation-row .label { color: #9ee3df; font-size: 12px; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.consultation-row h3 { margin: 0; color: var(--white); font-size: 20px; }
.consultation-row p { margin: 4px 0 0; color: #bdcce0; font-size: 14px; }
.consultation-price { color: var(--white); font-family: "Source Serif 4", Georgia, "Times New Roman", serif; font-size: 30px; white-space: nowrap; }
.consultation-row .text-link { margin: 0; color: #9ee3df; white-space: nowrap; }
.consultation-row .text-link:hover { color: var(--white); }
.on-dark .section-kicker { color: #9ee3df; }

.steps { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid rgba(255, 255, 255, .2); }
.step { min-height: 170px; padding: 25px 28px 0 0; border-bottom: 1px solid rgba(255, 255, 255, .2); }
.step + .step { padding-left: 28px; border-left: 1px solid rgba(255, 255, 255, .2); }
.step-number { color: #9ee3df; font-family: "Source Serif 4", Georgia, "Times New Roman", serif; font-size: 32px; line-height: 1; }
.step h3 { margin: 16px 0 6px; color: var(--white); font-size: 17px; }
.step p { margin: 0; color: #bdcce0; font-size: 14px; }

.booking-cta { display: flex; align-items: center; justify-content: space-between; gap: 30px; padding: 42px; color: var(--white); background: var(--navy); border-left: 4px solid var(--teal); border-radius: 4px 20px 20px 4px; box-shadow: var(--shadow); }
.booking-cta h2 { margin: 0 0 8px; color: var(--white); font-size: clamp(34px, 4vw, 48px); letter-spacing: -.04em; line-height: 1; }
.booking-cta p { max-width: 700px; margin: 0; color: #c2d0e2; }

.page-hero { padding: 64px 0 66px; background: var(--surface); border-bottom: 1px solid var(--line); }
.breadcrumb { margin-bottom: 18px; color: var(--muted); font-size: 12px; }
.breadcrumb a { color: var(--blue); font-weight: 800; }
.page-hero h1 { max-width: 860px; margin: 0 0 17px; color: var(--navy); font-size: clamp(48px, 5.7vw, 72px); letter-spacing: -.045em; line-height: .99; }
.page-hero p { max-width: 730px; margin: 0; color: var(--muted); font-size: 18px; }

.content-grid { display: grid; grid-template-columns: 1.22fr .78fr; gap: 70px; align-items: start; }
.prose h2 { margin: 42px 0 12px; color: var(--navy); font-size: 38px; letter-spacing: -.035em; line-height: 1.05; }
.prose h2:first-child { margin-top: 0; }
.prose h3 { margin: 28px 0 8px; color: var(--navy); }
.prose p, .prose li { color: #56657a; }
.prose ul { margin: 14px 0 22px; padding-left: 22px; }
.prose li + li { margin-top: 7px; }
.prose a { color: var(--blue); text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 3px; }
.aside { position: sticky; top: 112px; padding: 27px; background: var(--surface-blue); border: 1px solid #d6e2ef; border-radius: 5px; }
.aside h3 { margin: 0 0 10px; color: var(--navy); font-size: 21px; }
.aside p { margin: 0 0 16px; color: var(--muted); font-size: 14px; }
.aside .btn { width: 100%; margin-top: 9px; }
.notice { padding: 17px 19px; color: #6d551c; background: var(--warn); border: 1px solid var(--warn-line); border-radius: 5px; font-size: 14px; }
.notice strong { color: #503b0b; }
.follow-up-note { margin-top: 30px; }
.section-note { margin: 26px 0 0; color: #bdcce0; font-size: 14px; }

.service-index { display: flex; flex-wrap: wrap; gap: 9px; margin: 0 0 58px; }
.service-index a { padding: 8px 12px; color: var(--navy); background: var(--surface-blue); border: 1px solid #d7e4f2; border-radius: 999px; font-size: 13px; font-weight: 800; }
.service-index a:hover { color: var(--blue); border-color: #b5cce7; }
.service-directory { border-top: 1px solid var(--line); }
.service-group { display: grid; grid-template-columns: .78fr 1.22fr; gap: 60px; padding: 34px 0 36px; border-bottom: 1px solid var(--line); }
.service-group h2 { margin: 0; color: var(--navy); font-size: 36px; letter-spacing: -.04em; line-height: 1.03; }
.service-group > p { margin: 9px 0 0; color: var(--muted); font-size: 14px; }
.service-group-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 13px 28px; margin: 0; padding: 0; list-style: none; }
.service-group-list li { position: relative; padding-left: 17px; color: #415169; font-size: 15px; }
.service-group-list li::before { content: ""; position: absolute; left: 0; top: .7em; width: 6px; height: 6px; background: var(--teal); border-radius: 50%; }
.service-group-list strong { color: var(--navy); }
.service-group-list small { display: block; margin-top: 2px; color: var(--muted); font-size: 12px; }

.consultation-detail { display: grid; grid-template-columns: .7fr 1.3fr .34fr; gap: 44px; padding: 38px 0; border-top: 1px solid var(--line); }
.consultation-detail:first-child { padding-top: 0; border-top: 0; }
.consultation-detail .detail-label { color: #0b7774; font-size: 11px; font-weight: 900; letter-spacing: .13em; text-transform: uppercase; }
.consultation-detail h2 { margin: 9px 0 10px; color: var(--navy); font-size: 34px; letter-spacing: -.035em; line-height: 1; }
.consultation-detail .detail-price { color: var(--blue); font-family: "Source Serif 4", Georgia, "Times New Roman", serif; font-size: 34px; white-space: nowrap; }
.consultation-detail p, .consultation-detail li { color: #56657a; }
.consultation-detail ul { margin: 0 0 14px; padding-left: 20px; }
.consultation-detail li + li { margin-top: 6px; }
.payment-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; margin-top: 28px; }
.payment-item { padding-top: 13px; border-top: 1px solid var(--line); }
.payment-item strong { display: block; color: var(--navy); font-size: 14px; }
.payment-item span { display: block; margin-top: 4px; color: var(--muted); font-size: 13px; }
.payment-status { margin-top: 28px; }
.payment-panel { margin-top: 25px; padding: 22px; color: var(--navy); background: var(--surface-blue); border: 1px solid #cddded; border-left: 3px solid var(--teal); border-radius: 7px; }
.payment-panel h2 { margin: 10px 0 8px; color: var(--navy); font-size: 30px; letter-spacing: -.035em; line-height: 1.05; }
.payment-panel > p { margin: 0; color: var(--muted); font-size: 13px; }
.payment-summary { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0 20px; margin-top: 18px; border-top: 1px solid var(--line); }
.payment-summary > div { padding: 12px 0; border-bottom: 1px solid var(--line); }
.payment-summary span, .payment-summary strong { display: block; }
.payment-summary span { color: var(--muted); font-size: 12px; }
.payment-summary strong { margin-top: 2px; color: var(--navy); font-size: 14px; }
.payment-panel-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 18px; }
.payment-panel-actions .btn { flex: 1 1 220px; }
.payment-preview-brand { display: flex; align-items: center; gap: 10px; color: var(--navy); font-size: 12px; font-weight: 800; letter-spacing: .04em; text-transform: uppercase; }
.yoco-badge { display: inline-flex; align-items: center; min-height: 27px; padding: 3px 9px; color: var(--white); background: #1d63c8; border-radius: 6px; font-size: 14px; font-weight: 900; letter-spacing: -.02em; text-transform: none; }
.payment-preview .payment-preview-summary { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0 20px; margin-top: 18px; border-top: 1px solid var(--line); }
.payment-preview-summary > div { padding: 12px 0; border-bottom: 1px solid var(--line); }
.payment-preview-summary span, .payment-preview-summary strong { display: block; }
.payment-preview-summary span { color: var(--muted); font-size: 12px; }
.payment-preview-summary strong { margin-top: 2px; color: var(--navy); font-size: 14px; }
.payment-preview .btn[disabled] { opacity: .62; cursor: not-allowed; transform: none; }
.payment-panel-status { min-height: 1.45em; margin-top: 12px !important; color: var(--navy) !important; font-size: 12px !important; }
.payment-page { min-height: 590px; display: flex; align-items: center; background: var(--surface); border-bottom: 1px solid var(--line); }
.payment-card { width: min(100%, 760px); margin: 0 auto; padding: clamp(28px, 5vw, 58px); background: var(--white); border: 1px solid var(--line); border-radius: 7px; box-shadow: var(--shadow-sm); }
.payment-card h1 { max-width: 620px; margin: 16px 0 17px; color: var(--navy); font-size: clamp(44px, 5vw, 68px); letter-spacing: -.045em; line-height: .98; }
.payment-lead { max-width: 610px; color: var(--muted); font-size: 17px; }
.payment-card .payment-summary { margin-top: 29px; }
.payment-card .payment-summary > div { padding-block: 14px; }
.payment-actions { display: flex; flex-wrap: wrap; gap: 11px; margin-top: 27px; }
.payment-actions .btn { flex: 1 1 220px; }
.payment-status-note { min-height: 1.45em; margin: 17px 0 0; color: var(--muted); font-size: 13px; }

.booking-layout { display: grid; grid-template-columns: 1.22fr .78fr; gap: 70px; align-items: start; }
.booking-form { display: flex; flex-direction: column; gap: 18px; padding: 32px; border: 1px solid var(--line); border-radius: 5px; box-shadow: var(--shadow-sm); }
.booking-form fieldset { margin: 0; padding: 0; border: 0; }
.booking-form legend { margin-bottom: 23px; color: var(--navy); font-family: "Source Serif 4", Georgia, "Times New Roman", serif; font-size: 32px; line-height: 1; }
.booking-choice, .booking-details { display: flex; flex-direction: column; gap: 18px; }
.booking-choice h2, .booking-step-heading h2 { margin: 0; color: var(--navy); font-size: 27px; letter-spacing: -.035em; line-height: 1.08; }
.booking-step-label { color: #0b7774; font-size: 11px; font-weight: 900; letter-spacing: .13em; text-transform: uppercase; }
.booking-step-heading { display: flex; flex-direction: column; gap: 8px; }
.booking-step-heading p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.45; }
.booking-details { padding-top: 22px; border-top: 1px solid var(--line); }
.calendar-booking-panel { display: grid; grid-template-columns: auto 1fr; gap: 18px; margin-top: 22px; padding: 24px; background: var(--surface-blue); border: 1px solid #cddded; border-left: 3px solid var(--blue); border-radius: 7px; }
.calendar-booking-panel[hidden] { display: none; }
.calendar-booking-panel h2 { margin: 8px 0; color: var(--navy); font-size: 27px; letter-spacing: -.035em; line-height: 1.08; }
.calendar-booking-panel p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.55; }
.calendar-booking-panel .btn { width: auto; margin-top: 18px; }
.calendar-booking-panel .calendar-booking-note { margin-top: 14px; font-size: 12px; }
.calendar-booking-icon { position: relative; width: 44px; height: 44px; background: var(--white); border: 1px solid #cbd8e6; border-radius: 9px; box-shadow: var(--shadow-sm); }
.calendar-booking-icon::before, .calendar-booking-icon::after { content: ""; position: absolute; left: 9px; right: 9px; }
.calendar-booking-icon::before { top: 10px; height: 5px; border-top: 3px solid var(--blue); border-bottom: 1px solid #cbd8e6; }
.calendar-booking-icon::after { top: 21px; bottom: 9px; background: linear-gradient(90deg, transparent 30%, #cbd8e6 30%, #cbd8e6 34%, transparent 34%, transparent 65%, #cbd8e6 65%, #cbd8e6 69%, transparent 69%), linear-gradient(180deg, transparent 45%, #cbd8e6 45%, #cbd8e6 52%, transparent 52%); }
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 17px 16px; }
.field { display: flex; flex-direction: column; gap: 7px; }
.field.full { grid-column: 1 / -1; }
.field label { color: #34435a; font-size: 13px; font-weight: 800; line-height: 1.35; }
.field label span { color: var(--muted); font-weight: 500; }
input, select, textarea { width: 100%; padding: 13px 14px; color: var(--ink); background: var(--white); border: 1px solid #cbd8e6; border-radius: 7px; outline: none; }
input, select { min-height: 50px; }
textarea { min-height: 118px; resize: vertical; }
input::placeholder, textarea::placeholder { color: #8a96a8; }
input:focus, select:focus, textarea:focus { border-color: var(--blue); box-shadow: 0 0 0 4px rgba(29, 91, 198, .1); }
.field-help, .form-help { color: var(--muted); font-size: 12px; line-height: 1.45; }
.field-help { margin: 0; }
.field-error { display: none; margin: 0; color: #b42318; font-size: 12px; line-height: 1.4; }
.field.has-error input, .field.has-error select, .field.has-error textarea { border-color: #b42318; box-shadow: 0 0 0 4px rgba(180, 35, 24, .08); }
.field.has-error .field-error, .checkbox.has-error .field-error { display: block; }
.checkbox.has-error label { color: #b42318; }
.checkbox { display: flex; align-items: flex-start; gap: 11px; margin: 0; }
.checkbox input { width: 20px; height: 20px; min-height: 20px; flex: 0 0 20px; margin: 2px 0 0; accent-color: var(--blue); }
.checkbox label { color: #56657a; font-size: 13px; line-height: 1.45; }
.booking-form .btn { width: 100%; }
.booking-form > .payment-panel { margin-top: 0; }
.form-help { margin: 0; }
.booking-policy { margin: 0; padding: 16px 18px; color: #5c4b27; background: #fffaf0; border: 1px solid var(--warn-line); border-left: 3px solid #b78b2a; border-radius: 7px; }
.booking-policy h2 { margin: 8px 0 6px; color: #503b0b; font-size: 19px; letter-spacing: -.02em; line-height: 1.15; }
.booking-policy p { margin: 0; color: #6d5b34; font-size: 13px; line-height: 1.5; }
.booking-submit-stack { display: flex; flex-direction: column; gap: 12px; }
.booking-review-panel, .booking-confirmation-panel { margin-top: 0; padding: 22px; color: var(--navy); background: var(--surface-blue); border: 1px solid #cddded; border-left: 3px solid var(--blue); border-radius: 7px; }
.booking-review-panel h2, .booking-confirmation-panel h2 { margin: 10px 0 8px; color: var(--navy); font-size: 30px; letter-spacing: -.035em; line-height: 1.05; }
.booking-review-panel > p, .booking-confirmation-panel > p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.5; }
.booking-review-summary { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0 20px; margin-top: 18px; border-top: 1px solid var(--line); }
.booking-review-summary > div { padding: 12px 0; border-bottom: 1px solid var(--line); }
.booking-review-summary span, .booking-review-summary strong { display: block; }
.booking-review-summary span { color: var(--muted); font-size: 12px; }
.booking-review-summary strong { margin-top: 3px; color: var(--navy); font-size: 14px; line-height: 1.35; }
.booking-review-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 18px; }
.booking-review-actions .btn { flex: 1 1 220px; }
.booking-confirmation-panel { background: #effaf8; border-color: #b7e4dc; border-left-color: var(--teal); }
.booking-confirmation-panel .btn { width: auto; margin-top: 20px; }
.booking-summary { position: sticky; top: 112px; padding: 29px; background: var(--navy); border-radius: 5px; box-shadow: var(--shadow); }
.booking-summary img { width: 82px; height: 82px; margin-bottom: 22px; }
.booking-summary h2 { margin: 0 0 12px; color: var(--white); font-size: 38px; letter-spacing: -.04em; line-height: 1; }
.booking-summary p { color: #c3d1e3; font-size: 14px; }
.booking-summary strong { color: var(--white); }
.booking-summary .summary-note { margin: 16px 0 0; color: #b9c8dc; font-size: 13px; }
.booking-summary .summary-list { margin: 23px 0 0; padding: 0; list-style: none; border-top: 1px solid rgba(255, 255, 255, .18); }
.summary-list li { display: flex; justify-content: space-between; gap: 14px; padding: 12px 0; color: #c3d1e3; border-bottom: 1px solid rgba(255, 255, 255, .18); font-size: 13px; }
.summary-list b { color: var(--white); white-space: nowrap; }
.booking-summary .emergency-copy { margin: 22px 0 0; color: #9ee3df; font-size: 12px; }

.contact-list { border-top: 1px solid var(--line); }
.contact-row { display: grid; grid-template-columns: minmax(0, .35fr) minmax(0, 1fr) 140px; gap: 24px; align-items: center; padding: 25px 0; border-bottom: 1px solid var(--line); }
.contact-row > div { min-width: 0; }
.contact-row .contact-label { color: #0b7774; font-size: 11px; font-weight: 900; letter-spacing: .13em; text-transform: uppercase; }
.contact-row h2 { margin: 0; color: var(--navy); font-size: 25px; line-height: 1.1; }
.contact-row p { margin: 4px 0 0; color: var(--muted); font-size: 14px; }
.contact-row .text-link { justify-self: end; margin: 0; white-space: nowrap; }
.service-area-panel { display: grid; grid-template-columns: 1fr .92fr; gap: 54px; align-items: center; padding: 43px; background: var(--surface); border: 1px solid var(--line); border-radius: 5px; }
.service-area-panel h2 { margin: 11px 0 13px; color: var(--navy); font-size: 43px; letter-spacing: -.04em; line-height: 1; }
.service-area-panel p { max-width: 570px; color: var(--muted); }
.service-area-note { padding-left: 25px; border-left: 2px solid var(--teal); }
.service-area-note strong { display: block; color: var(--navy); }
.service-area-note span { display: block; margin-top: 6px; color: var(--muted); font-size: 14px; }

.site-footer { padding: 62px 0 28px; color: #d7e0ee; background: #06152f; }
.footer-grid { display: grid; grid-template-columns: 1.2fr .7fr .85fr 1fr; gap: 42px; }
.footer-brand { display: flex; align-items: center; gap: 12px; margin-bottom: 17px; }
.footer-brand img { width: 52px; height: 52px; }
.footer-brand strong { color: var(--white); font-size: 16px; }
.footer-brand span { color: #9db0c9; font-size: 12px; font-weight: 500; }
.footer-intro { max-width: 330px; margin: 0; color: #aebbd0; font-size: 13px; }
.footer-col h4 { margin: 0 0 15px; color: var(--white); font-size: 12px; letter-spacing: .12em; text-transform: uppercase; }
.footer-col a, .footer-col p { display: block; margin: 0 0 9px; color: #aebbd0; font-size: 13px; }
.footer-col a:hover { color: var(--white); }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; margin-top: 42px; padding-top: 20px; color: #8fa0ba; border-top: 1px solid rgba(255, 255, 255, .13); font-size: 12px; }
.footer-bottom .portfolio-credit { text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 3px; }
.footer-bottom .portfolio-credit:hover { color: var(--white); }

.error-main { display: flex; align-items: center; min-height: 560px; }

@media (min-width: 981px) {
  .home-page .profile-layout { align-items: stretch; }
  .home-page .profile-photo { aspect-ratio: auto; min-height: 100%; }
}

@media (max-width: 980px) {
  .nav-links, .nav-actions .btn-ghost { display: none; }
  .mobile-toggle { display: block; }
  .mobile-menu.open { display: block; padding: 10px 24px 20px; background: var(--white); border-top: 1px solid var(--line); box-shadow: 0 18px 24px rgba(8, 27, 63, .08); }
  .mobile-menu a { display: block; padding: 12px 0; color: var(--navy); font-weight: 800; }
  .mobile-menu a[aria-current="page"] { color: var(--blue); }
  .mobile-menu .btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 9px;
    padding-inline: 18px;
    color: var(--white);
    text-align: center;
  }
  .hero-grid, .profile-layout, .content-grid, .booking-layout { grid-template-columns: 1fr; }
  .hero-grid { gap: 55px; }
  .hero-visual { width: min(100%, 660px); min-height: 570px; margin-inline: auto; }
  .service-group { gap: 36px; }
  .consultation-row { grid-template-columns: .45fr 1.2fr .35fr; }
  .consultation-row .text-link { grid-column: 2 / -1; }
  .booking-summary, .aside { position: relative; top: 0; }
  .booking-layout .booking-form { order: 1; }
  .booking-layout .booking-summary { order: 2; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 680px) {
  .container { width: min(calc(100% - 28px), var(--max)); }
  .nav { min-height: 70px; }
  .brand { gap: 9px; }
  .brand img { width: 43px; height: 43px; }
  .brand-copy strong { font-size: 15px; }
  .brand-copy span { font-size: 11px; }
  .nav-actions .btn-primary { display: none; }
  .mobile-menu.open { padding-inline: 14px; }
  .hero { padding: 50px 0 0; border-bottom: 0; }
  .hero::after {
    right: -90px;
    top: 112px;
    width: 320px;
    height: 320px;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    background: url("/dr-neo-matontsi/assets/dr-neo-logo.png") center / contain no-repeat;
    opacity: .065;
    transform: rotate(12deg);
  }
  .hero-grid { gap: 40px; }
  .hero h1 { margin-top: 16px; font-size: clamp(43px, 12vw, 55px); line-height: .98; }
  .hero-lead { font-size: 16px; }
  .hero-actions { margin-top: 24px; }
  .hero-actions .btn { flex: 1 1 auto; }
  .hero-proof { display: none; }
  .home-page .hero-visual { display: none; }
  .home-page .hero-grid { gap: 0; }
  .hero-photo { inset: 0 0 15px 16px; border-radius: 4px 4px 42px 4px; }
  .section { padding: 72px 0; }
  .section-alt { padding-top: 36px; }
  .section-tight { padding: 52px 0; }
  .section-head { display: block; margin-bottom: 29px; }
  .section-head h2 { font-size: 40px; }
  .section-head p { margin-top: 18px; }
  .service-ledger { display: block; }
  .service-ledger-row, .service-ledger-row:nth-child(odd), .service-ledger-row:nth-child(even) { min-height: 0; padding: 23px 0; border-left: 0; }
  .service-ledger-row p { font-size: 13px; }
  .profile-layout { gap: 41px; }
  .home-page .profile-photo { display: block; order: 1; aspect-ratio: 3 / 4; }
  .home-page .profile-copy { order: 2; }
  .home-page .profile-photo img { height: 100%; aspect-ratio: auto; object-position: 50% 35%; }
  .profile-copy { order: 1; }
  .profile-photo { display: none; }
  .profile-copy h2 { font-size: 41px; }
  .profile-copy p { font-size: 16px; }
  .fact-list { grid-template-columns: 1fr; gap: 14px; }
  .consultation-row { display: block; padding: 22px 0; }
  .consultation-row h3 { margin-top: 7px; }
  .consultation-price { margin-top: 12px; font-size: 28px; }
  .consultation-row .text-link { margin-top: 13px; }
  .steps { display: block; }
  .step, .step + .step { min-height: 0; padding: 22px 0; border-left: 0; }
  .step h3 { margin-top: 11px; }
  .booking-cta { display: block; padding: 30px 26px; }
  .booking-cta h2 { font-size: 38px; }
  .booking-cta .btn { width: 100%; margin-top: 23px; }
  .page-hero { padding: 47px 0 50px; }
  .page-hero h1 { font-size: 48px; }
  .page-hero p { font-size: 16px; }
  .content-grid { gap: 35px; }
  .prose h2 { font-size: 35px; }
  .service-index { margin-bottom: 38px; }
  .service-group { display: block; padding: 28px 0 30px; }
  .service-group h2 { font-size: 34px; }
  .service-group > p { margin: 10px 0 20px; }
  .service-group-list { grid-template-columns: 1fr; gap: 12px; }
  .consultation-detail { display: block; padding: 31px 0; }
  .consultation-detail h2 { font-size: 34px; }
  .consultation-detail .detail-price { margin: 14px 0 16px; font-size: 30px; }
  .payment-grid { grid-template-columns: 1fr; gap: 17px; }
  .booking-layout { gap: 34px; }
  .booking-form { padding: 22px 18px; }
  .booking-form legend { font-size: 30px; }
  .booking-choice h2, .booking-step-heading h2 { font-size: 29px; }
  .calendar-booking-panel { grid-template-columns: 1fr; padding: 20px 17px; }
  .calendar-booking-panel h2 { font-size: 27px; }
  .calendar-booking-panel .btn { width: 100%; }
  .form-grid { grid-template-columns: 1fr; gap: 16px; }
  .field.full { grid-column: auto; }
  input, select, textarea { font-size: 16px; }
  .payment-panel { padding: 18px 15px; }
  .payment-panel h2 { font-size: 28px; }
  .payment-summary { grid-template-columns: 1fr; }
  .booking-review-panel, .booking-confirmation-panel { padding: 18px 15px; }
  .booking-review-panel h2, .booking-confirmation-panel h2 { font-size: 28px; }
  .booking-review-summary { grid-template-columns: 1fr; }
  .booking-review-actions { flex-direction: column; }
  .booking-review-actions .btn { flex: 0 0 auto; }
  .booking-review-actions .btn-primary { order: -1; }
  .booking-submit-stack { margin-top: 2px; }
  .payment-page { min-height: 520px; }
  .payment-card { padding: 27px 20px; }
  .payment-card h1 { font-size: 45px; }
  .payment-lead { font-size: 16px; }
  .booking-summary { padding: 25px; }
  .booking-summary h2 { font-size: 35px; }
  .contact-row { display: block; padding: 23px 0; }
  .contact-row h2 { margin-top: 7px; }
  .contact-row .text-link { margin-top: 12px; }
  .service-area-panel { display: block; padding: 28px 23px; }
  .service-area-panel h2 { font-size: 38px; }
  .service-area-note { margin-top: 27px; padding: 17px 0 0; border-top: 2px solid var(--teal); border-left: 0; }
  .footer-grid { grid-template-columns: 1fr; gap: 29px; }
  .footer-bottom { display: block; }
  .footer-bottom > * { display: block; margin-top: 8px; }
  .error-main { min-height: 460px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; }
}
