:root {
  --bg: #f6f7f4;
  --surface: #ffffff;
  --surface-soft: #eef2f1;
  --text: #233142;
  --muted: #647181;
  --primary: #00274c;
  --primary-dark: #001b36;
  --accent: #8d2631;
  --gold: #c6a96b;
  --border: #d9ddd8;
  --shadow: 0 18px 46px rgba(0, 39, 76, 0.08);
  --radius: 8px;
}

* { box-sizing: border-box; }
[hidden] { display: none !important; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", "Noto Sans CJK SC", Arial, sans-serif;
  color: var(--text);
  background: linear-gradient(180deg, #fbfcfb 0%, var(--bg) 100%);
  line-height: 1.68;
  overflow-x: clip;
}

body.nav-locked {
  overflow: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
p { color: var(--muted); margin: 0 0 14px; }

.container { width: min(1200px, calc(100% - 40px)); margin: 0 auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(251, 252, 251, 0.9);
  border-bottom: 1px solid rgba(217, 221, 216, 0.86);
  backdrop-filter: blur(14px);
}

.nav-wrap {
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.brand { display: flex; align-items: center; gap: 14px; min-width: 330px; flex: 0 0 auto; }
.brand-logo {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: contain;
  background: white;
  border: 1px solid var(--border);
  box-shadow: 0 10px 28px rgba(0, 39, 76, 0.08);
}

.brand-wordmark strong {
  display: block;
  color: var(--primary);
  font-weight: 800;
  font-size: 1.16rem;
  line-height: 1.12;
}

.brand-wordmark span {
  display: block;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.025em;
  text-transform: uppercase;
  white-space: nowrap;
  margin-top: 3px;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 14px;
  flex: 1 1 auto;
  min-width: 0;
  flex-wrap: nowrap;
  white-space: nowrap;
}

.nav a {
  font-size: 1rem;
  font-weight: 720;
  color: var(--text);
}

.nav a[aria-current='page'],
.nav a:hover { color: var(--accent); }

.nav a.btn,
.btn-cta {
  color: white;
}

.nav a.btn:hover {
  color: white;
}

.menu-toggle {
  display: none;
  align-items: center;
  gap: 9px;
  min-height: 42px;
  padding: 9px 13px;
  border: 1px solid var(--border);
  background: white;
  color: var(--primary);
  box-shadow: none;
}

.menu-toggle-lines,
.menu-toggle-lines::before,
.menu-toggle-lines::after {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle-lines {
  position: relative;
}

.menu-toggle-lines::before,
.menu-toggle-lines::after {
  content: '';
  position: absolute;
  left: 0;
}

.menu-toggle-lines::before {
  top: -6px;
}

.menu-toggle-lines::after {
  top: 6px;
}

body.nav-open .menu-toggle-lines {
  background: transparent;
}

body.nav-open .menu-toggle-lines::before {
  transform: translateY(6px) rotate(45deg);
}

body.nav-open .menu-toggle-lines::after {
  transform: translateY(-6px) rotate(-45deg);
}

.btn,
button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  min-height: 42px;
  padding: 11px 18px;
  font: inherit;
  font-weight: 750;
  letter-spacing: 0;
  cursor: pointer;
}

.btn {
  background: var(--primary);
  color: white;
  box-shadow: 0 12px 30px rgba(0, 39, 76, 0.14);
}

.btn-sm { min-height: 42px; padding: 10px 16px; font-size: 0.96rem; }
.btn-cta { background: linear-gradient(135deg, var(--accent), #b43a49); }
.btn-secondary {
  background: #eef2f6;
  color: var(--primary);
  border: 1px solid var(--border);
  box-shadow: none;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible,
[tabindex="0"]:focus-visible {
  outline: 3px solid rgba(198, 169, 107, 0.62);
  outline-offset: 3px;
}

.lang-link {
  border: 1px solid var(--border);
  background: white;
  padding: 9px 16px;
  border-radius: 999px;
  flex: 0 0 auto;
}

.hero { padding: 64px 0 54px; }
.hero:not(.hero-premium) {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 340px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(217, 221, 216, 0.82);
  background: #f4f5f0;
}
.hero:not(.hero-premium)::before,
.hero:not(.hero-premium)::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hero:not(.hero-premium)::before {
  z-index: -2;
  background-image: url('/assets/global-hero-campus-advising.png');
  background-size: cover;
  background-position: 62% center;
  transform: scale(1.015);
}
.hero:not(.hero-premium)::after {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(251, 252, 251, 0.98) 0%, rgba(251, 252, 251, 0.93) 42%, rgba(251, 252, 251, 0.7) 66%, rgba(251, 252, 251, 0.34) 100%),
    linear-gradient(180deg, rgba(0, 39, 76, 0.07) 0%, rgba(141, 38, 49, 0.05) 100%);
}

.hero-contact {
  min-height: 280px;
  padding: 48px 0 40px;
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(310px, 0.72fr);
  gap: 52px;
  align-items: center;
}

.hero-premium {
  position: relative;
  isolation: isolate;
  min-height: clamp(590px, 78svh, 760px);
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 0;
  background: #f5f3ec;
}

.hero-premium::before,
.hero-premium::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-premium::before {
  z-index: -2;
  background-image: url('/assets/global-hero-campus-advising.png');
  background-size: cover;
  background-position: center;
  transform: scale(1.01);
}

.hero-premium::after {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(248, 250, 248, 0.98) 0%, rgba(248, 250, 248, 0.92) 33%, rgba(248, 250, 248, 0.54) 58%, rgba(248, 250, 248, 0.12) 100%),
    linear-gradient(180deg, rgba(0, 39, 76, 0.05) 0%, rgba(141, 38, 49, 0.06) 100%);
}

.hero-premium-inner {
  padding: 72px 0 88px;
}

.hero-premium-copy {
  max-width: 700px;
}

.hero-premium h1 {
  max-width: 760px;
  font-size: clamp(2.85rem, 5.2vw, 4.95rem);
  line-height: 1;
  margin-bottom: 22px;
}

.hero-premium h1 span {
  display: block;
}

html[lang='zh-CN'] .hero-premium h1 {
  max-width: 10.2em;
  font-size: clamp(2.1rem, 5vw, 4.35rem);
  line-height: 1.02;
}

.hero-premium .lead {
  max-width: 57ch;
  color: #35475b;
  font-size: clamp(1.08rem, 1.34vw, 1.28rem);
}

.hero-premium .badge {
  background: rgba(255, 255, 255, 0.72);
  border-color: rgba(217, 221, 216, 0.84);
  backdrop-filter: blur(10px);
}

.hero-contact-link {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  color: var(--primary);
  font-weight: 800;
}

.hero-proof {
  max-width: 690px;
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  overflow: hidden;
  border: 1px solid rgba(217, 221, 216, 0.82);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.38);
  backdrop-filter: blur(16px);
}

.hero-proof span {
  padding: 14px 16px;
  color: var(--primary);
  background: rgba(255, 255, 255, 0.58);
  font-size: 0.9rem;
  font-weight: 780;
}

.hero-proof span + span {
  border-left: 1px solid rgba(217, 221, 216, 0.82);
}

.eyebrow {
  color: var(--accent);
  font-weight: 800;
  font-size: 0.86rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin: 0 0 14px;
}

h1, h2 {
  font-family: Georgia, "Times New Roman", Times, serif;
  color: var(--primary);
  letter-spacing: 0;
  text-wrap: balance;
}

html[lang='zh-CN'] h1,
html[lang='zh-CN'] h2 {
  font-family: "Songti SC", STSong, "Noto Serif CJK SC", Georgia, serif;
  font-weight: 700;
}

h1 {
  max-width: 19ch;
  margin: 0 0 18px;
  font-size: clamp(2.2rem, 5vw, 4.9rem);
  line-height: 0.98;
}

html[lang='zh-CN'] h1 {
  word-break: keep-all;
  overflow-wrap: normal;
}

html[lang='zh-CN'] h2 {
  word-break: normal;
  overflow-wrap: anywhere;
}

h2 {
  margin: 0 0 14px;
  font-size: clamp(1.55rem, 2.4vw, 2.35rem);
  line-height: 1.16;
}

h3 {
  color: var(--primary);
  font-size: 1.04rem;
  margin: 0 0 8px;
}

.lead {
  font-size: clamp(1.02rem, 1.4vw, 1.18rem);
  max-width: 64ch;
}

.badge-row { display: flex; flex-wrap: wrap; gap: 9px; margin: 22px 0 0; }
.badge {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 12px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(255,255,255,0.9);
  color: var(--primary);
  font-size: 0.82rem;
  font-weight: 750;
}

.hero-actions, .cta-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 26px; }

.hero-simple {
  max-width: 1200px;
}

.hero-simple .hero-copy {
  max-width: 780px;
}

.hero-simple h1 {
  max-width: 16ch;
}

.hero-services h1 {
  max-width: 20ch;
  font-size: 3.65rem;
  line-height: 1.04;
}

.hero-simple h1 span {
  display: block;
}

html[lang='zh-CN'] .hero-simple h1 {
  max-width: 15ch;
  font-size: clamp(2.3rem, 4.8vw, 4.2rem);
  line-height: 1.08;
}

.hero-panel,
.card,
.panel,
.contact-card,
.step,
.trust-item,
.why-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-panel {
  padding: 28px;
  background: linear-gradient(180deg, #fff 0%, #f7f0e4 100%);
}

.mini-logo {
  width: 96px;
  height: 96px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: white;
  border: 1px solid var(--border);
  margin-bottom: 18px;
}

.mini-logo img { width: 78px; height: 78px; object-fit: contain; }
.hero-panel h2 { font-size: 1.38rem; }
.hero-panel a { color: var(--primary); font-weight: 800; }

.wechat-qr {
  width: min(100%, 260px);
  margin: 18px auto 16px;
  border-radius: 8px;
  border: 1px solid var(--border);
}

.wechat-qr.small { width: 180px; margin-left: 0; }

.section { padding: 76px 0; }
.section-soft {
  background: linear-gradient(180deg, #eef3f8 0%, #f6f7f4 100%);
  border-top: 1px solid rgba(217, 221, 216, 0.72);
  border-bottom: 1px solid rgba(217, 221, 216, 0.72);
}

.section-head { max-width: 820px; margin-bottom: 30px; }
.split { display: grid; grid-template-columns: 0.95fr 1.05fr; gap: 34px; align-items: start; }
.why-section {
  padding: 88px 0;
}
.why-split {
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  align-items: center;
  gap: 54px;
}
.text-link {
  display: inline-flex;
  margin-top: 10px;
  color: var(--primary);
  font-weight: 820;
  border-bottom: 2px solid rgba(198, 169, 107, 0.9);
}
.why-note {
  margin: 24px 0 8px;
  padding: 18px 20px;
  border-left: 4px solid var(--gold);
  background: rgba(255, 255, 255, 0.56);
  border-radius: var(--radius);
}
.why-note strong {
  display: block;
  color: var(--primary);
  margin-bottom: 6px;
}
.why-note span {
  display: block;
  color: var(--muted);
}
.why-card {
  padding: 30px;
}
.why-bullets {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 14px;
}
.why-bullets {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px 18px;
}
.why-bullets li {
  position: relative;
  padding-left: 24px;
  color: var(--text);
  font-weight: 680;
  line-height: 1.54;
}
.why-bullets li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
}

.card-grid { display: grid; gap: 20px; }
.card-grid.three { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.card-grid.four { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.card-grid.five { grid-template-columns: repeat(5, minmax(0, 1fr)); }

.card, .panel, .contact-card { padding: 26px; }
.card, .panel, .contact-card { min-width: 0; }
.card h2,
.panel h2,
.contact-card h2,
.why-card h2,
.step h2 {
  max-width: 100%;
  font-size: clamp(1.35rem, 1.65vw, 1.82rem);
  line-height: 1.22;
}
html[lang='zh-CN'] .card h2,
html[lang='zh-CN'] .panel h2,
html[lang='zh-CN'] .contact-card h2,
html[lang='zh-CN'] .why-card h2,
html[lang='zh-CN'] .step h2 {
  font-size: clamp(1.42rem, 1.58vw, 1.78rem);
  line-height: 1.24;
  word-break: normal;
  overflow-wrap: anywhere;
}
.service-entry { border-top: 4px solid var(--gold); }
.card-grid.five .service-entry {
  padding: 22px 18px;
}
.card-grid.five .service-entry h3 {
  font-size: 0.98rem;
  line-height: 1.28;
}
.card-grid.five .service-entry p {
  font-size: 0.9rem;
  line-height: 1.58;
}
.module-card { min-height: 190px; }
.help-card {
  min-height: 218px;
  border-top: 4px solid var(--gold);
}
.help-card h3 {
  line-height: 1.28;
}
.trust-grid { display: grid; gap: 14px; }
.trust-grid-compact {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
.trust-item { padding: 18px; }
.trust-grid-compact .trust-item {
  min-height: 204px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
.trust-item strong { display: block; color: var(--primary); margin-bottom: 6px; }
.trust-item span { color: var(--muted); font-size: 0.95rem; }
.trust-grid-compact .trust-item strong {
  font-size: 1.05rem;
  line-height: 1.32;
}
.trust-grid-compact .trust-item span {
  font-size: 0.95rem;
  line-height: 1.62;
}

.steps { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }
.process-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.step { padding: 22px; }
.step span {
  width: 36px;
  height: 36px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  background: #f1e3c8;
  color: var(--primary);
  font-weight: 800;
  margin-bottom: 12px;
}

.process-step {
  min-height: 214px;
  border-top: 4px solid var(--gold);
}

.process-step h3 {
  line-height: 1.3;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

#packages,
.package-detail {
  scroll-margin-top: 112px;
}

.pricing-overview .section-head {
  max-width: 900px;
}

.scope-note,
.credit-note {
  display: grid;
  grid-template-columns: minmax(170px, 0.28fr) minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  margin: 0 0 28px;
  padding: 18px 20px;
  border-left: 4px solid var(--gold);
  background: #f4f0e7;
}

.scope-note strong,
.credit-note strong {
  color: var(--primary);
}

.scope-note span,
.credit-note span {
  color: var(--muted);
}

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

.package-card {
  min-width: 0;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--border);
  border-top: 4px solid var(--gold);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.package-card-head,
.package-card-body,
.package-card-footer {
  padding: 24px 26px;
}

.package-card-head {
  min-height: 210px;
  border-bottom: 1px solid var(--border);
}

.package-card h3 {
  margin-bottom: 12px;
  font-size: 1.24rem;
  line-height: 1.28;
}

.package-price,
.addon-price {
  margin: 0 0 12px;
  color: var(--primary);
  font-family: Georgia, "Times New Roman", Times, serif;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.1;
}

html[lang='zh-CN'] .package-price,
html[lang='zh-CN'] .addon-price {
  font-family: "Songti SC", STSong, "Noto Serif CJK SC", Georgia, serif;
}

.package-card-body {
  flex: 1;
}

.package-label {
  margin-bottom: 10px;
  color: var(--primary);
  font-size: 0.83rem;
  font-weight: 820;
  text-transform: uppercase;
}

.check-list,
.policy-block ul,
.boundary-grid ul,
.package-detail-group ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 8px;
}

.check-list li,
.policy-block li,
.boundary-grid li,
.package-detail-group li {
  position: relative;
  padding-left: 20px;
  color: var(--muted);
}

.package-card .check-list {
  gap: 6px;
}

.package-card .check-list li {
  font-size: 0.9rem;
  line-height: 1.5;
}

.check-list li::before,
.policy-block li::before,
.boundary-grid li::before,
.package-detail-group li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
}

.package-card-footer {
  display: grid;
  gap: 14px;
  border-top: 1px solid var(--border);
  background: #fbfcfb;
}

.package-card-footer p {
  margin: 0;
  font-size: 0.92rem;
}

.package-card-footer strong {
  color: var(--primary);
}

.package-card-footer .btn {
  justify-self: start;
}

.pricing-reason-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.pricing-reason-grid article {
  min-width: 0;
  padding: 22px;
}

.pricing-reason-grid article + article {
  border-left: 1px solid var(--border);
}

.pricing-reason-grid h3 {
  margin-bottom: 10px;
}

.pricing-reason-grid p {
  margin: 0;
  font-size: 0.94rem;
}

.planning-step {
  min-height: 248px;
  border-top: 4px solid var(--gold);
}

.planning-step h3 {
  line-height: 1.3;
}

.package-detail-list {
  display: grid;
  gap: 14px;
}

.package-detail {
  padding: 0;
  overflow: hidden;
}

.package-detail summary {
  min-height: 76px;
  padding: 20px 24px;
  font-size: 1.08rem;
}

.package-detail summary strong {
  margin-left: auto;
  color: var(--accent);
  white-space: nowrap;
}

.package-detail summary::after {
  margin-left: 6px;
}

.package-detail-content {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px 34px;
  padding: 26px 24px 30px;
  border-top: 1px solid var(--border);
}

.package-detail-group {
  min-width: 0;
  padding-left: 16px;
  border-left: 3px solid var(--gold);
}

.package-detail-group h3 {
  margin-bottom: 12px;
}

.phd-scope-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 28px;
  margin-top: 34px;
  padding-top: 34px;
  border-top: 1px solid var(--border);
}

.phd-exclusions {
  min-width: 0;
}

.phd-exclusions {
  padding: 24px;
  border-left: 4px solid var(--accent);
  background: rgba(255, 255, 255, 0.72);
}

.phd-exclusions h3,
.funding-note h3 {
  margin-bottom: 12px;
  font-size: 1.18rem;
  line-height: 1.3;
}

.phd-exclusions ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 8px;
}

.phd-exclusions li {
  position: relative;
  padding-left: 20px;
  color: var(--muted);
}

.phd-exclusions li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
}

.funding-note {
  margin-top: 28px;
  padding: 24px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.funding-list {
  list-style: none;
  padding: 0;
  margin: 16px 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px 16px;
}

.funding-list li {
  min-width: 0;
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  color: var(--primary);
  font-size: 0.9rem;
  font-weight: 720;
}

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

.addon-item {
  min-width: 0;
  padding: 24px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.addon-item h3 {
  margin-bottom: 8px;
}

.addon-price {
  font-size: 1.8rem;
}

.addon-note,
.rush-note {
  margin: 18px 0 0;
  padding-top: 14px;
  border-top: 1px solid var(--border);
  color: var(--primary);
  font-size: 0.9rem;
  font-weight: 720;
}

.price-table-wrap {
  max-width: 100%;
  overflow-x: auto;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: white;
  box-shadow: var(--shadow);
}

.price-table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
  font-size: 0.92rem;
}

.price-table th,
.price-table td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--border);
  text-align: left;
  vertical-align: top;
}

.price-table thead th {
  background: var(--primary);
  color: white;
  font-weight: 800;
}

.price-table tbody th {
  width: 48%;
  color: var(--primary);
  font-weight: 720;
}

.price-table tbody td {
  white-space: nowrap;
}

.price-table tbody tr:nth-child(even) {
  background: #f7f8f6;
}

.price-table tbody tr:last-child th,
.price-table tbody tr:last-child td {
  border-bottom: 0;
}

.specialty-services {
  display: grid;
  grid-template-columns: minmax(190px, 0.35fr) minmax(0, 1fr);
  gap: 24px;
  margin-top: 28px;
  padding-top: 26px;
  border-top: 1px solid var(--border);
}

.active-client-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.active-client-steps p {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  gap: 12px;
  margin: 0;
  padding: 22px 24px;
  border-right: 1px solid var(--border);
}

.active-client-steps p:last-child {
  border-right: 0;
}

.active-client-steps strong {
  color: var(--accent);
}

.policy-grid,
.boundary-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 54px;
}

.policy-block {
  min-width: 0;
}

.policy-block h2 {
  max-width: 19ch;
}

.policy-block p,
.policy-block li {
  line-height: 1.7;
}

.boundary-section .section-head {
  max-width: 900px;
}

.ethics-statement {
  margin: 0 0 34px;
  padding: 24px;
  border-left: 4px solid var(--accent);
  background: white;
}

.ethics-statement strong {
  display: block;
  margin-bottom: 7px;
  color: var(--primary);
  font-size: 1.06rem;
}

.ethics-statement p {
  margin: 0;
}

.boundary-grid section {
  min-width: 0;
  padding-top: 22px;
  border-top: 1px solid var(--border);
}

.boundary-grid h3 {
  margin-bottom: 14px;
}

.no-guarantee {
  margin: 34px 0 0;
  padding: 20px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  color: var(--primary);
  font-weight: 720;
}

.credit-note {
  margin: 28px 0 0;
}

.consultation-terms-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  gap: 64px;
  align-items: start;
}

