:root {
  --navy: #071e3a;
  --navy-2: #123a63;
  --slate: #345d83;
  --light-blue: #edf3f7;
  --warm-white: #f7f8fa;
  --page-bg: #f3f6f9;
  --gold: #b99a5d;
  --gold-text: #876a32;
  --gold-light: #e1c06f;
  --ink: #122033;
  --muted: #53657a;
  --line: #d9e3ea;
  --soft-line: rgba(7, 30, 58, 0.1);
  --white: #ffffff;
  --frost: rgba(255, 255, 255, 0.88);
  --frost-strong: rgba(255, 255, 255, 0.94);
  --paper-edge: rgba(7, 30, 58, 0.055);
  --paper-shade: rgba(7, 30, 58, 0.035);
  --prism: linear-gradient(90deg, rgba(7, 30, 58, 0.18) 0%, rgba(47, 95, 143, 0.16) 50%, rgba(185, 154, 93, 0.12) 100%);
  --cool-wash: linear-gradient(180deg, #f7f9fb 0%, #edf3f7 100%);
  --shadow: 0 12px 34px rgba(7, 30, 58, 0.052);
  --header-h: 74px;
  --section-screen: clamp(646px, calc(100dvh - var(--header-h)), 780px);
}

* { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  background: var(--cool-wash);
  color-scheme: light;
  scroll-padding-top: var(--header-h);
  scrollbar-gutter: stable;
  -webkit-tap-highlight-color: transparent;
}

html.lang-jump-pending {
  overflow: hidden;
  scroll-behavior: auto;
}

html.section-transitioning {
  scroll-behavior: auto !important;
}

html::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  background:
    repeating-linear-gradient(0deg, rgba(7, 30, 58, 0.014) 0, rgba(7, 30, 58, 0.014) 1px, transparent 1px, transparent 7px),
    linear-gradient(135deg, rgba(255, 255, 255, 0.5), rgba(237, 243, 247, 0.18)),
    var(--page-bg);
  opacity: 0;
  transition: opacity 0.22s cubic-bezier(0.16, 1, 0.3, 1);
}

html.lang-jump-pending::after {
  opacity: 0.68;
  transition: none;
}

html.lang-page-exit::after {
  opacity: 0.54;
  pointer-events: auto;
  transition: opacity 0.11s cubic-bezier(0.4, 0, 1, 1);
}

body {
  margin: 0;
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--ink);
  background: var(--cool-wash);
  line-height: 1.55;
  overflow-x: clip;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 22% 14%, rgba(255, 255, 255, 0.68), transparent 26%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.26), rgba(237, 243, 247, 0)),
    repeating-linear-gradient(0deg, rgba(7, 30, 58, 0.010) 0, rgba(7, 30, 58, 0.010) 1px, transparent 1px, transparent 13px),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.06) 0, rgba(255, 255, 255, 0.06) 1px, transparent 1px, transparent 17px);
  background-size: 100% 100%;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.36), rgba(0, 0, 0, 0.16) 48%, rgba(0, 0, 0, 0.25));
}

header,
main,
footer {
  position: relative;
  z-index: 1;
}

html[lang="zh-CN"] body {
  font-family: "PingFang SC", "Microsoft YaHei", "Noto Sans CJK SC", Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.62;
}

html[lang="zh-CN"] h1 {
  line-height: 1.08;
  letter-spacing: -0.035em;
}

html[lang="zh-CN"] h2 {
  line-height: 1.14;
  letter-spacing: -0.022em;
}

.cn-keep {
  white-space: nowrap;
}

.cn-break {
  display: block;
}

html[lang="zh-CN"] .subhead,
html[lang="zh-CN"] .lead {
  line-height: 1.72;
}

html[lang="zh-CN"] .card p,
html[lang="zh-CN"] .process-step p,
html[lang="zh-CN"] .contact-row p,
html[lang="zh-CN"] .map-cell p {
  line-height: 1.66;
}

a {
  color: inherit;
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}
button {
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}
a:focus { outline: none; }
a:focus-visible {
  outline: 1px solid rgba(185, 154, 93, 0.48);
  outline-offset: 3px;
  border-radius: 8px;
}
button:focus-visible {
  outline: 2px solid rgba(185, 154, 93, 0.72);
  outline-offset: 3px;
}
.container { width: min(1120px, calc(100% - 40px)); margin: 0 auto; }

header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(243, 246, 249, 0.86);
  backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(7, 30, 58, 0.055);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.72);
}

.nav {
  height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.mobile-only { display: none; }

.brand {
  display: inline-flex;
  flex-direction: column;
  gap: 2px;
  font-family: "PingFang SC", "Microsoft YaHei", "Noto Sans CJK SC", Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--navy);
  line-height: 1;
  min-width: 205px;
}

.brand-main {
  display: inline-flex;
  font-size: 22px;
  font-weight: 900;
  letter-spacing: -0.055em;
}

.brand-main .vantage { color: var(--gold); }
.brand-sub {
  font-size: 10px;
  font-weight: 800;
  color: var(--slate);
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  gap: 16px;
  align-items: center;
  color: var(--navy);
  font-size: 14px;
  font-weight: 620;
}

.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(7, 30, 58, 0.1);
}

.lang-switch a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  min-height: 36px;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 840;
  color: var(--muted);
  opacity: 1;
}

.lang-switch a::after {
  display: none;
}

.lang-switch a:hover {
  color: var(--navy);
  background: rgba(47, 95, 143, 0.08);
}

.lang-switch a.is-active {
  background: var(--navy);
  color: var(--white);
}

