:root {
  --ink: #0e2b2f;
  --ink-soft: #345256;
  --teal: #0f6e72;
  --teal-bright: #41c6b7;
  --mint: #dff5ef;
  --cream: #f7f3ea;
  --white: #fffefb;
  --warm: #dc714f;
  --line: rgba(14, 43, 47, 0.14);
  --shadow: 0 26px 70px rgba(14, 43, 47, 0.12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: "DM Sans", "Noto Sans SC", system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
}
body.lang-mode-en .lang-zh,
body:not(.lang-mode-en) .lang-en { display: none !important; }
a { color: inherit; }
button, input, select, textarea { font: inherit; }

.top-notice {
  min-height: 34px;
  display: grid;
  place-items: center;
  padding: 7px 5vw;
  color: #fff;
  background: var(--ink);
  grid-template-columns: auto 1fr auto;
  gap: 30px;
  font-size: 11px;
  letter-spacing: .03em;
  text-align: center;
}
.notice-locations { color: var(--teal-bright); font-size: 9px; font-weight: 700; letter-spacing: .16em; }
.site-header {
  height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5vw;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 254, 251, .93);
  backdrop-filter: blur(18px);
  position: sticky;
  top: 0;
  z-index: 50;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  font-weight: 700;
  text-decoration: none;
}
.brand-mark {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50% 50% 50% 12%;
  color: white;
  background: var(--teal);
  font-weight: 700;
}
nav { display: flex; gap: 28px; }
nav a {
  text-decoration: none;
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 500;
}
nav a:hover { color: var(--teal); }
.language-toggle {
  border: 1px solid var(--line);
  background: transparent;
  color: var(--ink);
  border-radius: 999px;
  padding: 8px 13px;
  cursor: pointer;
  font-weight: 700;
}

.hero {
  min-height: 760px;
  padding: 110px 7vw 95px;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(380px, .85fr);
  gap: 7vw;
  align-items: center;
  overflow: hidden;
  position: relative;
  background: var(--cream);
}
.hero-photo {
  position: absolute;
  inset: 0;
  background: url("assets/bridgecare-global-medical-team.jpg") center / cover no-repeat;
  opacity: .34;
}
.hero-photo-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(247,243,234,.98) 0%, rgba(247,243,234,.91) 42%, rgba(247,243,234,.48) 69%, rgba(14,43,47,.12) 100%),
    linear-gradient(0deg, rgba(247,243,234,.82), transparent 45%);
}
.hero-glow { position: absolute; border-radius: 50%; filter: blur(2px); pointer-events: none; }
.glow-one { width: 440px; height: 440px; background: rgba(65, 198, 183, .14); top: -220px; right: 24%; }
.glow-two { width: 260px; height: 260px; border: 1px solid rgba(15, 110, 114, .16); bottom: -130px; left: 35%; }
.hero-copy, .hero-panel { position: relative; z-index: 2; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 13px;
  border: 1px solid rgba(15, 110, 114, .18);
  border-radius: 999px;
  color: var(--teal);
  background: rgba(255, 255, 255, .58);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.global-line {
  margin: 24px 0 -12px;
  color: var(--teal);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .22em;
}
.status-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--teal-bright); box-shadow: 0 0 0 5px rgba(65,198,183,.12); }
h1 {
  max-width: 760px;
  margin: 28px 0 22px;
  font-size: clamp(48px, 5.4vw, 82px);
  line-height: 1.03;
  letter-spacing: -.055em;
}
h1 em { color: var(--teal); font-style: normal; }
.hero-lead {
  max-width: 660px;
  margin: 0;
  color: var(--ink-soft);
  font-size: 18px;
  line-height: 1.85;
}
.hero-actions { display: flex; gap: 12px; margin-top: 34px; }
.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 6px;
  padding: 0 22px;
  border: 1px solid var(--ink);
  cursor: pointer;
  text-decoration: none;
  font-weight: 700;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.button:hover { transform: translateY(-2px); box-shadow: 0 12px 30px rgba(14,43,47,.12); }
.button.primary { background: var(--ink); color: white; }
.button.secondary { background: transparent; color: var(--ink); }
.button.full { width: 100%; }
.trust-row {
  display: flex;
  gap: 28px;
  margin-top: 46px;
  color: var(--ink-soft);
  font-size: 12px;
}
.trust-row span { display: flex; align-items: center; gap: 8px; }
.trust-row b { color: var(--teal); font-size: 10px; }

.hero-panel {
  padding: 18px;
  border: 1px solid rgba(255,255,255,.8);
  border-radius: 18px;
  background: rgba(255,255,255,.76);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}
.panel-header { display: flex; justify-content: space-between; align-items: center; padding: 6px 4px 16px; }
.panel-kicker { font-size: 12px; color: var(--ink-soft); font-weight: 700; letter-spacing: .08em; }
.live-pill { display: flex; gap: 7px; align-items: center; font-size: 11px; color: var(--teal); }
.live-pill i { width: 7px; height: 7px; border-radius: 50%; background: var(--teal-bright); }
.journey-card { border-radius: 12px; padding: 30px; }
.journey-card + .journey-card { margin-top: 10px; }
.dark-card { color: white; background: var(--ink); }
.light-card { background: var(--mint); }
.journey-label { font-size: 11px; letter-spacing: .14em; opacity: .72; }
.journey-card h2 { margin: 20px 0 10px; font-size: 25px; }
.journey-card p { min-height: 52px; margin: 0; line-height: 1.6; opacity: .78; font-size: 14px; }
.journey-card a { display: flex; justify-content: space-between; margin-top: 24px; padding-top: 18px; border-top: 1px solid currentColor; text-decoration: none; font-size: 13px; opacity: .9; }

.risk-strip {
  display: grid;
  grid-template-columns: .3fr 1fr;
  gap: 28px;
  padding: 27px 7vw;
  color: white;
  background: var(--teal);
  align-items: center;
}
.risk-strip p { margin: 0; line-height: 1.6; }
.section { padding: 110px 7vw; }
.section-heading {
  display: grid;
  grid-template-columns: 70px minmax(0, 720px);
  gap: 20px;
  align-items: start;
  margin-bottom: 70px;
}
.section-index { color: var(--teal); font-size: 12px; font-weight: 700; letter-spacing: .12em; }
.eyebrow-text { margin: 0 0 14px; color: var(--teal); font-size: 12px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.section-heading h2, .visa-copy h2, .intake-intro h2, .source-section h2 {
  margin: 0;
  font-size: clamp(34px, 4vw, 56px);
  letter-spacing: -.045em;
  line-height: 1.13;
}
.pathway { max-width: 1180px; margin: 0 auto 130px; }
.pathway:last-child { margin-bottom: 0; }
.pathway-intro { max-width: 700px; margin-bottom: 52px; }
.pathway-feature {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: 6vw;
  align-items: center;
  margin-bottom: 66px;
}
.pathway-feature.image-left { grid-template-columns: 1.18fr .82fr; }
.pathway-feature .pathway-intro { margin-bottom: 0; }
.medical-image {
  min-width: 0;
  margin: 0;
  position: relative;
  overflow: hidden;
  background: var(--ink);
  box-shadow: 0 28px 70px rgba(14,43,47,.14);
}
.medical-image::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  border: 1px solid rgba(255,255,255,.42);
  pointer-events: none;
}
.medical-image img {
  width: 100%;
  aspect-ratio: 3 / 2;
  display: block;
  object-fit: cover;
  transition: transform .6s ease;
}
.medical-image:hover img { transform: scale(1.025); }
.medical-image figcaption {
  position: absolute;
  z-index: 2;
  left: 0;
  right: 0;
  bottom: 0;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 5px 24px;
  padding: 22px 24px;
  color: white;
  background: linear-gradient(0deg, rgba(14,43,47,.92), rgba(14,43,47,.1));
  font-size: 11px;
}
.medical-image figcaption > span:first-child {
  grid-row: 1 / 3;
  align-self: end;
  color: var(--teal-bright);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .14em;
}
.feature-meta {
  display: flex;
  gap: 22px;
  margin-top: 32px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}
