/* 源自 src/index.css + App.tsx 设计令牌 */
:root {
  --font-sans: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --color-primary: #0891b2;
  --color-hover: #0e7490;
  --color-secondary: #164e63;
  --color-accent: #f8fafc;
  --color-text-main: #0f172a;
  --color-text-muted: #64748b;
  --max-w: 80rem;
  --ring: rgba(8, 145, 178, 0.35);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--color-text-main);
  background: var(--color-accent);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

::selection {
  background: #cffafe;
  color: #164e63;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
}

button {
  font-family: inherit;
  cursor: pointer;
}

.flex-center {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}

.bg-grid-layer {
  position: absolute;
  inset: 0;
  opacity: 0.03;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32' width='32' height='32' fill='none' stroke='rgb(0 0 0 / 0.06)'%3E%3Cpath d='M0 .5H31.5V32'/%3E%3C/svg%3E");
  filter: invert(1);
}

.container {
  max-width: var(--max-w);
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

@media (min-width: 640px) {
  .container {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .container {
    padding-left: 3rem;
    padding-right: 3rem;
  }
}

/* TopBar */
.topbar {
  background: var(--color-secondary);
  color: #fff;
  padding: 0.5rem 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.75rem;
  letter-spacing: 0.06em;
}

@media (min-width: 640px) {
  .topbar {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .topbar {
    padding-left: 3rem;
    padding-right: 3rem;
  }
}

.topbar__left {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

.topbar__right {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.vis-sm {
  display: none;
}

@media (min-width: 640px) {
  .vis-sm {
    display: inline;
  }
}

.icon-inline {
  display: inline-flex;
  vertical-align: middle;
  flex-shrink: 0;
}

.topbar-bold {
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}

.topbar__mobile-only {
  display: none;
}

@media (max-width: 639px) {
  .topbar {
    justify-content: center;
    padding: 0.45rem 0.75rem;
    font-size: 0.6875rem;
    letter-spacing: 0.08em;
  }

  .topbar__mobile-only {
    display: block;
    width: 100%;
    text-align: center;
    opacity: 0.95;
  }

  .topbar__left,
  .topbar__right {
    display: none;
  }
}

/* Navbar */
.navbar {
  width: 100%;
  z-index: 50;
  background: #fff;
  transition: padding 0.3s ease, box-shadow 0.3s ease, top 0.3s ease;
}

.navbar.navbar--border {
  border-bottom: 1px solid #f1f5f9;
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.navbar.navbar--fixed {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  box-shadow: 0 1px 3px rgb(15 23 42 / 0.08);
}

.navbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: nowrap;
  min-height: 4rem;
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  min-width: 0;
}

.brand-logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border-radius: 0;
}

.brand-logo--fallback {
  width: 2.5rem;
  height: 2.5rem;
  background: var(--color-primary);
  border-radius: 9999px;
}

.brand-logo-img {
  width: auto;
  height: 2.5rem;
  max-width: 9rem;
  object-fit: contain;
  display: block;
  border-radius: 0;
}

.brand-logo-img--mobile {
  display: none;
}

.brand-logo-img--pc {
  display: block;
}

.brand-text {
  min-width: 0;
}

.brand-head {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 0;
}

.brand-logo-inner {
  width: 1.25rem;
  height: 1.25rem;
  border: 2px solid #fff;
  border-radius: 4px;
  transform: rotate(45deg);
}

.brand-link {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.125rem;
  text-decoration: none;
  color: inherit;
  flex-shrink: 0;
  min-width: 0;
}

.brand-site-name {
  margin: 0;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--color-text-main);
  line-height: 1.2;
  white-space: nowrap;
}

.brand-tagline {
  margin: 0;
  font-size: 0.6875rem;
  letter-spacing: 0.06em;
  color: var(--color-text-muted);
  line-height: 1.35;
  text-align: center;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: 100%;
}

.nav-desktop {
  display: none;
}

@media (min-width: 768px) {
  .nav-desktop {
    display: block;
    min-width: 0;
    flex: 1 1 auto;
  }

  .nav-desktop-inner {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-wrap: nowrap;
    white-space: nowrap;
    gap: 1.25rem;
    margin-left: 1.5rem;
  }

  .nav-link {
    padding: 0.5rem 0.625rem;
    font-size: 16px;
    font-weight: 500;
    color: var(--color-text-muted);
    text-decoration: none;
    white-space: nowrap;
    flex-shrink: 0;
    transition: color 0.2s;
  }

  .nav-link:hover {
    color: var(--color-primary);
  }

  .nav-link.is-active {
    color: var(--color-primary);
    font-weight: 600;
  }

  .nav-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--color-primary);
    color: #fff;
    padding: 0.5rem 1.25rem;
    border-radius: 9999px;
    font-size: 16px;
    font-weight: 600;
    white-space: nowrap;
    flex-shrink: 0;
    border: none;
    box-shadow: 0 10px 25px -5px rgb(207 250 254 / 0.9);
    transition: background 0.2s;
    text-decoration: none;
  }

  .nav-cta:hover {
    background: var(--color-hover);
    color: #fff;
  }
}

.nav-mobile-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  padding: 0.25rem;
  color: var(--color-text-main);
}

@media (min-width: 768px) {
  .nav-mobile-toggle {
    display: none;
  }
}

@media (max-width: 767px) {
  .navbar.navbar--border {
    padding-top: 0.625rem;
    padding-bottom: 0.625rem;
    position: sticky;
    top: 0;
    z-index: 60;
    background: rgb(255 255 255 / 0.96);
    backdrop-filter: blur(8px);
  }

  .navbar-inner {
    min-height: 3.25rem;
    gap: 0.75rem;
  }

  .brand-link {
    min-width: 0;
    flex: 1;
    align-items: stretch;
  }

  .brand-head {
    min-width: 0;
  }

  .brand-site-name {
    font-size: 1.0625rem;
    line-height: 1.25;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    max-width: min(100%, 14rem);
  }

  .brand-tagline {
    display: block;
    font-size: 0.625rem;
    text-align: center;
    max-width: 100%;
  }

  .brand-logo-img--pc {
    display: none;
  }

  .brand-logo-img--mobile {
    display: block;
    height: 2.125rem;
    max-width: 7.5rem;
  }

  .brand-logo--fallback {
    width: 2.25rem;
    height: 2.25rem;
  }

  .brand-logo {
    flex-shrink: 0;
  }

  .nav-mobile-toggle {
    flex-shrink: 0;
    width: 2.625rem;
    height: 2.625rem;
    border: 1px solid #e2e8f0;
    border-radius: 0.625rem;
    background: #f8fafc;
    color: var(--color-primary);
  }

  .mobile-panel .container {
    padding-top: 0.25rem;
    padding-bottom: 0.5rem;
  }

  .mobile-panel a {
    display: block;
    padding: 0.875rem 0.25rem;
    font-size: 0.9375rem;
    font-weight: 500;
    border-bottom: 1px solid #f1f5f9;
    text-align: center;
  }

  .mobile-panel a:last-child {
    border-bottom: none;
  }
}

.mobile-panel {
  display: none;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 12px 24px rgb(15 23 42 / 0.08);
}

.mobile-panel.is-open {
  display: block;
  animation: mobileOpen 0.25s ease forwards;
}

@keyframes mobileOpen {
  from {
    opacity: 0;
    max-height: 0;
  }
  to {
    opacity: 1;
    max-height: 480px;
  }
}

.mobile-panel a {
  display: block;
  padding: 1rem 0.75rem;
  font-size: 1rem;
  font-weight: 500;
  color: var(--color-text-main);
  text-decoration: none;
  border-bottom: 1px solid #f3f4f6;
}

.mobile-panel a:hover {
  color: var(--color-primary);
}

.visually-hidden-mobile {
  display: none !important;
}

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

@media (max-width: 767px) {
  .icon-menu-open.visually-hidden-mobile,
  .icon-menu-close.visually-hidden-mobile {
    display: none !important;
  }
}

/* Hero — 固定高度，内部间距与字号按区块统一 */
.hero {
  --hero-height: clamp(520px, 58vh, 720px);
  position: relative;
  height: var(--hero-height);
  min-height: var(--hero-height);
  overflow: hidden;
  background: #0f172a;
}

.hero-bg-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero-gradient {
  position: absolute;
  inset: 0;
  z-index: 10;
  pointer-events: none;
  background: linear-gradient(
    90deg,
    rgb(248 250 252 / 0.98) 0%,
    rgb(248 250 252 / 0.88) 32%,
    rgb(248 250 252 / 0.42) 52%,
    rgb(248 250 252 / 0.08) 68%,
    transparent 82%
  );
  display: none;
}

@media (min-width: 768px) {
  .hero-gradient {
    display: block;
  }
}

.hero-gradient-mobile {
  position: absolute;
  inset: 0;
  z-index: 10;
  pointer-events: none;
  background: linear-gradient(
    180deg,
    rgb(248 250 252 / 0.92) 0%,
    rgb(248 250 252 / 0.55) 42%,
    rgb(248 250 252 / 0.12) 68%,
    transparent 88%
  );
}

@media (min-width: 768px) {
  .hero-gradient-mobile {
    display: none;
  }
}

.hero-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: translateZ(0);
  backface-visibility: hidden;
}

.hero-bg-layer {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s ease;
  will-change: opacity;
}

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

@media (min-width: 768px) {
  .hero-bg {
    object-position: 72% center;
  }
}

.hero-content-wrap {
  position: relative;
  z-index: 20;
  height: var(--hero-height);
  min-height: var(--hero-height);
  box-sizing: border-box;
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  align-content: center;
  padding-top: 1.5rem;
  /* 为底部绝对定位的轮播控件留出空间 */
  padding-bottom: 6.25rem;
}

@media (min-width: 768px) {
  .hero-content-wrap {
    grid-template-columns: repeat(12, 1fr);
  }

  .hero-col {
    grid-column: span 8;
  }

  @media (min-width: 1024px) {
    .hero-col {
      grid-column: span 7;
    }
  }
}

.hero-inner {
  transition: opacity 0.45s ease, transform 0.45s ease;
}

.hero-inner.is-out {
  opacity: 0;
  transform: translateY(-14px);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0.95rem;
  background: #ecfeff;
  color: var(--color-primary);
  border-radius: 9999px;
  font-size: 0.8125rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
  border: 1px solid rgb(8 145 178 / 0.12);
}

.pulse-dot-wrap {
  position: relative;
  display: inline-flex;
  width: 0.5rem;
  height: 0.5rem;
}

.pulse-ring {
  position: absolute;
  inset: 0;
  border-radius: 9999px;
  background: rgb(34 211 238);
  opacity: 0.75;
  animation: ping 1.8s cubic-bezier(0, 0, 0.2, 1) infinite;
}

.pulse-core {
  position: relative;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 9999px;
  background: rgb(6 182 212);
}

@keyframes ping {
  75%,
  100% {
    transform: scale(2);
    opacity: 0;
  }
}

.hero-title {
  font-size: clamp(1.75rem, 4vw, 3.125rem);
  font-weight: 300;
  line-height: 1.12;
  color: var(--color-text-main);
  margin: 0 0 1.125rem;
}

@media (min-width: 640px) {
  .hero-title {
    margin-bottom: 1.25rem;
  }
}

.hero-title strong {
  font-weight: 700;
  color: var(--color-primary);
}

.hero-desc {
  font-size: 1.0625rem;
  color: var(--color-text-muted);
  line-height: 1.6;
  max-width: 36rem;
  margin: 0 0 1.5rem;
}

@media (min-width: 640px) {
  .hero-desc {
    font-size: 1.125rem;
    margin-bottom: 1.625rem;
  }
}

.hero-stats {
  display: flex;
  gap: 1.75rem;
  margin-bottom: 1.75rem;
  overflow-x: auto;
  padding-bottom: 0.35rem;
  scrollbar-width: none;
}

@media (min-width: 640px) {
  .hero-stats {
    gap: 2.5rem;
    margin-bottom: 2rem;
  }
}

.hero-stats::-webkit-scrollbar {
  display: none;
}

.hero-stat-val {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--color-text-main);
}

@media (min-width: 640px) {
  .hero-stat-val {
    font-size: 1.9375rem;
  }
}

