:root {
  --font-sans: "Avenir Next", "SF Pro Text", "SF Pro Display", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Noto Sans CJK SC", "Segoe UI", sans-serif;
  --font-display: "Avenir Next", "SF Pro Display", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Noto Sans CJK SC", "Segoe UI", sans-serif;
  --bg: #f4f7fb;
  --surface: #ffffff;
  --surface-2: #eef3f8;
  --text: #0f172a;
  --muted: #475569;
  --line: #dde7f2;
  --line-strong: #c4d3e2;
  --primary: #0b2034;
  --primary-2: #123554;
  --accent: #edf7ff;
  --accent-border: #b6dcff;
  --warning-bg: #fffbeb;
  --warning-border: #fde68a;
  --warning-text: #92400e;
  --success-bg: #ecfdf5;
  --success-text: #047857;
  --shadow: 0 18px 44px rgba(15, 23, 42, 0.08);
  --shadow-soft: 0 12px 28px rgba(15, 23, 42, 0.06);
  --shadow-lg: 0 28px 60px rgba(15, 23, 42, 0.12);
  --radius: 28px;
  --radius-sm: 20px;
  --maxw: 1420px;
  --home-header-height: 83px;
  --anchor-offset: calc(var(--home-header-height) + 28px);
}

* { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--anchor-offset);
}
body {
  margin: 0;
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

:lang(ja) {
  font-family: "Noto Sans JP", "Hiragino Sans", "Yu Gothic", "Meiryo", sans-serif;
}

:lang(ko) {
  font-family: "Noto Sans KR", "Apple SD Gothic Neo", "Malgun Gothic", "Nanum Gothic", sans-serif;
}

body::before,
body::after {
  content: "";
  position: fixed;
  z-index: -1;
  pointer-events: none;
  border-radius: 50%;
  opacity: 0.75;
}
body::before {
  top: -180px;
  left: -120px;
  width: 440px;
  height: 440px;
  background: radial-gradient(circle, rgba(125, 211, 252, 0.2) 0%, rgba(125, 211, 252, 0) 72%);
}
body::after {
  right: -160px;
  bottom: 8%;
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, rgba(191, 219, 254, 0.22) 0%, rgba(191, 219, 254, 0) 74%);
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
:where([id]) {
  scroll-margin-top: var(--anchor-offset);
}
:where(a, button, input, textarea, select, summary):focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.18);
}

.container {
  width: min(var(--maxw), calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  background: rgba(255,255,255,0.82);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 78px;
  padding: 14px 0;
  flex-wrap: nowrap;
}
.brand-wrap {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
  flex: 1 1 auto;
}
.brand-logo {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  object-fit: contain;
  flex: 0 0 auto;
  background: linear-gradient(180deg, rgba(255,255,255,0.98) 0%, rgba(244, 248, 255, 0.98) 100%);
  border: 1px solid rgba(196, 211, 226, 0.92);
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.08);
  padding: 5px;
}
.brand-copy {
  min-width: 0;
  display: grid;
  gap: 2px;
}

.brand-title {
  font-family: var(--font-display);
  font-size: 1.04rem;
  font-weight: 780;
  letter-spacing: -0.024em;
  line-height: 1.16;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.brand-subtitle {
  font-size: 0.76rem;
  color: var(--muted);
  margin-top: 0;
  letter-spacing: 0.01em;
  line-height: 1.18;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.nav {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 6px;
  border: 1px solid rgba(221, 231, 242, 0.92);
  border-radius: 999px;
  background: rgba(255,255,255,0.6);
  box-shadow: 0 10px 20px rgba(15, 23, 42, 0.05);
  flex-wrap: nowrap;
  font-size: 0.86rem;
  color: var(--muted);
  flex: 0 1 auto;
}
.nav a {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 10px;
  border-radius: 999px;
  white-space: nowrap;
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.01em;
}

.lang-switch {
  position: relative;
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 6px;
  padding: 4px;
  border: 1px solid rgba(221, 231, 242, 0.82);
  border-radius: 999px;
  background: rgba(255,255,255,0.68);
  box-shadow: 0 12px 26px rgba(15, 23, 42, 0.05);
  transition: border-color 0.22s ease, box-shadow 0.24s ease, background-color 0.22s ease;
}

.lang-dropdown-toggle {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(221, 231, 242, 0.9);
  background: linear-gradient(180deg, rgba(255,255,255,0.9) 0%, rgba(247, 250, 255, 0.82) 100%);
  border-radius: 999px;
  padding: 0 14px;
  min-width: 92px;
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text);
  cursor: pointer;
  box-shadow: 0 10px 22px rgba(15, 23, 42, 0.05);
  transition: transform 0.22s ease, box-shadow 0.24s ease, border-color 0.22s ease, background-color 0.22s ease;
}

.lang-dropdown-toggle::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(255,255,255,0.46), rgba(255,255,255,0));
  opacity: 0.55;
  pointer-events: none;
}

.lang-dropdown-current {
  display: inline-block;
  min-width: 1.8em;
  text-align: center;
  line-height: 1;
  transition: opacity 0.18s ease, transform 0.22s ease;
}

.lang-dropdown-caret {
  font-size: 0.7rem;
  color: #526579;
  transition: transform 0.22s ease, color 0.18s ease;
}

.lang-switch.desktop-open {
  border-color: rgba(191, 219, 254, 0.95);
  background: rgba(255,255,255,0.8);
  box-shadow: 0 16px 30px rgba(15, 23, 42, 0.08);
}

.lang-switch.desktop-open .lang-dropdown-toggle {
  border-color: rgba(191, 219, 254, 0.98);
  box-shadow: 0 14px 26px rgba(15, 23, 42, 0.08);
}

.lang-switch.desktop-open .lang-dropdown-caret {
  color: #0b67d0;
  transform: rotate(180deg);
}

.lang-menu {
  position: absolute;
  right: 0;
  top: calc(100% + 12px);
  z-index: 60;
  min-width: 148px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  border: 1px solid rgba(221, 231, 242, 0.96);
  border-radius: 18px;
  background: rgba(255,255,255,0.84);
  box-shadow: 0 20px 38px rgba(15, 23, 42, 0.12);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(10px) scale(0.96);
  transform-origin: top right;
  transition: opacity 0.18s ease, transform 0.22s cubic-bezier(0.22, 1, 0.36, 1), visibility 0s linear 0.22s;
}

.lang-switch.desktop-open .lang-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0) scale(1);
  transition-delay: 0s;
}

.lang-btn {
  border: 1px solid transparent;
  background: transparent;
  color: #304256;
  border-radius: 12px;
  padding: 9px 12px;
  min-height: 38px;
  font-size: 0.82rem;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  text-align: left;
  width: 100%;
  transition: transform 0.22s ease, background-color 0.22s ease, color 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.lang-btn:hover {
  color: var(--text);
  background: rgba(255,255,255,0.82);
}

.lang-btn.active {
  background: linear-gradient(135deg, #10233f 0%, #0b67d0 100%);
  border-color: rgba(11, 103, 208, 0.5);
  color: white;
  box-shadow: 0 12px 22px rgba(11, 103, 208, 0.2);
}

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

.header-mobile-actions {
  display: none;
  gap: 8px;
}

.header-toggle {
  border: 1px solid rgba(221, 231, 242, 0.92);
  background: rgba(255,255,255,0.74);
  color: var(--text);
  border-radius: 14px;
  padding: 8px 12px;
  font-size: 0.82rem;
  font-weight: 700;
  cursor: pointer;
  line-height: 1;
  box-shadow: 0 10px 22px rgba(15, 23, 42, 0.05);
}
.toggle-icon {
  font-size: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.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;
}

.header-toggle[aria-expanded="true"] {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: min(840px, calc(100svh - var(--home-header-height)));
  background:
    radial-gradient(circle at top right, rgba(14, 165, 233, 0.08), transparent 28%),
    radial-gradient(circle at bottom left, rgba(16, 185, 129, 0.06), transparent 26%),
    var(--bg);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0;
  transition: opacity 900ms ease;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  pointer-events: none;
}

.hero-bg.active {
  opacity: 1;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 0;
  min-height: min(840px, calc(100svh - var(--home-header-height)));
  padding: clamp(14px, 2.4vh, 30px) 0;
  align-items: start;
  align-content: center;
  position: relative;
  z-index: 1;
}
.hero-services {
  margin-top: 34px;
  padding: 0;
}

.hero-services .grid-4,
.hero-steps .grid-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: stretch;
}

.hero-services .card,
.hero-steps .card {
  width: 100%;
  min-width: 0;
  height: 100%;
  padding: clamp(16px, 1.35vw, 22px);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.18) 0%, rgba(255, 255, 255, 0.06) 100%);
  border-color: rgba(255, 255, 255, 0.16);
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.12);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
}

.hero-services .card::before,
.hero-steps .card::before {
  background: linear-gradient(90deg, rgba(255,255,255,0), rgba(255,255,255,0.34), rgba(255,255,255,0));
}

.hero-services .muted,
.hero-steps .muted {
  color: rgba(15, 23, 42, 0.76);
}

.hero-steps .step-num {
  color: rgba(12, 74, 110, 0.82);
}

.hero-services .card h3,
.hero-steps .card h3 {
  font-size: clamp(1rem, 1.2vw, 1.12rem);
}

.hero-services .muted,
.hero-steps .muted {
  line-height: 1.55;
}

@media (hover: hover) and (pointer: fine) {
  .hero-services .card:hover,
  .hero-steps .card:hover {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.24) 0%, rgba(255, 255, 255, 0.09) 100%);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 24px 48px rgba(15, 23, 42, 0.16);
  }
}

.pill {
  display: inline-flex;
  padding: 7px 14px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.9);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--muted);
  box-shadow: var(--shadow);
}

.hero h1 {
  font-size: clamp(2.4rem, 5vw, 4.4rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
  margin: 18px 0 18px;
  max-width: 760px;
}

.hero p.lead {
  max-width: 720px;
  font-size: 1.08rem;
  color: var(--muted);
  margin: 0 0 24px;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  padding: 13px 18px;
  font-size: 0.95rem;
  font-weight: 600;
  border: 1px solid transparent;
  cursor: pointer;
  transition: 0.2s ease;
}

.btn-primary {
  background: var(--primary);
  color: white;
  box-shadow: var(--shadow);
}

.btn-primary:hover { background: var(--primary-2); }

.btn-secondary {
  background: white;
  border-color: var(--line);
  color: var(--text);
}

.btn-secondary:hover { background: #f8fafc; }

.hero-disclaimer {
  margin-top: 14px;
  max-width: 76ch;
  padding: 12px 14px;
  border: 1px solid rgba(196, 211, 226, 0.74);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.82);
  color: #334155;
  font-size: 0.92rem;
  line-height: 1.58;
}

.quick-facts-section {
  margin-top: 18px;
}

.quick-facts-card {
  display: grid;
  gap: 16px;
  padding: clamp(18px, 2vw, 24px);
  border: 1px solid rgba(196, 211, 226, 0.9);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-soft);
}

.quick-facts-card h2,
.quick-facts-card h3 {
  display: block;
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.3;
}

.quick-facts-eyebrow {
  font-size: 1.1rem;
  color: #0f172a;
}

.quick-facts-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.quick-facts-grid > div,
.quick-facts-cn {
  padding: 12px 14px;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  background: #f8fbff;
  color: #334155;
  font-size: 0.92rem;
  line-height: 1.58;
}

.quick-facts-cn ul {
  margin: 8px 0 0;
  padding-left: 20px;
}

.quick-facts-cn li + li {
  margin-top: 5px;
}

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.quick-form {
  padding: 24px;
}

.card-title {
  font-size: 1rem;
  font-weight: 700;
  margin: 0;
}

.card-subtitle {
  font-size: 0.9rem;
  color: var(--muted);
  margin: 4px 0 0;
}

.form-grid, .grid-2, .grid-3, .grid-4 {
  display: grid;
  gap: 16px;
}

.form-grid { margin-top: 18px; }
.faq-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-2.single { grid-template-columns: minmax(0, 1fr); }
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.hospital-stack {
  display: block;
  width: 100%;
  max-width: 100%;
}
.hospital-card.single {
  padding: 28px;
}
.hospital-meta-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-top: 16px;
}
.hospital-gallery {
  margin-bottom: 16px;
  padding: 18px;
  border-radius: 22px;
  background: white;
  --gallery-h: 420px;
}
.hospital-languages {
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}
.hospital-languages-label {
  font-weight: 700;
  font-size: 0.86rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}
.hospital-gallery-track {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 4px;
}
.hospital-gallery-item {
  flex: 0 0 100%;
  scroll-snap-align: start;
  border-radius: 14px;
  border: 1px solid var(--line);
  overflow: hidden;
  background: #f8fafc;
}
.hospital-gallery-item video,
.hospital-gallery-item img {
  width: 100%;
  height: var(--gallery-h);
  display: block;
}
.hospital-gallery-item video {
  object-fit: contain;
  background: #000;
}
.hospital-gallery-item img {
  object-fit: cover;
}
.hospital-gallery-dots {
  margin-top: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
}
.hospital-gallery-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  border: 0;
  padding: 0;
  background: #cbd5e1;
  cursor: pointer;
}
.hospital-gallery-dot.active {
  width: 20px;
  background: var(--primary);
}
.news-section {
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}
.news-slider-shell {
  position: relative;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  margin-left: 0;
  padding: 0;
  border-radius: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  overflow: hidden;
}
.news-track {
  --news-gap: 20px;
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - var(--news-gap)) / 2);
  gap: var(--news-gap);
  width: 100%;
  max-width: 100%;
  min-width: 0;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
}
.news-track::-webkit-scrollbar { display: none; }
.news-item {
  scroll-snap-align: start;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  min-height: min(50vh, 500px);
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 12px;
}
.news-item.news-clickable {
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease;
}
.news-item.news-clickable:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.1);
}