#strategy-consultation {
  scroll-margin-top: 88px;
}

.consultation-terms-layout h2 {
  max-width: 18ch;
}

.consultation-terms-layout ul {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--border);
  list-style: none;
}

.consultation-terms-layout li {
  position: relative;
  padding: 16px 0 16px 24px;
  border-bottom: 1px solid var(--border);
  color: var(--muted);
  line-height: 1.62;
}

.consultation-terms-layout li::before {
  content: '';
  position: absolute;
  top: 25px;
  left: 4px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
}

.consultation-terms-note {
  margin-top: 18px;
  color: var(--primary);
  font-weight: 720;
}

.pricing-cta-actions {
  max-width: 380px;
  display: grid;
}

.pricing-cta-actions span,
.cta-price-note {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.88rem;
  line-height: 1.55;
}

.cta-price-note {
  margin-top: 16px;
}

.cta-band {
  background: var(--primary);
  color: white;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.cta-band h2,
.cta-band .eyebrow,
.cta-band p { color: white; }
.cta-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
}

.pathway-decision-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.pathway-decision-grid article {
  min-width: 0;
  padding: 24px;
}

.pathway-decision-grid article + article {
  border-left: 1px solid var(--border);
}

.pathway-decision-grid article > span,
.pathway-index > span {
  display: block;
  margin-bottom: 10px;
  color: var(--accent);
  font-size: 0.74rem;
  font-weight: 850;
}

