/* ============ MedVisitChina — global ============ */
:root {
  --brand: #0C6B6B;
  --brand-2: #0E8A86;
  --brand-dark: #084C52;
  --ink: #16313A;
  --ink-soft: #58717B;
  --bg: #FFFFFF;
  --bg-soft: #F3F8F8;
  --line: #DFEAEB;
  --accent: #E8655A;
  --gold: #F5C97B;
  --dark: #0B2B2F;
  --shadow-sm: 0 2px 10px rgba(11, 43, 47, .06);
  --shadow-md: 0 14px 34px rgba(11, 43, 47, .12);
  --radius: 18px;
  --radius-lg: 26px;
  --font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.container {
  width: min(1160px, 100% - 48px);
  margin-inline: auto;
}
.container-narrow { width: min(820px, 100% - 48px); }

section { scroll-margin-top: 84px; }

.skip-link {
  position: absolute;
  left: -999px;
  top: 12px;
  background: var(--brand);
  color: #fff;
  padding: 10px 16px;
  border-radius: 8px;
  z-index: 200;
}
.skip-link:focus { left: 12px; }

:focus-visible {
  outline: 3px solid rgba(14, 138, 134, .55);
  outline-offset: 2px;
  border-radius: 6px;
}

/* ============ Buttons ============ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 700;
  font-size: 15px;
  line-height: 1;
  padding: 14px 26px;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: linear-gradient(135deg, var(--brand-2), var(--brand));
  color: #fff;
  box-shadow: 0 10px 24px rgba(12, 107, 107, .28);
}
.btn-primary:hover { box-shadow: 0 14px 30px rgba(12, 107, 107, .36); }
.btn-ghost {
  background: transparent;
  color: var(--brand);
  border-color: rgba(12, 107, 107, .45);
}
.btn-ghost:hover { background: rgba(12, 107, 107, .06); }
.btn-light {
  background: #fff;
  color: var(--brand-dark);
  box-shadow: 0 10px 24px rgba(0, 0, 0, .16);
}
.btn-lg { padding: 17px 34px; font-size: 16px; }
.btn-sm { padding: 11px 20px; font-size: 14px; }
.btn-block { width: 100%; }

/* ============ Header ============ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, .88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.site-header.scrolled {
  border-bottom-color: var(--line);
  box-shadow: var(--shadow-sm);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  height: 74px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
}
.brand-mark { width: 38px; height: 38px; border-radius: 10px; flex: none; }
.brand-text { display: flex; flex-direction: column; line-height: 1.15; }
.brand-name { font-weight: 800; font-size: 17px; letter-spacing: -.2px; color: var(--ink); }
.brand-zh { font-size: 11.5px; color: var(--ink-soft); letter-spacing: .6px; }

.nav-menu {
  display: flex;
  align-items: center;
  gap: 26px;
}
.nav-menu > a {
  font-size: 14.5px;
  font-weight: 600;
  color: var(--ink-soft);
  transition: color .15s ease;
  position: relative;
}
.nav-menu > a:hover { color: var(--brand); }
.nav-actions { display: flex; align-items: center; gap: 12px; }

.lang-toggle {
  font-family: inherit;
  font-size: 14px;
  font-weight: 700;
  color: var(--brand);
  background: rgba(12, 107, 107, .08);
  border: 1.5px solid rgba(12, 107, 107, .25);
  padding: 8px 15px;
  border-radius: 999px;
  cursor: pointer;
  transition: background .15s ease;
}
.lang-toggle:hover { background: rgba(12, 107, 107, .15); }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 10px;
  background: transparent;
  border: 0;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  height: 2.5px;
  width: 100%;
  background: var(--ink);
  border-radius: 3px;
  transition: transform .2s ease, opacity .2s ease;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ============ Hero ============ */
.hero {
  position: relative;
  overflow: hidden;
  padding: 84px 0 72px;
  background: linear-gradient(180deg, #EAF6F5 0%, #FFFFFF 78%);
}
.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
  pointer-events: none;
}
.hero-blob-a { width: 520px; height: 520px; background: radial-gradient(circle, rgba(14,138,134,.14), transparent 70%); top: -160px; right: -120px; }
.hero-blob-b { width: 420px; height: 420px; background: radial-gradient(circle, rgba(245,201,123,.2), transparent 70%); bottom: -180px; left: -140px; }

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 48px;
  align-items: center;
}
.eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: var(--brand-2);
  background: rgba(14, 138, 134, .1);
  padding: 8px 16px;
  border-radius: 999px;
  margin-bottom: 22px;
}
.hero h1 {
  font-size: clamp(34px, 4.6vw, 54px);
  line-height: 1.16;
  letter-spacing: -1px;
  color: var(--ink);
  margin-bottom: 20px;
}
.hero-sub {
  font-size: 17.5px;
  color: var(--ink-soft);
  max-width: 34em;
  margin-bottom: 30px;
}
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 34px; }
.hero-points { display: flex; flex-wrap: wrap; gap: 10px 26px; }
.hero-points li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--ink-soft);
}
.hero-points svg { width: 17px; height: 17px; fill: none; stroke: var(--brand-2); stroke-width: 3; stroke-linecap: round; stroke-linejoin: round; }