.news-list {
  display: grid;
  gap: 22px;
}

#news .section-head {
  margin-bottom: 20px;
}

.news-item video {
  width: 100%;
  height: 255px;
  display: block;
  background: transparent;
  object-fit: contain;
  margin: auto auto 8px;
  border-radius: 0;
}
.news-thumb {
  width: 100%;
  max-width: none;
  height: 255px;
  object-fit: contain;
  background: transparent;
  border-radius: 0;
  border: 0;
  margin: auto auto 8px;
  display: block;
}
.news-caption {
  order: 1;
  margin: 0;
  padding: 12px 14px;
  min-height: 0;
  color: #1e293b;
  font-size: clamp(1.12rem, 2.3vw, 1.8rem);
  font-weight: 650;
  line-height: 1.35;
  background: #f8fbff;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.news-summary {
  order: 2;
  margin: 0;
  margin-top: 10px;
  padding: 12px 14px;
  min-height: 92px;
  color: #475569;
  font-size: clamp(0.9rem, 1.2vw, 1rem);
  line-height: 1.6;
  background: #ffffff;
  border: 1px solid #eef2f7;
  border-radius: 10px;
}
.news-thumb,
.news-item > video,
.news-inline-media {
  order: 3;
  align-self: center;
}
.news-inline-media {
  margin: auto auto 8px;
  width: 100%;
  height: 255px;
  max-width: none;
  border: 0;
  border-radius: 0;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
}
.news-inline-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 100%;
  overflow: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
}
.news-inline-track::-webkit-scrollbar { display: none; }
.news-inline-item {
  margin: 0;
  scroll-snap-align: start;
}
.news-inline-item video {
  width: 100%;
  height: 255px;
  display: block;
  background: transparent;
  object-fit: contain;
}
.news-inline-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  padding: 10px 0 12px;
}
.news-inline-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  border: 0;
  padding: 0;
  background: #cbd5e1;
  cursor: pointer;
}
.news-inline-dot.active {
  width: 20px;
  background: var(--primary);
}
.news-nav-btn {
  position: absolute;
  top: calc(50% - 22px);
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid #cbd5e1;
  background: rgba(255,255,255,0.95);
  color: #0f172a;
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.12);
}
.news-nav-btn.prev { left: 10px; }
.news-nav-btn.next { right: 10px; }
.news-dots {
  margin-top: 14px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
}
.news-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  border: 0;
  padding: 0;
  background: #cbd5e1;
  cursor: pointer;
}
.news-dot.active {
  width: 20px;
  background: var(--primary);
}
.grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }

input, textarea, select {
  width: 100%;
  border: 1px solid var(--line);
  background: white;
  color: var(--text);
  border-radius: 18px;
  padding: 14px 15px;
  font: inherit;
  outline: none;
}

textarea { min-height: 120px; resize: vertical; }
input::placeholder, textarea::placeholder { color: #94a3b8; }
input:focus, textarea:focus, select:focus {
  border-color: #94a3b8;
  box-shadow: 0 0 0 4px rgba(148, 163, 184, 0.12);
}

.check-note {
  display: grid;
  grid-template-columns: 20px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  background: var(--surface-2);
  border-radius: 18px;
  padding: 14px;
  font-size: 0.86rem;
  color: var(--muted);
}
.check-note input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin: 2px 0 0;
  accent-color: var(--primary);
}
.check-note span { line-height: 1.4; }

.section {
  padding: 72px 0;
}

.section-head {
  max-width: 720px;
  margin-bottom: 28px;
}

.section-head .eyebrow,
.contact-intro .eyebrow,
.quick-facts-card > div > .eyebrow {
  display: none;
}

.eyebrow {
  font-size: 0.78rem;
  font-weight: 820;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  line-height: 1.25;
}
#hospitals .eyebrow {
  white-space: nowrap;
}

.section h2 {
  display: block;
  margin: 6px 0 0;
  color: #0f172a;
  font-size: clamp(1.55rem, 2.6vw, 2.25rem);
  line-height: 1.18;
  letter-spacing: 0;
}

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

.shanghai-guide-section {
  padding: 0;
  padding-top: 0;
}

.shanghai-guide-card {
  position: relative;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 20px;
  align-items: stretch;
  background: linear-gradient(135deg, #ffffff 0%, #f4f8ff 100%);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hero-content > .shanghai-guide-section .shanghai-guide-card {
  grid-template-columns: minmax(0, 1.1fr) minmax(180px, 0.42fr);
  gap: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.04) 100%);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 24px;
  box-shadow: 0 22px 44px rgba(15, 23, 42, 0.14);
  backdrop-filter: blur(22px) saturate(145%);
  -webkit-backdrop-filter: blur(22px) saturate(145%);
}

.hero-content > .shanghai-guide-section .shanghai-guide-card::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: calc(var(--radius) - 1px);
  background: linear-gradient(140deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.008) 48%, rgba(255, 255, 255, 0.025));
  pointer-events: none;
}

.shanghai-guide-copy {
  padding: 30px;
}

.hero-content > .shanghai-guide-section .shanghai-guide-copy {
  display: grid;
  align-content: center;
  padding: clamp(16px, 1.65vw, 22px);
}

.shanghai-guide-copy .eyebrow {
  text-transform: none;
  font-size: clamp(1.2rem, 1.8vw, 1.72rem);
  letter-spacing: 0;
  color: var(--text);
}

.hero-content > .shanghai-guide-section .shanghai-guide-copy .eyebrow {
  font-size: clamp(1.2rem, 1.8vw, 1.72rem);
  line-height: 1.12;
}

.shanghai-guide-copy .section-copy {
  margin: 12px 0 0;
  max-width: 60ch;
}

.hero-content > .shanghai-guide-section .shanghai-guide-copy,
.hero-content > .shanghai-guide-section .shanghai-guide-visual {
  position: relative;
  z-index: 1;
}

.hero-content > .shanghai-guide-section .shanghai-guide-copy .section-copy {
  color: rgba(15, 23, 42, 0.76);
  max-width: 74ch;
  margin-top: 8px;
  font-size: 0.9rem;
  line-height: 1.5;
}

.shanghai-guide-actions {
  margin-top: 20px;
}

.hero-content > .shanghai-guide-section .shanghai-guide-actions {
  margin-top: 14px;
}

.hero-content > .shanghai-guide-section .shanghai-guide-actions .btn {
  min-height: 42px;
  padding: 9px 14px;
  border-radius: 14px;
  font-size: 0.88rem;
}

.shanghai-guide-visual {
  position: relative;
  display: block;
  min-height: 260px;
  overflow: hidden;
}

.hero-content > .shanghai-guide-section .shanghai-guide-visual {
  min-height: clamp(128px, 14vh, 170px);
  height: auto;
}

.hero-content > .shanghai-guide-section .shanghai-guide-visual img {
  min-height: inherit;
}

.hero-content > .shanghai-guide-section .shanghai-guide-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,0.08) 0%, rgba(15, 23, 42, 0.04) 100%);
  pointer-events: none;
}

.shanghai-guide-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 400ms ease;
}

.shanghai-guide-card:hover .shanghai-guide-visual img {
  transform: scale(1.04);
}

.service-card, .step-card, .faq-card, .hospital-card {
  padding: 24px;
}

.service-card h3,
.step-card h3,
.faq-card h3,
.hospital-card h3 {
  margin: 0;
  font-size: 1.12rem;
  letter-spacing: -0.02em;
}

.muted {
  color: var(--muted);
  font-size: 0.94rem;
}

.guide-card {
  padding: 24px;
}

.guide-card h3 {
  margin: 8px 0 0;
  font-size: 1.08rem;
  line-height: 1.3;
}

.medical-disclaimer {
  margin-top: 16px;
  padding: 0 0 0 12px;
  border-left: 3px solid #cbd5e1;
  background: transparent;
  color: #64748b;
  box-shadow: none;
}

.medical-disclaimer h3 {
  margin: 0 0 6px;
  font-size: 0.84rem;
  line-height: 1.35;
  color: #334155;
}

.medical-disclaimer p {
  margin: 0;
  font-size: 0.82rem;
  line-height: 1.55;
}

.medical-disclaimer p + p {
  margin-top: 8px;
}

.legal-card {
  padding: clamp(20px, 3vw, 30px);
  max-width: 980px;
}

.legal-card h2 {
  display: block;
  margin: 20px 0 8px;
  font-size: 1.12rem;
  line-height: 1.35;
}

.legal-card h2:first-child {
  margin-top: 0;
}

.legal-card p {
  margin: 0;
  color: #334155;
  line-height: 1.72;
}

.legal-card p + p {
  margin-top: 10px;
}

.legal-card a {
  color: #0f3b66;
  font-weight: 750;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.steps-wrap { background: white; }
.hero-steps {
  margin-top: 0;
}

.hero-content > .shanghai-guide-section {
  margin-top: 0;
  min-width: 0;
}

.price-guide-card {
  margin-top: 16px;
}

.info-tab-list {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 6px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #f8fbff;
  margin-bottom: 12px;
}

.info-tab-btn {
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: #475569;
  padding: 8px 14px;
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
}

.info-tab-btn.active {
  background: #0f172a;
  color: #fff;
}

.info-tab-panel {
  display: none;
}

.info-tab-panel.active {
  display: block;
}

.dept-block {
  margin-top: 12px;
  padding: 12px;
  border: 1px solid #e5ebf2;
  border-radius: 12px;
  background: #fff;
}

.dept-block h4 {
  margin: 0 0 10px;
  font-size: 1rem;
  color: #0f172a;
}

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

.dept-chip {
  border: 1px solid #dbe2ea;
  background: #f8fbff;
  color: #334155;
  border-radius: 999px;
  padding: 6px 10px;
  font-size: 0.84rem;
  line-height: 1.2;
}

.dept-tier-tablist {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 4px 4px 12px;
  scrollbar-width: thin;
}

.dept-tier-tab-btn {
  border: 1px solid #d9e3ef;
  background: linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
  color: #334155;
  border-radius: 999px;
  padding: 9px 14px;
  font-size: 0.86rem;
  font-weight: 700;
  white-space: nowrap;
  cursor: pointer;
  transition: all 180ms ease;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
}

.dept-tier-tab-btn.active {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  border-color: #0f172a;
  color: #fff;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.18);
}

.dept-tier-tab-btn:hover {
  transform: translateY(-1px);
  border-color: #c3d1e4;
}

.dept-current-title {
  margin: 0 0 10px;
  font-size: 1.15rem;
  letter-spacing: -0.01em;
}

.dept-tier-tabs .dept-block {
  background: linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
  border: 1px solid #dde6f0;
  border-radius: 14px;
  box-shadow: 0 8px 26px rgba(15, 23, 42, 0.05);
}

.dept-tier-tabs .dept-current-intro {
  color: #334155;
  line-height: 1.8;
  font-size: 0.95rem;
}

.dept-tier-tabs .dept-block h4 {
  font-size: 0.98rem;
  color: #0f172a;
}

.dept-tier-tabs .dept-chip {
  background: #f4f8ff;
  border: 1px solid #d4e1f0;
  color: #1f334a;
  padding: 7px 11px;
}

.dept-tier-tabs .dept-chip:hover {
  background: #eaf2ff;
}

@media (min-width: 900px) {
  .dept-tier-tabs {
    display: grid;
    grid-template-columns: 260px minmax(0, 1fr);
    grid-template-rows: auto auto;
    gap: 14px 16px;
    align-items: start;
  }
  .dept-tier-tablist {
    grid-column: 1;
    grid-row: 1 / span 2;
    display: grid;
    gap: 8px;
    max-height: 540px;
    overflow-y: auto;
    overflow-x: hidden;
    padding: 4px;
    border: 1px solid #dbe4f0;
    border-radius: 16px;
    background: linear-gradient(180deg, #f8fbff 0%, #f2f7ff 100%);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
  }
  .dept-tier-tab-btn {
    width: 100%;
    border-radius: 12px;
    text-align: left;
    padding: 10px 12px;
    font-size: 0.88rem;
    background: #fff;
  }
  .dept-tier-tab-btn.active {
    background: linear-gradient(135deg, #0f172a 0%, #1f2f49 100%);
  }
  .dept-tier-tabs .dept-block:first-of-type {
    grid-column: 2;
    grid-row: 1;
  }
  .dept-tier-tabs .dept-block:last-of-type {
    grid-column: 2;
    grid-row: 2;
  }
  .dept-tier-tabs .dept-block {
    min-height: 170px;
    padding: 16px;
    border-radius: 16px;
  }
  .dept-tier-tabs .dept-block h4 {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
  }
  .dept-tier-tabs .dept-block h4::before {
    content: "";
    width: 4px;
    height: 16px;
    border-radius: 999px;
    background: #1d4ed8;
    flex: 0 0 auto;
  }
  .dept-tier-tabs .dept-chip-list {
    gap: 10px;
  }
}

.price-accordion {
  display: grid;
  gap: 10px;
  margin-top: 10px;
}

.price-accordion details {
  border: 1px solid #dbe2ea;
  border-radius: 12px;
  background: #fff;
  overflow: hidden;
}

.price-accordion summary {
  list-style: none;
  cursor: pointer;
  padding: 12px 14px;
  font-weight: 700;
  color: #0f172a;
  background: #f8fbff;
  border-bottom: 1px solid transparent;
}

.price-accordion details[open] summary {
  border-bottom-color: #dbe2ea;
}

.price-accordion summary::-webkit-details-marker {
  display: none;
}

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

.price-table th,
.price-table td {
  text-align: left;
  padding: 10px 12px;
  border-bottom: 1px solid #eef2f7;
  vertical-align: top;
}

.price-table th:nth-child(2),
.price-table td:nth-child(2) {
  text-align: right;
}

.price-table th {
  font-weight: 700;
  color: #334155;
  background: #fafcff;
}

.price-note {
  margin: 12px 0 0;
  font-size: 0.86rem;
  color: #64748b;
}

.insurance-logo-grid {
  margin-top: 10px;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 12px;
}

.insurance-logo-grid img {
  width: 100%;
  height: 84px;
  object-fit: contain;
  border: 1px solid #e5ebf2;
  border-radius: 10px;
  background: #fff;
  padding: 10px;
}

.coop-logo-grid {
  margin-top: 12px;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

.coop-logo-grid img {
  width: 100%;
  height: 88px;
  object-fit: contain;
  border: 1px solid #e5ebf2;
  border-radius: 10px;
  background: #fff;
  padding: 10px;
}

.step-num {
  font-size: 0.82rem;
  font-weight: 700;
  color: #64748b;
  letter-spacing: 0.08em;
}

.hospital-top {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: center;
}
.hospital-name {
  margin: 0;
  font-size: clamp(1.7rem, 3.2vw, 2.4rem);
  line-height: 56px;
  letter-spacing: -0.02em;
  white-space: nowrap;
}

.verified {
  border-radius: 999px;
  padding: 6px;
  border: 1px solid var(--line);
  background: white;
  line-height: 0;
}
.verified img {
  width: 56px;
  height: 56px;
  object-fit: contain;
  display: block;
}
.title-nowrap {
  white-space: nowrap;
}

.tag-wrap, .lang-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.tag, .lang {
  border-radius: 999px;
  padding: 7px 11px;
  font-size: 0.78rem;
}

.lang {
  border: 1px solid var(--line);
  color: var(--muted);
  background: white;
  font-size: 0.96rem;
  font-weight: 700;
  padding: 9px 15px;
}

.tag {
  background: #e0f2fe;
  color: #0c4a6e;
  border: 1px solid #7dd3fc;
  font-size: 0.9rem;
  font-weight: 700;
  padding: 9px 14px;
}

.hospital-overview-box {
  background: white;
  border: 1px solid var(--line);
}

.ai-section {
  background: linear-gradient(180deg, #0f172a 0%, #111827 100%);
  color: white;
}

.ai-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 28px;
  align-items: start;
}

.ai-pill {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.82);
  box-shadow: none;
}

.ai-title {
  color: white;
  margin-top: 16px;
}

.ai-intro-copy {
  margin-top: 16px;
  max-width: 640px;
}

.ai-warning {
  padding: 18px;
  margin-top: 18px;
  color: rgba(255,255,255,0.82);
  font-size: 0.94rem;
}

.dark-copy { color: rgba(255,255,255,0.78); }

.dark-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 28px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.24);
}

.ai-box {
  padding: 22px;
}

.bubble {
  background: rgba(255,255,255,0.08);
  border-radius: 18px;
  padding: 14px;
  font-size: 0.94rem;
  color: rgba(255,255,255,0.84);
}

.ai-suggest {
  display: grid;
  gap: 10px;
  margin-top: 14px;
}

.ai-suggest button {
  text-align: left;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.04);
  color: white;
  border-radius: 16px;
  padding: 12px 14px;
  cursor: pointer;
  font: inherit;
}