.pathway-decision-grid p {
  margin-bottom: 0;
  font-size: 0.94rem;
}

.pathway-route-nav {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin-bottom: 54px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.pathway-route-nav a {
  min-width: 0;
  min-height: 78px;
  display: grid;
  align-content: center;
  gap: 3px;
  padding: 14px 18px;
  color: var(--primary);
}

.pathway-route-nav a + a {
  border-left: 1px solid var(--border);
}

.pathway-route-nav a:hover {
  background: var(--surface-soft);
  color: var(--accent);
}

.pathway-route-nav span {
  color: var(--gold);
  font-size: 0.7rem;
  font-weight: 850;
}

.pathway-route-nav strong {
  font-size: 0.93rem;
  line-height: 1.3;
}

.pathway-roadmap-list {
  display: grid;
  gap: 42px;
}

.pathway-roadmap {
  min-width: 0;
  scroll-margin-top: 112px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.pathway-roadmap-head {
  padding: 30px 32px 28px;
}

.pathway-index {
  display: flex;
  align-items: baseline;
  gap: 10px;
}

.pathway-index > span,
.pathway-index .eyebrow {
  margin-bottom: 8px;
}

.pathway-roadmap-head h2 {
  max-width: 820px;
  font-size: clamp(1.55rem, 2.35vw, 2.2rem);
}

.pathway-roadmap-head > p:not(.pathway-timing) {
  max-width: 820px;
  margin-bottom: 18px;
}

.pathway-timing {
  display: flex;
  flex-wrap: wrap;
  gap: 7px 14px;
  margin: 0;
  padding-top: 16px;
  border-top: 1px solid var(--border);
  font-size: 0.92rem;
}

.pathway-timing strong {
  color: var(--accent);
}

.pathway-roadmap-body {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.pathway-roadmap-body section {
  min-width: 0;
  padding: 28px 32px;
}

.pathway-roadmap-body section + section {
  border-left: 1px solid var(--border);
}

.pathway-roadmap-body h3 {
  margin-bottom: 14px;
  font-size: 1.08rem;
}

.pathway-roadmap-body ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.pathway-roadmap-body li {
  position: relative;
  padding-left: 18px;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.62;
}

.pathway-roadmap-body li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
}

.pathway-next {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  padding: 24px 32px;
  background: var(--surface-soft);
}

.pathway-next strong {
  color: var(--primary);
}

.pathway-next p {
  margin: 4px 0 0;
  font-size: 0.92rem;
}

.pathway-distinction-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.pathway-distinction-grid article {
  min-width: 0;
  padding: 24px;
}

.pathway-distinction-grid article + article {
  border-left: 1px solid var(--border);
}

.pathway-distinction-grid p {
  margin-bottom: 0;
  font-size: 0.94rem;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(300px, 0.82fr);
  gap: 24px;
  align-items: start;
}

.contact-section {
  padding-top: 46px;
}

.contact-list { display: grid; gap: 10px; margin: 18px 0; }
.contact-list a { color: var(--primary); font-weight: 800; }

.company-info {
  align-items: center;
}

.company-card .contact-list {
  margin: 0;
}

.faq-list {
  display: grid;
  gap: 14px;
}

details {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 18px 20px;
}

summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: var(--primary);
  cursor: pointer;
  font-weight: 800;
  list-style: none;
}

summary::after {
  content: '+';
  flex: 0 0 auto;
  color: var(--accent);
  font-size: 1.15rem;
  line-height: 1;
}

details[open] summary::after {
  content: '-';
}

summary:focus-visible {
  outline: 3px solid rgba(198, 169, 107, 0.55);
  outline-offset: 4px;
  border-radius: 6px;
}

summary::-webkit-details-marker {
  display: none;
}

summary + p {
  margin-top: 12px;
  font-size: 1rem;
  line-height: 1.66;
}

.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.full { grid-column: 1 / -1; }

label { display: grid; gap: 8px; color: var(--primary); font-weight: 750; }
label span { color: var(--primary); }
input, textarea, select {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 12px 13px;
  background: white;
  color: var(--text);
  font: inherit;
}

textarea { min-height: 132px; resize: vertical; }
.form-note, .form-status, .disclaimer { font-size: 0.94rem; }
.form-status { min-height: 24px; color: var(--primary); font-weight: 750; }
.form-status.is-success { color: #20633a; }
button:disabled { opacity: 0.62; cursor: wait; }

.privacy-note {
  font-size: 0.9rem;
  line-height: 1.58;
}

.privacy-note a,
.footer-links a {
  color: var(--primary);
  font-weight: 800;
  border-bottom: 1px solid rgba(198, 169, 107, 0.72);
}

.honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.js-enabled .contact-channel {
  display: none;
}

.js-enabled .contact-channel.is-active {
  display: grid;
}

#consultation-form,
#wechat {
  scroll-margin-top: 112px;
}

.hero-onboarding h1 {
  max-width: 18ch;
}

.onboarding-preview-band {
  background: #fff7e8;
  border-top: 1px solid #ead9b7;
  border-bottom: 1px solid #ead9b7;
}

.onboarding-preview-band .container {
  display: grid;
  grid-template-columns: minmax(200px, 0.32fr) minmax(0, 1fr);
  gap: 28px;
  align-items: center;
  padding-top: 18px;
  padding-bottom: 18px;
}

.onboarding-preview-band strong {
  color: var(--primary);
}

.onboarding-preview-band p {
  margin: 0;
  color: #5e513a;
}

.onboarding-before-list {
  border-top: 1px solid var(--border);
}

.onboarding-before-list article {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 22px;
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
}

.onboarding-before-list article > span {
  color: var(--accent);
  font-weight: 840;
}

.onboarding-before-list h3 {
  margin-bottom: 5px;
  font-size: 1.08rem;
}

.onboarding-before-list p {
  margin: 0;
}

.onboarding-form-section {
  background: #eef3f8;
}

.onboarding-form {
  scroll-margin-top: 112px;
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.onboarding-step-nav {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-bottom: 1px solid var(--border);
  background: #f7f9f8;
}

.onboarding-step-nav button {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 16px;
  border: 0;
  border-right: 1px solid var(--border);
  border-radius: 0;
  background: transparent;
  color: var(--muted);
  font: inherit;
  font-weight: 760;
  cursor: pointer;
}

.onboarding-step-nav button:last-child {
  border-right: 0;
}

.onboarding-step-nav button span {
  color: var(--accent);
  font-size: 0.82rem;
}

.onboarding-step-nav button[aria-current='step'] {
  color: var(--primary);
  background: white;
  box-shadow: inset 0 -4px 0 var(--gold);
}

.onboarding-step-nav button:disabled {
  cursor: not-allowed;
}

.onboarding-panel {
  padding: 34px;
}

.onboarding-panel-head {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  margin-bottom: 28px;
}

.onboarding-panel-head > span {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  background: #f1e3c8;
  color: var(--primary);
  border-radius: 50%;
  font-weight: 840;
}

.onboarding-panel-head h3 {
  margin: 1px 0 5px;
  font-size: 1.42rem;
}

.onboarding-panel-head p {
  margin: 0;
}

.onboarding-grid {
  gap: 18px 20px;
}

.field-help {
  margin: -9px 0 2px;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.5;
}

.required-mark {
  display: inline;
  margin-left: 5px;
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 820;
}

.choice-fieldset,
.applicant-entry {
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
}

.choice-fieldset {
  margin-bottom: 24px;
}

.choice-fieldset legend {
  margin-bottom: 10px;
  color: var(--primary);
  font-weight: 780;
}

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

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

.choice-option {
  min-height: 64px;
  grid-template-columns: 20px minmax(0, 1fr);
  align-items: center;
  gap: 10px;
  padding: 13px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #fbfcfb;
  cursor: pointer;
}

.choice-option:has(input:checked) {
  border-color: var(--gold);
  background: #fffaf0;
  box-shadow: inset 0 0 0 1px var(--gold);
}

.choice-option input,
.check-row input {
  width: 18px;
  height: 18px;
  margin: 0;
  accent-color: var(--primary);
}

.choice-option span {
  color: var(--text);
  line-height: 1.42;
}

.check-row {
  display: grid;
  grid-template-columns: 20px minmax(0, 1fr);
  align-items: start;
  gap: 11px;
  color: var(--text);
  font-weight: 650;
  line-height: 1.55;
}

.check-row input {
  margin-top: 4px;
}

.optional-client {
  margin-top: 26px;
  box-shadow: none;
}

.optional-client .form-grid {
  margin-top: 18px;
}

.applicant-entry {
  padding: 0 0 30px;
  margin-bottom: 30px;
  border-bottom: 1px solid var(--border);
}

.applicant-entry-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}

.applicant-entry-head legend {
  color: var(--primary);
  font-size: 1.12rem;
  font-weight: 820;
}

.adult-applicant-fields {
  display: grid;
  gap: 16px;
  margin: 2px 0 4px;
  padding: 20px;
  border-left: 4px solid var(--gold);
  background: #f7f9f8;
}

.adult-applicant-fields[hidden] {
  display: none;
}

.adult-applicant-fields-head strong {
  display: block;
  margin-bottom: 4px;
  color: var(--primary);
}

.adult-applicant-fields-head p {
  margin: 0;
  font-size: 0.92rem;
}

.applicant-additional small {
  display: block;
  margin-top: 7px;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 560;
  line-height: 1.5;
}

.applicant-additional {
  display: grid;
  gap: 8px;
}

.applicant-additional[hidden] {
  display: none;
}

.applicant-additional .field-label {
  color: var(--primary);
  font-weight: 750;
}

.quantity-stepper {
  display: grid;
  grid-template-columns: 44px 68px 44px;
  width: max-content;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: white;
}

.quantity-stepper button {
  min-height: 44px;
  padding: 0;
  border-radius: 0;
  background: #f4f6f7;
  color: var(--primary);
  font-size: 1.25rem;
  font-weight: 800;
}

.quantity-stepper input {
  width: 68px;
  min-height: 44px;
  padding: 8px 4px;
  border: 0;
  border-right: 1px solid var(--border);
  border-left: 1px solid var(--border);
  border-radius: 0;
  text-align: center;
  font-weight: 800;
  appearance: textfield;
}

.quantity-stepper input::-webkit-inner-spin-button,
.quantity-stepper input::-webkit-outer-spin-button {
  margin: 0;
  appearance: none;
}

.quantity-stepper button:disabled {
  cursor: default;
  opacity: 0.34;
}

.text-button {
  padding: 4px 0;
  border: 0;
  border-bottom: 1px solid currentColor;
  border-radius: 0;
  background: transparent;
  color: var(--accent);
  font: inherit;
  font-weight: 760;
  cursor: pointer;
}

.add-applicant {
  margin-top: -8px;
}

.onboarding-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

.scope-summary {
  margin-bottom: 24px;
  padding: 18px 20px;
  border-left: 4px solid var(--gold);
  background: #f7f9f8;
}

.scope-summary strong {
  display: block;
  color: var(--primary);
  margin-bottom: 5px;
}

.scope-summary p:last-child {
  margin-bottom: 0;
}

.agreement-terms-note {
  padding: 18px 20px;
  background: #f7f9f8;
  border-left: 4px solid var(--gold);
}

.agreement-terms-note strong {
  display: block;
  margin-bottom: 5px;
  color: var(--primary);
}

.agreement-terms-note p {
  margin: 0;
}

.agreement-terms-note ul {
  display: grid;
  gap: 8px;
  margin: 14px 0 0;
  padding-left: 22px;
  color: var(--text);
}

.agreement-terms-note li {
  line-height: 1.58;
}

.agreement-terms-note li::marker {
  color: var(--accent);
}

.phone-input {
  display: grid;
  grid-template-columns: minmax(142px, 0.36fr) minmax(0, 1fr);
  gap: 10px;
}

.phone-input select,
.phone-input input {
  min-width: 0;
}

.onboarding-review {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--border);
}

