/* ==========================================================================
   生育力保存 · 设计系统
   配色取自原站（玫红 / 紫 / 青绿 / 黄绿），重新调校为临床可信、克制、温暖的现代体系。
   所有尺寸用 clamp() 做流体缩放，断点少、适配稳。
   ========================================================================== */

/* ---------- Design tokens ---------- */
:root {
  /* 主色：玫红 */
  --rose-50: #fff6f9;
  --rose-100: #fde8f0;
  --rose-200: #f9cfdf;
  --rose-300: #f2a6c3;
  --rose-400: #e4749f;
  --rose-500: #c7306a;
  --rose-600: #a82657;
  --rose-700: #861d45;
  --rose-800: #61122f;

  /* 辅色：紫 */
  --plum-50: #f7f5fc;
  --plum-100: #ece7f7;
  --plum-200: #d9d0ee;
  --plum-300: #b9a9dd;
  --plum-500: #67509a;
  --plum-600: #55407f;
  --plum-700: #433266;
  --plum-900: #251d3c;

  /* 辅色：青绿 / 黄绿 */
  --teal-50: #eef8f6;
  --teal-100: #d6efea;
  --teal-500: #2f9c8e;
  --teal-600: #248075;
  --lime-50: #f7f9e9;
  --lime-500: #9cb72b;
  --lime-600: #7f9720;

  /* 中性 */
  --ink: #1b1e2c;
  --ink-2: #3c4257;
  --muted: #6d7386;
  --muted-2: #8f94a6;
  --line: rgba(27, 30, 44, 0.1);
  --line-strong: rgba(27, 30, 44, 0.16);
  --bg: #ffffff;
  --bg-soft: #fbf8fa;
  --bg-plum: #f8f6fc;
  --bg-dark: #1d1830;

  /* 排版 */
  --font-sans: "PingFang SC", "Hiragino Sans GB", "Noto Sans SC", "Source Han Sans SC",
    "Microsoft YaHei", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --font-serif: "Songti SC", "Noto Serif SC", "Source Han Serif SC", Georgia, "Times New Roman", serif;

  /* 流体字号 */
  --fs-display: clamp(2rem, 1.35rem + 3.2vw, 3.75rem);
  --fs-h1: clamp(1.75rem, 1.25rem + 2.2vw, 2.75rem);
  --fs-h2: clamp(1.4rem, 1.1rem + 1.3vw, 2rem);
  --fs-h3: clamp(1.1rem, 0.98rem + 0.6vw, 1.375rem);
  --fs-lead: clamp(1rem, 0.95rem + 0.35vw, 1.1875rem);
  --fs-body: 1rem;
  --fs-sm: 0.9375rem;
  --fs-xs: 0.8125rem;

  /* 间距尺度 */
  --sp-1: 0.25rem;
  --sp-2: 0.5rem;
  --sp-3: 0.75rem;
  --sp-4: 1rem;
  --sp-5: 1.5rem;
  --sp-6: 2rem;
  --sp-7: 3rem;
  --sp-8: 4rem;
  --sp-9: 6rem;
  --section-y: clamp(3.5rem, 2.5rem + 4.5vw, 7rem);
  --gutter: clamp(1.15rem, 0.6rem + 2.4vw, 2.5rem);
  --maxw: 1180px;

  /* 圆角与阴影 */
  --r-sm: 10px;
  --r-md: 16px;
  --r-lg: 22px;
  --r-xl: 30px;
  --r-pill: 999px;
  --shadow-1: 0 1px 2px rgba(27, 30, 44, 0.04), 0 4px 14px rgba(27, 30, 44, 0.05);
  --shadow-2: 0 2px 6px rgba(27, 30, 44, 0.05), 0 14px 34px rgba(27, 30, 44, 0.08);
  --shadow-3: 0 8px 20px rgba(97, 18, 47, 0.08), 0 26px 60px rgba(97, 18, 47, 0.1);
  --ring: 0 0 0 3px rgba(199, 48, 106, 0.28);

  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

/* ---------- Reset ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 5.5rem;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: var(--fs-body);
  line-height: 1.75;
  letter-spacing: 0.005em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img,
svg,
video {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--rose-600);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

a:hover {
  color: var(--rose-700);
}

button {
  font: inherit;
  cursor: pointer;
}

h1,
h2,
h3,
h4 {
  margin: 0 0 var(--sp-3);
  line-height: 1.28;
  font-weight: 700;
  letter-spacing: -0.012em;
  color: var(--ink);
}

h1 {
  font-size: var(--fs-h1);
}

h2 {
  font-size: var(--fs-h2);
}

h3 {
  font-size: var(--fs-h3);
}

p {
  margin: 0 0 var(--sp-4);
}

ul,
ol {
  margin: 0 0 var(--sp-4);
  padding-left: 1.25rem;
}

li + li {
  margin-top: var(--sp-2);
}

strong,
b {
  font-weight: 700;
  color: var(--ink);
}

hr {
  border: 0;
  border-top: 1px solid var(--line);
  margin: var(--sp-7) 0;
}

:focus-visible {
  outline: 2px solid var(--rose-500);
  outline-offset: 2px;
  border-radius: 4px;
}

::selection {
  background: var(--rose-100);
  color: var(--rose-800);
}

/* 跳转到主内容（无障碍） */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 200;
  background: var(--rose-600);
  color: #fff;
  padding: 0.7rem 1.1rem;
  border-radius: 0 0 var(--r-sm) 0;
  font-size: var(--fs-sm);
}

