:root {
  --ink: #10243a;
  --green: #0f5b82;
  --green-strong: #082744;
  --green-soft: #dcecf5;
  --paper: #f4f8fb;
  --white: #ffffff;
  --charcoal: #17344f;
  --muted: #5e7182;
  --line: #d6e1e9;
  --coral: #1688b5;
  --brass: #22a58d;
  --danger: #b23b45;
  --shadow: 0 18px 50px rgba(8, 39, 68, 0.13);
  --font-sans: "DM Sans", "Noto Sans SC", "Microsoft YaHei", sans-serif;
  --font-display: "Newsreader", "Noto Serif SC", "Songti SC", serif;
  --container: 1200px;
  --header-height: 78px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 18px);
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.65;
  letter-spacing: 0;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

button,
input,
select,
textarea {
  font: inherit;
  letter-spacing: 0;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

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

svg {
  width: 1.15em;
  height: 1.15em;
  flex: 0 0 auto;
  stroke-width: 1.8;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.02;
  letter-spacing: 0;
}

h1 {
  max-width: 820px;
  margin-bottom: 26px;
  font-size: 4rem;
}

h2 {
  margin-bottom: 22px;
  font-size: 2.8rem;
}

h3 {
  line-height: 1.28;
  letter-spacing: 0;
}

.container {
  width: min(calc(100% - 48px), var(--container));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 200;
  top: 10px;
  left: 10px;
  padding: 10px 14px;
  background: var(--white);
  color: var(--ink);
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

:focus-visible {
  outline: 3px solid var(--coral);
  outline-offset: 3px;
}

.eyebrow {
  margin-bottom: 18px;
  color: var(--coral);
  font-size: 0.76rem;
  font-weight: 700;
  line-height: 1.3;
  text-transform: uppercase;
}

.light-eyebrow {
  color: #f0bd8e;
}

.section {
  padding: 112px 0;
}

.section-heading {
  margin-bottom: 58px;
}

.two-column-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.65fr);
  align-items: end;
  gap: 72px;
}

.two-column-heading h2 {
  max-width: 760px;
  margin-bottom: 0;
}

.two-column-heading > p {
  max-width: 500px;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 1.06rem;
}

.centered-heading {
  max-width: 800px;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.centered-heading > p:last-child {
  max-width: 630px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 1.04rem;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: 4px;
  padding: 12px 20px;
  cursor: pointer;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  transition: background-color 180ms ease, color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button svg {
  width: 18px;
  height: 18px;
}

.button-primary {
  background: var(--coral);
  color: var(--white);
}

.button-primary:hover {
  background: #ae5545;
}

.button-outline {
  border-color: var(--green);
  background: transparent;
  color: var(--green);
}

.button-outline:hover {
  background: var(--green);
  color: var(--white);
}

.button-ghost {
  border-color: rgba(255, 255, 255, 0.45);
  background: rgba(8, 27, 24, 0.32);
  color: var(--white);
  backdrop-filter: blur(8px);
}

.button-ghost:hover {
  border-color: var(--white);
  background: rgba(8, 27, 24, 0.58);
}

.button-small {
  min-height: 42px;
  padding: 9px 15px;
  font-size: 0.87rem;
}

.button-large {
  min-height: 56px;
  padding: 15px 23px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border-bottom: 1px solid currentColor;
  padding-bottom: 4px;
  color: var(--green);
  font-weight: 700;
}

.text-link svg {
  transition: transform 180ms ease;
}

.text-link:hover svg {
  transform: translateX(4px);
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(11, 48, 43, 0.94);
  color: var(--white);
  backdrop-filter: blur(14px);
}

.header-inner {
  display: flex;
  min-height: var(--header-height);
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  flex: 0 0 auto;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.65);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand-copy strong {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
}

.brand-copy small {
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  font-size: 0.86rem;
  font-weight: 600;
}

.desktop-nav a {
  position: relative;
  color: rgba(255, 255, 255, 0.8);
  transition: color 160ms ease;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 2px;
  background: var(--coral);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 160ms ease;
}

.desktop-nav a:hover {
  color: var(--white);
}

.desktop-nav a:hover::after {
  transform: scaleX(1);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.language-switch {
  display: flex;
  min-width: 96px;
  height: 36px;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 4px;
  padding: 2px;
}

.lang-button {
  height: 30px;
  flex: 1;
  min-width: 42px;
  border: 0;
  border-radius: 2px;
  padding: 0 8px;
  background: transparent;
  color: rgba(255, 255, 255, 0.68);
  cursor: pointer;
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
  white-space: nowrap;
  word-break: keep-all;
}

.lang-button.is-active {
  background: var(--white);
  color: var(--green);
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 4px;
  background: transparent;
  color: var(--white);
  cursor: pointer;
}

.mobile-nav {
  position: fixed;
  z-index: 95;
  top: var(--header-height);
  right: 0;
  bottom: 0;
  left: 0;
  flex-direction: column;
  align-items: stretch;
  padding: 28px 24px;
  background: var(--green-strong);
}

.mobile-nav:not([hidden]) {
  display: flex;
}

.mobile-nav a {
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  padding: 18px 4px;
  color: var(--white);
  font-size: 1.12rem;
  font-weight: 600;
}

.hero {
  position: relative;
  display: flex;
  min-height: 82vh;
  align-items: flex-end;
  overflow: hidden;
  background-color: var(--green-strong);
  background-image: url("assets/hero-patient-coordination.jpg");
  background-position: center 32%;
  background-size: cover;
  color: var(--white);
}

.hero-shade {
  position: absolute;
  inset: 0;
  background: rgba(6, 29, 25, 0.7);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: calc(var(--header-height) + 86px);
  padding-bottom: 72px;
}

.hero-eyebrow {
  color: #f2c09a;
}

.hero-lead {
  max-width: 690px;
  margin-bottom: 34px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.22rem;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-note {
  display: flex;
  max-width: 640px;
  align-items: flex-start;
  gap: 9px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.86rem;
}

.hero-note svg {
  margin-top: 2px;
  color: #f2c09a;
}

.trust-strip {
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.trust-item {
  display: flex;
  min-height: 118px;
  align-items: center;
  gap: 14px;
  border-right: 1px solid var(--line);
  padding: 24px 26px;
}

.trust-item:first-child {
  border-left: 1px solid var(--line);
}

.trust-item > svg {
  width: 23px;
  height: 23px;
  color: var(--coral);
}

.trust-item div {
  display: flex;
  min-width: 0;
  flex-direction: column;
}

.trust-item strong {
  font-size: 0.88rem;
  line-height: 1.35;
}

.trust-item span {
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.76rem;
  line-height: 1.35;
}

.section-intro {
  background: var(--paper);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.service-card {
  position: relative;
  min-height: 390px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--white);
  padding: 42px;
  transition: background-color 180ms ease, transform 180ms ease;
}

.service-card:hover {
  z-index: 2;
  background: #ffffff;
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.service-icon {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  margin-bottom: 50px;
  background: var(--green);
  color: var(--white);
}

.service-icon svg {
  width: 23px;
  height: 23px;
}

.accent-coral {
  background: var(--coral);
}

.accent-brass {
  background: var(--brass);
}

.accent-charcoal {
  background: var(--charcoal);
}

.service-index {
  position: absolute;
  top: 42px;
  right: 42px;
  color: #aeb6b1;
  font-family: var(--font-display);
  font-size: 1.45rem;
}

.service-card h3 {
  margin-bottom: 14px;
  font-size: 1.38rem;
}

.service-card > p:not(.service-index) {
  max-width: 500px;
  margin-bottom: 23px;
  color: var(--muted);
}

.clean-list,
.check-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.clean-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.clean-list li {
  border: 1px solid var(--line);
  border-radius: 3px;
  padding: 6px 10px;
  color: var(--charcoal);
  font-size: 0.76rem;
}

.section-tinted {
  background: #e9f3f8;
}

.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
  gap: 18px;
}

.package-card {
  position: relative;
  display: flex;
  min-height: 560px;
  flex-direction: column;
  border: 1px solid #cbd2cc;
  border-radius: 6px;
  background: var(--white);
  padding: 34px;
}

.featured-package {
  border-color: var(--green);
  box-shadow: 0 16px 48px rgba(18, 62, 56, 0.14);
}

.package-ribbon {
  position: absolute;
  top: -14px;
  right: 22px;
  border-radius: 3px;
  background: var(--green);
  color: var(--white);
  padding: 7px 11px;
  font-size: 0.66rem;
  font-weight: 700;
}

.package-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 42px;
  color: var(--coral);
  font-size: 0.7rem;
  font-weight: 700;
}

.package-topline svg {
  width: 22px;
  height: 22px;
}

.package-card h3 {
  min-height: 56px;
  margin-bottom: 20px;
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 600;
}

.package-price {
  min-height: 53px;
  margin-bottom: 18px;
  color: var(--green);
  font-family: var(--font-display);
  font-size: 2.35rem;
  font-weight: 600;
  line-height: 1;
}

.package-price small {
  font-family: var(--font-sans);
  font-size: 0.73rem;
  font-weight: 600;
}

.package-price span {
  font-family: var(--font-sans);
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 500;
}

.package-description {
  min-height: 86px;
  color: var(--muted);
  font-size: 0.93rem;
}

.check-list {
  display: grid;
  gap: 13px;
  margin: 14px 0 30px;
}

.check-list li {
  position: relative;
  padding-left: 24px;
  font-size: 0.88rem;
}

.check-list li::before {
  position: absolute;
  top: 0.55em;
  left: 2px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--coral);
  content: "";
}

.package-card .button {
  width: 100%;
  margin-top: auto;
}

.pricing-note {
  display: flex;
  max-width: 820px;
  align-items: flex-start;
  justify-content: center;
  gap: 9px;
  margin: 28px auto 0;
  color: var(--muted);
  font-size: 0.78rem;
  text-align: center;
}

.pricing-note svg {
  margin-top: 2px;
  color: var(--green);
}

.process-section {
  background: var(--white);
}

.process-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.7fr) minmax(0, 1.3fr);
  gap: 100px;
}

.process-intro {
  position: sticky;
  top: calc(var(--header-height) + 38px);
  align-self: start;
}

.process-intro p:not(.eyebrow) {
  max-width: 430px;
  color: var(--muted);
  font-size: 1rem;
}

.process-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.process-list li {
  display: grid;
  grid-template-columns: 90px minmax(0, 1fr);
  gap: 26px;
  border-top: 1px solid var(--line);
  padding: 35px 0 38px;
}

.process-list li:last-child {
  border-bottom: 1px solid var(--line);
}

.step-number {
  color: var(--coral);
  font-family: var(--font-display);
  font-size: 2.15rem;
}

.process-list h3 {
  margin: 5px 0 10px;
  font-size: 1.28rem;
}

.process-list p {
  max-width: 650px;
  margin-bottom: 0;
  color: var(--muted);
}

.scope-section {
  background: var(--green-strong);
  color: var(--white);
}

.scope-heading > p {
  color: rgba(255, 255, 255, 0.68);
}

.scope-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.scope-column {
  padding: 48px 52px;
}

.scope-column + .scope-column {
  border-left: 1px solid rgba(255, 255, 255, 0.2);
}

.scope-label {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 30px;
  color: #f2c09a;
  font-size: 0.75rem;
  font-weight: 700;
}

.scope-label svg {
  width: 20px;
  height: 20px;
}

.scope-column ul {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.scope-column li {
  position: relative;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 16px 0 16px 28px;
  color: rgba(255, 255, 255, 0.82);
}

.scope-column li::before {
  position: absolute;
  top: 26px;
  left: 4px;
  width: 8px;
  height: 2px;
  background: var(--coral);
  content: "";
}

.scope-negative li::before {
  background: #9caeaa;
}

.coverage-section {
  background: #edf5f8;
}

.coverage-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(330px, 0.85fr);
  align-items: center;
  gap: 100px;
}

.coverage-copy h2 {
  max-width: 680px;
}

.coverage-copy > p:not(.eyebrow) {
  max-width: 640px;
  color: var(--muted);
  font-size: 1.04rem;
}

.coverage-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 34px;
}