.nav-links > a:not(.btn) {
  color: var(--navy);
  opacity: 0.82;
  position: relative;
  padding: 8px 0 10px;
  transition: opacity 0.22s ease;
}

.nav-links > a:not(.btn)::after {
  content: "";
  position: absolute;
  left: 14%;
  right: 14%;
  bottom: 2px;
  height: 2px;
  background: rgba(185, 154, 93, 0.92);
  border-radius: 999px;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.24s ease;
}

.nav-links > a:not(.btn):hover {
  opacity: 1;
  color: var(--navy);
}
.nav-links > a:not(.btn):hover::after { transform: scaleX(1); transform-origin: left; }
.nav-links > .active-link:not(.btn) {
  color: var(--navy);
  opacity: 1;
}

.nav-links > .active-link:not(.btn)::after {
  transform: scaleX(1);
  transform-origin: left;
}

@media (hover: none), (pointer: coarse) {
  .nav-links > a:not(.btn)::after {
    transition: none;
  }

  .nav-links > a:not(.btn):not(.active-link):hover::after {
    transform: scaleX(0);
  }

  .nav-links > a.active-link:not(.btn)::after {
    transform: scaleX(1);
    transform-origin: left;
  }
}

.mobile-menu .active-link {
  background: rgba(47, 95, 143, 0.08);
  color: var(--slate);
}
.mobile-actions {
  display: none;
  align-items: center;
  gap: 8px;
}
.mobile-link,
.mobile-cta,
.mobile-menu-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 850;
  white-space: nowrap;
  min-height: 44px;
}

.mobile-menu-booking {
  display: none;
}

.mobile-lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(7, 30, 58, 0.14);
}

.mobile-lang-switch a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  min-height: 44px;
  padding: 5px 10px;
  border-radius: 999px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 840;
}

.mobile-lang-switch a.is-active {
  background: var(--navy);
  color: var(--white);
}
.mobile-link {
  padding: 9px 12px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(7, 30, 58, 0.14);
  color: var(--navy);
}
.mobile-menu-toggle {
  padding: 9px 12px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(7, 30, 58, 0.14);
  color: var(--navy);
  cursor: pointer;
}
.mobile-cta {
  padding: 10px 14px;
  background: var(--navy);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: none;
}

.mobile-menu {
  display: none;
}

.booking-choice[hidden] {
  display: none;
}

.booking-choice {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 24px;
}

.booking-choice-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(7, 30, 58, 0.28);
  backdrop-filter: blur(6px);
}

.booking-choice-panel {
  position: relative;
  z-index: 1;
  width: min(560px, 100%);
  border-radius: 24px;
  padding: 30px;
  background: var(--frost-strong);
  border: 1px solid rgba(255, 255, 255, 0.72);
  box-shadow: 0 22px 70px rgba(7, 30, 58, 0.2);
}

.booking-choice-panel h2 {
  margin-bottom: 10px;
}

.booking-choice-panel p {
  color: var(--muted);
}

.booking-close {
  position: absolute;
  right: 18px;
  top: 18px;
  border: 0;
  background: transparent;
  color: var(--muted);
  font-size: 13px;
  font-weight: 820;
  cursor: pointer;
  min-width: 44px;
  min-height: 44px;
}

.booking-options {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.booking-option {
  display: grid;
  gap: 5px;
  padding: 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(7, 30, 58, 0.1);
  color: var(--navy);
}

.booking-option.primary {
  background: var(--navy);
  color: var(--white);
}

.booking-option span {
  color: inherit;
  opacity: 0.74;
  font-size: 14.5px;
}

body.booking-open {
  overflow: hidden;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 12px 20px;
  font-weight: 720;
  font-size: 14px;
  border: 1px solid transparent;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease, color 0.22s ease, border-color 0.22s ease;
  white-space: nowrap;
}

.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--navy); color: var(--white); box-shadow: 0 8px 18px rgba(7, 30, 58, 0.1); }
.btn-primary:hover { background: var(--navy-2); box-shadow: 0 10px 20px rgba(7, 30, 58, 0.12); }
.nav-links .btn-primary {
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: none;
}
.nav-links .btn-primary:hover {
  box-shadow: none;
}
.btn-secondary { background: rgba(255, 255, 255, 0.78); color: var(--navy); border-color: rgba(7, 30, 58, 0.12); backdrop-filter: blur(18px); }
.btn-secondary:hover { color: var(--slate); border-color: rgba(47, 95, 143, 0.38); }

.hero {
  position: relative;
  overflow: hidden;
  padding: 62px 0 66px;
  background: transparent;
}

.hero,
#offers,
#why,
#process,
#founder,
#fit,
#contact {
  min-height: var(--section-screen);
  display: flex;
  align-items: center;
}

.hero > .container,
#offers > .container,
#why > .container,
#process > .container,
#founder > .container,
#fit > .container,
#contact > .container {
  width: min(1120px, calc(100% - 40px));
}

.hero::before {
  content: "";
  position: absolute;
  width: 560px;
  height: 150px;
  right: 7%;
  top: 124px;
  background: linear-gradient(90deg, rgba(47, 95, 143, 0.12), rgba(7, 30, 58, 0.08));
  filter: blur(58px);
  opacity: 0.34;
  transform: rotate(-8deg);
  z-index: 0;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.04fr 0.96fr;
  gap: 54px;
  align-items: center;
  transform: translateY(-16px);
}

.eyebrow,
.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border: 1px solid rgba(185, 154, 93, 0.28);
  border-radius: 999px;
  color: var(--navy);
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(18px);
  font-size: 13px;
  font-weight: 720;
}