.skip-link:focus {
  left: 0;
  color: #fff;
}

/* ---------- Layout ---------- */
.container {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.container--narrow {
  max-width: 820px;
}

.section {
  /* 相邻两段之间会叠加上下内边距，所以下边距略收一点，避免留白过大 */
  padding-block: var(--section-y) calc(var(--section-y) * 0.72);
}

.section--tight {
  padding-block: clamp(2.5rem, 2rem + 2.5vw, 4.5rem);
}

.section--soft {
  background: var(--bg-soft);
}

.section--plum {
  background: linear-gradient(180deg, var(--plum-50), #fff 85%);
}

.section--rose {
  background: linear-gradient(180deg, var(--rose-50), #fff 80%);
}

.section--dark {
  background:
    radial-gradient(1200px 500px at 12% -10%, rgba(199, 48, 106, 0.5), transparent 62%),
    radial-gradient(900px 460px at 92% 6%, rgba(103, 80, 154, 0.55), transparent 60%),
    var(--bg-dark);
  color: #fff;
}

.section--dark h2,
.section--dark h3,
.section--dark strong {
  color: #fff;
}

.section--dark p {
  color: rgba(255, 255, 255, 0.82);
}

.section__head {
  max-width: 60ch;
  margin-bottom: var(--sp-6);
}

.section__head--center {
  margin-inline: auto;
  text-align: center;
}

.section__head p {
  font-size: var(--fs-lead);
  color: var(--muted);
  margin-bottom: 0;
}

.section--dark .section__head p {
  color: rgba(255, 255, 255, 0.78);
}

/* ---------- 小标签 / 眉标 ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--rose-600);
  margin-bottom: var(--sp-3);
}

.eyebrow::before {
  content: "";
  width: 22px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
  opacity: 0.6;
}

.eyebrow--light {
  color: var(--rose-200);
}

.eyebrow--plum {
  color: var(--plum-600);
}

.eyebrow--teal {
  color: var(--teal-600);
}

/* 英文标语 */
.slogan {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: var(--fs-lead);
  letter-spacing: 0.01em;
  color: var(--plum-600);
}

/* ---------- 按钮 ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.8rem 1.4rem;
  border: 1px solid transparent;
  border-radius: var(--r-pill);
  font-size: var(--fs-sm);
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  transition: transform 0.22s var(--ease), box-shadow 0.22s var(--ease),
    background-color 0.22s var(--ease), color 0.22s var(--ease), border-color 0.22s var(--ease);
}

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

.btn--primary {
  background: linear-gradient(135deg, var(--rose-500), var(--rose-600));
  color: #fff;
  box-shadow: 0 8px 22px rgba(168, 38, 87, 0.26);
}

.btn--primary:hover {
  color: #fff;
  box-shadow: 0 12px 28px rgba(168, 38, 87, 0.34);
}

.btn--ghost {
  border-color: var(--line-strong);
  color: var(--ink);
  background: #fff;
}

.btn--ghost:hover {
  border-color: var(--rose-300);
  color: var(--rose-700);
  background: var(--rose-50);
}

.btn--light {
  background: #fff;
  color: var(--rose-700);
}

.btn--light:hover {
  color: var(--rose-700);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
}

.btn--outline-light {
  border-color: rgba(255, 255, 255, 0.42);
  color: #fff;
}

.btn--outline-light:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.7);
}

.btn--sm {
  padding: 0.6rem 1.05rem;
  font-size: var(--fs-xs);
}

.btn--lg {
  padding: 0.95rem 1.75rem;
  font-size: var(--fs-body);
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-3);
  align-items: center;
}

/* 非跳转的展示型按钮（咨询入口按需求只展示不跳转） */
.btn--static {
  cursor: default;
  pointer-events: none;
  user-select: none;
}

.btn--static:hover {
  transform: none;
}

/* ---------- 顶部导航 ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.site-header.is-stuck {
  border-bottom-color: var(--line);
  box-shadow: 0 1px 20px rgba(27, 30, 44, 0.06);
}

.site-header__inner {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
  min-height: 4.25rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
  color: var(--ink);
  margin-right: auto;
}

.brand__mark {
  flex: none;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--rose-500), var(--plum-500));
  box-shadow: 0 6px 16px rgba(168, 38, 87, 0.24);
}

.brand__mark svg {
  width: 22px;
  height: 22px;
}

.brand__text {
  display: flex;
  flex-direction: column;
  line-height: 1.25;
}

.brand__name {
  font-weight: 700;
  font-size: 1.0625rem;
  letter-spacing: -0.01em;
}

.brand__sub {
  font-size: 0.6875rem;
  color: var(--muted);
  letter-spacing: 0.06em;
}

.nav {
  display: flex;
  align-items: center;
  gap: 0.15rem;
}

.nav a {
  display: block;
  padding: 0.5rem 0.8rem;
  border-radius: var(--r-pill);
  font-size: var(--fs-sm);
  font-weight: 500;
  color: var(--ink-2);
  text-decoration: none;
  transition: background-color 0.2s var(--ease), color 0.2s var(--ease);
}

.nav a:hover {
  background: var(--rose-50);
  color: var(--rose-700);
}

.nav a[aria-current="page"] {
  background: var(--rose-100);
  color: var(--rose-700);
  font-weight: 600;
}

.site-header__cta {
  flex: none;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line-strong);
  border-radius: 12px;
  background: #fff;
  color: var(--ink);
  padding: 0;
  place-items: center;
}

.nav-toggle svg {
  width: 20px;
  height: 20px;
}

.nav-toggle__close {
  display: none;
}

.nav-toggle[aria-expanded="true"] .nav-toggle__open {
  display: none;
}

.nav-toggle[aria-expanded="true"] .nav-toggle__close {
  display: block;
}

@media (max-width: 900px) {
  .nav-toggle {
    display: grid;
  }

  .site-header__cta {
    display: none;
  }

  .nav {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 0.15rem;
    padding: 0.9rem var(--gutter) 1.1rem;
    background: #fff;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-2);
    display: none;
  }

  .nav.is-open {
    display: flex;
  }

  .nav a {
    padding: 0.7rem 0.9rem;
    border-radius: var(--r-sm);
  }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  padding-block: clamp(3rem, 2rem + 5vw, 6rem) clamp(2.5rem, 2rem + 4vw, 5rem);
}

.hero__media {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(103deg, rgba(255, 255, 255, 0.97) 0%, rgba(255, 255, 255, 0.92) 42%, rgba(255, 246, 249, 0.62) 68%, rgba(255, 246, 249, 0.32) 100%);
}

.hero__inner {
  max-width: 46rem;
}

.hero h1 {
  font-size: var(--fs-display);
  line-height: 1.14;
  letter-spacing: -0.022em;
  margin-bottom: var(--sp-4);
}

.hero h1 .accent {
  background: linear-gradient(120deg, var(--rose-600), var(--plum-500) 70%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero__lead {
  font-size: var(--fs-lead);
  color: var(--ink-2);
  max-width: 40rem;
}

.hero__note {
  margin-top: var(--sp-5);
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.1rem;
  font-size: var(--fs-sm);
  color: var(--muted);
}

.hero__note span {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.hero__note svg {
  width: 15px;
  height: 15px;
  flex: none;
  color: var(--teal-500);
}

/* ---------- 数据条 ---------- */
.stat-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-1);
}

.stat {
  background: #fff;
  padding: clamp(1.1rem, 0.8rem + 1vw, 1.6rem);
}

.stat__num {
  display: flex;
  align-items: baseline;
  gap: 0.15rem;
  font-size: clamp(1.6rem, 1.2rem + 1.6vw, 2.35rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
  background: linear-gradient(120deg, var(--rose-600), var(--plum-500));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.stat__num small {
  font-size: 0.55em;
  font-weight: 700;
}

.stat__label {
  margin-top: 0.45rem;
  font-size: var(--fs-sm);
  color: var(--ink-2);
  font-weight: 600;
}

.stat__hint {
  margin-top: 0.2rem;
  font-size: var(--fs-xs);
  color: var(--muted-2);
  line-height: 1.5;
}

/* ---------- 卡片 ---------- */
.grid {
  display: grid;
  gap: var(--sp-5);
}

.grid--2 {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.grid--3 {
  grid-template-columns: repeat(auto-fit, minmax(268px, 1fr));
}

.grid--4 {
  grid-template-columns: repeat(auto-fit, minmax(216px, 1fr));
}

.card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  padding: clamp(1.25rem, 1rem + 0.9vw, 1.9rem);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-1);
  transition: transform 0.28s var(--ease), box-shadow 0.28s var(--ease),
    border-color 0.28s var(--ease);
}

.card h3 {
  margin-bottom: 0;
}

.card p {
  margin-bottom: 0;
  color: var(--ink-2);
  font-size: var(--fs-sm);
}

.card__foot {
  margin-top: auto;
  padding-top: var(--sp-3);
}

a.card,
.card--hover:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-2);
  border-color: var(--rose-200);
}

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