.ai-input {
  display: flex;
  gap: 10px;
  margin-top: 14px;
}

.ai-input input {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.1);
  color: white;
}

.ai-input input::placeholder { color: rgba(255,255,255,0.42); }

.ai-input button {
  border: 0;
  background: white;
  color: var(--text);
  font-weight: 700;
  padding: 0 18px;
  border-radius: 16px;
  cursor: pointer;
}

.contact-section {
  background: white;
}

.contact-wrap {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  align-items: start;
}
.contact-intro {
  margin-bottom: 16px;
}
.contact-map-card {
  display: grid;
  background: white;
  border: 1px solid var(--line);
  padding: 0;
  overflow: hidden;
}
.map-title {
  padding: 18px 18px 0;
  font-weight: 700;
  color: var(--text);
}
.map-address {
  padding: 8px 18px 18px;
  font-size: 0.92rem;
  color: var(--muted);
}
.contact-form-card {
  padding: 24px;
  background: #f8fafc;
}
.contact-form-row {
  margin-top: 16px;
}
.contact-message {
  margin-top: 16px;
  min-height: 140px;
}
.contact-map-embed {
  width: 100%;
  min-height: 240px;
  border: 0;
  display: block;
}
.contact-action-row {
  margin-top: 16px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  align-items: stretch;
}
.contact-consent {
  margin-top: 0;
  background: white;
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  height: 48px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.contact-submit {
  height: 48px;
  white-space: nowrap;
}

.hint-box {
  background: var(--surface-2);
  border-radius: 22px;
  padding: 18px;
  font-size: 0.92rem;
  color: var(--muted);
}

.experts-section {
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.experts-slider {
  position: relative;
  padding: 0;
}
.experts-grid {
  --expert-gap: 16px;
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - var(--expert-gap)) / 2);
  gap: var(--expert-gap);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
  padding: 4px 2px 10px;
}
.experts-grid .expert-card.invited-source {
  display: none !important;
}
.experts-grid::-webkit-scrollbar { height: 10px; }
.experts-grid::-webkit-scrollbar-thumb { background: #d1d5db; border-radius: 999px; }
.experts-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 10px;
}
.expert-dot {
  width: 8px;
  height: 8px;
  border: 0;
  border-radius: 999px;
  background: #cbd5e1;
  padding: 0;
  cursor: pointer;
  transition: width 0.15s ease, background 0.15s ease;
}
.expert-dot.active {
  width: 18px;
  background: #334155;
}

.expert-card {
  padding: 22px;
  display: grid;
  gap: 12px;
  align-content: start;
  border-radius: 22px;
  min-height: 0;
  grid-template-rows: auto auto auto;
  scroll-snap-align: start;
}
.expert-card.expert-clickable {
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.expert-card.expert-clickable:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(15, 23, 42, 0.12);
}
.expert-header {
  display: flex;
  align-items: stretch;
  gap: 14px;
  min-height: 130px;
}
.expert-layout {
  display: grid;
  grid-template-columns: 118px minmax(0, 1fr);
  gap: 14px;
  align-items: stretch;
}
.expert-head-copy {
  flex: 1 1 auto;
  min-width: 0;
  display: grid;
  align-content: start;
  gap: 10px;
}
.expert-name-row {
  display: flex;
  align-items: baseline;
  gap: 10px;
  flex-wrap: wrap;
}
.expert-avatar {
  width: 100%;
  min-width: 0;
  max-width: none;
  height: 100%;
  border-radius: 10px;
  border: 2px solid #dbeafe;
  object-fit: cover;
  flex: 0 0 auto;
}
.featured-expert .expert-main {
  display: grid;
  align-content: start;
  gap: 10px;
  min-width: 0;
}
.featured-expert .expert-header {
  min-height: 0;
}

.expert-badge {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 6px 11px;
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1px solid var(--accent-border);
  background: var(--accent);
  color: #0f766e;
}

.expert-card.placeholder .expert-badge {
  border-color: var(--line);
  background: var(--surface-2);
  color: var(--muted);
}
.expert-badge:empty {
  display: none;
}

.expert-name {
  margin: 0;
  font-size: 1.9rem;
  letter-spacing: -0.01em;
  line-height: 1.1;
}
.expert-edu {
  font-size: 1.05rem;
  font-weight: 700;
  color: #334155;
}

.expert-role {
  margin: 0;
  color: var(--muted);
  font-size: 1.04rem;
}

.expert-summary {
  margin: 0;
  font-size: 0.98rem;
  color: #334155;
  min-height: 0;
}
.expert-summary-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
}
.expert-summary-tag {
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  border-radius: 999px;
  background: #eef2f7;
  color: #334155;
  font-size: 0.82rem;
  font-weight: 600;
  line-height: 1.2;
}
.expert-summary-tag.role-tag {
  white-space: normal;
}

.expert-highlights {
  margin-top: 6px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--surface-2);
  padding: 10px 12px;
  display: grid;
  gap: 8px;
}

.expert-highlight-item {
  display: grid;
  gap: 2px;
  padding-top: 8px;
  border-top: 1px dashed #dbe2ea;
}

.expert-highlight-item:first-child {
  border-top: 0;
  padding-top: 0;
}

.expert-highlight-label {
  font-size: 0.8rem;
  color: #64748b;
}

.expert-highlight-value {
  font-size: 0.92rem;
  color: #1f2937;
  font-weight: 650;
  line-height: 1.5;
}

.invited-experts-section {
  background: #f8fafc;
  padding-top: 18px;
}
.invited-experts-shell {
  --invited-gap: 16px;
  position: relative;
  max-width: 100%;
  overflow: hidden;
}
.invited-experts-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - var(--invited-gap)) / 2);
  gap: var(--invited-gap);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 4px 2px 10px;
}
.invited-experts-track::-webkit-scrollbar {
  display: none;
}

.stories-section {
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}
.stories-shell {
  --story-gap: 20px;
  position: relative;
}
.stories-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - var(--story-gap)) / 2);
  gap: var(--story-gap);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding-bottom: 6px;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.stories-track::-webkit-scrollbar {
  display: none;
}
.stories-dots {
  margin-top: 14px;
  display: flex;
  justify-content: center;
  gap: 8px;
}
.story-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  border: 0;
  padding: 0;
  background: #d1d5db;
  cursor: pointer;
  transition: all 0.2s ease;
}
.story-dot.active {
  width: 22px;
  background: #0f172a;
}
.story-card {
  padding: 12px;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-height: min(50vh, 500px);
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
  border: 1px solid #e2e8f0;
  background: #fff;
  scroll-snap-align: start;
}
.story-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(15, 23, 42, 0.12);
}
.story-banner-frame {
  margin-top: auto;
  border: 0;
  border-radius: 0;
  background: transparent;
  width: 100%;
  height: 255px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.story-banner {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
}
.story-title {
  margin: 0;
  padding: 12px 14px;
  min-height: 0;
  font-size: clamp(1.12rem, 2.3vw, 1.8rem);
  line-height: 1.35;
  letter-spacing: -0.01em;
  color: #0f172a;
  background: #f8fbff;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.story-summary {
  margin: 0;
  margin-top: 0;
  padding: 12px 14px;
  color: #475569;
  font-size: clamp(0.9rem, 1.2vw, 1rem);
  line-height: 1.6;
  min-height: 92px;
  background: #fff;
  border: 1px solid #eef2f7;
  border-radius: 10px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.footer {
  border-top: 1px solid var(--line);
  background: #f8fafc;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 28px 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.footer-inner > div {
  width: 100%;
}
.footer-brand-title {
  font-weight: 700;
  color: var(--text);
}

.footer-disclaimer {
  max-width: 76ch;
  margin: 10px 0 0;
  color: #475569;
  font-size: 0.88rem;
  line-height: 1.6;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 9px;
  align-items: center;
  margin: 8px 0 0;
  color: #334155;
  font-size: 0.9rem;
}

.footer-links a {
  font-weight: 750;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.site-header {
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.04);
  background: rgba(255,255,255,0.78);
  border-bottom-color: rgba(221, 231, 242, 0.92);
}

.header-inner {
  position: relative;
}

.header-toggle,
.lang-dropdown-toggle,
.lang-btn,
.info-tab-btn,
.dept-tier-tab-btn,
.news-dot,
.news-inline-dot,
.expert-dot,
.story-dot {
  transition: transform 0.22s ease, box-shadow 0.24s ease, border-color 0.24s ease, background-color 0.24s ease, color 0.24s ease;
}

.header-toggle:hover,
.lang-dropdown-toggle:hover,
.lang-btn:hover,
.info-tab-btn:hover {
  transform: translateY(-1px);
}

.nav a {
  color: #45586b;
  transition: color 0.22s ease, background-color 0.22s ease, box-shadow 0.22s ease, transform 0.22s ease;
}

.nav a:hover {
  color: var(--text);
  background: rgba(255,255,255,0.96);
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.06);
  transform: translateY(-1px);
}

.lang-dropdown-toggle {
  border-color: rgba(221, 231, 242, 0.92);
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.05);
}

body :where(.brand-copy, .nav, .hero, .section, .footer) {
  transition: opacity 260ms ease, transform 340ms cubic-bezier(0.22, 1, 0.36, 1), filter 300ms ease;
}

body.performing-lang-switch :where(.brand-copy, .nav, .hero, .section, .footer) {
  will-change: opacity, transform;
}

body.lang-switching :where(.brand-copy, .nav, .hero, .section, .footer) {
  opacity: 0.38;
  transform: translateY(6px) scale(0.996);
  filter: blur(0.8px) saturate(0.95);
}

body.lang-transition-enter :where(.brand-copy, .nav, .hero, .section, .footer) {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: none;
}

@media (prefers-reduced-motion: reduce) {
  body :where(.brand-copy, .nav, .hero, .section, .footer),
  .lang-dropdown-current {
    transition: none !important;
    animation: none !important;
  }
}