h1 {
  margin: 22px 0 20px;
  color: var(--navy);
  font-size: clamp(42px, 5.8vw, 70px);
  line-height: 1.02;
  letter-spacing: -0.04em;
  font-weight: 760;
  max-width: 790px;
  text-wrap: balance;
}

h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(30px, 3.3vw, 46px);
  line-height: 1.08;
  letter-spacing: -0.026em;
  font-weight: 720;
  text-wrap: balance;
}

h3 {
  margin: 0 0 10px;
  color: var(--navy);
  font-size: 21px;
  line-height: 1.18;
  font-weight: 720;
  text-wrap: balance;
}

p { margin: 0; }
.subhead {
  max-width: 720px;
  color: #405064;
  font-size: 19px;
  margin-bottom: 28px;
}

.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 28px; }
.decision-panel {
  position: relative;
  background:
    linear-gradient(150deg, rgba(7, 30, 58, 0.96), rgba(18, 58, 99, 0.94));
  color: var(--white);
  border-radius: 24px;
  padding: 32px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 255, 255, 0.12);
  overflow: hidden;
}

.decision-panel::after,
.dark-panel::after,
.founder-photo-card::after,
.cta::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.1), transparent 34%),
    linear-gradient(180deg, transparent 0%, rgba(7, 30, 58, 0.12) 100%);
  opacity: 0.42;
}

.dark-panel,
.founder-photo-card,
.cta {
  position: relative;
  overflow: hidden;
}

.decision-panel > *,
.dark-panel > *,
.founder-photo-card > *,
.cta > * {
  position: relative;
  z-index: 1;
}

.decision-panel h2 { color: var(--white); font-size: clamp(30px, 3vw, 42px); }
.decision-panel p { color: rgba(255, 255, 255, 0.78); margin-top: 14px; }
.decision-list {
  display: grid;
  gap: 0;
  margin-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}
.decision-item {
  padding: 15px 0;
  border-radius: 0;
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
  font-weight: 680;
  transition: transform 0.22s ease, background 0.22s ease, border-color 0.22s ease;
}

.decision-item:hover {
  transform: translateX(2px);
  background: transparent;
  border-color: rgba(255, 255, 255, 0.22);
}

section { padding: 68px 0; }
main > section {
  position: relative;
  isolation: isolate;
}

main > section::before {
  content: none;
}

main > section,
.offer-detail {
  scroll-margin-top: var(--header-h);
}
.section-alt,
.section-blue { background: transparent; }

main > section > .container {
  transition:
    opacity 0.42s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.42s cubic-bezier(0.22, 1, 0.36, 1),
    translate 0.42s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.42s cubic-bezier(0.22, 1, 0.36, 1);
}

main > section.editorial-pending > .container {
  opacity: 0.985;
  translate: 0 6px;
  filter: blur(0.15px);
}

@supports (view-transition-name: none) {
  header {
    view-transition-name: site-header;
  }

  ::view-transition-old(root),
  ::view-transition-new(root),
  ::view-transition-old(site-header),
  ::view-transition-new(site-header) {
    mix-blend-mode: normal;
  }

  ::view-transition-old(site-header),
  ::view-transition-new(site-header) {
    animation: none;
  }

  html.transition-forward::view-transition-old(root) {
    animation: editorialOutForward 0.46s cubic-bezier(0.32, 0, 0.2, 1) both;
  }

  html.transition-forward::view-transition-new(root) {
    animation: editorialInForward 0.5s cubic-bezier(0.16, 1, 0.3, 1) both;
  }

  html.transition-reverse::view-transition-old(root) {
    animation: editorialOutReverse 0.46s cubic-bezier(0.32, 0, 0.2, 1) both;
  }

  html.transition-reverse::view-transition-new(root) {
    animation: editorialInReverse 0.5s cubic-bezier(0.16, 1, 0.3, 1) both;
  }

  html.language-inline-transition header {
    view-transition-name: none;
  }

  html.language-inline-transition::view-transition-old(root) {
    animation: languageContentOut 0.24s cubic-bezier(0.4, 0, 0.2, 1) both;
  }

  html.language-inline-transition::view-transition-new(root) {
    animation: languageContentIn 0.32s cubic-bezier(0.16, 1, 0.3, 1) both;
  }
}

@keyframes languageContentOut {
  from { opacity: 1; }
  to { opacity: 0.24; }
}

@keyframes languageContentIn {
  from { opacity: 0.24; }
  to { opacity: 1; }
}

@keyframes editorialOutForward {
  from { opacity: 1; transform: translateY(0); }
  to { opacity: 0.42; transform: translateY(-5px); }
}

@keyframes editorialInForward {
  from { opacity: 0.42; transform: translateY(7px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes editorialOutReverse {
  from { opacity: 1; transform: translateY(0); }
  to { opacity: 0.42; transform: translateY(5px); }
}

@keyframes editorialInReverse {
  from { opacity: 0.42; transform: translateY(-7px); }
  to { opacity: 1; transform: translateY(0); }
}

.section-head {
  max-width: 780px;
  margin-bottom: 30px;
  padding-left: 0;
  border-left: 0;
  background: transparent;
}
.section-kicker,
.label {
  color: var(--gold-text);
  font-size: 12px;
  font-weight: 820;
  letter-spacing: 0.105em;
  text-transform: uppercase;
  margin-bottom: 9px;
}
.decision-panel .section-kicker,
.decision-panel .label,
.dark-panel .section-kicker,
.dark-panel .label,
.founder-photo-card .section-kicker,
.founder-photo-card .label,
.cta .section-kicker,
.cta .label {
  color: var(--gold-light);
}
.section-head p,
.lead {
  color: var(--muted);
  font-size: 18px;
  margin-top: 16px;
  max-width: 820px;
}

.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 34px; align-items: start; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }

.card {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.82)),
    var(--frost);
  backdrop-filter: blur(24px);
  border: 1px solid var(--paper-edge);
  border-radius: 16px;
  padding: 24px;
  box-shadow:
    var(--shadow),
    inset 0 1px 0 rgba(255, 255, 255, 0.86);
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease, background 0.24s ease;
}

