﻿:root {
  --navy-950: #031a32;
  --navy-900: #052747;
  --navy-800: #0b355c;
  --navy-700: #174a77;
  --gold-500: #c99b4b;
  --gold-400: #deb76b;
  --gold-300: #efd18e;
  --cream: #fbf8f1;
  --ink: #102c4b;
  --muted: #68788b;
  --line: #e8e5de;
  --white: #fff;
  --shadow: 0 16px 42px rgba(16, 44, 75, .09);
  --serif: "STSong", "Songti SC", "SimSun", Georgia, serif;
  --sans: "PingFang SC", "Microsoft YaHei", "Noto Sans CJK SC", Arial, sans-serif;
}

* { box-sizing: border-box; }
[hidden] { display: none !important; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: #fff;
  font-family: var(--sans);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
a:focus-visible, button:focus-visible, .btn:focus-visible { outline: 3px solid rgba(199,151,55,.5); outline-offset: 3px; border-radius: 2px; }
button, input, textarea { font: inherit; }
img { display: block; max-width: 100%; }
.svg-sprite { width: 0; height: 0; position: absolute; overflow: hidden; }
.container { width: min(1280px, calc(100% - 72px)); margin: 0 auto; }

.site-header {
  position: absolute;
  z-index: 20;
  inset: 0 0 auto;
  color: #fff;
  border-bottom: 1px solid rgba(255,255,255,.09);
}
.site-header.scrolled {
  position: fixed;
  background: rgba(3, 26, 50, .96);
  box-shadow: 0 8px 30px rgba(0,0,0,.2);
  backdrop-filter: blur(12px);
  animation: headerIn .35s ease;
}
.site-header.scrolled .nav-wrap { min-height: 72px; }
@keyframes headerIn { from { transform: translateY(-100%); } }
.nav-wrap {
  width: min(1600px, calc(100% - 64px));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  min-height: 88px;
}
.brand { display: flex; align-items: center; gap: 13px; flex: 0 0 auto; max-width: 340px; color: var(--gold-300); }
.brand svg { width: 48px; height: 48px; flex-shrink: 0; }
.brand span { display: grid; line-height: 1.28; min-width: 0; }
.brand strong { font-family: var(--serif); font-size: 19px; letter-spacing: .05em; font-weight: 700; }
.brand small { color: rgba(255,255,255,.72); font-size: 11px; letter-spacing: .08em; margin-top: 4px; }
.main-nav { display: flex; align-items: center; gap: 28px; margin-left: auto; min-width: 0; font-size: 16px; font-weight: 600; line-height: 1.2; white-space: nowrap; }
.nav-list { display: flex; align-items: stretch; gap: 28px; margin: 0; padding: 0; list-style: none; }
.nav-item { position: relative; }
.nav-item-row { display: flex; align-items: center; }
.nav-link {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 88px;
  color: rgba(255,255,255,0.9);
  font-weight: 600;
  line-height: 1.25;
  transition: color .22s ease;
}
.nav-link::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 16px;
  width: 0;
  height: 2px;
  background: var(--gold-400);
  transform: translateX(-50%);
  opacity: 0;
  transition: width .25s ease, opacity .25s ease;
}
.site-header.scrolled .nav-link { min-height: 72px; }
.nav-item:hover > .nav-item-row .nav-link,
.nav-item:focus-within > .nav-item-row .nav-link { color: var(--gold-400); }
.nav-item:hover > .nav-item-row .nav-link::after,
.nav-item:focus-within > .nav-item-row .nav-link::after {
  width: 34px;
  opacity: 0.55;
}
.nav-item.active > .nav-item-row .nav-link { color: #f3c96b; }
.nav-item.active > .nav-item-row .nav-link::after {
  width: 40px;
  height: 3px;
  background: #f3c96b;
  opacity: 1;
}
.submenu-toggle {
  display: none;
  width: 36px;
  height: 36px;
  padding: 0;
  border: 0;
  color: rgba(255,255,255,.72);
  background: transparent;
  cursor: pointer;
  transition: color .2s ease;
  position: relative;
}
.submenu-toggle:hover { color: var(--gold-400); }
/* Hide the ⌄ text; draw a CSS chevron instead */
.submenu-toggle span { font-size: 0; }
.submenu-toggle::after {
  content: "";
  display: block;
  width: 9px;
  height: 9px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-1px);
  transition: transform .22s ease, border-color .22s ease;
}
.nav-item.submenu-open .submenu-toggle::after { transform: rotate(-135deg) translateY(0); }
.nav-dropdown {
  position: absolute;
  top: calc(100% - 12px);
  left: 50%;
  z-index: 40;
  width: 270px;
  padding: 12px;
  border: 1px solid rgba(218,183,107,.22);
  border-radius: 8px;
  background: rgba(3,26,50,.98);
  box-shadow: 0 22px 48px rgba(0,0,0,.28);
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, 10px);
  transition: opacity .2s ease, transform .2s ease, visibility .2s;
  white-space: normal;
}
.nav-dropdown::before { content: ""; position: absolute; inset: -14px 0 auto; height: 14px; }
.nav-dropdown a {
  display: block;
  padding: 10px 12px;
  border-radius: 5px;
  color: rgba(255,255,255,.85);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.35;
  transition: color .2s ease, background .2s ease;
}
.nav-dropdown a:hover, .nav-dropdown a:focus { color: #f3c96b; background: rgba(222,183,107,.1); }
.nav-item:hover > .nav-dropdown,
.nav-item:focus-within > .nav-dropdown,
.nav-item.submenu-open > .nav-dropdown { opacity: 1; visibility: visible; transform: translate(-50%, 0); }
.nav-mega { width: min(980px, 70vw); display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 20px 32px; padding: 22px 28px; background: rgba(3,26,50,.96); }
.nav-group { min-width: 0; }
.nav-group h3 { margin: 0 0 8px; color: #f3c96b; font-family: var(--serif); font-size: 14px; letter-spacing: .04em; }
.nav-mega .nav-group a { padding: 6px 0; font-size: 14px; line-height: 1.35; }
.nav-actions { display: flex; align-items: center; gap: 16px; }
.lang-switch {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-300);
  padding: 6px 12px;
  border: 1px solid rgba(222,183,107,.35);
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.3;
  transition: color .2s ease, border-color .2s ease, background .2s ease;
}
.lang-switch:hover { color: #f3c96b; border-color: rgba(222,183,107,.6); background: rgba(222,183,107,.08); }
.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 12px 20px;
  border: 1px solid var(--gold-400);
  border-radius: 6px;
  color: #13283c;
  background: linear-gradient(135deg, #efd38e, #c99b4b);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.2;
  width: auto;
  white-space: nowrap;
  transition: transform .2s ease, box-shadow .2s ease;
}
.nav-cta:hover { transform: translateY(-1px); box-shadow: 0 8px 20px rgba(201,155,75,.22); }
.is-en .brand strong { font-family: Georgia, serif; font-size: 14px; letter-spacing: .02em; max-width: 220px; white-space: normal; }
.is-en .brand small { letter-spacing: .04em; }
.is-en .nav-list { gap: 20px; }
.is-en .main-nav { gap: 20px; font-size: 14px; }
.is-en .nav-cta { font-size: 14px; }
.menu-toggle { display: none; width: 43px; height: 43px; border: 1px solid rgba(255,255,255,.35); background: transparent; border-radius: 8px; padding: 10px; margin-left: auto; }
.menu-toggle span { display: block; height: 2px; margin: 5px 0; background: #fff; transition: .25s; }

.hero {
  min-height: 640px;
  position: relative;
  overflow: hidden;
  display: grid;
  align-items: center;
  color: #fff;
  background: var(--navy-950);
}
.hero-image { position: absolute; inset: 0; background: url("assets/hero-consultation.png") 62% center / cover no-repeat; }
.hero-shade {
  position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(2,20,39,.98) 0%, rgba(3,29,54,.91) 33%, rgba(4,30,55,.38) 58%, rgba(2,14,26,.06) 100%),
    linear-gradient(0deg, rgba(2,21,40,.35), transparent 42%);
}
.hero-lines {
  position: absolute; left: -130px; bottom: -100px; width: 750px; height: 260px;
  border-radius: 50%;
  border-top: 1px solid rgba(218,174,92,.7);
  box-shadow: 0 -16px 0 -15px rgba(218,174,92,.38), 0 -32px 0 -31px rgba(218,174,92,.25), 0 -48px 0 -47px rgba(218,174,92,.2);
  transform: rotate(8deg);
}
.hero-content { position: relative; z-index: 2; padding-top: 94px; }
.eyebrow { color: var(--gold-400); font-size: 11px; letter-spacing: .24em; font-weight: 700; margin: 0 0 14px; }
.hero h1 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(44px, 4.2vw, 66px);
  line-height: 1.24;
  letter-spacing: .08em;
  margin: 0;
  text-shadow: 0 4px 24px rgba(0,0,0,.18);
}
.hero h1 span { color: #fff; }
.hero-copy { width: min(560px, 48%); margin: 25px 0 28px; color: rgba(255,255,255,.78); font-size: 16px; }
.hero-actions { display: flex; gap: 18px; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 46px;
  padding: 11px 24px;
  border-radius: 5px;
  border: 1px solid transparent;
  font-weight: 700;
  font-size: 14px;
  line-height: 1.2;
  cursor: pointer;
  width: auto;
  max-width: 100%;
  white-space: nowrap;
  transition: transform .25s, background .25s, box-shadow .25s;
}
.btn:hover { transform: translateY(-2px); }
.btn span { font-size: 22px; font-weight: 300; line-height: 1; flex-shrink: 0; }
.btn-gold { color: #13283c; background: linear-gradient(135deg, #efd38e, #c99b4b); box-shadow: 0 8px 26px rgba(201,155,75,.2); }
.btn-gold:hover { box-shadow: 0 12px 30px rgba(201,155,75,.32); }
.btn-outline { border-color: rgba(222,183,107,.8); color: #fff; background: rgba(5,39,71,.28); }
.btn-outline:hover { background: rgba(222,183,107,.12); }
.hero-trust { display: flex; gap: 34px; margin-top: 44px; color: rgba(255,255,255,.66); font-size: 12px; }
.hero-trust span { border-left: 1px solid rgba(222,183,107,.45); padding-left: 12px; }
.hero-trust strong { display: block; color: var(--gold-300); font-family: Georgia, serif; font-size: 20px; }

.section { padding: 74px 0; }
.section-heading { text-align: center; margin-bottom: 34px; }
.section-heading > span, .heading-row > div > span {
  display: inline-block; width: 60px; height: 1px; background: linear-gradient(90deg, transparent, var(--gold-500)); vertical-align: middle; position: relative;
}
.section-heading > span:last-of-type, .heading-row > div > span:last-of-type { background: linear-gradient(90deg, var(--gold-500), transparent); }
.section-heading > span:first-child::after, .heading-row > div > span:first-child::after {
  content: ""; position: absolute; right: -2px; top: -2px; width: 5px; height: 5px; border-radius: 50%; background: var(--gold-400);
}
.section-heading h2, .heading-row h2 {
  display: inline-block;
  margin: 0 18px;
  font-family: var(--serif);
  font-size: 31px;
  line-height: 1.2;
  letter-spacing: .12em;
  color: var(--navy-900);
}
.section-heading p { margin: 12px 0 0; color: #8a96a3; font-size: 14px; }
.genetics-section {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(6,47,80,.05) 1px, transparent 1px) 0 0 / 34px 34px,
    linear-gradient(180deg, #f7fafb 0%, #eef6f8 100%);
}
.genetics-layout {
  display: grid;
  grid-template-columns: minmax(0,.92fr) minmax(0,1.25fr);
  gap: 42px;
  align-items: center;
}
.genetics-copy { min-width: 0; }
.genetics-copy h2 {
  margin: 0 0 18px;
  color: var(--navy-900);
  font-family: var(--serif);
  font-size: 34px;
  line-height: 1.28;
  letter-spacing: .08em;
}
.genetics-copy p:not(.eyebrow) {
  margin: 0;
  color: #5f6f82;
  font-size: 15px;
  line-height: 1.9;
}
.genetics-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  margin-top: 28px;
}
.genetics-link {
  color: #8d672b;
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
}
.genetics-link:hover { color: #bb8835; }
.genetics-stack {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.genetics-item {
  display: block;
  min-height: 168px;
  padding: 23px 22px 21px;
  border: 1px solid #dfe8ee;
  border-radius: 8px;
  background: rgba(255,255,255,.82);
  box-shadow: 0 8px 24px rgba(20,50,82,.05);
  text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.genetics-item:hover {
  border-color: rgba(180,138,66,.45);
  box-shadow: 0 12px 28px rgba(20,50,82,.09);
  transform: translateY(-2px);
}
.genetics-item span {
  display: block;
  margin-bottom: 11px;
  color: #b48a42;
  font-family: Georgia, serif;
  font-size: 20px;
  font-weight: 700;
}
.genetics-item h3 {
  margin: 0 0 9px;
  color: var(--navy-900);
  font-family: var(--serif);
  font-size: 19px;
  letter-spacing: .04em;
}
.genetics-item p {
  margin: 0;
  color: #6a7785;
  font-size: 12px;
  line-height: 1.78;
}
.services { background: linear-gradient(180deg, #fff 0%, #fbfcfd 100%); }
.service-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }
.service-card {
  min-height: 260px;
  padding: 29px 24px 25px;
  text-align: center;
  background: #fff;
  border: 1px solid #e8ebef;
  border-radius: 10px;
  box-shadow: 0 8px 24px rgba(20,50,82,.05);
  transition: transform .25s, border-color .25s, box-shadow .25s;
}
.service-card:hover { transform: translateY(-7px); border-color: rgba(201,155,75,.55); box-shadow: var(--shadow); }
.service-card svg { width: 58px; height: 58px; color: #ae833d; margin-bottom: 11px; }
.service-card h3 { margin: 0 0 12px; font-family: var(--serif); font-size: 21px; color: var(--navy-900); letter-spacing: .04em; }
.service-card p { margin: 0; color: #6f7b89; font-size: 13px; line-height: 1.8; }

.expert-section {
  position: relative;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 42% 10%, rgba(23,74,119,.8), transparent 37%),
    linear-gradient(115deg, #041d37, #052d53 58%, #031a32);
}
.expert-grid { min-height: 354px; display: grid; grid-template-columns: 255px 1.25fr repeat(4, .86fr); align-items: center; }
.doctor-photo { align-self: end; height: 330px; margin-right: 26px; border: 2px solid var(--gold-400); border-radius: 13px 13px 0 0; overflow: hidden; background: #eef0f1; }
.doctor-photo img { width: 100%; height: 100%; padding-top: 12px; box-sizing: border-box; object-fit: cover; object-position: center top; background: #fff; }
.doctor-intro { padding: 30px 28px 30px 0; }
.doctor-intro h2 { margin: 0 0 3px; font-family: var(--serif); font-size: 34px; letter-spacing: .14em; }
.doctor-title { color: rgba(255,255,255,.8); font-size: 14px; margin: 0 0 18px; }
.doctor-intro > p:last-of-type { color: rgba(255,255,255,.7); font-size: 13px; }
.btn-outline-gold { border-color: var(--gold-500); color: var(--gold-300); min-height: 46px; margin-top: 15px; }
.btn-outline-gold:hover { background: rgba(222,183,107,.1); }
.expert-fact { min-height: 245px; padding: 24px 18px 15px 28px; border-left: 1px solid rgba(255,255,255,.17); }
.expert-fact svg { width: 43px; height: 43px; color: var(--gold-400); margin-bottom: 7px; }
.expert-fact h3 { margin: 0 0 11px; font-family: var(--serif); font-size: 19px; letter-spacing: .06em; }
.expert-fact ul { padding: 0; margin: 0; list-style: none; color: rgba(255,255,255,.67); font-size: 12px; line-height: 1.9; }
.expert-fact li::before { content: "·"; color: var(--gold-400); margin-right: 6px; }

.patient-stories-section {
  background: linear-gradient(180deg, #fff 0%, #f8fbfe 100%);
  border-top: 1px solid #eef2f6;
}
.patient-story-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:22px; }
.patient-story-card { min-height:214px; display:grid; grid-template-columns:40% 60%; overflow:hidden; border:1px solid #e5eaf0; border-radius:10px; background:#fff; box-shadow:0 8px 24px rgba(20,50,82,.05); transition:transform .25s ease, box-shadow .25s ease, border-color .25s ease; text-decoration:none; color:inherit; cursor:pointer; }
.patient-story-card:hover { transform:translateY(-4px); border-color:rgba(201,155,75,.48); box-shadow:0 18px 40px rgba(8,32,55,.14); }
.patient-story-card:hover .patient-story-visual { filter:brightness(1.06); }
.patient-story-card:hover .read-more { color:#c79737; }
.patient-story-card:focus-visible { outline:3px solid rgba(199,151,55,.45); outline-offset:4px; }
.patient-story-card > div:last-child { min-width:0; padding:23px 21px 20px; }
.patient-story-card h3 { margin:0 0 10px; font-family:var(--serif); font-size:19px; line-height:1.45; color:var(--navy-900); overflow-wrap:anywhere; }
.patient-story-card p { margin:0 0 16px; color:#6e7a87; font-size:12px; line-height:1.75; overflow-wrap:anywhere; }
.patient-story-card time { display:block; margin:0 0 6px; color:#a0aab4; font-size:11px; }
.read-more { display:inline-block; color:#a27631; font-size:12px; font-weight:700; }
.patient-story-visual { position:relative; min-height:214px; overflow:hidden; background:#0d4774; }
.patient-story-visual > span { position:absolute; z-index:2; left:0; top:0; padding:5px 11px; color:#fff; background:#b28a43; font-size:11px; border-radius:0 0 8px 0; }
.patient-story-visual::after { content:""; position:absolute; inset:22px; border:1px solid rgba(255,255,255,.28); border-radius:999px; }
.patient-story-visual-a { background: linear-gradient(135deg, rgba(5,42,76,.72), rgba(6,58,98,.28)), url("assets/hero-consultation.png") 58% center/cover; }
.patient-story-visual-b { background: linear-gradient(135deg, rgba(3,31,59,.72), rgba(7,75,112,.32)), url("assets/hospital-environment/nurse-station.jpg") 50% center/cover; }
.patient-story-visual-c { background: radial-gradient(circle at 48% 42%, rgba(109,213,235,.45), transparent 33%), linear-gradient(135deg,#062d56,#1b6f9d); }
.patient-story-visual-c::before { content:""; position:absolute; left:50%; top:50%; width:78px; height:78px; transform:translate(-50%,-50%); border-radius:50%; border:4px solid rgba(255,255,255,.78); box-shadow:0 0 0 13px rgba(98,212,235,.25); }
.fields {
  padding: 78px 0 82px;
  background: linear-gradient(180deg, #f9fbfe 0%, #f3f7fc 52%, #fbfcfe 100%);
  border-top: 1px solid #edf2f8;
  border-bottom: 1px solid #edf2f8;
}
.fields .container { width: min(1320px, calc(100% - 64px)); }
.field-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
  align-items: stretch;
}
.disease-card {
  display: flex;
  min-width: 0;
  min-height: 438px;
  padding: 16px;
  flex-direction: column;
  gap: 12px;
  overflow: hidden;
  border: 1px solid #e1e8f3;
  border-radius: 18px;
  background: rgba(255,255,255,.98);
  box-shadow: 0 8px 24px rgba(15,35,80,.06);
  transition: transform .24s ease, border-color .24s ease, box-shadow .24s ease;
}
.disease-card:hover {
  transform: translateY(-4px);
  border-color: #c8d7ee;
  box-shadow: 0 14px 32px rgba(15,35,80,.1);
}
.disease-card-media {
  order: 1;
  aspect-ratio: 16 / 9;
  flex: 0 0 auto;
  overflow: hidden;
  border-radius: 12px;
  background: #edf3fa;
}
.disease-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
.disease-card:hover .disease-card-media img { transform: scale(1.025); }
.disease-card-heading {
  order: 2;
  min-height: 112px;
}
.disease-card-heading h3 {
  margin: 0 0 5px;
  color: #0b2f8f;
  font-family: var(--sans);
  font-size: 18px;
  font-weight: 800;
  line-height: 1.42;
  letter-spacing: 0;
  overflow-wrap: anywhere;
}
.disease-card-heading p {
  margin: 0;
  color: #49649b;
  font-size: 13px;
  line-height: 1.5;
  overflow-wrap: anywhere;
}
.disease-card-desc {
  order: 3;
  min-height: 90px;
  margin: 0;
  color: #485f7d;
  font-size: 14px;
  line-height: 1.72;
  overflow-wrap: anywhere;
}
.disease-card-link {
  order: 4;
  display: inline-flex;
  min-width: 142px;
  min-height: 40px;
  margin-top: auto;
  padding: 0 18px;
  align-items: center;
  justify-content: center;
  align-self: flex-start;
  gap: 17px;
  color: #1555d9;
  border: 1px solid #d5e1f5;
  border-radius: 9px;
  background: #fbfdff;
  font-size: 13px;
  font-weight: 700;
  transition: color .2s ease, border-color .2s ease, background .2s ease, transform .2s ease;
}
.disease-card-link span { font-size: 18px; line-height: 1; }
.disease-card-link:hover {
  color: #fff;
  border-color: #2c65dd;
  background: #2c65dd;
  transform: translateX(2px);
}
.disease-card-link:focus-visible {
  outline: 3px solid rgba(44,101,221,.2);
  outline-offset: 3px;
}
.disease-card--content-first .disease-card-heading { order: 1; }
.disease-card--content-first .disease-card-media { order: 2; }
.disease-grid-noscript {
  padding: 20px;
  text-align: center;
  color: #536a86;
  border: 1px solid #e1e8f3;
  border-radius: 14px;
  background: #fff;
}
.disease-grid-noscript a { color: #1555d9; font-weight: 700; }

.process-section { background: linear-gradient(180deg, #f7f9fc, #fff); padding: 57px 0 62px; border-top: 1px solid #edf0f3; border-bottom: 1px solid #edf0f3; }
.process-track { display: grid; grid-template-columns: repeat(6,1fr); position: relative; margin-top: 36px; }
.process-track::before { content:""; position:absolute; top:46px; left:8%; right:8%; border-top:2px dotted #8097b1; }
.process-item { position:relative; text-align:center; padding:0 16px; }
.process-item b { position:absolute; z-index:2; top:-8px; right:calc(50% - 41px); width:22px; height:22px; border-radius:50%; display:grid; place-items:center; color:#fff; background:#b28a43; font-size:11px; box-shadow:0 0 0 4px #fff; }
.process-icon { position:relative; z-index:1; width:84px; height:84px; display:grid; place-items:center; margin:0 auto 12px; overflow:hidden; border-radius:50%; border:1px solid #dce3eb; background:#fff; box-shadow:0 7px 19px rgba(21,56,88,.07); }
.process-icon img { position:absolute; left:50%; top:50%; width:650px; height:650px; max-width:none; transform:translate(-50%,-50%); object-fit:contain; }
.process-item h3 { margin:0 0 6px; font-family:var(--serif); font-size:19px; letter-spacing:.05em; }
.process-item p { margin:0; color:#788595; font-size:12px; line-height:1.65; }

.resources { padding-top: 62px; }
.heading-row { display:flex; align-items:center; justify-content:space-between; }
.heading-row > div { flex:1; text-align:center; padding-left:120px; }
.heading-row > a { padding:8px 18px; border:1px solid #d9bb7f; border-radius:4px; color:#9d7433; font-size:12px; }
.resource-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:22px; }
.resource-card { min-height:190px; display:grid; grid-template-columns:42% 58%; border:1px solid #e5e8ec; border-radius:9px; overflow:hidden; background:#fff; box-shadow:0 5px 18px rgba(20,50,82,.04); transition:.25s; }
.resource-card:hover { transform:translateY(-5px); box-shadow:var(--shadow); }
.resource-visual { position:relative; min-height:190px; overflow:hidden; background:#0d4774; }
.resource-visual > span { position:absolute; z-index:2; left:0; top:0; padding:5px 11px; color:#fff; background:#b28a43; font-size:11px; border-radius:0 0 8px 0; }
.resource-card > div:last-child { padding:22px 20px; }
.resource-card h3 { margin:0 0 9px; font-family:var(--serif); font-size:19px; line-height:1.45; }
.resource-card p { color:#6e7a87; font-size:12px; line-height:1.7; margin:0 0 18px; }
.resource-card time { color:#9aa4af; font-size:11px; }
.research { background: radial-gradient(circle at 30% 50%,rgba(96,213,255,.5),transparent 30%), linear-gradient(135deg,#042d58,#1a75a9); }
.helix { position:absolute; left:37%; top:13%; width:35px; height:140px; border-left:5px solid #62d4eb; border-right:5px solid #eb6280; transform:rotate(30deg); border-radius:50%; box-shadow:inset 12px 0 0 -10px #fff; }
.video { background: linear-gradient(135deg,rgba(1,34,63,.22),rgba(3,36,65,.7)), url("assets/hero-consultation.png") 73% center/cover; }
.video button { position:absolute; left:50%; top:50%; width:57px; height:57px; transform:translate(-50%,-50%); border-radius:50%; border:2px solid rgba(255,255,255,.85); color:#fff; background:rgba(5,39,71,.72); cursor:pointer; }
.lab { background: linear-gradient(135deg,rgba(4,51,85,.05),rgba(4,51,85,.45)), url("assets/hero-consultation.png") right bottom/230% auto; filter:saturate(.72) hue-rotate(9deg); }
.lab::before { content:"";position:absolute;left:30%;top:25%;width:45px;height:105px;border:8px solid rgba(115,214,235,.85);border-top:0;border-radius:0 0 26px 26px;transform:rotate(12deg);box-shadow:20px 6px 0 -14px #fff }

.contact-strip { position:relative; overflow:hidden; color:#fff; background:linear-gradient(120deg,#042545,#063962 65%,#052a4c); }
.contact-strip::after { content:"";position:absolute;right:-6%;bottom:-100px;width:430px;height:170px;border-top:1px solid rgba(222,183,107,.25);border-radius:50%;transform:rotate(-8deg);box-shadow:0 -16px 0 -15px rgba(222,183,107,.18),0 -32px 0 -31px rgba(222,183,107,.12) }
.contact-grid { min-height:94px; padding:24px 0; display:grid; grid-template-columns:1.6fr auto auto auto auto; align-items:center; gap:0; position:relative; z-index:1; }
.contact-prompt { display:flex; align-items:center; gap:16px; padding-right:18px; }
.round-icon { width:54px; height:54px; flex:0 0 auto; display:grid; place-items:center; border-radius:50%; color:#3f2d15; background:linear-gradient(135deg,#f4d790,#c99b4b); }
.round-icon svg { width:30px; height:30px; }
.contact-prompt h2 { margin:0; font-family:var(--serif); font-size:22px; color:var(--gold-300); letter-spacing:.05em; }
.contact-prompt p { margin:2px 0 0; color:rgba(255,255,255,.7); font-size:12px; }
.contact-link { display:flex; flex-direction:column; justify-content:center; gap:2px; padding:8px 16px; border-left:1px solid rgba(255,255,255,.15); text-decoration:none; color:inherit; transition:background .2s; }
.contact-link:hover { background:rgba(255,255,255,.04); }
.contact-link small { color:var(--gold-400); font-size:10px; font-weight:700; letter-spacing:.08em; text-transform:uppercase; }
.contact-link strong { color:rgba(255,255,255,.82); font-size:12px; font-weight:400; white-space:nowrap; }
.contact-grid .btn { margin-left:12px; min-height:46px; padding:11px 26px; font-size:14px; font-weight:800; white-space:nowrap; flex-shrink:0; }

.site-footer { color:#fff; background:#031a32; }
.footer-grid { display:grid; grid-template-columns:1.5fr .7fr .7fr 1.15fr .65fr; gap:45px; padding:52px 0 38px; }
.footer-brand .brand strong { font-size:18px; }
.footer-brand .brand svg { width:50px; height:50px; }
.footer-brand > p { width:85%; color:rgba(255,255,255,.58); font-size:13px; margin:20px 0; }
.socials { display:flex; gap:13px; }
.socials a, .socials span { width:31px;height:31px;display:grid;place-items:center;border:1px solid rgba(222,183,107,.45);border-radius:50%;color:var(--gold-300);font-size:11px }
.footer-legal { color:rgba(255,255,255,.42);font-size:12px;cursor:default; }
.footer-grid h3 { margin:4px 0 14px; font-family:var(--serif); font-size:16px; color:#fff; letter-spacing:.08em; }
.footer-grid > div:not(:first-child):not(:last-child) a { display:block; color:rgba(255,255,255,.6); font-size:12px; margin:8px 0; transition:.2s; }
.footer-grid > div:not(:first-child):not(:last-child) a:hover { color:var(--gold-300); }
.footer-contact p { color:rgba(255,255,255,.6); font-size:12px; margin:9px 0; }
.qr-wrap { border-left:1px solid rgba(255,255,255,.18); padding-left:34px; display:grid; justify-items:center; align-content:center; }
.qr-code { width:102px;height:102px;background:
  linear-gradient(90deg,#fff 8px,transparent 8px) 0 0/16px 16px,
  linear-gradient(#fff 8px,transparent 8px) 0 0/16px 16px,
  linear-gradient(90deg,#fff 4px,transparent 4px) 4px 4px/12px 12px,
  linear-gradient(#fff 4px,#06192c 4px) 4px 4px/12px 12px;
  border:7px solid #fff; border-radius:4px; box-shadow:0 0 0 1px #fff;
}
.qr-wrap strong { margin-top:10px; font-size:12px; }.qr-wrap small{font-size:10px;color:rgba(255,255,255,.55)}
.copyright { min-height:58px;display:flex;align-items:center;justify-content:space-between;color:rgba(255,255,255,.38);font-size:10px;border-top:1px solid rgba(255,255,255,.09) }
.copyright span:last-child { display:flex;gap:15px;align-items:center }.copyright i{height:12px;border-left:1px solid rgba(255,255,255,.18)}

.toast {
  position:fixed; z-index:100; left:50%; bottom:28px; padding:14px 20px; color:#fff; background:#0c3458; border:1px solid var(--gold-500); border-radius:7px; box-shadow:0 14px 30px rgba(0,0,0,.25);
  transform:translate(-50%,120px); opacity:0; pointer-events:none; transition:.35s;
}
.toast.show { transform:translate(-50%,0); opacity:1; }
.reveal { opacity:1; transform:none; }
.js .reveal { opacity:0; transform:translateY(22px); transition:opacity .65s ease,transform .65s ease; }
.js .reveal.visible { opacity:1; transform:none; }

.route-page { background:#f7f9fc; }
.route-header { position:fixed;background:rgba(3,26,50,.98);box-shadow:0 8px 30px rgba(0,0,0,.18); }
.route-brand-mark {
  width:44px;height:44px;display:grid;place-items:center;flex:0 0 auto;
  border:2px solid var(--gold-400);border-radius:50% 50% 46% 46%;color:var(--gold-300);
  font-family:Georgia,serif;font-size:23px;font-weight:700;
}
.route-main { min-height:calc(100vh - 220px);padding-top:88px; }
.route-hero {
  position:relative;overflow:hidden;padding:54px 0 60px;color:#fff;
  background:
    linear-gradient(90deg, rgba(4, 28, 50, 0.97) 0%, rgba(4, 28, 50, 0.9) 42%, rgba(4, 28, 50, 0.48) 72%, rgba(4, 28, 50, 0.24) 100%),
    var(--route-hero-image, url("assets/hero-consultation.png")) var(--route-hero-pos, center right) / cover no-repeat;
}
.resource-detail-page.is-paper-resource { --route-hero-image: none; }
.route-hero::after {
  content:"";position:absolute;right:-8%;bottom:-110px;width:520px;height:180px;
  border-top:1px solid rgba(222,183,107,.35);border-radius:50%;transform:rotate(-8deg);
  box-shadow:0 -18px 0 -17px rgba(222,183,107,.2),0 -36px 0 -35px rgba(222,183,107,.12);
}
.route-hero .container { position:relative;z-index:1; }
.breadcrumb { display:flex;align-items:center;gap:9px;margin-bottom:30px;color:rgba(255,255,255,.62);font-size:12px; }
.breadcrumb a:hover { color:var(--gold-300); }
.breadcrumb strong { color:rgba(255,255,255,.86);font-weight:500; }
.breadcrumb, #breadcrumb { display:none !important; }
.route-hero h1 { max-width:900px;margin:0 0 14px;font-family:var(--serif);font-size:clamp(38px,4vw,58px);line-height:1.2;letter-spacing:.05em; }
.route-hero > .container > p:last-child { max-width:760px;margin:0;color:rgba(255,255,255,.72);font-size:15px; }

/* ---------- Per‑route hero background images ---------- */
body[data-route-path^="/about/"],
body[data-route-path^="/en/about/"] {
  --route-hero-image: url("assets/hero/about-hero-bg.png");
}

body[data-route-path^="/medical-specialties/"],
body[data-route-path^="/en/medical-specialties/"] {
  --route-hero-image: none;
}

body[data-route-path^="/expert-profile/"],
body[data-route-path^="/en/expert-profile/"] {
  --route-hero-image: url("assets/hero/expert-profile-hero-bg.png");
}

body[data-route-path^="/patient-journey/"],
body[data-route-path^="/en/patient-journey/"] {
  --route-hero-image: url("assets/hero/patient-journey-hero-bg.png");
}

body[data-route-path^="/medical-resources/"],
body[data-route-path^="/en/medical-resources/"] {
  --route-hero-image: url("assets/hero/medical-resources-hero-bg.png");
}

body[data-route-path^="/contact/"],
body[data-route-path^="/medical-inquiry/"],
body[data-route-path^="/thank-you/"],
body[data-route-path^="/en/contact/"],
body[data-route-path^="/en/medical-inquiry/"],
body[data-route-path^="/en/thank-you/"] {
  --route-hero-image: url("assets/hero/contact-hero-bg.png");
}

/* ---------- Per‑route hero background-position (less crop, more subject) ---------- */
body[data-route-path^="/patient-journey/"],
body[data-route-path^="/en/patient-journey/"] {
  --route-hero-pos: center center;
}
body[data-route-path^="/medical-resources/"],
body[data-route-path^="/en/medical-resources/"] {
  --route-hero-pos: 65% center;
}
body[data-route-path^="/contact/"],
body[data-route-path^="/medical-inquiry/"],
body[data-route-path^="/thank-you/"],
body[data-route-path^="/en/contact/"],
body[data-route-path^="/en/medical-inquiry/"],
body[data-route-path^="/en/thank-you/"] {
  --route-hero-pos: center center;
}

.route-content { padding:64px 0 82px; }
.route-card-grid { display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:18px; }
.route-card,.route-panel {
  border:1px solid #e2e7ed;border-radius:10px;background:#fff;box-shadow:0 8px 24px rgba(20,50,82,.05);
}
.route-card { display:block;min-height:190px;padding:25px;transition:transform .22s ease,border-color .22s ease,box-shadow .22s ease; }
.route-card:hover { transform:translateY(-4px);border-color:var(--gold-300);box-shadow:var(--shadow); }
.route-card h2,.route-panel h2,.expert-route-layout h2 { margin:0 0 10px;color:var(--navy-900);font-family:var(--serif);font-size:21px;line-height:1.4; }
.route-card p,.route-panel p,.expert-route-layout p { margin:0;color:#6d7b8a;font-size:13px;line-height:1.8; }
.route-card span { display:inline-block;margin-top:22px;color:#9e7634;font-size:12px;font-weight:700; }
.route-section-block + .route-section-block { margin-top:38px; }
.route-section-block > h2 { margin:0 0 15px;color:var(--navy-900);font-family:var(--serif);font-size:25px; }
.route-panel { padding:30px; }
.boundary-list { display:grid;gap:12px;margin:24px 0 0;padding:0;list-style:none; }
.boundary-list li { position:relative;padding:13px 15px 13px 43px;border-radius:7px;color:#314a63;background:#f6f8fb; }
.boundary-list li::before { content:"✓";position:absolute;left:16px;color:#a97d35;font-weight:700; }
.disease-layout { display:grid;gap:15px; }
.disease-section { display:grid;grid-template-columns:55px 1fr;gap:20px;align-items:start; }
.disease-section > span { color:var(--gold-500);font-family:Georgia,serif;font-size:22px; }
.disease-loading {
  min-height:260px;display:grid;place-items:center;align-content:center;gap:16px;
  border:1px solid #e2e7ed;border-radius:12px;background:#fff;color:var(--muted);
}
.disease-loading span {
  width:36px;height:36px;border:3px solid #dfe7ef;border-top-color:var(--gold-500);
  border-radius:50%;animation:diseaseLoading .8s linear infinite;
}
@keyframes diseaseLoading { to { transform:rotate(360deg); } }
.disease-detail-page .route-hero > .container {
  display:grid;grid-template-columns:minmax(0,1fr) 230px;gap:54px;align-items:center;
}
.disease-route-hero-copy { min-width:0; }
body[data-route-path^="/medical-specialties/"].disease-detail-page .route-hero > .container,
body[data-route-path^="/en/medical-specialties/"].disease-detail-page .route-hero > .container {
  grid-template-columns: 1fr;
}
body[data-route-path^="/medical-specialties/"] .route-disease-visual,
body[data-route-path^="/en/medical-specialties/"] .route-disease-visual {
  display: none;
}

/* Medical-specialties list page: single-column hero, text left-aligned */
[data-route-path="/medical-specialties/"] .route-hero > .container,
[data-route-path="/en/medical-specialties/"] .route-hero > .container {
  grid-template-columns: 1fr;
}
[data-route-path="/medical-specialties/"] .route-hero h1,
[data-route-path="/en/medical-specialties/"] .route-hero h1 {
  max-width: 680px;
}
[data-route-path="/medical-specialties/"] .route-hero > .container > p:last-child,
[data-route-path="/en/medical-specialties/"] .route-hero > .container > p:last-child {
  max-width: 620px;
}
.disease-route-hero-copy #route-description {
  max-width:780px;margin:0;color:rgba(255,255,255,.76);font-size:15px;line-height:1.85;
}
.route-disease-tags { display:flex;flex-wrap:wrap;gap:8px;margin:0 0 16px; }
.route-disease-tags span {
  padding:5px 10px;border:1px solid rgba(239,209,142,.38);border-radius:999px;
  color:var(--gold-300);background:rgba(255,255,255,.06);font-size:11px;font-weight:700;
}
.route-disease-visual {
  min-height:210px;display:grid;place-items:center;padding:24px;border:1px solid rgba(239,209,142,.25);
  border-radius:22px;background:rgba(255,255,255,.08);box-shadow:0 22px 50px rgba(0,0,0,.2);
}
.route-disease-visual img { width:min(170px,100%);filter:drop-shadow(0 16px 22px rgba(0,0,0,.18)); }
.disease-import { display:grid;gap:42px; }
.imported-disease-quick {
  padding:30px;border:1px solid #dce7f1;border-radius:16px;
  background:linear-gradient(145deg,#f6fbff,#fff);box-shadow:0 12px 34px rgba(16,44,75,.06);
}
.disease-import .section-head { max-width:820px; }
.disease-import .section-title {
  margin:0 0 8px;color:var(--navy-900);font-family:var(--serif);font-size:26px;line-height:1.35;
}
.disease-import .section-desc { margin:0;color:var(--muted);font-size:13px; }
.disease-import .quick-card-grid { display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:16px;margin-top:22px; }
.disease-import .quick-card {
  padding:20px;border:1px solid #dfe7ef;border-left:4px solid var(--navy-700);
  border-radius:12px;background:#fff;box-shadow:0 8px 22px rgba(16,44,75,.05);
}
.disease-import .quick-card h4 { margin:0 0 8px;color:var(--navy-900);font-size:15px;line-height:1.45; }
.disease-import .quick-card p { margin:0;color:#607388;font-size:12px;line-height:1.75; }
.disease-import .disease-content-layout { display:grid;grid-template-columns:minmax(0,1fr) 280px;gap:28px;align-items:start; }
.disease-import .disease-content-main { display:grid;gap:20px;min-width:0; }
.disease-import .card {
  border:1px solid #e0e7ee;border-radius:13px;background:#fff;box-shadow:0 9px 26px rgba(16,44,75,.05);
}
.disease-import .card-pad { padding:27px; }
.disease-import .content-block { scroll-margin-top:88px; }
.disease-import .content-block h2 {
  margin:0 0 16px;padding-bottom:10px;border-bottom:2px solid #edf3f8;
  color:var(--navy-900);font-family:var(--serif);font-size:24px;line-height:1.35;
}
.disease-import .content-block p,
.disease-import .content-intro { margin:0 0 16px;color:#4d6077;font-size:14px;line-height:1.85; }
.disease-import .symptom-grid { display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:14px; }
.disease-import .symptom-group,
.disease-import .stage-item,
.disease-import .doc-group {
  padding:16px;border:1px solid #e8edf2;border-radius:11px;background:#f8fafc;
}
.disease-import .symptom-group h4,
.disease-import .stage-item h4,
.disease-import .doc-group h5 {
  margin:0 0 9px;padding-bottom:7px;border-bottom:1px solid #e1e7ed;
  color:var(--navy-900);font-size:14px;line-height:1.45;
}
.disease-import .symptom-group ul { margin:0;padding-left:18px;color:#52677f;font-size:12px;line-height:1.8; }
.disease-import .stage-grid { display:grid;grid-template-columns:repeat(auto-fit,minmax(230px,1fr));gap:14px; }
.disease-import .stage-item p { margin:0;color:#52677f;font-size:12px;line-height:1.75; }
.disease-import .treatment-card-grid { display:grid;grid-template-columns:1fr 1fr;gap:14px; }
.disease-import .treatment-card {
  padding:18px;border:1px solid #dfe7ef;border-radius:12px;background:#fff;box-shadow:0 7px 20px rgba(16,44,75,.04);
}
.disease-import .treatment-card h4 { margin:0 0 12px;color:var(--navy-900);font-size:15px;line-height:1.45; }
.disease-import .treatment-meta { display:grid;grid-template-columns:88px 1fr;gap:8px;margin-bottom:8px;font-size:12px;line-height:1.7; }
.disease-import .treatment-label { color:#a1742f;font-weight:800; }
.disease-import .treatment-meta span:last-child { color:#52677f; }
.disease-import .suitable-card-grid { display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:14px; }
.disease-import .suitable-card {
  padding:19px;border:1px solid #cfe0ee;border-radius:12px;background:linear-gradient(160deg,#eef7ff,#fff);
}
.disease-import .suitable-card h4 { margin:0 0 8px;color:var(--navy-700);font-size:15px;line-height:1.45; }
.disease-import .suitable-card p { margin:0;color:#4d6077;font-size:12px;line-height:1.75; }
.disease-import .not-suitable-block { border-left:4px solid #d38a27; }
.disease-import .not-suitable-list {
  display:grid;grid-template-columns:1fr 1fr;gap:8px;margin:0;padding:0;list-style:none;
}
.disease-import .not-suitable-list li {
  display:flex;align-items:flex-start;gap:8px;padding:10px 13px;border:1px solid #ead49a;
  border-radius:8px;color:#66501f;background:#fff8e4;font-size:12px;line-height:1.65;
}
.disease-import .not-suitable-list li::before { content:"!";flex:0 0 auto;font-weight:900;color:#b86e13; }
.disease-import .doc-grid { display:grid;grid-template-columns:1fr 1fr;gap:14px; }
.disease-import .checklist { margin:0;padding:0;list-style:none; }
.disease-import .checklist li {
  position:relative;padding:3px 0 3px 22px;color:#52677f;font-size:12px;line-height:1.75;
}
.disease-import .checklist li::before { content:"□";position:absolute;left:0;color:var(--navy-700);font-weight:700; }
.disease-import .disease-faq-list { display:grid;gap:10px; }
.disease-import .disease-faq-item { overflow:hidden;border:1px solid #dfe7ef;border-radius:10px;background:#fff; }
.disease-import .disease-faq-item summary {
  display:flex;justify-content:space-between;align-items:center;gap:16px;padding:14px 17px;
  color:var(--navy-900);font-size:13px;font-weight:800;line-height:1.55;cursor:pointer;list-style:none;
}
.disease-import .disease-faq-item summary::-webkit-details-marker { display:none; }
.disease-import .disease-faq-item summary::after { content:"+";color:var(--gold-500);font-size:18px; }
.disease-import .disease-faq-item[open] summary::after { content:"−"; }
.disease-import .disease-faq-item p { margin:0;padding:0 17px 15px;color:#52677f;font-size:13px;line-height:1.8; }
.disease-import .boundary-block { padding:23px;border:1px solid #ead49a;border-radius:12px;background:#fff8e4; }
.disease-import .boundary-block h2 { color:#755510;border-bottom-color:#ead49a; }
.disease-import .boundary-block ul { margin:0;padding:0;list-style:none; }
.disease-import .boundary-block li {
  position:relative;padding:4px 0 4px 19px;color:#66501f;font-size:13px;line-height:1.75;
}
.disease-import .boundary-block li::before { content:"•";position:absolute;left:3px;color:#b86e13; }
.disease-import .disease-detail-sidebar { position:sticky;top:96px;display:grid;gap:14px; }
.disease-import .sidebar-nav-card h4,
.disease-import .sidebar-process-card h4,
.disease-import .sidebar-related-card h4 {
  margin:0 0 12px;color:var(--navy-900);font-family:var(--serif);font-size:16px;
}
.disease-import .sidebar-anchor-nav { display:grid;gap:4px; }
.disease-import .sidebar-anchor-nav a {
  display:block;padding:8px 10px;border-radius:7px;color:#52677f;font-size:12px;line-height:1.5;
  transition:color .2s ease,background .2s ease;
}
.disease-import .sidebar-anchor-nav a:hover { color:#956b28;background:#f8f2e7; }
.disease-import .compact-process-list { display:grid;gap:4px; }
.disease-import .compact-process-item {
  display:grid;grid-template-columns:34px 1fr;gap:10px;align-items:start;padding:10px 0;border-bottom:1px solid #e4e9ef;
}
.disease-import .compact-process-item:last-child { border-bottom:0; }
.disease-import .compact-process-item > span {
  width:31px;height:31px;display:grid;place-items:center;border-radius:50%;
  color:#fff;background:var(--navy-700);font-size:12px;font-weight:800;
}
.disease-import .compact-process-item strong { display:block;color:var(--navy-900);font-size:12px;line-height:1.45; }
.disease-import .compact-process-item p { margin:2px 0 0;color:var(--muted);font-size:10px;line-height:1.55; }
.disease-consultation-banner {
  display:grid;grid-template-columns:1fr auto;align-items:center;gap:28px;padding:30px 32px;
  border:1px solid rgba(201,155,75,.3);border-radius:16px;color:#fff;
  background:linear-gradient(125deg,var(--navy-950),var(--navy-800));
  box-shadow:0 18px 40px rgba(3,26,50,.15);
}
.disease-consultation-banner p { margin:0 0 7px;color:var(--gold-300);font-size:10px;font-weight:800;letter-spacing:.14em; }
.disease-consultation-banner h2 { margin:0 0 5px;font-family:var(--serif);font-size:23px;line-height:1.4; }
.disease-consultation-banner span { color:rgba(255,255,255,.68);font-size:12px;line-height:1.7; }
.disease-consultation-banner .route-primary-button { margin:0;white-space:nowrap; }

/* Static doctor profile */
.doctor-profile-page { background:#f6f8fb; }
.doctor-profile-page .page-hero {
  position:relative;overflow:hidden;padding:64px 0;color:#fff;
  background:
    linear-gradient(90deg, rgba(4, 28, 50, 0.98) 0%, rgba(4, 28, 50, 0.94) 38%, rgba(4, 28, 50, 0.72) 65%, rgba(4, 28, 50, 0.55) 100%),
    url("assets/hero/expert-profile-hero-bg.png") center right / cover no-repeat;
}
.doctor-profile-page .page-hero::after {
  content:"";position:absolute;right:-6%;bottom:-100px;width:520px;height:170px;
  border-top:1px solid rgba(222,183,107,.35);border-radius:50%;transform:rotate(-8deg);
}
.doctor-profile-page .page-hero-inner {
  position:relative;z-index:1;display:grid;grid-template-columns:320px minmax(0,1fr);gap:52px;align-items:center;
}
.doctor-profile-page .hero-art { min-width:0; }
.doctor-profile-page .doctor-photo-frame {
  overflow:hidden;max-width:310px;margin:0 auto;padding:12px 12px 0;border:1px solid rgba(239,209,142,.35);
  border-radius:18px;background:rgba(255,255,255,.1);box-shadow:0 24px 54px rgba(0,0,0,.24);
}
.doctor-profile-page .doctor-photo-frame img { width:100%;max-height:410px;object-fit:cover;object-position:center top; }
.doctor-profile-page .page-hero .breadcrumb { margin-bottom:22px; }
.doctor-profile-page .page-hero h1 {
  margin:0 0 14px;font-family:var(--serif);font-size:clamp(36px,4vw,56px);line-height:1.2;letter-spacing:.03em;
}
.doctor-profile-page .page-hero h1 small {
  display:block;margin-bottom:5px;color:var(--gold-300);font-family:var(--sans);font-size:13px;letter-spacing:.08em;
}
.doctor-profile-page .page-hero h1 em { color:rgba(255,255,255,.66);font-family:Georgia,serif;font-size:.48em;font-style:normal; }
.doctor-profile-page .page-hero .section-desc { max-width:820px;margin:0 0 18px;color:rgba(255,255,255,.76);line-height:1.75; }
.doctor-profile-page .page-hero h3 { color:var(--gold-300)!important;font-family:var(--serif);font-size:17px; }
.doctor-profile-page .profile-tags { display:flex;flex-wrap:wrap;gap:8px;margin:8px 0 17px; }
.doctor-profile-page .tag-soft {
  display:inline-flex;padding:6px 10px;border:1px solid rgba(239,209,142,.32);border-radius:999px;
  color:rgba(255,255,255,.82);background:rgba(255,255,255,.06);font-size:11px;line-height:1.35;
}
.doctor-profile-page .hero-actions { display:flex;flex-wrap:wrap;gap:12px; }
.doctor-profile-page .hero-actions .btn {
  display:inline-flex;align-items:center;justify-content:center;min-height:42px;padding:10px 18px;border-radius:5px;font-size:13px;font-weight:700;line-height:1.2;
}
.doctor-profile-page .hero-actions .btn-primary { color:#13283c;background:linear-gradient(135deg,#efd38e,#c99b4b); }
.doctor-profile-page .hero-actions .btn-outline { border:1px solid rgba(255,255,255,.45);color:#fff;background:transparent; }
.doctor-profile-page .section { padding:60px 0; }
.doctor-profile-page .section-soft { background:#edf3f8; }
.doctor-profile-page .grid { display:grid;gap:18px; }
.doctor-profile-page .grid-2 { grid-template-columns:repeat(2,minmax(0,1fr)); }
.doctor-profile-page .grid-6 { grid-template-columns:repeat(3,minmax(0,1fr)); }
.doctor-profile-page .section-title {
  margin:0;color:var(--navy-900);font-family:var(--serif);font-size:clamp(25px,3vw,34px);line-height:1.35;
}
.doctor-profile-page .section-desc { color:#586d82;line-height:1.85; }
.doctor-profile-page .check-list { display:grid;gap:12px;margin:24px 0 0;padding:0;list-style:none; }
.doctor-profile-page .check-list li {
  position:relative;padding:12px 15px 12px 42px;border:1px solid #e0e7ee;border-radius:9px;color:#53687d;background:#fff;line-height:1.75;
}
.doctor-profile-page .check-list li::before { content:"✓";position:absolute;left:16px;color:#a1742f;font-weight:900; }
.doctor-profile-page .card {
  border:1px solid #dfe7ef;border-radius:12px;background:#fff;box-shadow:0 9px 25px rgba(16,44,75,.05);
}
.doctor-profile-page .info-box { padding:22px; }
.doctor-profile-page .info-box h3 { margin:0 0 9px;color:var(--navy-900);font-family:var(--serif);font-size:18px; }
.doctor-profile-page .info-box p { margin:0;color:#5c7084;font-size:13px;line-height:1.75; }
.doctor-profile-page .section-head { display:flex;align-items:end;justify-content:space-between;gap:24px;margin-bottom:22px; }
.doctor-profile-page .view-link { color:#9a7131;font-size:12px;font-weight:800; }
.doctor-profile-page .disease-card { position:relative;display:block;min-height:165px;padding:23px;transition:transform .2s ease,border-color .2s ease; }
.doctor-profile-page .disease-card:hover { transform:translateY(-4px);border-color:var(--gold-400); }
.doctor-profile-page .disease-icon { display:block;margin-bottom:14px;font-size:30px; }
.doctor-profile-page .disease-card h3 { margin:0 0 5px;color:var(--navy-900);font-family:var(--serif);font-size:18px; }
.doctor-profile-page .disease-card p { margin:0;color:var(--muted);font-size:12px; }
.doctor-profile-page .disease-card .arrow { position:absolute;right:18px;bottom:15px;color:var(--gold-500);font-weight:800; }
.doctor-profile-page .profile-metrics { display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:14px; }
.doctor-profile-page .metric { padding:20px;color:#607286;font-size:12px;text-align:center; }
.doctor-profile-page .metric strong { display:block;margin-bottom:6px;color:var(--navy-900);font-family:Georgia,serif;font-size:26px; }
.doctor-profile-page .tabs { display:flex;gap:8px;margin:22px 0 16px;border-bottom:1px solid #dbe3eb; }
.doctor-profile-page .tabs button {
  padding:10px 17px;border:0;border-bottom:2px solid transparent;color:#65778a;background:transparent;font-weight:700;cursor:pointer;
}
.doctor-profile-page .tabs button.active { border-bottom-color:var(--gold-500);color:var(--navy-900); }
.doctor-profile-page .paper-list { display:grid;gap:13px; }
.doctor-profile-page .paper { padding:22px; }
.doctor-profile-page .journal { margin-bottom:7px;color:#9a7131;font-size:10px;font-weight:800;letter-spacing:.12em;text-transform:uppercase; }
.doctor-profile-page .paper h3 { margin:0 0 8px;color:var(--navy-900);font-family:var(--serif);font-size:19px; }
.doctor-profile-page .muted { margin:0 0 10px;color:#637589;font-size:13px;line-height:1.75; }
.doctor-profile-page .video-row { display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:16px; }
.doctor-profile-page .video-card { overflow:hidden;padding-bottom:18px; }
.doctor-profile-page .media-thumb { display:grid;place-items:center;min-height:145px;padding:20px;background:linear-gradient(145deg,#eaf3fa,#f9fbfd); }
.doctor-profile-page .media-thumb img { width:76px;height:76px;object-fit:contain; }
.doctor-profile-page .video-card h3 { margin:16px 17px 6px;color:var(--navy-900);font-family:var(--serif);font-size:16px;line-height:1.5; }
.doctor-profile-page .video-card p { margin:0 17px;color:var(--muted);font-size:11px; }
.doctor-profile-page .cta {
  display:grid;grid-template-columns:54px 1fr auto;gap:18px;align-items:center;padding:28px 30px;border-radius:15px;
  color:#fff;background:linear-gradient(125deg,var(--navy-950),var(--navy-800));box-shadow:0 18px 42px rgba(3,26,50,.14);
}
.doctor-profile-page .cta-icon { width:50px;height:50px;display:grid;place-items:center;border-radius:50%;color:#182d42;background:var(--gold-300);font-weight:900; }
.doctor-profile-page .cta h2 { margin:0 0 5px;font-family:var(--serif);font-size:22px; }
.doctor-profile-page .cta p { margin:0;color:rgba(255,255,255,.65);font-size:12px;line-height:1.7; }
.doctor-profile-page .cta .btn { min-height:42px;padding:10px 18px;border-radius:5px;color:#13283c;background:linear-gradient(135deg,#efd38e,#c99b4b);font-size:13px;font-weight:800;line-height:1.2; }

/* Static international patient guide */
.patient-guide-page { background:#f7f9fc; }
.patient-guide-page .page-hero {
  position:relative;overflow:hidden;padding:70px 0;color:#fff;
  background:
    linear-gradient(90deg, rgba(4, 28, 50, 0.97) 0%, rgba(4, 28, 50, 0.9) 42%, rgba(4, 28, 50, 0.48) 72%, rgba(4, 28, 50, 0.24) 100%),
    var(--route-hero-image, url("assets/hero-consultation.png")) var(--route-hero-pos, center right) / cover no-repeat;
}
.patient-guide-page .page-hero::after {
  content:"";position:absolute;right:-6%;bottom:-105px;width:520px;height:175px;
  border-top:1px solid rgba(222,183,107,.35);border-radius:50%;transform:rotate(-8deg);
}
.patient-guide-page .page-hero-inner {
  position:relative;z-index:1;display:grid;grid-template-columns:minmax(0,1fr) 310px;gap:54px;align-items:center;
}
.patient-guide-page .page-hero h1 {
  margin:0 0 14px;font-family:var(--serif);font-size:clamp(40px,4vw,58px);line-height:1.2;letter-spacing:.04em;
}
.patient-guide-page .page-hero .section-desc { max-width:760px;margin:0;color:rgba(255,255,255,.75);font-size:15px;line-height:1.85; }
.patient-guide-page .page-art {
  min-height:225px;display:grid;place-items:center;padding:25px;border:1px solid rgba(239,209,142,.28);
  border-radius:22px;background:rgba(255,255,255,.08);box-shadow:0 22px 50px rgba(0,0,0,.2);
}
.patient-guide-page .page-art img { width:min(250px,100%);filter:drop-shadow(0 14px 22px rgba(0,0,0,.18)); }
.patient-guide-page .hero-actions { display:flex;flex-wrap:wrap;gap:11px; }
.patient-guide-page .btn {
  display:inline-flex;align-items:center;justify-content:center;min-height:42px;padding:10px 18px;border-radius:5px;font-size:13px;font-weight:800;line-height:1.2;
}
.patient-guide-page .btn-primary { color:#13283c;background:linear-gradient(135deg,#efd38e,#c99b4b); }
.patient-guide-page .btn-outline { border:1px solid rgba(255,255,255,.42);color:#fff;background:transparent; }
.patient-guide-page .section { padding:58px 0; }
.patient-guide-page .section-soft { background:#edf3f8; }
.patient-guide-page .section-head { margin-bottom:23px; }
.patient-guide-page .section-title {
  margin:0;color:var(--navy-900);font-family:var(--serif);font-size:clamp(25px,3vw,34px);line-height:1.35;
}
.patient-guide-page .section-head .section-desc { margin:7px 0 0;color:#64768a;font-size:13px;line-height:1.75; }
.patient-guide-page .grid { display:grid;gap:16px; }
.patient-guide-page .grid-2 { grid-template-columns:repeat(2,minmax(0,1fr)); }
.patient-guide-page .grid-3 { grid-template-columns:repeat(3,minmax(0,1fr)); }
.patient-guide-page .grid-4 { grid-template-columns:repeat(4,minmax(0,1fr)); }
.patient-guide-page .card {
  border:1px solid #dfe7ef;border-radius:12px;background:#fff;box-shadow:0 9px 25px rgba(16,44,75,.05);
}
.patient-guide-page .card-pad { padding:22px; }
.patient-guide-page .card h3 { font-family:var(--serif); }
.patient-guide-page .compact-process-list .card { border-left-color:var(--navy-700)!important; }
.patient-guide-page .checklist { margin:0;padding:0;list-style:none; }
.patient-guide-page .checklist li {
  position:relative;padding:4px 0 4px 23px;color:#53687d;font-size:13px;line-height:1.75;
}
.patient-guide-page .checklist li::before { content:"□";position:absolute;left:0;color:var(--navy-700);font-weight:800; }
.patient-guide-page .content-block { scroll-margin-top:88px; }
.patient-guide-page .boundary-block {
  padding:23px;border:1px solid #ead49a;border-radius:12px;background:#fff8e4;
}
.patient-guide-page .boundary-block ul { margin:0;padding:0;list-style:none; }
.patient-guide-page .boundary-block li {
  position:relative;padding:5px 0 5px 20px;color:#66501f;font-size:13px;line-height:1.8;
}
.patient-guide-page .boundary-block li::before { content:"•";position:absolute;left:3px;color:#b86e13; }
.patient-guide-page .consult-faq-list { display:grid;gap:10px; }
.patient-guide-page .consult-faq-item { overflow:hidden;border:1px solid #dfe7ef;border-radius:11px;background:#fff; }
.patient-guide-page .consult-faq-item summary {
  display:flex;justify-content:space-between;align-items:center;gap:16px;padding:15px 18px;
  color:var(--navy-900);font-size:13px;font-weight:800;cursor:pointer;list-style:none;
}
.patient-guide-page .consult-faq-item summary::-webkit-details-marker { display:none; }
.patient-guide-page .consult-faq-item summary::after { content:"+";color:var(--gold-500);font-size:18px; }
.patient-guide-page .consult-faq-item[open] summary::after { content:"−"; }
.patient-guide-page .consult-faq-item summary i { display:none; }
.patient-guide-page .consult-faq-item p { margin:0;padding:0 18px 16px;color:#596d82;font-size:13px;line-height:1.8; }
.patient-guide-page .bottom-cta-block {
  padding:34px;border:1px solid rgba(201,155,75,.3);border-radius:16px;color:#fff;text-align:center;
  background:linear-gradient(125deg,var(--navy-950),var(--navy-800));box-shadow:0 18px 42px rgba(3,26,50,.14);
}
.patient-guide-page .bottom-cta-block h2 { margin:0 0 7px;font-family:var(--serif);font-size:27px; }
.patient-guide-page .bottom-cta-block p { margin:0 0 20px;color:rgba(255,255,255,.67);font-size:13px; }
.patient-guide-page .bottom-cta-actions { display:flex;flex-wrap:wrap;justify-content:center;gap:11px; }
.route-placeholder-panel { text-align: center; padding: 48px; }
.route-placeholder-panel > p { font-size: 15px; color: #6d7b8a; margin: 0 0 24px; }
.route-placeholder-panel .route-primary-button + .route-primary-button { margin-left: 16px; }

.route-primary-button {
  display:inline-flex;align-items:center;justify-content:center;min-height:44px;margin-top:22px;padding:10px 22px;
  border:0;border-radius:5px;color:#142a3f;background:linear-gradient(135deg,#efd38e,#c99b4b);
  font-size:14px;font-weight:700;line-height:1.2;width:auto;cursor:pointer;transition:transform .2s ease,box-shadow .2s ease;
}
.route-primary-button:hover { transform:translateY(-2px);box-shadow:0 10px 24px rgba(201,155,75,.24); }
.route-steps { display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:18px;margin:0;padding:0;list-style:none;counter-reset:none; }
.route-steps li { display:grid;grid-template-columns:52px 1fr;gap:16px;padding:26px;border:1px solid #e2e7ed;border-radius:10px;background:#fff; }
.route-steps b { width:46px;height:46px;display:grid;place-items:center;border-radius:50%;color:#fff;background:var(--navy-800);font-family:Georgia,serif; }
.route-steps h2 { margin:0 0 7px;font-family:var(--serif);font-size:20px; }
.route-steps p { margin:0;color:#6d7b8a;font-size:12px;line-height:1.7; }
.expert-route-layout { display:grid;grid-template-columns:300px 1fr;gap:35px;align-items:start; }
.expert-route-layout > img { width:100%;max-height:460px;padding-top:12px;box-sizing:border-box;object-fit:cover;object-position:center top;background:#fff;border:2px solid var(--gold-400);border-radius:11px; }
.expert-route-layout section { padding:0 0 18px;margin-bottom:18px;border-bottom:1px solid #e1e6eb; }
.contact-route-grid { display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:16px;margin-bottom:24px; }
.inquiry-form { display:grid;grid-template-columns:1fr 1fr;gap:20px;padding:30px;border:1px solid #e2e7ed;border-radius:10px;background:#fff;box-shadow:var(--shadow); }
.inquiry-form label { display:grid;gap:8px;color:#2b435b;font-size:13px;font-weight:700; }
.inquiry-form input,.inquiry-form textarea,.inquiry-form select {
  width:100%;padding:12px 14px;border:1px solid #ccd5df;border-radius:6px;color:var(--ink);background:#fff;outline:none;
}
.inquiry-form input:focus,.inquiry-form textarea:focus,.inquiry-form select:focus { border-color:var(--gold-500);box-shadow:0 0 0 3px rgba(201,155,75,.12); }
.inquiry-form .form-wide { grid-column:1/-1; }
.inquiry-form .form-consent { display:flex;grid-template-columns:none;align-items:flex-start;gap:10px;font-weight:400; }
.form-consent input { width:auto;margin-top:5px; }
.inquiry-form button { width:max-content; }
.thank-you-panel { max-width:780px;margin:0 auto;text-align:center;padding:48px; }
.route-footer { padding:30px 0;color:#fff;background:#031a32; }
.route-footer .container { display:grid;grid-template-columns:1fr auto;align-items:center;gap:5px 24px; }
.route-footer strong { color:var(--gold-300);font-family:var(--serif);font-size:19px; }
.route-footer p { margin:0;color:rgba(255,255,255,.55);font-size:12px; }
.route-footer a { grid-column:2;grid-row:1/3;display:grid;place-items:center;min-height:40px;padding:8px 18px;border-radius:5px;color:#13283c;background:linear-gradient(135deg,#efd38e,#c99b4b);font-size:13px;font-weight:700; }
.route-footer-links a,
.route-footer-links a:first-child,
.route-footer-links a:last-child { grid-column:auto;grid-row:auto; }

/* ===============================
   PATIENT SERVICES PAGE
   =============================== */
.patient-services-page { background: #f7f9fc; }

/* -- Hero -- */
.services-hero {
  position: relative; overflow: hidden; padding: 72px 0 66px; color: #fff;
  background:
    radial-gradient(circle at 85% 25%, rgba(37,93,139,.65), transparent 30%),
    linear-gradient(125deg, #031a32, #07375f);
}
.services-hero::after {
  content: ""; position: absolute; right: -8%; bottom: -110px; width: 520px; height: 180px;
  border-top: 1px solid rgba(222,183,107,.35); border-radius: 50%; transform: rotate(-8deg);
  box-shadow: 0 -18px 0 -17px rgba(222,183,107,.2), 0 -36px 0 -35px rgba(222,183,107,.12);
}
.services-hero .container { position: relative; z-index: 1; }
.services-hero-inner {
  display: grid; grid-template-columns: minmax(0, 1fr) 300px; gap: 54px; align-items: center;
}
.services-hero-copy { min-width: 0; }
.services-hero-copy .breadcrumb { margin-bottom: 22px; }
.services-hero-eyebrow {
  margin: 0 0 10px; color: var(--gold-400); font-size: 11px; letter-spacing: .22em; font-weight: 700; text-transform: uppercase;
}
.services-hero-copy h1 {
  margin: 0 0 16px; font-family: var(--serif); font-size: clamp(38px, 4vw, 56px); line-height: 1.2; letter-spacing: .05em;
}
.services-hero-desc {
  max-width: 640px; margin: 0 0 24px; color: rgba(255, 255, 255, .78); font-size: 15px; line-height: 1.75;
}
.services-hero-copy .hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.services-hero-copy .btn {
  display: inline-flex; align-items: center; justify-content: center; min-height: 44px; padding: 10px 22px;
  border-radius: 5px; font-size: 14px; font-weight: 700; line-height: 1.2; transition: transform .25s, box-shadow .25s;
}
.services-hero-copy .btn:hover { transform: translateY(-2px); }
.services-hero-panel {
  min-height: 210px; display: grid; place-items: center; padding: 24px;
  border: 1px solid rgba(239,209,142,.25); border-radius: 22px;
  background: rgba(255,255,255,.08); box-shadow: 0 22px 50px rgba(0,0,0,.2);
}
.services-hero-panel img { width: min(170px, 100%); filter: drop-shadow(0 16px 22px rgba(0,0,0,.18)); }

/* -- Section shared -- */
.patient-services-page .section { padding: 72px 0; }
.patient-services-page .section-soft { background: #edf3f8; }
.patient-services-page .section-head { text-align: center; margin-bottom: 36px; }
.patient-services-page .section-title {
  margin: 0 0 10px; color: var(--navy-900); font-family: var(--serif);
  font-size: clamp(26px, 3vw, 34px); line-height: 1.35; letter-spacing: .06em;
}
.patient-services-page .section-desc {
  max-width: 680px; margin: 0 auto; color: #64768a; font-size: 14px; line-height: 1.75;
}

/* -- Who is this for -- */
.patient-fit-grid {
  display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px;
}
.patient-fit-card {
  padding: 26px 22px; border: 1px solid #e2e7ed; border-radius: 12px;
  background: #fff; box-shadow: 0 6px 20px rgba(20,50,82,.04);
  transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}
.patient-fit-card:hover {
  transform: translateY(-4px); border-color: var(--gold-300); box-shadow: var(--shadow);
}
.patient-fit-number {
  display: block; margin-bottom: 14px; color: var(--gold-500);
  font-family: Georgia, serif; font-size: 28px; font-weight: 700; line-height: 1;
}
.patient-fit-card h3 {
  margin: 0 0 8px; color: var(--navy-900); font-size: 15px; line-height: 1.45;
}
.patient-fit-card p {
  margin: 0; color: #6d7b8a; font-size: 13px; line-height: 1.7;
}

/* -- Service offers (visual focus) -- */
.service-offer-grid {
  display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px;
}
.service-offer-card {
  display: flex; flex-direction: column;
  padding: 28px 24px 22px; border: 1px solid #dfe7ef; border-radius: 12px;
  background: #fff; box-shadow: 0 8px 24px rgba(20,50,82,.05);
  transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}
.service-offer-card:hover {
  transform: translateY(-5px); border-color: var(--gold-300); box-shadow: var(--shadow);
}
.service-card-index {
  display: block; margin-bottom: 16px; color: var(--gold-500);
  font-family: Georgia, serif; font-size: 32px; font-weight: 700; line-height: 1;
}
.service-offer-card h3 {
  margin: 0 0 10px; color: var(--navy-900); font-family: var(--serif);
  font-size: 19px; line-height: 1.4; letter-spacing: .04em;
}
.service-offer-card p {
  flex: 1; margin: 0 0 16px; color: #6d7b8a; font-size: 13px; line-height: 1.75;
}
.service-card-link {
  display: inline-block; margin-top: auto; color: #a27631; font-size: 13px; font-weight: 700;
  transition: color .2s;
}
.service-card-link:hover { color: #7a5620; }

/* -- Compact flow -- */
.compact-service-flow {
  display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 0;
  margin-top: 12px;
}
.compact-flow-node {
  display: flex; align-items: center; gap: 10px; padding: 14px 18px;
  position: relative;
}
.compact-flow-node::after {
  content: "→"; color: #b9c4d1; font-size: 16px; margin-left: 6px;
}
.compact-flow-node:last-child::after { content: none; }
.flow-node-num {
  width: 30px; height: 30px; display: grid; place-items: center; flex: 0 0 auto;
  border-radius: 50%; color: #fff; background: var(--navy-800);
  font-family: Georgia, serif; font-size: 13px; font-weight: 700;
}
.flow-node-label {
  color: #43566b; font-size: 13px; font-weight: 600; white-space: nowrap;
}
.compact-flow-cta {
  text-align: center; margin-top: 32px;
}
.compact-flow-cta .btn {
  display: inline-flex; align-items: center; justify-content: center; min-height: 44px;
  padding: 10px 22px; border-radius: 5px; font-size: 14px; font-weight: 700; line-height: 1.2;
}

/* -- Service boundaries & fees -- */
.service-boundary-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 20px;
}
.boundary-col {
  padding: 28px; border: 1px solid #e2e7ed; border-radius: 12px;
  background: #fff; box-shadow: 0 6px 20px rgba(20,50,82,.04);
}
.boundary-col h3 {
  margin: 0 0 16px; padding-bottom: 10px; border-bottom: 2px solid #f0e7d2;
  color: var(--navy-900); font-family: var(--serif); font-size: 19px; letter-spacing: .04em;
}
.boundary-col ul { margin: 0; padding: 0; list-style: none; }
.boundary-col li {
  position: relative; padding: 7px 0 7px 22px; color: #4d6077;
  font-size: 13px; line-height: 1.75;
}
.boundary-col li::before {
  content: "•"; position: absolute; left: 4px; color: #a97d35; font-weight: 700;
}

/* -- Privacy panel -- */
.section-privacy { background: #fff; }
.privacy-panel {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
  padding: 32px; border-radius: 14px;
  background: linear-gradient(135deg, #f0f4f8, #e8edf3);
  border: 1px solid #dce3eb;
}
.privacy-item { padding: 8px 0; }
.privacy-item h3 {
  margin: 0 0 8px; color: var(--navy-900); font-size: 15px; line-height: 1.45;
}
.privacy-item p {
  margin: 0; color: #55687d; font-size: 13px; line-height: 1.75;
}
.privacy-item a { color: #a27631; font-weight: 700; }
.privacy-item a:hover { text-decoration: underline; }

/* -- Bottom CTA -- */
.section-bottom-cta { padding-bottom: 80px; }
.services-bottom-cta {
  padding: 48px 40px; border-radius: 16px; color: #fff; text-align: center;
  background: linear-gradient(125deg, var(--navy-950), var(--navy-800));
  box-shadow: 0 18px 42px rgba(3,26,50,.14);
}
.services-bottom-cta h2 {
  margin: 0 0 10px; font-family: var(--serif); font-size: clamp(24px, 3vw, 30px); line-height: 1.35;
}
.services-bottom-cta p {
  margin: 0 0 24px; color: rgba(255,255,255,.67); font-size: 14px; line-height: 1.7;
}
.services-bottom-cta-actions {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 14px;
}
.services-bottom-cta-actions .btn {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 44px; padding: 10px 24px; border-radius: 5px; font-size: 14px; font-weight: 700; line-height: 1.2;
}
.services-cta-outline {
  border-color: rgba(222,183,107,.7); color: var(--gold-300); background: transparent;
}
.services-cta-outline:hover { background: rgba(222,183,107,.1); }

/* -- Responsive: patient-services-page -- */
@media (max-width: 1080px) {
  .services-hero-inner { grid-template-columns: minmax(0, 1fr) 220px; gap: 32px; }
  .service-offer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .patient-fit-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 760px) {
  .services-hero { padding: 48px 0 50px; }
  .services-hero-inner { grid-template-columns: 1fr; }
  .services-hero-panel { display: none; }
  .services-hero-copy h1 { font-size: 34px; }
  .services-hero-desc { font-size: 14px; }
  .patient-services-page .section { padding: 52px 0; }
  .patient-services-page .section-head { margin-bottom: 28px; }
  .patient-fit-grid { grid-template-columns: 1fr; }
  .service-offer-grid { grid-template-columns: 1fr; }
  .compact-service-flow { flex-direction: column; align-items: flex-start; gap: 4px; }
  .compact-flow-node::after { content: none; }
  .compact-flow-node { padding: 8px 0; }
  .service-boundary-grid { grid-template-columns: 1fr; }
  .privacy-panel { grid-template-columns: 1fr; padding: 24px 20px; }
  .services-bottom-cta { padding: 36px 22px; }
  .services-bottom-cta-actions { flex-direction: column; align-items: stretch; }
  .services-bottom-cta-actions .btn { width: 100%; }
  .services-hero-copy .hero-actions { flex-direction: column; }
  .services-hero-copy .btn { width: 100%; }
}

@media (max-width: 520px) {
  .patient-services-page .section { padding: 44px 0; }
  .patient-services-page .section-title { font-size: 24px; }
  .patient-fit-card { padding: 22px 18px; }
  .service-offer-card { padding: 24px 20px 20px; }
  .boundary-col { padding: 22px 18px; }
  .compact-flow-node { padding: 6px 0; }
  .flow-node-label { font-size: 12px; }
}


/* ===============================
   CONTACT PAGE
   =============================== */
.contact-page-layout { display: grid; gap: 48px; }
.contact-info-section h2 { margin: 0 0 20px; font-family: var(--serif); font-size: 23px; color: var(--navy-900); }
.contact-info-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 14px; }
.contact-info-card {
  padding: 22px 20px; border: 1px solid #e2e7ed; border-radius: 10px; background: #fff;
  box-shadow: 0 6px 18px rgba(20,50,82,.04);
}
.contact-info-card strong { display: block; margin-bottom: 6px; color: var(--navy-900); font-size: 13px; }
.contact-info-card span,
.contact-info-card a { display: block; color: #4d6279; font-size: 14px; word-break: break-all; }
.contact-info-card a { color: var(--navy-800); transition: color .2s; }
.contact-info-card a:hover { color: var(--gold-500); }

.contact-entry-cards { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
.contact-entry-card {
  display: block; padding: 28px 24px; border: 1px solid #e2e7ed; border-radius: 12px;
  background: #fff; box-shadow: 0 8px 24px rgba(20,50,82,.04);
  transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}
.contact-entry-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.contact-entry-card.entry-medical:hover { border-color: var(--gold-400); }
.contact-entry-card.entry-business:hover { border-color: var(--navy-700); }
.contact-entry-card.entry-general:hover { border-color: #8898aa; }
.contact-entry-card h3 { margin: 0 0 10px; font-family: var(--serif); font-size: 20px; color: var(--navy-900); }
.contact-entry-card p { margin: 0 0 18px; color: #6d7b8a; font-size: 13px; line-height: 1.75; }
.contact-entry-card span { display: inline-block; color: #9e7634; font-size: 13px; font-weight: 700; }
.contact-entry-card.entry-medical { border-left: 4px solid var(--gold-400); }
.contact-entry-card.entry-business { border-left: 4px solid var(--navy-700); }
.contact-entry-card.entry-general { border-left: 4px solid #8898aa; }

.contact-simple-form-section { padding-top: 8px; }
.contact-simple-form-section h2 { margin: 0 0 8px; font-family: var(--serif); font-size: 23px; color: var(--navy-900); }
.contact-form-hint {
  margin: 0 0 22px; padding: 14px 18px; border-left: 3px solid var(--gold-400);
  border-radius: 0 8px 8px 0; background: #fef9ef; color: #7a5d28; font-size: 13px; line-height: 1.7;
}

/* ===============================
   MEDICAL INQUIRY PAGE
   =============================== */
.inquiry-page-layout { display: grid; gap: 44px; }

.after-submit-section { padding: 32px; border: 1px solid #dce7f1; border-radius: 14px; background: linear-gradient(145deg, #f6fbff, #fff); box-shadow: 0 10px 30px rgba(16,44,75,.05); }
.after-submit-section h2 { margin: 0 0 24px; font-family: var(--serif); font-size: 24px; color: var(--navy-900); text-align: center; }
.after-submit-steps { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 12px; margin: 0; padding: 0; list-style: none; counter-reset: after-step; }
.after-submit-steps li { display: grid; grid-template-columns: 34px 1fr; gap: 12px; align-items: start; padding: 0; }
.step-number {
  width: 32px; height: 32px; display: grid; place-items: center; flex: 0 0 auto;
  border-radius: 50%; color: #fff; background: var(--navy-800);
  font-family: Georgia, serif; font-size: 14px; font-weight: 700;
}
.after-submit-steps li p { margin: 3px 0 0; color: #4d6077; font-size: 12px; line-height: 1.6; }

.inquiry-form-full { grid-template-columns: 1fr 1fr; }
.inquiry-form-required-note { grid-column: 1 / -1; margin: 0 0 4px; color: #9a8a6b; font-size: 11px; }

.doc-checklist-fieldset {
  border: 1px solid #e4e9ef; border-radius: 9px; padding: 20px 22px; margin: 0;
}
.doc-checklist-fieldset legend { color: var(--navy-900); font-size: 14px; font-weight: 700; padding: 0 8px; }
.doc-checklist-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 10px; margin-top: 4px; }
.doc-check-label {
  display: flex !important; align-items: center; gap: 8px;
  color: #4d6077 !important; font-size: 13px !important; font-weight: 400 !important;
  cursor: pointer;
}
.doc-check-label input[type="checkbox"] { width: auto; margin: 0; }

.inquiry-submit-btn { min-width: 200px; min-height: 44px; padding: 10px 24px; font-size: 14px; line-height: 1.2; }

/* ===============================
   ROUTE FOOTER LINKS
   =============================== */
.route-footer .container { grid-template-columns: 1fr auto; }
.route-footer-links { grid-column: 2; grid-row: 1 / 3; display: flex; flex-direction: column; gap: 8px; align-items: stretch; }
.route-footer-links a {
  display: grid; place-items: center; min-height: 40px; padding: 8px 18px; border-radius: 5px;
  font-size: 13px; font-weight: 700; white-space: nowrap;
}
.route-footer-links a:first-child { color: #13283c; background: linear-gradient(135deg, #efd38e, #c99b4b); }
.route-footer-links a:last-child {
  color: var(--gold-300); border: 1px solid rgba(222, 183, 107, .45); background: transparent;
  transition: background .2s;
}
.route-footer-links a:last-child:hover { background: rgba(222, 183, 107, .1); }

/* Override old single-link footer style */
.route-footer > .container > a[id="route-footer-contact"] { display: none; }
.route-footer > .container > a[id="route-footer-contact-secondary"] { display: none; }

/* ===============================
   PATIENT JOURNEY STEPS
   =============================== */
.journey-steps-list { display: grid; gap: 0; margin: 0; padding: 0; list-style: none; }
.journey-step-item { display: grid; grid-template-columns: 64px 1fr; gap: 20px; position: relative; }
.journey-step-marker { display: flex; flex-direction: column; align-items: center; }
.journey-step-num {
  width: 44px; height: 44px; display: grid; place-items: center; flex: 0 0 auto;
  border-radius: 50%; color: #fff; background: var(--navy-800);
  font-family: Georgia, serif; font-size: 15px; font-weight: 700; z-index: 1;
}
.journey-step-line {
  flex: 1; width: 2px; min-height: 40px; background: linear-gradient(180deg, var(--navy-700), #dce3eb);
}
.journey-step-item:last-child .journey-step-line { display: none; }
.journey-step-body {
  padding: 4px 0 32px;
}
.journey-step-body h2 {
  margin: 0 0 14px; font-family: var(--serif); font-size: 22px; color: var(--navy-900);
}
.journey-step-detail {
  display: grid; grid-template-columns: 1fr 1fr; gap: 14px;
}
.journey-step-detail p {
  margin: 0; padding: 18px; border: 1px solid #e2e7ed; border-radius: 9px;
  background: #fff; color: #4d6077; font-size: 13px; line-height: 1.75;
}
.journey-step-note {
  grid-column: 1 / -1;
  padding: 12px 16px; border-left: 3px solid var(--gold-400);
  border-radius: 0 7px 7px 0; background: #fef9ef;
  color: #7a5d28; font-size: 12px; line-height: 1.7; margin-top: 4px;
}

/* ===============================
   RESPONSIVE — CONTACT & INQUIRY
   =============================== */
@media (max-width: 1180px) {
  .contact-info-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .after-submit-steps { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .after-submit-steps li:nth-child(4),
  .after-submit-steps li:nth-child(5) { grid-column: span 1; }
  .doc-checklist-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .route-footer-links { grid-column: 2; grid-row: 1 / 3; }
  .journey-step-detail { grid-template-columns: 1fr; }
}

@media (max-width: 900px) {
  .contact-entry-cards { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .contact-entry-cards .contact-entry-card:last-child { grid-column: span 2; }
  .after-submit-steps { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .after-submit-steps li:nth-child(5) { grid-column: span 2; max-width: 320px; justify-self: center; }
  .doc-checklist-grid { grid-template-columns: 1fr 1fr; }
  .route-footer .container { grid-template-columns: 1fr auto; }
}

@media (max-width: 620px) {
  .contact-info-grid { grid-template-columns: 1fr; }
  .contact-entry-cards { grid-template-columns: 1fr; }
  .contact-entry-cards .contact-entry-card:last-child { grid-column: span 1; }
  .contact-entry-card { padding: 22px 18px; }
  .after-submit-steps { grid-template-columns: 1fr; }
  .after-submit-steps li:nth-child(4),
  .after-submit-steps li:nth-child(5) { grid-column: span 1; max-width: none; justify-self: auto; }
  .doc-checklist-grid { grid-template-columns: 1fr; }
  .inquiry-form-full { grid-template-columns: 1fr; }
  .inquiry-form-full .form-wide { grid-column: auto; }
  .route-footer .container { grid-template-columns: 1fr; }
  .route-footer-links { grid-column: 1; grid-row: auto; flex-direction: row; gap: 10px; margin-top: 12px; }
  .route-footer-links a { flex: 1; }
}

/* ── Tiered desktop shrinkage ── */
@media (max-width: 1500px) {
  .nav-list { gap: 22px; }
  .is-en .nav-list { gap: 16px; }
  .is-en .main-nav { gap: 16px; }
}

@media (max-width: 1400px) {
  .brand small { display: none; }
  .brand strong { font-size: 17px; }
  .is-en .brand strong { font-size: 13px; }
}

@media (max-width: 1280px) {
  .nav-wrap { gap: 20px; }
  .nav-list { gap: 18px; }
  .is-en .nav-list { gap: 13px; }
  .main-nav { gap: 18px; font-size: 15px; }
  .is-en .main-nav { gap: 13px; font-size: 13px; }
  .nav-cta { font-size: 13px; padding: 10px 16px; min-height: 40px; }
  .is-en .nav-cta { font-size: 13px; }
}

/* ── Mobile hamburger ── */
@media (max-width: 1100px) {
  :root { --mobile-header-height: 72px; }

  .site-header,
  .site-header.scrolled {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10000;
    overflow: visible;
    backdrop-filter: none;
    background: rgba(3, 26, 50, .98);
  }

  .container { width:min(1100px,calc(100% - 44px)); }
  .nav-wrap { min-height: var(--mobile-header-height); gap: 10px; overflow: visible; }
  .brand { flex:0 1 auto; min-width:0; gap:9px; }
  .brand svg { width:40px;height:40px; flex-shrink:0; }
  .brand strong { font-size: 15px; white-space:nowrap; letter-spacing:.04em; }
  .brand small { font-size: 8px; letter-spacing:.1em; }
  .is-en .brand strong { max-width: 180px; font-size: 11px; }
  .is-en .brand small { display:none; }
  .menu-toggle { display:block; width:48px; height:48px; flex:0 0 48px; }
  /* Mobile header bar: nav-actions placed between brand and hamburger */
  .nav-wrap > .nav-actions {
    display:flex; align-items:center; gap:8px; margin-left:auto; flex:0 0 auto;
  }
  .nav-wrap > .nav-actions .lang-switch {
    display:grid; place-items:center; min-width:44px; min-height:44px;
    border:1px solid rgba(222,183,107,.55); border-radius:6px;
    color:#f3c96b; font-size:13px; font-weight:700;
    background:transparent; padding:0 10px;
  }
  .nav-wrap > .nav-actions .nav-cta {
    min-height:44px; padding:0 12px; border-radius:6px;
    font-size:13px; font-weight:700; white-space:nowrap;
    display:inline-flex; align-items:center; justify-content:center;
    color:#13283c; background:linear-gradient(135deg,#efd38e,#c99b4b);
    border:1px solid var(--gold-400);
  }
  /* Hide nav-actions inside the dropdown menu on mobile */
  .main-nav > .nav-actions { display:none !important; }

  .main-nav {
    position: fixed;
    top: var(--mobile-header-height);
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    width: 100vw;
    height: calc(100dvh - var(--mobile-header-height));
    max-height: none;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 14px 22px 22px;
    overflow-y: auto;
    background: #031a32;
    border-top: 1px solid rgba(255,255,255,.1);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity .22s ease, transform .22s ease, visibility .22s;
  }

  body.menu-open .main-nav,
  .menu-open .main-nav {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }

  body.menu-open { overflow: hidden; }
  body.menu-open main,
  body.menu-open footer { pointer-events: none; }
  .nav-list { display:block; width:100%; }
  .nav-item { border-bottom:1px solid rgba(255,255,255,.08); }
  .nav-item-row { width:100%; }
  .nav-link { flex:1;min-height:0;padding:15px 10px;font-size:16px; }
  .site-header.scrolled .nav-link { min-height:0; }
  .nav-item.active > .nav-item-row .nav-link::after { display:none; }
  .submenu-toggle { display:inline-flex;align-items:center;justify-content:center;width:48px;height:48px;color:var(--gold-300);background:rgba(222,183,107,.08);border:1px solid rgba(222,183,107,.28);border-radius:8px; }
  .submenu-toggle:hover { color:#f3c96b;background:rgba(222,183,107,.16);border-color:rgba(222,183,107,.5); }
  .nav-item.submenu-open > .nav-item-row .submenu-toggle { color:#f3c96b;background:rgba(222,183,107,.18);border-color:rgba(222,183,107,.55); }
  .nav-item.submenu-open > .nav-item-row .nav-link { color:var(--gold-300); }
  .nav-dropdown,
  .nav-mega {
    position:static;
    display:none;
    width:100%;
    padding:4px 6px 12px 18px;
    border:0;
    border-radius:0;
    background:rgba(255,255,255,.035);
    box-shadow:none;
    opacity:1;
    visibility:visible;
    transform:none;
  }
  .nav-dropdown::before { display:none; }
  .nav-item:hover > .nav-dropdown,
  .nav-item:focus-within > .nav-dropdown { display:none;transform:none; }
  .nav-item.submenu-open > .nav-dropdown { display:block;transform:none; }
  .nav-item.submenu-open > .nav-mega { display:grid;grid-template-columns:1fr 1fr;gap:8px 18px; }
  .nav-dropdown a { padding:11px 12px;font-size:15px; }
  .nav-mega .nav-group a { padding:11px 12px; font-size:15px; }
  .nav-group h3 { margin-top:8px; }
  .menu-open .menu-toggle span:nth-child(1){transform:translateY(7px) rotate(45deg)}
  .menu-open .menu-toggle span:nth-child(2){opacity:0}
  .menu-open .menu-toggle span:nth-child(3){transform:translateY(-7px) rotate(-45deg)}
  .expert-grid { grid-template-columns:220px 1.1fr repeat(2,1fr); }
  .expert-fact:nth-last-child(-n+2) { border-top:1px solid rgba(255,255,255,.12); }
  .doctor-photo { grid-row:span 2;height:420px; }
  .doctor-intro { grid-row:span 2; }
  .field-grid { grid-template-columns:repeat(3,minmax(0,1fr)); }
  .genetics-layout { grid-template-columns:1fr; gap:28px; }
  .genetics-copy { max-width:760px; }
  .service-grid { grid-template-columns:repeat(3,1fr); }
  .contact-grid { grid-template-columns:1.3fr auto auto auto auto; gap:0; padding:22px 0; }
  .contact-link { padding:6px 12px; }
  .contact-link strong { font-size:11px; }
  .footer-grid { grid-template-columns:1.3fr .7fr .7fr 1fr; }
  .qr-wrap { display:none; }
  .route-main { padding-top:72px; }
}

@media (max-width: 900px) {
  .hero { min-height:700px; }
  .hero-image { background-position:70% center; opacity:.72; }
  .hero-shade { background:linear-gradient(90deg,rgba(2,20,39,.97) 0%,rgba(2,20,39,.8) 58%,rgba(2,20,39,.2)),linear-gradient(0deg,#031a32 0%,transparent 50%) }
  .hero-content { padding-top:80px; }
  .hero-copy { width:60%; }
  .hero-trust { margin-top:50px; }
  .service-grid { grid-template-columns:repeat(2,1fr); }
  .expert-grid { grid-template-columns:220px 1fr 1fr; padding-top:32px; }
  .doctor-photo { grid-row:span 1;height:300px; }
  .doctor-intro { grid-column:span 2;grid-row:auto; }
  .expert-fact { border-top:1px solid rgba(255,255,255,.12); min-height:220px; }
  .field-grid { grid-template-columns:repeat(2,minmax(0,1fr)); }
  .process-track { grid-template-columns:repeat(3,1fr); gap:30px 0; }
  .process-track::before { display:none; }
  .resource-grid, .patient-story-grid { grid-template-columns:1fr; }
  .resource-card, .patient-story-card { grid-template-columns:38% 62%; }
  .contact-grid { grid-template-columns:1fr auto auto auto auto; padding:20px 0; gap:0; }
  .contact-link { padding:5px 10px; }
  .contact-link strong { font-size:10px; }
  .contact-link small { font-size:9px; }
  .contact-grid .btn { min-height:44px; padding:10px 18px; font-size:13px; margin-left:8px; }
  .footer-grid { grid-template-columns:1.3fr .7fr .7fr; }
  .footer-contact { grid-column:span 3;border-top:1px solid rgba(255,255,255,.1);padding-top:20px; }
  .route-card-grid { grid-template-columns:repeat(2,minmax(0,1fr)); }
  .contact-route-grid { grid-template-columns:repeat(2,minmax(0,1fr)); }
}

@media (max-width: 620px) {
  .container { width:calc(100% - 32px); }
  .nav-wrap { gap:10px; }
  .site-header .brand { min-width:0; gap:9px; }
  .site-header .brand span { min-width:0; }
  .brand svg { width:40px;height:40px; }
  .brand strong { font-size:15px;white-space:nowrap;letter-spacing:.04em; }
  .brand small { font-size:8px;letter-spacing:.1em; }
  .is-en .brand strong { max-width:210px;font-size:11px; }
  .is-en .brand small { display:none; }
  .menu-toggle { flex:0 0 48px; }
  .main-nav { padding-inline:16px; }
  .nav-item.submenu-open > .nav-mega { grid-template-columns:1fr; }
  .nav-item.submenu-open { background:rgba(222,183,107,.06);border-left:3px solid var(--gold-400);padding-left:6px; }
  .hero { min-height:720px;align-items:end; }
  .hero-image { inset:0 0 29%; background-size:auto 71%; background-position:66% top; }
  .hero-shade { background:linear-gradient(0deg,#031a32 23%,rgba(3,26,50,.45) 70%,rgba(3,26,50,.2)); }
  .hero-content { padding:0 0 43px; }
  .eyebrow { font-size:9px; }
  .hero h1 { font-size:39px; }
  .hero-copy { width:100%;font-size:15px;line-height:1.75;margin:18px 0 22px;overflow-wrap:anywhere; }
  .hero-actions { gap:10px; }
  .btn { min-height:46px;padding:10px 18px;font-size:13px;gap:10px;white-space:nowrap; }
  .btn span { font-size:20px; }
  .hero-trust { display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:0;margin-top:30px; }
  .hero-trust span { min-width:0;padding-left:7px;font-size:11px;line-height:1.45; }
  .hero-trust strong { font-size:15px;white-space:nowrap; }
  .section { padding:54px 0; }
  .section-heading { margin-bottom:28px; }
  .section-heading h2,.heading-row h2 { font-size:26px;margin-inline:10px; }
  .section-heading > span,.heading-row > div > span { width:35px; }
  .section-heading p { font-size:12px;padding:0 20px; }
  .genetics-copy h2 { font-size:27px; letter-spacing:.05em; }
  .genetics-copy p:not(.eyebrow) { font-size:13px; }
  .genetics-actions { display:grid; gap:12px; align-items:stretch; }
  .genetics-actions .btn { width:100%; }
  .genetics-link { justify-self:start; }
  .genetics-stack { grid-template-columns:1fr; }
  .genetics-item { min-height:0; padding:20px 18px; }
  .service-grid { grid-template-columns:1fr;gap:12px; }
  .service-card { min-height:0;padding:23px 18px 20px; }
  .service-card svg { width:47px;height:47px; }
  .service-card h3 { font-size:17px; }
  .service-card p { font-size:13px;line-height:1.75; }
  .expert-grid { grid-template-columns:1fr 1fr; padding:32px 0; align-items:start; row-gap:0; column-gap:0; }
  .doctor-photo { grid-column:1; grid-row:1; width:130px; height:230px; justify-self:start; border-radius:10px; align-self:center; }
  .doctor-intro { grid-column:2; grid-row:1; padding:10px 0; }
  .doctor-intro h2 { font-size:26px; }
  .doctor-title { font-size:13px; }
  .doctor-intro > p:last-of-type { font-size:13px;display:-webkit-box;-webkit-line-clamp:4;-webkit-box-orient:vertical;overflow:hidden }
  .doctor-intro .btn { margin-top:6px; }
  /* Unified card system — all four facts share identical internal metrics */
  .expert-fact { min-height:0; padding:24px 16px; margin:0; border:none; position:relative; box-sizing:border-box; display:flex; flex-direction:column; }
  .expert-fact svg { width:34px; height:34px; display:block; flex:0 0 auto; margin:0 0 12px; }
  .expert-fact h3 { margin:0 0 14px; font-size:16px; line-height:1.25; flex:0 0 auto; }
  .expert-fact ul { margin:0; padding:0; font-size:12px; line-height:1.7; flex:0 0 auto; }
  /* Row 2 — equal 1fr columns: 学术背景 | 专业方向 */
  .expert-fact--academic { grid-column:1; grid-row:2; border-top:1px solid rgba(255,255,255,.12); }
  .expert-fact--specialty { grid-column:2; grid-row:2; border-top:1px solid rgba(255,255,255,.12); }
  /* Row 3 — equal 1fr columns: 学术成就 | 临床经验 */
  .expert-fact--achievement { grid-column:1; grid-row:3; border-top:1px solid rgba(255,255,255,.12); border-bottom:1px solid rgba(255,255,255,.12); }
  .expert-fact--clinical { grid-column:2; grid-row:3; border-top:1px solid rgba(255,255,255,.12); border-bottom:1px solid rgba(255,255,255,.12); }
  /* Vertical divider — absolute pseudo-element, zero impact on box-model */
  .expert-fact--specialty::before,
  .expert-fact--clinical::before { content:""; position:absolute; left:0; top:0; bottom:0; width:1px; background:rgba(255,255,255,.12); }
  .fields .container { width:calc(100% - 32px); }
  .field-grid { grid-template-columns:1fr;gap:14px; }
  .disease-card { min-height:0;padding:16px; }
  .disease-card-heading,
  .disease-card-desc { min-height:0; }
  .disease-card-heading h3 { font-size:19px; }
  .disease-card-heading p { font-size:13px; }
  .disease-card-desc { font-size:14px; }
  .disease-card-link { width:100%;min-height:46px; }
  .process-track { grid-template-columns:1fr;gap:24px 0; }
  .process-item { padding:0 12px; }
  .process-icon { width:70px;height:70px}.process-icon svg{width:38px;height:38px}
  .process-item h3{font-size:16px}.process-item p{font-size:13px}
  .heading-row > div { padding-left:0; }
  .heading-row > a { display:none; }
  .resource-card, .patient-story-card { grid-template-columns:42% 58%;min-height:165px }
  .resource-visual, .patient-story-visual { min-height:165px; }
  .resource-card > div:last-child, .patient-story-card > div:last-child { padding:16px 13px; }
  .resource-card h3, .patient-story-card h3 { font-size:16px; }
  .resource-card p, .patient-story-card p { font-size:12px;margin-bottom:10px }
  .patient-story-card { grid-template-columns:1fr; }
  .patient-story-visual { min-height:178px; }
  .patient-story-card h3 { overflow-wrap:normal; word-break:normal; }
  .contact-grid { grid-template-columns:1fr;padding:18px 0;gap:10px 0; }
  .contact-prompt { grid-column:auto;gap:10px;justify-content:center; }
  .round-icon { width:44px;height:44px}.round-icon svg{width:24px;height:24px}
  .contact-prompt h2 { font-size:16px; }.contact-prompt p{font-size:11px}
  .contact-link { border-left:none;padding:10px 12px;align-items:center;justify-content:center;text-align:center;min-height:46px;border-bottom:1px solid rgba(255,255,255,.08); }
  .contact-link:nth-of-type(2),
  .contact-link:nth-of-type(3) { border-left:none; }
  .contact-link small { font-size:10px; }
  .contact-link strong { font-size:12px;word-break:break-all;white-space:normal; }
  .contact-grid .btn { grid-column:auto;justify-self:stretch;margin-left:0;min-height:46px;padding:12px 22px;font-size:14px;max-width:none; }
  .footer-grid { grid-template-columns:1fr 1fr;gap:30px 22px;padding-top:40px }
  .footer-grid > div:not(:first-child):not(:last-child) a { display:block;padding:8px 0;min-height:40px; }
  .footer-brand { grid-column:span 2; }
  .footer-contact { grid-column:span 2; }
  .socials a, .socials span { width:40px;height:40px;font-size:13px; }
  .copyright { display:grid;justify-content:center;text-align:center;gap:8px;padding:16px 0; }
  .copyright span:last-child { justify-content:center; }
  .toast { width:calc(100% - 32px);text-align:center;font-size:12px; }

  /* Mobile: deeper overlay so text stays readable over hero image */
  .route-hero {
    background:
      linear-gradient(90deg, rgba(4, 28, 50, 0.99) 0%, rgba(4, 28, 50, 0.96) 55%, rgba(4, 28, 50, 0.82) 100%),
      var(--route-hero-image, url("assets/hero-consultation.png")) var(--route-hero-pos, center right) / cover no-repeat;
  }
  .doctor-profile-page .page-hero {
    background:
      linear-gradient(90deg, rgba(4, 28, 50, 0.99) 0%, rgba(4, 28, 50, 0.96) 55%, rgba(4, 28, 50, 0.82) 100%),
      url("assets/hero/expert-profile-hero-bg.png") center right / cover no-repeat;
  }
  .patient-guide-page .page-hero {
    background:
      linear-gradient(90deg, rgba(4, 28, 50, 0.98) 0%, rgba(4, 28, 50, 0.94) 55%, rgba(4, 28, 50, 0.72) 100%),
      var(--route-hero-image, url("assets/hero-consultation.png")) var(--route-hero-pos, center right) / cover no-repeat;
  }
  .route-hero { padding:36px 0 40px; }
  .route-hero h1 { font-size:34px; }
  .route-content { padding:42px 0 58px; }
  .route-card-grid,.route-steps,.contact-route-grid { grid-template-columns:1fr; }
  .route-card { min-height:0;padding:21px; }
  .disease-section { grid-template-columns:36px 1fr;gap:10px;padding:22px 18px; }
  .expert-route-layout { grid-template-columns:1fr; }
  .expert-route-layout > img { max-width:280px;max-height:370px; }
  .inquiry-form { grid-template-columns:1fr;padding:20px; }
  .inquiry-form .form-wide { grid-column:auto; }
  .route-footer .container { grid-template-columns:1fr; }
  .route-footer > .container > a[id] { grid-column:1;grid-row:auto;width:max-content;margin-top:12px; }
}

@media (max-width: 1080px) {
  .disease-detail-page .route-hero > .container { grid-template-columns:minmax(0,1fr) 180px;gap:28px; }
  .route-disease-visual { min-height:170px;padding:18px; }
  .disease-import .quick-card-grid { grid-template-columns:1fr 1fr; }
  .disease-import .disease-content-layout { grid-template-columns:1fr; }
  .disease-import .disease-detail-sidebar {
    position:static;grid-template-columns:repeat(3,minmax(0,1fr));align-items:start;
  }
  .disease-import .symptom-grid { grid-template-columns:1fr 1fr; }
  .disease-import .suitable-card-grid { grid-template-columns:1fr; }
  .doctor-profile-page .page-hero-inner { grid-template-columns:260px minmax(0,1fr);gap:34px; }
  .doctor-profile-page .grid-6 { grid-template-columns:repeat(2,minmax(0,1fr)); }
  .doctor-profile-page .video-row { grid-template-columns:repeat(2,minmax(0,1fr)); }
  .patient-guide-page .page-hero-inner { grid-template-columns:minmax(0,1fr) 240px;gap:32px; }
  .patient-guide-page .grid-4 { grid-template-columns:repeat(2,minmax(0,1fr)); }
  .patient-guide-page .grid-3 { grid-template-columns:repeat(2,minmax(0,1fr)); }
}

@media (max-width: 760px) {
  .disease-detail-page .route-hero > .container { grid-template-columns:1fr; }
  .route-disease-visual { display:none; }
  .imported-disease-quick { padding:22px 18px; }
  .disease-import { gap:28px; }
  .disease-import .card-pad { padding:22px 18px; }
  .disease-import .disease-detail-sidebar { grid-template-columns:1fr; }
  .disease-import .symptom-grid,
  .disease-import .treatment-card-grid,
  .disease-import .not-suitable-list,
  .disease-import .doc-grid { grid-template-columns:1fr; }
  .disease-consultation-banner { grid-template-columns:1fr;padding:24px 20px; }
  .disease-consultation-banner .route-primary-button { width:max-content; }
  .doctor-profile-page .page-hero { padding:38px 0 44px; }
  .doctor-profile-page .page-hero-inner { grid-template-columns:1fr;gap:24px; }
  .doctor-profile-page .doctor-photo-frame { max-width:230px; }
  .doctor-profile-page .doctor-photo-frame img { max-height:290px; }
  .doctor-profile-page .page-hero h1 { font-size:34px; }
  .doctor-profile-page .grid-2,
  .doctor-profile-page .grid-6 { grid-template-columns:1fr; }
  .doctor-profile-page .profile-metrics { grid-template-columns:1fr 1fr; }
  .doctor-profile-page .cta { grid-template-columns:46px 1fr; }
  .doctor-profile-page .cta .btn { grid-column:1/-1;width:max-content; }
  .patient-guide-page .page-hero { padding:42px 0 48px; }
  .patient-guide-page .page-hero-inner { grid-template-columns:1fr; }
  .patient-guide-page .page-art { display:none; }
  .patient-guide-page .grid-2,
  .patient-guide-page .grid-3,
  .patient-guide-page .grid-4 { grid-template-columns:1fr; }
  .patient-guide-page .bottom-cta-block { padding:26px 20px; }
}

@media (max-width: 520px) {
  .disease-import .quick-card-grid { grid-template-columns:1fr; }
  .disease-import .section-title { font-size:22px; }
  .disease-import .content-block h2 { font-size:21px; }
  .disease-import .treatment-meta { grid-template-columns:1fr;gap:2px; }
  .route-disease-tags span { font-size:10px; }
  .doctor-profile-page .section { padding:44px 0; }
  .doctor-profile-page .video-row { grid-template-columns:1fr; }
  .doctor-profile-page .profile-metrics { grid-template-columns:1fr; }
  .doctor-profile-page .section-head { align-items:start;flex-direction:column;gap:10px; }
  .doctor-profile-page .hero-actions { display:grid; }
  .doctor-profile-page .hero-actions .btn { width:100%; }
  .patient-guide-page .section { padding:44px 0; }
  .patient-guide-page .hero-actions,
  .patient-guide-page .bottom-cta-actions { display:grid; }
  .patient-guide-page .btn { width:100%; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior:auto; }
  *,*::before,*::after { animation-duration:.01ms!important;animation-iteration-count:1!important;transition-duration:.01ms!important; }
  .reveal { opacity:1;transform:none; }
}

/* PATIENT STORY DETAIL PAGE */
.patient-story-detail-page { background:#f7f9fc; }
.story-article-hero { padding:64px 0 54px; }
.story-article-head { display:grid; gap:18px; }
.story-article-head .breadcrumb { margin-bottom:6px; }
.story-article-head h1 { max-width:1040px; margin:0; font-size:clamp(34px,4vw,52px); line-height:1.25; letter-spacing:.03em; }
.story-meta-grid { display:grid; grid-template-columns:repeat(4,minmax(0,1fr)); gap:10px; margin:4px 0 0; }
.story-meta-grid div { padding:12px 14px; border:1px solid rgba(239,209,142,.24); border-radius:8px; background:rgba(255,255,255,.06); }
.story-meta-grid dt { margin:0 0 5px; color:var(--gold-300); font-size:11px; font-weight:800; }
.story-meta-grid dd { margin:0; color:rgba(255,255,255,.82); font-size:12px; line-height:1.55; }
.story-meta-grid a { color:rgba(255,255,255,.9); text-decoration:underline; text-underline-offset:3px; }
.story-summary { max-width:820px; margin:0; color:rgba(255,255,255,.78); font-size:15px; line-height:1.85; }
.story-video-frame { position:relative; overflow:hidden; margin:14px 0 0; border:1px solid rgba(239,209,142,.3); border-radius:14px; background:#061f3a; box-shadow:0 18px 46px rgba(0,0,0,.22); }
.story-video-frame video, .story-video-fallback { display:block; width:100%; aspect-ratio:16/8.2; object-fit:cover; background:#061f3a; }
.story-video-fallback { display:none; position:absolute; inset:0; height:auto; }
.story-video-frame.video-error .story-video-fallback { display:block; }
.story-video-frame.video-error video { opacity:0; pointer-events:none; }
.story-video-frame figcaption { margin:0; padding:12px 16px; color:rgba(255,255,255,.76); background:rgba(3,26,50,.96); font-size:12px; line-height:1.6; }
.patient-story-layout { display:grid; grid-template-columns:minmax(0,1fr) 320px; gap:30px; align-items:start; }
.story-article-body { display:grid; gap:18px; min-width:0; }
.story-section, .story-disclaimer, .sidebar-consult-card { border:1px solid #e2e7ed; border-radius:11px; background:#fff; box-shadow:0 8px 24px rgba(20,50,82,.05); }
.story-section { padding:28px 30px; }
.story-section h2, .sidebar-consult-card h2, .story-bottom-cta h2 { margin:0 0 12px; color:var(--navy-900); font-family:var(--serif); line-height:1.35; letter-spacing:.04em; }
.story-section h2 { font-size:24px; }
.story-section p { margin:0; color:#4d6077; font-size:14px; line-height:1.9; }
.story-disclaimer { padding:18px 20px; color:#5d5140; background:#fff8e8; border-color:#ead29b; font-size:13px; line-height:1.8; }
.story-conversion-sidebar { position:sticky; top:96px; display:grid; gap:14px; }
.sidebar-consult-card { padding:20px; }
.sidebar-consult-card h2 { font-size:18px; }
.sidebar-consult-card p, .sidebar-consult-card li { color:#5d6f83; font-size:12px; line-height:1.75; }
.sidebar-consult-card ul { display:grid; gap:8px; margin:0; padding:0; list-style:none; }
.sidebar-consult-card li { position:relative; padding-left:17px; }
.sidebar-consult-card li::before { content:""; position:absolute; left:0; top:.72em; width:6px; height:6px; border-radius:50%; background:var(--gold-500); }
.sidebar-primary-card { background:linear-gradient(145deg,#062d53,#073b66); border-color:#164d7a; }
.sidebar-primary-card h2 { color:var(--gold-300); }
.sidebar-primary-card p { margin:0 0 16px; color:rgba(255,255,255,.72); }
.sidebar-primary-card .route-primary-button { width:100%; justify-content:center; }
.related-disease-links { display:grid; gap:8px; }
.related-disease-links a { padding:10px 12px; border:1px solid #e4ebf2; border-radius:7px; color:var(--navy-700); background:#f8fafc; font-size:12px; font-weight:700; }
.related-disease-links a:hover { color:#956b28; border-color:#e4c88b; background:#fff9ea; }
.story-bottom-cta { padding:0 0 78px; }
.story-bottom-cta .container { display:grid; justify-items:center; gap:10px; padding:38px 28px; text-align:center; border:1px solid #164d7a; border-radius:14px; color:#fff; background:linear-gradient(120deg,#042545,#063962 70%,#052a4c); box-shadow:0 16px 40px rgba(4,37,69,.14); }
.story-bottom-cta h2 { margin:0; color:var(--gold-300); font-size:28px; }
.story-bottom-cta p { margin:0 0 10px; color:rgba(255,255,255,.72); font-size:14px; }

@media (max-width: 980px) {
  .story-meta-grid { grid-template-columns:repeat(2,minmax(0,1fr)); }
  .patient-story-layout { grid-template-columns:1fr; }
  .story-conversion-sidebar { position:static; grid-template-columns:repeat(2,minmax(0,1fr)); }
  .sidebar-primary-card { grid-column:1/-1; }
}
@media (max-width: 620px) {
  .story-article-hero { padding:42px 0 40px; }
  .story-meta-grid, .story-conversion-sidebar { grid-template-columns:1fr; }
  .story-video-frame video, .story-video-fallback { aspect-ratio:16/10; }
  .story-section { padding:22px 18px; }
  .story-section h2 { font-size:21px; }
  .story-bottom-cta .container { padding:30px 20px; }
  .story-bottom-cta h2 { font-size:23px; }
}
.patient-story-detail-page .container { min-width:0; }
.story-article-head, .story-article-body, .story-section, .sidebar-consult-card, .story-bottom-cta .container { min-width:0; }
.story-article-head h1, .story-summary, .story-section p, .sidebar-consult-card p, .sidebar-consult-card li, .story-disclaimer, .story-bottom-cta p { overflow-wrap:anywhere; }

/* ================================================================
   ABOUT PAGE — module tabs
   ================================================================ */

/* Tab navigation bar */
.about-tabs-nav { display:flex; flex-wrap:wrap; gap:6px; margin:0 0 32px; padding:0; list-style:none; border-bottom:2px solid #e5eaf0; }
.about-tabs-nav li { margin:0; }
.about-tab-btn { display:inline-block; padding:12px 22px; font-size:14px; font-weight:600; color:#6e7a87; background:transparent; border:none; border-bottom:3px solid transparent; margin-bottom:-2px; cursor:pointer; transition:color .2s, border-color .2s; white-space:nowrap; text-decoration:none; }
.about-tab-btn:hover { color:#1e3a5f; border-bottom-color:#c0c9d4; }
.about-tab-btn.active { color:#1e3a5f; border-bottom-color:#b28a43; }

/* Module content section */
.about-module { display:none; }
.about-module.active { display:block; }
.about-module-head { margin:0 0 24px; }
.about-module-head h2 { margin:0 0 8px; font-family:var(--serif); font-size:28px; color:#0a2a4a; letter-spacing:.04em; }
.about-module-head p { max-width:760px; margin:0; color:#5d6f83; font-size:15px; line-height:1.8; }

/* About feature cards grid */
.about-feature-grid { display:grid; grid-template-columns:repeat(4,minmax(0,1fr)); gap:16px; margin:0 0 32px; }
.about-feature-card { padding:22px 20px; border:1px solid #e2e7ed; border-radius:10px; background:#fff; box-shadow:0 6px 20px rgba(20,50,82,.04); transition:box-shadow .25s; }
.about-feature-card:hover { box-shadow:0 10px 28px rgba(20,50,82,.08); }
.about-feature-card h3 { margin:0 0 8px; color:#1e3a5f; font-family:var(--serif); font-size:16px; letter-spacing:.03em; }
.about-feature-card p { margin:0; color:#6e7a87; font-size:13px; line-height:1.7; overflow-wrap:anywhere; }
.about-feature-card .feature-icon { display:inline-block; width:38px; height:38px; margin:0 0 12px; line-height:38px; text-align:center; font-size:18px; border-radius:10px; background:#f0f4f8; color:#1e3a5f; }

/* About CTA row */
.about-module-cta { display:flex; gap:14px; flex-wrap:wrap; align-items:center; }
.about-module-cta .route-primary-button { display:inline-flex; align-items:center; gap:6px; padding:12px 28px; font-size:14px; font-weight:700; color:#fff; background:linear-gradient(115deg,#b28a43,#c99b4b); border:none; border-radius:8px; text-decoration:none; transition:opacity .2s; }
.about-module-cta .route-primary-button:hover { opacity:.88; }
.about-module-cta .about-cta-outline { color:#1e3a5f; background:transparent; border:1.5px solid #c0c9d4; font-weight:600; }

/* Fee disclaimer (legacy) */
.about-fee-disclaimer { margin:24px 0 0; padding:18px 20px; border:1px solid #ead29b; border-radius:10px; background:#fff8e8; }
.about-fee-disclaimer strong { display:block; margin:0 0 6px; color:#5d5140; font-size:14px; font-family:var(--serif); }
.about-fee-disclaimer p { margin:0; color:#6d5f47; font-size:13px; line-height:1.8; }

/* ================================================================
   FEE CARDS — disease pricing card list
   ================================================================ */

/* ── Reference bar at top ── */
.fee-reference-bar {
  display:flex; align-items:flex-start; gap:12px;
  margin:0 0 28px; padding:14px 18px;
  border-left:3px solid #b28a43; border-radius:0 8px 8px 0;
  background:#f4f7fb;
}
.fee-reference-bar .fee-reference-icon { flex-shrink:0; width:20px; height:20px; line-height:20px; text-align:center; font-size:13px; color:#b28a43; border-radius:50%; background:#fdf3e0; }
.fee-reference-bar p { margin:0; color:#4d6077; font-size:13px; line-height:1.75; }

/* ── Card list ── */
.fee-cards-list { display:flex; flex-direction:column; gap:16px; margin:0 0 32px; }

/* ── Single card ── */
.fee-card {
  border:1px solid #e2e7ed; border-radius:10px;
  background:#fff; box-shadow:0 6px 20px rgba(20,50,82,.04);
  overflow:hidden; transition:box-shadow .25s;
}
.fee-card:hover { box-shadow:0 10px 28px rgba(20,50,82,.08); }

.fee-card-main {
  display:flex; align-items:flex-start; gap:18px;
  padding:22px 24px;
}

/* ── Card title (replaces former icon position) ── */
.fee-card-title {
  flex-shrink:0; margin:0;
  font-family:var(--serif); font-size:17px;
  color:#0a2a4a; letter-spacing:.03em;
}

/* ── Card body (middle) ── */
.fee-card-body { flex:1; min-width:0; }
.fee-card-badges { margin:0 0 6px; }
.fee-status-badge {
  display:inline-block; padding:3px 10px;
  font-size:11px; font-weight:700; border-radius:4px;
  letter-spacing:.04em; text-transform:uppercase;
}
.fee-status--listed { color:#0a6e3f; background:#eaf7f0; }
.fee-status--pending { color:#8a6d00; background:#fef9e8; }

.fee-card-desc { margin:0 0 10px; color:#5d6f83; font-size:13px; line-height:1.65; }
.fee-card-tags { display:flex; flex-wrap:wrap; gap:6px; }
.fee-tag {
  display:inline-block; padding:3px 10px;
  font-size:11px; color:#4d6077; background:#f4f7fb;
  border:1px solid #e2e7ed; border-radius:4px;
}

/* ── Card right (price + button) ── */
.fee-card-right {
  flex-shrink:0; display:flex; flex-direction:column;
  align-items:flex-end; gap:6px; min-width:130px;
}
.fee-card-price {
  font-size:24px; font-weight:700; color:#1e3a5f;
  font-family:var(--serif); letter-spacing:.03em;
  white-space:nowrap;
}
.fee-card-price--tbd { font-size:20px; color:#8a6d00; }
.fee-card-price-label { font-size:12px; color:#8a9aab; }

/* ── Detail toggle button ── */
.fee-detail-toggle {
  display:inline-flex; align-items:center; gap:4px;
  margin-top:4px; padding:7px 14px;
  font-size:12px; font-weight:600; color:#4d6077;
  background:transparent; border:1px solid #d0d8e0; border-radius:6px;
  cursor:pointer; transition:color .18s, border-color .18s, background .18s;
  white-space:nowrap;
}
.fee-detail-toggle:hover { color:#1e3a5f; border-color:#b28a43; background:#fefaf3; }
.fee-detail-toggle:focus-visible { outline:2px solid #b28a43; outline-offset:2px; }
.fee-detail-toggle[aria-expanded="true"] { color:#b28a43; border-color:#b28a43; background:#fefaf3; }
.fee-detail-toggle[aria-expanded="true"] .fee-toggle-arrow { transform:rotate(180deg); }
.fee-toggle-arrow { font-size:13px; transition:transform .25s; }

/* ── Card expandable detail ── */
.fee-card-detail { border-top:1px solid #eaf0f6; background:#fafbfd; }
.fee-card-detail[hidden] { display:none; }
.fee-card-detail.expanded { display:block; }
/* when shown via JS: remove hidden attr and add expanded class; display:block wins */
.fee-card-detail:not([hidden]) { display:block; }
.fee-card-detail-inner { padding:20px 24px; }
.fee-card-detail-inner p { margin:0 0 16px; color:#4d6077; font-size:14px; line-height:1.85; }

/* ── Breakdown DL (legacy fallback) ── */
.fee-detail-breakdown { margin:0 0 20px; }
.fee-detail-head { margin:0 0 18px; }
.fee-detail-head h4 { margin:0 0 6px; font-family:var(--serif); font-size:17px; color:#0a2a4a; letter-spacing:.03em; }
.fee-detail-head p { margin:0; color:#6e7a87; font-size:13px; line-height:1.7; }

.fee-breakdown-list {
  margin:0; padding:0;
  border:1px solid #e2e7ed; border-radius:8px;
  background:#fff; overflow:hidden;
}
.fee-breakdown-row {
  display:flex; align-items:baseline; justify-content:space-between;
  padding:14px 18px; gap:16px;
  border-bottom:1px solid #eef2f6;
}
.fee-breakdown-row:last-child { border-bottom:none; }
.fee-breakdown-row dt {
  flex-shrink:0; min-width:0;
  font-size:13px; font-weight:600; color:#4d6077;
}
.fee-breakdown-row dd {
  margin:0; text-align:right; flex-shrink:0;
  font-size:13px; font-weight:600; color:#1e3a5f;
  font-family:var(--serif);
}

/* ── Detail sections (4-module layout) ── */
.fee-detail-sections { display:flex; flex-direction:column; gap:20px; margin:0 0 20px; }
.fee-detail-section {
  padding:18px 20px; border:1px solid #e2e7ed; border-radius:10px;
  background:#fff; box-shadow:0 2px 10px rgba(20,50,82,.02);
}
.fee-section-title {
  margin:0 0 12px; padding:0 0 10px;
  font-family:var(--serif); font-size:16px; color:#0a2a4a; letter-spacing:.03em;
  border-bottom:2px solid #eef2f6;
}
.fee-budget-note {
  margin:0; color:#4d6077; font-size:13px; line-height:1.8;
}
.fee-section-items {
  margin:0; padding:0 0 0 18px;
  display:flex; flex-direction:column; gap:7px;
}
.fee-section-items li {
  color:#4d6077; font-size:13px; line-height:1.7;
}
.fee-section-items li::marker { color:#b28a43; font-size:11px; }

.fee-card-detail-actions { display:flex; gap:12px; flex-wrap:wrap; }
.fee-card-detail-actions .route-primary-button {
  display:inline-flex; align-items:center; gap:6px; padding:10px 24px;
  font-size:13px; font-weight:700; color:#fff;
  background:linear-gradient(115deg,#b28a43,#c99b4b);
  border:none; border-radius:8px; text-decoration:none; transition:opacity .2s;
}
.fee-card-detail-actions .route-primary-button:hover { opacity:.88; }

/* ── Disclaimer section ── */
.fee-disclaimer-section {
  margin:32px 0 28px; padding:22px 24px;
  border:1px solid #ead29b; border-radius:10px;
  background:#fff8e8;
}
.fee-disclaimer-section h3 { margin:0 0 10px; color:#5d5140; font-size:15px; font-family:var(--serif); }
.fee-disclaimer-section p { margin:0; color:#6d5f47; font-size:13px; line-height:1.85; }

/* ── Process section ── */
.fee-process-section { margin:0 0 28px; }
.fee-process-section h3 {
  margin:0 0 16px; font-family:var(--serif); font-size:18px; color:#0a2a4a;
}
.fee-process-col {
  padding:18px 20px; border:1px solid #e2e7ed; border-radius:10px;
  background:#fff; box-shadow:0 4px 14px rgba(20,50,82,.03);
}
.fee-process-steps { margin:0; padding:0 0 0 18px; display:flex; flex-direction:column; gap:6px; }
.fee-process-steps li { color:#4d6077; font-size:13px; line-height:1.7; }

/* ── Bottom CTA row ── */
.fee-cta-row { display:flex; gap:14px; flex-wrap:wrap; align-items:center; }
.fee-cta-row .route-primary-button {
  display:inline-flex; align-items:center; gap:6px; padding:12px 28px;
  font-size:14px; font-weight:700; color:#fff;
  background:linear-gradient(115deg,#b28a43,#c99b4b);
  border:none; border-radius:8px; text-decoration:none; transition:opacity .2s;
}
.fee-cta-row .route-primary-button:hover { opacity:.88; }
.fee-cta-row .about-cta-outline { color:#1e3a5f; background:transparent; border:1.5px solid #c0c9d4; font-weight:600; }

/* ================================================================
   FEE CARDS — Mobile (< 760px)
   ================================================================ */
@media (max-width: 759px) {
  .fee-card-main {
    flex-wrap:wrap; gap:14px; padding:18px 16px;
  }
  .fee-card-body { flex:1 1 100%; order:3; min-width:100%; }
  .fee-card-right {
    flex:1 1 auto; order:2; flex-direction:row; align-items:center;
    justify-content:space-between; min-width:0; width:100%;
  }
  .fee-card-price { font-size:22px; }
  .fee-card-price--tbd { font-size:18px; }
  .fee-card-title { font-size:16px; }
  .fee-card-detail-inner { padding:16px 18px; }
  .fee-breakdown-row { padding:12px 14px; }
  .fee-breakdown-row dt { font-size:12px; }
  .fee-breakdown-row dd { font-size:12px; }
  .fee-detail-section { padding:14px 16px; }
  .fee-section-title { font-size:15px; }
  .fee-cta-row { flex-direction:column; align-items:stretch; }
  .fee-cta-row .route-primary-button { text-align:center; justify-content:center; }
}

/* ── Mobile: small phones (≤420px) ── */
@media (max-width: 420px) {
  .fee-reference-bar { padding:12px 14px; }
  .fee-reference-bar p { font-size:12px; }
  .fee-card-main { padding:14px 12px; gap:10px; }
  .fee-card-title { font-size:15px; }
  .fee-card-price { font-size:20px; }
  .fee-card-detail-inner { padding:14px 16px; }
  .fee-card-detail-inner p { font-size:13px; }
  .fee-breakdown-row { padding:11px 13px; }
  .fee-breakdown-row dt, .fee-breakdown-row dd { font-size:11px; }
  .fee-detail-head h4 { font-size:16px; }
  .fee-detail-section { padding:12px 14px; }
  .fee-section-title { font-size:14px; }
  .fee-budget-note, .fee-section-items li { font-size:12px; }
  .fee-disclaimer-section { padding:16px 18px; }
  .fee-disclaimer-section p { font-size:12px; }
  .fee-process-col { padding:14px 16px; }
  .fee-process-steps li { font-size:12px; }
}

/* Image disclaimer (hospital environment) */
.about-image-disclaimer { margin:18px 0 0; padding:14px 18px; border:1px solid #dce3eb; border-radius:8px; background:#f7f9fc; }
.about-image-disclaimer p { margin:0; color:#6e7a87; font-size:12px; line-height:1.75; }

/* List block (overview / approach modules) */
.about-list-block { margin:0 0 28px; }
.about-list-block h3 {
  margin:0 0 14px; font-family:var(--serif); font-size:18px; color:#1e3a5f;
  letter-spacing:.03em; padding:0 0 10px; border-bottom:1px solid #eef2f6;
}
.about-list-block ul {
  margin:0; padding:0 0 0 18px;
  display:flex; flex-direction:column; gap:8px;
}
.about-list-block li {
  color:#4d6077; font-size:14px; line-height:1.7;
}
.about-list-block li::marker { color:#b28a43; font-size:10px; }

/* Page note (module-level disclaimer tip) */
.about-page-note {
  margin:24px 0 0; padding:16px 18px;
  border-left:3px solid #b28a43; border-radius:0 8px 8px 0;
  background:#f4f7fb;
}
.about-page-note p { margin:0; color:#4d6077; font-size:13px; line-height:1.75; }

/* Multi-paragraph desc in about-module-head */
.about-module-head p + p { margin-top:10px; }

/* ================================================================
   HOSPITAL ENVIRONMENT GALLERY
   ================================================================ */

/* Desktop: left hero + right stacked */
.about-gallery-desktop { display:grid; grid-template-columns:3fr 2fr; gap:14px; margin:0 0 14px; }
.about-gallery-desktop .about-gallery-hero figure { margin:0; height:100%; display:flex; flex-direction:column; }
.about-gallery-desktop .about-gallery-hero img { width:100%; height:100%; object-fit:cover; border-radius:10px; aspect-ratio:16/9; }
.about-gallery-desktop .about-gallery-side { display:flex; flex-direction:column; gap:14px; }
.about-gallery-desktop .about-gallery-side figure { margin:0; flex:1; display:flex; flex-direction:column; }
.about-gallery-desktop .about-gallery-side img { width:100%; height:100%; object-fit:cover; border-radius:10px; aspect-ratio:16/9; }

/* Desktop: bottom row of 3 */
.about-gallery-row { display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); gap:14px; margin:0 0 20px; }
.about-gallery-row figure { margin:0; }
.about-gallery-row img { width:100%; aspect-ratio:16/9; object-fit:cover; border-radius:10px; }
.about-gallery-row figcaption { margin:8px 0 0; color:#5d6f83; font-size:13px; font-weight:600; text-align:center; }

/* Gallery figure captions */
.about-gallery-desktop figcaption,
.about-gallery-mobile figcaption { margin:8px 0 0; color:#5d6f83; font-size:13px; font-weight:600; }
.about-gallery-desktop .about-gallery-hero figcaption { font-size:14px; }

/* Mobile gallery (hidden on desktop) */
.about-gallery-mobile { display:none; }

@media (max-width: 620px) {
  .about-gallery-desktop { display:none; }
  .about-gallery-row { display:none; }
  .about-gallery-mobile { display:grid; grid-template-columns:1fr; gap:14px; margin:0 0 20px; }
  .about-gallery-mobile figure { margin:0; }
  .about-gallery-mobile img { width:100%; aspect-ratio:16/9; object-fit:cover; border-radius:10px; }
  .about-gallery-mobile figcaption { margin:8px 0 0; font-size:13px; }
}

/* English nav: prevent Submit Medical Inquiry wrapping */
.is-en .nav-cta { font-size:14px; line-height:1.2; text-align:center; white-space:nowrap; width:auto; max-width:none; }

/* Resource detail article body */
.resource-detail-page .story-article-body { max-width:920px; margin:0 auto; }
.resource-article .story-section { display:block; }
.resource-article h2 { margin:0 0 12px; color:var(--navy-900); font-family:var(--serif); font-size:25px; line-height:1.35; }
.resource-article h3 { margin:24px 0 10px; color:#214765; font-size:19px; line-height:1.45; }
.resource-article p, .resource-article li { color:#4d6077; font-size:15px; line-height:1.95; }
.resource-article p { margin:0 0 14px; }
.resource-article ul, .resource-article ol { display:grid; gap:8px; margin:0 0 18px 20px; padding:0; }
.resource-article figure { margin:24px 0; text-align:center; }
.resource-article img { display:block; max-width:100%; height:auto; margin:0 auto; border-radius:8px; }
.resource-article figcaption { margin:9px 0 0; color:#6d7b8a; font-size:12px; line-height:1.7; }
.resource-article blockquote { margin:22px 0; padding:16px 20px; border-left:4px solid var(--gold-500); background:#f8fafc; color:#3e5167; line-height:1.85; }
.resource-article a { color:#9e7634; font-weight:700; text-decoration:underline; text-underline-offset:3px; }
.resource-body-empty { color:#888; }

/* Responsive */
@media (max-width: 980px) {
  .about-feature-grid { grid-template-columns:repeat(2,minmax(0,1fr)); }
  .about-tab-btn { padding:10px 16px; font-size:13px; }
  .about-module-head h2 { font-size:24px; }
}
@media (max-width: 620px) {
  .about-tabs-nav { flex-wrap:wrap; gap:4px; padding-bottom:2px; justify-content:center; }
  .about-tab-btn { padding:9px 13px; font-size:12px; border-bottom-width:2px; }
  .about-feature-grid { grid-template-columns:1fr; gap:12px; }
  .about-module-head h2 { font-size:22px; }
  .about-module-head p { font-size:14px; }
  .about-feature-card { padding:18px 16px; }
  .about-module-cta { flex-direction:column; align-items:stretch; }
  .about-module-cta .route-primary-button { text-align:center; justify-content:center; }
  .about-list-block h3 { font-size:16px; }
  .about-list-block li { font-size:13px; }
  .about-page-note { padding:14px 16px; }
}