.hero {
  background:
    radial-gradient(circle at top right, rgba(14, 165, 233, 0.12), transparent 28%),
    radial-gradient(circle at bottom left, rgba(16, 185, 129, 0.08), transparent 28%),
    linear-gradient(180deg, #f8fbff 0%, #f4f7fb 100%);
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  inset: auto;
  z-index: 0;
  pointer-events: none;
}

.hero::before {
  top: 54px;
  right: min(5vw, 72px);
  width: min(34vw, 320px);
  height: min(34vw, 320px);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(125, 211, 252, 0.18) 0%, rgba(125, 211, 252, 0) 72%);
}

.hero::after {
  left: min(4vw, 48px);
  bottom: 36px;
  width: min(28vw, 260px);
  height: min(28vw, 260px);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(191, 219, 254, 0.2) 0%, rgba(191, 219, 254, 0) 72%);
}

.hero-content {
  position: relative;
  display: grid;
  gap: clamp(10px, 1.55vh, 16px);
  min-width: 0;
}

.hero-copy-block {
  position: relative;
  max-width: min(1180px, 100%);
  min-width: 0;
  display: grid;
  gap: clamp(10px, 1.6vh, 16px);
  padding: 0;
  isolation: isolate;
}

.hero-copy-block::before {
  content: none;
}

.hero h1 {
  text-wrap: balance;
}

.hero-copy-block h1 {
  margin: 0;
  max-width: none;
  font-size: clamp(2.45rem, 4.9vw, 4.5rem);
  line-height: 1;
  font-weight: 800;
  white-space: nowrap;
  text-wrap: nowrap;
  letter-spacing: 0;
  color: #0f172a;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.24);
}

html[lang^="zh"] .hero-copy-block h1 {
  max-width: none;
  white-space: nowrap;
  font-size: clamp(1.12rem, 3.45vw, 3.2rem);
  line-height: 1.08;
}

html[lang="en"] .hero-copy-block h1 {
  max-width: none;
  font-size: clamp(0.98rem, 2.38vw, 2.36rem);
  line-height: 1.06;
  letter-spacing: -0.012em;
}

html[lang="ja"] .hero-copy-block h1,
html[lang="ko"] .hero-copy-block h1 {
  max-width: none;
  font-size: clamp(1.12rem, 2.75vw, 2.52rem);
  line-height: 1.08;
}

html[lang="de"] .hero-copy-block h1,
html[lang="es"] .hero-copy-block h1,
html[lang="fr"] .hero-copy-block h1 {
  max-width: none;
  font-size: clamp(0.96rem, 2.16vw, 2.1rem);
  line-height: 1.06;
  letter-spacing: -0.015em;
}

.hero p.lead {
  max-width: 760px;
  font-size: 1.1rem;
  color: #425466;
}

.hero-copy-block .lead {
  max-width: 56ch;
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.72;
  color: #425466;
}

.hero-copy-block .lead:empty {
  display: none;
}

.hero-copy-block .hero-actions {
  margin-top: 4px;
}

.hero-services {
  margin-top: 0;
}

.btn {
  min-height: 50px;
  font-weight: 700;
  letter-spacing: 0.01em;
  transition: transform 0.22s ease, box-shadow 0.26s ease, background-color 0.22s ease, border-color 0.22s ease, color 0.22s ease;
}

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

.btn-primary {
  box-shadow: 0 14px 30px rgba(11, 32, 52, 0.16);
}

.btn-primary:hover {
  background: var(--primary-2);
  box-shadow: 0 20px 36px rgba(11, 32, 52, 0.2);
}

.btn-secondary {
  background: rgba(255,255,255,0.94);
  border-color: rgba(221, 231, 242, 0.92);
  box-shadow: 0 10px 22px rgba(15, 23, 42, 0.05);
}

.btn-secondary:hover {
  background: #fff;
  border-color: var(--line-strong);
  box-shadow: 0 16px 28px rgba(15, 23, 42, 0.08);
}

.card {
  position: relative;
  overflow: hidden;
  border-color: rgba(221, 231, 242, 0.96);
  background: linear-gradient(180deg, rgba(255,255,255,0.98) 0%, rgba(252, 253, 255, 0.98) 100%);
  box-shadow: var(--shadow-soft);
}

.card::before {
  content: "";
  display: block;
  position: absolute;
  inset: 0 0 auto 0;
  height: 1px;
  background: linear-gradient(90deg, rgba(255,255,255,0), rgba(191, 219, 254, 0.95), rgba(255,255,255,0));
}

.service-card,
.step-card,
.faq-card,
.hospital-card,
.news-item,
.expert-card,
.story-card,
.contact-form-card,
.contact-map-card,
.hint-box,
.price-guide-card,
.shanghai-guide-card {
  transition: transform 0.26s ease, box-shadow 0.28s ease, border-color 0.28s ease, background-color 0.28s ease;
}

@media (hover: hover) and (pointer: fine) {
  .service-card:hover,
  .step-card:hover,
  .faq-card:hover,
  .hospital-card:hover,
  .contact-form-card:hover,
  .contact-map-card:hover,
  .hint-box:hover,
  .price-guide-card:hover,
  .shanghai-guide-card:hover {
    transform: translateY(-4px);
    border-color: var(--line-strong);
    box-shadow: var(--shadow-lg);
  }
}

.service-card,
.step-card,
.faq-card,
.hospital-card {
  display: grid;
  gap: 10px;
  align-content: start;
  min-height: 100%;
}

.service-card h3,
.step-card h3,
.faq-card h3,
.hospital-card h3 {
  line-height: 1.25;
}

.section-head {
  margin-bottom: 32px;
}

.section-head::after {
  content: "";
  display: block;
  width: 78px;
  height: 4px;
  margin-top: 18px;
  border-radius: 999px;
  background: linear-gradient(90deg, #0f172a 0%, #2563eb 60%, rgba(37, 99, 235, 0) 100%);
}

.section p.section-copy {
  max-width: 62ch;
  color: #516173;
}

.shanghai-guide-card {
  border-color: rgba(221, 231, 242, 0.96);
  background: linear-gradient(135deg, #ffffff 0%, #f3f8ff 100%);
  box-shadow: var(--shadow);
}

@media (min-width: 981px) and (max-height: 900px) {
  .hero-grid {
    padding: clamp(14px, 2.4vh, 24px) 0;
  }
  .hero-content {
    gap: clamp(10px, 1.55vh, 16px);
  }
  .hero-copy-block {
    gap: 10px;
  }
  .hero-copy-block h1 {
    font-size: clamp(2rem, 4vw, 3.25rem);
  }
  html[lang^="zh"] .hero-copy-block h1 {
    font-size: clamp(1rem, 2.95vw, 2.55rem);
  }
  html[lang="en"] .hero-copy-block h1 {
    font-size: clamp(0.92rem, 2.05vw, 1.94rem);
  }
  html[lang="ja"] .hero-copy-block h1,
  html[lang="ko"] .hero-copy-block h1 {
    font-size: clamp(1rem, 2.35vw, 2.12rem);
  }
  html[lang="de"] .hero-copy-block h1,
  html[lang="es"] .hero-copy-block h1,
  html[lang="fr"] .hero-copy-block h1 {
    font-size: clamp(0.88rem, 1.82vw, 1.72rem);
  }
  .hero-actions {
    margin-top: 0;
  }
  .hero-actions .btn {
    min-height: 44px;
    padding: 10px 16px;
    border-radius: 16px;
  }
  .hero-services .grid-4,
  .hero-steps .grid-4 {
    gap: 12px;
  }
  .hero-services .card,
  .hero-steps .card {
    padding: 15px 16px;
  }
  .hero-services .card,
  .hero-steps .card {
    gap: 8px;
  }
  .hero-services .card h3,
  .hero-steps .card h3 {
    font-size: 1rem;
    line-height: 1.22;
  }
  .hero-services .muted,
  .hero-steps .muted {
    font-size: 0.88rem;
    line-height: 1.48;
  }
  .hero-content > .shanghai-guide-section .shanghai-guide-copy {
    padding: 14px 16px;
  }
  .hero-content > .shanghai-guide-section .shanghai-guide-copy .eyebrow {
    font-size: clamp(1.08rem, 1.5vw, 1.45rem);
  }
  .hero-content > .shanghai-guide-section .shanghai-guide-copy .section-copy {
    font-size: 0.84rem;
    line-height: 1.42;
  }
  .hero-content > .shanghai-guide-section .shanghai-guide-actions {
    margin-top: 10px;
  }
  .hero-content > .shanghai-guide-section .shanghai-guide-actions .btn {
    min-height: 38px;
    padding: 8px 12px;
  }
  .hero-content > .shanghai-guide-section .shanghai-guide-visual {
    min-height: clamp(110px, 12vh, 140px);
  }
}

.news-item,
.story-card {
  position: relative;
  padding: 20px;
  gap: 14px;
  justify-content: flex-start;
  min-height: min(52vh, 540px);
  border-radius: 18px;
  border-color: rgba(148, 163, 184, 0.26);
  background: linear-gradient(180deg, rgba(255,255,255,0.99) 0%, rgba(247, 250, 252, 0.99) 100%);
  box-shadow: 0 18px 42px rgba(15, 23, 42, 0.08);
}

.news-item::after,
.story-card::after {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 2px;
  background: linear-gradient(90deg, #0f172a 0%, #2563eb 48%, rgba(37, 99, 235, 0) 100%);
  opacity: 0.78;
  pointer-events: none;
}

.news-item.news-clickable:hover,
.story-card:hover,
.expert-card.expert-clickable:hover {
  transform: translateY(-4px);
  border-color: rgba(59, 130, 246, 0.34);
  box-shadow: 0 26px 52px rgba(15, 23, 42, 0.12);
}

.news-item.news-clickable:focus-visible,
.story-card.story-clickable:focus-visible {
  border-color: rgba(59, 130, 246, 0.48);
  box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.12), 0 24px 48px rgba(15, 23, 42, 0.12);
}

.content-card-meta {
  order: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(196, 211, 226, 0.58);
  color: #64748b;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
  font-size: 0.78rem;
  line-height: 1;
  text-transform: uppercase;
  font-variant-numeric: tabular-nums;
}

.content-card-kind {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #0f172a;
  font-weight: 700;
}

.content-card-kind::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 2px;
  background: linear-gradient(180deg, #0f172a 0%, #2563eb 100%);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.28);
}

.content-card-date {
  margin-left: auto;
  opacity: 0.82;
}

.news-thumb,
.news-item > video {
  order: 1;
  width: 100%;
  margin: 0;
  aspect-ratio: 16 / 9;
  height: auto;
  border: 1px solid rgba(196, 211, 226, 0.78);
  border-radius: 14px;
  background: linear-gradient(180deg, #f7faff 0%, #eef4fb 100%);
  object-fit: contain;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.82);
}

.story-banner-frame {
  order: 1;
  margin-top: 0;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  border: 1px solid rgba(196, 211, 226, 0.78);
  border-radius: 14px;
  background: linear-gradient(180deg, #f7faff 0%, #eef4fb 100%);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.82);
}

.story-banner {
  width: 100%;
  height: 100%;
  padding: 0;
  object-fit: contain;
  background: transparent;
}

.news-caption,
.story-title {
  order: 2;
  padding: 0;
  min-height: 0;
  border: 0;
  border-radius: 0;
  background: none;
  color: #0f172a;
  font-size: clamp(1.04rem, 1.7vw, 1.4rem);
  line-height: 1.32;
  letter-spacing: 0;
  font-weight: 720;
}

.news-summary,
.story-summary {
  order: 3;
  margin-top: 0;
  padding: 0;
  min-height: 0;
  border: 0;
  border-radius: 0;
  background: none;
  color: #516173;
  font-size: clamp(0.92rem, 1.1vw, 1rem);
  line-height: 1.68;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  overflow: hidden;
}

.news-inline-media {
  order: 1;
  margin: 0;
  width: 100%;
  height: auto;
  border: 1px solid rgba(196, 211, 226, 0.78);
  border-radius: 14px;
  background: linear-gradient(180deg, #f7faff 0%, #eef4fb 100%);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.82);
  display: grid;
  gap: 0;
}

.news-inline-track {
  aspect-ratio: 16 / 9;
  min-height: 0;
}

.news-inline-item,
.news-inline-item video {
  height: 100%;
}

.news-inline-item video {
  width: 100%;
  margin: 0;
  object-fit: contain;
  background: transparent;
}

.news-inline-dots {
  padding: 10px 12px 12px;
  border-top: 1px solid rgba(196, 211, 226, 0.58);
  background: rgba(255,255,255,0.72);
}

.news-dot,
.story-dot,
.news-inline-dot {
  width: 10px;
  height: 10px;
  border: 1px solid rgba(148, 163, 184, 0.34);
  background: rgba(255,255,255,0.78);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.45);
}

.news-dot.active,
.story-dot.active,
.news-inline-dot.active {
  width: 28px;
  border-color: transparent;
  background: linear-gradient(90deg, #0f172a 0%, #2563eb 100%);
  box-shadow: none;
}

.ai-section {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #0b1220 0%, #111827 56%, #162033 100%);
  color: #f8fafc;
}

.ai-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(148, 163, 184, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(148, 163, 184, 0.08) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.58) 0%, rgba(0, 0, 0, 0.26) 68%, transparent 100%);
  pointer-events: none;
}

.ai-grid {
  position: relative;
  z-index: 1;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 36px;
  align-items: stretch;
}

.ai-copy-panel {
  display: grid;
  align-content: start;
  gap: 18px;
  padding-top: 8px;
}

.ai-pill {
  width: fit-content;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.46);
  border: 1px solid rgba(148, 163, 184, 0.22);
  color: rgba(226, 232, 240, 0.88);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.08);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ai-title {
  margin-top: 0;
  max-width: 12ch;
  color: #f8fafc;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.04;
  letter-spacing: 0;
}

.ai-intro-copy {
  margin-top: 0;
  max-width: 58ch;
  color: rgba(226, 232, 240, 0.78);
  font-size: 1rem;
  line-height: 1.78;
}

.ai-warning {
  position: relative;
  margin-top: 0;
  padding: 18px 20px 18px 24px;
  border-radius: 18px;
  border: 1px solid rgba(248, 113, 113, 0.18);
  background: linear-gradient(180deg, rgba(148, 25, 44, 0.16) 0%, rgba(30, 41, 59, 0.38) 100%);
  color: rgba(248, 250, 252, 0.84);
  font-size: 0.94rem;
  line-height: 1.7;
  box-shadow: 0 16px 34px rgba(2, 6, 23, 0.24);
}

.ai-warning::before {
  content: "";
  position: absolute;
  left: 0;
  top: 16px;
  bottom: 16px;
  width: 3px;
  border-radius: 999px;
  background: linear-gradient(180deg, #f59e0b 0%, #ef4444 100%);
}

.dark-copy {
  color: rgba(226, 232, 240, 0.78);
}

.dark-card {
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.72) 0%, rgba(17, 24, 39, 0.84) 100%);
  border: 1px solid rgba(148, 163, 184, 0.18);
  border-radius: 22px;
  box-shadow: 0 28px 54px rgba(2, 6, 23, 0.28);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.ai-box {
  position: relative;
  display: grid;
  gap: 16px;
  padding: 24px;
  min-height: 100%;
}

.ai-box::before {
  content: "";
  position: absolute;
  top: 18px;
  left: 24px;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #38bdf8;
  box-shadow:
    18px 0 0 rgba(16, 185, 129, 0.95),
    36px 0 0 rgba(248, 250, 252, 0.74);
}

.ai-box::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 40px;
  height: 1px;
  background: linear-gradient(90deg, rgba(148, 163, 184, 0) 0%, rgba(148, 163, 184, 0.28) 14%, rgba(148, 163, 184, 0.18) 100%);
}