.card::after,
.compact-card::after,
.offering-aside::after,
.offering-body::after,
.founder-bio::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.36), transparent 36%),
    linear-gradient(0deg, rgba(7, 30, 58, 0.028), transparent 46%);
  opacity: 0.78;
}

.card > *,
.compact-card > *,
.offering-aside > *,
.offering-body > *,
.founder-bio > * {
  position: relative;
  z-index: 1;
}

.card:hover {
  transform: translateY(-2px);
  box-shadow:
    0 16px 38px rgba(7, 30, 58, 0.085),
    inset 0 1px 0 rgba(255, 255, 255, 0.84);
  border-color: rgba(47, 95, 143, 0.2);
}

.card p,
.card li { color: var(--muted); font-size: 15.5px; }
.card ul { margin: 14px 0 0; padding-left: 18px; }
.service-card {
  min-height: 212px;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: linear-gradient(90deg, rgba(185, 154, 93, 0.78), rgba(47, 95, 143, 0.08));
  opacity: 0;
  transition: opacity 0.24s ease;
}

.service-card:hover::before,
.service-card.is-active::before {
  opacity: 1;
}
.service-card.is-active {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(248, 251, 253, 0.86) 100%);
  border-color: rgba(185, 154, 93, 0.62);
  box-shadow: 0 0 16px rgba(7, 30, 58, 0.09);
}
.service-card .meta {
  margin-top: auto;
  padding-top: 14px;
  color: var(--navy);
  font-size: 13px;
  font-weight: 850;
}

#offers .inline-more {
  margin-bottom: 22px;
}

#offers .grid-3 {
  gap: 0;
  border-top: 1px solid rgba(7, 30, 58, 0.1);
  border-bottom: 1px solid rgba(7, 30, 58, 0.08);
}

#offers .service-card {
  min-height: 244px;
  padding: 26px 26px 24px;
  border: 0;
  border-right: 1px solid rgba(7, 30, 58, 0.09);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

#offers .service-card:last-child {
  border-right: 0;
}

#offers .service-card::before {
  display: none;
}

#offers .service-card::after {
  opacity: 0;
}

#offers .service-card:hover {
  transform: none;
  background: rgba(255, 255, 255, 0.32);
  box-shadow: none;
  border-color: rgba(7, 30, 58, 0.09);
}

#offers .service-card .label {
  color: var(--gold-text);
}

#offers .service-card .meta {
  border-top: 1px solid rgba(7, 30, 58, 0.09);
}

.inline-more {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  margin: 18px 0 26px;
  color: var(--navy);
  font-size: 15px;
  font-weight: 760;
  border-bottom: 1px solid rgba(185, 154, 93, 0.72);
  transition: color 0.2s ease, border-color 0.2s ease;
}

.inline-more::after {
  content: "->";
  color: var(--gold);
  font-weight: 820;
}

.inline-more:hover {
  color: var(--slate);
  border-color: var(--navy);
}