.coverage-tags span {
  border: 1px solid #c8cec7;
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.46);
  padding: 8px 12px;
  color: var(--charcoal);
  font-size: 0.78rem;
  font-weight: 600;
}

.coverage-panel {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid #bbc5bd;
  border-radius: 6px;
  background: var(--green);
  color: var(--white);
  box-shadow: var(--shadow);
}

.city-line {
  display: flex;
  grid-column: 1 / -1;
  align-items: center;
  gap: 13px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  padding: 26px;
  color: #f2c09a;
  font-size: 0.76rem;
  font-weight: 700;
}

.city-line-rule {
  height: 1px;
  flex: 1;
  background: rgba(255, 255, 255, 0.35);
}

.coverage-stat {
  display: flex;
  min-width: 0;
  flex-direction: column;
  border-right: 1px solid rgba(255, 255, 255, 0.14);
  padding: 26px 18px;
}

.coverage-stat:nth-child(4) {
  border-right: 0;
}

.coverage-stat strong {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 600;
  line-height: 1;
}

.coverage-stat span {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.7rem;
}

.coverage-panel > p {
  grid-column: 1 / -1;
  margin-bottom: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  padding: 24px 26px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.78rem;
}

.scenarios-section {
  background: var(--paper);
}

.scenario-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.scenario-card {
  min-height: 310px;
  border-top: 3px solid var(--green);
  border-radius: 0 0 6px 6px;
  background: var(--white);
  padding: 34px;
}

.scenario-card:nth-child(2) {
  border-top-color: var(--coral);
}

.scenario-card:nth-child(3) {
  border-top-color: var(--brass);
}

.scenario-card > svg {
  width: 27px;
  height: 27px;
  margin-bottom: 56px;
  color: var(--green);
}

.scenario-type {
  margin-bottom: 10px;
  color: var(--coral);
  font-size: 0.68rem;
  font-weight: 700;
}

.scenario-card h3 {
  margin-bottom: 12px;
  font-family: var(--font-display);
  font-size: 1.48rem;
  font-weight: 600;
}

.scenario-card p:last-child {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.faq-section {
  background: var(--white);
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.68fr) minmax(0, 1.32fr);
  gap: 100px;
}

.faq-intro {
  align-self: start;
}