.hero-stat-lab {
  font-size: 0.75rem;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 0.25rem;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

@media (min-width: 640px) {
  .hero-actions {
    flex-direction: row;
    gap: 0.875rem;
  }
}

.hero .btn-primary-lg,
.hero .btn-outline-lg {
  padding: 0.875rem 1.75rem;
  font-size: 1.0625rem;
  border-radius: 9999px;
}

@media (min-width: 640px) {
  .hero .btn-primary-lg,
  .hero .btn-outline-lg {
    padding: 0.9375rem 1.875rem;
    font-size: 1.125rem;
  }
}

.btn-primary-lg {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: var(--color-primary);
  color: #fff;
  padding: 1rem 2rem;
  border-radius: 9999px;
  font-size: 1.125rem;
  font-weight: 700;
  border: none;
  box-shadow: 0 20px 35px -10px rgb(207 250 254 / 1);
  transition: background 0.2s, transform 0.2s;
}

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

.btn-primary-lg .icon-arrow {
  transition: transform 0.2s;
}

.btn-primary-lg:hover .icon-arrow {
  transform: translateX(4px);
}

.btn-outline-lg {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border: 2px solid #f1f5f9;
  color: var(--color-text-main);
  padding: 1rem 2rem;
  border-radius: 9999px;
  font-size: 1.125rem;
  font-weight: 700;
  transition: background 0.2s;
}

.btn-outline-lg:hover {
  background: #f8fafc;
}

.hero-controls {
  position: absolute;
  bottom: 1.75rem;
  right: 1rem;
  z-index: 30;
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

@media (min-width: 640px) {
  .hero-controls {
    right: 3rem;
    bottom: 2rem;
  }
}

.hero-dots {
  display: flex;
  gap: 0.5rem;
}

.hero-dot {
  height: 0.375rem;
  border-radius: 9999px;
  border: none;
  padding: 0;
  background: #cbd5e1;
  width: 0.5rem;
  transition: width 0.3s, background 0.3s;
}

.hero-dot.is-active {
  width: 2rem;
  background: var(--color-primary);
}

.hero-nav-btns {
  display: flex;
  gap: 0.5rem;
}

.hero-nav-btn {
  padding: 0.75rem;
  border-radius: 9999px;
  border: none;
  background: rgb(255 255 255 / 0.85);
  backdrop-filter: blur(8px);
  color: var(--color-text-muted);
  box-shadow: 0 1px 4px rgb(15 23 42 / 0.06);
  transition: background 0.2s, color 0.2s;
}

.hero-nav-btn:hover {
  background: var(--color-primary);
  color: #fff;
}

/* Sections common */
.section {
  padding: 6rem 0;
}

.section--white {
  background: #fff;
}

.section--muted {
  background: var(--color-accent);
  position: relative;
  overflow: hidden;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.pill {
  display: inline-block;
  padding: 0.25rem 0.65rem;
  background: #ecfeff;
  color: var(--color-primary);
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.section-title {
  margin: 0 0 1rem;
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--color-text-main);
}

@media (min-width: 640px) {
  .section-title {
    font-size: 2.25rem;
  }
}

.rule {
  width: 5rem;
  height: 4px;
  background: var(--color-primary);
  margin: 0 auto;
}

.section-lede {
  margin: 1rem auto 0;
  font-size: 1.125rem;
  color: var(--color-text-muted);
  max-width: 42rem;
}

/* About */
.about-grid {
  display: grid;
  gap: 4rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .about-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.about-visual {
  position: relative;
}

.about-img-frame {
  aspect-ratio: 1;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgb(8 145 178 / 0.18);
  position: relative;
}

.about-img-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-img-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgb(8 145 178 / 0.2), transparent);
  pointer-events: none;
}

.about-img-frame--map::after {
  display: none;
}

.about-map {
  width: 100%;
  height: 100%;
  min-height: 260px;
}

.about-map--static img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.footer-brand-mini img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  border-radius: inherit;
}

.qr-box img,
.footer-qr img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.video-frame--link {
  display: block;
  position: relative;
  overflow: hidden;
  border-radius: inherit;
}

.video-frame--link img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about-map .mapboxgl-canvas {
  outline: none;
}

/* About 地图：自定义标记（文字在圆点上方） */
.about-marker-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  pointer-events: none;
}

.about-marker-label {
  margin-bottom: 0.4rem;
  padding: 0.45rem 0.75rem;
  background: #fff;
  color: var(--color-text-main);
  font-size: 0.8125rem;
  font-weight: 700;
  line-height: 1.35;
  text-align: center;
  white-space: nowrap;
  border-radius: 0.5rem;
  border: 1px solid #e2e8f0;
  box-shadow: 0 6px 18px rgb(15 23 42 / 0.12);
}

@media (min-width: 640px) {
  .about-marker-label {
    font-size: 0.875rem;
    padding: 0.5rem 0.9rem;
  }
}

.about-marker-pin {
  width: 1.375rem;
  height: 1.375rem;
  border-radius: 9999px;
  background: var(--color-primary);
  border: 3px solid #fff;
  box-shadow: 0 2px 10px rgb(8 145 178 / 0.45);
}

.about-float-card {
  display: none;
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  width: 16rem;
  padding: 2rem;
  background: var(--color-primary);
  color: #fff;
  border-radius: 1rem;
  box-shadow: 0 20px 40px rgb(8 145 178 / 0.35);
}

@media (min-width: 768px) {
  .about-float-card {
    display: block;
  }
}

.about-float-num {
  font-size: 2.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.about-float-cap {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  opacity: 0.92;
}

.about-copy h2 {
  margin: 0 0 1.5rem;
  font-size: 1.875rem;
  font-weight: 700;
  line-height: 1.25;
}

@media (min-width: 640px) {
  .about-copy h2 {
    font-size: 2.25rem;
  }
}

.about-copy .accent-text {
  color: var(--color-primary);
}

.about-copy p {
  font-size: 1.125rem;
  line-height: 1.65;
  color: var(--color-text-muted);
  margin: 0 0 1rem;
}

.about-copy .italic {
  font-style: italic;
  margin-bottom: 2rem;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.af-item {
  display: flex;
  align-items: center;
}

.af-icon {
  width: 2.5rem;
  height: 2.5rem;
  background: #ecfeff;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1rem;
  flex-shrink: 0;
}

.af-title {
  margin: 0;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--color-text-main);
}

.af-sub {
  margin: 0.15rem 0 0;
  font-size: 0.75rem;
  color: var(--color-text-muted);
}

/* Services */
.services-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 768px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.service-card {
  background: #fff;
  padding: 2rem;
  border-radius: 1.5rem;
  border: 1px solid #f1f5f9;
  box-shadow: 0 1px 3px rgb(15 23 42 / 0.04);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  overflow: hidden;
}

.service-card--has-media {
  padding: 0;
}

.service-card--has-media .service-card-media {
  display: block;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background: #f1f5f9;
}

.service-card--has-media .service-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.service-card--has-media:hover .service-card-media img {
  transform: scale(1.04);
}

.service-card--has-media h3,
.service-card--has-media .service-card-sub,
.service-card--has-media p,
.service-card--has-media .service-more {
  margin-left: 2rem;
  margin-right: 2rem;
}

.service-card--has-media h3 {
  margin-top: 1.5rem;
}

.service-card--has-media .service-more {
  margin-bottom: 2rem;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 22px 40px rgb(15 23 42 / 0.1);
}

.service-icon {
  width: 3rem;
  height: 3rem;
  background: #ecfeff;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  margin-bottom: 1.5rem;
}

.service-card h3 {
  margin: 0 0 0.75rem;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-text-main);
}

.service-card p {
  margin: 0 0 1.5rem;
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--color-text-muted);
}

.service-card-sub {
  margin: -0.35rem 0 0.75rem;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--color-primary);
  letter-spacing: 0.02em;
}

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

.service-card h3 a:hover {
  color: var(--color-primary);
}

.service-detail-page .team-detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-top: 2.5rem;
}

.service-more {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-primary);
  text-decoration: none;
}

.service-more:hover {
  text-decoration: underline;
}

/* 服务栏目列表页：卡片等高、文本区对齐 */
.services-cms-page .services-cms-section {
  padding-bottom: 4.5rem;
}

@media (min-width: 1024px) {
  .services-cms-page .services-cms-section {
    padding-bottom: 5.5rem;
  }
}

.services-cms-page .services-cms-grid {
  align-items: stretch;
}

.services-cms-page .service-card--cms {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 0;
}

.services-cms-page .service-card--cms .service-card-media {
  display: block;
  flex-shrink: 0;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background: #f1f5f9;
}

.services-cms-page .service-card--cms .service-card-media--icon {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(165deg, #ecfeff 0%, #f8fafc 100%);
}

.services-cms-page .service-card--cms .service-card-media--icon .service-icon {
  margin-bottom: 0;
}

.services-cms-page .service-card--cms .service-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.services-cms-page .service-card--cms:hover .service-card-media img {
  transform: scale(1.04);
}

.services-cms-page .service-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 1.5rem 1.75rem 2rem;
  min-height: 0;
}

.services-cms-page .service-card-title {
  margin: 0 0 0.5rem;
  min-height: 3.125rem;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.4;
  color: var(--color-text-main);
}

.services-cms-page .service-card-title a {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  color: inherit;
  text-decoration: none;
}

.services-cms-page .service-card-title a:hover {
  color: var(--color-primary);
}

.services-cms-page .service-card-sub {
  flex-shrink: 0;
  margin: 0 0 0.75rem;
  min-height: 1.125rem;
  font-size: 0.8125rem;
  font-weight: 500;
  line-height: 1.125rem;
  color: var(--color-primary);
  letter-spacing: 0.02em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.services-cms-page .service-card-excerpt {
  flex: 1;
  margin: 0;
  min-height: 5.6rem;
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--color-text-muted);
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  overflow: hidden;
}

.services-cms-page .service-card--cms .service-more {
  flex-shrink: 0;
  margin: 1.25rem 0 0;
  padding-top: 0.25rem;
}

/* Success */
.section--success {
  position: relative;
  overflow: hidden;
  background: linear-gradient(165deg, #f0fdfa 0%, #f8fafc 42%, #ecfeff 100%);
}

.success-bg-glow {
  position: absolute;
  inset: -20% -10% auto auto;
  width: min(520px, 70vw);
  height: min(520px, 70vw);
  background: radial-gradient(circle, rgb(8 145 178 / 0.18) 0%, transparent 68%);
  pointer-events: none;
  z-index: 0;
}

.success-flex {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  align-items: stretch;
  position: relative;
  z-index: 2;
}

@media (min-width: 1024px) {
  .success-flex {
    flex-direction: row;
    align-items: center;
    gap: 3.5rem;
  }

  .success-col {
    flex: 1;
    min-width: 0;
  }

  .success-col--video {
    flex: 0 1 44%;
    max-width: 520px;
  }
}

.success-col h2 {
  margin: 0 0 1.25rem;
  font-size: 1.875rem;
  font-weight: 700;
  line-height: 1.2;
}

@media (min-width: 640px) {
  .success-col h2 {
    font-size: 2.75rem;
  }
}

.success-col .lede {
  font-size: 1.0625rem;
  color: var(--color-text-muted);
  line-height: 1.7;
  margin: 0 0 1.75rem;
}

.pill--light {
  background: rgb(255 255 255 / 0.85);
  border: 1px solid rgb(8 145 178 / 0.12);
}

.stats-grid--cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.875rem;
}

.stat-card {
  background: rgb(255 255 255 / 0.92);
  border: 1px solid rgb(8 145 178 / 0.1);
  border-radius: 1rem;
  padding: 1rem 1.1rem;
  box-shadow: 0 4px 14px rgb(15 23 42 / 0.04);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.stat-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgb(8 145 178 / 0.1);
}

.stat-card .stat-val {
  font-size: 1.625rem;
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1.1;
}

.stat-card .stat-lab {
  font-size: 0.6875rem;
  color: var(--color-text-muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 0.35rem;
}

.success-badges {
  margin-top: 1.75rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.success-video-panel {
  background: linear-gradient(145deg, #fff 0%, #f0fdfa 100%);
  border: 1px solid rgb(8 145 178 / 0.14);
  border-radius: 1.5rem;
  padding: 1rem;
  box-shadow: 0 20px 40px rgb(8 145 178 / 0.12);
}

.success-video-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0 0 0.75rem 0.25rem;
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--color-primary);
  letter-spacing: 0.04em;
}

.mini-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 1rem;
  background: #fff;
  border-radius: 9999px;
  border: 1px solid #f1f5f9;
  box-shadow: 0 1px 2px rgb(15 23 42 / 0.04);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--color-text-main);
}

.video-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 1.25rem;
  overflow: hidden;
  box-shadow: 0 16px 32px rgb(15 23 42 / 0.14);
  border: 3px solid rgb(255 255 255 / 0.95);
  background: #0f172a;
}

.video-frame--embed iframe,
.video-frame--embed video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  object-fit: cover;
}

.video-frame--empty,
.video-frame--link {
  display: block;
}

.video-frame--empty img,
.video-frame--link img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.video-play-hint,
.video-empty-hint {
  position: absolute;
  left: 50%;
  bottom: 1.25rem;
  transform: translateX(-50%);
  padding: 0.45rem 1rem;
  border-radius: 9999px;
  background: rgb(15 23 42 / 0.72);
  color: #fff;
  font-size: 0.8125rem;
  font-weight: 600;
  white-space: nowrap;
}

.video-empty-hint {
  bottom: 50%;
  transform: translate(-50%, 50%);
  text-align: center;
  max-width: 85%;
  white-space: normal;
  line-height: 1.4;
}

.video-caption {
  margin: 0.875rem 0.25rem 0;
  text-align: center;
  font-size: 0.8125rem;
  color: var(--color-text-muted);
  font-weight: 500;
  line-height: 1.5;
}

/* Team */
.team-grid {
  display: grid;
  gap: 3rem;
  max-width: 56rem;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.team-card {
  background: #fff;
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid #f1f5f9;
  box-shadow: 0 2px 6px rgb(15 23 42 / 0.05);
  transition: box-shadow 0.4s ease;
  width: 100%;
  max-width: 28rem;
}

.team-card:hover {
  box-shadow: 0 25px 45px rgb(15 23 42 / 0.12);
}

@media (min-width: 768px) {
  .team-card {
    max-width: 32rem;
  }
}

.team-photo {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  filter: none;
  background: #fff;
}

.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.team-body {
  padding: 2rem;
  text-align: center;
  background: rgb(248 250 252 / 0.4);
}

.team-body h3 {
  margin: 0 0 0.5rem;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-text-main);
}

.team-role {
  margin: 0 0 1rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-primary);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.team-spec {
  margin: 0;
  font-size: 0.75rem;
  color: var(--color-text-muted);
  font-style: italic;
  opacity: 0.85;
}

/* Team carousel — 首页核心医疗团队：一次 4 张，左右箭头在卡片两侧 */
.team-carousel {
  --team-slide-gap: 1.25rem;
  width: 100%;
  max-width: 100%;
  margin: 0;
}

.team-carousel-shell {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  gap: 0.75rem;
  width: 100%;
}