.dark-panel {
  background:
    linear-gradient(150deg, rgba(7, 30, 58, 0.96), rgba(18, 58, 99, 0.94));
  color: var(--white);
  border-radius: 24px;
  padding: 32px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.dark-panel h2,
.dark-panel h3 { color: var(--white); }
.dark-panel p,
.dark-panel li { color: rgba(255, 255, 255, 0.78); }

.offer-accordion {
  display: grid;
  gap: 14px;
  margin-top: 36px;
  padding-top: 34px;
  border-top: 1px solid var(--line);
}

.offer-detail {
  scroll-margin-top: var(--header-h);
  background: var(--frost);
  backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 22px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.offer-detail summary {
  list-style: none;
  cursor: pointer;
  padding: 24px 28px;
  position: relative;
}

.offer-detail summary::-webkit-details-marker { display: none; }

.offer-detail summary::after {
  content: "+";
  position: absolute;
  right: 26px;
  top: 25px;
  width: 30px;
  height: 30px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  color: var(--navy);
  background: rgba(47, 95, 143, 0.08);
  border: 1px solid rgba(47, 95, 143, 0.16);
  font-size: 19px;
  font-weight: 800;
}

.offer-detail[open] summary::after {
  content: "-";
}

.offer-detail h2 {
  max-width: 780px;
  padding-right: 48px;
  font-size: clamp(27px, 2.6vw, 38px);
}

.offer-output {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  padding: 0 28px 28px;
}

.offer-hero {
  min-height: var(--section-screen);
  display: flex;
  align-items: center;
  background: transparent;
}

.offer-hero-grid {
  display: grid;
  grid-template-columns: 1fr 0.72fr;
  gap: 46px;
  align-items: center;
}

.offer-hero-points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 34px;
  padding-top: 22px;
  border-top: 1px solid rgba(7, 30, 58, 0.1);
}

.offer-hero-points span {
  color: var(--gold-text);
  font-size: 12px;
  font-weight: 820;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.offer-hero-points p {
  color: var(--muted);
  font-size: 14.5px;
  line-height: 1.48;
  margin-top: 8px;
}

.offer-jump {
  display: grid;
  gap: 12px;
}

.offer-jump h2 {
  color: var(--white);
  font-size: clamp(25px, 2.3vw, 34px);
  margin-bottom: 8px;
}

.offer-jump a {
  padding: 15px 16px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.9);
  font-weight: 680;
}

.offer-page-section {
  min-height: var(--section-screen);
  display: grid;
  align-items: center;
  padding: 44px 0 60px;
  scroll-margin-top: var(--header-h);
}

.offer-page {
  overflow-anchor: none;
}

.offer-page-section.offer-tab-hidden {
  display: none;
}

.offer-page-section.offer-tab-visible .offering-layout {
  animation: offerTabIn 0.28s ease both;
}

@keyframes offerTabIn {
  from {
    opacity: 0;
    transform: translateY(6px);
    filter: blur(1px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

.offering-layout {
  display: grid;
  grid-template-columns: 0.35fr 0.65fr;
  gap: 38px;
  align-items: start;
}

.offering-aside {
  position: sticky;
  top: 104px;
  overflow: hidden;
  background: var(--frost);
  backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 22px;
  padding: 24px;
  box-shadow: var(--shadow);
}

.offering-aside h2 {
  font-size: clamp(26px, 2.4vw, 34px);
}

.offering-aside p {
  color: var(--muted);
  margin-top: 14px;
}

.offering-meta {
  margin-top: 22px;
  padding-top: 16px;
  border-top: 1px solid rgba(7, 30, 58, 0.1);
  color: var(--navy);
  font-size: 13px;
  font-weight: 820;
}

.offering-body {
  position: relative;
  overflow: hidden;
  background: var(--frost-strong);
  backdrop-filter: blur(24px);
  border: 1px solid rgba(7, 30, 58, 0.08);
  border-radius: 24px;
  padding: 30px;
  box-shadow: var(--shadow);
}

.offer-switch {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 22px;
  padding: 5px;
  border: 1px solid rgba(7, 30, 58, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.58);
}

.offer-switch a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 6px 12px;
  border-radius: 999px;
  color: var(--muted);
  font-size: 12.5px;
  font-weight: 820;
  white-space: nowrap;
  transition: color 0.2s ease, background 0.2s ease;
}

.offer-switch a:hover {
  color: var(--navy);
  background: rgba(47, 95, 143, 0.08);
}

.offer-switch a.is-current {
  color: var(--white);
  background: var(--navy);
}

.offering-body .offer-output {
  padding: 24px 0 0;
}

.offer-page-cta {
  padding: 80px 0;
}

.compact-card {
  position: relative;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(7, 30, 58, 0.09);
  border-radius: 14px;
  padding: 16px;
}

.compact-card h3 {
  font-size: 18px;
  margin-bottom: 8px;
}

.compact-card p {
  color: var(--muted);
  font-size: 14.5px;
}

.scope-list {
  display: grid;
  gap: 10px;
  margin-top: 20px;
}

.scope-item {
  display: grid;
  grid-template-columns: 34px 1fr;
  column-gap: 14px;
  row-gap: 4px;
  align-items: start;
}

.scope-item::before {
  content: "";
  width: 10px;
  height: 10px;
  margin-top: 8px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 6px rgba(185, 154, 93, 0.14);
  grid-row: 1 / span 2;
}

.scope-item strong {
  color: var(--navy);
  display: block;
  margin-bottom: 3px;
  grid-column: 2;
}
.scope-item span {
  color: var(--muted);
  font-size: 15.5px;
  grid-column: 2;
}

.visual-map {
  min-height: 410px;
  display: grid;
  align-content: center;
  gap: 0;
  position: relative;
  overflow: hidden;
}

.visual-map::before {
  content: "";
  position: absolute;
  right: 24px;
  top: 22px;
  width: 230px;
  height: 80px;
  background: linear-gradient(90deg, rgba(47, 95, 143, 0.16), rgba(7, 30, 58, 0.1));
  filter: blur(46px);
  opacity: 0.22;
  pointer-events: none;
}

.map-row {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.map-cell {
  min-height: 118px;
  border-radius: 0;
  padding: 20px;
  border: 0;
  border-right: 1px solid rgba(255, 255, 255, 0.14);
  background: transparent;
  transition: transform 0.22s ease, background 0.22s ease, border-color 0.22s ease;
}

.map-cell:last-child {
  border-right: 0;
}

.map-cell:not(.highlight):hover {
  transform: none;
  background: rgba(255, 255, 255, 0.055);
  border-color: rgba(255, 255, 255, 0.18);
}

.map-cell.highlight {
  position: relative;
  background:
    linear-gradient(180deg, rgba(225, 192, 111, 0.98), rgba(225, 192, 111, 0.9));
  color: #00528f;
  border-color: rgba(255, 255, 255, 0.3);
  box-shadow:
    inset 1px 0 0 rgba(255, 255, 255, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.38);
  overflow: hidden;
}

.map-cell h3 { color: inherit; font-size: 18px; }
.map-cell p { color: inherit; opacity: 0.78; font-size: 14px; }
.map-cell.highlight h3,
.map-cell.highlight p { color: #00528f; opacity: 1; }

.map-note {
  position: relative;
  z-index: 1;
  margin-top: 0;
  padding-top: 20px;
  border-top: 0;
}

.map-note span {
  color: var(--gold-light);
  font-size: 12px;
  font-weight: 820;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.map-note p {
  margin-top: 7px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 15px;
  line-height: 1.55;
}

.proof-list {
  display: grid;
  gap: 0;
  margin-top: 22px;
  border-top: 1px solid rgba(7, 30, 58, 0.1);
}

.proof-item {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 12px;
  align-items: start;
  padding: 15px 0;
  border-top: 0;
  border-bottom: 1px solid rgba(7, 30, 58, 0.085);
}

.proof-item span,
.fit-signals span {
  color: var(--gold-text);
  font-size: 12px;
  font-weight: 820;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.proof-item p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.48;
}

.proof-item strong {
  color: var(--navy);
  font-weight: 720;
}

.founder-panel {
  background: linear-gradient(150deg, var(--navy), var(--navy-2));
  color: var(--white);
  border-radius: 30px;
  padding: 32px;
  box-shadow: var(--shadow);
}

.founder-panel h2 { color: var(--white); }
.founder-panel p { color: rgba(255, 255, 255, 0.78); margin-top: 14px; }
.founder-layout {
  display: grid;
  grid-template-columns: 0.62fr 1.38fr;
  gap: 34px;
  align-items: stretch;
}
.founder-photo-card {
  background:
    linear-gradient(150deg, rgba(7, 30, 58, 0.98), rgba(18, 58, 99, 0.96));
  color: var(--white);
  border-radius: 24px;
  padding: 24px;
  box-shadow: var(--shadow);
  display: grid;
  grid-template-rows: 1fr auto;
  gap: 16px;
  align-content: stretch;
  max-width: 380px;
  height: 100%;
}
.founder-photo-wrap {
  width: 100%;
  min-height: 0;
  border-radius: 18px;
  overflow: hidden;
  background: #d6dde4;
  box-shadow:
    inset 0 0 0 1px rgba(7, 30, 58, 0.06),
    0 18px 44px rgba(0, 0, 0, 0.18);
}
.founder-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
  display: block;
}
.founder-caption h2 {
  color: var(--white);
  font-size: clamp(28px, 2.7vw, 38px);
  line-height: 1;
  margin: 0;
}
.founder-caption p {
  color: rgba(255, 255, 255, 0.78);
  margin: 12px 0 0;
}
.founder-bio {
  position: relative;
  overflow: hidden;
  background: var(--frost-strong);
  backdrop-filter: blur(24px);
  border: 1px solid rgba(7, 30, 58, 0.08);
  border-radius: 24px;
  padding: 32px;
  box-shadow: var(--shadow);
  min-height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.founder-bio .lead {
  margin-top: 14px;
}
.logo-strip {
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  color: var(--navy);
  font-size: 13px;
  font-weight: 800;
  white-space: nowrap;
  letter-spacing: 0;
}
.logo-strip span {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 820;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.linkedin-link {
  display: inline-flex;
  width: fit-content;
  margin-top: 12px;
  color: var(--slate);
  font-size: 13px;
  font-weight: 850;
  border-bottom: 1px solid rgba(47, 95, 143, 0.34);
}
.linkedin-link:hover {
  color: var(--navy);
  border-bottom-color: var(--gold);
}
.founder-link {
  color: rgba(255, 255, 255, 0.84);
  border-bottom-color: rgba(255, 255, 255, 0.28);
}
.founder-link:hover {
  color: var(--white);
  border-bottom-color: var(--gold);
}
.company-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 26px;
  white-space: nowrap;
}
.company-strip span {
  display: inline-flex;
  padding: 8px 11px;
  border-radius: 999px;
  background: rgba(47, 95, 143, 0.08);
  border: 1px solid rgba(47, 95, 143, 0.16);
  color: var(--navy);
  font-size: 13px;
  font-weight: 820;
  flex: 0 0 auto;
}

.fit-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 34px;
  align-items: start;
}

#why .fit-grid {
  align-items: stretch;
}

#why .visual-map {
  height: 100%;
}

#why .lead {
  font-size: 16.5px;
  line-height: 1.52;
}

html[lang="zh-CN"] #why .fit-grid {
  grid-template-columns: 0.88fr 1.12fr;
  align-items: center;
}

html[lang="zh-CN"] #why .proof-list {
  gap: 14px;
  margin-top: 26px;
}