.onboarding-review section {
  display: grid;
  grid-template-columns: minmax(170px, 0.34fr) minmax(0, 1fr);
  gap: 24px;
  padding: 22px 0;
  border-bottom: 1px solid var(--border);
}

.onboarding-review h4 {
  margin: 0;
  color: var(--primary);
  font-size: 1rem;
}

.onboarding-review dl {
  display: grid;
  grid-template-columns: minmax(120px, 0.35fr) minmax(0, 1fr);
  gap: 7px 16px;
  margin: 0;
}

.onboarding-review dt {
  color: var(--muted);
  font-weight: 700;
}

.onboarding-review dd {
  min-width: 0;
  margin: 0;
  color: var(--text);
  overflow-wrap: anywhere;
}

.review-confirmations {
  display: grid;
  gap: 14px;
  margin-top: 26px;
}

.onboarding-submit-actions > div {
  display: flex;
  gap: 12px;
}

.privacy-notice-section {
  background: #fbfcfb;
}

.privacy-overview {
  margin-bottom: 54px;
  padding: 30px 0 34px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.privacy-intro {
  max-width: 920px;
}

.privacy-intro p:last-child {
  margin-bottom: 0;
}

.privacy-layout {
  display: grid;
  grid-template-columns: minmax(190px, 240px) minmax(0, 820px);
  justify-content: space-between;
  gap: 72px;
  align-items: start;
}

.privacy-toc {
  position: sticky;
  top: 116px;
  padding-left: 18px;
  border-left: 3px solid var(--gold);
}

.privacy-toc h2 {
  margin-bottom: 14px;
  font-size: 1rem;
}

.privacy-toc ol {
  list-style: none;
  display: grid;
  gap: 7px;
  margin: 0;
  padding: 0;
}

.privacy-toc a {
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr);
  gap: 7px;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.4;
}

