/*!
 * GP-Fertility 内容页 / 长文页 抽离样式
 * 收纳：
 *   - .wts 体系（when-to-see-a-fertility-specialist + the-signs-of-infertility）
 *   - .about-overview-page 体系（about-overview-body）
 *   - .why-gp 模块（嵌在 about-overview-body 中的 P 标签内）
 *
 * 颜色规则：
 *   - 全部使用 gp-fertility-theme.css 设计令牌（var(--gp-*)）
 *   - 收敛掉 #d8d0ec / #ddd6f0 / #5a4a8f / #6b56cf / #fafafc / 多种深紫黑微差等"自创近似紫"
 *   - 仅渐变/阴影内的 rgba(123,102,215,*) 保留（它们已是品牌主紫的透明度变种）
 *   - #fff / #ffffff 直接使用字面量（白色无需变量化）
 */

/* ════════════════════════════════════════════════════
   .wts 体系（共享：when-to-see-a-fertility-specialist + the-signs-of-infertility）
   ════════════════════════════════════════════════════ */

html { scroll-behavior: smooth; }

.wts-skip-link {
  position: absolute;
  top: -100px;
  left: 1rem;
  z-index: 9999;
  padding: 0.6rem 1.25rem;
  background: var(--gp-brand-purple, #7b66d7);
  color: #fff;
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: 0 0 6px 6px;
  text-decoration: none;
  transition: top 0.2s ease;
}
.wts-skip-link:focus {
  top: 0;
  outline: 3px solid var(--gp-brand-purple-80, #957fe0);
  outline-offset: 2px;
}

.wts h1.heading {
  color: var(--gp-brand-purple, #7b66d7);
  font-size: clamp(1.45rem, 2.8vw, 1.85rem);
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}
.wts h2.heading {
  color: var(--gp-brand-purple, #7b66d7);
  font-size: clamp(1.3rem, 2.4vw, 1.6rem);
  font-weight: 700;
  font-style: normal;
  line-height: 1.3;
  letter-spacing: -0.01em;
  margin-top: 2.25rem;
  margin-bottom: 0.85rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--gp-border-soft, #e2d9f4);
}
.wts h3.heading {
  color: var(--gp-brand-purple, #7b66d7);
  font-size: clamp(1.02rem, 1.8vw, 1.15rem);
  font-weight: 600;
  font-style: normal;
  line-height: 1.35;
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
  padding-left: 0.65rem;
  border-left: 3px solid var(--gp-brand-purple-65, #ad9ce8);
}

.wts .paragraph {
  font-size: 1rem;
  line-height: 1.72;
  color: var(--gp-text-body, #374151);
  margin-bottom: 0.75rem;
}

.wts .text-box {
  background: var(--gp-surface-muted, #f7f7fa);
  border: 1px solid var(--gp-border-soft, #e2d9f4);
  border-left: 3px solid var(--gp-brand-purple-80, #957fe0);
  border-radius: 0 6px 6px 0;
  padding: 1rem 1.15rem;
  margin: 1rem 0 1.25rem;
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--gp-text-body, #374151);
  overflow: hidden;
}
.wts .text-box .list.ul-list {
  padding-left: 1.25rem;
  margin-bottom: 0;
}

.wts .list.ul-list {
  padding-left: 1.5rem;
  margin: 0.5rem 0 1rem;
  list-style: none;
}
.wts .list.ul-list li {
  position: relative;
  padding-left: 0;
  margin-bottom: 0.3rem;
  font-size: 0.9625rem;
  line-height: 1.55;
  color: var(--gp-text-body, #374151);
}
.wts .list.ul-list li::before {
  content: "•";
  position: absolute;
  left: -1.1rem;
  top: 0;
  width: auto;
  height: auto;
  border-radius: 0;
  background: none;
  color: var(--gp-brand-purple-80, #957fe0);
  font-size: 1.1em;
  line-height: 1.55;
  transform: none;
  display: inline-block;
}
.wts .list.ul-list li a {
  color: var(--gp-brand-purple, #7b66d7);
  text-decoration: none;
  font-weight: 500;
}
.wts .list.ul-list li a:hover {
  text-decoration: underline;
}

/* 分隔线：原 #D8D0EC 自创紫灰收敛为 border-soft */
.wts .separator {
  border: none;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gp-border-soft, #e2d9f4) 30%, var(--gp-border-soft, #e2d9f4) 70%, transparent);
  margin: 1.75rem 0;
}

.wts figure.media {
  margin: 1.25rem 0;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 1px 8px rgba(123, 102, 215, 0.06);
}
.wts figure.media img {
  display: block;
  width: 100%;
  height: auto;
}

/* 折叠面板 */
.wts .accordion { margin: 0.75rem 0 1.25rem; }
.wts .accordion-item {
  border: 1px solid var(--gp-border-soft, #e2d9f4);
  border-radius: 6px;
  margin-bottom: 0.45rem;
  overflow: hidden;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.wts .accordion-item:hover,
.wts .accordion-item.is-open {
  border-color: var(--gp-brand-purple-65, #ad9ce8);
  box-shadow: 0 1px 6px rgba(123, 102, 215, 0.06);
}
.wts .accordion-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  width: 100%;
  min-height: 2.75rem;
  padding: 0.75rem 1rem;
  background: #fff;
  border: none;
  cursor: pointer;
  text-align: left;
  font-size: 0.9625rem;
  font-weight: 600;
  color: var(--gp-text-1, #1f1b33);
  transition: background 0.2s, color 0.2s;
}
.wts .accordion-item.is-open .accordion-title,
.wts .accordion-title:hover {
  background: var(--gp-surface-muted, #f7f7fa);
  color: var(--gp-brand-purple, #7b66d7);
}
.wts .accordion-title img {
  width: 12px;
  height: 10px;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}
.wts .accordion-item.is-open .accordion-title img { transform: rotate(180deg); }
.wts .accordion-body { overflow: hidden; }
.wts .accordion-body .block-list { padding: 0 1rem 0.75rem; }
.wts .accordion-body .paragraph { font-size: 0.9375rem; margin-bottom: 0.5rem; }

/* 内联 CTA：原 #DDD6F0 自创紫灰收敛为 border-soft */
.wts .cta-box {
  background: linear-gradient(135deg, var(--gp-tint-lavender, #f1ecfa), var(--gp-border-soft, #e2d9f4));
  border: 1px solid var(--gp-border-soft, #e2d9f4);
  border-radius: 8px;
  padding: 1.5rem 1.25rem;
  text-align: center;
  margin: 1.75rem 0;
}
.wts .cta-box h2.heading {
  border-bottom: none;
  margin-top: 0;
  padding-bottom: 0;
  font-size: clamp(1.05rem, 1.8vw, 1.25rem);
}
.wts .cta-box .buttons-wrapper { margin-top: 0.85rem; }

/* CTA banner（仅 when-to-see 用） */
.wts-cta-banner {
  background: linear-gradient(135deg, var(--gp-brand-purple-80, #957fe0) 0%, var(--gp-brand-purple, #7b66d7) 52%, var(--gp-primary-active, #5e4ab3) 100%);
  border-radius: 10px;
  padding: 2.25rem 1.75rem;
  text-align: center;
  margin-top: 2rem;
  position: relative;
  overflow: hidden;
}
.wts-cta-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 25% 40%, rgba(255, 255, 255, 0.07) 0%, transparent 55%);
  pointer-events: none;
}
.wts-cta-banner__title {
  font-size: clamp(1.15rem, 2.2vw, 1.45rem);
  font-weight: 700;
  color: #fff;
  margin: 0 0 0.45rem;
  position: relative;
}
.wts-cta-banner__sub {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.93);
  margin: 0 0 1.25rem;
  line-height: 1.55;
  position: relative;
}
.wts-cta-banner__btns {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  justify-content: center;
  margin-bottom: 1.25rem;
  position: relative;
}
.wts-cta-banner__btns .btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 1.5rem;
  background: #fff;
  color: var(--gp-brand-purple, #7b66d7);
  border: none;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.25s ease;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.12);
}
.wts-cta-banner__btns .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 18px rgba(0, 0, 0, 0.18);
  color: var(--gp-brand-purple, #7b66d7);
}
.wts-cta-banner__btns .btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 1.5rem;
  background: rgba(255, 255, 255, 0.12);
  color: #fff !important;
  border: 1.5px solid rgba(255, 255, 255, 0.5);
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.25s ease;
}
.wts-cta-banner__btns .btn-ghost:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: #fff;
  transform: translateY(-2px);
  color: #fff;
}
.wts-trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  justify-content: center;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  position: relative;
}
.wts-trust-row span {
  display: flex;
  align-items: baseline;
  gap: 0.3rem;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.8125rem;
  font-weight: 500;
}
.wts-trust-row strong {
  color: #fff;
  font-size: 1.1rem;
  font-weight: 700;
}

.wts-fade.wts-animated {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.wts-fade.is-visible {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

.wts a:focus-visible,
.wts .accordion-title:focus-visible,
.wts-cta-banner a:focus-visible {
  outline: 3px solid var(--gp-brand-purple-80, #957fe0);
  outline-offset: 2px;
  border-radius: 4px;
}

.wts .list.ul-list li a,
.wts .accordion-title,
.wts .cta-box .button,
.wts-cta-banner a {
  cursor: pointer;
}

@media (prefers-reduced-motion: reduce) {
  .wts-fade.wts-animated {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
  .wts .accordion-item,
  .wts .accordion-title,
  .wts .accordion-title img,
  .wts-cta-banner a {
    transition: none !important;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .wts-cta-banner { padding: 2rem 1.5rem; }
  .wts-cta-banner__btns { gap: 0.5rem; }
  .wts-cta-banner__btns .btn-primary,
  .wts-cta-banner__btns .btn-ghost { font-size: 0.8125rem; padding: 0.6rem 1.25rem; }
  .wts-trust-row { gap: 1rem; }
  .wts-trust-row span { font-size: 0.75rem; }
  .wts-sb-card .wts-sb__title { font-size: 1.375rem; }
  .wts-sb-card .wts-sb__desc { font-size: 0.9375rem; }
  .wts-sb-card { padding: 1.75rem 1rem 1.5rem; }
}

@media (max-width: 767px) {
  .wts-cta-banner { padding: 1.75rem 1.15rem; }
  .wts-cta-banner__btns { flex-direction: column; }
  .wts-cta-banner__btns .btn-primary,
  .wts-cta-banner__btns .btn-ghost { width: 100%; min-height: 48px; }
  .wts-trust-row { flex-direction: column; gap: 0.5rem; }
  .container._template > #sidebar { display: none !important; }
}

/* ════════════════════════════════════════════════════
   .about-overview-page 体系（about-overview-body）
   ════════════════════════════════════════════════════ */

.about-overview-page {
  --ao-accent: var(--gp-brand-purple, #7b66d7);
  --ao-accent-2: var(--gp-brand-purple-80, #957fe0);
  --ao-border: var(--gp-border-soft, #e2d9f4);
  --ao-border-strong: rgba(123, 102, 215, 0.45);
  --ao-ink: var(--gp-text-1, #1f1b33);
}
.about-overview-page .group.is-style-checkerboard h2.heading {
  color: var(--gp-brand-purple, #7b66d7) !important;
}
.about-overview-page .group.is-style-checkerboard h3.heading {
  color: var(--ao-ink, #1f1b33) !important;
}
.about-overview-page .group.centered { padding: 1.5rem 0; }
.about-overview-page .group.centered:first-of-type { padding-top: 1.15rem; padding-bottom: 2.15rem; }
.about-overview-page .group.centered .heading.align-center { margin-bottom: 0.75rem; }

/* 原内联 font-size: clamp(1.05rem,2vw,1.35rem) — 收口为 --gp-font-heading-kicker */
.about-overview-page h3.heading.about-overview-subheading {
  font-size: var(--gp-font-heading-kicker);
  font-weight: 600;
  line-height: 1.35;
  margin: 0.15rem 0 0.85rem;
}
.about-overview-page h3.heading.about-overview-subheading--by-numbers {
  margin: 0.15rem 0 clamp(1.2rem, 2vw, 1.75rem);
}
.about-overview-page h3.heading.about-overview-subheading--why-gp-slot {
  margin: 0.35rem 0 1rem;
}

.about-overview-page #why-gp-fertility.group.centered {
  padding: 0;
}
/* 隐藏空元素，消除不必要的间距 */
.about-overview-page #why-gp-fertility .about-intro-card > h2.heading:empty,
.about-overview-page #why-gp-fertility .about-intro-card > h3.heading:empty,
.about-overview-page #why-gp-fertility .why-gp-lines:has(> p:empty):has(> p:empty):has(> p:empty):has(> p:empty),
.about-overview-page #why-gp-fertility .why-gp-lines p.paragraph:empty {
  display: none;
}
.about-overview-page #why-gp-fertility .about-intro-card {
  padding: 0 !important;
}
.about-overview-page #why-gp-fertility .about-intro-card > h2.heading {
  font-size: clamp(1.85rem, 3.6vw, 2.45rem) !important;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--gp-brand-purple, #7b66d7) !important;
  margin-bottom: 0.5rem;
  padding-bottom: 0.8rem;
  border-bottom: 1px solid rgba(123, 102, 215, 0.38);
  display: inline-block;
  max-width: 100%;
}
.about-overview-page #why-gp-fertility .about-intro-card > h3.heading {
  margin-top: 0.2rem !important;
  margin-bottom: 1.4rem !important;
  color: var(--gp-text-muted, #5f567b) !important;
}
.about-overview-page #why-gp-fertility .why-gp-lines {
  margin: 0 auto 1.65rem;
  max-width: 38rem;
}
.about-overview-page #why-gp-fertility .why-gp-lines p.paragraph {
  margin: 0.7rem 0;
  font-size: clamp(1.03rem, 1.85vw, 1.13rem);
  line-height: 1.58;
  letter-spacing: 0.035em;
  color: var(--ao-ink, #1f1b33);
}
.about-overview-page #why-gp-fertility .about-intro-card > p.paragraph.align-center {
  font-size: clamp(1.02rem, 1.75vw, 1.1rem);
  letter-spacing: 0.02em;
  margin-bottom: 0.55rem;
}
.about-overview-page #why-gp-fertility .about-intro-card > p.paragraph.align-center:last-child {
  margin-bottom: 0;
}

.about-overview-page .about-intro-card {
  max-width: 52rem;
  margin: 0 auto;
  padding: 0.35rem 1.25rem 0.5rem;
  text-align: center;
}
.about-overview-page .about-intro-logo {
  text-align: center;
  margin: 0.1rem auto 0.6rem;
}
.about-overview-page .about-intro-logo img {
  height: 68px;
  width: auto;
  display: inline-block;
}
.about-overview-page .about-intro-subtitle {
  margin: 0 0 0.52rem;
  font-size: clamp(1.95rem, 4.1vw, 2.85rem) !important;
  line-height: 1.18;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: var(--gp-brand-purple, #7b66d7) !important;
}
.about-overview-page .group.centered .paragraph.align-center {
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 1rem;
  line-height: 1.58;
  color: var(--gp-text-body, #3f3a57);
}
.about-overview-page .group.centered .paragraph.align-center + .paragraph.align-center { margin-top: 0.25rem; }
.about-overview-page .about-overview-cta-band {
  margin-top: 1.35rem;
  margin-bottom: 2.7rem;
}
.about-overview-page .about-overview-cta-band .button {
  display: inline-block;
  padding: 0.86rem 2.45rem !important;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 12px;
  background: var(--gp-brand-purple, #7b66d7) !important;
  border-color: var(--gp-brand-purple, #7b66d7) !important;
  color: #fff !important;
  box-shadow: 0 10px 22px rgba(123, 102, 215, 0.22);
}
.about-overview-page .about-overview-cta-band .button:hover {
  background: var(--gp-primary-active, #5e4ab3) !important;
  border-color: var(--gp-primary-active, #5e4ab3) !important;
}
.about-overview-page .buttons-wrapper .button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 16.5rem;
  white-space: nowrap;
  line-height: 1.15;
}

.about-overview-page .group.is-style-checkerboard { padding: 0; margin: 0; }
.about-overview-page .group.is-style-checkerboard .columns { gap: 0; }
.about-overview-page .group.is-style-checkerboard .text-block {
  padding: 2rem 2.5rem;
}
.about-overview-page .group.is-style-checkerboard .column.text-block {
  display: flex;
  align-items: center;
}
.about-overview-page .group.is-style-checkerboard .text-block .block-list {
  width: min(40rem, 100%);
  margin: 0 auto;
}
.about-overview-page .group.is-style-checkerboard .text-block .heading {
  margin-top: 0;
  margin-bottom: 0.85rem;
}
.about-overview-page .group.is-style-checkerboard .text-block .paragraph {
  margin-bottom: 1rem;
  font-size: 1.02rem;
  line-height: 1.72;
}
.about-overview-page .group.is-style-checkerboard .text-block .paragraph:last-child { margin-bottom: 0; }

/* 淡紫 ↔ 白色交替：更明显的节奏 */
.about-overview-page #who-we-are.is-style-checkerboard .group-inner {
  background: var(--gp-tint-lavender, #f1ecfa) !important;
}
.about-overview-page #what-we-do.is-style-checkerboard .group-inner {
  background: var(--gp-surface-white, #ffffff) !important;
}
.about-overview-page #our-approach.is-style-checkerboard .group-inner {
  background: var(--gp-tint-lavender, #f1ecfa) !important;
}
.about-overview-page #global-network.is-style-checkerboard .group-inner {
  background: var(--gp-surface-white, #ffffff) !important;
}
.about-overview-page #operational-presence.is-style-checkerboard .group-inner {
  background: var(--gp-tint-lavender, #f1ecfa) !important;
}

/* 白底区块文字色恢复默认紫色 */
.about-overview-page #global-network.is-style-checkerboard h2.heading {
  color: var(--gp-brand-purple, #7b66d7) !important;
}
.about-overview-page #global-network.is-style-checkerboard h3.heading {
  color: var(--ao-ink, #1f1b33) !important;
}
.about-overview-page #global-network.is-style-checkerboard .text-block .paragraph,
.about-overview-page #global-network.is-style-checkerboard .text-block li {
  color: var(--gp-text-body, #3f3a57) !important;
}
/* 第 3 段 #our-approach 改回白底，文字回归默认色（去掉之前的粉底文字覆写） */
.about-overview-page #our-approach.is-style-checkerboard h2.heading {
  color: var(--gp-brand-purple, #7b66d7) !important;
}
.about-overview-page #our-approach.is-style-checkerboard h3.heading {
  color: var(--ao-ink, #1f1b33) !important;
}
.about-overview-page #our-approach.is-style-checkerboard .text-block .paragraph,
.about-overview-page #our-approach.is-style-checkerboard .text-block li {
  color: var(--gp-text-body, #3f3a57) !important;
}

.about-overview-page .about-text-tight {
  padding-left: 0;
  max-width: none;
}
.about-overview-page .list.ul-list {
  padding-left: 1.35rem;
  margin: 0.65rem 0 1rem;
}
.about-overview-page .list.ul-list li { margin-bottom: 0.45rem; line-height: 1.6; }
.about-overview-page h1.heading {
  font-size: clamp(2.25rem, 4.4vw, 3.3rem);
  line-height: 1.2;
  margin-bottom: 0.78rem;
}
.about-overview-page h2.heading {
  font-size: clamp(1.2rem, 2.3vw, 1.6rem);
  line-height: 1.3;
}
.about-overview-page h2.heading.about-network-title {
  display: inline-block;
  margin-left: auto;
  margin-right: auto;
  padding-bottom: 0.35rem;
  border-bottom: 3px solid rgba(123, 102, 215, 0.85);
  letter-spacing: 0.04em;
}
.about-overview-page .about-network-section {
  padding-top: clamp(2.5rem, 5vw, 4.25rem) !important;
  padding-bottom: clamp(2.2rem, 4.5vw, 3.8rem) !important;
}
.about-overview-page .about-network-section .about-network-title {
  font-size: clamp(1.95rem, 3.3vw, 2.65rem);
  line-height: 1.15;
  letter-spacing: 0.05em;
  color: var(--ao-accent, #7b66d7);
  border-bottom-width: 1px;
  border-bottom-color: rgba(123, 102, 215, 0.45);
  padding-bottom: 0.55rem;
  margin-bottom: 1.05rem;
}
.about-overview-page .about-network-intro {
  max-width: 44rem;
  margin: 0 auto 0.92rem;
  color: var(--gp-text-body, #3f3a57);
  font-size: 1rem;
  line-height: 1.55;
}
.about-overview-page .about-network-map {
  position: relative;
  max-width: 58.5rem;
  margin: 0.3rem auto 0.92rem;
  padding: 1.02rem 0.78rem 0.62rem;
  border: 1px solid rgba(123, 102, 215, 0.18);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(241, 236, 250, 0.9) 100%);
  box-shadow: 0 10px 22px rgba(123, 102, 215, 0.06);
}
.about-overview-page .about-network-map::before {
  content: "";
  position: absolute;
  inset: 0.4rem 0.6rem 0.3rem;
  border-radius: 14px;
  background:
    radial-gradient(42% 44% at 20% 52%, rgba(123, 102, 215, 0.055) 0%, rgba(123, 102, 215, 0.012) 52%, transparent 75%),
    radial-gradient(38% 38% at 78% 50%, rgba(159, 140, 225, 0.055) 0%, rgba(159, 140, 225, 0.012) 52%, transparent 75%);
  border: 1px solid rgba(255, 255, 255, 0.8);
  opacity: 0.75;
  pointer-events: none;
}
.about-overview-page .about-network-map::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 20%;
  bottom: 14%;
  width: 1px;
  transform: translateX(-0.5px);
  background: linear-gradient(180deg, transparent 0%, rgba(123, 102, 215, 0.12) 18%, rgba(159, 140, 225, 0.18) 50%, rgba(123, 102, 215, 0.12) 82%, transparent 100%);
  opacity: 0.85;
  pointer-events: none;
}
.about-overview-page .about-network-grid::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0.35rem;
  width: 10rem;
  height: calc(100% - 0.7rem);
  transform: translateX(-50%);
  background:
    radial-gradient(circle at left 18%, rgba(123, 102, 215, 0.12) 0 1.8px, transparent 2px),
    radial-gradient(circle at right 32%, rgba(159, 140, 225, 0.12) 0 1.8px, transparent 2px),
    radial-gradient(circle at left 63%, rgba(123, 102, 215, 0.12) 0 1.8px, transparent 2px),
    radial-gradient(circle at right 78%, rgba(159, 140, 225, 0.12) 0 1.8px, transparent 2px);
  opacity: 0.6;
  pointer-events: none;
}
.about-overview-page .about-network-grid {
  position: relative;
  z-index: 1;
  list-style: none;
  padding-left: 0;
  max-width: 54.5rem;
  margin: 0.12rem auto 0.66rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(16rem, 1fr));
  grid-auto-rows: 1fr;
  align-items: stretch;
  gap: 0.8rem 1.06rem;
}
/* 卡片文字：原 #312c48 自创深紫黑收敛为 text-body */
.about-overview-page .about-network-grid li {
  list-style: none;
  margin: 0;
  padding: 0.5rem 0.86rem 0.5rem 0.98rem;
  min-height: 3rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  text-align: left;
  line-height: 1.38;
  color: var(--gp-text-body, #3f3a57);
  background: rgba(255, 255, 255, 0.97);
  border: 1px solid rgba(123, 102, 215, 0.22);
  border-radius: 999px;
  box-shadow: 0 8px 18px rgba(123, 102, 215, 0.06);
}
.about-overview-page .about-network-grid li::before {
  content: "";
  width: 6px;
  height: 6px;
  margin-right: 0.52rem;
  border-radius: 50%;
  background: rgba(159, 140, 225, 0.85);
  flex: 0 0 auto;
}
/* 收尾文字：原 #363150 收敛为 text-body */
.about-overview-page .about-network-outro {
  position: relative;
  z-index: 1;
  margin-top: 0.36rem;
  font-size: 0.96rem;
  color: var(--gp-text-body, #3f3a57);
  line-height: 1.5;
}
.about-overview-page .about-section-title {
  display: inline-block;
  margin: 0 auto 0.9rem;
  padding-bottom: 0.34rem;
  font-size: clamp(1.95rem, 3.2vw, 2.6rem);
  letter-spacing: 0.01em;
  line-height: 1.12;
  color: var(--ao-accent, #7b66d7);
  border-bottom: 1px solid rgba(123, 102, 215, 0.3);
}

/* Begin With Clarity：CTA 大块 */
.about-overview-page #about-begin-clarity.group.centered {
  padding: clamp(2.5rem, 5vw, 4rem) 1rem;
  background: #ffffff;
}
.about-overview-page #about-begin-clarity .about-begin-clarity-banner {
  max-width: 52rem;
  margin: 0 auto;
  padding: clamp(2.15rem, 5.2vw, 3rem) clamp(1.6rem, 4.2vw, 2.85rem);
  background: linear-gradient(165deg, var(--gp-brand-purple, #7b66d7) 0%, var(--gp-primary-hover, #6d57cd) 42%, var(--gp-primary-active, #5e4ab3) 100%);
  border: 1px solid rgba(123, 102, 215, 0.3);
  border-radius: 20px;
  box-shadow: 0 12px 32px rgba(31, 27, 51, 0.22), 0 2px 8px rgba(31, 27, 51, 0.12);
  text-align: center;
}
.about-overview-page #about-begin-clarity .about-begin-clarity-banner > h2.heading {
  font-family: Georgia, "Times New Roman", Times, serif !important;
  font-size: clamp(1.55rem, 3.3vw, 2.1rem) !important;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: #fff !important;
  margin: 0 0 0.95rem !important;
  line-height: 1.22;
  padding-bottom: 0 !important;
  border-bottom: none !important;
}
.about-overview-page #about-begin-clarity .about-begin-clarity-rule {
  width: min(90%, 28rem);
  height: 1px;
  margin: 0 auto 1.35rem;
  background: rgba(255, 255, 255, 0.45);
  border: 0;
}
.about-overview-page #about-begin-clarity .about-begin-clarity-banner .paragraph.align-center {
  color: rgba(255, 255, 255, 0.94) !important;
  margin-bottom: 0.5rem !important;
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
  font-size: clamp(0.98rem, 1.65vw, 1.05rem);
  line-height: 1.62;
  font-weight: 400;
}
.about-overview-page #about-begin-clarity .about-begin-clarity-banner .paragraph.align-center:last-of-type {
  margin-bottom: 0 !important;
}
.about-overview-page #about-begin-clarity .about-begin-clarity-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem 1rem;
  justify-content: center;
  align-items: center;
  margin-top: 1.65rem;
}
.about-overview-page #about-begin-clarity .about-begin-clarity-actions a.button {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  min-width: 0 !important;
  width: auto;
  min-height: 3rem;
  padding: 0.7rem 1.65rem !important;
  border-radius: 12px !important;
  font-size: 0.94rem !important;
  font-weight: 600 !important;
  letter-spacing: 0.03em;
  line-height: 1.35 !important;
  text-decoration: none !important;
  transition: background-color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, color 0.2s ease;
}
.about-overview-page #about-begin-clarity .about-begin-clarity-btn-solid {
  background: var(--gp-brand-purple, #7b66d7) !important;
  border: 1px solid var(--gp-brand-purple, #7b66d7) !important;
  color: #fff !important;
  box-shadow: 0 10px 22px rgba(123, 102, 215, 0.28);
}
.about-overview-page #about-begin-clarity .about-begin-clarity-btn-solid:hover {
  background: var(--gp-primary-active, #5e4ab3) !important;
  border-color: var(--gp-primary-active, #5e4ab3) !important;
  color: #fff !important;
  box-shadow: 0 12px 26px rgba(123, 102, 215, 0.34);
}
.about-overview-page #about-begin-clarity .about-begin-clarity-btn-ghost {
  background: transparent !important;
  color: #fff !important;
  border: 1px solid rgba(255, 255, 255, 0.78) !important;
  box-shadow: none;
}
.about-overview-page #about-begin-clarity .about-begin-clarity-btn-ghost:hover {
  background: rgba(255, 255, 255, 0.08) !important;
  border-color: rgba(255, 255, 255, 0.95) !important;
  color: #fff !important;
}
@media (max-width: 520px) {
  .about-overview-page #about-begin-clarity .about-begin-clarity-actions {
    flex-direction: column;
    width: 100%;
  }
  .about-overview-page #about-begin-clarity .about-begin-clarity-actions a.button {
    width: 100%;
    max-width: 18rem;
  }
}
.about-overview-page .about-kicker {
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gp-text-muted, #5f567b);
  margin-bottom: 0.35rem;
}
.about-overview-page section[id] { scroll-margin-top: calc(var(--gp-fixed-chrome-bottom, 88px) + 14px); }
.about-overview-page .media.linkable-icon,
.about-overview-page .media.linkable-icon *,
.about-overview-page .media.linkable-icon img,
.about-overview-page .media.linkable-icon a {
  animation: none !important;
  transition: none !important;
  transform: none !important;
  opacity: 1 !important;
}

/* By the Numbers：严格对齐首页 #homepage .section-home-outcomes（gp-fertility-theme.css 行 2356-2553）
   - 浅紫底 + 主紫色标题/大数字
   - 上下紫色细分隔线、卡片内上下渐隐线
   - 页脚 footnote 用 text-muted */
.about-overview-page #by-the-numbers.section-home-outcomes {
  background: #ffffff;
  color: var(--gp-text-body);
}
.about-overview-page #by-the-numbers.section-home-outcomes .group-inner {
  padding: clamp(3.5rem, 6.8vw, 5.25rem) 1.25rem;
}
.about-overview-page #by-the-numbers.section-home-outcomes h2.heading {
  margin: 0 0 clamp(1.8rem, 3vw, 2.5rem) !important;
  color: var(--gp-primary-active, #5e4ab3) !important;
  font-size: clamp(2rem, 3.8vw, 3rem) !important;
  letter-spacing: -0.015em;
}
.about-overview-page #by-the-numbers.section-home-outcomes h3.heading.by-numbers-sub {
  color: var(--gp-text-body) !important;
}
.about-overview-page #by-the-numbers.section-home-outcomes .columns {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1rem, 2.2vw, 1.8rem);
  border-top: 1px solid rgba(123, 102, 215, 0.22);
  border-bottom: 1px solid rgba(123, 102, 215, 0.16);
  padding: clamp(1.2rem, 2.2vw, 1.8rem) 0;
}
.about-overview-page #by-the-numbers.section-home-outcomes .columns > .column .block-list {
  position: relative;
  padding: clamp(0.95rem, 1.8vw, 1.35rem) 0.25rem;
}
.about-overview-page #by-the-numbers.section-home-outcomes .columns > .column .block-list::before,
.about-overview-page #by-the-numbers.section-home-outcomes .columns > .column .block-list::after {
  content: "";
  display: block;
  width: min(8.5rem, 62%);
  height: 1px;
  background: rgba(123, 102, 215, 0.28);
  margin-left: auto;
  margin-right: auto;
}
.about-overview-page #by-the-numbers.section-home-outcomes .columns > .column .block-list::before {
  margin-bottom: clamp(0.85rem, 1.6vw, 1.1rem);
}
.about-overview-page #by-the-numbers.section-home-outcomes .columns > .column .block-list::after {
  margin-top: clamp(0.85rem, 1.6vw, 1.1rem);
}
.about-overview-page #by-the-numbers.section-home-outcomes h3.heading:not(.by-numbers-sub) {
  margin: 0 0 0.5rem !important;
  font-size: clamp(2.6rem, 5.8vw, 4.5rem) !important;
  line-height: 0.95 !important;
  color: var(--gp-primary-active, #5e4ab3) !important;
  font-weight: 700 !important;
  letter-spacing: -0.03em;
}
.about-overview-page #by-the-numbers.section-home-outcomes .paragraph {
  color: var(--gp-text-body) !important;
}
.about-overview-page #by-the-numbers.section-home-outcomes .columns .paragraph {
  margin: 0 !important;
  font-size: clamp(0.95rem, 1.25vw, 1.08rem) !important;
  line-height: 1.5 !important;
}
.about-overview-page #by-the-numbers.section-home-outcomes .home-outcomes-footnote {
  margin: clamp(1.6rem, 3vw, 2.3rem) auto 0 !important;
  max-width: 50rem;
  font-size: clamp(1rem, 1.5vw, 1.2rem) !important;
  line-height: 1.65 !important;
  color: var(--gp-text-muted) !important;
}
@media (max-width: 900px) {
  .about-overview-page #by-the-numbers.section-home-outcomes .columns {
    grid-template-columns: 1fr;
    gap: 0;
    padding: 0;
    border-bottom: 0;
  }
  .about-overview-page #by-the-numbers.section-home-outcomes .columns > .column {
    border-bottom: 1px solid rgba(123, 102, 215, 0.16);
  }
  .about-overview-page #by-the-numbers.section-home-outcomes .columns > .column:last-child {
    border-bottom: 0;
  }
}

.about-overview-page .about-numbers-label {
  margin: 0.64rem auto 0;
  max-width: 13.5rem;
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1.3;
  color: var(--gp-text-body, #3f3a57);
}
.about-overview-page .about-clarity-body {
  max-width: 38rem;
  margin-left: auto;
  margin-right: auto;
  color: var(--gp-text-body, #3f3a57);
}
.about-overview-page .about-clarity-body {
  margin-top: 0.15rem;
}
#hero.about-overview-hero {
  display: block;
}
#hero.practice-hero.about-overview-hero > .hero {
  background-position: center center !important;
}
@media (max-width: 767px) {
  .about-overview-page .group.is-style-checkerboard .column.text-block {
    display: block;
  }
  .about-overview-page .group.is-style-checkerboard .text-block {
    padding: 1.5rem 1.2rem;
  }
  .about-overview-page .group.is-style-checkerboard .text-block .paragraph {
    font-size: 0.96rem;
  }
  #hero.practice-hero.about-overview-hero > .hero {
    height: clamp(110px, 36vw, 180px) !important;
    min-height: 110px !important;
    background-position: center top !important;
  }
  .about-overview-page .about-intro-card {
    max-width: 100%;
    padding: 0.2rem 0.65rem 0.2rem;
  }
  .about-overview-page .about-intro-logo img {
    height: 50px;
  }
  .about-overview-page .about-intro-subtitle {
    margin-bottom: 0.35rem;
    font-size: clamp(1.45rem, 6.7vw, 2rem) !important;
  }
  .about-overview-page .about-network-section {
    padding-top: 1.65rem !important;
    padding-bottom: 1.85rem !important;
  }
  .about-overview-page .about-network-section .about-network-title {
    font-size: clamp(1.5rem, 7.4vw, 2rem);
    letter-spacing: 0.06em;
  }
  .about-overview-page .about-section-title {
    font-size: clamp(1.42rem, 6.9vw, 1.9rem);
    margin-bottom: 0.68rem;
    padding-bottom: 0.3rem;
  }
  .about-overview-page .about-network-grid {
    grid-template-columns: 1fr;
    gap: 0.56rem;
    margin-bottom: 0.75rem;
  }
  .about-overview-page .about-network-grid::before {
    display: none;
  }
  .about-overview-page .about-network-map {
    margin-top: 0.25rem;
    padding: 0.82rem 0.5rem 0.35rem;
  }
  .about-overview-page .about-network-map::before {
    border-radius: 14px;
  }
  .about-overview-page .about-network-map::after {
    display: none;
  }
  .about-overview-page .about-network-grid li {
    min-height: 2.6rem;
    padding: 0.5rem 0.68rem 0.5rem 0.9rem;
    border-radius: .625rem;
    transform: none !important;
  }
  .about-overview-page .buttons-wrapper .button {
    min-width: 13.5rem;
    font-size: 0.95rem;
  }
  .about-overview-page .about-numbers-label {
    margin-top: 0.46rem;
    max-width: 260px;
    font-size: 0.86rem;
    line-height: 1.3;
  }
}

/* ════════════════════════════════════════════════════
   .why-gp 模块（原嵌在 about-overview-body 末尾的 P 标签内）
   重设计：淡紫通栏底 + 居中标题（带紫粉渐变下划线）+ 白色卡片网格（✓ 徽章）+ 引言（双侧渐隐线）
   ════════════════════════════════════════════════════ */

.why-gp {
  /* 通栏：元素自身 100vw，突破任意父容器（box-sizing 含内边距） */
  position: relative;
  width: 100vw;
  left: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  margin-top: 0;
  margin-bottom: 0;
  padding: clamp(2.5rem, 5vw, 4rem) clamp(1.25rem, 4vw, 3rem);
  background: var(--gp-tint-lavender, #f1ecfa);
  border: none;
  box-sizing: border-box;
  text-align: center;
}
/* 内部内容更宽 + 强制居中（覆盖父级 .paragraph.align-center 等可能的继承） */
.why-gp > h2,
.why-gp h2 {
  max-width: 80rem !important;
  margin: 0 auto 0.6rem auto !important;
  text-align: center !important;
}
.why-gp .why-list {
  max-width: 80rem !important;
  margin: clamp(2rem, 3.5vw, 2.75rem) auto !important;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 14rem), 1fr)) !important;
}
.why-gp .why-quote {
  max-width: 50rem !important;
  margin: 0 auto !important;
  text-align: center !important;
}
/* 内部元素居中对齐 */
.why-gp h2 {
  text-align: center;
  font-size: clamp(1.6rem, 3vw, 2.25rem);
  font-weight: 700;
  margin: 0 0 0.6rem;
  color: var(--gp-primary-active, #5e4ab3);
  letter-spacing: -0.01em;
  line-height: 1.25;
}
.why-gp h2::after {
  content: "";
  display: block;
  width: 3.5rem;
  height: 3px;
  margin: 0.85rem auto 0;
  background: linear-gradient(90deg, var(--gp-brand-purple, #7b66d7), var(--gp-brand-pink, #dfa5da));
  border-radius: 999px;
}
.why-gp .why-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 16.5rem), 1fr));
  gap: clamp(0.85rem, 2vw, 1.25rem);
  margin: clamp(2rem, 3.5vw, 2.75rem) auto;
  max-width: 60rem;
}
.why-gp .why-item {
  position: relative;
  background: #ffffff;
  padding: 1.15rem 1.25rem 1.15rem 3rem;
  border-radius: 0.85rem;
  font-weight: 500;
  font-size: 0.985rem;
  line-height: 1.55;
  color: var(--gp-text-1, #1f1b33);
  box-shadow: 0 4px 16px rgba(94, 74, 179, 0.08);
  border: 1px solid rgba(123, 102, 215, 0.1);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.why-gp .why-item::before {
  content: "✓";
  position: absolute;
  top: 1.1rem;
  left: 1.1rem;
  width: 1.45rem;
  height: 1.45rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gp-brand-purple, #7b66d7), var(--gp-primary-active, #5e4ab3));
  color: #ffffff;
  font-size: 0.85rem;
  font-weight: 700;
  line-height: 1;
  box-shadow: 0 2px 6px rgba(94, 74, 179, 0.25);
}
@media (hover: hover) and (pointer: fine) {
  .why-gp .why-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(94, 74, 179, 0.16);
    border-color: rgba(123, 102, 215, 0.28);
  }
}
.why-gp .why-quote {
  position: relative;
  margin: 0 auto;
  max-width: 40rem;
  padding: 0 1.5rem;
  font-style: italic;
  font-size: clamp(1.05rem, 1.6vw, 1.2rem);
  line-height: 1.55;
  text-align: center;
  color: var(--gp-primary-active, #5e4ab3);
  border-left: none !important;
}
.why-gp .why-quote::before,
.why-gp .why-quote::after {
  content: "";
  display: block;
  width: 2.5rem;
  height: 1px;
  margin: 0.95rem auto;
  background: linear-gradient(90deg, transparent, rgba(123, 102, 215, 0.5), transparent);
}
@media (max-width: 768px) {
  .why-gp { padding: 2rem 1.25rem; }
  .why-gp h2 { font-size: 1.5rem; }
  .why-gp .why-list { grid-template-columns: 1fr; }
  .why-gp .why-item { padding-left: 2.85rem; }
  .why-gp .why-quote { font-size: 1rem; padding: 0 0.75rem; }
}