html[lang="zh-CN"] #why .proof-item {
  grid-template-columns: 42px 1fr;
  gap: 14px;
  padding-top: 14px;
}

html[lang="zh-CN"] #why .proof-item span {
  font-size: 13px;
}

html[lang="zh-CN"] #why .proof-item p {
  font-size: 16.5px;
  line-height: 1.62;
}

html[lang="zh-CN"] #why .visual-map {
  align-content: center;
}

.fit-signals {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 26px;
  padding-top: 22px;
  border-top: 1px solid rgba(7, 30, 58, 0.12);
}

.fit-signals p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
  margin-top: 8px;
}

.process-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(7, 30, 58, 0.13);
  border-bottom: 0;
  position: relative;
}

.process-list::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -1px;
  height: 1px;
  background: linear-gradient(90deg, rgba(185, 154, 93, 0.56), rgba(7, 30, 58, 0.08), transparent);
  pointer-events: none;
}

.process-step {
  position: relative;
  padding: 26px 22px 28px 0;
}

.process-step + .process-step {
  padding-left: 24px;
  border-left: 1px solid rgba(7, 30, 58, 0.1);
}

.process-step::before {
  content: "";
  position: absolute;
  top: -5px;
  left: 0;
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--gold);
  box-shadow: 0 0 0 5px rgba(185, 154, 93, 0.13);
}

.process-step + .process-step::before {
  left: 24px;
}

.process-step p {
  color: var(--muted);
  font-size: 15.5px;
}

#process .section-head {
  margin-bottom: 24px;
}

#process h2 {
  font-size: clamp(30px, 3vw, 42px);
}