.faq-intro > p:not(.eyebrow) {
  max-width: 400px;
  color: var(--muted);
}

.accordion-list {
  border-top: 1px solid var(--line);
}

.accordion-item {
  border-bottom: 1px solid var(--line);
}

.accordion-trigger {
  display: flex;
  width: 100%;
  min-height: 82px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border: 0;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  padding: 22px 4px;
  font-size: 1.04rem;
  font-weight: 700;
  text-align: left;
}

.accordion-trigger svg {
  width: 22px;
  height: 22px;
  color: var(--coral);
  transition: transform 180ms ease;
}

.accordion-trigger[aria-expanded="true"] svg {
  transform: rotate(45deg);
}

.accordion-panel {
  padding: 0 54px 25px 4px;
}

.accordion-panel p {
  max-width: 690px;
  margin-bottom: 0;
  color: var(--muted);
}

.consultation-section {
  background: var(--charcoal);
  color: var(--white);
  padding: 112px 0;
}

.consultation-layout {
  display: grid;
  grid-template-columns: minmax(290px, 0.75fr) minmax(0, 1.25fr);
  align-items: start;
  gap: 92px;
}

.consultation-copy h2 {
  max-width: 580px;
}

.consultation-copy > p:not(.eyebrow, .emergency-note) {
  max-width: 520px;
  color: rgba(255, 255, 255, 0.68);
}

.contact-methods {
  display: grid;
  gap: 18px;
  margin-top: 42px;
}

.contact-methods > div {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.contact-methods svg {
  width: 21px;
  height: 21px;
  margin-top: 2px;
  color: #f2c09a;
}

.contact-methods span {
  display: flex;
  min-width: 0;
  flex-direction: column;
}

.contact-methods strong {
  overflow-wrap: anywhere;
  font-size: 0.9rem;
}

.contact-methods small {
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.75rem;
}

.emergency-note {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 40px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  padding-top: 22px;
  color: #f2c09a;
  font-size: 0.78rem;
}

.emergency-note svg {
  margin-top: 2px;
}

.form-shell {
  min-height: 760px;
  border-radius: 6px;
  background: var(--white);
  color: var(--ink);
  padding: 40px;
  box-shadow: 0 24px 68px rgba(0, 0, 0, 0.2);
}

.form-heading {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 30px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 24px;
}

.form-heading h3 {
  margin-bottom: 0;
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 600;
}

.form-heading p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.73rem;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px 16px;
}

.field {
  display: flex;
  min-width: 0;
  flex-direction: column;
}

.field-full {
  grid-column: 1 / -1;
}