.privacy-toc a:hover {
  color: var(--accent);
}

.privacy-toc a span {
  color: var(--gold);
  font-weight: 800;
}

.privacy-document {
  min-width: 0;
}

.privacy-section {
  scroll-margin-top: 116px;
  margin-bottom: 38px;
  padding-bottom: 38px;
  border-bottom: 1px solid var(--border);
}

.privacy-section:last-child {
  margin-bottom: 0;
  border-bottom: 0;
}

.privacy-section-number {
  margin-bottom: 6px;
  color: var(--accent);
  font-size: 0.74rem;
  font-weight: 850;
}

.privacy-section h2 {
  margin-bottom: 18px;
  font-size: clamp(1.3rem, 1.8vw, 1.72rem);
}

.privacy-section h3 {
  margin: 24px 0 10px;
  font-size: 1.04rem;
}

.privacy-section p,
.privacy-section li {
  font-size: 0.97rem;
  line-height: 1.72;
}

.privacy-section ul {
  display: grid;
  gap: 7px;
  margin: 14px 0 18px;
  padding-left: 22px;
  color: var(--muted);
}

.privacy-section li::marker {
  color: var(--gold);
}

.privacy-closing {
  margin-top: 18px;
  color: var(--text);
  font-weight: 650;
}

.privacy-email-prompt a,
.privacy-contact a {
  color: var(--primary);
  font-weight: 800;
  border-bottom: 1px solid rgba(198, 169, 107, 0.72);
}