.bubble {
  margin-top: 26px;
  border-radius: 18px;
  padding: 18px 18px 18px 20px;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.78) 0%, rgba(30, 41, 59, 0.54) 100%);
  border: 1px solid rgba(96, 165, 250, 0.18);
  color: rgba(241, 245, 249, 0.88);
  font-size: 0.96rem;
  line-height: 1.72;
}

.bubble strong {
  display: block;
  margin-bottom: 8px;
  color: #93c5fd;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ai-suggest {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 0;
}

.ai-suggest button {
  position: relative;
  min-height: 78px;
  display: flex;
  align-items: flex-start;
  text-align: left;
  padding: 15px 16px 15px 44px;
  border: 1px solid rgba(148, 163, 184, 0.18);
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.56) 0%, rgba(30, 41, 59, 0.34) 100%);
  color: #e2e8f0;
  border-radius: 16px;
  cursor: pointer;
  font: inherit;
  line-height: 1.45;
  transition: transform 0.22s ease, border-color 0.22s ease, background-color 0.22s ease, box-shadow 0.22s ease;
}

.ai-suggest button::before {
  content: "";
  position: absolute;
  left: 16px;
  top: 16px;
  width: 16px;
  height: 16px;
  border-radius: 4px;
  background: linear-gradient(180deg, rgba(56, 189, 248, 0.28) 0%, rgba(37, 99, 235, 0.22) 100%);
  box-shadow: inset 0 0 0 1px rgba(147, 197, 253, 0.34);
}

.ai-suggest button:hover {
  transform: translateY(-2px);
  border-color: rgba(96, 165, 250, 0.34);
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.76) 0%, rgba(37, 99, 235, 0.18) 100%);
  box-shadow: 0 16px 30px rgba(2, 6, 23, 0.22);
}

.ai-input {
  align-items: stretch;
  gap: 12px;
  margin-top: 0;
}

.ai-input input {
  min-height: 56px;
  border-radius: 16px;
  background: rgba(2, 6, 23, 0.42);
  border: 1px solid rgba(148, 163, 184, 0.18);
  color: #f8fafc;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.06);
}

.ai-input input::placeholder {
  color: rgba(226, 232, 240, 0.42);
}

.ai-input input:focus {
  border-color: rgba(96, 165, 250, 0.42);
  box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.12);
}

.ai-input button {
  min-width: 140px;
  border: 0;
  background: linear-gradient(135deg, #f8fafc 0%, #dbeafe 100%);
  color: #0f172a;
  font-weight: 700;
  padding: 0 20px;
  border-radius: 16px;
  cursor: pointer;
  box-shadow: 0 14px 28px rgba(2, 6, 23, 0.24);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background-color 0.22s ease;
}

.ai-input button::after {
  content: "";
  width: 8px;
  height: 8px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: rotate(45deg);
}

.ai-input button:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(2, 6, 23, 0.28);
}

.faq-section {
  background: linear-gradient(180deg, #ffffff 0%, #f7fafc 100%);
}

.faq-grid {
  counter-reset: faq-card;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.faq-card {
  counter-increment: faq-card;
  position: relative;
  padding: 24px 24px 22px;
  border-radius: 18px;
  border-color: rgba(196, 211, 226, 0.88);
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  box-shadow: 0 16px 34px rgba(15, 23, 42, 0.06);
  display: grid;
  gap: 14px;
  align-content: start;
}

.faq-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 2px;
  background: linear-gradient(90deg, #0f172a 0%, #06b6d4 54%, rgba(6, 182, 212, 0) 100%);
  opacity: 0.84;
}

.faq-card::after {
  content: "Q" counter(faq-card);
  position: absolute;
  top: 18px;
  right: 20px;
  color: #64748b;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
  font-size: 0.78rem;
  line-height: 1;
  letter-spacing: 0.08em;
}

.faq-card:nth-child(2n)::before {
  background: linear-gradient(90deg, #0f172a 0%, #10b981 54%, rgba(16, 185, 129, 0) 100%);
}

.faq-card h3 {
  margin: 0;
  padding-right: 56px;
  color: #0f172a;
  font-size: clamp(1.02rem, 1.35vw, 1.22rem);
  line-height: 1.36;
  letter-spacing: 0;
}

.faq-toggle {
  appearance: none;
  -webkit-appearance: none;
  display: block;
  width: 100%;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  line-height: inherit;
  text-align: left;
}

.faq-toggle-icon {
  display: none;
}

.faq-card .muted,
.faq-card p {
  margin: 0;
  color: #516173;
  font-size: 0.96rem;
  line-height: 1.74;
}

.faq-card:hover {
  border-color: rgba(96, 165, 250, 0.28);
  box-shadow: 0 22px 42px rgba(15, 23, 42, 0.1);
}

#experts,
#invited-experts {
  position: relative;
  overflow: hidden;
}

#experts {
  background: linear-gradient(180deg, #ffffff 0%, #f7fafc 100%);
}

#invited-experts {
  background: linear-gradient(180deg, #f7fafc 0%, #ffffff 100%);
}

#experts::before,
#invited-experts::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(148, 163, 184, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(148, 163, 184, 0.06) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.34) 0%, rgba(0, 0, 0, 0.16) 68%, transparent 100%);
  pointer-events: none;
}

#experts .container,
#invited-experts .container {
  position: relative;
  z-index: 1;
}

#experts .experts-grid,
#invited-experts .invited-experts-track {
  gap: 20px;
  padding: 4px 2px 10px;
}

#experts .experts-grid {
  --expert-gap: 20px;
}

#invited-experts .invited-experts-track {
  --invited-gap: 20px;
}

#experts .expert-card,
#invited-experts .expert-card {
  position: relative;
  padding: 24px 22px 20px;
  gap: 16px;
  min-height: 100%;
  border-radius: 18px;
  border-color: rgba(196, 211, 226, 0.88);
  background: linear-gradient(180deg, rgba(255,255,255,0.99) 0%, rgba(247, 250, 252, 0.99) 100%);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.07);
}

#experts .expert-card::before,
#invited-experts .expert-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 2px;
  opacity: 0.84;
}

#experts .expert-card::before {
  background: linear-gradient(90deg, #0f172a 0%, #2563eb 52%, rgba(37, 99, 235, 0) 100%);
}

#invited-experts .expert-card::before {
  background: linear-gradient(90deg, #0f172a 0%, #10b981 52%, rgba(16, 185, 129, 0) 100%);
}

#experts .expert-card.expert-clickable:hover,
#invited-experts .expert-card.expert-clickable:hover {
  transform: translateY(-4px);
  border-color: rgba(96, 165, 250, 0.3);
  box-shadow: 0 24px 46px rgba(15, 23, 42, 0.1);
}

#experts .expert-card.expert-clickable:focus-visible,
#invited-experts .expert-card.expert-clickable:focus-visible {
  border-color: rgba(96, 165, 250, 0.42);
  box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.12), 0 24px 46px rgba(15, 23, 42, 0.12);
}

#experts .expert-card > :last-child:empty,
#invited-experts .expert-card > :last-child:empty {
  display: none;
}

#experts .expert-layout,
#invited-experts .expert-layout {
  grid-template-columns: 112px minmax(0, 1fr);
  gap: 16px;
  align-items: start;
}

#experts .expert-avatar,
#invited-experts .expert-avatar {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 5;
  border-radius: 16px;
  border: 1px solid rgba(196, 211, 226, 0.82);
  object-fit: cover;
  background: linear-gradient(180deg, #ffffff 0%, #eef4fb 100%);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.82);
}

#experts .expert-main,
#invited-experts .expert-main {
  display: grid;
  gap: 12px;
  min-width: 0;
}

#experts .expert-header,
#invited-experts .expert-header {
  min-height: 0;
}

#experts .expert-head-copy,
#invited-experts .expert-head-copy {
  gap: 8px;
}

#experts .expert-badge,
#invited-experts .expert-badge {
  width: fit-content;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(191, 219, 254, 0.9);
  background: linear-gradient(180deg, #f8fbff 0%, #eef5ff 100%);
  color: #1d4ed8;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
  font-size: 0.74rem;
  line-height: 1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.86);
}

#invited-experts .expert-badge {
  border-color: rgba(167, 243, 208, 0.9);
  background: linear-gradient(180deg, #f2fffa 0%, #e8fbf4 100%);
  color: #047857;
}

#experts .expert-name-row,
#invited-experts .expert-name-row {
  align-items: flex-end;
  gap: 12px;
}

#experts .expert-name,
#invited-experts .expert-name {
  font-size: clamp(1.38rem, 1.8vw, 1.7rem);
  line-height: 1.08;
  letter-spacing: 0;
  color: #0f172a;
}

#experts .expert-edu,
#invited-experts .expert-edu {
  color: #64748b;
  font-size: 0.84rem;
  font-weight: 700;
  line-height: 1.2;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
  letter-spacing: 0.06em;
}

#experts .expert-role,
#invited-experts .expert-role {
  color: #334155;
  font-size: 0.98rem;
  line-height: 1.62;
}

#experts .expert-summary,
#invited-experts .expert-summary {
  color: #516173;
  font-size: 0.95rem;
  line-height: 1.72;
}

#experts .expert-summary-tags,
#invited-experts .expert-summary-tags {
  gap: 10px;
}

#experts .expert-summary-tag,
#invited-experts .expert-summary-tag {
  max-width: 100%;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(196, 211, 226, 0.82);
  background: linear-gradient(180deg, #ffffff 0%, #f7fafc 100%);
  color: #334155;
  font-size: 0.82rem;
  font-weight: 650;
  line-height: 1.38;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.82);
}

#experts .expert-summary-tag.role-tag,
#invited-experts .expert-summary-tag.role-tag {
  border-color: rgba(191, 219, 254, 0.92);
  background: linear-gradient(180deg, #f8fbff 0%, #eef5ff 100%);
  color: #1e3a5f;
}

#experts .expert-highlights,
#invited-experts .expert-highlights {
  margin-top: 0;
  padding: 14px 16px;
  border-radius: 16px;
  border-color: rgba(196, 211, 226, 0.82);
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  gap: 10px;
}

#experts .expert-highlight-item,
#invited-experts .expert-highlight-item {
  gap: 4px;
  padding-top: 10px;
  border-top-color: rgba(196, 211, 226, 0.72);
}

#experts .expert-highlight-label,
#invited-experts .expert-highlight-label {
  color: #64748b;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
  font-size: 0.74rem;
  line-height: 1.2;
  letter-spacing: 0.08em;
}

#experts .expert-highlight-value,
#invited-experts .expert-highlight-value {
  color: #1f2937;
  font-size: 0.93rem;
  line-height: 1.62;
  font-weight: 650;
}

#experts .experts-dots,
#invited-experts .experts-dots {
  margin-top: 14px;
}

#experts .expert-dot,
#invited-experts .expert-dot {
  width: 10px;
  height: 10px;
  border: 1px solid rgba(148, 163, 184, 0.34);
  background: rgba(255,255,255,0.78);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.45);
}

#experts .expert-dot.active,
#invited-experts .expert-dot.active {
  width: 28px;
  border-color: transparent;
  background: linear-gradient(90deg, #0f172a 0%, #2563eb 100%);
  box-shadow: none;
}

#invited-experts .invited-experts-progress {
  display: none !important;
}

#contact {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #fbfdff 0%, #f4f8fc 100%);
}

#contact::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(148, 163, 184, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(148, 163, 184, 0.08) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.42) 0%, rgba(0, 0, 0, 0.2) 66%, transparent 100%);
  pointer-events: none;
}

#contact .container {
  position: relative;
  z-index: 1;
}

#contact .contact-intro {
  margin-bottom: 24px;
}