.feature-meta > span { display: grid; gap: 5px; color: var(--ink-soft); font-size: 11px; }
.feature-meta b { color: var(--teal); font-size: 9px; letter-spacing: .08em; }
.warm-meta b { color: var(--warm); }
.route-tag {
  display: inline-flex;
  padding: 6px 9px;
  border-radius: 3px;
  color: var(--teal);
  background: var(--mint);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
}
.route-tag.warm { color: #9b452e; background: #f8e8df; }
.pathway-intro h3 { margin: 18px 0 12px; font-size: clamp(28px, 3vw, 42px); letter-spacing: -.035em; }
.pathway-intro p { margin: 0; color: var(--ink-soft); line-height: 1.8; }
.steps {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
}
.steps li { display: grid; grid-template-columns: 48px 1fr; gap: 16px; padding: 28px 22px 28px 0; border-bottom: 1px solid var(--line); }
.steps li:nth-child(odd) { border-right: 1px solid var(--line); padding-right: 36px; }
.steps li:nth-child(even) { padding-left: 36px; }
.steps li > span { color: var(--teal); font-size: 11px; font-weight: 700; }
.steps b { display: block; font-size: 17px; }
.steps p { margin: 7px 0 0; color: var(--ink-soft); font-size: 13px; line-height: 1.65; }
.warm-steps li > span { color: var(--warm); }
.legal-route-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 42px; }
.legal-route-grid article { min-height: 230px; padding: 26px; border: 1px solid var(--line); background: #fff; }
.route-status { width: 29px; height: 29px; display: grid; place-items: center; border-radius: 50%; color: white; font-size: 11px; font-weight: 700; }
.route-status.green { background: var(--teal); }
.route-status.amber { background: #cb8a2d; }
.route-status.blue { background: #5578a8; }
.legal-route-grid h4 { margin: 34px 0 10px; font-size: 18px; }
.legal-route-grid p { color: var(--ink-soft); font-size: 13px; line-height: 1.7; }

.diagnostic-trip {
  background: #fff;
  border-top: 1px solid var(--line);
}
.diagnostic-layout {
  max-width: 1180px;
  margin: auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, .48fr);
  gap: 48px;
  align-items: start;
}
.diagnostic-main {
  min-width: 0;
}
.diagnostic-main h3 {
  max-width: 760px;
  margin: 22px 0 16px;
  font-family: "Newsreader", Georgia, "Noto Sans SC", serif;
  font-size: clamp(30px, 3.1vw, 44px);
  font-weight: 400;
  line-height: 1.12;
  letter-spacing: -.035em;
}
body:not(.lang-mode-en) .diagnostic-main h3 {
  font-family: "Noto Sans SC", sans-serif;
  font-weight: 600;
  letter-spacing: -.045em;
}
.diagnostic-main > p {
  max-width: 760px;
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.82;
}
.audience-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin-top: 42px;
  border: 1px solid var(--line);
}
.audience-grid article {
  min-height: 260px;
  display: flex;
  flex-direction: column;
  padding: 28px;
  border-right: 1px solid var(--line);
  background: #fbfaf7;
}
.audience-grid article:last-child { border-right: 0; }
.audience-grid span {
  color: var(--warm);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .12em;
}
.audience-grid h4 {
  margin: 50px 0 12px;
  font-size: 18px;
  line-height: 1.35;
}
.audience-grid p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 13px;
  line-height: 1.7;
}
.package-card {
  padding: 30px;
  color: white;
  background: #0b2135;
  box-shadow: 0 28px 70px rgba(16,42,67,.18);
}
.package-price {
  display: grid;
  gap: 12px;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(255,255,255,.18);
}
.package-price span {
  color: var(--teal-bright);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.package-price strong {
  font-family: "Newsreader", Georgia, "Noto Sans SC", serif;
  font-size: 38px;
  font-weight: 400;
  letter-spacing: -.035em;
}
body:not(.lang-mode-en) .package-price strong {
  font-family: "Noto Sans SC", sans-serif;
  font-weight: 600;
}
.package-timeline {
  list-style: none;
  display: grid;
  gap: 0;
  margin: 18px 0 0;
  padding: 0;
}
.package-timeline li {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 15px;
  padding: 17px 0;
  border-bottom: 1px solid rgba(255,255,255,.14);
}
.package-timeline span {
  color: var(--teal-bright);
  font-size: 10px;
  font-weight: 800;
}
.package-timeline p {
  margin: 0;
  color: rgba(255,255,255,.76);
  font-size: 12px;
  line-height: 1.55;
}
.fee-note {
  margin: 24px 0;
  padding: 18px;
  color: var(--ink);
  background: #e7f3f0;
}
.fee-note b {
  display: block;
  margin-bottom: 7px;
  font-size: 13px;
}
.fee-note p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 12px;
  line-height: 1.65;
}
.package-card .primary {
  color: var(--ink);
  background: var(--teal-bright);
  border-color: var(--teal-bright);
}