.privacy-contact {
  display: grid;
  gap: 3px;
  margin: 20px 0;
  padding: 20px 0 20px 18px;
  border-left: 3px solid var(--gold);
  color: var(--muted);
  font-style: normal;
}

.privacy-contact strong {
  color: var(--primary);
}

@media (max-width: 1020px) {
  .privacy-layout {
    grid-template-columns: minmax(0, 1fr);
    gap: 46px;
  }

  .privacy-toc {
    position: static;
  }

  .privacy-toc ol {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 28px;
  }
}

@media (max-width: 720px) {
  .privacy-overview {
    margin-bottom: 40px;
    padding: 22px 0 28px;
  }

  .privacy-toc ol {
    grid-template-columns: minmax(0, 1fr);
  }

  .privacy-section {
    margin-bottom: 30px;
    padding-bottom: 30px;
  }
}

.site-footer {
  padding: 24px 0;
  border-top: 1px solid var(--border);
  background: #fbfcfb;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) auto;
  gap: 22px;
  align-items: center;
  color: var(--muted);
  font-size: 0.86rem;
}

.footer-brand strong {
  display: block;
  color: var(--primary);
  font-size: 1rem;
  font-weight: 820;
  margin-bottom: 4px;
}

.footer-qr {
  display: grid;
  justify-items: center;
  gap: 5px;
  color: var(--primary);
  font-size: 0.78rem;
  font-weight: 800;
}