.team-carousel-viewport {
  flex: 1;
  min-width: 0;
  overflow: hidden;
}

.team-carousel-track {
  display: flex;
  transition: transform 0.45s ease;
  will-change: transform;
}

.team-slide {
  flex: 0 0 25%;
  min-width: 25%;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: stretch;
  padding: 0 calc(var(--team-slide-gap) / 2);
}

.team-carousel .team-card {
  width: 100%;
  max-width: none;
  border-radius: 1rem;
  box-shadow: 0 8px 24px rgb(15 23 42 / 0.08);
  text-decoration: none;
  color: inherit;
}

.team-carousel .team-card:hover {
  box-shadow: 0 12px 28px rgb(15 23 42 / 0.12);
}

/* 首页轮播：禁用全局 team-photo 灰度/缩放，保持彩色原图 */
.team-carousel .team-photo,
.team-carousel .team-photo--color,
.team-carousel .team-card .team-photo,
.team-carousel .team-card:hover .team-photo {
  filter: none !important;
  -webkit-filter: none !important;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: #fff;
  transition: none;
}

.team-carousel .team-photo img,
.team-carousel .team-photo--color img,
.team-carousel .team-card:hover .team-photo img {
  filter: none !important;
  -webkit-filter: none !important;
  transform: none !important;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: none;
}

.team-carousel .team-body {
  padding: 1.25rem 1rem 1.5rem;
  text-align: center;
  background: #fff;
}

.team-carousel .team-name-cn {
  margin: 0 0 0.35rem;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.35;
  color: var(--color-text-main);
}

.team-carousel .team-name-en {
  margin: 0 0 0.65rem;
  font-size: 0.8125rem;
  font-weight: 500;
  font-style: italic;
  color: #64748b;
  letter-spacing: 0.02em;
  line-height: 1.4;
}

.team-carousel .team-subtitle {
  margin: 0 0 0.65rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--color-primary);
  line-height: 1.45;
  text-transform: none;
  letter-spacing: 0;
}

.team-carousel .team-desc {
  margin: 0;
  font-size: 0.75rem;
  font-weight: 400;
  color: var(--color-text-muted);
  line-height: 1.65;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  overflow: hidden;
  font-style: normal;
  opacity: 1;
}

.team-carousel-side-btn {
  flex: 0 0 auto;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 9999px;
  border: 1px solid #e2e8f0;
  background: #fff;
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgb(15 23 42 / 0.08);
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  cursor: pointer;
  z-index: 3;
  align-self: center;
}

.team-carousel-side-btn--prev,
.team-carousel-side-btn--next {
  position: static;
  transform: none;
}

.team-carousel-side-btn:hover {
  background: var(--color-primary);
  color: #fff;
  border-color: var(--color-primary);
}

@media (max-width: 1023px) {
  .team-slide {
    flex: 0 0 50%;
    min-width: 50%;
  }
}

@media (max-width: 639px) {
  .team-carousel-shell {
    gap: 0.35rem;
  }

  .team-carousel-side-btn {
    width: 2.25rem;
    height: 2.25rem;
  }

  .team-slide {
    flex: 0 0 100%;
    min-width: 100%;
  }
}

.team-carousel-dots-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 1.5rem;
  width: 100%;
}

.team-carousel-controls {
  display: none;
}

.team-carousel-btn {
  width: 3rem;
  height: 3rem;
  border-radius: 9999px;
  border: 1px solid #e2e8f0;
  background: #fff;
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 1px 4px rgb(15 23 42 / 0.06);
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.team-carousel-btn:hover {
  background: var(--color-primary);
  color: #fff;
  border-color: var(--color-primary);
}

.team-dots {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.team-dot {
  width: 0.5rem;
  height: 0.5rem;
  border: none;
  padding: 0;
  border-radius: 9999px;
  background: #cbd5e1;
  transition: width 0.25s ease, background 0.25s ease;
}

.team-dot.is-active {
  width: 2rem;
  background: var(--color-primary);
}

/* Gallery — 医疗环境（CMS 栏目 id=3） */
.gallery-cms-section .gallery-section-lede {
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
}

/* 方案 3：主图 + 下方缩略图条 */
.gallery-showcase {
  width: 100%;
  max-width: 100%;
}

.gallery-showcase-main-row {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  gap: 0.75rem;
  width: 100%;
}

.gallery-main-frame {
  flex: 1;
  min-width: 0;
  border-radius: 1.25rem;
  box-shadow: 0 16px 48px rgb(15 23 42 / 0.1);
  overflow: hidden;
}

.gallery-main-card {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  max-height: min(56vh, 520px);
  margin: 0 auto;
  border-radius: 1.25rem;
  overflow: hidden;
  border: 1px solid #e2e8f0;
  background: #0f172a;
  text-decoration: none;
  color: inherit;
  transition: box-shadow 0.35s ease;
}

.gallery-main-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: opacity 0.35s ease, transform 0.6s ease;
}

.gallery-main-card.is-fading img {
  opacity: 0.55;
}

.gallery-main-card:hover {
  box-shadow: 0 20px 44px rgb(15 23 42 / 0.18);
}

.gallery-main-card:hover img {
  transform: scale(1.02);
}

.gallery-showcase-nav {
  flex: 0 0 auto;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 9999px;
  border: 1px solid #e2e8f0;
  background: #fff;
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 10px rgb(15 23 42 / 0.08);
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.gallery-showcase-nav:hover {
  background: var(--color-primary);
  color: #fff;
  border-color: var(--color-primary);
}

.gallery-thumbs-scroll {
  margin-top: 1rem;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: #cbd5e1 transparent;
  padding-bottom: 0.25rem;
}

.gallery-thumbs-scroll::-webkit-scrollbar {
  height: 6px;
}

.gallery-thumbs-scroll::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 9999px;
}

.gallery-thumbs {
  display: flex;
  flex-wrap: nowrap;
  gap: 0.75rem;
  min-width: min-content;
  padding: 0.25rem 0.125rem;
}

.gallery-thumb {
  flex: 0 0 auto;
  width: clamp(7.5rem, 14vw, 10.5rem);
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  text-align: left;
  border-radius: 0.75rem;
  transition: transform 0.2s ease;
}

.gallery-thumb:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}

.gallery-thumb-media {
  display: block;
  aspect-ratio: 16 / 9;
  border-radius: 0.625rem;
  overflow: hidden;
  border: 2px solid #e2e8f0;
  background: #f1f5f9;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.gallery-thumb-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.gallery-thumb-label {
  display: block;
  margin-top: 0.375rem;
  font-size: 0.75rem;
  line-height: 1.35;
  color: #64748b;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
  transition: color 0.2s ease;
}

.gallery-thumb.is-active .gallery-thumb-media {
  border-color: var(--color-primary);
  box-shadow: 0 4px 14px rgb(15 118 110 / 0.22);
}

.gallery-thumb.is-active .gallery-thumb-label {
  color: var(--color-primary);
  font-weight: 600;
}

.gallery-thumb:hover .gallery-thumb-media {
  border-color: #94a3b8;
}

.gallery-overlay-desc.is-hidden {
  display: none;
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  padding: clamp(1.25rem, 4vw, 2.5rem);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 0.5rem;
  background: linear-gradient(
    to top,
    rgb(15 23 42 / 0.88) 0%,
    rgb(15 23 42 / 0.35) 42%,
    transparent 72%
  );
  pointer-events: none;
}

.gallery-overlay-title {
  margin: 0;
  color: #fff;
  font-size: clamp(1.125rem, 2.5vw, 1.625rem);
  font-weight: 700;
  line-height: 1.35;
  text-shadow: 0 1px 8px rgb(0 0 0 / 0.25);
}

.gallery-overlay-desc {
  margin: 0;
  color: rgb(255 255 255 / 0.9);
  font-size: clamp(0.8125rem, 1.8vw, 0.9375rem);
  max-width: 40rem;
  line-height: 1.65;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}

/* 医疗环境导览页 lavida.html */
.lavida-tour-page.page-main {
  padding-top: 4.75rem;
  padding-bottom: 4rem;
}

.lavida-page-topbar .about-page-topbar__header .section-lede {
  max-width: 40rem;
}

.lavida-cms-shell {
  position: relative;
  padding: 0.25rem 0 1.5rem;
}

.lavida-cms-body {
  position: relative;
  min-width: 0;
}

.lavida-cms-body .about-page-nav--mobile,
.about-cms-page .about-cms-body .about-page-nav--mobile {
  margin-bottom: 1rem;
}

@media (min-width: 1320px) {
  .lavida-cms-shell,
  .about-cms-page .about-cms-shell {
    display: grid;
    grid-template-columns: 10.5rem minmax(0, 72rem);
    gap: 1.75rem;
    justify-content: center;
    align-items: start;
    width: min(100%, calc(72rem + 10.5rem + 1.75rem + 3rem));
    margin-left: auto;
    margin-right: auto;
    padding: 0.25rem 1rem 1.5rem;
    padding-right: clamp(1.5rem, 3vw, 3rem);
  }

  .lavida-cms-shell .about-page-nav--float,
  .about-cms-page .about-cms-shell .about-page-nav--float {
    position: sticky;
    top: 5.75rem;
    left: auto;
    transform: none;
    align-self: start;
    margin-top: 0.25rem;
    max-height: calc(100vh - 7rem);
    overflow-y: auto;
    scrollbar-width: thin;
  }

  .lavida-cms-shell .lavida-cms-body.container,
  .about-cms-page .about-cms-shell .about-cms-body.container {
    max-width: 72rem;
    width: 100%;
    margin: 0;
    padding-left: clamp(0.75rem, 1.5vw, 1.5rem);
    padding-right: clamp(1.5rem, 3vw, 3rem);
  }
}

.lavida-tour-page [id^="zone-"] {
  scroll-margin-top: 5.75rem;
}

.lavida-tour-sections {
  padding-bottom: 1rem;
}

.lavida-tour-section {
  padding: clamp(2rem, 3.5vw, 3rem) 0;
  border-bottom: 1px solid #f1f5f9;
  scroll-margin-top: 5.75rem;
}

.lavida-tour-section:last-child {
  border-bottom: none;
  padding-bottom: 0.5rem;
}