.compliance-section { background: var(--cream); }
.do-dont-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; max-width: 1180px; margin: 0 auto 60px; }
.do-dont-grid article { padding: 42px; border-radius: 10px; }
.do-card { background: var(--ink); color: white; }
.dont-card { background: #f2ddd5; }
.card-title { display: flex; align-items: center; gap: 12px; border-bottom: 1px solid currentColor; padding-bottom: 22px; }
.card-title > span { width: 30px; height: 30px; display: grid; place-items: center; border-radius: 50%; background: var(--teal-bright); color: var(--ink); font-weight: 700; }
.dont-card .card-title > span { background: var(--warm); color: white; }
.card-title h3 { margin: 0; font-size: 23px; }
.do-dont-grid ul { margin: 24px 0 0; padding-left: 20px; }
.do-dont-grid li { margin: 14px 0; line-height: 1.6; font-size: 14px; }
.compliance-matrix { max-width: 1180px; margin: auto; border-top: 1px solid var(--line); }
.matrix-head, .compliance-matrix > div {
  display: grid;
  grid-template-columns: .7fr 1.1fr 1.2fr;
  gap: 24px;
  padding: 20px 16px;
  border-bottom: 1px solid var(--line);
  align-items: start;
}
.matrix-head { color: var(--teal); font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.compliance-matrix b { font-size: 14px; }
.compliance-matrix p { margin: 0; color: var(--ink-soft); font-size: 13px; line-height: 1.6; }

.visa-section {
  display: grid;
  grid-template-columns: 1fr minmax(350px, .72fr);
  gap: 8vw;
  align-items: center;
  color: white;
  background: var(--ink);
}
.visa-copy p { color: rgba(255,255,255,.72); line-height: 1.8; }
.visa-copy h2 { margin: 24px 0; }
.visa-example { display: grid; grid-template-columns: 24px 1fr; gap: 10px; margin: 28px 0; align-items: center; }
.visa-example code { font-size: 14px; }
.visa-example .good { color: var(--teal-bright); }
.visa-example .bad { color: #f39a7d; }
.fine-print { font-size: 12px; }
.visa-checker { padding: 36px; border: 1px solid rgba(255,255,255,.18); border-radius: 12px; background: rgba(255,255,255,.07); }
.checker-label { margin: 0 0 22px; font-size: 18px; font-weight: 700; }
.visa-checker label, .intake-form label { display: grid; gap: 8px; margin-bottom: 16px; font-size: 12px; font-weight: 600; }
.visa-checker input, .visa-checker select {
  width: 100%; height: 48px; border: 1px solid rgba(255,255,255,.2); border-radius: 5px; padding: 0 13px; color: white; background: rgba(255,255,255,.08); outline: none;
}
.visa-checker select option { color: var(--ink); }
.visa-checker .primary { color: var(--ink); background: var(--teal-bright); border-color: var(--teal-bright); }
.checker-result { min-height: 58px; display: flex; gap: 12px; margin-top: 16px; padding: 14px; background: rgba(255,255,255,.08); font-size: 12px; line-height: 1.5; }
.checker-result span { flex: 0 0 22px; width: 22px; height: 22px; display: grid; place-items: center; border: 1px solid currentColor; border-radius: 50%; }
.checker-result p { margin: 0; }
.checker-result.success { color: #a8f0df; }
.checker-result.warning { color: #ffc6b3; }

.business-section { background: #fff; }
.offer-grid { display: grid; grid-template-columns: repeat(4, 1fr); max-width: 1180px; margin: auto; border: 1px solid var(--line); }
.offer-grid article { min-height: 330px; padding: 30px; border-right: 1px solid var(--line); display: flex; flex-direction: column; }
.offer-grid article:last-child { border-right: 0; }
.offer-grid article > span { color: var(--teal); font-size: 11px; }
.offer-grid h3 { margin: 52px 0 12px; font-size: 20px; }
.offer-grid p { color: var(--ink-soft); font-size: 13px; line-height: 1.7; }
.offer-grid b { margin-top: auto; padding-top: 22px; border-top: 1px solid var(--line); font-size: 12px; color: var(--teal); }

.intake-section { display: grid; grid-template-columns: .72fr 1.28fr; gap: 7vw; background: var(--cream); }
.intake-intro { position: sticky; top: 125px; align-self: start; }
.intake-intro h2 { margin: 18px 0 24px; }
.intake-intro > p:not(.eyebrow-text) { color: var(--ink-soft); line-height: 1.8; }
.privacy-pill { display: inline-flex; align-items: center; gap: 9px; margin-top: 15px; padding: 9px 12px; background: var(--mint); color: var(--teal); font-size: 11px; font-weight: 700; }
.intake-form { padding: 40px; background: white; border: 1px solid var(--line); box-shadow: 0 20px 60px rgba(14,43,47,.06); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5px 18px; }
.form-grid .wide { grid-column: 1 / -1; }
.intake-form input:not([type="checkbox"]), .intake-form select, .intake-form textarea {
  width: 100%; border: 1px solid var(--line); border-radius: 4px; padding: 12px 13px; color: var(--ink); background: #fff; outline: none;
}
.intake-form input:not([type="checkbox"]), .intake-form select { height: 48px; }
.intake-form input:focus, .intake-form select:focus, .intake-form textarea:focus { border-color: var(--teal); box-shadow: 0 0 0 3px rgba(15,110,114,.08); }
.checkbox-label { grid-template-columns: 18px 1fr !important; align-items: start; font-weight: 400 !important; line-height: 1.6; margin-top: 10px; }
.checkbox-label input { margin-top: 3px; accent-color: var(--teal); }
.submit-button { width: 100%; margin-top: 10px; }
.brief-output { grid-column: 2; padding: 34px; background: var(--ink); color: white; }
.brief-header { display: flex; justify-content: space-between; align-items: start; }
.brief-header h3 { margin: 14px 0 0; font-size: 24px; }
.brief-header > span { font-size: 11px; color: var(--teal-bright); }
.brief-output pre { margin: 28px 0; padding: 22px; background: rgba(255,255,255,.07); white-space: pre-wrap; line-height: 1.65; font-family: inherit; font-size: 13px; }
.brief-actions { display: flex; gap: 10px; }
.brief-output .primary { background: var(--teal-bright); color: var(--ink); border-color: var(--teal-bright); }
.brief-output .secondary { color: white; border-color: rgba(255,255,255,.4); }

.faq-section { background: white; }
.faq-list { max-width: 980px; margin: auto; border-top: 1px solid var(--line); }
details { border-bottom: 1px solid var(--line); padding: 25px 0; }
summary { cursor: pointer; font-size: 18px; font-weight: 600; list-style: none; }
summary::after { content: "+"; float: right; color: var(--teal); }
details[open] summary::after { content: "–"; }
details p { max-width: 800px; color: var(--ink-soft); line-height: 1.8; font-size: 14px; }

.source-section { padding: 90px 7vw; color: white; background: var(--teal); display: grid; grid-template-columns: .8fr 1.2fr; gap: 7vw; }
.source-section .eyebrow-text { color: var(--mint); }
.sources { display: grid; }
.sources a { display: flex; justify-content: space-between; padding: 18px 0; border-bottom: 1px solid rgba(255,255,255,.25); text-decoration: none; font-size: 14px; }
.source-note { grid-column: 1 / -1; margin: 30px 0 0; font-size: 11px; color: rgba(255,255,255,.66); }
footer { min-height: 170px; padding: 45px 7vw; display: grid; grid-template-columns: 1fr 1fr auto; gap: 25px; align-items: center; color: var(--ink-soft); font-size: 11px; }
.footer-brand { color: var(--ink); }

@media (max-width: 1000px) {
  .top-notice { grid-template-columns: 1fr; gap: 3px; }
  .notice-locations { display: none; }
  nav { display: none; }
  .hero { grid-template-columns: 1fr; padding-top: 80px; }
  .hero-panel { max-width: 620px; }
  .pathway-feature, .pathway-feature.image-left { grid-template-columns: 1fr; gap: 38px; }
  .pathway-feature.image-left .medical-image { order: 2; }
  .legal-route-grid, .offer-grid { grid-template-columns: 1fr 1fr; }
  .diagnostic-layout { grid-template-columns: 1fr; }
  .package-card { max-width: 620px; }
  .offer-grid article { border-bottom: 1px solid var(--line); }
  .visa-section, .intake-section, .source-section { grid-template-columns: 1fr; }
  .intake-intro { position: static; }
  .brief-output { grid-column: 1; }
  footer { grid-template-columns: 1fr; }
}

@media (max-width: 680px) {
  .site-header { height: 66px; }
  .hero { padding: 70px 6vw; min-height: auto; }
  .hero-photo { background-position: 66% center; opacity: .2; }
  h1 { font-size: 45px; }
  .hero-lead { font-size: 16px; }
  .hero-actions, .trust-row { flex-direction: column; align-items: stretch; }
  .risk-strip { grid-template-columns: 1fr; }
  .section { padding: 78px 6vw; }
  .section-heading { grid-template-columns: 1fr; margin-bottom: 45px; }
  .steps, .legal-route-grid, .do-dont-grid, .offer-grid, .form-grid, .audience-grid { grid-template-columns: 1fr; }
  .audience-grid article { min-height: 220px; border-right: 0; border-bottom: 1px solid var(--line); }
  .audience-grid article:last-child { border-bottom: 0; }
  .audience-grid h4 { margin-top: 34px; }
  .package-card { padding: 24px; }
  .feature-meta { flex-wrap: wrap; }
  .medical-image figcaption { position: static; grid-template-columns: 1fr; background: var(--ink); }
  .medical-image figcaption > span:first-child { grid-row: auto; }
  .steps li:nth-child(odd), .steps li:nth-child(even) { border-right: 0; padding: 24px 0; }
  .do-dont-grid article, .intake-form, .visa-checker { padding: 26px; }
  .matrix-head { display: none; }
  .compliance-matrix > div { grid-template-columns: 1fr; gap: 8px; }
  .offer-grid article { min-height: 260px; border-right: 0; }
  .form-grid .wide { grid-column: 1; }
  .source-section { padding: 72px 6vw; }
}

/* North American editorial healthcare redesign */
:root {
  --ink: #102a43;
  --ink-soft: #52687a;
  --navy: #102a43;
  --teal: #176b72;
  --teal-bright: #65c6ba;
  --mint: #e7f3f0;
  --cream: #f5f3ee;
  --white: #ffffff;
  --warm: #b9654a;
  --line: rgba(16, 42, 67, 0.14);
  --shadow: 0 28px 80px rgba(16, 42, 67, 0.14);
}

body { background: #fbfaf7; }
.top-notice {
  min-height: 32px;
  background: #0b2135;
}
.notice-locations { color: var(--teal-bright); }

.site-header {
  min-height: 86px;
  height: auto;
  padding: 0 5vw;
  background: rgba(255,255,255,.96);
}
.header-inner {
  width: min(100%, 1360px);
  min-height: 86px;
  margin: auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 48px;
}
.brand { font-size: 19px; }
.brand-mark {
  width: 39px;
  height: 39px;
  border-radius: 4px 17px 17px 17px;
}
.brand-copy { display: grid; gap: 3px; }
.brand-copy b { line-height: 1; }
.brand-copy small {
  color: #718297;
  font-size: 7px;
  letter-spacing: .19em;
}
nav { justify-content: center; gap: 34px; }
nav a { color: #455d70; font-size: 13px; }
.header-actions { display: flex; align-items: center; gap: 12px; }
.language-toggle {
  min-width: 42px;
  height: 42px;
  padding: 0 11px;
}
.header-cta {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 0 18px;
  color: white;
  background: var(--navy);
  text-decoration: none;
  font-size: 12px;
  font-weight: 700;
}
.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid var(--line);
  background: white;
}
.menu-toggle span {
  width: 18px;
  height: 1px;
  display: block;
  margin: 5px auto;
  background: var(--ink);
  transition: transform .2s ease;
}

.hero {
  min-height: 740px;
  padding: 96px max(7vw, calc((100vw - 1360px) / 2)) 90px;
  grid-template-columns: minmax(0, .95fr) minmax(460px, 1.05fr);
  gap: clamp(50px, 6vw, 100px);
  background: #f7f5f0;
}
.hero-photo {
  top: 0;
  right: 0;
  bottom: 0;
  left: auto;
  width: 54%;
  background-position: 59% center;
  opacity: 1;
}
.hero-photo-overlay {
  background: linear-gradient(90deg, #f7f5f0 0%, #f7f5f0 43%, rgba(247,245,240,.62) 55%, rgba(247,245,240,.03) 74%);
}
.hero-glow { display: none; }
.hero-copy, .hero-image-card { position: relative; z-index: 2; }
.global-line {
  margin: 0 0 28px;
  color: var(--teal);
  font-size: 10px;
  letter-spacing: .22em;
}
h1 {
  max-width: 760px;
  margin: 0 0 28px;
  font-family: "Newsreader", Georgia, "Times New Roman", "Noto Sans SC", serif;
  font-size: clamp(56px, 5.5vw, 86px);
  font-weight: 400;
  line-height: .98;
  letter-spacing: -.045em;
}
h1 em { color: var(--teal); font-style: italic; font-weight: 400; }
body:not(.lang-mode-en) h1 {
  font-family: "Noto Sans SC", sans-serif;
  font-size: clamp(46px, 4.35vw, 64px);
  font-weight: 600;
  line-height: 1.16;
  letter-spacing: -.06em;
}
body:not(.lang-mode-en) h1 em { font-style: normal; }
.hero-lead {
  max-width: 590px;
  color: #52687a;
  font-size: 17px;
  line-height: 1.75;
}
.hero-actions { align-items: center; gap: 26px; margin-top: 36px; }
.button { border-radius: 2px; padding: 0 24px; }
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  color: var(--ink);
  border-bottom: 1px solid var(--ink);
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
}
.trust-row { margin-top: 44px; }
.trust-row span { gap: 7px; }
.trust-row i {
  width: 18px;
  height: 18px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--teal);
  background: var(--mint);
  font-size: 10px;
  font-style: normal;
}
.hero-image-card { min-height: 500px; align-self: stretch; }
.image-badge {
  position: absolute;
  top: 12px;
  right: 0;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 11px 14px;
  color: var(--ink);
  background: rgba(255,255,255,.94);
  box-shadow: 0 14px 40px rgba(16,42,67,.12);
  font-size: 10px;
  font-weight: 700;
}
.badge-pulse {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--teal-bright);
  box-shadow: 0 0 0 5px rgba(101,198,186,.18);
}
.image-caption {
  position: absolute;
  right: 0;
  bottom: 12px;
  width: min(390px, 88%);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  padding: 25px;
  color: white;
  background: rgba(11,33,53,.94);
}
.caption-number { color: var(--teal-bright); font-size: 10px; }
.image-caption p { display: grid; gap: 7px; margin: 0; }
.image-caption b {
  font-family: "Newsreader", Georgia, serif;
  font-size: 20px;
  font-weight: 500;
}
.image-caption small {
  color: rgba(255,255,255,.68);
  font-size: 11px;
  line-height: 1.5;
}

.agent-hero {
  --agent-bg-deep: #07111f;
  --agent-bg-mid: #0d2230;
  --agent-surface: rgba(13, 34, 48, .78);
  --agent-surface-strong: rgba(7, 22, 34, .76);
  --agent-aqua: #7af2e2;
  --agent-mint: #a9dfcd;
  --agent-blue: #8ec5ff;
  --agent-violet: #9b8cff;
  --agent-text: #f2f8fb;
  --agent-muted: #b8ccd2;
  --agent-muted-zh: #d6e8e4;
  position: relative;
  min-height: calc(100vh - 112px);
  padding: 84px max(6vw, calc((100vw - 1360px) / 2)) 70px;
  overflow: hidden;
  color: var(--agent-text);
  background:
    radial-gradient(circle at 72% 10%, rgba(122, 242, 226, .14), transparent 35%),
    radial-gradient(circle at 19% 82%, rgba(155, 140, 255, .12), transparent 30%),
    radial-gradient(circle at 48% 58%, rgba(169, 223, 205, .08), transparent 42%),
    linear-gradient(135deg, #07111f 0%, #0d2230 48%, #09121f 100%);
}
.agent-aurora,
.agent-grid,
.agent-motion-canvas,
.agent-map {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.agent-motion-canvas {
  z-index: 1;
  width: 100%;
  height: 100%;
  opacity: .76;
  mix-blend-mode: screen;
}
.agent-aurora {
  z-index: 0;
  opacity: .64;
  background:
    radial-gradient(520px 360px at 66% 20%, rgba(122, 242, 226, .15), transparent 62%),
    radial-gradient(420px 260px at 53% 62%, rgba(169, 223, 205, .10), transparent 68%),
    radial-gradient(430px 320px at 25% 70%, rgba(155, 140, 255, .10), transparent 64%);
  filter: blur(.3px);
  animation: auroraDrift 16s ease-in-out infinite alternate;
}
.agent-grid {
  z-index: 0;
  opacity: .26;
  background-image:
    linear-gradient(rgba(169, 223, 205, .11) 1px, transparent 1px),
    linear-gradient(90deg, rgba(142, 197, 255, .08) 1px, transparent 1px);
  background-size: 96px 96px;
  mask-image: radial-gradient(circle at 50% 48%, #000 0%, rgba(0,0,0,.72) 40%, transparent 76%);
  animation: gridScan 18s linear infinite;
}
.agent-map {
  z-index: 1;
  width: min(760px, 56vw);
  height: 420px;
  left: 50%;
  top: 88px;
  transform: translateX(-14%);
  opacity: .82;
}
.agent-route-svg {
  width: 100%;
  height: 100%;
  overflow: visible;
  filter: drop-shadow(0 0 14px rgba(122, 242, 226, .18));
}
.route-line {
  fill: none;
  stroke: rgba(122, 242, 226, .22);
  stroke-width: 1.2;
  stroke-dasharray: 9 18;
  animation: routeFlow 8s linear infinite;
}
.route-line-two { animation-duration: 10s; opacity: .72; }
.route-line-three { animation-duration: 7s; opacity: .55; }
.route-particle {
  position: absolute;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--agent-aqua);
  box-shadow: 0 0 18px rgba(122, 242, 226, .76), 0 0 40px rgba(169, 223, 205, .30);
  opacity: .9;
}
.particle-one { left: 27%; top: 25%; animation: particleOne 7.5s ease-in-out infinite; }
.particle-two { left: 51%; top: 52%; animation: particleTwo 9s ease-in-out infinite 1s; }
.particle-three { left: 74%; top: 42%; animation: particleThree 8.5s ease-in-out infinite 1.8s; }
.city-spot {
  position: absolute;
  display: grid;
  justify-items: center;
  gap: 8px;
  color: rgba(232, 244, 242, .9);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0;
  transform: translate(-50%, -50%);
}
.city-spot::before,
.city-spot::after {
  content: "";
  position: absolute;
  top: 2px;
  left: 50%;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(122, 242, 226, .34);
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(.35);
  opacity: 0;
  animation: spotPulse 3.7s ease-out infinite;
}
.city-spot::after {
  animation-delay: 1.2s;
}
.city-spot span {
  position: relative;
  padding-top: 15px;
  text-shadow: 0 0 18px rgba(122, 242, 226, .38);
}
.city-spot span::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--agent-aqua);
  box-shadow: 0 0 0 5px rgba(122, 242, 226, .10), 0 0 24px rgba(122, 242, 226, .62);
  transform: translateX(-50%);
  animation: spotGlow 3.2s ease-in-out infinite;
}
.beijing { left: 28%; top: 24%; }
.shanghai { left: 86%; top: 42%; }
.guangzhou { left: 54%; top: 66%; }
.chengdu { left: 40%; top: 56%; }
.agent-shell {
  position: relative;
  z-index: 2;
  max-width: 1160px;
  margin: 0 auto;
  text-align: center;
}
.agent-brand-line {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--agent-mint);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.agent-live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--agent-mint);
  box-shadow: 0 0 0 7px rgba(169, 223, 205, .1), 0 0 24px rgba(169, 223, 205, .58);
  animation: liveDot 2.8s ease-in-out infinite;
}
.agent-hero h1 {
  max-width: none;
  margin: 0;
  font-family: "Newsreader", Georgia, "Times New Roman", "Noto Sans SC", serif;
  font-size: clamp(58px, 7vw, 98px);
  font-weight: 400;
  line-height: .96;
  letter-spacing: -.045em;
  color: var(--agent-text);
}
.agent-lead {
  max-width: 860px;
  margin: 0 auto;
  color: var(--agent-muted);
  font-size: 15px;
  line-height: 1.6;
}
.agent-lead span { display: block; }
.agent-console {
  position: relative;
  max-width: 920px;
  margin: 34px auto 0;
  padding: 28px;
  border: 1px solid rgba(142, 197, 255, .26);
  border-radius: 8px;
  background: linear-gradient(145deg, rgba(13, 34, 48, .84), rgba(7, 22, 34, .60));
  box-shadow: 0 0 0 1px rgba(255,255,255,.04) inset, 0 24px 90px rgba(122, 242, 226, .08);
  backdrop-filter: blur(24px);
  animation: consoleBreath 5s ease-in-out infinite;
}
.agent-console::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background: linear-gradient(90deg, transparent, rgba(122, 242, 226, .24), transparent);
  opacity: .36;
  transform: translateX(-56%);
  animation: consoleSweep 7s ease-in-out infinite;
  pointer-events: none;
}
.agent-input-row {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 60px;
  gap: 16px;
  align-items: stretch;
}
.agent-input-row textarea {
  min-height: 92px;
  width: 100%;
  resize: vertical;
  padding: 27px 28px;
  color: #edf8fb;
  border: 1px solid rgba(142, 197, 255, .32);
  border-radius: 8px;
  outline: none;
  background: rgba(6, 20, 31, .74);
  font-size: 17px;
  line-height: 1.45;
}
.agent-input-row textarea:focus {
  border-color: rgba(122, 242, 226, .62);
  box-shadow: 0 0 0 4px rgba(122, 242, 226, .07);
}
.agent-input-row textarea::placeholder { color: rgba(220, 236, 235, .78); }
.agent-submit {
  align-self: center;
  width: 60px;
  height: 60px;
  border: 0;
  border-radius: 8px;
  color: #02111f;
  background: linear-gradient(135deg, var(--agent-aqua), var(--agent-blue));
  cursor: pointer;
  font-size: 30px;
  box-shadow: 0 18px 45px rgba(122, 242, 226, .16);
  transition: transform .2s ease, box-shadow .2s ease;
}
.agent-submit:hover { transform: translateY(-2px); box-shadow: 0 24px 54px rgba(122, 242, 226, .22); }
.agent-tools {
  display: flex;
  gap: 12px;
  margin-top: 18px;
  justify-content: center;
}
.agent-tool {
  min-width: 128px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: #e9f7f5;
  border: 1px solid rgba(142, 197, 255, .25);
  border-radius: 999px;
  background: rgba(13, 34, 48, .80);
  cursor: pointer;
  font-size: 13px;
  font-weight: 700;
}
.agent-tool.active {
  color: #07121b;
  border-color: transparent;
  background: var(--agent-mint);
}
.tool-dot,
.voice-wave,
.image-chip {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  border: 1px solid currentColor;
}
.voice-wave {
  border: 0;
  background: radial-gradient(circle, currentColor 18%, transparent 20%), linear-gradient(90deg, currentColor 0 3px, transparent 3px 7px, currentColor 7px 10px, transparent 10px);
}
.image-chip { border-radius: 4px; }
.agent-chips {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  margin: 22px auto 0;
}
.agent-chips button {
  height: 38px;
  min-width: 118px;
  padding: 0 20px;
  color: #bfd2d4;
  border: 1px solid rgba(142, 197, 255, .24);
  border-radius: 999px;
  background: rgba(10, 27, 40, .74);
  cursor: pointer;
  font-size: 12px;
  font-weight: 700;
}
.agent-chips button.selected,
.agent-chips button:hover {
  color: #f3fffd;
  border-color: rgba(122, 242, 226, .62);
  background: rgba(18, 48, 62, .82);
}
.agent-disclaimer {
  margin: 18px auto 0;
  color: #93a9ac;
  font-family: "DM Sans", "Noto Sans SC", system-ui, sans-serif;
  font-size: 12px;
}
.agent-result-panel {
  max-width: 1064px;
  margin: 44px auto 0;
  padding: 26px 18px 18px;
  border: 1px solid rgba(142, 197, 255, .22);
  border-radius: 8px;
  background: rgba(8, 24, 36, .64);
  text-align: left;
  backdrop-filter: blur(18px);
}
.agent-result-copy span {
  display: inline-flex;
  color: var(--agent-aqua);
  font-size: 13px;
  font-weight: 800;
}
.agent-result-copy span::before {
  content: "";
  width: 64px;
  height: 4px;
  margin: 7px 14px 0 0;
  border-radius: 999px;
  background: var(--agent-aqua);
}
.agent-result-copy p {
  max-width: 780px;
  margin: 13px 0 0;
  color: #aebfc2;
  font-size: 12px;
  line-height: 1.55;
}
.agent-city-results {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 22px;
}
.agent-city-results article {
  min-height: 136px;
  padding: 22px;
  border: 1px solid rgba(142, 197, 255, .22);
  border-radius: 8px;
  background: rgba(13, 34, 48, .78);
  box-shadow: 0 16px 42px rgba(122, 242, 226, .05);
}
.agent-city-results i {
  width: 13px;
  height: 13px;
  display: block;
  margin-bottom: 12px;
  border-radius: 50%;
  background: var(--agent-mint);
  box-shadow: 0 0 20px rgba(169, 223, 205, .42);
}
.agent-city-results h2 {
  margin: 0 0 12px;
  color: #f2f8fb;
  font-family: "DM Sans", "Noto Sans SC", system-ui, sans-serif;
  font-size: 21px;
  line-height: 1;
  letter-spacing: 0;
}
.agent-city-results p {
  margin: 0;
  color: #c6d8d8;
  font-size: 12px;
  line-height: 1.45;
}

@keyframes auroraDrift {
  0% { transform: translate3d(-1.5%, -1%, 0) scale(1); }
  100% { transform: translate3d(1.2%, 1.8%, 0) scale(1.03); }
}
@keyframes gridScan {
  0% { background-position: 0 0, 0 0; }
  100% { background-position: 96px 192px, 96px 192px; }
}
@keyframes routeFlow {
  to { stroke-dashoffset: -108; }
}
@keyframes spotPulse {
  0% { opacity: 0; transform: translate(-50%, -50%) scale(.35); }
  20% { opacity: .62; }
  100% { opacity: 0; transform: translate(-50%, -50%) scale(1.55); }
}
@keyframes spotGlow {
  0%, 100% { transform: translateX(-50%) scale(.88); opacity: .76; }
  50% { transform: translateX(-50%) scale(1.14); opacity: 1; }
}
@keyframes liveDot {
  0%, 100% { transform: scale(.9); opacity: .72; }
  50% { transform: scale(1.16); opacity: 1; }
}
@keyframes consoleBreath {
  0%, 100% { box-shadow: 0 0 0 1px rgba(255,255,255,.04) inset, 0 24px 90px rgba(122, 242, 226, .08); }
  50% { box-shadow: 0 0 0 1px rgba(255,255,255,.07) inset, 0 28px 112px rgba(169, 223, 205, .13); }
}
@keyframes consoleSweep {
  0%, 60%, 100% { transform: translateX(-58%); opacity: .05; }
  72% { transform: translateX(58%); opacity: .36; }
}
@keyframes particleOne {
  0%, 100% { transform: translate(0, 0); opacity: .25; }
  45% { transform: translate(235px, 58px); opacity: 1; }
  72% { transform: translate(372px, 75px); opacity: .65; }
}
@keyframes particleTwo {
  0%, 100% { transform: translate(0, 0); opacity: .18; }
  48% { transform: translate(176px, -84px); opacity: .9; }
  82% { transform: translate(250px, -56px); opacity: .45; }
}
@keyframes particleThree {
  0%, 100% { transform: translate(0, 0); opacity: .2; }
  52% { transform: translate(-188px, 82px); opacity: 1; }
  80% { transform: translate(-296px, 118px); opacity: .42; }
}

@media (prefers-reduced-motion: reduce) {
  .agent-aurora,
  .agent-grid,
  .route-line,
  .route-particle,
  .city-spot::before,
  .city-spot::after,
  .city-spot span::before,
  .agent-live-dot,
  .agent-console,
  .agent-console::before {
    animation: none !important;
  }
}

@media (max-width: 1000px) {
  .agent-hero {
    min-height: auto;
    padding: 72px 5vw 58px;
  }
  .agent-map {
    width: 760px;
    max-width: none;
    left: 48%;
    top: 130px;
    opacity: .46;
  }
  .agent-hero h1 {
    font-size: clamp(54px, 9vw, 84px);
  }
  .agent-console { max-width: 860px; }
  .agent-city-results { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 680px) {
  .agent-hero {
    padding: 54px 18px 44px;
  }
  .agent-map {
    width: 620px;
    left: 44%;
    top: 116px;
    opacity: .38;
  }
  .agent-brand-line {
    font-size: 10px;
  }
  .agent-hero h1 {
    font-size: 43px;
    line-height: 1.02;
  }
  .agent-lead {
    font-size: 14px;
  }
  .agent-lead > span {
    display: none;
  }
  .agent-console {
    margin-top: 26px;
    padding: 18px;
  }
  .agent-input-row {
    grid-template-columns: 1fr;
  }
  .agent-submit {
    width: 100%;
    height: 52px;
  }
  .agent-tools,
  .agent-chips {
    justify-content: flex-start;
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 4px;
  }
  .agent-tool,
  .agent-chips button {
    flex: 0 0 auto;
  }
  .agent-result-panel {
    margin-top: 32px;
    padding: 22px 16px 16px;
  }
  .agent-result-copy span::before {
    width: 34px;
  }
  .agent-city-results {
    grid-template-columns: 1fr;
  }
}

.care-standard {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 0 max(7vw, calc((100vw - 1360px) / 2));
  background: white;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.care-standard > div {
  min-height: 136px;
  display: grid;
  grid-template-columns: 26px 1fr;
  gap: 16px;
  align-items: center;
  padding: 25px 28px;
  border-right: 1px solid var(--line);
}
.care-standard > div:first-child { border-left: 1px solid var(--line); }
.care-standard span { color: var(--teal); font-size: 9px; font-weight: 700; }
.care-standard p { display: grid; gap: 6px; margin: 0; }
.care-standard b { font-size: 14px; }
.care-standard small { color: var(--ink-soft); font-size: 11px; line-height: 1.45; }

.risk-strip {
  max-width: 1180px;
  grid-template-columns: auto 1fr auto;
  gap: 24px;
  margin: 70px auto 0;
  padding: 25px 28px;
  color: var(--ink);
  background: #edf4f3;
  border-left: 3px solid var(--teal);
}
.risk-icon {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border: 1px solid var(--teal);
  border-radius: 50%;
  color: var(--teal);
  font-weight: 700;
}
.risk-strip strong { display: block; margin-bottom: 5px; font-size: 13px; }
.risk-strip p { color: var(--ink-soft); font-size: 12px; }
.risk-strip a {
  display: inline-flex;
  gap: 16px;
  color: var(--ink);
  white-space: nowrap;
  text-decoration: none;
  font-size: 11px;
  font-weight: 700;
}

.section-heading h2, .visa-copy h2, .intake-intro h2, .source-section h2 {
  font-family: "Newsreader", Georgia, "Noto Sans SC", serif;
  font-size: clamp(40px, 4.4vw, 62px);
  font-weight: 400;
}
body:not(.lang-mode-en) .section-heading h2,
body:not(.lang-mode-en) .visa-copy h2,
body:not(.lang-mode-en) .intake-intro h2,
body:not(.lang-mode-en) .source-section h2 {
  font-family: "Noto Sans SC", sans-serif;
  font-size: clamp(34px, 3.9vw, 54px);
  font-weight: 600;
}
.medical-image { box-shadow: 0 28px 70px rgba(16,42,67,.14); }
.compliance-section { background: #f2f0eb; }
.do-dont-grid article, .visa-checker { border-radius: 2px; }
.source-section { background: #174d59; }

@media (max-width: 1000px) {
  .site-header, .header-inner { min-height: 74px; }
  .header-inner { grid-template-columns: auto auto; justify-content: space-between; gap: 18px; }
  .header-actions { justify-self: end; }
  .header-cta { display: none; }
  .menu-toggle { display: block; }
  nav {
    position: absolute;
    top: 74px;
    left: 0;
    right: 0;
    display: none;
    padding: 14px 5vw 26px;
    background: white;
    border-bottom: 1px solid var(--line);
    box-shadow: 0 22px 40px rgba(16,42,67,.1);
  }
  nav a { display: block; padding: 14px 0; border-bottom: 1px solid var(--line); }
  body.nav-open nav { display: block; }
  body.nav-open .menu-toggle span:first-child { transform: translateY(3px) rotate(45deg); }
  body.nav-open .menu-toggle span:last-child { transform: translateY(-3px) rotate(-45deg); }
  .hero { grid-template-columns: 1fr; min-height: 820px; padding-top: 72px; }
  .hero-photo { width: 100%; top: 48%; background-position: 54% center; }
  .hero-photo-overlay { background: linear-gradient(180deg, #f7f5f0 0%, #f7f5f0 47%, rgba(247,245,240,.35) 68%, rgba(247,245,240,0) 100%); }
  .hero-image-card { min-height: 280px; }
  .care-standard { grid-template-columns: 1fr 1fr; }
  .care-standard > div:nth-child(odd) { border-left: 1px solid var(--line); }
  .risk-strip { margin: 50px 5vw 0; }
}

@media (max-width: 680px) {
  .top-notice { padding-inline: 18px; }
  .site-header { padding: 0 18px; }
  .brand-copy small { display: none; }
  .language-toggle { min-width: 39px; height: 39px; }
  .menu-toggle { width: 39px; height: 39px; }
  .hero { min-height: 850px; padding: 62px 24px 40px; }
  .hero-photo { top: 52%; width: 100%; opacity: 1; background-position: 58% center; }
  .hero-photo-overlay { background: linear-gradient(180deg, #f7f5f0 0%, #f7f5f0 50%, rgba(247,245,240,.2) 72%, rgba(247,245,240,0) 100%); }
  h1, body:not(.lang-mode-en) h1 { font-size: 43px; }
  .hero-lead { font-size: 15px; }
  .hero-actions { align-items: flex-start; }
  .text-link { width: max-content; }
  .trust-row { gap: 15px; }
  .hero-image-card { min-height: 260px; }
  .image-badge { top: 28px; }
  .image-caption { bottom: 0; width: 100%; }
  .care-standard { grid-template-columns: 1fr; padding: 0 24px; }
  .care-standard > div,
  .care-standard > div:first-child,
  .care-standard > div:nth-child(odd) { min-height: 104px; border-left: 1px solid var(--line); }
  .risk-strip { grid-template-columns: auto 1fr; margin: 38px 24px 0; padding: 22px; }
  .risk-strip a { grid-column: 2; }
}

/* Floating concierge contact widget */
.care-chat {
  position: fixed;
  right: 28px;
  bottom: 28px;
  z-index: 120;
  font-family: "DM Sans", "Noto Sans SC", system-ui, sans-serif;
}

.care-chat-fab {
  min-width: 198px;
  min-height: 68px;
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 12px 16px 12px 13px;
  color: white;
  background: #0b2135;
  border: 1px solid rgba(255,255,255,.24);
  border-radius: 999px;
  box-shadow: 0 22px 58px rgba(11,33,53,.28);
  cursor: pointer;
  transition: transform .22s ease, box-shadow .22s ease, background .22s ease;
}

.care-chat-fab:hover {
  transform: translateY(-3px);
  background: #102a43;
  box-shadow: 0 28px 70px rgba(11,33,53,.34);
}

.care-chat-fab-icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #0b2135;
  background: linear-gradient(135deg, #ffffff 0%, #dff5ef 100%);
  font-size: 19px;
  box-shadow: inset 0 0 0 1px rgba(15,110,114,.18);
}

.care-chat-fab-text {
  display: grid;
  gap: 2px;
  text-align: left;
}

.care-chat-fab-text b { font-size: 14px; line-height: 1; }
.care-chat-fab-text small { color: rgba(255,255,255,.68); font-size: 11px; }

.care-chat-panel {
  position: absolute;
  right: 0;
  bottom: 86px;
  width: min(392px, calc(100vw - 32px));
  overflow: hidden;
  color: var(--ink);
  background: #fffefb;
  border: 1px solid rgba(16,42,67,.12);
  border-radius: 24px;
  box-shadow: 0 34px 90px rgba(11,33,53,.24);
}

.care-chat-panel[hidden] { display: none; }

.care-chat-hero {
  position: relative;
  padding: 28px 28px 25px;
  color: white;
  background:
    radial-gradient(circle at 90% 0%, rgba(65,198,183,.22), transparent 32%),
    linear-gradient(135deg, #0b2135 0%, #102a43 58%, #0f6e72 140%);
}

.care-chat-hero img {
  width: 52px;
  height: 52px;
  padding: 9px;
  border-radius: 18px;
  background: white;
  box-shadow: 0 16px 40px rgba(0,0,0,.18);
}

.care-chat-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255,255,255,.28);
  border-radius: 50%;
  color: white;
  background: rgba(255,255,255,.08);
  cursor: pointer;
  font-size: 25px;
  line-height: 1;
}

.care-chat-kicker {
  margin: 22px 0 9px;
  color: var(--teal-bright);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .17em;
}

.care-chat-hero h2 {
  margin: 0 0 10px;
  font-size: 25px;
  line-height: 1.2;
  letter-spacing: -.03em;
}

.care-chat-hero p:last-child {
  margin: 0;
  color: rgba(255,255,255,.76);
  font-size: 13px;
  line-height: 1.65;
}

.care-chat-options {
  display: grid;
  gap: 10px;
  padding: 20px;
}

.care-chat-option {
  width: 100%;
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 12px;
  align-items: center;
  padding: 15px 16px;
  color: var(--ink);
  background: white;
  border: 1px solid rgba(16,42,67,.14);
  border-radius: 16px;
  text-align: left;
  text-decoration: none;
  cursor: pointer;
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.care-chat-option:hover {
  transform: translateY(-2px);
  border-color: rgba(15,110,114,.42);
  box-shadow: 0 14px 30px rgba(16,42,67,.08);
}

.care-chat-option.primary-option {
  color: white;
  background: var(--ink);
  border-color: var(--ink);
}

.care-chat-option.primary-option small { color: rgba(255,255,255,.68); }

.option-icon {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--teal);
  background: #edf4f3;
  font-size: 10px;
  font-weight: 800;
}

.primary-option .option-icon {
  color: var(--ink);
  background: var(--teal-bright);
}

.care-chat-option span:last-child {
  display: grid;
  gap: 4px;
}

.care-chat-option b { font-size: 14px; }
.care-chat-option small { color: var(--ink-soft); font-size: 11px; line-height: 1.4; }
.care-chat-option em { color: var(--teal); font-style: normal; font-weight: 800; }

.care-chat-free {
  margin: 0 20px 16px;
  padding: 15px 16px;
  background: #f5f1e8;
  border-left: 3px solid #b8965b;
  border-radius: 14px;
}

.care-chat-free strong { display: block; margin-bottom: 6px; font-size: 13px; }
.care-chat-free p { margin: 0; color: var(--ink-soft); font-size: 12px; line-height: 1.6; }

.care-chat-note {
  margin: 0;
  padding: 0 20px 20px;
  color: #6d7f8b;
  font-size: 11px;
  line-height: 1.55;
}

@media (max-width: 680px) {
  .care-chat { right: 16px; bottom: 16px; }
  .care-chat-fab {
    min-width: 0;
    width: 50px;
    min-height: 50px;
    padding: 7px;
    justify-content: center;
  }
  .care-chat-fab-text { display: none; }
  .care-chat-fab-icon { width: 36px; height: 36px; font-size: 16px; }
  .care-chat-panel { right: -4px; bottom: 64px; border-radius: 22px; }
  .care-chat-hero { padding: 25px 24px 22px; }
  .care-chat-options { padding: 16px; }
  .care-chat-free { margin-inline: 16px; }
  .care-chat-note { padding-inline: 16px; }
}

/* Inner guide pages and SEO content hub */
.guide-section {
  background: linear-gradient(180deg, #ffffff 0%, #f7f5f0 100%);
}

.guide-grid {
  max-width: 1180px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.guide-grid article {
  min-height: 330px;
  display: flex;
  flex-direction: column;
  padding: 32px;
  background: white;
  border: 1px solid var(--line);
  box-shadow: 0 20px 55px rgba(16,42,67,.06);
}

.guide-grid h3 {
  margin: 32px 0 12px;
  font-size: 22px;
  line-height: 1.25;
}

.guide-grid p {
  color: var(--ink-soft);
  font-size: 13px;
  line-height: 1.75;
}

.guide-grid a {
  margin-top: auto;
  padding-top: 18px;
  color: var(--teal);
  border-top: 1px solid var(--line);
  text-decoration: none;
  font-size: 13px;
  font-weight: 800;
}

.inner-header {
  position: sticky;
  top: 0;
}

.inner-page {
  background: #fbfaf7;
}

.inner-hero {
  min-height: 520px;
  display: grid;
  align-content: center;
  gap: 22px;
  padding: 100px max(7vw, calc((100vw - 1180px) / 2));
  background:
    radial-gradient(circle at 84% 20%, rgba(101,198,186,.18), transparent 34%),
    linear-gradient(135deg, #f7f5f0 0%, #ffffff 100%);
}

.inner-hero h1 {
  max-width: 900px;
  margin: 0;
  color: var(--ink);
  font-family: "Newsreader", Georgia, "Noto Sans SC", serif;
  font-size: clamp(42px, 5vw, 74px);
  font-weight: 400;
  line-height: 1.04;
  letter-spacing: -.05em;
}

.inner-hero p {
  max-width: 760px;
  margin: 0;
  color: var(--ink-soft);
  font-size: 17px;
  line-height: 1.8;
}

.inner-hero .button {
  width: max-content;
  margin-top: 10px;
}

.inner-content {
  max-width: 980px;
  margin: auto;
  padding: 80px 7vw 110px;
}

.inner-content article {
  padding: 34px 0;
  border-bottom: 1px solid var(--line);
}

.inner-content article:first-child {
  border-top: 1px solid var(--line);
}

.inner-content h2 {
  margin: 0 0 16px;
  color: var(--ink);
  font-size: 28px;
  letter-spacing: -.03em;
}

.inner-content p,
.inner-content li {
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.85;
}

.inner-content ul {
  margin: 0;
  padding-left: 22px;
}

.inner-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.inner-links a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 14px;
  color: var(--teal);
  background: #edf4f3;
  border: 1px solid rgba(23,107,114,.18);
  text-decoration: none;
  font-size: 12px;
  font-weight: 800;
}

.inner-links.link-list {
  display: grid;
}

.inner-header nav a[aria-current="page"] {
  color: var(--teal);
  font-weight: 800;
}

.related-pages {
  margin-top: 42px;
  padding: 34px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 18px 50px rgba(16,42,67,.06);
}

.related-pages > div:first-child {
  max-width: 720px;
  margin-bottom: 24px;
}

.related-pages h2 {
  margin-top: 14px;
}

.related-pages p {
  margin: 0;
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.related-grid a {
  min-height: 142px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 20px;
  color: var(--ink);
  background: #f7f5f0;
  border: 1px solid rgba(16,42,67,.1);
  text-decoration: none;
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}

.related-grid a:hover {
  transform: translateY(-2px);
  border-color: rgba(23,107,114,.35);
  background: #edf4f3;
}

.related-grid b {
  font-size: 15px;
}

.related-grid small {
  color: var(--ink-soft);
  font-size: 12px;
  line-height: 1.55;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.footer-links a {
  color: var(--ink-soft);
  text-decoration: none;
  font-size: 11px;
  font-weight: 700;
}

.footer-links a:hover {
  color: var(--teal);
}

@media (max-width: 1000px) {
  .guide-grid {
    grid-template-columns: 1fr;
  }
  .related-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .inner-hero {
    min-height: auto;
    padding: 78px 24px;
  }
  .inner-hero h1 {
    font-size: 40px;
  }
  .inner-content {
    padding: 56px 24px 80px;
  }
}

/* MVP service ladder */
.route-builder-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 86% 8%, rgba(65, 198, 183, .13), transparent 31%),
    linear-gradient(180deg, #fffefb 0%, #f4f8f7 100%);
}

.route-builder-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(23, 107, 114, .055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(23, 107, 114, .045) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: linear-gradient(180deg, transparent 0%, #000 20%, #000 76%, transparent 100%);
}

.route-builder-section > * {
  position: relative;
  z-index: 1;
}

.route-builder-intro {
  max-width: 1180px;
  margin: -36px auto 44px;
  display: grid;
  grid-template-columns: minmax(0, 740px) auto;
  gap: 32px;
  align-items: end;
}

.route-builder-intro p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 17px;
  line-height: 1.82;
}

.tier-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.tier-card {
  min-height: 384px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 28px;
  color: var(--ink);
  background: rgba(255, 255, 255, .88);
  border: 1px solid rgba(16, 42, 67, .12);
  box-shadow: 0 18px 54px rgba(16, 42, 67, .07);
  backdrop-filter: blur(12px);
}

.tier-card.featured {
  color: #f7fffd;
  background:
    radial-gradient(circle at 88% 0%, rgba(122, 242, 226, .26), transparent 34%),
    linear-gradient(145deg, #102a43 0%, #0c232f 100%);
  border-color: rgba(122, 242, 226, .36);
  box-shadow: 0 26px 74px rgba(16, 42, 67, .18);
}

.tier-price {
  color: var(--teal);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .12em;
}

.tier-card.featured .tier-price {
  color: #7af2e2;
}

.tier-card h3 {
  margin: 0;
  font-size: 22px;
  line-height: 1.18;
  letter-spacing: -.02em;
}

.tier-card p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.64;
}

.tier-card ul {
  display: grid;
  gap: 9px;
  margin: auto 0 0;
  padding-left: 17px;
  color: var(--ink-soft);
  font-size: 13px;
  line-height: 1.5;
}

.tier-card.featured p,
.tier-card.featured ul {
  color: rgba(247, 255, 253, .74);
}

.guide-forward {
  max-width: 1180px;
  margin: 24px auto 0;
  padding: 30px 32px;
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(320px, .72fr);
  gap: 36px;
  align-items: center;
  background:
    linear-gradient(90deg, rgba(237, 244, 243, .94), rgba(255, 255, 255, .92));
  border-left: 3px solid var(--teal);
  border-top: 1px solid rgba(16, 42, 67, .08);
  box-shadow: 0 16px 44px rgba(16, 42, 67, .05);
}

.guide-forward h3 {
  margin: 14px 0 8px;
  font-family: "Newsreader", Georgia, serif;
  font-size: clamp(26px, 2.5vw, 36px);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -.035em;
}

.guide-forward p {
  max-width: 700px;
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.68;
}

.guide-forward-links {
  display: grid;
  gap: 4px;
}

.guide-forward-links a {
  min-height: 54px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 0 2px;
  color: var(--ink);
  border-bottom: 1px solid rgba(16, 42, 67, .13);
  text-decoration: none;
  font-size: 14px;
  font-weight: 800;
}

.guide-forward-links a:hover {
  color: var(--teal);
}

@media (max-width: 1100px) {
  .route-builder-intro,
  .guide-forward {
    grid-template-columns: 1fr;
  }

  .tier-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .route-builder-section {
    padding-inline: 24px;
  }

  .route-builder-intro {
    margin-top: -24px;
  }

  .tier-grid {
    grid-template-columns: 1fr;
  }

  .tier-card {
    min-height: auto;
    padding: 24px;
  }

  .guide-forward {
    grid-template-columns: 1fr;
    min-width: 0;
    padding: 24px;
  }
}

/* Global route and editorial image system */
.route-line-west {
  stroke: rgba(255, 91, 122, .44);
  stroke-width: 1.15;
}

.route-line-four { animation-duration: 12s; opacity: .78; }
.route-line-five { animation-duration: 13.5s; opacity: .62; }
.particle-four { left: 19%; top: 42%; animation: particleFour 9.5s ease-in-out infinite .35s; }
.particle-five { left: 64%; top: 32%; animation: particleFive 10.5s ease-in-out infinite 1.4s; }

.city-spot.north-america {
  color: rgba(255, 226, 232, .92);
}

.city-spot.north-america::before,
.city-spot.north-america::after {
  border-color: rgba(255, 91, 122, .34);
}

.city-spot.north-america span::before {
  background: #ff6b86;
  box-shadow: 0 0 0 5px rgba(255, 91, 122, .12), 0 0 24px rgba(255, 91, 122, .62);
}

.los-angeles { left: 9%; top: 54%; }
.san-francisco { left: 12%; top: 42%; }
.nevada { left: 16%; top: 49%; }
.boston { left: 25%; top: 31%; }
.new-york { left: 27%; top: 39%; }

.agent-hero .city-spot span {
  width: 13px;
  height: 13px;
  padding-top: 0;
  overflow: hidden;
  color: transparent;
  font-size: 0;
}

.agent-hero .city-spot span::before {
  top: 50%;
  transform: translate(-50%, -50%);
}

.global-presence-section {
  padding: 96px 7vw 104px;
  display: grid;
  grid-template-columns: minmax(280px, .42fr) minmax(0, .92fr);
  gap: 5vw;
  align-items: center;
  color: white;
  background:
    radial-gradient(circle at 82% 16%, rgba(255, 74, 96, .42), transparent 32%),
    radial-gradient(circle at 22% 78%, rgba(16, 188, 176, .32), transparent 30%),
    linear-gradient(135deg, #101b2d 0%, #372056 48%, #ca243f 100%);
}

.global-presence-copy h2,
.why-copy h2 {
  margin: 12px 0 20px;
  font-family: "Newsreader", Georgia, serif;
  font-size: clamp(38px, 4.8vw, 72px);
  font-weight: 400;
  line-height: 1.04;
  letter-spacing: -.045em;
}

.global-presence-copy p:not(.eyebrow-text),
.why-copy > p {
  margin: 0;
  color: rgba(255,255,255,.76);
  line-height: 1.8;
}

.global-presence-section .eyebrow-text,
.why-china-section .eyebrow-text {
  color: #7af2e2;
}

.presence-map-card {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 16px;
  background:
    radial-gradient(circle at 50% 50%, rgba(255,255,255,.10), transparent 58%),
    rgba(255,255,255,.05);
  box-shadow: 0 30px 90px rgba(3, 12, 28, .28);
}

.presence-route-svg {
  position: absolute;
  inset: 4% 4% 12%;
  width: 92%;
  height: 82%;
}

.presence-land {
  fill: rgba(255,255,255,.9);
  opacity: .94;
  stroke: rgba(255,255,255,.68);
  stroke-width: 1.15;
  stroke-linejoin: round;
  filter: drop-shadow(0 12px 30px rgba(0,0,0,.14)) drop-shadow(0 0 18px rgba(122, 242, 226, .10));
}

.presence-land.asia {
  opacity: .98;
}

.presence-land.north-america {
  fill: rgba(255,255,255,.92);
}

.presence-land.island {
  opacity: .82;
  stroke-width: .9;
}

.presence-arc {
  fill: none;
  stroke: rgba(122, 242, 226, .72);
  stroke-width: 1.6;
  stroke-dasharray: 9 14;
  animation: routeFlow 9s linear infinite;
}

.presence-arc.arc-two {
  stroke: rgba(255, 220, 230, .62);
  animation-duration: 12s;
}

.presence-arc.arc-three {
  stroke: rgba(255,255,255,.42);
  animation-duration: 10.5s;
}

.presence-dot {
  position: absolute;
  color: rgba(255,255,255,.9);
  font-size: 10px;
  font-weight: 800;
  transform: translate(-50%, -50%);
  text-shadow: 0 0 18px rgba(0,0,0,.28);
}

.presence-dot::before {
  content: "";
  display: block;
  width: 13px;
  height: 13px;
  margin: 0 auto 7px;
  border-radius: 50%;
  background: #ff6b86;
  box-shadow: 0 0 0 8px rgba(255, 91, 122, .15), 0 0 30px rgba(255, 91, 122, .65);
  animation: spotGlow 3.4s ease-in-out infinite;
}

.presence-dot.china::before {
  background: #28d5c8;
  box-shadow: 0 0 0 8px rgba(40, 213, 200, .15), 0 0 30px rgba(40, 213, 200, .72);
}

.p-la { left: 17%; top: 50%; }
.p-sf { left: 14%; top: 40%; }
.p-nv { left: 20%; top: 43%; }
.p-bos { left: 30%; top: 30%; }
.p-ny { left: 31%; top: 37%; }
.p-bj { left: 71%; top: 38%; }
.p-sh { left: 82%; top: 48%; }
.p-gz { left: 75%; top: 62%; }
.p-cd { left: 65%; top: 55%; }

.presence-panel {
  position: absolute;
  left: 50%;
  bottom: 0;
  width: min(620px, 78%);
  min-height: 94px;
  display: grid;
  grid-template-columns: .7fr 1.3fr;
  gap: 24px;
  align-items: center;
  padding: 22px 28px;
  color: #053036;
  background: #27d1c5;
  transform: translateX(-50%);
}

.presence-panel strong {
  font-family: "Newsreader", Georgia, serif;
  font-size: 30px;
  font-weight: 400;
  line-height: 1.05;
}

.presence-panel span {
  font-size: 13px;
  font-weight: 800;
  line-height: 1.55;
}

.why-china-section {
  padding: 110px 7vw;
  display: grid;
  grid-template-columns: minmax(280px, .72fr) minmax(420px, .86fr);
  gap: 6vw;
  align-items: center;
  color: white;
  background:
    radial-gradient(circle at 12% 82%, rgba(122, 242, 226, .22), transparent 25%),
    radial-gradient(circle at 78% 24%, rgba(255, 91, 122, .26), transparent 30%),
    linear-gradient(135deg, #14243a 0%, #5b2265 45%, #c72543 100%);
}

.why-buttons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 32px;
  max-width: 520px;
}

.why-buttons span {
  min-height: 42px;
  display: grid;
  place-items: center;
  padding: 0 14px;
  border: 1px solid rgba(255,255,255,.52);
  color: white;
  font-size: 12px;
  font-weight: 800;
}

.why-stat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid rgba(255,255,255,.48);
  border-right: 0;
  border-bottom: 0;
}

.why-stat-grid article {
  min-height: 248px;
  padding: 32px;
  border-right: 1px solid rgba(255,255,255,.48);
  border-bottom: 1px solid rgba(255,255,255,.48);
}

.why-stat-grid small {
  display: block;
  color: rgba(255,255,255,.82);
  font-size: 13px;
  font-weight: 800;
}

.why-stat-grid strong {
  display: block;
  margin: 24px 0 12px;
  color: #26d4c8;
  font-family: "DM Sans", system-ui, sans-serif;
  font-size: clamp(54px, 6vw, 84px);
  font-weight: 800;
  letter-spacing: -.04em;
}

.why-stat-grid p {
  margin: 0;
  color: rgba(255,255,255,.72);
  font-size: 13px;
  line-height: 1.62;
}

.section-photo {
  max-width: 1180px;
  margin: 46px auto 0;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(16, 42, 67, .12);
  background: #081a26;
  box-shadow: 0 24px 70px rgba(16,42,67,.12);
}

.section-photo img {
  display: block;
  width: 100%;
  height: min(46vw, 500px);
  min-height: 330px;
  object-fit: cover;
}

.section-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(5, 24, 34, .72), transparent 48%, rgba(5, 24, 34, .10));
  pointer-events: none;
}

.section-photo figcaption {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 1;
  width: min(520px, 86%);
  display: grid;
  gap: 10px;
  padding: 28px;
  color: white;
  background: rgba(7, 25, 36, .78);
  backdrop-filter: blur(14px);
}

.section-photo figcaption span {
  color: #7af2e2;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .14em;
}

.section-photo figcaption b {
  font-family: "Newsreader", Georgia, serif;
  font-size: clamp(22px, 2.2vw, 32px);
  font-weight: 400;
  line-height: 1.14;
}

.diagnostic-photo {
  grid-column: 1 / -1;
}

.package-card .button.primary.full {
  color: #06131d;
  background: #7af2e2;
  border-color: #7af2e2;
}

@keyframes particleFour {
  0%, 100% { transform: translate(0, 0) scale(.7); opacity: .25; }
  50% { transform: translate(390px, -88px) scale(1.12); opacity: .98; }
}

@keyframes particleFive {
  0%, 100% { transform: translate(0, 0) scale(.72); opacity: .28; }
  50% { transform: translate(-276px, 96px) scale(1.08); opacity: .9; }
}

@media (prefers-reduced-motion: reduce) {
  .particle-four,
  .particle-five,
  .presence-arc,
  .presence-dot::before {
    animation: none !important;
  }
}

@media (max-width: 1100px) {
  .global-presence-section,
  .why-china-section {
    grid-template-columns: 1fr;
  }

  .presence-map-card {
    min-height: 470px;
  }
}

@media (max-width: 680px) {
  .global-presence-section,
  .why-china-section {
    padding: 76px 24px;
  }

  .presence-map-card {
    min-height: 430px;
  }

  .presence-dot b {
    display: none;
  }

  .presence-panel {
    width: calc(100% - 36px);
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .why-buttons,
  .why-stat-grid {
    grid-template-columns: 1fr;
  }

  .why-stat-grid article {
    min-height: auto;
    padding: 26px;
  }

  .section-photo img {
    height: 360px;
    min-height: 0;
  }

  .section-photo figcaption {
    position: relative;
    width: 100%;
  }
}

/* Homepage decision ladder */
.service-plans-section {
  background:
    radial-gradient(circle at 14% 14%, rgba(101, 198, 186, .11), transparent 28%),
    linear-gradient(180deg, #f4f8f7 0%, #fffefb 100%);
}

.plan-intro {
  margin-top: -24px;
}

.service-plans-section .tier-card {
  min-height: 470px;
}

.tier-action {
  min-height: 46px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 18px;
  padding-top: 16px;
  color: var(--teal);
  border-top: 1px solid rgba(16, 42, 67, .13);
  text-decoration: none;
  font-size: 12px;
  font-weight: 800;
}

.tier-card.featured .tier-action {
  color: #7af2e2;
  border-color: rgba(122, 242, 226, .22);
}

.tier-action:hover {
  color: var(--ink);
}

.tier-card.featured .tier-action:hover {
  color: #f7fffd;
}

.plan-boundary {
  max-width: 1180px;
  margin: 24px auto 0;
  padding: 18px 20px;
  color: var(--ink-soft);
  background: rgba(255, 255, 255, .66);
  border-left: 3px solid var(--warm);
  font-size: 12px;
  line-height: 1.7;
}

@media (min-width: 1001px) {
  .site-header nav {
    gap: 24px;
  }
}

@media (max-width: 680px) {
  .service-plans-section {
    padding-inline: 24px;
  }

  .plan-intro {
    margin-top: -12px;
  }

  .service-plans-section .tier-card {
    min-height: auto;
  }
}