#contact .contact-intro::after {
  content: "";
  display: block;
  width: 78px;
  height: 4px;
  margin-top: 18px;
  border-radius: 999px;
  background: linear-gradient(90deg, #0f172a 0%, #2563eb 60%, rgba(37, 99, 235, 0) 100%);
}

#contact .contact-intro .section-copy {
  max-width: 62ch;
  color: #516173;
}

#contact .contact-wrap {
  grid-template-columns: minmax(0, 1fr);
  gap: 20px;
}

#contact .contact-map-card,
#contact .contact-form-card {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  border-color: rgba(196, 211, 226, 0.88);
  background: linear-gradient(180deg, rgba(255,255,255,0.99) 0%, rgba(247, 250, 252, 0.99) 100%);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.07);
}

#contact .contact-map-card::before,
#contact .contact-form-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 2px;
  background: linear-gradient(90deg, #0f172a 0%, #06b6d4 54%, rgba(6, 182, 212, 0) 100%);
  opacity: 0.84;
}

#contact .contact-form-card::before {
  background: linear-gradient(90deg, #0f172a 0%, #2563eb 54%, rgba(37, 99, 235, 0) 100%);
}

#contact .contact-map-card::after,
#contact .contact-form-card::after {
  position: absolute;
  top: 18px;
  right: 20px;
  color: #64748b;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
  font-size: 0.78rem;
  line-height: 1;
  letter-spacing: 0.08em;
}

#contact .contact-map-card::after {
  content: "MAP";
}

#contact .contact-form-card::after {
  content: "REQUEST";
}

#contact .contact-map-card:hover,
#contact .contact-form-card:hover {
  border-color: rgba(96, 165, 250, 0.3);
  box-shadow: 0 24px 46px rgba(15, 23, 42, 0.1);
}

#contact .contact-map-card {
  display: grid;
  grid-template-columns: minmax(220px, 0.7fr) minmax(0, 1.3fr);
  align-items: stretch;
  gap: 16px;
  padding: 20px;
}

#contact .contact-card-head {
  display: grid;
  align-content: start;
  gap: 8px;
  padding-top: 18px;
}

#contact .map-title {
  padding: 0;
  padding-right: 82px;
  color: #0f172a;
  font-size: 1.08rem;
  line-height: 1.35;
}

#contact .map-address {
  padding: 0;
  max-width: 46ch;
  color: #516173;
  font-size: 0.95rem;
  line-height: 1.72;
}

#contact .contact-email-block {
  display: grid;
  gap: 7px;
  margin-top: 8px;
  padding-top: 14px;
  border-top: 1px solid rgba(203, 213, 225, 0.72);
  color: #475569;
  font-size: 0.9rem;
  line-height: 1.5;
}

#contact .contact-email-title {
  color: #0f172a;
  font-size: 0.84rem;
  font-weight: 800;
}

#contact .contact-email-block p {
  display: grid;
  gap: 2px;
  margin: 0;
}

#contact .contact-email-block span {
  color: #64748b;
  font-size: 0.78rem;
  font-weight: 700;
}

#contact .contact-email-block a,
.footer-links a[href^="mailto:"] {
  color: #0f3b66;
  font-weight: 800;
  overflow-wrap: anywhere;
  text-decoration: underline;
  text-underline-offset: 3px;
}

#contact .contact-map-frame {
  min-height: 0;
  border: 1px solid rgba(196, 211, 226, 0.82);
  border-radius: 16px;
  overflow: hidden;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.82);
}

#contact .contact-map-embed {
  height: 240px;
  min-height: 240px;
}

#contact .contact-form-card {
  padding: 20px;
}

#contact .contact-form-shell {
  --contact-input-height: 56px;
  --contact-sub-label-row: calc(0.78rem * 1.35);
  --contact-help-row: calc(0.78rem * 1.45);
  --contact-input-text-color: #243447;
  --contact-input-font-size: 1rem;
  --contact-input-font-weight: 500;
  --contact-placeholder-color: #9aa8ba;
  --contact-placeholder-size: 0.84rem;
  --contact-placeholder-weight: 500;
  --contact-placeholder-opacity: 0.86;
  display: grid;
  gap: 16px;
  height: 100%;
  padding-top: 18px;
}

#contact .field-label {
  display: grid;
  gap: 7px;
  color: #334155;
  font-size: 0.86rem;
  font-weight: 700;
  line-height: 1.35;
}

#contact .grid-2 {
  align-items: start;
}

#contact .grid-2 > .field-label {
  align-content: start;
  grid-template-rows:
    auto
    var(--contact-sub-label-row)
    minmax(var(--contact-input-height), auto)
    minmax(var(--contact-help-row), auto);
}

#contact .grid-2 > .field-label:not(.phone-field-label):not(.preferred-time-field-label) > :is(input:not([type="checkbox"]), select) {
  grid-row: 3;
}

#contact .grid-2 > .field-label > .field-help {
  grid-row: 4;
}

#contact .grid-2 > .field-label:not(.has-field-help)::after {
  content: "";
  grid-row: 4;
  min-height: var(--contact-help-row);
}

#contact .field-help {
  color: #64748b;
  font-size: 0.78rem;
  font-weight: 500;
  line-height: 1.45;
}

#contact .phone-field-label,
#contact .preferred-time-field-label {
  gap: 7px;
  grid-template-rows:
    auto
    minmax(calc(var(--contact-sub-label-row) + 6px + var(--contact-input-height)), auto)
    minmax(var(--contact-help-row), auto);
}

#contact .phone-field-label > input[type="hidden"],
#contact .preferred-time-field-label > input[type="hidden"] {
  display: none;
}

#contact .phone-composite {
  display: grid;
  grid-template-columns: minmax(138px, 0.72fr) minmax(0, 1.28fr);
  gap: 10px;
  align-items: start;
  grid-row: 2;
  width: 100%;
}

#contact .preferred-time-composite {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(170px, 1.08fr);
  gap: 10px;
  align-items: start;
  grid-row: 2;
  width: 100%;
}

#contact .phone-subfield-label,
#contact .preferred-time-subfield-label {
  display: grid;
  gap: 6px;
  grid-template-rows: var(--contact-sub-label-row) minmax(var(--contact-input-height), auto);
  min-width: 0;
  color: #475569;
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1.35;
}

#contact .phone-subfield-label > input,
#contact .preferred-time-subfield-label > :is(input, select) {
  grid-row: 2;
  min-width: 0;
  width: 100%;
}

#contact .preferred-time-subfield-label > select {
  text-overflow: ellipsis;
}

#contact .contact-form-row,
#contact .contact-message,
#contact .contact-action-row {
  margin-top: 0;
}

#contact .contact-form-card :is(input:not([type="checkbox"]), textarea, select) {
  min-height: 56px;
  border-radius: 16px;
  border-color: rgba(196, 211, 226, 0.92);
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.84);
  color: var(--contact-input-text-color);
  font-size: var(--contact-input-font-size);
  font-weight: var(--contact-input-font-weight);
}

#contact .contact-form-card :is(input:not([type="checkbox"]), textarea)::placeholder {
  color: var(--contact-placeholder-color);
  font-size: var(--contact-placeholder-size);
  font-weight: var(--contact-placeholder-weight);
  line-height: 1.35;
  opacity: var(--contact-placeholder-opacity);
}

#contact .contact-form-card textarea {
  min-height: 132px;
  padding-top: 16px;
  resize: vertical;
}

#contact .contact-form-card select {
  appearance: none;
  -webkit-appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, #64748b 50%),
    linear-gradient(135deg, #64748b 50%, transparent 50%),
    linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  background-position:
    calc(100% - 22px) calc(50% - 3px),
    calc(100% - 16px) calc(50% - 3px),
    0 0;
  background-size:
    6px 6px,
    6px 6px,
    100% 100%;
  background-repeat: no-repeat;
  padding-right: 42px;
}

#contact .contact-form-card select.is-placeholder {
  color: var(--contact-placeholder-color);
  font-size: var(--contact-placeholder-size);
  font-weight: var(--contact-placeholder-weight);
  line-height: 1.35;
}

#contact .contact-form-card :is(input:not([type="checkbox"]), textarea, select):focus {
  border-color: rgba(96, 165, 250, 0.42);
  box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.12);
  background-color: #fff;
}

#contact .contact-action-row {
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 14px;
}

#contact .form-note {
  padding: 12px 14px;
  border: 1px solid #fde68a;
  border-radius: 14px;
  background: #fffbeb;
  color: #7c4a03;
  font-size: 0.86rem;
  line-height: 1.55;
}

#contact .compliance-check {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  column-gap: 12px;
  align-items: start;
  padding: 14px 16px;
  border-radius: 14px;
  background: #f8fbff;
}

#contact .compliance-check input[type="checkbox"] {
  width: 18px;
  height: 18px;
  min-height: 0;
  margin: 2px 0 0;
  flex: 0 0 auto;
}

#contact .compliance-check span {
  display: block;
  min-width: 0;
  line-height: 1.65;
}

#contact .compliance-check a {
  color: #0f3b66;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

#contact .contact-consent {
  position: relative;
  height: auto;
  min-height: 56px;
  padding: 16px 18px 16px 42px;
  align-items: flex-start;
  white-space: normal;
  overflow: visible;
  text-overflow: clip;
  border-radius: 16px;
  border-color: rgba(196, 211, 226, 0.82);
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  color: #516173;
  line-height: 1.72;
}

#contact .contact-consent::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 18px;
  width: 12px;
  height: 12px;
  border-radius: 3px;
  background: linear-gradient(180deg, rgba(37, 99, 235, 0.18) 0%, rgba(6, 182, 212, 0.16) 100%);
  box-shadow: inset 0 0 0 1px rgba(37, 99, 235, 0.28);
}

#contact .contact-submit {
  min-width: 220px;
  height: auto;
  padding: 0 24px;
  border-radius: 16px;
  white-space: normal;
  box-shadow: 0 16px 30px rgba(11, 32, 52, 0.18);
  gap: 10px;
}

#contact .contact-submit:disabled {
  cursor: not-allowed;
  opacity: 0.58;
  box-shadow: none;
}

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

#contact .contact-turnstile {
  min-height: 65px;
  margin-top: 14px;
}

#contact .form-status {
  min-height: 0;
  padding: 0;
  color: #334155;
  font-size: 0.92rem;
  line-height: 1.55;
}

#contact .form-status.success,
#contact .form-status.error,
#contact .form-status.pending {
  padding: 13px 14px;
  border-radius: 14px;
}

#contact .form-status.success {
  border: 1px solid #bbf7d0;
  background: #f0fdf4;
  color: #166534;
}

#contact .form-status.error {
  border: 1px solid #fecaca;
  background: #fef2f2;
  color: #991b1b;
}

#contact .form-status.pending {
  border: 1px solid #bfdbfe;
  background: #eff6ff;
  color: #1d4ed8;
}

#contact .contact-submit::after {
  content: "";
  width: 8px;
  height: 8px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: rotate(45deg);
}

#contact .contact-submit:hover {
  box-shadow: 0 20px 36px rgba(11, 32, 52, 0.22);
}

.hint-box,
.contact-form-card,
.contact-map-card {
  border-color: rgba(221, 231, 242, 0.96);
  box-shadow: var(--shadow-soft);
}

.contact-form-card {
  background: linear-gradient(180deg, #fbfdff 0%, #f3f7fc 100%);
}

.contact-map-card {
  background: linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
}

.hint-box {
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

input,
textarea,
select {
  border-color: rgba(221, 231, 242, 0.96);
  background: rgba(255,255,255,0.96);
  transition: border-color 0.22s ease, box-shadow 0.22s ease, background-color 0.22s ease;
}

input:focus,
textarea:focus,
select:focus {
  border-color: #94b5df;
  box-shadow: 0 0 0 4px rgba(148, 181, 223, 0.16);
  background: #fff;
}

.info-tab-list,
.dept-tier-tablist {
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.82);
}

.footer {
  border-top-color: rgba(221, 231, 242, 0.96);
  background: linear-gradient(180deg, #f9fbff 0%, #f3f7fb 100%);
}

@media (prefers-reduced-motion: reduce) {
  .btn,
  .card,
  .service-card,
  .step-card,
  .faq-card,
  .hospital-card,
  .news-item,
  .expert-card,
  .story-card,
  .contact-form-card,
  .contact-map-card,
  .hint-box,
  .price-guide-card,
  .shanghai-guide-card,
  .header-toggle,
  .lang-dropdown-toggle,
  .lang-btn,
  .info-tab-btn,
  .dept-tier-tab-btn,
  .news-dot,
  .news-inline-dot,
  .expert-dot,
  .story-dot,
  .shanghai-guide-visual img {
    transition: none !important;
    animation: none !important;
    transform: none !important;
  }
}

@media (max-width: 980px) {
  html,
  body {
    max-width: 100%;
  }
  body > section,
  .footer {
    max-width: 100%;
    overflow-x: clip;
  }
  .hero,
  .hero-grid {
    min-height: auto;
  }
  .hero-grid {
    padding: 18px 0 24px;
  }
  .hero-grid,
  .ai-grid,
  .contact-wrap,
  .grid-4,
  .grid-3 {
    grid-template-columns: 1fr;
  }

  .experts-grid { grid-auto-columns: calc((100% - var(--expert-gap)) / 2); }
  .invited-experts-track { grid-auto-columns: calc((100% - var(--invited-gap)) / 2); }
  .stories-track { grid-auto-columns: calc((100% - var(--story-gap)) / 2); }
  .news-slider-shell { padding: 0; }
  #experts .expert-card,
  #invited-experts .expert-card {
    padding: 22px 20px 18px;
  }
  #contact .contact-wrap {
    grid-template-columns: minmax(0, 1fr);
    gap: 18px;
  }
  #contact .contact-form-card {
    order: 1;
  }
  #contact .contact-map-card {
    order: 2;
  }
  #contact .contact-map-card {
    grid-template-columns: minmax(0, 1fr);
  }
  #contact .contact-map-embed {
    height: 220px;
    min-height: 220px;
  }
  .ai-grid { gap: 26px; }
  .ai-title { max-width: none; }
  .ai-suggest { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .hero-services .grid-4,
  .hero-steps .grid-4,
  .guide-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .faq-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .shanghai-guide-card { grid-template-columns: 1fr; }
  .shanghai-guide-copy { padding: 22px; }
  .shanghai-guide-visual { min-height: 220px; }
  .hero-content > .shanghai-guide-section .shanghai-guide-visual {
    min-height: 160px;
  }
}