.card--accent {
  border-top: 3px solid var(--rose-500);
}

.card--plum {
  border-top: 3px solid var(--plum-500);
}

.card--teal {
  border-top: 3px solid var(--teal-500);
}

.card--lime {
  border-top: 3px solid var(--lime-500);
}

.card--feature {
  background: linear-gradient(180deg, #fff, var(--rose-50));
  border-color: var(--rose-200);
  box-shadow: var(--shadow-2);
}

.icon-badge {
  flex: none;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: var(--rose-100);
  color: var(--rose-700);
}

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

.icon-badge--plum {
  background: var(--plum-100);
  color: var(--plum-600);
}

.icon-badge--teal {
  background: var(--teal-100);
  color: var(--teal-600);
}

.icon-badge--lime {
  background: var(--lime-50);
  color: var(--lime-600);
}

.icon-badge--lg {
  width: 56px;
  height: 56px;
  border-radius: 17px;
}

.icon-badge--lg svg {
  width: 27px;
  height: 27px;
}

/* 序号徽标 */
.step-num {
  flex: none;
  width: 34px;
  height: 34px;
  border-radius: var(--r-pill);
  display: grid;
  place-items: center;
  font-size: 0.9375rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--rose-500), var(--plum-500));
  color: #fff;
  box-shadow: 0 6px 14px rgba(168, 38, 87, 0.24);
}