.hero-art { position: relative; }
.hero-scene { width: 100%; height: auto; }

/* ============ Condition finder ============ */
.finder { background: linear-gradient(180deg, #FFFFFF, #F3F8F8 85%); }
.finder-card {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  overflow: hidden;
}
.finder-left {
  padding: 30px;
  background: var(--bg-soft);
  border-right: 1px solid var(--line);
}
.cond-group {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin: 0 0 10px;
}
.cond-group:not(:first-child) { margin-top: 22px; }
.cond-group-items {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.finder-conditions {
  display: grid;
  gap: 10px;
}
.condition-chip {
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  text-align: left;
  color: var(--ink);
  background: #fff;
  border: 1.5px solid var(--line);
  border-radius: 13px;
  padding: 13px 15px;
  cursor: pointer;
  line-height: 1.4;
  transition: border-color .15s ease, box-shadow .15s ease, background .15s ease;
}
.condition-chip:hover { border-color: rgba(12, 107, 107, .4); box-shadow: var(--shadow-sm); }
.condition-chip.active {
  border-color: var(--brand);
  background: rgba(14, 138, 134, .08);
  box-shadow: inset 0 0 0 1px var(--brand);
}
.finder-results { padding: 30px; display: grid; gap: 16px; align-content: start; }
.rec-title { font-size: 20px; color: var(--ink); margin-bottom: 4px; }
.rec-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  background: #fff;
  box-shadow: var(--shadow-sm);
  transition: box-shadow .2s ease, transform .2s ease;
}
.rec-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.rec-head { display: flex; align-items: baseline; gap: 10px; flex-wrap: wrap; }
.rec-head h4 { font-size: 17px; color: var(--ink); }
.rec-en { font-size: 12.5px; color: var(--ink-soft); }
.rec-meta { display: flex; flex-wrap: wrap; gap: 8px; margin: 11px 0; }
.rec-badge {
  font-size: 12px;
  font-weight: 700;
  color: var(--brand);
  background: rgba(12, 107, 107, .09);
  border-radius: 999px;
  padding: 4px 11px;
}
.rec-badge-docs { color: #A05F12; background: rgba(245, 201, 123, .25); }
.rec-reason { font-size: 14px; color: var(--ink-soft); margin-bottom: 15px; }
.rec-empty { font-size: 15px; color: var(--ink-soft); }
.finder-note {
  margin-top: 20px;
  text-align: center;
  font-size: 13px;
  color: var(--ink-soft);
}

/* ============ Partners ============ */
.partners {
  border-block: 1px solid var(--line);
  background: var(--bg-soft);
  padding: 30px 0;
}
.partners-label {
  text-align: center;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 18px;
}
.partners-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 18px;
}
.partners-list li {
  font-size: 13.5px;
  color: var(--ink-soft);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 9px 18px;
}
.partners-list strong { color: var(--ink); font-weight: 700; margin-right: 4px; }

/* ============ Sections ============ */
.section { padding: 96px 0; }
.section-alt { background: var(--bg-soft); }
.section-head { text-align: center; max-width: 720px; margin: 0 auto 54px; }
.kicker {
  display: inline-block;
  font-size: 12.5px;
  font-weight: 800;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--brand-2);
  margin-bottom: 14px;
}
.section-head h2, .band-copy h2, .contact-info h2 {
  font-size: clamp(27px, 3.4vw, 39px);
  line-height: 1.22;
  letter-spacing: -.5px;
  color: var(--ink);
  margin-bottom: 16px;
}
.section-sub { font-size: 16.5px; color: var(--ink-soft); }

/* ============ Why cards ============ */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 28px;
  box-shadow: var(--shadow-sm);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: rgba(12, 107, 107, .35);
}
.card-icon {
  width: 54px;
  height: 54px;
  border-radius: 15px;
  background: rgba(14, 138, 134, .1);
  display: grid;
  place-items: center;
  margin-bottom: 18px;
}
.card-icon svg {
  width: 27px;
  height: 27px;
  fill: none;
  stroke: var(--brand);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.card-icon svg text,
.service-icon svg text {
  fill: var(--brand);
  stroke: none;
  font-family: var(--font);
}
.card h3 { font-size: 18.5px; margin-bottom: 9px; color: var(--ink); }
.card p { font-size: 14.5px; color: var(--ink-soft); }

/* ============ Services ============ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 28px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform .22s ease, box-shadow .22s ease;
}
.service:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.service-num {
  position: absolute;
  top: 18px;
  right: 22px;
  font-size: 42px;
  font-weight: 800;
  color: rgba(12, 107, 107, .09);
  line-height: 1;
}
.service-icon {
  width: 54px;
  height: 54px;
  border-radius: 15px;
  background: linear-gradient(135deg, rgba(14,138,134,.14), rgba(12,107,107,.08));
  display: grid;
  place-items: center;
  margin-bottom: 18px;
}
.service-icon svg {
  width: 27px;
  height: 27px;
  fill: none;
  stroke: var(--brand);
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.service h3 { font-size: 18px; margin-bottom: 9px; color: var(--ink); }
.service p { font-size: 14.5px; color: var(--ink-soft); }

/* ============ Band (带看) ============ */
.band {
  background: linear-gradient(120deg, var(--dark), #12464B 55%, var(--brand-dark));
  padding: 92px 0;
  color: #E9F3F3;
}
.band-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 56px;
  align-items: center;
}
.band-art { position: relative; }
.band-art svg { width: 100%; height: auto; }
.band-chip {
  position: absolute;
  background: rgba(255, 255, 255, .96);
  color: var(--ink);
  font-size: 13px;
  font-weight: 700;
  padding: 10px 16px;
  border-radius: 999px;
  box-shadow: 0 10px 22px rgba(0, 0, 0, .22);
}
.band-chip-a { top: 22px; left: -8px; }
.band-chip-b { bottom: 34px; right: -6px; }
.kicker-light { color: var(--gold); }
.band-copy h2 { color: #fff; }
.band-copy p { font-size: 16.5px; color: #BFD7D7; margin-bottom: 24px; }
.band-list { display: grid; gap: 12px; margin-bottom: 30px; }
.band-list li {
  position: relative;
  padding-left: 30px;
  font-size: 15px;
  color: #E5F0F0;
}
.band-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  width: 21px;
  height: 21px;
  border-radius: 50%;
  background: rgba(245, 201, 123, .18);
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  display: grid;
  place-items: center;
}

/* ============ Steps ============ */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  counter-reset: step;
}
.step {
  text-align: center;
  padding: 30px 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow-sm);
}
.step-dot {
  width: 52px;
  height: 52px;
  margin: 0 auto 18px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--brand-2), var(--brand));
  color: #fff;
  font-size: 20px;
  font-weight: 800;
  box-shadow: 0 8px 18px rgba(12, 107, 107, .3);
}
.step h3 { font-size: 17.5px; margin-bottom: 8px; }
.step p { font-size: 14px; color: var(--ink-soft); }