.lavida-tour-section:nth-child(even) {
  margin-left: clamp(-0.5rem, -1vw, 0);
  margin-right: clamp(-0.25rem, -0.5vw, 0);
  padding-left: clamp(0.5rem, 1.5vw, 1rem);
  padding-right: clamp(0.75rem, 2vw, 1.25rem);
  border-radius: 0.875rem;
  background: linear-gradient(180deg, #f8fafc 0%, #fff 100%);
  border: 1px solid #f1f5f9;
  border-bottom: 1px solid #f1f5f9;
}

.lavida-tour-section-inner {
  display: grid;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  align-items: center;
}

@media (min-width: 960px) {
  .lavida-tour-section-inner {
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
    gap: clamp(2rem, 3.5vw, 2.75rem);
  }

  .lavida-tour-section--reverse .lavida-tour-section-inner {
    direction: rtl;
  }

  .lavida-tour-section--reverse .lavida-tour-copy,
  .lavida-tour-section--reverse .lavida-tour-media {
    direction: ltr;
  }
}

.lavida-tour-zone {
  display: inline-block;
  margin-bottom: 0.75rem;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  background: #ecfeff;
  color: var(--color-primary);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.lavida-tour-title {
  margin: 0 0 0.5rem;
  font-size: clamp(1.375rem, 2.5vw, 1.75rem);
  font-weight: 700;
  line-height: 1.35;
  color: var(--color-text-main);
}

.lavida-tour-subtitle {
  margin: 0 0 0.85rem;
  font-size: 0.9375rem;
  font-weight: 500;
  color: #64748b;
}

.lavida-tour-desc {
  margin: 0;
  max-width: 38rem;
  font-size: 0.9375rem;
  line-height: 1.75;
  color: var(--color-text-muted);
}

.lavida-tour-media {
  display: block;
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid #e2e8f0;
  box-shadow: 0 16px 36px rgb(15 23 42 / 0.08);
  background: #0f172a;
}

.lavida-tour-media img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.lavida-tour-media:hover img {
  transform: scale(1.02);
  transition: transform 0.55s ease;
}

/* 医疗环境详情页 */
.lavida-detail-hero {
  padding: 2rem 0 1.5rem;
  background: linear-gradient(165deg, #0f766e 0%, #134e4a 100%);
  color: #fff;
}

.lavida-detail-hero .breadcrumbs--light a,
.lavida-detail-hero .breadcrumbs--light li {
  color: rgb(255 255 255 / 0.82);
}

.lavida-detail-hero .breadcrumbs--light a:hover {
  color: #fff;
}

.lavida-detail-intro h1 {
  margin: 0.5rem 0 0;
  font-size: clamp(1.5rem, 3vw, 2.125rem);
  font-weight: 700;
  line-height: 1.3;
}

.lavida-tour-zone--hero {
  background: rgb(255 255 255 / 0.14);
  color: #fff;
}

.lavida-tour-subtitle--hero {
  margin: 0.75rem 0 0;
  color: rgb(255 255 255 / 0.82);
}

.lavida-detail-figure {
  margin: 0;
  background: #0f172a;
}

.lavida-detail-figure img {
  display: block;
  width: 100%;
  max-height: min(72vh, 720px);
  object-fit: cover;
  margin: 0 auto;
}

.lavida-detail-body-wrap {
  padding: 2.5rem 1rem 1rem;
  max-width: 46rem;
}

.lavida-detail-lede {
  margin: 0 0 1.25rem;
  font-size: 1.0625rem;
  line-height: 1.75;
  color: var(--color-text-main);
}

.lavida-detail-body {
  font-size: 0.9375rem;
  line-height: 1.8;
  color: var(--color-text-muted);
}

.lavida-detail-pager {
  padding: 2rem 0 4rem;
  border-top: 1px solid #f1f5f9;
}

.lavida-detail-pager-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 1rem;
  align-items: center;
}

.lavida-detail-pager-link {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  text-decoration: none;
  color: var(--color-text-main);
  max-width: 16rem;
}

.lavida-detail-pager-link--next {
  text-align: right;
  margin-left: auto;
}

.lavida-detail-pager-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--color-primary);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.lavida-detail-pager-title {
  font-size: 0.9375rem;
  font-weight: 600;
  line-height: 1.4;
}

.lavida-detail-pager-link:hover .lavida-detail-pager-title {
  color: var(--color-primary);
}

.lavida-detail-back {
  justify-self: center;
}

.lavida-detail-pager-spacer {
  display: block;
}

@media (max-width: 767px) {
  .lavida-tour-section {
    padding: 2.5rem 0;
  }

  .lavida-detail-pager-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .lavida-detail-pager-link,
  .lavida-detail-pager-link--next {
    max-width: none;
    margin: 0;
    text-align: center;
  }

  .lavida-detail-back {
    order: -1;
  }
}

@media (max-width: 767px) {
  .gallery-main-card {
    max-height: none;
    aspect-ratio: 4 / 3;
    border-radius: 0.875rem;
  }

  .gallery-main-frame {
    border-radius: 0.875rem;
    box-shadow: 0 10px 28px rgb(15 23 42 / 0.1);
  }

  .gallery-showcase-main-row {
    position: relative;
    gap: 0;
  }

  .gallery-showcase-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    width: 2.125rem;
    height: 2.125rem;
    background: rgb(255 255 255 / 0.94);
    border: 1px solid rgb(255 255 255 / 0.8);
    box-shadow: 0 2px 10px rgb(15 23 42 / 0.18);
  }

  .gallery-showcase-nav--prev {
    left: 0.5rem;
  }

  .gallery-showcase-nav--next {
    right: 0.5rem;
  }

  .gallery-showcase-nav svg {
    width: 18px;
    height: 18px;
  }

  .gallery-cms-section .section-header {
    margin-bottom: 1.75rem;
  }

  .gallery-thumbs-scroll {
    margin-top: 0.875rem;
    margin-left: -0.25rem;
    margin-right: -0.25rem;
    padding-bottom: 0.375rem;
  }

  .gallery-thumb {
    width: clamp(5.75rem, 26vw, 7.25rem);
  }

  .gallery-thumb-label {
    font-size: 0.6875rem;
    text-align: center;
  }

  .gallery-thumb-media {
    border-radius: 0.5rem;
  }

  .gallery-overlay {
    padding: 0.875rem 1rem;
  }

  .gallery-overlay-title {
    font-size: 0.9375rem;
  }

  .gallery-overlay-desc {
    -webkit-line-clamp: 2;
    font-size: 0.75rem;
  }

  /* 关于 / 成功率 / 联系我们：移动端标题区居中 */
  .about-copy {
    text-align: center;
  }

  .about-copy .pill {
    margin-left: auto;
    margin-right: auto;
  }

  .about-copy p,
  .about-copy .italic {
    text-align: left;
  }

  .about-features {
    text-align: left;
  }

  .success-col--copy {
    text-align: center;
  }

  .success-col--copy .pill {
    margin-left: auto;
    margin-right: auto;
  }

  .success-col--copy .lede,
  .stats-grid--cards,
  .success-badges {
    text-align: left;
  }

  .success-badges {
    justify-content: center;
  }

  .contact-left h2 {
    text-align: center;
    border-left: none;
    padding-left: 0;
    padding-bottom: 0;
  }

  .contact-left h2::after {
    content: "";
    display: block;
    width: 3rem;
    height: 4px;
    background: var(--color-primary);
    margin: 0.75rem auto 0;
    border-radius: 9999px;
  }

  .contact-regional {
    grid-template-columns: 1fr;
    margin-top: 0.75rem;
  }

  .contact-phones {
    margin-top: 0.5rem;
  }

  .phone-line {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.15rem;
    padding: 0.625rem 0;
  }

  .phone-line__tel {
    font-size: 1rem;
  }

  .chat-box {
    margin-top: 2rem;
    padding: 1.5rem;
  }

  .qr-grid {
    margin: 0 auto;
    gap: 0.875rem 0.65rem;
  }

  .qr-box--lg {
    width: 100%;
    height: auto;
    aspect-ratio: 1;
    max-width: 8.5rem;
  }

  .contact-phone-empty {
    margin: 0.35rem 0 0;
    font-size: 0.875rem;
    color: var(--color-text-muted);
  }
}

/* Contact */
.contact-grid {
  display: grid;
  gap: 4rem;
}

@media (min-width: 1024px) {
  .contact-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.contact-left h2 {
  margin: 0 0 2rem;
  font-size: 1.875rem;
  font-weight: 700;
  border-left: 4px solid var(--color-primary);
  padding-left: 1.5rem;
  color: var(--color-text-main);
}

.contact-row {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 2rem;
}

.contact-row:last-of-type {
  margin-bottom: 0;
}

.c-icon-wrap {
  padding: 0.75rem;
  background: #ecfeff;
  border-radius: 0.75rem;
  flex-shrink: 0;
  color: var(--color-primary);
}

.contact-row h4 {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 700;
}

.contact-row p {
  margin: 0.35rem 0 0;
  color: var(--color-text-muted);
}

.contact-phone-main {
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--color-text-main);
}

.contact-phone-note {
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--color-text-muted);
}

.contact-regional {
  display: grid;
  gap: 0.625rem;
  margin-top: 1rem;
}

.contact-phones {
  display: flex;
  flex-direction: column;
  margin-top: 0.625rem;
  border-top: 1px solid #f1f5f9;
}

.phone-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid #f1f5f9;
  text-decoration: none;
  color: inherit;
  transition: color 0.15s ease;
}

.phone-line:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.phone-line:hover .phone-line__tel {
  color: var(--color-primary);
}

.phone-line__label {
  flex: 1;
  min-width: 0;
  font-size: 0.875rem;
  color: var(--color-text-muted);
  line-height: 1.4;
}

.phone-line__tel {
  flex-shrink: 0;
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--color-text-main);
  letter-spacing: 0.01em;
  transition: color 0.15s ease;
}

.chat-box {
  margin-top: 3rem;
  padding: 2rem;
  background: var(--color-accent);
  border-radius: 1.5rem;
  border: 1px solid #f1f5f9;
}

.chat-box h4 {
  margin: 0 0 1.5rem;
  font-weight: 700;
  color: var(--color-text-main);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.qr-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem 0.75rem;
  max-width: 21rem;
}

@media (min-width: 768px) {
  .qr-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1.75rem;
    justify-content: flex-start;
    max-width: none;
  }
}

.qr-cell {
  text-align: center;
  flex: 0 0 auto;
}

.qr-box {
  width: 6rem;
  height: 6rem;
  background: #fff;
  border-radius: 0.875rem;
  padding: 0.35rem;
  box-shadow: 0 2px 6px rgb(15 23 42 / 0.06);
  margin: 0 auto 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  color: var(--color-text-muted);
  text-align: center;
  line-height: 1.3;
}

.qr-box--lg {
  width: 9.5rem;
  height: 9.5rem;
  padding: 0.5rem;
  border: 1px solid #e2e8f0;
  box-shadow: 0 8px 24px rgb(15 23 42 / 0.08);
}

@media (min-width: 768px) {
  .qr-box--lg {
    width: 9rem;
    height: 9rem;
  }
}

.qr-label {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--color-text-main);
  font-style: normal;
}

.form-card {
  background: #fff;
  border-radius: 1.5rem;
  padding: 2rem;
  border: 1px solid #f1f5f9;
  box-shadow: 0 22px 50px rgb(15 23 42 / 0.1);
}

@media (min-width: 1024px) {
  .form-card {
    padding: 2.5rem;
  }
}

.form-card h3 {
  margin: 0 0 1.5rem;
  font-size: 1.5rem;
  font-weight: 700;
  border-bottom: 1px solid #f1f5f9;
  padding-bottom: 1rem;
}

.form-grid-2 {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr 1fr;
}

.form-field {
  margin-bottom: 1rem;
}

.form-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

.form-field label {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.25rem;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border-radius: 0.75rem;
  border: 1px solid #f1f5f9;
  background: var(--color-accent);
  font-size: 0.875rem;
  outline: none;
  transition: box-shadow 0.15s, border-color 0.15s;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: transparent;
  box-shadow: 0 0 0 3px var(--ring);
}

.form-field textarea {
  min-height: 8rem;
  resize: vertical;
}

.form-submit {
  width: 100%;
  margin-top: 0.25rem;
  padding: 1rem;
  border: none;
  border-radius: 0.75rem;
  font-size: 1.125rem;
  font-weight: 700;
  color: #fff;
  background: var(--color-primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  box-shadow: 0 12px 30px rgb(207 250 254 / 0.9);
  transition: background 0.2s;
}

.form-submit:hover {
  background: var(--color-hover);
}

/* Footer */
.footer {
  background: var(--color-secondary);
  color: #fff;
  padding: 4rem 0 2rem;
  border-top: 1px solid rgb(255 255 255 / 0.1);
}

.footer-grid {
  display: grid;
  gap: 3rem;
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
}

.footer-brand-mini {
  width: 2rem;
  height: 2rem;
  background: var(--color-primary);
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-brand-mini span {
  width: 0.875rem;
  height: 0.875rem;
  border: 2px solid #fff;
  border-radius: 2px;
  transform: rotate(45deg);
  display: block;
}

.footer-lede {
  color: rgb(203 213 225);
  font-size: 0.875rem;
  line-height: 1.65;
  font-style: italic;
  margin: 0 0 1.5rem;
}

.social-row {
  display: flex;
  gap: 1rem;
}

.social-btn {
  width: 2rem;
  height: 2rem;
  border-radius: 9999px;
  background: rgb(255 255 255 / 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: background 0.2s;
  text-decoration: none;
}

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

.footer-col h4 {
  margin: 0 0 1.5rem;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  opacity: 0.6;
}

.footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-nav-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.35rem 1rem;
}

.footer-nav-list li {
  margin-bottom: 0.65rem;
}

@media (min-width: 768px) {
  .footer-nav-list {
    display: block;
  }

  .footer-nav-list li {
    margin-bottom: 1rem;
  }
}

.footer-col li {
  margin-bottom: 1rem;
}

.footer-col a {
  color: rgb(203 213 225);
  font-size: 0.875rem;
  text-decoration: none;
}

.footer-col a:hover {
  color: var(--color-primary);
}

.footer-qr-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
  gap: 0.75rem 0.65rem;
  width: 100%;
  max-width: 14.5rem;
}

.footer-qr-cell {
  flex: 0 0 auto;
  width: auto;
  max-width: none;
}

@media (min-width: 768px) {
  .footer-qr-grid {
    gap: 0.875rem 1rem;
    max-width: 18rem;
  }
}

.footer-qr {
  width: 5rem;
  height: 5rem;
  background: #fff;
  border-radius: 0.75rem;
  padding: 0.35rem;
  box-shadow: 0 4px 16px rgb(0 0 0 / 0.18);
  margin: 0 auto 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 8px;
  color: var(--color-text-muted);
  text-align: center;
  line-height: 1.35;
  font-weight: 700;
  font-style: italic;
}

.footer-qr--lg {
  width: 100%;
  height: auto;
  aspect-ratio: 1;
  max-width: 6.75rem;
  padding: 0.4rem;
  border-radius: 0.875rem;
}

@media (min-width: 768px) {
  .footer-qr--lg {
    max-width: 8.25rem;
  }
}

.footer-qr-label {
  display: block;
  text-align: center;
  font-size: 0.75rem;
  font-weight: 600;
  color: rgb(203 213 225);
  line-height: 1.35;
}

.mail-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.small-mail {
  font-size: 0.75rem;
}

.footer-copy {
  border-top: 1px solid rgb(255 255 255 / 0.1);
  padding-top: 2rem;
  text-align: center;
  font-size: 0.75rem;
  color: rgb(148 163 184);
}

.footer-icp-link {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-icp-link:hover {
  color: #fff;
  text-decoration: underline;
}

#free-plan {
  scroll-margin-top: 5.5rem;
}

/* Floating CTA */
.float-dock {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 55;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.float-btn {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 9999px;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 18px 40px rgb(15 23 42 / 0.2);
  transition: transform 0.2s, background 0.2s;
}

.float-btn--primary {
  background: var(--color-primary);
}

.float-btn--primary:hover {
  background: var(--color-hover);
  transform: scale(1.08);
}

.float-btn--secondary {
  background: var(--color-secondary);
  border: 1px solid rgb(255 255 255 / 0.2);
}

.float-btn--secondary:hover {
  transform: scale(1.08);
}

.float-btn--top {
  background: #fff;
  color: var(--color-primary);
  border: 1px solid #e2e8f0;
  box-shadow: 0 12px 28px rgb(15 23 42 / 0.12);
}

.float-btn--top:hover {
  background: #f8fafc;
  color: var(--color-hover);
  border-color: #cbd5e1;
  transform: scale(1.08);
}

#float-back-top {
  display: none;
}

#float-back-top.is-visible {
  display: flex;
}

/* Consult booking modal */
body.consult-modal-open {
  overflow: hidden;
}

.consult-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 80;
  align-items: flex-end;
  justify-content: center;
  padding: 0;
  pointer-events: none;
}

.consult-modal.is-open {
  display: flex;
  pointer-events: auto;
}

.consult-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgb(15 23 42 / 0.55);
  opacity: 0;
  transition: opacity 0.25s ease;
}