/* ---------- 清单 ---------- */
.checklist {
  list-style: none;
  margin: 0;
  padding: 0;
}

.checklist li {
  position: relative;
  padding-left: 1.85rem;
  margin-top: 0.7rem;
  font-size: var(--fs-sm);
  color: var(--ink-2);
  line-height: 1.7;
}

.checklist li:first-child {
  margin-top: 0;
}

.checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.42em;
  width: 1.05rem;
  height: 1.05rem;
  border-radius: var(--r-pill);
  background: var(--rose-100);
  border: 1px solid var(--rose-200);
}

.checklist li::after {
  content: "";
  position: absolute;
  left: 0.33rem;
  top: 0.66em;
  width: 0.36rem;
  height: 0.2rem;
  border-left: 2px solid var(--rose-600);
  border-bottom: 2px solid var(--rose-600);
  transform: rotate(-45deg);
}

.checklist--teal li::before {
  background: var(--teal-100);
  border-color: #b6e0d8;
}

.checklist--teal li::after {
  border-color: var(--teal-600);
}

.checklist--plum li::before {
  background: var(--plum-100);
  border-color: var(--plum-200);
}

.checklist--plum li::after {
  border-color: var(--plum-600);
}

.checklist--light li {
  color: rgba(255, 255, 255, 0.86);
}