/* ============ Stories ============ */
.stories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.story {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 28px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.story-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--av, var(--brand));
  color: #fff;
  font-weight: 800;
  font-size: 16px;
  display: grid;
  place-items: center;
}
.story blockquote { font-size: 15px; color: var(--ink); font-style: normal; }
.story figcaption { font-size: 13.5px; font-weight: 700; color: var(--ink-soft); }

/* ============ FAQ ============ */
.faq-list { display: grid; gap: 14px; }
.faq-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  text-align: left;
  font-family: inherit;
  font-size: 16.5px;
  font-weight: 700;
  color: var(--ink);
  background: transparent;
  border: 0;
  padding: 20px 24px;
  cursor: pointer;
}
.faq-q::after {
  content: "+";
  flex: none;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(12, 107, 107, .09);
  color: var(--brand);
  display: grid;
  place-items: center;
  font-size: 20px;
  font-weight: 600;
  transition: transform .2s ease, background .2s ease;
}
.faq-q[aria-expanded="true"]::after { transform: rotate(45deg); background: var(--brand); color: #fff; }
.faq-a { padding: 0 24px 22px; }
.faq-a p { font-size: 15px; color: var(--ink-soft); max-width: 62ch; }

/* ============ Contact ============ */
.contact { background: linear-gradient(180deg, #F3F8F8, #EAF6F5); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 56px;
  align-items: start;
}
.contact-info p { font-size: 16px; color: var(--ink-soft); margin-bottom: 30px; max-width: 46ch; }
.contact-methods { display: grid; gap: 18px; }
.contact-methods li { display: flex; gap: 16px; align-items: flex-start; }
.cm-icon {
  flex: none;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: #fff;
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  font-weight: 800;
  color: var(--brand);
  box-shadow: var(--shadow-sm);
}
.contact-methods strong { display: block; font-size: 14.5px; color: var(--ink); }
.contact-methods a, .contact-methods span { font-size: 15px; color: var(--ink-soft); }
.contact-methods a:hover { color: var(--brand); }

.contact-form {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-md);
  display: grid;
  gap: 18px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-field { display: grid; gap: 7px; }
.form-field label { font-size: 13.5px; font-weight: 700; color: var(--ink); }
.form-field input,
.form-field select,
.form-field textarea {
  font-family: inherit;
  font-size: 15px;
  color: var(--ink);
  background: var(--bg-soft);
  border: 1.5px solid var(--line);
  border-radius: 12px;
  padding: 13px 15px;
  width: 100%;
  transition: border-color .15s ease, background .15s ease;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--brand-2);
  background: #fff;
}
.form-field textarea { resize: vertical; min-height: 110px; }
.form-note {
  font-size: 14px;
  font-weight: 600;
  color: var(--brand);
  background: rgba(14, 138, 134, .09);
  border-radius: 10px;
  padding: 12px 16px;
}
.form-privacy { font-size: 12.5px; color: var(--ink-soft); text-align: center; }

/* ============ WeChat & trust extras ============ */
.chat-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 90;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: #07C160;
  color: #fff;
  font-weight: 800;
  font-size: 14.5px;
  font-family: var(--font);
  padding: 13px 20px;
  border-radius: 999px;
  border: 0;
  cursor: pointer;
  box-shadow: 0 10px 26px rgba(7, 193, 96, .4);
  transition: transform .18s ease, box-shadow .18s ease;
}
.chat-float:hover { transform: translateY(-2px); box-shadow: 0 14px 30px rgba(7, 193, 96, .5); }
.chat-float svg { width: 22px; height: 22px; fill: currentColor; }
.note-link { color: var(--brand); text-decoration: underline; font-weight: 700; }
.note-btn {
  background: none;
  border: 0;
  padding: 0;
  font-family: inherit;
  font-size: 14px;
  font-weight: 800;
  color: var(--brand);
  text-decoration: underline;
  cursor: pointer;
}
.id-copy {
  background: none;
  border: 0;
  padding: 0;
  font-family: inherit;
  font-size: 15px;
  color: var(--ink-soft);
  cursor: pointer;
  text-align: left;
}
.id-copy:hover { color: var(--brand); }
.btn.copied, .chat-float.copied, .note-btn.copied { color: #07C160; }
.contact-btns { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 28px; }
.nav-menu > a.active { color: var(--brand); }

/* ============ Pricing page ============ */
.page-hero {
  position: relative;
  overflow: hidden;
  padding: 92px 0 78px;
  background: linear-gradient(180deg, #EAF6F5 0%, #FFFFFF 82%);
}
.page-hero-inner { position: relative; max-width: 940px; }
.page-hero h1 {
  font-size: clamp(34px, 4.6vw, 52px);
  line-height: 1.16;
  letter-spacing: -1px;
  margin-bottom: 18px;
}
.principle-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 42px;
}
.principle {
  display: flex;
  gap: 13px;
  align-items: flex-start;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 18px;
  box-shadow: var(--shadow-sm);
}
.principle svg {
  flex: none;
  width: 26px;
  height: 26px;
  fill: none;
  stroke: var(--brand);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.principle strong { display: block; font-size: 15px; color: var(--ink); }
.principle span { font-size: 13px; color: var(--ink-soft); }

.price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}
.price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 34px 28px 30px;
  box-shadow: var(--shadow-sm);
}
.price-featured { border: 2px solid var(--brand); box-shadow: var(--shadow-md); }
.price-tag {
  position: absolute;
  top: -13px;
  left: 24px;
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--brand);
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 5px 13px;
}
.price-tag-hot { color: #fff; background: var(--brand); border-color: var(--brand); }
.price-card h3 { font-size: 18.5px; margin: 6px 0 14px; color: var(--ink); }
.price-amount {
  font-size: 40px;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -1px;
  margin-bottom: 18px;
}
.price-amount small {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-soft);
  letter-spacing: 0;
  margin-top: 3px;
}
.price-card ul { display: grid; gap: 10px; margin-bottom: 26px; }
.price-card li {
  position: relative;
  padding-left: 24px;
  font-size: 14px;
  color: var(--ink-soft);
}
.price-card li::before { content: "✓"; position: absolute; left: 0; top: 0; color: var(--brand); font-weight: 800; }
.price-card .btn { margin-top: auto; }
.price-note { margin-top: 26px; text-align: center; font-size: 13px; color: var(--ink-soft); }