@media (max-width: 760px) {
  :root {
    --home-header-height: 117px;
  }
  html,
  body {
    max-width: 100%;
  }
  .container {
    width: min(var(--maxw), calc(100% - 24px));
  }
  .footer-inner,
  .grid-2 {
    grid-template-columns: 1fr;
    flex-direction: column;
    align-items: flex-start;
  }
  .quick-facts-grid,
  .guide-grid,
  #contact .contact-action-row {
    grid-template-columns: 1fr;
  }
  #contact .contact-form-card {
    padding: 16px;
  }
  #contact .contact-form-shell {
    --contact-input-height: 54px;
    --contact-sub-label-row: calc(0.76rem * 1.28);
    --contact-input-font-size: 16px;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    column-gap: 8px;
    gap: 12px;
  }
  #contact .contact-form-shell > .grid-2,
  #contact .contact-form-shell > .contact-form-row {
    display: contents;
  }
  #contact .contact-honeypot,
  #contact .contact-full-name-field,
  #contact .contact-phone-field,
  #contact .contact-email-field,
  #contact .contact-preferred-time-field,
  #contact .contact-purpose-field,
  #contact .contact-message-field,
  #contact .compliance-check,
  #contact .contact-action-row,
  #contact .form-status {
    grid-column: 1 / -1;
  }
  #contact .contact-language-field {
    grid-column: 1;
  }
  #contact .contact-country-field {
    grid-column: 2;
  }
  #contact .contact-form-shell > .grid-2 {
    gap: 10px;
  }
  #contact .field-label,
  #contact .phone-subfield-label,
  #contact .contact-form-card :is(input:not([type="checkbox"]), textarea, select) {
    min-width: 0;
  }
  #contact .field-label {
    gap: 5px;
    width: 100%;
  }
  #contact .contact-form-card :is(input:not([type="checkbox"]), textarea, select) {
    min-height: 54px;
    border-radius: 15px;
    font-size: var(--contact-input-font-size);
    font-weight: var(--contact-input-font-weight);
    color: var(--contact-input-text-color);
  }
  #contact .contact-form-card :is(input:not([type="checkbox"]), textarea)::placeholder {
    color: var(--contact-placeholder-color);
    font-size: var(--contact-placeholder-size);
    font-weight: var(--contact-placeholder-weight);
    opacity: var(--contact-placeholder-opacity);
  }
  #contact .contact-form-card select.is-placeholder {
    color: var(--contact-placeholder-color);
    font-size: var(--contact-placeholder-size);
    font-weight: var(--contact-placeholder-weight);
  }
  #contact .contact-form-card textarea.contact-message {
    min-height: 132px;
  }
  #contact .contact-submit {
    width: 100%;
    min-height: 54px;
  }
  #contact .grid-2 > .field-label {
    grid-template-rows:
      auto
      minmax(var(--contact-input-height), auto);
  }
  #contact .grid-2 > .field-label:not(.has-field-help) {
    grid-template-rows:
      auto
      minmax(var(--contact-input-height), auto);
  }
  #contact .grid-2 > .field-label:not(.phone-field-label):not(.preferred-time-field-label) > :is(input:not([type="checkbox"]), select) {
    grid-row: 2;
  }
  #contact .grid-2 > .field-label > .field-help,
  #contact .grid-2 > .field-label:not(.has-field-help)::after {
    grid-row: 3;
  }
  #contact .grid-2 > .field-label:not(.has-field-help)::after {
    content: none;
    display: none;
    min-height: 0;
  }
  #contact .phone-field-label,
  #contact .preferred-time-field-label {
    grid-template-rows:
      auto
      auto;
  }
  #contact .phone-composite,
  #contact .preferred-time-composite {
    grid-template-columns: minmax(124px, 0.78fr) minmax(0, 1.22fr);
    gap: 7px;
  }
  #contact .phone-subfield-label,
  #contact .preferred-time-subfield-label {
    gap: 4px;
    grid-template-rows: minmax(calc(var(--contact-sub-label-row) * 2), auto) minmax(var(--contact-input-height), auto);
    font-size: 0.74rem;
  }
  #contact .field-help {
    display: none;
    font-size: 0.76rem;
    line-height: 1.32;
    overflow-wrap: anywhere;
  }
  #contact .compliance-check {
    grid-template-columns: 22px minmax(0, 1fr);
    column-gap: 11px;
    padding: 13px 14px;
    border: 1px solid rgba(196, 211, 226, 0.68);
    border-radius: 16px;
    background: linear-gradient(180deg, rgba(255,255,255,0.96) 0%, rgba(248,251,255,0.96) 100%);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.86);
  }
  #contact .compliance-check input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    position: relative;
    width: 20px;
    height: 20px;
    min-height: 20px;
    margin: 1px 0 0;
    padding: 0;
    border: 1.5px solid #9eb1c7;
    border-radius: 6px;
    background: #fff;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.86), 0 1px 2px rgba(15, 23, 42, 0.05);
  }
  #contact .compliance-check input[type="checkbox"]:checked {
    border-color: #0f3b66;
    background: #0f3b66;
  }
  #contact .compliance-check input[type="checkbox"]:checked::after {
    content: "";
    position: absolute;
    left: 6px;
    top: 3px;
    width: 5px;
    height: 10px;
    border: solid #fff;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
  }
  #contact .compliance-check input[type="checkbox"]:focus-visible {
    box-shadow: 0 0 0 4px rgba(15, 59, 102, 0.12);
  }
  #contact .compliance-check span {
    color: #526579;
    font-size: 0.78rem;
    font-weight: 500;
    line-height: 1.58;
  }
  #contact .compliance-check a {
    color: #0f3b66;
    font-weight: 700;
  }
  #contact .compliance-check span,
  #contact .contact-email-block,
  #contact .map-address {
    overflow-wrap: anywhere;
  }
  .header-inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    align-items: start;
    gap: 8px;
    position: relative;
    padding-right: 0;
    padding-top: 12px;
    padding-bottom: 12px;
  }
  .brand-wrap {
    grid-column: 1 / -1;
    width: 100%;
    gap: 10px;
    align-items: center;
    min-width: 0;
  }
  .brand-logo {
    display: block;
    width: 38px;
    height: 38px;
    padding: 4px;
  }
  .brand-copy {
    width: 100%;
    min-width: 0;
    gap: 3px;
  }
  .header-mobile-actions {
    display: flex;
    grid-column: 1 / -1;
    width: 100%;
    position: static;
    flex-direction: row;
    justify-content: flex-end;
    gap: 10px;
    padding-top: 2px;
  }
  .header-toggle {
    width: 44px;
    height: 44px;
    padding: 0;
    border-radius: 14px;
    text-align: center;
  }
  .nav,
  .lang-switch {
    display: none;
    width: 100%;
    max-width: 100%;
    grid-column: 1 / -1;
    border-radius: 20px;
    margin-top: 0;
    box-sizing: border-box;
  }
  .nav.mobile-open,
  .lang-switch.mobile-open {
    display: flex;
  }
  .nav {
    flex-direction: column;
    gap: 8px;
    padding: 12px;
    border: 1px solid var(--line);
    background: rgba(255,255,255,0.94);
    box-shadow: 0 18px 32px rgba(15, 23, 42, 0.08);
    align-self: stretch;
  }
  .nav a {
    width: 100%;
    min-height: 46px;
    justify-content: flex-start;
    padding: 0 14px;
    border: 1px solid rgba(221, 231, 242, 0.92);
    background: #f8fbff;
    box-shadow: none;
  }
  .lang-switch {
    border-radius: 20px;
    padding: 12px;
    border-color: rgba(221, 231, 242, 0.92);
    background: rgba(255,255,255,0.94);
    box-shadow: 0 18px 32px rgba(15, 23, 42, 0.08);
    align-self: stretch;
  }
  .lang-dropdown-toggle {
    display: none;
  }
  .lang-menu {
    position: static;
    top: auto;
    right: auto;
    min-width: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    width: 100%;
    border: 0;
    background: transparent;
    box-shadow: none;
    padding: 0;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
    transition: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
  .lang-switch.mobile-open .lang-menu {
    display: flex;
  }
  .lang-switch .lang-btn {
    width: auto;
    min-width: 44px;
    border-radius: 999px;
    min-height: 40px;
    padding: 8px 14px;
    text-align: center;
  }

  .brand-title, .brand-subtitle {
    white-space: normal;
    overflow: visible;
    text-overflow: clip;
    overflow-wrap: anywhere;
  }
  .brand-title {
    font-size: 0.96rem;
    line-height: 1.18;
  }
  .brand-subtitle {
    display: block;
    font-size: 0.68rem;
    line-height: 1.2;
    color: #5f6f81;
  }

  .title-nowrap { font-size: 1.2rem; }
  .section { padding: 48px 0; }
  .section-head {
    margin-bottom: 22px;
    max-width: 100%;
  }
  .section-head::after {
    width: 64px;
    height: 3px;
    margin-top: 14px;
  }
  .eyebrow {
    font-size: 0.74rem;
    line-height: 1.25;
  }
  #hospitals .eyebrow,
  #hospitals .title-nowrap,
  #hospitals .hospital-name {
    max-width: 100%;
    white-space: normal;
    overflow-wrap: anywhere;
    word-break: normal;
  }
  .hero {
    min-height: auto;
  }
  .hero::before,
  .hero::after {
    display: none;
  }
  .hero-grid {
    min-height: auto;
    padding: 14px 0 20px;
    gap: 16px;
  }
  .hero h1 {
    font-size: 1.9rem;
    line-height: 1.12;
    margin: 0;
    max-width: none;
  }
  .hero p.lead {
    font-size: 0.95rem;
    margin-bottom: 14px;
  }
  .hero-copy-block {
    gap: 10px;
    padding: 14px;
    border-radius: 24px;
    background: linear-gradient(180deg, rgba(255,255,255,0.92) 0%, rgba(248, 251, 255, 0.84) 100%);
    border: 1px solid rgba(221, 231, 242, 0.88);
    box-shadow: 0 18px 38px rgba(15, 23, 42, 0.08);
    backdrop-filter: blur(14px) saturate(120%);
    -webkit-backdrop-filter: blur(14px) saturate(120%);
  }
  .hero-copy-block::before {
    content: none;
  }
  .hero-copy-block h1 {
    max-width: none;
    font-size: clamp(1.46rem, 6.6vw, 2rem);
    line-height: 1.08;
    white-space: normal;
    text-wrap: balance;
    overflow-wrap: anywhere;
  }
  html[lang^="zh"] .hero-copy-block h1 {
    font-size: clamp(1.52rem, 7vw, 2.08rem);
    line-height: 1.12;
    white-space: normal;
    text-wrap: balance;
    overflow-wrap: anywhere;
  }
  html[lang="en"] .hero-copy-block h1 {
    font-size: clamp(1.26rem, 5.7vw, 1.74rem);
    line-height: 1.12;
    letter-spacing: -0.03em;
  }
  html[lang="ja"] .hero-copy-block h1,
  html[lang="ko"] .hero-copy-block h1 {
    font-size: clamp(1.38rem, 6.2vw, 1.9rem);
    line-height: 1.12;
  }
  html[lang="de"] .hero-copy-block h1,
  html[lang="es"] .hero-copy-block h1,
  html[lang="fr"] .hero-copy-block h1 {
    font-size: clamp(1.18rem, 5.2vw, 1.62rem);
    line-height: 1.12;
    letter-spacing: -0.03em;
  }
  .hero-copy-block .lead {
    max-width: none;
    font-size: 0.95rem;
    line-height: 1.72;
  }
  .hero-actions {
    margin-top: 4px;
    flex-direction: column;
    gap: 8px;
  }
  .hero-actions .btn {
    width: 100%;
    justify-content: center;
    min-height: 44px;
    padding: 10px 14px;
    border-radius: 14px;
  }
  .hero-content {
    gap: 14px;
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }
  .hero-copy-block,
  .hero-copy-block .lead,
  .hero-content > .shanghai-guide-section,
  .hero-content > .shanghai-guide-section .shanghai-guide-card {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }
  .hero-copy-block .lead,
  .hero-content > .shanghai-guide-section .section-copy {
    overflow-wrap: anywhere;
    word-break: normal;
  }
  .hero-services {
    margin-top: 8px;
  }
  .hero-services,
  .hero-steps {
    position: relative;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    border-radius: 24px;
  }
  .hero-services .grid-4,
  .hero-steps .grid-4 {
    display: flex;
    align-items: stretch;
    gap: 12px;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    padding: 4px 2px 8px;
    margin-right: 0;
    scroll-padding-inline: 2px;
  }
  .hero-services::after,
  .hero-steps::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 34px;
    pointer-events: none;
    background: linear-gradient(90deg, rgba(244, 247, 251, 0), rgba(244, 247, 251, 0.64));
  }

  body :where(.brand-copy, .nav, .hero, .section, .footer) {
    will-change: auto;
  }
  .hero-services .grid-4::-webkit-scrollbar,
  .hero-steps .grid-4::-webkit-scrollbar {
    display: none;
  }
  .hero-services .card,
  .hero-steps .card {
    flex: 0 0 82%;
    width: 82%;
    min-width: 82%;
    max-width: 82%;
    height: auto;
    align-self: stretch;
    scroll-snap-align: start;
    min-height: 0;
    padding: 15px;
    border-radius: 22px;
  }
  .hero-services .card h3,
  .hero-steps .card h3 {
    font-size: 1.02rem;
    line-height: 1.3;
  }
  .hero-services .muted,
  .hero-steps .muted {
    font-size: 0.92rem;
    line-height: 1.62;
  }
  .hero-content > .shanghai-guide-section {
    margin-top: 0;
  }
  .shanghai-guide-card {
    border-radius: 24px;
  }
  .hero-content > .shanghai-guide-section .shanghai-guide-card {
    grid-template-columns: minmax(0, 1fr);
  }
  .shanghai-guide-copy {
    padding: 20px 18px;
  }
  .hero-content > .shanghai-guide-section .shanghai-guide-copy {
    padding: 14px;
  }
  .hero-content > .shanghai-guide-section .shanghai-guide-copy .eyebrow {
    font-size: clamp(1.08rem, 5vw, 1.32rem);
  }
  .hero-content > .shanghai-guide-section .shanghai-guide-copy .section-copy {
    font-size: 0.84rem;
    line-height: 1.45;
    margin-top: 6px;
  }
  .shanghai-guide-actions {
    margin-top: 12px;
  }
  .shanghai-guide-visual {
    min-height: 132px;
  }
  .hero-content > .shanghai-guide-section .shanghai-guide-visual {
    min-height: 132px;
  }
  .hospital-name {
    font-size: 1.35rem;
    line-height: 1.2;
    white-space: normal;
  }
  .hospital-card.single {
    padding: 18px;
  }
  .hospital-gallery {
    --gallery-h: 236px;
    padding: 14px;
    border-radius: 20px;
  }
  .price-guide-card {
    overflow-x: auto;
    padding: 18px;
  }
  .info-tab-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    width: 100%;
    border-radius: 14px;
    padding: 8px;
  }
  .info-tab-btn {
    text-align: center;
    width: 100%;
    padding: 10px 8px;
  }
  .insurance-logo-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .coop-logo-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .coop-logo-grid img {
    height: 76px;
  }
  .dept-tier-tablist {
    gap: 6px;
    padding-bottom: 6px;
  }
  .dept-tier-tab-btn {
    padding: 8px 10px;
    font-size: 0.8rem;
  }
  .dept-tier-tabs .dept-current-intro {
    font-size: 0.9rem;
    line-height: 1.7;
  }
  .insurance-logo-grid img {
    height: 72px;
  }
  .price-table {
    min-width: 620px;
  }
  #experts .expert-card,
  #invited-experts .expert-card {
    padding: 18px 16px 16px;
    gap: 14px;
    border-radius: 22px;
  }
  #experts .expert-layout,
  #invited-experts .expert-layout {
    grid-template-columns: 84px minmax(0, 1fr);
    gap: 12px;
  }
  #experts .expert-avatar,
  #invited-experts .expert-avatar {
    border-radius: 14px;
  }
  #experts .expert-name,
  #invited-experts .expert-name {
    font-size: 1.24rem;
  }
  #experts .expert-role,
  #invited-experts .expert-role,
  #experts .expert-highlight-value,
  #invited-experts .expert-highlight-value {
    font-size: 0.88rem;
  }
  #experts .expert-summary-tag,
  #invited-experts .expert-summary-tag {
    padding: 7px 10px;
    font-size: 0.78rem;
    line-height: 1.34;
  }
  #experts .expert-highlights,
  #invited-experts .expert-highlights {
    padding: 12px 14px;
  }
  #experts .experts-grid,
  #invited-experts .invited-experts-track {
    gap: 14px;
    align-items: stretch;
    padding: 2px 2px 8px;
    scroll-padding-inline: 2px;
  }
  #experts .expert-card,
  #invited-experts .expert-card {
    display: grid;
    grid-template-columns: 104px minmax(0, 1fr);
    grid-template-areas:
      "avatar header"
      "tags tags"
      "highlights highlights";
    grid-template-rows: auto;
    min-height: 0;
    padding: 14px;
    gap: 12px;
    border-radius: 18px;
    align-self: stretch;
    height: auto;
  }
  #experts .expert-layout,
  #invited-experts .expert-layout {
    display: contents;
  }
  #experts .expert-avatar,
  #invited-experts .expert-avatar {
    grid-area: avatar;
    width: 104px;
    height: 132px;
    aspect-ratio: auto;
    border-radius: 16px;
  }
  #experts .expert-main,
  #invited-experts .expert-main {
    display: contents;
  }
  #experts .expert-header,
  #invited-experts .expert-header {
    grid-area: header;
    align-self: start;
  }
  #experts .expert-head-copy,
  #invited-experts .expert-head-copy {
    gap: 6px;
  }
  #experts .expert-name-row,
  #invited-experts .expert-name-row {
    display: grid;
    gap: 4px;
    align-items: start;
  }
  #experts .expert-name,
  #invited-experts .expert-name {
    font-size: clamp(1.04rem, 4.8vw, 1.28rem);
    line-height: 1.14;
    overflow-wrap: anywhere;
  }
  #experts .expert-edu,
  #invited-experts .expert-edu {
    font-size: 0.76rem;
    line-height: 1.2;
  }
  #experts .expert-role,
  #invited-experts .expert-role {
    font-size: 0.84rem;
    line-height: 1.42;
    overflow-wrap: anywhere;
  }
  #experts .expert-summary-tags,
  #invited-experts .expert-summary-tags {
    grid-area: tags;
    display: grid;
    gap: 7px;
    width: 100%;
  }
  #experts .expert-summary-tag,
  #invited-experts .expert-summary-tag {
    display: block;
    width: 100%;
    padding: 7px 9px;
    border-radius: 14px;
    font-size: 0.76rem;
    line-height: 1.34;
    max-height: none;
    overflow: visible;
    overflow-wrap: anywhere;
  }
  #experts .expert-summary-tag.role-tag,
  #invited-experts .expert-summary-tag.role-tag {
    max-height: none;
  }
  #experts .expert-highlights,
  #invited-experts .expert-highlights {
    grid-area: highlights;
    padding: 11px 12px;
    border-radius: 14px;
    gap: 8px;
  }
  #experts .expert-highlight-item:not(:first-child),
  #invited-experts .expert-highlight-item:not(:first-child) {
    display: none;
  }
  #invited-experts .experts-dots {
    display: none;
  }
  #invited-experts .invited-experts-progress {
    display: flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    min-height: 34px;
    margin: 10px auto 0;
    padding: 0 14px;
    border-radius: 999px;
    border: 1px solid rgba(167, 243, 208, 0.92);
    background: linear-gradient(180deg, #f2fffa 0%, #e8fbf4 100%);
    color: #047857;
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.02em;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.86);
  }
  #experts .expert-highlight-item,
  #invited-experts .expert-highlight-item {
    gap: 3px;
    padding-top: 8px;
  }
  #experts .expert-highlight-label,
  #invited-experts .expert-highlight-label {
    font-size: 0.68rem;
    line-height: 1.18;
  }
  #experts .expert-highlight-value,
  #invited-experts .expert-highlight-value {
    display: block;
    font-size: 0.82rem;
    line-height: 1.5;
    overflow: visible;
    overflow-wrap: anywhere;
  }
  #contact .contact-map-card,
  #contact .contact-form-card {
    padding: 18px;
  }
  #contact .contact-form-card {
    padding: 16px;
  }
  #contact .contact-card-head,
  #contact .contact-form-shell {
    padding-top: 16px;
  }
  #contact .contact-form-shell {
    padding-top: 12px;
  }
  #contact .contact-map-card::after,
  #contact .contact-form-card::after {
    top: 16px;
    right: 18px;
    font-size: 0.72rem;
  }
  #contact .map-title {
    padding-right: 64px;
  }
  #contact .contact-map-embed {
    height: 220px;
    min-height: 220px;
  }
  #contact .contact-action-row {
    grid-template-columns: 1fr;
  }
  #contact .contact-submit {
    width: 100%;
    min-width: 0;
    min-height: 52px;
  }
  .ai-box {
    padding: 20px;
    gap: 14px;
  }
  .ai-box::before {
    left: 20px;
  }
  .bubble {
    margin-top: 24px;
    padding: 16px;
  }
  .ai-suggest {
    grid-template-columns: 1fr;
  }
  .ai-suggest button {
    min-height: 0;
  }
  .ai-input { flex-direction: column; }
  .ai-input button { height: 48px; }
  .experts-grid { grid-auto-columns: 100%; }
  .invited-experts-track { grid-auto-columns: 100%; }
  .news-track {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    grid-auto-columns: 100%;
  }
  .news-track,
  .stories-track {
    gap: 14px;
    align-items: stretch;
    scroll-padding-inline: 2px;
  }
  .news-item {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    min-height: auto;
    padding: 12px;
    gap: 10px;
    border-radius: 18px;
    align-self: stretch;
    height: auto;
    justify-content: stretch;
  }
  .news-item,
  .news-item > * {
    max-width: 100%;
    min-width: 0;
  }
  .stories-track { grid-auto-columns: 100%; }
  .story-card {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    padding: 12px;
    gap: 10px;
    min-height: auto;
    border-radius: 18px;
    align-self: stretch;
    height: auto;
  }
  .content-card-meta {
    order: 2;
    padding: 0;
    border-bottom: 0;
    font-size: 0.68rem;
    gap: 8px;
  }
  .news-thumb,
  .news-item > video,
  .news-inline-media,
  .story-banner-frame {
    order: 1;
  }
  .news-caption,
  .story-title {
    order: 3;
    padding: 0;
    border: 0;
    background: transparent;
    font-size: clamp(1rem, 4.8vw, 1.22rem);
    line-height: 1.36;
    max-height: none;
    display: block;
    overflow: visible;
    overflow-wrap: anywhere;
  }
  .news-summary,
  .story-summary {
    order: 4;
    min-height: 0;
    padding: 0;
    border: 0;
    background: transparent;
    font-size: 0.92rem;
    line-height: 1.58;
    max-height: none;
    display: block;
    overflow: visible;
    overflow-wrap: anywhere;
  }
  .story-banner-frame {
    height: auto;
    aspect-ratio: 16 / 10;
    border-radius: 14px;
  }
  .story-banner { padding: 0; }
  .news-slider-shell { padding: 0; }
  .news-nav-btn { display: none; }
  .news-inline-media {
    width: 100%;
    height: auto;
    margin: 0;
  }
  .news-inline-track {
    aspect-ratio: 16 / 10;
  }
  .news-thumb,
  .news-item > video,
  .news-inline-item video {
    width: 100%;
    height: auto;
    margin: 0;
  }
  .news-thumb,
  .news-item > video {
    aspect-ratio: 16 / 10;
    border-radius: 14px;
    object-fit: cover;
  }
  .contact-action-row { grid-template-columns: 1fr; }
  .contact-submit { width: 100%; }
  .faq-grid { grid-template-columns: 1fr; }
  .faq-card {
    gap: 0;
    padding: 0;
  }
  .faq-card::after {
    content: none;
  }
  .faq-card h3 {
    padding-right: 0;
    font-size: 0.98rem;
  }
  .faq-toggle {
    cursor: pointer;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 14px;
    min-height: 58px;
    padding: 18px;
  }
  .faq-toggle-icon {
    position: relative;
    display: inline-flex;
    flex: 0 0 22px;
    width: 22px;
    height: 22px;
    margin-top: 1px;
    border-radius: 999px;
    border: 1px solid rgba(148, 163, 184, 0.58);
    background: linear-gradient(180deg, #ffffff 0%, #f4f8fc 100%);
  }
  .faq-toggle-icon::before,
  .faq-toggle-icon::after {
    content: "";
    position: absolute;
    left: 6px;
    right: 6px;
    top: 10px;
    height: 2px;
    border-radius: 999px;
    background: #0f3b66;
  }
  .faq-toggle-icon::after {
    transform: rotate(90deg);
    transition: transform 0.18s ease;
  }
  .faq-card.is-open .faq-toggle-icon::after {
    transform: rotate(0deg);
  }
  .faq-answer {
    padding: 0 18px 18px;
  }
  .faq-card:not(.is-open) .faq-answer {
    display: none;
  }
}

@media (max-width: 420px) {
  .container {
    width: min(var(--maxw), calc(100% - 20px));
  }
  .brand-title {
    font-size: 0.92rem;
  }
  .hero-copy-block {
    padding: 13px;
    border-radius: 22px;
  }
  .hero-copy-block h1 {
    font-size: clamp(1.38rem, 6.8vw, 1.82rem);
  }
  html[lang="en"] .hero-copy-block h1,
  html[lang="de"] .hero-copy-block h1,
  html[lang="es"] .hero-copy-block h1,
  html[lang="fr"] .hero-copy-block h1 {
    font-size: clamp(1.16rem, 5.8vw, 1.58rem);
  }
  .hero-services .card,
  .hero-steps .card {
    flex-basis: 86%;
    width: 86%;
    min-width: 86%;
    max-width: 86%;
  }
  .shanghai-guide-copy {
    padding: 14px;
  }
}
