: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; }

.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; }
  .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 { grid-template-columns: 1fr; }
  .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;
}

.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: 62px;
    min-height: 62px;
    padding: 9px;
    justify-content: center;
  }
  .care-chat-fab-text { display: none; }
  .care-chat-fab-icon { width: 44px; height: 44px; }
  .care-chat-panel { right: -4px; bottom: 76px; 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;
  }
}