.band-price .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 52px;
  align-items: start;
}
.pay-col h4 {
  font-size: 13.5px;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--gold);
  margin: 24px 0 10px;
}
.pay-col h4:first-child { margin-top: 0; }
.pay-list { display: grid; gap: 9px; }
.pay-list li {
  position: relative;
  padding-left: 24px;
  font-size: 14.5px;
  color: #E5F0F0;
}
.pay-list li::before { content: "•"; position: absolute; left: 4px; color: var(--gold); font-weight: 800; }

.cta-panel {
  text-align: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 54px 40px;
  box-shadow: var(--shadow-md);
}
.cta-panel h2 { font-size: clamp(24px, 3vw, 34px); margin-bottom: 14px; color: var(--ink); }
.cta-panel p { color: var(--ink-soft); font-size: 16px; margin-bottom: 26px; }
.cta-center { justify-content: center; }

/* ============ Footer ============ */
.footer { background: var(--dark); color: #B9D1D2; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 44px;
  padding: 64px 0 46px;
}
.footer .brand .brand-name { color: #fff; }
.footer .brand .brand-zh { color: #8FB3B5; }
.footer-brand p { font-size: 14px; margin-top: 18px; max-width: 38ch; }
.footer-col { display: grid; gap: 10px; align-content: start; }
.footer-col h4 {
  font-size: 13px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 8px;
}
.footer-col a, .footer-col span { font-size: 14px; color: #9DB9BA; transition: color .15s ease; }
.footer-col a:hover { color: var(--gold); }
.footer-bottom { border-top: 1px solid rgba(255, 255, 255, .1); padding: 22px 0; }
.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 13px;
  color: #7FA2A4;
}

/* ============ Reveal ============ */
.js .reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .6s ease, transform .6s ease;
}
.js .reveal.visible { opacity: 1; transform: none; }

/* ============ Responsive ============ */
@media (max-width: 980px) {
  .cards-grid, .services-grid, .stories-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .hero-grid, .band-grid, .contact-grid { grid-template-columns: 1fr; }
  .finder-card { grid-template-columns: 1fr; }
  .finder-left { border-right: 0; border-bottom: 1px solid var(--line); }
  .hero { padding: 60px 0 56px; }
  .hero-art { max-width: 560px; }
  .band { padding: 72px 0; }
  .price-grid { grid-template-columns: 1fr; max-width: 520px; margin-inline: auto; }
  .principle-row { grid-template-columns: 1fr; max-width: 480px; margin-inline: auto; }
  .band-price .container { grid-template-columns: 1fr; gap: 34px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 760px) {
  .nav-toggle { display: flex; }
  .nav-menu {
    position: fixed;
    inset: 74px 0 auto 0;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    background: #fff;
    border-bottom: 1px solid var(--line);
    padding: 18px 24px 24px;
    box-shadow: var(--shadow-md);
    transform: translateY(-8px);
    opacity: 0;
    visibility: hidden;
    transition: transform .2s ease, opacity .2s ease, visibility .2s;
  }
  .nav-menu.open { transform: none; opacity: 1; visibility: visible; }
  .nav-menu > a { padding: 13px 4px; font-size: 16px; border-bottom: 1px solid #EFF5F5; }
  .nav-actions { margin-top: 14px; }
  .nav-actions .btn { flex: 1; }
  .section { padding: 68px 0; }
  .cards-grid, .services-grid, .stories-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .finder-conditions { grid-template-columns: 1fr; }
  .finder-left, .finder-results { padding: 22px 18px; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form { padding: 26px 22px; }
  .page-hero { padding: 64px 0 56px; }
  .cta-panel { padding: 38px 22px; }
  .chat-float { right: 14px; bottom: 14px; padding: 12px 16px; }
  .footer-grid { grid-template-columns: 1fr; gap: 34px; }
  .band-chip-a { left: 4px; }
  .band-chip-b { right: 4px; }
}

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