.checklist--light li::before {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.3);
}

.checklist--light li::after {
  border-color: #fff;
}

/* ---------- 流程 / 时间轴 ---------- */
.flow {
  display: grid;
  gap: var(--sp-4);
  counter-reset: flow;
}

.flow__item {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--sp-4);
  align-items: start;
  padding: clamp(1.1rem, 0.9rem + 0.7vw, 1.6rem);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-1);
}

.flow__item::after {
  content: "";
  position: absolute;
  left: calc(var(--sp-4) + 17px - 0.5px);
  top: 100%;
  width: 1px;
  height: var(--sp-4);
  background: var(--line-strong);
}

.flow__item:last-child::after {
  display: none;
}

.flow__body h3 {
  font-size: 1.0625rem;
  margin-bottom: 0.3rem;
}

.flow__body p {
  margin-bottom: 0;
}

.flow__meta {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 0.6rem;
  padding: 0.22rem 0.6rem;
  border-radius: var(--r-pill);
  background: var(--rose-50);
  border: 1px solid var(--rose-100);
  color: var(--rose-700);
  font-size: var(--fs-xs);
  font-weight: 600;
}

.flow__meta--teal {
  background: var(--teal-50);
  border-color: var(--teal-100);
  color: var(--teal-600);
}

.flow__meta--plum {
  background: var(--plum-50);
  border-color: var(--plum-100);
  color: var(--plum-600);
}

/* 横向时间轴（就医流程） */
.timeline {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: var(--sp-5);
  counter-reset: tl;
}

.timeline__item {
  position: relative;
  padding-top: 3.4rem;
}

.timeline__item::before {
  counter-increment: tl;
  content: counter(tl);
  position: absolute;
  top: 0;
  left: 0;
  width: 2.4rem;
  height: 2.4rem;
  border-radius: var(--r-pill);
  display: grid;
  place-items: center;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(135deg, var(--rose-500), var(--plum-500));
  box-shadow: 0 6px 16px rgba(168, 38, 87, 0.26);
  z-index: 1;
}

.timeline__item::after {
  content: "";
  position: absolute;
  top: 1.2rem;
  left: 2.4rem;
  right: calc(var(--sp-5) * -1);
  height: 2px;
  background: linear-gradient(90deg, var(--rose-200), transparent);
}

.timeline__item:last-child::after {
  display: none;
}

.timeline__item h3 {
  font-size: 1.0625rem;
  margin-bottom: 0.35rem;
}

.timeline__item p {
  font-size: var(--fs-sm);
  color: var(--ink-2);
  margin-bottom: 0;
}

/* ---------- 方案对比 ---------- */
.compare {
  display: grid;
  gap: var(--sp-5);
  grid-template-columns: repeat(auto-fit, minmax(276px, 1fr));
  align-items: stretch;
}

.plan {
  display: flex;
  flex-direction: column;
  padding: clamp(1.3rem, 1rem + 1vw, 2rem);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-1);
  transition: transform 0.28s var(--ease), box-shadow 0.28s var(--ease);
}

.plan:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-2);
}

.plan--primary {
  border-color: var(--rose-200);
  box-shadow: var(--shadow-3);
}

.plan__tag {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  align-self: flex-start;
  padding: 0.24rem 0.62rem;
  border-radius: var(--r-pill);
  background: var(--rose-50);
  border: 1px solid var(--rose-100);
  color: var(--rose-700);
  font-size: var(--fs-xs);
  font-weight: 600;
  margin-bottom: var(--sp-3);
}