.field > span {
  margin-bottom: 7px;
  color: var(--charcoal);
  font-size: 0.78rem;
  font-weight: 700;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-width: 0;
  border: 1px solid #cdd3ce;
  border-radius: 4px;
  background: #fffefa;
  color: var(--ink);
  outline: none;
  padding: 12px 13px;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.field input,
.field select {
  height: 48px;
}

.field textarea {
  min-height: 112px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(18, 62, 56, 0.12);
}

.field input[aria-invalid="true"],
.field select[aria-invalid="true"],
.field textarea[aria-invalid="true"] {
  border-color: var(--danger);
}

.field-error {
  min-height: 17px;
  margin-top: 4px;
  color: var(--danger);
  font-size: 0.68rem;
}

.field-hint {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.66rem;
}

.consent-field {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  align-items: start;
  gap: 10px;
  margin-top: 20px;
  color: var(--muted);
  font-size: 0.76rem;
}

.consent-field input {
  width: 17px;
  height: 17px;
  margin: 3px 0 0;
  accent-color: var(--green);
}

.consent-error {
  display: block;
}

.submit-button {
  width: 100%;
  margin-top: 18px;
}

.form-success {
  display: flex;
  min-height: 680px;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.form-success[hidden] {
  display: none;
}

.success-icon {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  margin-bottom: 28px;
  background: var(--green);
  color: var(--white);
}

.success-icon svg {
  width: 26px;
  height: 26px;
}

.form-success h3 {
  margin-bottom: 12px;
  font-family: var(--font-display);
  font-size: 2.15rem;
  font-weight: 600;
}

.form-success > p:not(.eyebrow) {
  color: var(--muted);
}

.form-success pre {
  width: 100%;
  max-height: 270px;
  overflow: auto;
  margin: 18px 0 24px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: #f0f2ed;
  padding: 18px;
  color: var(--charcoal);
  font-family: var(--font-sans);
  font-size: 0.78rem;
  line-height: 1.7;
  white-space: pre-wrap;
}

.form-success .button {
  min-width: 190px;
}

.text-button {
  margin-top: 14px;
  border: 0;
  border-bottom: 1px solid currentColor;
  background: transparent;
  color: var(--green);
  cursor: pointer;
  padding: 2px 0;
  font-weight: 700;
}

.site-footer {
  background: #071d32;
  color: var(--white);
  padding: 72px 0 26px;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.65fr repeat(3, minmax(130px, 0.7fr));
  gap: 58px;
}

.footer-brand .brand {
  margin-bottom: 24px;
}

.footer-brand p {
  max-width: 360px;
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.82rem;
}

.footer-column {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-column h3 {
  margin-bottom: 9px;
  color: #f2c09a;
  font-size: 0.72rem;
  font-weight: 700;
}

.footer-column a,
.footer-column span {
  overflow-wrap: anywhere;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.78rem;
}

.footer-column a:hover {
  color: var(--white);
}

.footer-legal {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 50px;
  margin-top: 64px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 24px;
}

.footer-legal p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.42);
  font-size: 0.66rem;
}

.footer-legal p:first-child {
  max-width: 760px;
}

.footer-legal p:last-child {
  flex: 0 0 auto;
  text-align: right;
}

.mobile-contact-bar {
  display: none;
}

.noscript-message {
  position: fixed;
  z-index: 300;
  right: 16px;
  bottom: 16px;
  max-width: 420px;
  border: 1px solid var(--coral);
  background: var(--white);
  color: var(--ink);
  padding: 14px;
  font-size: 0.8rem;
}

@media (max-width: 1080px) {
  .desktop-nav {
    gap: 16px;
  }

  .desktop-nav a:nth-child(4) {
    display: none;
  }

  .process-layout,
  .faq-layout {
    gap: 64px;
  }

  .coverage-layout,
  .consultation-layout {
    gap: 58px;
  }

  .package-card {
    padding: 28px;
  }
}

@media (max-width: 900px) {
  :root {
    --header-height: 70px;
  }

  .site-header {
    backdrop-filter: none;
  }

  .desktop-nav,
  .header-cta {
    display: none;
  }

  .menu-button {
    display: grid;
  }

  .hero {
    min-height: 78vh;
    background-position: 60% center;
  }

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

  .trust-item:nth-child(2) {
    border-right: 1px solid var(--line);
  }

  .trust-item:nth-child(3),
  .trust-item:nth-child(4) {
    border-top: 1px solid var(--line);
  }

  .two-column-heading,
  .process-layout,
  .coverage-layout,
  .faq-layout,
  .consultation-layout {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .two-column-heading {
    align-items: start;
  }

  .two-column-heading > p {
    margin-bottom: 0;
  }

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

  .package-card {
    min-height: 0;
  }

  .package-card h3,
  .package-description {
    min-height: 0;
  }

  .process-intro {
    position: static;
  }

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

  .scenario-card {
    min-height: 0;
  }

  .scenario-card > svg {
    margin-bottom: 42px;
  }

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

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(calc(100% - 32px), var(--container));
  }

  body {
    padding-bottom: 60px;
  }

  h1 {
    font-size: 3.35rem;
  }

  h2 {
    font-size: 2.65rem;
  }

  .section,
  .consultation-section {
    padding: 78px 0;
  }

  .section-heading {
    margin-bottom: 40px;
  }

  .brand-copy strong {
    font-size: 1.08rem;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
  }

  .language-switch {
    min-width: 96px;
  }

  .hero {
    min-height: 76vh;
  }

  .hero-content {
    padding-top: calc(var(--header-height) + 64px);
    padding-bottom: 46px;
  }

  .hero-lead {
    font-size: 1rem;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-actions .button {
    width: 100%;
  }

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

  .trust-item {
    min-height: 88px;
    border-top: 1px solid var(--line);
    border-right: 1px solid var(--line);
    border-left: 1px solid var(--line);
    padding: 18px 20px;
  }

  .trust-item:first-child {
    border-top: 0;
  }

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

  .service-card {
    min-height: 0;
    padding: 30px 26px;
  }

  .service-icon {
    margin-bottom: 40px;
  }

  .service-index {
    top: 30px;
    right: 26px;
  }

  .package-card {
    padding: 28px 24px;
  }

  .package-topline {
    margin-bottom: 32px;
  }

  .process-list li {
    grid-template-columns: 54px minmax(0, 1fr);
    gap: 14px;
    padding: 27px 0 30px;
  }

  .step-number {
    font-size: 1.65rem;
  }

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

  .scope-column {
    padding: 34px 4px;
  }

  .scope-column + .scope-column {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    border-left: 0;
  }

  .coverage-panel {
    grid-template-columns: 1fr;
  }

  .coverage-stat,
  .coverage-stat:nth-child(4) {
    display: grid;
    grid-template-columns: 56px 1fr;
    align-items: center;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
    padding: 20px 24px;
  }

  .coverage-stat span {
    margin-top: 0;
  }

  .scenario-card {
    padding: 28px 24px;
  }

  .accordion-trigger {
    min-height: 74px;
    padding: 18px 2px;
    font-size: 0.96rem;
  }

  .accordion-panel {
    padding-right: 34px;
  }

  .form-shell {
    min-height: 0;
    padding: 28px 20px;
  }

  .form-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 7px;
  }

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

  .field-full {
    grid-column: auto;
  }

  .form-success {
    min-height: 560px;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .footer-brand {
    grid-column: auto;
  }

  .footer-legal {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
  }

  .footer-legal p:last-child {
    text-align: left;
  }

  .mobile-contact-bar {
    position: fixed;
    z-index: 90;
    right: 0;
    bottom: 0;
    left: 0;
    display: grid;
    height: 60px;
    grid-template-columns: 1.25fr 0.75fr;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    background: var(--green-strong);
    color: var(--white);
    box-shadow: 0 -6px 24px rgba(0, 0, 0, 0.18);
  }

  .mobile-contact-bar a {
    display: flex;
    min-width: 0;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px;
    font-size: 0.78rem;
    font-weight: 700;
    text-align: center;
  }

  .mobile-contact-bar a:first-child {
    background: var(--coral);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

/* Carenomi blue system overrides */
:root {
  --ink: #10243d;
  --green: #0b5ec7;
  --green-strong: #073875;
  --green-soft: #e8f2ff;
  --paper: #f5f9fe;
  --charcoal: #163454;
  --muted: #5b718b;
  --line: #d5e1ef;
  --coral: #1684dc;
  --brass: #25a6b8;
  --shadow: 0 18px 50px rgba(7, 56, 117, .14);
}
.site-header { background: rgba(7, 56, 117, .95); }
.hero { background-color: var(--green-strong); background-image: url("assets/hero-patient-coordination.jpg"); }
.hero-shade { background: rgba(4, 35, 78, .67); }
.button-primary { background: var(--coral); }
.button-primary:hover { background: #0b6fc5; }
.button-outline { border-color: var(--green); color: var(--green); }
.button-outline:hover { background: var(--green); }
.section-tinted, .coverage-section { background: #edf6ff; }
.scope-section { background: var(--green-strong); }
.consultation-section { background: #0b315e; }
.site-footer { background: #061e40; }
.service-card-note { background: #e8f3ff; }
.featured-price { border-color: var(--coral); box-shadow: 0 16px 48px rgba(11, 94, 199, .16); }
.price-ribbon { background: var(--coral); }
.scenario-card { border-top-color: var(--green); }
.scenario-card:nth-child(2) { border-top-color: var(--coral); }
.scenario-card:nth-child(3) { border-top-color: var(--brass); }
.coverage-panel { background: var(--green); }
.coverage-city { display: flex; min-height: 112px; flex-direction: column; justify-content: center; gap: 8px; border-right: 1px solid rgba(255,255,255,.14); padding: 22px; color: white; }
.coverage-city strong { color: #9ed0ff; font: 600 1.8rem var(--font-display); }
.coverage-city span { font-weight: 700; }
.coverage-panel > p { grid-column: 1 / -1; }
.coverage-panel { grid-template-columns: repeat(4, 1fr); }
.coverage-panel .city-line { grid-column: 1 / -1; }
.hero-meta { display: flex; flex-wrap: wrap; gap: 18px 28px; margin-top: 34px; color: rgba(255,255,255,.72); font-size: .8rem; }
.hero-meta span { display: inline-flex; align-items: center; gap: 7px; }
.pricing-footnotes { display: grid; gap: 10px; margin-top: 26px; color: var(--muted); font-size: .78rem; }
.pricing-footnotes p { display: flex; gap: 9px; margin: 0; }
.price-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.price-card { display: flex; min-height: 510px; flex-direction: column; border: 1px solid var(--line); background: #fff; padding: 32px; }
.price-card-wide { grid-column: 1 / -1; min-height: 0; }
.price-card-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 34px; color: var(--coral); }
.price-label { font-size: .7rem; font-weight: 700; }
.price-card h3 { min-height: 58px; margin-bottom: 18px; font: 600 1.65rem/1.15 var(--font-display); }
.price-amount { display: flex; align-items: baseline; flex-wrap: wrap; gap: 7px; margin: 0 0 16px; color: var(--green); }
.price-amount strong { font: 600 2.3rem/1 var(--font-display); }
.price-amount span, .price-amount small { color: var(--muted); font-size: .78rem; }
.price-sub { min-height: 78px; color: var(--muted); font-size: .9rem; }
.price-card .button { width: 100%; margin-top: auto; }
.price-wide-content { display: grid; grid-template-columns: 1fr 1fr 1fr auto; align-items: end; gap: 28px; }
.price-wide-content .price-sub { min-height: 0; }
.deliverables-layout, .cost-layout { display: grid; grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr); gap: 90px; align-items: start; }
.deliverable-list { border-top: 1px solid var(--line); }
.deliverable-item { display: grid; grid-template-columns: 44px minmax(0,1fr) 32px; gap: 16px; align-items: start; border-bottom: 1px solid var(--line); padding: 22px 0; }
.deliverable-icon { display: grid; width: 36px; height: 36px; place-items: center; background: var(--green-soft); color: var(--green); }
.deliverable-item strong { display: block; margin-bottom: 4px; }
.deliverable-item p { margin: 0; color: var(--muted); font-size: .86rem; }
.deliverable-number { color: #8da3bb; font: 600 1.2rem var(--font-display); }
.journey-timeline { max-width: 880px; margin: 0 auto; padding: 0; list-style: none; }
.journey-timeline li { display: grid; grid-template-columns: 52px 52px 1fr; gap: 18px; align-items: start; border-top: 1px solid var(--line); padding: 26px 0; }
.journey-step { color: var(--coral); font: 600 1.35rem var(--font-display); }
.journey-marker { display: grid; width: 42px; height: 42px; place-items: center; background: var(--green-soft); color: var(--green); }
.journey-timeline h3 { margin: 0 0 6px; font-size: 1.15rem; }
.journey-timeline p { margin: 0; color: var(--muted); }
.cost-table { border-top: 1px solid var(--line); }
.cost-row { display: grid; grid-template-columns: 1.1fr .8fr 1.2fr; gap: 20px; border-bottom: 1px solid var(--line); padding: 19px 0; color: var(--muted); font-size: .86rem; }
.cost-row-head { color: var(--ink); font-size: .7rem; font-weight: 700; text-transform: uppercase; }
.cost-row strong { display: flex; align-items: center; gap: 8px; color: var(--ink); }
.cost-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green); }
.teal-dot { background: var(--brass); }.slate-dot { background: #7890aa; }
.scenario-image { min-height: 180px; display: flex; align-items: flex-end; padding: 20px; background-position: center; background-size: cover; color: #fff; }
.scenario-image-1 { background-image: linear-gradient(rgba(5,50,105,.18),rgba(5,50,105,.7)),url("assets/hospital-support.jpg");}
.scenario-image-2 { background-image: linear-gradient(rgba(5,50,105,.18),rgba(5,50,105,.7)),url("assets/arrival-concierge.jpg");}
.scenario-image-3 { background-image: linear-gradient(rgba(5,50,105,.18),rgba(5,50,105,.7)),url("assets/care-coordination-desk.jpg");}
.scenario-image span { font-size: .68rem; font-weight: 700; letter-spacing: 0; }
.scenario-content { padding: 26px; }.scenario-content h3 { margin: 0 0 10px; font: 600 1.45rem var(--font-display); }.scenario-content p { margin: 0; color: var(--muted); font-size: .88rem; }
@media (max-width: 900px) {
  .price-grid, .coverage-panel { grid-template-columns: 1fr; }
  .price-card-wide { grid-column: auto; }.price-wide-content, .deliverables-layout, .cost-layout { grid-template-columns: 1fr; }
  .coverage-city { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.14); }
}
@media (max-width: 640px) {
  .cost-row { grid-template-columns: 1fr; gap: 5px; }.cost-row-head { display: none; }
  .journey-timeline li { grid-template-columns: 42px 42px 1fr; gap: 10px; }
}

/* Transit-window feature and local visual story. */
.visa-window-section {
  position: relative;
  overflow: hidden;
  padding: 96px 0;
  background:
    radial-gradient(circle at 85% 18%, rgba(119, 202, 255, .22), transparent 31%),
    linear-gradient(135deg, #062d62 0%, #0b5ec7 56%, #1684dc 100%);
  color: var(--white);
}

.visa-window-section::before {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(2, 23, 55, .48), transparent 70%);
  content: "";
  pointer-events: none;
}

.visa-window-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, .92fr);
  align-items: stretch;
  gap: 64px;
}

.visa-window-copy {
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: center;
}

.visa-window-copy .eyebrow {
  color: #bde1ff;
}

.visa-window-copy h2 {
  max-width: 720px;
  margin-bottom: 22px;
  font-family: var(--font-sans);
  font-size: 2.4rem;
  line-height: 1.1;
}

.visa-window-copy > p:not(.eyebrow, .visa-window-note) {
  max-width: 700px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, .86);
  font-size: 1.08rem;
}

.visa-window-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 32px 0 30px;
}

.visa-window-stats > div {
  display: flex;
  min-width: 185px;
  align-items: baseline;
  gap: 9px;
  border: 1px solid rgba(255, 255, 255, .27);
  background: rgba(4, 30, 71, .27);
  padding: 13px 16px;
}

.visa-window-stats strong {
  color: #fff;
  font: 600 2.4rem/1 var(--font-display);
}

.visa-window-stats span {
  color: rgba(255, 255, 255, .77);
  font-size: .78rem;
  line-height: 1.35;
}

.visa-window-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid rgba(255, 255, 255, .26);
  border-left: 1px solid rgba(255, 255, 255, .26);
}

.visa-window-steps > div {
  min-height: 122px;
  border-right: 1px solid rgba(255, 255, 255, .26);
  border-bottom: 1px solid rgba(255, 255, 255, .26);
  padding: 15px 16px;
}

.visa-window-steps span {
  display: block;
  margin-bottom: 25px;
  color: #bde1ff;
  font: 600 1.05rem var(--font-display);
}

.visa-window-steps strong {
  display: block;
  font-size: .84rem;
  line-height: 1.4;
}

.visa-window-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
  margin-top: 28px;
}

.visa-window-actions .button-primary {
  background: #fff;
  color: #0b5ec7;
}

.visa-window-actions .button-primary:hover {
  background: #e8f4ff;
}

.policy-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #d9efff;
  font-size: .82rem;
  font-weight: 700;
}

.policy-link:hover {
  color: #fff;
}

.policy-link svg {
  width: 16px;
  height: 16px;
}

.visa-window-note {
  display: flex;
  max-width: 760px;
  align-items: flex-start;
  gap: 9px;
  margin: 25px 0 0;
  border-top: 1px solid rgba(255, 255, 255, .2);
  padding-top: 16px;
  color: rgba(255, 255, 255, .68);
  font-size: .76rem;
  line-height: 1.6;
}

.visa-window-note svg {
  flex: 0 0 auto;
  margin-top: 3px;
  color: #bde1ff;
}

.visa-window-visual {
  position: relative;
  display: flex;
  min-height: 560px;
  align-items: flex-end;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(3, 34, 75, .02) 30%, rgba(3, 21, 48, .8) 100%),
    url("assets/arrival-concierge.jpg") center / cover;
  box-shadow: 0 24px 60px rgba(1, 20, 52, .26);
}

.visa-window-visual::after {
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(255, 255, 255, .42);
  content: "";
  pointer-events: none;
}

.visa-window-visual-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 34%, rgba(3, 23, 51, .8));
}