#process .process-step {
  padding-top: 22px;
  padding-bottom: 22px;
}

.process-support {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 34px;
  margin-top: 32px;
  padding-top: 22px;
  border-top: 1px solid rgba(7, 30, 58, 0.09);
  transform: none;
}

.process-support div {
  padding: 2px 18px 0 0;
}

.process-support span {
  color: var(--gold-text);
  font-size: 12px;
  font-weight: 820;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.process-support p {
  color: var(--muted);
  font-size: 14.5px;
  line-height: 1.46;
  margin-top: 6px;
}

.cta {
  background:
    linear-gradient(150deg, rgba(7, 30, 58, 0.97), rgba(18, 58, 99, 0.95));
  color: var(--white);
  border-radius: 26px;
  padding: 42px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 255, 255, 0.12);
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 44px;
  align-items: center;
}

.cta::before {
  content: "";
  position: absolute;
  right: -120px;
  top: -90px;
  width: 420px;
  height: 220px;
  background: linear-gradient(90deg, rgba(47, 95, 143, 0.12), rgba(185, 154, 93, 0.1));
  filter: blur(70px);
  opacity: 0.18;
  pointer-events: none;
}

.cta-main,
.cta-detail {
  position: relative;
  z-index: 1;
}

.cta h2 { color: var(--white); }
.cta p {
  max-width: 720px;
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 18px;
}
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  margin-top: 28px;
}
.cta .btn-primary { background: var(--gold-light); color: var(--navy); box-shadow: none; }
.email-link {
  display: inline-flex;
  color: rgba(255, 255, 255, 0.86);
  font-size: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.28);
}
.email-link:hover { border-bottom-color: var(--gold-light); }
.cta-detail {
  border-left: 1px solid rgba(255, 255, 255, 0.16);
  padding-left: 34px;
}
.contact-row {
  display: grid;
  grid-template-columns: 128px 1fr;
  gap: 18px;
  padding: 18px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}
.contact-row:first-child { border-top: 0; padding-top: 0; }
.contact-row:last-child { padding-bottom: 0; }
.contact-row span {
  color: var(--gold-light);
  font-size: 12px;
  font-weight: 820;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.contact-row p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 15.5px;
  line-height: 1.55;
}

footer { padding: 38px 0; color: var(--muted); font-size: 14px; }
.footer-row {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  border-top: 1px solid var(--line);
  padding-top: 24px;
}
.footer-address {
  max-width: 680px;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  font-style: normal;
  line-height: 1.5;
  text-align: right;
}

.reveal {
  opacity: 1;
  transform: none;
  transition: none;
}
.reveal.visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  html::after { transition: none; }
  .reveal, .btn, .card, main > section > .container { transition: none !important; }
  .reveal { opacity: 1; transform: none; }
  main > section.editorial-pending > .container {
    opacity: 1;
    translate: none;
    filter: none;
  }

  ::view-transition-old(root),
  ::view-transition-new(root) {
    animation: none !important;
  }
}

@media (max-width: 980px) {
  .hero,
  #offers,
  #why,
  #process,
  #founder,
  #fit,
  #contact {
    min-height: auto;
    display: block;
  }
  #fit > .container,
  #offers > .container,
  #why > .container,
  #process > .container,
  #founder > .container,
  #contact > .container,
  .hero-grid {
    transform: none;
  }
  .offer-hero,
  .offer-page-section,
  .offer-page-cta {
    min-height: auto;
    display: block;
  }
  .hero-grid,
  .offer-hero-grid,
  .offering-layout,
  .grid-2,
  .founder-layout,
  .fit-grid { grid-template-columns: 1fr; }
  .offering-aside { position: static; }
  .founder-photo-card {
    width: 100%;
    max-width: 420px;
    height: auto;
    justify-self: center;
  }
  .founder-photo-wrap { aspect-ratio: auto; }
  .founder-photo {
    width: 100%;
    height: auto;
    object-fit: contain;
  }
  .grid-3,
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .cta { grid-template-columns: 1fr; gap: 30px; }
  .cta-detail {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.16);
    padding-left: 0;
    padding-top: 26px;
  }
  .process-list { grid-template-columns: repeat(2, 1fr); }
  .process-step:nth-child(3) { border-left: 0; padding-left: 0; }
  .process-step:nth-child(3)::before { left: 0; }
  .nav-links { display: none; }
  .mobile-actions { display: flex; }
  .mobile-menu.is-open {
    display: grid;
    gap: 8px;
    width: min(100% - 40px, 1120px);
    margin: 0 auto 16px;
    padding: 14px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(7, 30, 58, 0.08);
    box-shadow:
      0 18px 44px rgba(7, 30, 58, 0.09),
      inset 0 1px 0 rgba(255, 255, 255, 0.88);
  }
  .mobile-menu a {
    padding: 12px 14px;
    border-radius: 14px;
    color: var(--navy);
    font-size: 14px;
    font-weight: 760;
  }
  .mobile-menu a:hover {
    background: rgba(47, 95, 143, 0.08);
  }
  .mobile-menu .mobile-lang-switch {
    margin-top: 8px;
    width: fit-content;
    gap: 3px;
    padding: 6px;
  }
  .mobile-menu .mobile-lang-switch a {
    min-width: 42px;
    min-height: 42px;
    padding: 5px 10px;
    border-radius: 999px;
    background: transparent;
    color: var(--muted);
    font-size: 12px;
    font-weight: 840;
  }
  .mobile-menu .mobile-lang-switch a.is-active {
    background: var(--navy);
    color: var(--white);
  }
  .offer-output { grid-template-columns: 1fr; }
  .offer-hero-points { grid-template-columns: 1fr; }
  .offering-layout { gap: 24px; }

  html[lang="zh-CN"] #why .fit-grid {
    grid-template-columns: 1fr;
    align-items: start;
  }

  html[lang="zh-CN"] #why .visual-map {
    width: 100%;
  }
}