.plan__title {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: var(--sp-2);
}

.plan__title h3 {
  margin: 0;
  font-size: 1.2rem;
}

.plan__for {
  font-size: var(--fs-sm);
  color: var(--muted);
  margin-bottom: var(--sp-4);
}

.plan__list {
  margin-bottom: 0;
}

.plan__foot {
  margin-top: var(--sp-5);
  padding-top: var(--sp-4);
  border-top: 1px dashed var(--line-strong);
  font-size: var(--fs-xs);
  color: var(--muted);
}

/* 表格 */
.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-1);
  background: #fff;
}

table {
  width: 100%;
  border-collapse: collapse;
  font-size: var(--fs-sm);
  min-width: 620px;
}

caption {
  caption-side: top;
  text-align: left;
  padding: 1rem 1.25rem 0.25rem;
  color: var(--muted);
  font-size: var(--fs-xs);
}

th,
td {
  padding: 0.9rem 1.1rem;
  text-align: left;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}

thead th {
  background: var(--bg-soft);
  font-weight: 700;
  color: var(--ink);
  white-space: nowrap;
  font-size: var(--fs-sm);
}

tbody tr:last-child td {
  border-bottom: 0;
}

tbody tr:hover td {
  background: var(--rose-50);
}

td strong {
  color: var(--rose-700);
}

/* ---------- 方案切换（键盘可用） ---------- */
.tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: var(--sp-5);
}

.tab {
  padding: 0.55rem 1.05rem;
  border-radius: var(--r-pill);
  border: 1px solid var(--line-strong);
  background: #fff;
  color: var(--ink-2);
  font-size: var(--fs-sm);
  font-weight: 600;
  transition: all 0.22s var(--ease);
}

.tab:hover {
  border-color: var(--rose-300);
  color: var(--rose-700);
}

.tab[aria-selected="true"] {
  background: linear-gradient(135deg, var(--rose-500), var(--rose-600));
  border-color: transparent;
  color: #fff;
  box-shadow: 0 6px 16px rgba(168, 38, 87, 0.24);
}

.tabpanel[hidden] {
  display: none;
}

/* ---------- 人员卡 ---------- */
.person {
  display: flex;
  gap: var(--sp-4);
  align-items: center;
  padding: clamp(1.1rem, 0.9rem + 0.7vw, 1.5rem);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-1);
}

.person__photo {
  flex: none;
  width: 72px;
  height: 72px;
  border-radius: var(--r-pill);
  object-fit: cover;
  border: 3px solid #fff;
  box-shadow: 0 0 0 1px var(--line), var(--shadow-1);
  background: var(--rose-50);
}

.person__name {
  font-weight: 700;
  font-size: 1.0625rem;
}

.person__role {
  font-size: var(--fs-xs);
  color: var(--muted);
  margin-top: 0.1rem;
}

.person__focus {
  margin-top: 0.45rem;
  font-size: var(--fs-sm);
  color: var(--ink-2);
}

@media (max-width: 520px) {
  .person {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }
}

/* ---------- 高亮提示块 ---------- */
.callout {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--sp-4);
  padding: clamp(1.15rem, 0.95rem + 0.8vw, 1.7rem);
  border-radius: var(--r-md);
  background: var(--rose-50);
  border: 1px solid var(--rose-100);
}

.callout--teal {
  background: var(--teal-50);
  border-color: var(--teal-100);
}

.callout--plum {
  background: var(--plum-50);
  border-color: var(--plum-100);
}

.callout--lime {
  background: var(--lime-50);
  border-color: #e6eec2;
}

.callout h3 {
  font-size: 1.0625rem;
  margin-bottom: 0.35rem;
}

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

.callout strong {
  color: var(--rose-700);
}

.callout--teal strong {
  color: var(--teal-600);
}

.callout--plum strong {
  color: var(--plum-600);
}

/* 费用等关键数字 */
.figure-inline {
  display: inline-flex;
  align-items: baseline;
  gap: 0.1rem;
  font-weight: 700;
  color: var(--rose-700);
  font-size: 1.06em;
}