.visa-window-visual-caption {
  position: relative;
  z-index: 1;
  max-width: 300px;
  padding: 32px;
}

.visa-window-visual-caption span {
  display: block;
  margin-bottom: 13px;
  color: #bde1ff;
  font-size: .7rem;
  font-weight: 700;
}

.visa-window-visual-caption strong {
  display: block;
  color: #fff;
  font: 600 2.2rem/1.1 var(--font-display);
}

.visual-story-section {
  background: #fff;
}

.visual-story-grid {
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  grid-template-rows: repeat(2, 250px);
  gap: 16px;
}

.visual-tile {
  position: relative;
  display: flex;
  min-width: 0;
  align-items: flex-end;
  overflow: hidden;
  background-position: center;
  background-size: cover;
  color: #fff;
}

.visual-tile::before {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(4, 35, 78, .04) 22%, rgba(3, 24, 53, .8) 100%);
  content: "";
}

.visual-tile::after {
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(255, 255, 255, .32);
  content: "";
  pointer-events: none;
}

.visual-tile-docs {
  grid-row: span 2;
  background-image: url("assets/care-coordination-desk.jpg");
}

.visual-tile-hospital {
  background-image: url("assets/hospital-support.jpg");
}

.visual-tile-arrival {
  background-image: url("assets/hero-patient-coordination.jpg");
}