.consult-modal.is-open .consult-modal__backdrop {
  opacity: 1;
}

.consult-modal__dialog {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 32rem;
  max-height: min(92vh, 720px);
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  transform: translateY(100%);
  transition: transform 0.28s ease;
}

.consult-modal.is-open .consult-modal__dialog {
  transform: translateY(0);
}

.consult-modal__body.form-card {
  margin: 0;
  border-radius: 1.25rem 1.25rem 0 0;
  box-shadow: 0 -12px 40px rgb(15 23 42 / 0.18);
  padding: 1.25rem 1.25rem calc(1.25rem + env(safe-area-inset-bottom, 0px));
}

.consult-modal__body h3 {
  padding-right: 2.5rem;
}

.consult-modal__close {
  position: absolute;
  top: 0.85rem;
  right: 0.85rem;
  z-index: 2;
  width: 2.25rem;
  height: 2.25rem;
  border: none;
  border-radius: 9999px;
  background: #f1f5f9;
  color: #475569;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.consult-modal__close:hover {
  background: #e2e8f0;
  color: #0f172a;
}

@media (min-width: 640px) {
  .consult-modal {
    align-items: center;
    padding: 1.5rem;
  }

  .consult-modal__dialog {
    max-height: min(88vh, 720px);
    transform: translateY(16px) scale(0.96);
    opacity: 0;
    transition: transform 0.25s ease, opacity 0.25s ease;
  }

  .consult-modal.is-open .consult-modal__dialog {
    transform: translateY(0) scale(1);
    opacity: 1;
  }

  .consult-modal__body.form-card {
    border-radius: 1.25rem;
    padding: 1.75rem 1.75rem 2rem;
  }
}

@media (max-width: 639px) {
  .consult-modal .form-grid-2 {
    grid-template-columns: 1fr;
  }

  .float-dock {
    bottom: calc(1rem + env(safe-area-inset-bottom, 0px));
    right: 1rem;
  }
}

/* Consult form success toast */
.consult-toast {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

.consult-toast.is-visible {
  opacity: 1;
  visibility: visible;
}

.consult-toast.is-hiding {
  opacity: 0;
  visibility: hidden;
}

.consult-toast__panel {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  max-width: 22rem;
  padding: 1.75rem 2rem;
  text-align: center;
  background: #fff;
  border-radius: 1rem;
  box-shadow:
    0 20px 45px rgb(15 23 42 / 0.18),
    0 0 0 1px rgb(8 145 178 / 0.08);
  transform: translateY(12px) scale(0.96);
  transition: transform 0.35s ease;
}

.consult-toast.is-visible .consult-toast__panel {
  transform: translateY(0) scale(1);
}

.consult-toast.is-hiding .consult-toast__panel {
  transform: translateY(-8px) scale(0.98);
}

.consult-toast__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.25rem;
  height: 3.25rem;
  color: var(--color-primary);
  background: rgb(8 145 178 / 0.12);
  border-radius: 999px;
}

.consult-toast__text {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1.5;
  color: var(--color-text-main);
}

/* Inner pages: page header, breadcrumbs, team grid, articles, pagination */
.page-main {
  padding-top: 5rem;
  padding-bottom: 4rem;
}

.page-header {
  padding: 2.5rem 0 1.5rem;
  border-bottom: 1px solid #f1f5f9;
  background: linear-gradient(180deg, #fff 0%, #f8fafc 100%);
}

.page-header-inner {
  max-width: 72rem;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 640px) {
  .page-header-inner {
    padding: 0 1.5rem;
  }
}

@media (min-width: 1024px) {
  .page-header-inner {
    padding: 0 2rem;
  }
}

.page-title {
  margin: 0 0 0.5rem;
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--color-text-main);
}

.page-subtitle {
  margin: 0;
  max-width: 42rem;
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--color-text-muted);
}

.breadcrumbs {
  margin: 0 0 0.75rem;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0.5rem;
  font-size: 0.8rem;
  color: var(--color-text-muted);
}

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

.breadcrumbs a:hover {
  color: var(--color-primary);
}

.breadcrumbs li:not(:last-child)::after {
  content: "/";
  margin-left: 0.5rem;
  color: #cbd5e1;
}

.page-section {
  max-width: 72rem;
  margin: 0 auto;
  padding: 2.5rem 1rem 0;
}

@media (min-width: 640px) {
  .page-section {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .page-section {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

.prose {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--color-text-main);
}

.prose h2 {
  margin: 2rem 0 0.75rem;
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--color-text-main);
}

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

.prose p {
  margin: 0 0 1rem;
}

.prose ul {
  margin: 0 0 1rem;
  padding-left: 1.25rem;
}

.team-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

@media (min-width: 640px) {
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .team-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.team-card {
  display: block;
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid #e2e8f0;
  background: #fff;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 4px 14px rgb(15 23 42 / 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.team-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgb(15 23 42 / 0.12);
}

.team-card-img {
  aspect-ratio: 4 / 3;
  width: 100%;
  object-fit: cover;
  display: block;
}

.team-card-body {
  padding: 1rem 1.1rem 1.15rem;
}

.team-card-name {
  margin: 0 0 0.25rem;
  font-size: 1.05rem;
  font-weight: 700;
}

.team-card-role {
  margin: 0;
  font-size: 0.85rem;
  color: var(--color-text-muted);
}

.article-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.article-list-item {
  border: 1px solid #e2e8f0;
  border-radius: 0.85rem;
  background: #fff;
  box-shadow: 0 2px 10px rgb(15 23 42 / 0.04);
}

.article-list-link {
  display: block;
  padding: 1rem 1.1rem;
  text-decoration: none;
  color: inherit;
  transition: background 0.15s ease;
}

.article-list-link:hover {
  background: #f8fafc;
}

.article-list-title {
  margin: 0 0 0.35rem;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--color-text-main);
}

.article-list-meta {
  margin: 0;
  font-size: 0.8rem;
  color: var(--color-text-muted);
}

.article-list-excerpt {
  margin: 0.55rem 0 0;
  font-size: 0.875rem;
  line-height: 1.65;
  color: #64748b;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.info-list-section {
  padding-top: 1.5rem;
  padding-bottom: 3rem;
}

.info-detail-section {
  padding-top: 1.25rem;
  padding-bottom: 3.5rem;
}

.info-page-shell {
  position: relative;
  min-width: 0;
}

/* 生殖资讯列表/详情：宽度与首页 .container 一致 (80rem) */
.info-list-page .about-page-topbar > .container,
.info-detail-page .about-page-topbar > .container {
  max-width: var(--max-w);
}

.info-list-page .info-list-section,
.info-detail-page .info-detail-section {
  max-width: none;
  padding-left: 0;
  padding-right: 0;
}

.info-list-main {
  min-width: 0;
}

.info-sidebar-mobile {
  display: block;
  margin-bottom: 1rem;
}

.info-sidebar-mobile__label {
  margin: 0 0 0.5rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #64748b;
}

.info-sidebar-mobile__scroll {
  display: flex;
  flex-wrap: nowrap;
  gap: 0.5rem;
  overflow-x: auto;
  padding-bottom: 0.25rem;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.info-sidebar-mobile__scroll::-webkit-scrollbar {
  display: none;
}

.info-sidebar-mobile__scroll a {
  flex: 0 0 auto;
  max-width: 14rem;
  padding: 0.45rem 0.85rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: #0f766e;
  text-decoration: none;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  background: #fff;
  border: 1px solid #99f6e4;
  border-radius: 999px;
}

.info-sidebar-mobile__scroll a:hover {
  background: #ccfbf1;
}

.info-sidebar--float {
  display: none;
}

.info-sidebar__block {
  padding: 1rem 0.95rem;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(226, 232, 240, 0.75);
  border-radius: 0.875rem;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.05);
}

.info-list-page .info-sidebar__block,
.info-detail-page .info-sidebar__block {
  padding: 1rem 0.95rem;
}

.info-sidebar__block + .info-sidebar__block {
  margin-top: 0.85rem;
}

.info-sidebar__title {
  margin: 0 0 0.75rem;
  padding-bottom: 0.5rem;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #334155;
  border-bottom: 1px solid #f1f5f9;
}

.info-tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 0.45rem;
}

.info-tag-cloud__link {
  display: inline-flex;
  align-items: center;
  padding: 0.18rem 0.55rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  color: #64748b;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.info-tag-cloud__link:hover {
  color: var(--color-primary);
  border-color: rgb(8 145 178 / 0.35);
  background: rgb(8 145 178 / 0.06);
}

.info-tag-cloud__link--w5 { font-size: 1rem; }
.info-tag-cloud__link--w4 { font-size: 0.9375rem; }
.info-tag-cloud__link--w3 { font-size: 0.875rem; }
.info-tag-cloud__link--w2 { font-size: 0.8125rem; }
.info-tag-cloud__link--w1 { font-size: 0.75rem; }

.info-rank-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.info-rank-list__item {
  display: grid;
  grid-template-columns: 1.35rem minmax(0, 1fr);
  gap: 0.5rem;
  align-items: start;
}

.info-rank-list__num {
  flex: none;
  width: 1.35rem;
  height: 1.35rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.6875rem;
  font-weight: 800;
  color: #fff;
  background: var(--color-primary);
  border-radius: 0.35rem;
  line-height: 1;
  margin-top: 0.1rem;
}

.info-rank-list__item:nth-child(1) .info-rank-list__num {
  background: #dc2626;
}

.info-rank-list__item:nth-child(2) .info-rank-list__num {
  background: #ea580c;
}

.info-rank-list__item:nth-child(3) .info-rank-list__num {
  background: #d97706;
}

.info-rank-list__body {
  min-width: 0;
}

.info-rank-list__link {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.5;
  color: #334155;
  text-decoration: none;
  transition: color 0.2s ease;
}

.info-rank-list__link:hover {
  color: var(--color-primary);
}

.info-rank-list__meta {
  display: block;
  margin-top: 0.2rem;
  font-size: 0.75rem;
  color: #94a3b8;
}

.info-contact-box__brand {
  margin: 0 0 0.65rem;
  font-size: 0.8125rem;
  font-weight: 700;
  line-height: 1.45;
  color: var(--color-text-main);
}

.info-contact-box__phones {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  margin-bottom: 0.65rem;
}

.info-contact-box__phone {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  text-decoration: none;
  color: inherit;
}

.info-contact-box__phone-label {
  font-size: 0.6875rem;
  font-weight: 600;
  color: #94a3b8;
}

.info-contact-box__phone-tel {
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--color-primary);
}

.info-contact-box__mail {
  display: block;
  margin-bottom: 0.75rem;
  font-size: 0.75rem;
  color: #64748b;
  word-break: break-all;
  text-decoration: none;
}

.info-contact-box__mail:hover {
  color: var(--color-primary);
}

.info-contact-box__qr {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.5rem;
  margin-bottom: 0.85rem;
}

.info-contact-box__qr--stack {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.info-contact-box__qr--stack .info-contact-box__qr-cell {
  width: 100%;
}

.info-contact-box__qr-cell {
  text-align: center;
}

.info-contact-box__qr-cell img {
  display: block;
  width: 100%;
  max-width: 5.5rem;
  margin: 0 auto 0.25rem;
  border-radius: 0.5rem;
  border: 1px solid #e2e8f0;
  background: #fff;
}

.info-sidebar .info-contact-box__qr-cell img {
  width: 10rem;
  height: 10rem;
  max-width: 10rem;
  object-fit: contain;
}

.info-contact-box__qr-cell span {
  display: block;
  font-size: 0.625rem;
  font-weight: 600;
  color: #64748b;
}

.info-contact-box__cta {
  width: 100%;
  justify-content: center;
  padding: 0.65rem 1rem;
  font-size: 0.875rem;
  text-decoration: none;
  cursor: pointer;
}

/* 资讯列表侧栏：紧凑布局，避免内容过高 */
.info-sidebar--list .info-sidebar__block {
  padding: 0.85rem 0.8rem;
}

.info-sidebar--list .info-sidebar__block + .info-sidebar__block {
  margin-top: 0.65rem;
}

.info-sidebar--list .info-sidebar__title {
  margin-bottom: 0.6rem;
  padding-bottom: 0.4rem;
}

.info-sidebar--list .info-rank-list {
  gap: 0.4rem;
}

.info-sidebar--list .info-rank-list__link {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.info-sidebar--list .info-tag-cloud {
  gap: 0.32rem 0.38rem;
}

.info-sidebar--list .info-tag-cloud__link {
  padding: 0.14rem 0.48rem;
  font-size: 0.75rem;
}

.info-sidebar--list .info-tag-cloud__link--w5,
.info-sidebar--list .info-tag-cloud__link--w4,
.info-sidebar--list .info-tag-cloud__link--w3,
.info-sidebar--list .info-tag-cloud__link--w2,
.info-sidebar--list .info-tag-cloud__link--w1 {
  font-size: 0.75rem;
}

.info-sidebar--list .info-contact-box__qr {
  margin-bottom: 0.65rem;
}

.info-sidebar--list .info-contact-box__cta {
  padding: 0.55rem 0.85rem;
  font-size: 0.8125rem;
}

.info-detail-main {
  min-width: 0;
  padding: 1.35rem clamp(1rem, 2vw, 1.75rem) 1.75rem;
  background: #fff;
  border: 1px solid #eef2f6;
  border-radius: 0.875rem;
  box-shadow: 0 8px 28px rgba(15, 23, 42, 0.04);
}

.info-detail-header .pill {
  margin-bottom: 0.65rem;
}

.info-detail-header--center {
  text-align: center;
}

.info-detail-header--center .pill {
  margin-left: auto;
  margin-right: auto;
}

.info-detail-title {
  margin: 0 0 0.5rem;
  font-size: clamp(1.5rem, 3vw, 2rem);
  line-height: 1.35;
  font-weight: 800;
  color: var(--color-text-main);
  letter-spacing: -0.02em;
}

.info-detail-subtitle {
  margin: 0 0 0.75rem;
  font-size: 1rem;
  font-weight: 500;
  color: #64748b;
}

.info-detail-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.5rem 1rem;
  padding-bottom: 1.15rem;
  margin-bottom: 1.25rem;
  font-size: 0.875rem;
  color: #94a3b8;
  border-bottom: 1px solid #f1f5f9;
}

.info-detail-stats {
  list-style: none;
  margin: 0 0 0.85rem;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.65rem 1.25rem;
}

.info-detail-stats__item {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: #64748b;
}

.info-detail-stats__icon {
  flex: none;
  color: var(--color-primary);
}

.info-detail-meta__views::before {
  content: "·";
  margin-right: 0.5rem;
  color: #cbd5e1;
}

.info-detail-meta__views:first-child::before {
  content: none;
  margin: 0;
}

.info-detail-cover {
  margin: 0 0 1.5rem;
  border-radius: 0.75rem;
  overflow: hidden;
  border: 1px solid #e2e8f0;
}

.info-detail-cover img {
  display: block;
  width: 100%;
  height: auto;
}

.info-detail-body {
  margin-bottom: 1.75rem;
}

.info-detail-share-wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem 1rem;
  padding: 1rem 0;
  margin-bottom: 1.5rem;
  border-top: 1px solid #f1f5f9;
  border-bottom: 1px solid #f1f5f9;
}