/* ---------- 联系 / CTA ---------- */
.cta-band {
  position: relative;
  overflow: hidden;
  border-radius: var(--r-xl);
  padding: clamp(1.75rem, 1.3rem + 2.4vw, 3.5rem);
  color: #fff;
  background:
    radial-gradient(760px 340px at 10% -20%, rgba(255, 255, 255, 0.2), transparent 60%),
    linear-gradient(122deg, var(--rose-600), var(--plum-600) 72%);
  box-shadow: var(--shadow-3);
}

.cta-band h2 {
  color: #fff;
}

.cta-band p {
  color: rgba(255, 255, 255, 0.86);
  max-width: 52ch;
  margin-bottom: var(--sp-5);
}

.qr-card {
  flex: none;
  width: min(230px, 100%);
  padding: 1.1rem;
  border-radius: var(--r-lg);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.24);
  text-align: center;
  backdrop-filter: blur(6px);
}

.qr-card__box {
  aspect-ratio: 1;
  border-radius: var(--r-sm);
  background: rgba(255, 255, 255, 0.9);
  display: grid;
  place-items: center;
  gap: 0.35rem;
  padding: 0.75rem;
  color: var(--plum-700);
  font-size: var(--fs-xs);
  line-height: 1.5;
}

.qr-card__box svg {
  width: 40px;
  height: 40px;
  color: var(--rose-500);
}

.qr-card__cap {
  margin-top: 0.7rem;
  font-size: var(--fs-xs);
  color: rgba(255, 255, 255, 0.86);
}

.cta-band__cols {
  display: flex;
  gap: clamp(1.25rem, 0.8rem + 2vw, 3rem);
  align-items: center;
  flex-wrap: wrap;
}

.cta-band__main {
  flex: 1 1 22rem;
}

/* ---------- 目录（页内导航） ---------- */
.toc {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.toc a {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.45rem 0.9rem;
  border-radius: var(--r-pill);
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink-2);
  font-size: var(--fs-xs);
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s var(--ease);
}

.toc a:hover {
  border-color: var(--rose-300);
  background: var(--rose-50);
  color: var(--rose-700);
}

/* ---------- 页头（子页） ---------- */
.page-head {
  position: relative;
  overflow: hidden;
  padding-block: clamp(2.5rem, 1.8rem + 3.5vw, 4.5rem) clamp(2rem, 1.5rem + 2.5vw, 3.5rem);
  background:
    radial-gradient(900px 420px at 88% -30%, var(--plum-100), transparent 62%),
    radial-gradient(700px 380px at 4% 0%, var(--rose-100), transparent 60%),
    var(--bg-soft);
  border-bottom: 1px solid var(--line);
}

.page-head__inner {
  max-width: 54rem;
}

.page-head h1 {
  margin-bottom: var(--sp-3);
}

.page-head p {
  font-size: var(--fs-lead);
  color: var(--ink-2);
  margin-bottom: 0;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: var(--fs-xs);
  color: var(--muted);
  margin-bottom: var(--sp-3);
}

.breadcrumb a {
  color: var(--muted);
  text-decoration: none;
}

.breadcrumb a:hover {
  color: var(--rose-600);
  text-decoration: underline;
}

/* ---------- 图文分栏 ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1.5rem, 1rem + 3vw, 3.5rem);
  align-items: center;
}

@media (min-width: 880px) {
  .split {
    grid-template-columns: 1.05fr 0.95fr;
  }

  .split--reverse > :first-child {
    order: 2;
  }
}

.split__media {
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-2);
  border: 1px solid var(--line);
  background: var(--bg-soft);
}

.split__media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.split__media--wide img {
  aspect-ratio: 3 / 2;
}

/* 竖版实拍人像：容器 3:4，人物偏上不倒 */
.split__media--portrait img {
  aspect-ratio: 3 / 4;
  object-position: center 26%;
}

/* 实拍照片带：整幅照片 + 图注 */
.photo-band {
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-2);
  background: var(--bg-soft);
}

.photo-band img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: center 42%;
}

.photo-band__cap {
  margin: 0;
  padding: 0.85rem 1.15rem;
  font-size: var(--fs-xs);
  line-height: 1.6;
  color: var(--muted);
  background: #fff;
  border-top: 1px solid var(--line);
}