.visual-tile-stay {
  grid-column: 1 / -1;
  background-image: url("assets/hotel-room-premium.jpg");
}

.visual-tile-shade {
  position: absolute;
  inset: 0;
}

.visual-tile-copy {
  position: relative;
  z-index: 1;
  max-width: 390px;
  padding: 26px;
}

.visual-tile-copy span {
  display: block;
  margin-bottom: 8px;
  color: #c6e8ff;
  font-size: .68rem;
  font-weight: 700;
}

.visual-tile-copy strong {
  display: block;
  font: 600 1.75rem/1.1 var(--font-display);
}

@media (max-width: 900px) {
  .visa-window-layout {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .visa-window-visual {
    min-height: 380px;
  }

  .visual-story-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 250px 250px 190px;
  }

  .visual-tile-docs {
    grid-row: span 2;
  }

  .visual-tile-stay {
    grid-column: 1 / -1;
  }
}

@media (max-width: 640px) {
  .visa-window-section {
    padding: 70px 0;
  }

  .visa-window-copy h2 {
    font-size: 2.25rem;
  }

  .visa-window-copy > p:not(.eyebrow, .visa-window-note) {
    font-size: .97rem;
  }

  .visa-window-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .visa-window-stats > div {
    min-width: 0;
    display: block;
  }

  .visa-window-stats strong,
  .visa-window-stats span {
    display: block;
  }

  .visa-window-stats strong {
    margin-bottom: 7px;
  }

  .visa-window-steps {
    grid-template-columns: 1fr;
  }

  .visa-window-steps > div {
    min-height: 0;
  }

  .visa-window-steps span {
    display: inline-block;
    min-width: 32px;
    margin: 0 8px 0 0;
  }

  .visa-window-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 14px;
  }

  .visa-window-actions .button,
  .policy-link {
    width: 100%;
  }

  .visa-window-actions .button {
    justify-content: space-between;
  }

  .visa-window-visual {
    min-height: 330px;
  }

  .visa-window-visual-caption {
    padding: 26px;
  }

  .visa-window-visual-caption strong {
    font-size: 1.85rem;
  }

  .visual-story-grid {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: repeat(4, 220px);
  }

  .visual-tile-docs,
  .visual-tile-stay {
    grid-column: auto;
    grid-row: auto;
  }

  .visual-tile-copy strong {
    font-size: 1.5rem;
  }
}

/* Free-first conversion flow and destination list. */
.promise-section {
  background: #0b5ec7;
  color: #fff;
  padding: 76px 0;
}

.promise-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, .95fr);
  align-items: center;
  gap: 72px;
}

.promise-copy h2 {
  max-width: 660px;
  margin-bottom: 20px;
  font-family: var(--font-sans);
  font-size: 2.4rem;
  line-height: 1.16;
}

.promise-copy > p:not(.eyebrow, .promise-boundary) {
  max-width: 680px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, .84);
  font-size: 1.08rem;
}

.promise-boundary {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  max-width: 650px;
  margin: 24px 0 0;
  border-top: 1px solid rgba(255, 255, 255, .23);
  padding-top: 18px;
  color: rgba(255, 255, 255, .7);
  font-size: .8rem;
}

.promise-boundary svg {
  margin-top: 3px;
  color: #bde1ff;
}

.promise-flow {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid rgba(255, 255, 255, .28);
  border-left: 1px solid rgba(255, 255, 255, .28);
}

.promise-flow-item {
  min-height: 150px;
  border-right: 1px solid rgba(255, 255, 255, .28);
  border-bottom: 1px solid rgba(255, 255, 255, .28);
  padding: 22px;
}

.promise-flow-item span {
  display: block;
  margin-bottom: 28px;
  color: #bde1ff;
  font: 600 1.15rem var(--font-display);
}

.promise-flow-item strong,
.promise-flow-item small {
  display: block;
}

.promise-flow-item strong {
  font-size: .92rem;
  line-height: 1.35;
}

.promise-flow-item small {
  margin-top: 7px;
  color: rgba(255, 255, 255, .65);
  font-size: .75rem;
  line-height: 1.5;
}

.free-consultation-panel {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 22px;
  margin: -8px 0 28px;
  border: 1px solid #a7c9ef;
  background: #fff;
  padding: 24px 26px;
  box-shadow: 0 16px 40px rgba(11, 94, 199, .08);
}

.free-consultation-icon {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  background: var(--green-soft);
  color: var(--green);
}

.free-consultation-icon svg {
  width: 23px;
  height: 23px;
}

.free-consultation-copy .eyebrow {
  margin-bottom: 7px;
}

.free-consultation-copy h3 {
  margin-bottom: 5px;
  font-family: var(--font-display);
  font-size: 1.65rem;
}

.free-consultation-copy p:last-child {
  max-width: 760px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: .88rem;
}

.free-consultation-panel .button {
  white-space: nowrap;
}

.coverage-city-wide {
  grid-column: 1 / -1;
}