.footer-qr .wechat-qr.small {
  width: 76px;
  margin: 0;
  border-radius: 6px;
}

.footer-copy {
  grid-column: 1 / -1;
  color: var(--muted);
  font-size: 0.78rem;
  text-align: center;
}

.footer-links {
  grid-column: 1 / -1;
  display: flex;
  justify-content: center;
  gap: 18px;
  color: var(--primary);
  font-size: 0.84rem;
}

@media (max-width: 1120px) {
  .nav-wrap {
    min-height: 78px;
    gap: 14px;
  }
  .brand {
    min-width: 0;
    flex: 0 0 auto;
  }
  .brand-logo {
    width: 54px;
    height: 54px;
  }
  .brand-wordmark strong {
    font-size: 1.08rem;
  }
  .brand-wordmark span {
    max-width: calc(100vw - 190px);
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .menu-toggle {
    display: inline-flex;
  }
  .nav {
    position: fixed;
    left: 16px;
    right: 16px;
    top: 88px;
    display: grid;
    justify-content: stretch;
    align-items: stretch;
    gap: 8px;
    padding: 14px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: #ffffff;
    box-shadow: 0 22px 50px rgba(0, 39, 76, 0.16);
    visibility: hidden;
    opacity: 0;
    transform: translateY(-8px);
    transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
    white-space: normal;
    max-height: calc(100svh - 106px);
    overflow: auto;
  }
  .nav a {
    min-height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 9px 12px;
    border-radius: var(--radius);
    font-size: 1rem;
  }
  .nav a[aria-current='page'] {
    background: #f3f0e8;
  }
  .lang-link {
    margin-left: 0;
  }
  body.nav-open .nav {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
  }
  .package-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .package-card-phd {
    grid-column: 1 / -1;
  }
  .package-card-phd .check-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px 22px;
  }
}