.info-detail-share-wrap__label {
  font-size: 0.875rem;
  font-weight: 700;
  color: #64748b;
}

.info-detail-share.social-share {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.45rem;
}

.info-detail-share .social-share-icon {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 999px;
  background-color: #f8fafc;
  background-size: 55%;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.info-detail-share .social-share-icon:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(15, 23, 42, 0.08);
}

.info-detail-related {
  margin-top: 1.5rem;
  margin-bottom: 0;
}

.info-detail-related__title {
  margin: 0 0 0.85rem;
  font-size: 1.0625rem;
  font-weight: 800;
  color: var(--color-text-main);
}

.info-detail-related__grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
}

.info-detail-related-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  text-decoration: none;
  color: inherit;
  background: #fff;
  border: 1px solid #eef2f6;
  border-radius: 0.65rem;
  overflow: hidden;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.info-detail-related-card:hover {
  border-color: rgb(8 145 178 / 0.35);
  box-shadow: 0 8px 22px rgba(15, 23, 42, 0.06);
}

.info-detail-related-card__thumb {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #f1f5f9;
}

.info-detail-related-card__thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.info-detail-related-card:hover .info-detail-related-card__thumb img {
  transform: scale(1.04);
}

.info-detail-related-card__title {
  margin: 0;
  padding: 0.75rem 0.8rem 0.9rem;
  font-size: 0.875rem;
  line-height: 1.5;
  font-weight: 700;
  color: #334155;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

@media (min-width: 768px) {
  .info-detail-related__grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
  }

  .info-detail-related-card__title {
    font-size: 0.9375rem;
  }
}

.info-detail-footer {
  padding-top: 1.25rem;
  border-top: 1px solid #f1f5f9;
}

.info-detail-tags {
  margin-top: 0;
  margin-bottom: 1.25rem;
}

.info-detail-pager {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem 1rem;
  margin-bottom: 0;
}

.info-detail-pager__item {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  min-height: 4.25rem;
  padding: 0.85rem 1rem;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 0.65rem;
}

.info-detail-pager__item--next {
  text-align: right;
  align-items: flex-end;
}

.info-detail-pager__item.is-empty {
  opacity: 0.72;
}

.info-detail-pager__link {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 0.85rem 1rem;
  text-decoration: none;
  color: inherit;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 0.65rem;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.info-detail-pager__link:hover {
  border-color: var(--color-primary);
  background: #fff;
}

.info-detail-pager__link--next {
  text-align: right;
}

.info-detail-pager__label {
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--color-primary);
}

.info-detail-pager__title {
  font-size: 0.9375rem;
  font-weight: 600;
  line-height: 1.5;
  color: #334155;
  text-decoration: none;
}

a.info-detail-pager__title:hover {
  color: var(--color-primary);
}

.info-detail-pager__title--empty {
  display: block;
  min-height: 1.5em;
}

.info-detail-pager__spacer {
  display: block;
}

.info-detail-tags__label {
  display: block;
  margin-bottom: 0.5rem;
  font-size: 0.75rem;
  font-weight: 700;
  color: #94a3b8;
}

.info-detail-tags__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.info-detail-tag {
  display: inline-flex;
  padding: 0.2rem 0.65rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--color-primary);
  background: rgb(8 145 178 / 0.08);
  border: 1px solid rgb(8 145 178 / 0.2);
  border-radius: 999px;
  text-decoration: none;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.info-detail-tag:hover {
  background: rgb(8 145 178 / 0.14);
  border-color: rgb(8 145 178 / 0.35);
}

.cms-prose-wrap a.tag-autolink,
.cms-prose a.tag-autolink {
  color: var(--color-primary);
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: rgb(8 145 178 / 0.35);
  text-underline-offset: 0.12em;
}

.cms-prose-wrap a.tag-autolink:hover,
.cms-prose a.tag-autolink:hover {
  color: var(--color-hover);
}

.info-detail-actions {
  display: none;
}

@media (min-width: 1320px) {
  .info-page-shell {
    display: grid;
    grid-template-columns: 13.5rem minmax(0, 1fr);
    gap: 1.75rem;
    align-items: start;
    max-width: var(--max-w);
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .info-sidebar-mobile {
    display: none;
  }

  .info-sidebar--float {
    display: block;
    position: sticky;
    top: 5.75rem;
    align-self: start;
  }

  .info-page-shell--detail {
    grid-template-columns: 13.5rem minmax(0, 1fr);
  }
}

@media (max-width: 1319px) {
  .info-sidebar--float {
    display: none;
  }

  .info-page-shell {
    max-width: var(--max-w);
    margin-left: auto;
    margin-right: auto;
  }
}

/* 生殖资讯列表：FastAdmin CMS hardware 风格 */
.cms-article-list {
  padding: 0;
  background: #fff;
  border: 1px solid #eef2f6;
  border-radius: 0.75rem;
  overflow: hidden;
}

.cms-article-list .article-item {
  border-bottom: 1px solid #efefef;
}

.cms-article-list .article-item:last-child {
  border-bottom: none;
}

.cms-article-list .article-item__link {
  display: flex;
  gap: 1rem;
  padding: 1.25rem 1.15rem;
  text-decoration: none;
  color: inherit;
  transition: background 0.2s ease;
}

.cms-article-list .article-item__link:hover {
  background: rgb(248 250 252 / 0.85);
}

.cms-article-list .article-item__media {
  flex: 0 0 auto;
}

.cms-article-list .article-item__thumb {
  width: 7.5rem;
  aspect-ratio: 4 / 3;
  border-radius: 5px;
  overflow: hidden;
  background: #f1f5f9;
}

.cms-article-list .article-item__thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.cms-article-list .article-item__link:hover .article-item__thumb img {
  transform: scale(1.04);
}

.cms-article-list .article-item__body {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
}

.cms-article-list .article-item__title {
  margin: 0 0 0.45rem;
  font-size: 1.125rem;
  line-height: 1.45;
  font-weight: 700;
}

.cms-article-list .article-item__title span {
  color: #334155;
  transition: color 0.2s ease;
}

.cms-article-list .article-item__link:hover .article-item__title span {
  color: var(--color-primary);
}

.cms-article-list .article-item__intro {
  margin: 0 0 0.45rem;
  font-size: 0.875rem;
  line-height: 1.57;
  color: #828a92;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.cms-article-list .article-item__readmore {
  display: inline-block;
  margin: 0 0 0.65rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--color-primary);
}

.cms-article-list .article-item__meta {
  margin-top: auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.45rem 0.75rem;
  font-size: 0.8125rem;
  line-height: 1.4;
  color: #919191;
}

.cms-article-list .article-item__tag {
  display: inline-flex;
  align-items: center;
  padding: 0.12rem 0.55rem;
  border-radius: 999px;
  background: rgb(8 145 178 / 0.1);
  color: var(--color-primary);
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease;
}

.cms-article-list .article-item__tag:hover {
  background: var(--color-primary);
  color: #fff;
}

.cms-article-list .article-item__views {
  color: #94a3b8;
}

@media (min-width: 640px) {
  .cms-article-list .article-item__link {
    gap: 1.25rem;
    padding: 1.35rem 1.5rem;
  }

  .cms-article-list .article-item__thumb {
    width: 10.5rem;
  }

  .cms-article-list .article-item__title {
    font-size: 1.25rem;
  }
}

@media (max-width: 479px) {
  .cms-article-list .article-item__link {
    flex-direction: column;
  }

  .cms-article-list .article-item__thumb {
    width: 100%;
    max-width: 100%;
  }
}

.pagination {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid #f1f5f9;
}

.pagination a,
.pagination span {
  min-width: 2.25rem;
  height: 2.25rem;
  padding: 0 0.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
}

.pagination a {
  border: 1px solid #e2e8f0;
  color: var(--color-text-main);
  background: #fff;
}

.pagination a:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
}

.pagination .is-current {
  background: var(--color-primary);
  color: #fff;
  border: 1px solid var(--color-primary);
}

.pagination .is-ellipsis {
  border: none;
  color: var(--color-text-muted);
  font-weight: 500;
}

.info-list-page .info-list-main .pagination {
  justify-content: center;
}

.card-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 768px) {
  .card-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.stat-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 640px) {
  .stat-cards {
    grid-template-columns: repeat(3, 1fr);
  }
}

.stat-card {
  border-radius: 1rem;
  border: 1px solid #e2e8f0;
  background: #fff;
  padding: 1.25rem 1.35rem;
  box-shadow: 0 4px 14px rgb(15 23 42 / 0.06);
}

.stat-card strong {
  display: block;
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--color-primary);
  margin-bottom: 0.25rem;
}

.stat-card span {
  font-size: 0.9rem;
  color: var(--color-text-muted);
}

/* Services section top border */
#services {
  border-top: 1px solid #f1f5f9;
}

/* Body offset when nav fixed */
body.nav-pad {
  padding-top: 0;
}


/* CMS team list/detail */
.team-list-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .team-list-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1180px) {
  .team-list-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.team-list-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 1.35rem;
  overflow: hidden;
  box-shadow: 0 14px 32px rgb(15 23 42 / 0.07);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.team-list-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 48px rgb(8 145 178 / 0.13);
}

.team-list-photo {
  display: block;
  aspect-ratio: 4 / 5;
  background: #f1f5f9;
  overflow: hidden;
}

.team-list-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}

.team-list-card:hover .team-list-photo img {
  transform: scale(1.04);
}

.team-list-body {
  padding: 1.35rem 1.4rem 1.5rem;
}

.team-list-body h3 {
  margin: 0 0 0.45rem;
  font-size: 1.15rem;
  line-height: 1.35;
}

.team-list-body h3 a {
  color: var(--color-text-main);
  text-decoration: none;
}

.team-list-role {
  margin: 0 0 0.65rem;
  color: var(--color-primary);
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.55;
}

.team-list-excerpt {
  margin: 0 0 1rem;
  color: var(--color-text-muted);
  font-size: 0.9rem;
  line-height: 1.7;
}

.team-detail-hero {
  position: relative;
  padding: 3rem 0;
  background: linear-gradient(145deg, #ecfeff 0%, #f8fafc 55%, #fff 100%);
  overflow: hidden;
}

.team-detail-hero::after {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  right: -120px;
  top: -160px;
  border-radius: 9999px;
  background: radial-gradient(circle, rgb(8 145 178 / 0.16), transparent 68%);
  pointer-events: none;
}

.team-detail-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 2rem;
  align-items: center;
  margin-top: 1.5rem;
}

@media (min-width: 900px) {
  .team-detail-hero-grid {
    grid-template-columns: minmax(260px, 38%) 1fr;
    gap: 3rem;
  }
}

.team-detail-photo {
  border-radius: 1.5rem;
  overflow: hidden;
  background: #e2e8f0;
  box-shadow: 0 24px 54px rgb(15 23 42 / 0.13);
  border: 5px solid #fff;
}

.team-detail-photo img {
  width: 100%;
  height: auto;
  max-height: 620px;
  object-fit: cover;
  display: block;
}

.team-detail-intro h1 {
  margin: 0.75rem 0 1rem;
  font-size: clamp(2rem, 4vw, 3.75rem);
  line-height: 1.15;
  color: var(--color-text-main);
}

.team-detail-role {
  margin: 0 0 0.75rem;
  color: var(--color-primary);
  font-weight: 800;
  line-height: 1.65;
}

.team-detail-summary {
  margin: 0 0 1.5rem;
  color: var(--color-text-muted);
  line-height: 1.8;
  font-size: 1.05rem;
}

.team-detail-body-wrap {
  max-width: 980px;
}

.team-detail-body {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 1.35rem;
  padding: clamp(1.25rem, 3vw, 2.25rem);
  box-shadow: 0 16px 34px rgb(15 23 42 / 0.06);
  color: var(--color-text-main);
  line-height: 1.85;
}

.team-detail-body img {
  max-width: 100%;
  height: auto;
  border-radius: 1rem;
}

.team-detail-body h1,
.team-detail-body h2,
.team-detail-body h3 {
  line-height: 1.35;
  color: var(--color-text-main);
}

.team-detail-actions {
  margin-top: 1.5rem;
  text-align: center;
}