@media (max-width: 900px) {
  .promise-layout {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .free-consultation-panel {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .free-consultation-panel .button {
    grid-column: 1 / -1;
    justify-self: start;
  }
}

@media (max-width: 640px) {
  .promise-section {
    padding: 62px 0;
  }

  .promise-flow {
    grid-template-columns: 1fr;
  }

  .promise-flow-item {
    min-height: 0;
  }

  .promise-flow-item span {
    margin-bottom: 16px;
  }

  .free-consultation-panel {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 22px 20px;
  }

  .free-consultation-panel .button {
    width: 100%;
    justify-self: stretch;
  }
}

/* Text expansion and shared legal pages in both languages. */
[hidden] { display: none !important; }
html[lang="zh-CN"] h1, html[lang="zh-CN"] h2 { font-family: var(--font-sans); line-height: 1.35; }
h1, h2, h3, .button, .coverage-city span { overflow-wrap: anywhere; }
.hero { min-height: 650px; }
.hero-content { padding-top: 140px; padding-bottom: 50px; }
.hero h1 { max-width: 740px; }
.hero-kicker { margin-bottom: 16px; font-size: .8rem; font-weight: 600; }
.hero-eyebrow, .light-eyebrow { color: #c9e7ff; }
.audience-strip { padding: 54px 0; background: #fff; }
.audience-intro { margin-bottom: 28px; }
.audience-intro h2 { font-size: 2rem; }
.audience-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; }
.audience-card { position: relative; display: flex; flex-direction: column; border-top: 2px solid var(--line); padding: 24px 0 0; }
.audience-card:hover { border-color: var(--coral); }
.audience-number { color: var(--muted); font-size: .8rem; }
.audience-card > svg { position: absolute; right: 0; top: 24px; color: var(--green); }
.audience-card h3 { font-size: 1.1rem; margin: 18px 0 10px; }
.audience-card p { color: var(--muted); font-size: .9rem; }
.audience-link { display: flex; align-items: center; gap: 8px; margin-top: auto; color: var(--green); font-weight: 600; font-size: .86rem; }
.price-card { position: relative; min-width: 0; }
.price-ribbon { position: absolute; top: -13px; right: 18px; padding: 5px 10px; color: #fff; font-size: .7rem; }
.price-card h3 { overflow-wrap: anywhere; }
.price-wide-content { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); }
.price-wide-content > * { min-width: 0; }
.price-wide-content .button { align-self: end; }
.coverage-layout { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 48px; }
.coverage-panel { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.coverage-city { min-width: 0; }
.success-actions { display: flex; flex-wrap: wrap; gap: 12px; }
#copy-status { min-height: 24px; margin: 12px 0 0; font-size: .85rem; }
.footer-legal { flex-wrap: wrap; }
.legal-page { padding-bottom: 0; }
.legal-header { display: flex; justify-content: space-between; align-items: center; padding-block: 26px; border-bottom: 1px solid var(--line); }
.legal-header > a { color: var(--green); font-size: 1.5rem; font-weight: 700; }
.legal-header .language-switch { background: var(--green-strong); }
.legal-content { max-width: 850px; padding-top: 56px; padding-bottom: 80px; }
.legal-content h1 { font-size: 2.5rem; }
.legal-content p { margin-bottom: 24px; }
.legal-links { display: flex; flex-wrap: wrap; gap: 28px; margin-top: 40px; }
@media (max-width: 1100px) and (min-width: 901px) {
  .desktop-nav { gap: 12px; font-size: .8rem; }
  .header-inner { gap: 14px; }
  .header-actions { gap: 8px; }
}
@media (max-width: 900px) {
  .coverage-layout { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .hero { min-height: 0; }
  .hero-content { padding-top: 110px; padding-bottom: 36px; }
  .hero h1 { font-size: 2.4rem; }
  h2 { font-size: 2rem; }
  .hero-kicker { font-size: .72rem; }
  .hero-eyebrow { font-size: .7rem; }
  .hero-lead { margin-bottom: 22px; }
  .hero-actions { flex-direction: row; gap: 8px; }
  .hero-actions .button { width: auto; flex: 1; min-width: 0; padding: 12px; font-size: .83rem; }
  .hero-note { font-size: .75rem; }
  .hero-meta { margin-top: 22px; gap: 8px 14px; font-size: .73rem; }
  .audience-grid, .price-wide-content { grid-template-columns: 1fr; }
  .coverage-panel { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .journey-timeline li { grid-template-columns: 32px 32px minmax(0, 1fr); }
  .journey-marker { width: 32px; height: 32px; }
  .price-card { padding: 26px 22px; }
  .success-actions { width: 100%; }
  .success-actions .button { width: 100%; }
}

/* Launch pricing, intake and evidence disclosure. */
:root {
  --ink: #10243d;
  --muted: #5b718b;
  --paper: #f5f9fe;
  --line: #d5e1ef;
}
.section { padding: 78px 0; }
.section-heading { margin-bottom: 36px; }
.hero { min-height: min(650px, 88svh); }
.hero h1 { font-size: 3.5rem; max-width: 860px; }
.hero-lead { max-width: 710px; }
.hero-price-line { display: flex; flex-wrap: wrap; gap: 12px 24px; margin: 0 0 26px; color: white; font-size: .9rem; }
.hero-price-line > span { padding-left: 13px; border-left: 2px solid #78c7ff; }
.hero-price-line strong { font-size: 1.1rem; }
.promise-section { padding: 48px 0; background: #0b5ec7; }
.promise-layout { gap: 42px; }
.promise-copy h2 { font-size: 2rem; }
.promise-flow-item { min-height: 130px; padding: 18px; }
.promise-flow-item span { margin-bottom: 16px; }
.visa-window-section { padding: 68px 0; background: #edf6ff; color: var(--ink); }
.visa-window-section::before { display: none; }
.visa-window-layout { gap: 48px; grid-template-columns: minmax(0, 1.2fr) minmax(0, .8fr); }
.visa-window-copy .eyebrow { color: #0b5ec7; }
.visa-window-copy > p:not(.eyebrow, .visa-window-note) { color: var(--muted); font-size: 1rem; }
.visa-window-steps, .visa-window-steps > div { border-color: #c8d9ec; }
.visa-window-steps > div { min-height: 102px; }
.visa-window-steps span { color: #0b5ec7; margin-bottom: 14px; }
.visa-window-actions .button-primary { background: #0b5ec7; color: white; }
.visa-window-actions .button-primary:hover { background: #084b9e; }
.policy-link, .policy-link:hover { color: #0a4f9d; }
.visa-window-note { color: #536a82; border-color: #c8d9ec; }
.visa-window-note svg { color: #0b5ec7; }
.visa-window-visual { min-height: 420px; box-shadow: none; }
.visa-window-visual::after { display: none; }
.visa-fee { display: flex; flex-wrap: wrap; align-items: baseline; gap: 12px; padding: 20px 0; }
.visa-fee strong { font-size: 1.8rem; color: #0b5ec7; }
.visa-fee span { font-size: .8rem; }
.services-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.service-card { min-height: 0; padding: 28px; }
.service-card:hover { transform: none; box-shadow: none; background: #f7fbff; }
.service-icon { margin-bottom: 24px; }
.service-index { top: 26px; right: 26px; }
.service-card h3 { font-size: 1.2rem; }
.service-request { margin-top: 22px; font-size: .85rem; }
.section-tinted { background: #edf6ff; }
.price-card { border-radius: 6px; min-height: 0; }
.price-card h3 { font: 600 1.4rem/1.25 var(--font-sans); }
.price-amount strong { font: 700 2.4rem/1.1 var(--font-sans); }
.price-card .check-list { margin-bottom: 28px; }
.price-card-wide h3 { min-height: 0; }
.price-wide-content { grid-template-columns: 1fr 1fr; align-items: start; }
.rate-rule { color: var(--muted); font-size: .84rem; margin: 18px 0 30px; }
.extras-list { border-top: 1px solid var(--line); }
.extras-list article { display: grid; grid-template-columns: 28px minmax(0, 1fr) 90px 74px; gap: 18px; align-items: center; padding: 22px 0; border-bottom: 1px solid var(--line); }
.extras-list article > svg { color: #0b5ec7; width: 24px; height: 24px; }
.extras-list h3 { margin: 0 0 5px; font-size: 1rem; }
.extras-list p { margin: 0; color: var(--muted); font-size: .86rem; }
.extras-list article > strong { color: #0a4f9d; font-size: 1.2rem; white-space: nowrap; }
.extras-list .text-link { justify-self: end; font-size: .87rem; }
.booking-rules { border-left: 3px solid #0b5ec7; padding-left: 20px; margin-top: 32px; }
.booking-rules h3 { font-size: 1.05rem; margin-bottom: 10px; }
.booking-rules p { color: var(--muted); font-size: .85rem; margin: 0; }
.estimate-section { background: #fff; }
.estimate-layout { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(0, .9fr); gap: 56px; align-items: start; }
.estimate-controls { display: grid; gap: 24px; min-width: 0; }
.estimate-addons { margin: 0; padding: 0; border: 0; min-width: 0; }
.estimate-addons legend { margin-bottom: 12px; font-weight: 700; font-size: .9rem; }
.estimate-addons label { display: grid; grid-template-columns: 20px minmax(0, 1fr) auto; gap: 12px; padding: 15px 0; align-items: start; border-top: 1px solid var(--line); font-size: .88rem; }
.estimate-addons label:has(input:disabled) { opacity: .45; }
.estimate-controls input[type="checkbox"] { width: 18px; height: 18px; accent-color: #0b5ec7; margin: 3px 0 0; }
.returning-check { display: flex; gap: 12px; font-size: .85rem; align-items: flex-start; }
.returning-check input { flex-shrink: 0; }
.estimate-result { border: 1px solid #c3d8ef; border-radius: 6px; padding: 30px; background: #f2f8ff; min-width: 0; }
.estimate-result .eyebrow { color: #0b5ec7; margin-bottom: 15px; }
#estimate-total { display: block; font-size: 2.8rem; font-weight: 700; color: #0a4f9d; min-height: 74px; line-height: 1.25; }
#estimate-lines { list-style: none; padding: 0; margin: 12px 0 22px; }
#estimate-lines li { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 16px; border-top: 1px solid #d2e2f3; padding: 12px 0; font-size: .83rem; }
.estimate-exclusions { color: var(--muted); font-size: .8rem; }
.estimate-result .button { width: 100%; }
.button:disabled { opacity: .5; cursor: not-allowed; transform: none; }
.estimate-disclaimer { text-align: center; font-size: .76rem; margin: 14px 0 0; color: var(--muted); }
.readiness-section { background: #eaf3ff; }
.readiness-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 28px; list-style: none; padding: 0; margin: 0; }
.readiness-grid li { border-top: 2px solid #2374c6; padding-top: 20px; }
.readiness-grid li > span { color: #0b5ec7; font-weight: 600; }
.readiness-grid h3 { margin: 18px 0 12px; font-size: 1.12rem; }
.readiness-grid p { color: var(--muted); font-size: .88rem; }
.readiness-note, .verification-note { color: var(--muted); border-top: 1px solid #c9d9e9; padding-top: 20px; font-size: .84rem; margin: 22px 0 0; }
.verification-section { background: #fff; }
.verification-list { border-top: 1px solid var(--line); }
.verification-list article { display: grid; grid-template-columns: minmax(0, 1fr) 160px; align-items: start; gap: 40px; border-bottom: 1px solid var(--line); padding: 26px 0; }
.verification-list h3 { margin: 10px 0 8px; font-size: 1.13rem; }
.verification-list p { color: var(--muted); font-size: .9rem; margin: 0; max-width: 860px; }
.verification-list article > a { display: inline-flex; gap: 8px; align-items: center; justify-self: end; color: #175d83; font-weight: 600; font-size: .86rem; }
.verification-list article > a:hover { text-decoration: underline; }
.evidence-label { display: inline-block; padding: 3px 8px; border-radius: 3px; color: #0a4f9d; background: #e5f1ff; font-size: .74rem; font-weight: 600; }
.evidence-own { color: #1b5b7b; background: #eaf3fa; }
.evidence-pending { color: #885013; background: #fbf0d9; }
.remote-fields { min-width: 0; margin: 0; border: 0; border-top: 1px solid var(--line); padding: 20px 0 0; }
.remote-fields legend { font-size: .88rem; font-weight: 700; padding-right: 10px; }
.remote-fields p { font-size: .77rem; color: var(--muted); margin: 15px 0 0; }
.inquiry-estimate { border-left: 3px solid #0b5ec7; padding: 14px 16px; background: #edf6ff; font-size: .82rem; }
.inquiry-estimate > div { display: flex; justify-content: space-between; align-items: center; gap: 12px; }
#attached-estimate-summary { white-space: pre-wrap; margin: 8px 0 0; }
.icon-button { display: inline-grid; place-items: center; flex: 0 0 36px; width: 36px; height: 36px; border: 1px solid var(--line); border-radius: 4px; color: #173f68; background: white; cursor: pointer; }
.icon-button:hover { background: #e5f1ff; }
.field select { max-width: 100%; }
.coverage-panel { background: #0b5ec7; }
.coverage-city strong { color: #bde1ff; }
.mobile-nav { overflow-y: auto; padding-bottom: 90px; }
@media (max-width: 1100px) {
  .desktop-nav { gap: 14px; }
  .header-inner { gap: 14px; }
  .services-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .readiness-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 900px) {
  .visa-window-layout, .estimate-layout { grid-template-columns: minmax(0, 1fr); gap: 32px; }
  .visa-window-visual { min-height: 300px; }
  .price-card h3, .price-sub { min-height: 0; }
}
@media (max-width: 640px) {
  .section { padding: 54px 0; }
  .section-heading { margin-bottom: 28px; }
  .hero h1 { font-size: 2.05rem; line-height: 1.18; }
  .hero { min-height: 0; }
  .hero-content { padding-top: 104px; padding-bottom: 26px; }
  .hero-lead { font-size: 1rem; line-height: 1.55; margin-bottom: 18px; }
  .hero-price-line { font-size: .8rem; gap: 8px 14px; margin-bottom: 20px; }
  .hero-price-line strong { font-size: 1rem; }
  .hero-note { margin-top: 16px; }
  .hero-meta { margin-top: 16px; }
  .promise-copy h2, .visa-window-copy h2 { font-size: 1.7rem; }
  .promise-section { padding: 36px 0; }
  .promise-flow { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .promise-flow-item { padding: 14px; }
  .visa-window-section { padding: 46px 0; }
  .visa-window-visual { min-height: 250px; }
  .services-grid, .readiness-grid, .price-wide-content { grid-template-columns: minmax(0, 1fr); }
  .service-card { padding: 24px; }
  .extras-list article { grid-template-columns: 24px minmax(0, 1fr) auto; gap: 12px; }
  .extras-list article > div { grid-column: 2 / -1; }
  .extras-list article > strong { grid-column: 2; font-size: 1.1rem; }
  .extras-list .text-link { grid-column: 3; }
  .estimate-result { padding: 24px 20px; }
  .verification-list article { grid-template-columns: minmax(0, 1fr); gap: 16px; }
  .verification-list article > a { justify-self: start; }
  .readiness-grid { gap: 16px; }
  .readiness-grid h3 { margin-top: 10px; }
}
@media (max-width: 380px) {
  .header-inner { gap: 8px; }
  .header-actions { gap: 6px; }
  .header-inner .brand { gap: 8px; }
  .header-inner .brand-mark { width: 32px; height: 32px; }
  .header-inner .brand-copy small { font-size: .49rem; }
  .header-inner .language-switch { min-width: 74px; }
}