/* 纯 CSS 信息图（替代原站低清图片） */
.infographic {
  display: grid;
  gap: var(--sp-3);
}

.infographic__row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: var(--sp-4);
  align-items: center;
  padding: 0.9rem 1.1rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
}

.infographic__label {
  font-weight: 600;
  font-size: var(--fs-sm);
}

.infographic__bar {
  height: 9px;
  border-radius: var(--r-pill);
  background: var(--rose-100);
  overflow: hidden;
  min-width: 90px;
}

.infographic__bar span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--rose-500), var(--plum-500));
}

.infographic__value {
  font-weight: 700;
  color: var(--rose-700);
  font-size: var(--fs-sm);
  white-space: nowrap;
}

/* 标签列表：用于并列的"适用/包含"项，只表达归属，不表达比例 */
.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.tag-list li {
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 1rem;
  border-radius: var(--r-pill);
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-1);
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--ink-2);
}

.tag-list li::before {
  content: "";
  flex: none;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: var(--r-pill);
  background: linear-gradient(135deg, var(--rose-500), var(--plum-500));
}

.tag-list--teal li::before {
  background: linear-gradient(135deg, var(--teal-500), var(--teal-600));
}

/* ---------- 页脚 ---------- */
.site-footer {
  margin-top: var(--sp-8);
  padding-block: clamp(2.5rem, 2rem + 2.5vw, 4rem) var(--sp-6);
  background: var(--bg-dark);
  color: rgba(255, 255, 255, 0.74);
  font-size: var(--fs-sm);
}

.site-footer a {
  color: rgba(255, 255, 255, 0.86);
  text-decoration: none;
}

.site-footer a:hover {
  color: #fff;
  text-decoration: underline;
}

.site-footer strong {
  color: #fff;
}

.site-footer__slogan {
  color: rgba(255, 255, 255, 0.62);
}

.site-footer h3 {
  color: #fff;
  font-size: var(--fs-sm);
  letter-spacing: 0.02em;
  margin-bottom: var(--sp-3);
}

.site-footer__grid {
  display: grid;
  gap: var(--sp-6);
  grid-template-columns: 1.4fr 1fr 1fr;
}

@media (max-width: 760px) {
  .site-footer__grid {
    grid-template-columns: 1fr;
    gap: var(--sp-5);
  }
}

.site-footer__brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  color: #fff;
  font-weight: 700;
  font-size: 1.0625rem;
  margin-bottom: var(--sp-3);
}

.site-footer__brand .brand__mark {
  box-shadow: none;
}

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

.site-footer__list li {
  margin-top: 0.55rem;
}

.site-footer__list li:first-child {
  margin-top: 0;
}

.site-footer__bottom {
  margin-top: var(--sp-7);
  padding-top: var(--sp-4);
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  justify-content: space-between;
  font-size: var(--fs-xs);
  color: rgba(255, 255, 255, 0.6);
}

.disclaimer {
  margin-top: var(--sp-4);
  font-size: var(--fs-xs);
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.56);
  max-width: 62ch;
}

/* ---------- 滚动显现 ---------- */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
  will-change: opacity, transform;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }

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

/* ---------- 工具类 ---------- */
.text-center {
  text-align: center;
}

.mt-0 {
  margin-top: 0;
}

.mt-4 {
  margin-top: var(--sp-4);
}

.mt-5 {
  margin-top: var(--sp-5);
}

.mt-6 {
  margin-top: var(--sp-6);
}

.mt-7 {
  margin-top: var(--sp-7);
}

.mb-0 {
  margin-bottom: 0;
}

.mb-4 {
  margin-bottom: var(--sp-4);
}

.mb-5 {
  margin-bottom: var(--sp-5);
}

.mb-6 {
  margin-bottom: var(--sp-6);
}

.lead {
  font-size: var(--fs-lead);
  color: var(--ink-2);
}

.muted {
  color: var(--muted);
}

.small {
  font-size: var(--fs-sm);
}

.xs {
  font-size: var(--fs-xs);
}

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

/* 打印 */
@media print {
  .site-header,
  .site-footer,
  .cta-band,
  .toc {
    display: none;
  }

  body {
    color: #000;
  }
}