@media (max-width: 1020px) {
  .hero-grid,
  .split,
  .contact-layout,
  .footer-grid,
  .cta-grid {
    grid-template-columns: 1fr;
  }
  .card-grid.three,
  .card-grid.four,
  .card-grid.five,
  .steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .pathway-route-nav {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .pathway-route-nav a:nth-child(4) {
    border-left: 0;
    border-top: 1px solid var(--border);
  }
  .pathway-route-nav a:nth-child(5) {
    border-top: 1px solid var(--border);
  }
  .pricing-reason-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .phd-scope-grid {
    grid-template-columns: minmax(0, 1fr);
  }
  .funding-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .pricing-reason-grid article:nth-child(3) {
    border-left: 0;
    border-top: 1px solid var(--border);
  }
  .addon-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .addon-item:last-child {
    grid-column: 1 / -1;
  }
  .hero-premium {
    min-height: auto;
  }
  .hero-premium::before {
    background-position: 58% center;
  }
  .hero-premium::after {
    background:
      linear-gradient(90deg, rgba(248, 250, 248, 0.98) 0%, rgba(248, 250, 248, 0.9) 48%, rgba(248, 250, 248, 0.52) 100%),
      linear-gradient(180deg, rgba(0, 39, 76, 0.04) 0%, rgba(141, 38, 49, 0.05) 100%);
  }
  .why-split,
  .trust-grid-compact {
    grid-template-columns: 1fr;
  }
  .trust-grid-compact .trust-item {
    min-height: 0;
  }
  .footer-grid {
    align-items: start;
  }
  .consultation-terms-layout {
    grid-template-columns: minmax(0, 1fr);
    gap: 34px;
  }
  .footer-qr {
    justify-items: start;
  }
}

@media (max-width: 720px) {
  .container { width: min(1120px, calc(100% - 28px)); }
  .nav-wrap { min-height: 74px; padding: 9px 0; }
  .brand { min-width: 0; max-width: calc(100% - 60px); flex: 1 1 auto; }
  .brand-logo { width: 48px; height: 48px; }
  .brand-wordmark { min-width: 0; max-width: calc(100% - 62px); }
  .brand-wordmark strong,
  .brand-wordmark span { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
  .brand-wordmark span { font-size: 0.58rem; letter-spacing: 0.02em; max-width: 100%; }
  .menu-toggle span:last-child { display: none; }
  .nav { top: 80px; }
  .nav a { font-size: 0.96rem; }
  .hero { padding: 54px 0 46px; }
  .hero:not(.hero-premium) {
    min-height: auto;
    padding: 46px 0 38px;
  }
  .hero:not(.hero-premium)::before {
    background-position: 68% center;
  }
  .hero:not(.hero-premium)::after {
    background:
      linear-gradient(90deg, rgba(251, 252, 251, 0.98) 0%, rgba(251, 252, 251, 0.92) 58%, rgba(251, 252, 251, 0.6) 100%),
      linear-gradient(180deg, rgba(0, 39, 76, 0.06) 0%, rgba(141, 38, 49, 0.05) 100%);
  }
  .hero-premium {
    padding: 0;
  }
  .hero-premium::before {
    background-position: 64% center;
  }
  .hero-premium::after {
    background:
      linear-gradient(180deg, rgba(248, 250, 248, 0.98) 0%, rgba(248, 250, 248, 0.92) 54%, rgba(248, 250, 248, 0.68) 100%),
      linear-gradient(90deg, rgba(248, 250, 248, 0.95) 0%, rgba(248, 250, 248, 0.62) 100%);
  }
  .hero-premium-inner {
    padding: 44px 0 36px;
  }
  .hero-premium h1,
  html[lang='zh-CN'] .hero-premium h1 {
    max-width: 100%;
    line-height: 1.03;
  }
  .hero-premium h1 {
    font-size: clamp(2.3rem, 12vw, 3rem);
  }
  html[lang='zh-CN'] .hero-premium h1 {
    font-size: clamp(2.1rem, 5vw, 2.4rem);
  }
  .hero-premium .lead {
    font-size: 1rem;
  }
  .hero-premium .badge-row {
    gap: 7px;
    margin-top: 18px;
  }
  .hero-premium .badge {
    min-height: 31px;
    font-size: 0.78rem;
    padding: 6px 10px;
  }
  .hero-premium .hero-actions {
    gap: 10px;
    margin-top: 20px;
  }
  .hero-contact-link {
    min-height: 36px;
  }
  .hero-proof {
    display: none;
  }
  h1 { font-size: clamp(2.15rem, 13vw, 3.45rem); }
  .hero-services h1 {
    max-width: 100%;
    font-size: 2.45rem;
    line-height: 1.08;
  }
  .section { padding: 58px 0; }
  .card-grid.three,
  .card-grid.four,
  .card-grid.five,
  .steps,
  .form-grid,
  .why-bullets {
    grid-template-columns: minmax(0, 1fr);
  }
  .package-grid,
  .package-detail-content,
  .pricing-reason-grid,
  .addon-grid,
  .policy-grid,
  .boundary-grid,
  .specialty-services,
  .active-client-steps,
  .scope-note,
  .credit-note,
  .phd-scope-grid,
  .funding-list {
    grid-template-columns: minmax(0, 1fr);
  }
  .active-client-steps p {
    border-right: 0;
    border-bottom: 1px solid var(--border);
  }
  .active-client-steps p:last-child {
    border-bottom: 0;
  }
  .package-card-phd {
    grid-column: auto;
  }
  .package-card-phd .check-list {
    grid-template-columns: minmax(0, 1fr);
  }
  .package-card-head {
    min-height: 0;
  }
  .package-card-head,
  .package-card-body,
  .package-card-footer {
    padding: 22px 20px;
  }
  .package-price {
    font-size: 1.8rem;
  }
  .package-card .check-list li {
    font-size: 0.95rem;
    line-height: 1.6;
  }
  .pricing-reason-grid article,
  .pricing-reason-grid article + article,
  .pricing-reason-grid article:nth-child(3) {
    border-left: 0;
    border-top: 1px solid var(--border);
  }
  .pricing-reason-grid article:first-child {
    border-top: 0;
  }
  .planning-step {
    min-height: 0;
  }
  .package-detail summary {
    min-height: 0;
    padding: 18px;
    align-items: flex-start;
    flex-wrap: wrap;
  }
  .package-detail summary strong {
    width: 100%;
    margin-left: 0;
  }
  .package-detail-content {
    padding: 22px 18px 26px;
  }
  .addon-item,
  .addon-item:last-child {
    grid-column: auto;
  }
  .specialty-services {
    gap: 12px;
  }
  .pathway-decision-grid,
  .pathway-distinction-grid,
  .pathway-route-nav,
  .pathway-roadmap-body,
  .pathway-next {
    grid-template-columns: minmax(0, 1fr);
  }
  .pathway-decision-grid article + article,
  .pathway-distinction-grid article + article,
  .pathway-route-nav a + a,
  .pathway-route-nav a:nth-child(4),
  .pathway-route-nav a:nth-child(5),
  .pathway-roadmap-body section + section {
    border-left: 0;
    border-top: 1px solid var(--border);
  }
  .pathway-route-nav a {
    min-height: 62px;
  }
  .pathway-roadmap-head,
  .pathway-roadmap-body section,
  .pathway-next {
    padding-left: 20px;
    padding-right: 20px;
  }
  .pathway-next .btn {
    justify-self: start;
  }
  .hero-onboarding h1 {
    max-width: 100%;
  }
  .onboarding-preview-band .container {
    grid-template-columns: minmax(0, 1fr);
    gap: 4px;
  }
  .onboarding-before-list article {
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 14px;
  }
  .onboarding-step-nav {
    grid-template-columns: repeat(4, minmax(64px, 1fr));
    overflow-x: auto;
  }
  .onboarding-step-nav button {
    min-height: 72px;
    display: grid;
    justify-items: center;
    gap: 3px;
    padding: 10px 7px;
    font-size: 0.76rem;
    line-height: 1.25;
  }
  .onboarding-panel {
    padding: 24px 18px;
  }
  .onboarding-panel-head {
    grid-template-columns: 40px minmax(0, 1fr);
    gap: 12px;
  }
  .onboarding-panel-head > span {
    width: 38px;
    height: 38px;
  }
  .choice-grid,
  .choice-grid.two {
    grid-template-columns: minmax(0, 1fr);
  }
  .phone-input {
    grid-template-columns: minmax(132px, 0.45fr) minmax(0, 1fr);
  }
  .applicant-entry-head {
    align-items: flex-start;
  }
  .onboarding-actions {
    align-items: stretch;
  }
  .onboarding-actions .btn {
    flex: 1 1 0;
  }
  .onboarding-submit-actions {
    flex-direction: column;
  }
  .onboarding-submit-actions > div {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    width: 100%;
  }
  .onboarding-review section,
  .onboarding-review dl {
    grid-template-columns: minmax(0, 1fr);
    gap: 8px;
  }
  .onboarding-review dl {
    gap: 2px;
  }
  .onboarding-review dd {
    margin-bottom: 8px;
  }
}

@media print {
  .site-header,
  .site-footer,
  .hero-onboarding,
  .onboarding-preview-band,
  .onboarding-before,
  .onboarding-step-nav,
  .onboarding-actions,
  .section-head,
  .optional-client:not([open]) {
    display: none !important;
  }
  body {
    background: white;
  }
  .section,
  .onboarding-form-section {
    padding: 0;
    background: white;
  }
  .container {
    width: 100%;
  }
  .onboarding-form {
    border: 0;
    box-shadow: none;
  }
  .onboarding-panel {
    display: none !important;
    padding: 0;
  }
  .onboarding-panel[data-onboarding-step='4'] {
    display: block !important;
  }
  .review-confirmations,
  .form-status {
    display: none;
  }
}