@media (max-width: 640px) {
  body::before {
    background:
      radial-gradient(circle at 20% 12%, rgba(255, 255, 255, 0.58), transparent 32%),
      linear-gradient(135deg, rgba(255, 255, 255, 0.28), rgba(237, 243, 247, 0.04)),
      repeating-linear-gradient(0deg, rgba(7, 30, 58, 0.007) 0, rgba(7, 30, 58, 0.007) 1px, transparent 1px, transparent 15px);
    background-size: 100% 100%;
    mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.12) 58%, rgba(0, 0, 0, 0.18));
  }

  .container { width: min(100% - 28px, 1120px); }
  .hero { padding: 66px 0 54px; }
  section { padding: 56px 0; }
  main > section,
  .offer-detail { scroll-margin-top: var(--header-h); }
  h1 { font-size: clamp(34px, 10vw, 42px); }
  .grid-3,
  .grid-4,
  .process-list,
  .process-support,
  .fit-signals,
  .map-row { grid-template-columns: 1fr; }
  #offers .grid-3 {
    gap: 12px;
    border: 0;
  }
  #offers .service-card {
    min-height: auto;
    padding: 20px;
    border: 1px solid rgba(7, 30, 58, 0.07);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.54);
  }
  #offers .service-card:last-child {
    border-right: 1px solid rgba(7, 30, 58, 0.07);
  }
  #offers .service-card .meta {
    padding-top: 12px;
  }
  html[lang="zh-CN"] #why .fit-grid,
  html[lang="zh-CN"] #why .map-row {
    grid-template-columns: 1fr;
  }
  html[lang="zh-CN"] #why .visual-map {
    min-height: auto;
    align-content: start;
    gap: 12px;
  }
  html[lang="zh-CN"] #why .map-cell {
    min-height: auto;
  }
  .process-list {
    border-top: 1px solid rgba(7, 30, 58, 0.14);
    border-bottom: 0;
  }
  .process-step,
  .process-step + .process-step {
    padding: 22px 0;
    border-left: 0;
    border-bottom: 1px solid rgba(7, 30, 58, 0.1);
  }
  .process-step::before,
  .process-step + .process-step::before {
    left: 0;
  }
  .decision-panel,
  .dark-panel,
  .founder-panel,
  .founder-photo-card,
  .founder-bio,
  .cta { border-radius: 24px; padding: 24px; }
  .cta-actions { align-items: flex-start; flex-direction: column; }
  .contact-row {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 16px 0;
  }
  .brand-main { font-size: 19px; }
  .brand { min-width: 0; }
  .mobile-cta { padding: 9px 12px; }
  .mobile-menu-toggle { padding: 9px 11px; }
  .offer-detail summary { padding: 22px 22px; }
  .offer-detail summary::after { right: 18px; top: 20px; }
  .offer-detail h2 { padding-right: 38px; }
  .offer-output { padding: 0 18px 18px; gap: 10px; }
  .offering-body .offer-output { padding: 22px 0 0; }
  .offer-hero,
  .offer-page-section,
  .offer-page-cta { padding: 56px 0; }

  .offer-hero-points { margin-top: 24px; }
  .offering-body,
  .offering-aside { padding: 22px; border-radius: 20px; }
  .offering-layout { gap: 18px; }
  .offer-switch {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    width: 100%;
    border-radius: 18px;
  }
  .offer-switch a {
    min-width: 0;
    min-height: 44px;
    padding: 7px 5px;
    text-align: center;
    white-space: normal;
  }
  .process-support { transform: none; }
  .compact-card { padding: 14px 16px; border-radius: 16px; }
  .compact-card h3 { font-size: 17px; margin-bottom: 5px; }
  .compact-card p { font-size: 14px; line-height: 1.45; }
  .founder-photo-card { max-width: none; }
  .founder-caption h2 { font-size: 32px; }
  .founder-bio .lead { font-size: 16px; line-height: 1.55; }
  .optional-mobile { display: none; }
  .mobile-only { display: block; }
  .logo-strip {
    white-space: normal;
    font-size: 12.5px;
    line-height: 1.45;
  }
  .footer-row { flex-direction: column; align-items: flex-start; }
  .footer-address { text-align: left; }
  .company-strip { white-space: normal; }
}

@media (max-width: 640px) {
  .mobile-cta {
    display: none;
  }

  .mobile-menu-booking {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    margin-top: 4px;
    background: var(--navy);
    color: var(--white) !important;
  }

  .mobile-actions {
    gap: 6px;
  }

  .mobile-lang-switch {
    gap: 3px;
    padding: 6px;
  }

  .mobile-lang-switch a {
    min-width: 38px;
    padding-inline: 8px;
  }
}

@media (max-width: 360px) {
  .container,
  .hero > .container,
  #offers > .container,
  #why > .container,
  #process > .container,
  #founder > .container,
  #fit > .container,
  #contact > .container {
    width: calc(100% - 24px);
  }

  h1 {
    font-size: 32px;
  }

  .decision-panel,
  .dark-panel,
  .founder-panel,
  .founder-photo-card,
  .founder-bio,
  .cta,
  .offering-body,
  .offering-aside {
    padding: 20px;
  }

  html[lang="zh-CN"] .offering-body h2 {
    font-size: 25px;
  }
}