/* 专家详情：正文为后台粘贴的 lavida-expert-card，不再重复展示封面图 */
.expert-detail-page {
  padding: 0 0 3rem;
  background: #f8fafc;
}

.expert-detail-page > .container {
  padding-top: 1.75rem;
}

.expert-detail-content {
  margin-bottom: 2rem;
}

.expert-detail-content .lavida-expert-card {
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.expert-detail-actions {
  text-align: center;
  padding-bottom: 0.5rem;
}

/* 生殖资讯列表 */
.articles-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
}

.article-card {
  border: 1px solid #e2e8f0;
  border-radius: 1rem;
  background: #fff;
  transition: box-shadow 0.25s ease, border-color 0.25s ease;
}

.article-card:hover {
  border-color: #cbd5e1;
  box-shadow: 0 12px 32px rgb(15 23 42 / 0.08);
}

.article-card-link {
  display: block;
  padding: 1.25rem 1.35rem;
  text-decoration: none;
  color: inherit;
}

.article-card-title {
  margin: 0 0 0.35rem;
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--color-text-main);
  line-height: 1.4;
}

.article-card-sub {
  margin: 0 0 0.5rem;
  font-size: 0.8125rem;
  color: var(--color-primary);
  font-weight: 600;
}

.article-card-excerpt {
  margin: 0 0 0.75rem;
  font-size: 0.875rem;
  line-height: 1.65;
  color: #64748b;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}

.article-card-more {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--color-primary);
}

.info-cms-section {
  padding-top: 2.5rem;
  padding-bottom: 3.5rem;
}

.info-article-card {
  overflow: hidden;
}

.info-article-card-link {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 0;
}

.info-article-card-media {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #f1f5f9;
}

.info-article-card-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.info-article-card:hover .info-article-card-media img {
  transform: scale(1.03);
}

.info-article-card-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 1.25rem 1.35rem 1.35rem;
}

.info-article-card-body .article-card-excerpt {
  flex: 1;
}

@media (max-width: 767px) {
  .footer {
    padding: 2.75rem 0 1.75rem;
  }

  .footer-grid {
    gap: 2rem;
    margin-bottom: 2rem;
  }

  .footer-col h4 {
    margin-bottom: 1rem;
  }

  .footer-brand {
    margin-bottom: 1rem;
  }

  .footer-lede {
    margin-bottom: 1rem;
  }

  .footer-copy {
    padding-top: 0.25rem;
  }
}

.cms-prose {
  max-width: 48rem;
  margin: 0 auto;
  line-height: 1.75;
  color: #334155;
}

.cms-prose h3 {
  margin: 1.5rem 0 0.75rem;
  font-size: 1.125rem;
  color: var(--color-text-main);
}

.cms-prose p,
.cms-prose li {
  font-size: 0.9375rem;
}

.cms-prose ul,
.cms-prose ol {
  padding-left: 1.25rem;
  margin: 0.75rem 0 1rem;
}

.cms-prose li + li {
  margin-top: 0.35rem;
}

/* About single page (companycms_single_about) */
.container--about-wide {
  max-width: 96rem;
}

.about-cms-page .about-cms-hero {
  background: linear-gradient(135deg, #ecfeff 0%, #fff 55%, #f8fafc 100%);
}

.about-cms-hero-grid {
  display: grid;
  gap: 1.5rem;
}

.about-cms-hero-text {
  max-width: none;
}

.about-cms-hero-subtitle {
  max-width: 52rem;
}

.about-cms-shell {
  position: relative;
  padding: 0.25rem 0 1.5rem;
}

.about-page-nav {
  display: flex;
  gap: 0.5rem;
}

.about-page-nav--mobile {
  flex-wrap: nowrap;
  overflow-x: auto;
  padding-bottom: 0.25rem;
  margin-bottom: 0.75rem;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.about-page-nav--mobile::-webkit-scrollbar {
  display: none;
}

.about-page-nav--mobile a {
  flex: 0 0 auto;
  padding: 0.5rem 0.875rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: #0f766e;
  text-decoration: none;
  white-space: nowrap;
  background: #fff;
  border: 1px solid #99f6e4;
  border-radius: 999px;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.about-page-nav--mobile a:hover {
  background: #ccfbf1;
}

.about-page-nav--float {
  display: none;
  flex-direction: column;
  gap: 0.2rem;
  position: fixed;
  top: 50%;
  left: max(0.75rem, calc(50% - var(--max-w) / 2 - 11.25rem));
  z-index: 35;
  width: 10rem;
  max-width: 10rem;
  padding: 0.75rem 0.65rem;
  background: rgba(255, 255, 255, 0.48);
  border: 1px solid rgba(226, 232, 240, 0.4);
  border-radius: 0.875rem;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.06);
  transform: translateY(-50%);
  pointer-events: auto;
}

@media (min-width: 1320px) {
  .about-page-nav--mobile {
    display: none;
  }

  .about-page-nav--float {
    display: flex;
  }
}

.about-page-nav__title {
  margin: 0 0 0.35rem;
  padding: 0 0.35rem;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #94a3b8;
}

.about-page-nav--float a {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.45rem 0.4rem;
  font-size: 0.8125rem;
  font-weight: 600;
  line-height: 1.35;
  color: #334155;
  text-decoration: none;
  border-radius: 0.5rem;
  transition: background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.about-page-nav--float a span {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  width: 1.375rem;
  height: 1.375rem;
  font-size: 0.6875rem;
  font-weight: 800;
  color: var(--color-primary);
  background: rgba(236, 254, 255, 0.65);
  border-radius: 999px;
}

.about-page-nav--float a:hover {
  color: var(--color-primary);
  background: rgba(240, 253, 250, 0.55);
}

.about-page-nav--float a.is-active,
.about-page-nav--mobile a.is-active {
  color: var(--color-primary);
}

.about-page-nav--float a.is-active {
  background: rgba(236, 254, 255, 0.62);
}

.about-page-nav--float a.is-active span {
  color: #fff;
  background: var(--color-primary);
}

.about-page-nav--mobile a.is-active {
  background: #ccfbf1;
  border-color: var(--color-primary);
  box-shadow: 0 4px 12px rgba(8, 145, 178, 0.12);
}

.about-cms-cover img {
  width: 100%;
  max-height: 420px;
  object-fit: cover;
  border-radius: 1rem;
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.08);
}

.about-cms-body {
  position: relative;
  min-width: 0;
}

.about-cms-page .about-cms-body > .about-cms-section.section--muted {
  border-radius: 1rem;
  overflow: hidden;
}

.about-cms-page .about-cms-body .about-cms-section {
  padding: clamp(2rem, 3.5vw, 3rem) 0;
}

.about-cms-page .about-cms-body .about-cms-section--intro {
  padding-top: 0.5rem;
}

.about-cms-page .about-cms-body .about-cms-section:last-child {
  padding-bottom: 0.5rem;
}

.about-cms-page .about-cms-body .section-header {
  margin-bottom: clamp(1.35rem, 2.5vw, 2rem);
}

.about-cms-page .about-cms-body .section-lede {
  max-width: 40rem;
}

.about-cms-page .about-cms-body .about-cms-section.section--muted {
  padding-left: clamp(0.85rem, 2vw, 1.25rem);
  padding-right: clamp(0.85rem, 2vw, 1.25rem);
  background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
  border: 1px solid #e2e8f0;
  border-radius: 0.875rem;
}

.about-cms-page .about-expert-spotlight--featured {
  padding: clamp(1.25rem, 2.5vw, 2rem);
}

.about-cms-page .about-tech-simple-card {
  background: #fff;
}

.about-map--loading {
  background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
}

.about-map--loading::after {
  content: "地图加载中…";
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  font-weight: 600;
  color: #64748b;
}

.about-map--error::after {
  content: "地图暂时无法加载";
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  font-weight: 600;
  color: #94a3b8;
}

.about-img-frame--map {
  position: relative;
}

.about-cms-page .about-env-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

@media (min-width: 768px) {
  .about-cms-page .about-env-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.about-page-content {
  max-width: none;
  margin: 0;
}

.about-page-block {
  margin-bottom: 2.5rem;
  padding: clamp(1.25rem, 2vw, 2.25rem);
  border-radius: 1.125rem;
  background: #fff;
  border: 1px solid #e2e8f0;
  box-shadow: 0 12px 36px rgba(15, 23, 42, 0.04);
}

.about-page-block:last-child {
  margin-bottom: 0;
}

.about-page-block--accent {
  background: linear-gradient(180deg, #f0fdfa 0%, #fff 100%);
  border-color: #ccfbf1;
}

.about-page-block--soft {
  background: #f8fafc;
  border-color: #e2e8f0;
}

.about-page-section {
  margin-bottom: 0;
}

.about-page-section--highlight,
.about-page-section--muted,
.about-page-section--location {
  padding: 0;
  border: none;
  border-radius: 0;
  background: transparent;
}

.about-page-section-head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 0.75rem 1.5rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #e2e8f0;
}

.about-page-section-head h2 {
  flex: 1 1 16rem;
}

.about-page-kicker {
  display: inline-block;
  margin-bottom: 0.5rem;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--color-primary);
  text-transform: uppercase;
}

.about-page-section h2 {
  margin: 0;
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--color-text-main);
}

.about-page-lede {
  font-size: 1.0625rem;
  line-height: 1.8;
  color: #0f172a;
}

.about-page-section p {
  margin: 0.75rem 0;
  line-height: 1.8;
  color: #334155;
}

.about-page-intro-grid {
  display: grid;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

@media (min-width: 960px) {
  .about-page-intro-grid {
    grid-template-columns: 1.4fr 1fr;
    align-items: start;
  }
}

.about-page-highlight-list {
  margin: 1rem 0 0;
  padding-left: 1.25rem;
  color: #475569;
}

.about-page-highlight-list li + li {
  margin-top: 0.4rem;
}

.about-page-chip-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1.25rem 0 0;
  padding: 0;
  list-style: none;
}

.about-page-chip-list li {
  padding: 0.4rem 0.75rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: #0f766e;
  background: #ecfeff;
  border: 1px solid #99f6e4;
  border-radius: 999px;
}

.about-page-info-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
  margin: 1.25rem 0;
}

@media (min-width: 768px) {
  .about-page-info-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.about-page-info-card {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding: 0.875rem 1rem;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 0.75rem;
}

.about-page-info-card strong {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #64748b;
}

.about-page-info-card span {
  font-size: 0.9375rem;
  font-weight: 600;
  line-height: 1.45;
  color: #0f172a;
}

.about-page-card--wide {
  grid-column: 1 / -1;
}

@media (min-width: 1280px) {
  .about-page-card--wide {
    grid-column: span 2;
  }
}

.about-page-block--cta,
.about-page-cta {
  margin-top: 0;
  padding: clamp(1.75rem, 3vw, 2.5rem);
  text-align: center;
  border: none;
  background: linear-gradient(135deg, #0891b2 0%, #0e7490 100%);
  color: #fff;
  box-shadow: 0 16px 40px rgba(8, 145, 178, 0.25);
}

.about-page-block--cta h2,
.about-page-cta h2 {
  margin: 0 0 0.5rem;
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  letter-spacing: 0.02em;
  color: #fff;
}

.about-page-block--cta p,
.about-page-cta p {
  margin: 0;
  opacity: 0.92;
  color: #fff;
}

.about-page-subtitle {
  margin: 0 0 0.5rem;
  font-size: 1.125rem;
  color: var(--color-text-main);
}

.about-page-cert-note {
  margin: 0 0 1rem;
  font-size: 0.875rem;
  color: #64748b;
}

.about-page-cert-block {
  padding-top: 1.5rem;
  border-top: 1px solid #ccfbf1;
}

.about-page-cert-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

@media (min-width: 768px) {
  .about-page-cert-gallery {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 1280px) {
  .about-page-cert-gallery {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }
}

.about-page-cert-item {
  margin: 0;
  overflow: hidden;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 0.75rem;
  box-shadow: 0 6px 20px rgba(15, 23, 42, 0.05);
}

.about-page-cert-item img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 10 / 7;
  object-fit: cover;
  background: #f8fafc;
}

.about-page-cert-item figcaption {
  padding: 0.65rem 0.75rem;
  font-size: 0.8125rem;
  font-weight: 600;
  text-align: center;
  color: #334155;
  background: #f8fafc;
  border-top: 1px solid #e2e8f0;
}

.about-page-section--location {
  padding: 0;
  border-radius: 0;
  background: transparent;
  border: none;
}

.about-page-location-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 960px) {
  .about-page-location-grid {
    grid-template-columns: 1.1fr 0.9fr;
    align-items: start;
  }
}

.about-page-address-list {
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
}

.about-page-address-list li {
  padding: 0.65rem 0;
  border-bottom: 1px dashed #e2e8f0;
  font-size: 0.9375rem;
  line-height: 1.6;
  color: #334155;
}

.about-page-address-list li:last-child {
  border-bottom: none;
}

.about-page-location-visual {
  text-align: center;
}

.about-page-map-img {
  width: 100%;
  height: auto;
  border-radius: 0.875rem;
  border: 1px solid #99f6e4;
  box-shadow: 0 12px 32px rgba(8, 145, 178, 0.12);
}

.about-page-map-caption {
  margin: 0.5rem 0 0;
  font-size: 0.8125rem;
  color: #64748b;
}

.about-page-section-lead {
  margin: -0.25rem 0 1.25rem;
  font-size: 1rem;
  line-height: 1.75;
  color: #475569;
}

.about-page-env-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

@media (min-width: 768px) {
  .about-page-env-gallery {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }

  .about-page-env-item--wide {
    grid-column: span 3;
  }

  .about-page-env-item:not(.about-page-env-item--wide) {
    grid-column: span 2;
  }
}

.about-page-env-item {
  margin: 0;
  overflow: hidden;
  border-radius: 0.875rem;
  border: 1px solid #e2e8f0;
  background: #fff;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
}

.about-page-env-item--wide {
  grid-column: span 2;
}

.about-page-env-item img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: #f1f5f9;
}

.about-page-env-item figcaption {
  padding: 0.6rem 0.75rem;
  font-size: 0.8125rem;
  font-weight: 600;
  text-align: center;
  color: #334155;
  background: #f8fafc;
}

.about-page-stat-grid--compact {
  margin: 0;
}

.about-cms-link-card--cta {
  width: 100%;
  font: inherit;
  cursor: pointer;
  appearance: none;
}

.about-cms-hero .page-header-inner.container {
  max-width: 96rem;
}

.about-cms-links .container--about-wide {
  max-width: 96rem;
}

.about-page-stat-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin: 1.5rem 0;
}

@media (min-width: 768px) {
  .about-page-stat-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.about-page-stat {
  padding: 1rem;
  text-align: center;
  background: #fff;
  border-radius: 0.75rem;
  border: 1px solid #e2e8f0;
}

.about-page-stat-num {
  display: block;
  font-size: 1.375rem;
  font-weight: 800;
  color: var(--color-primary);
}

.about-page-stat-label {
  display: block;
  margin-top: 0.25rem;
  font-size: 0.8125rem;
  color: #64748b;
}

.about-page-cert-list {
  margin: 1rem 0 0;
  padding-left: 1.25rem;
  color: #475569;
}

.about-page-cert-list li + li {
  margin-top: 0.35rem;
}

.about-page-callout {
  margin-top: 1.25rem;
  padding: 1.25rem 1.5rem;
  border-left: 4px solid var(--color-primary);
  background: #fff;
  border-radius: 0 0.75rem 0.75rem 0;
}

.about-page-callout h3 {
  margin: 0 0 0.5rem;
  font-size: 1.125rem;
}

.about-page-card-grid {
  display: grid;
  gap: 1rem;
}

@media (min-width: 768px) {
  .about-page-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1280px) {
  .about-page-card-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.about-page-card {
  padding: 1.25rem 1.5rem;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 0.875rem;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.04);
}

.about-page-card h3 {
  margin: 0 0 0.35rem;
  font-size: 1.0625rem;
  color: var(--color-text-main);
}

.about-page-card-role {
  margin: 0 0 0.75rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-primary);
}

.about-page-card p:last-child {
  margin-bottom: 0;
  font-size: 0.9375rem;
  line-height: 1.7;
}

.about-page-tech-grid {
  display: grid;
  gap: 1rem;
}

@media (min-width: 768px) {
  .about-page-tech-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1280px) {
  .about-page-tech-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.about-page-tech-item {
  padding: 1.125rem 1.25rem;
  background: #fff;
  border-radius: 0.75rem;
  border: 1px solid #e2e8f0;
}

.about-page-tech-item h3 {
  margin: 0 0 0.5rem;
  font-size: 1rem;
  color: var(--color-text-main);
}

.about-page-tech-item p {
  margin: 0;
  font-size: 0.9375rem;
}

.about-page-tech-item--wide {
  grid-column: 1 / -1;
}

.about-cms-links-inner {
  display: grid;
  gap: 1rem;
}

@media (min-width: 768px) {
  .about-cms-links-inner {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.about-cms-link-card {
  display: block;
  padding: 1.25rem 1.5rem;
  text-align: center;
  font-weight: 600;
  color: var(--color-primary);
  background: #f0fdfa;
  border: 1px solid #99f6e4;
  border-radius: 0.75rem;
  transition: background 0.2s ease, transform 0.2s ease;
}

.about-cms-link-card:hover {
  background: #ccfbf1;
  transform: translateY(-2px);
}

.about-more-link {
  margin-top: 1.25rem;
}

.about-more-link a {
  font-weight: 600;
  color: var(--color-primary);
}

.about-more-link a:hover {
  text-decoration: underline;
}

/* About page — simplified layout (companycms_single_about) */
.about-cms-page .about-cms-hero {
  background: linear-gradient(180deg, #fff 0%, #f8fafc 100%);
}

.about-cms-page .about-cms-hero .page-subtitle {
  max-width: 36rem;
}

/* .about-cms-section + .about-cms-section {
  border-top: 1px solid #f1f5f9;
} */

.about-cert-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

@media (min-width: 768px) {
  .about-cert-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 1100px) {
  .about-cert-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
}

.about-cert-grid__item {
  margin: 0;
  overflow: hidden;
  border: 1px solid #e2e8f0;
  border-radius: 0.75rem;
  background: #fff;
}

.about-cert-grid__item img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: auto;
  object-fit: contain;
  padding: 0.65rem;
  background: #f8fafc;
}

.about-cert-grid__item figcaption {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 0.65rem 0.75rem;
  font-size: 0.8125rem;
  text-align: center;
  color: #334155;
  background: #f8fafc;
  border-top: 1px solid #e2e8f0;
}

.about-cert-grid__item figcaption strong {
  font-weight: 700;
  color: #0f172a;
}

.about-cert-grid__item figcaption span {
  font-size: 0.75rem;
  line-height: 1.45;
  color: #64748b;
}

.about-expert-spotlight__photo {
  display: block;
  width: 100%;
  max-width: 11rem;
  height: auto;
  margin: 0 auto;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: top center;
  border-radius: 0.875rem;
  border: 1px solid #e2e8f0;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.08);
}

.about-expert-spotlight {
  display: grid;
  gap: 1.5rem;
  align-items: center;
  max-width: 52rem;
  margin: 0 auto;
  padding: 1.5rem;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 1rem;
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.05);
}

@media (min-width: 768px) {
  .about-expert-spotlight {
    grid-template-columns: 11rem minmax(0, 1fr);
    gap: 2rem;
    padding: 2rem;
  }
}

@media (min-width: 768px) {
  .about-env-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.about-cms-page .about-cms-hero {
  padding: 0.75rem 0 0.25rem;
  background: transparent;
  border-bottom: none;
}

.about-cms-page.page-main {
  padding-top: 4.75rem;
}

.about-page-topbar,
.cms-page-topbar {
  background: #fff;
  border-bottom: 1px solid #f1f5f9;
}

.about-page-topbar__crumb {
  padding-top: 0.75rem;
}

.cms-page-topbar__header {
  padding-bottom: 1.65rem;
}

.cms-page-topbar__header .page-title {
  margin: 0 0 0.5rem;
}

.cms-page-topbar__header .page-subtitle {
  margin: 0;
}

.about-page-topbar__header {
  max-width: 44rem;
  margin: 0 auto;
  padding: 1.35rem 0 1.65rem;
  text-align: center;
}

.about-page-topbar__header .pill {
  margin-bottom: 0.65rem;
}

.about-page-topbar__title {
  margin-bottom: 0.75rem;
  font-size: clamp(1.625rem, 3.2vw, 2.375rem);
  line-height: 1.22;
  letter-spacing: -0.01em;
}

.about-page-topbar__header .rule {
  width: 4rem;
  margin: 0 auto 0.75rem;
}

.about-page-topbar__header .section-lede {
  margin: 0 auto;
  max-width: 36rem;
  font-size: 0.9375rem;
  line-height: 1.65;
  color: #64748b;
}

.about-cms-body .about-page-nav--mobile {
  margin-bottom: 0.75rem;
  padding-bottom: 0.15rem;
}

.about-breadcrumb {
  margin-bottom: 0;
}

.about-cms-section--intro .about-copy a {
  color: var(--color-primary);
  font-weight: 600;
  text-decoration: none;
}

.about-cms-section--intro .about-copy a:hover {
  text-decoration: underline;
}

.about-cms-page [id^="about-"] {
  scroll-margin-top: 5.75rem;
}

.breadcrumbs--about {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0;
  margin: 0;
  padding: 0.45rem 0.95rem 0.45rem 0.75rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: #64748b;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 999px;
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.04);
}

.breadcrumbs--about a {
  color: var(--color-primary);
  text-decoration: none;
}

.breadcrumbs--about a:hover {
  color: var(--color-hover);
  text-decoration: underline;
}

.breadcrumbs--about li:not(:last-child)::after {
  content: "›";
  margin: 0 0.45rem;
  color: #cbd5e1;
  font-weight: 400;
}

.breadcrumbs--about li[aria-current="page"] {
  color: #334155;
  font-weight: 600;
}

.about-expert-spotlight__headline {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.35rem 1.25rem;
  margin-bottom: 1rem;
}

.about-expert-spotlight__headline .about-expert-spotlight__name {
  margin: 0;
  flex: 0 1 auto;
}

.about-expert-spotlight__rank {
  margin: 0;
  flex: 1 1 12rem;
  font-size: clamp(1.0625rem, 1.8vw, 1.3125rem);
  font-weight: 700;
  line-height: 1.45;
  color: var(--color-primary);
  text-align: right;
}

.about-expert-spotlight__highlights {
  margin: 0;
  padding: 0;
  list-style: none;
}

.about-expert-spotlight__highlights--cols {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.15rem 1.5rem;
}

@media (min-width: 640px) {
  .about-expert-spotlight__highlights--cols {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.about-expert-spotlight__highlights--cols li {
  position: relative;
  padding: 0.4rem 0 0.4rem 1.1rem;
  font-size: 0.9375rem;
  font-weight: 600;
  line-height: 1.55;
  color: #475569;
}

.about-expert-spotlight__highlights--cols li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.78rem;
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 999px;
  background: var(--color-primary);
}

.about-expert-spotlight--featured .about-expert-spotlight__rank {
  font-size: clamp(1.125rem, 2vw, 1.4375rem);
}

.about-expert-spotlight--featured .about-expert-spotlight__highlights--cols li {
  font-size: clamp(0.9375rem, 1.5vw, 1.0625rem);
}

.about-expert-spotlight--advisor {
  max-width: 52rem;
}

.about-expert-spotlight--featured {
  max-width: 72rem;
  padding: clamp(1.75rem, 3vw, 2.75rem);
}

.about-expert-spotlight--featured .about-expert-spotlight__photo {
  max-width: 100%;
  aspect-ratio: 4 / 5;
}

.about-expert-spotlight--featured .about-expert-spotlight__name {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
}

.about-expert-spotlight--featured .about-expert-spotlight__body p {
  font-size: 1.0625rem;
}

.about-expert-spotlight--featured .about-expert-spotlight__stats li {
  font-size: 1rem;
}

@media (min-width: 768px) {
  .about-expert-spotlight--featured {
    grid-template-columns: minmax(14rem, 18rem) minmax(0, 1fr);
    gap: 2.5rem;
  }
}

.about-expert-spotlight__avatar {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 8rem;
  height: 8rem;
  margin: 0 auto;
  font-size: 1.75rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: var(--color-primary);
  background: linear-gradient(135deg, #ecfeff 0%, #cffafe 100%);
  border: 2px solid #99f6e4;
  border-radius: 999px;
}

.about-expert-spotlight__role {
  margin: 0 0 0.35rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-primary);
}

.about-expert-spotlight__name {
  margin: 0 0 0.75rem;
  font-size: 1.375rem;
  color: var(--color-text-main);
}

.about-expert-spotlight__subtitle {
  margin: -0.25rem 0 1rem;
  font-size: clamp(1rem, 1.6vw, 1.1875rem);
  font-weight: 700;
  line-height: 1.5;
  color: var(--color-primary);
}

.about-expert-spotlight--featured .about-expert-spotlight__subtitle {
  font-size: clamp(1.0625rem, 1.8vw, 1.3125rem);
}

.about-expert-spotlight__body p {
  margin: 0 0 0.75rem;
  line-height: 1.75;
  color: #475569;
}

.about-expert-spotlight__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
  margin: 0 0 1rem;
  padding: 0;
  list-style: none;
}

.about-expert-spotlight__stats li {
  font-size: 0.875rem;
  color: #334155;
}

.about-expert-spotlight__stats strong {
  color: var(--color-primary);
}

.about-tech-simple-grid {
  display: grid;
  gap: 1rem;
}

@media (min-width: 768px) {
  .about-tech-simple-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .about-tech-simple-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.about-cms-page .about-tech-simple-grid {
  gap: 0.875rem;
}

.about-tech-simple-card {
  padding: 1.15rem;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 0.75rem;
}

.about-tech-simple-card h3 {
  margin: 0 0 0.45rem;
  font-size: 0.9375rem;
  color: var(--color-text-main);
}

.about-tech-simple-card p {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.6;
  color: #64748b;
}

.about-env-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

@media (min-width: 768px) {
  .about-env-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .about-env-grid__item--wide {
    grid-column: span 2;
  }
}

.about-env-grid__item {
  margin: 0;
  overflow: hidden;
  border-radius: 0.75rem;
  border: 1px solid #e2e8f0;
  background: #fff;
}

.about-env-grid__item img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: #f1f5f9;
}

.about-env-grid__item figcaption {
  padding: 0.55rem 0.65rem;
  font-size: 0.8125rem;
  font-weight: 600;
  text-align: center;
  color: #334155;
  background: #f8fafc;
}

.about-more-link--center {
  text-align: center;
}

.about-cms-more-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.5rem 1rem;
  padding: 0.5rem 0 1rem;
  font-size: 0.9375rem;
}

.about-cms-more-inner a,
.about-cms-more__cta {
  font-weight: 600;
  color: var(--color-primary);
  text-decoration: none;
  background: none;
  border: none;
  padding: 0;
  font: inherit;
  cursor: pointer;
}

.about-cms-more-inner a:hover,
.about-cms-more__cta:hover {
  text-decoration: underline;
}

.about-cms-more-inner span {
  color: #cbd5e1;
}
