/* 对齐门户产品页风格：红黑科技风 / 扁平卡片 / 分区节奏 */
:root {
  --primary: hsl(351 79% 54%);
  --primary-light: hsl(351 79% 64%);
  --foreground: hsl(0 0% 7%);
  --muted: hsl(215 8% 46%);
  --card: #fff;
  --dark: hsl(0 0% 7%);
  --radius: 0.5rem;
  --max-w: 80rem;
  /* 门户固定顶栏高度由 tokens.css --header-h 提供，此处不再覆盖 */
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: "Noto Sans SC", "Microsoft YaHei", -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--foreground);
  line-height: 1.65;
  background: #fff;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.25rem;
}
@media (min-width: 768px) {
  .container { padding: 0 2rem; }
}

/* ── Header ── */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 200;
  height: var(--header-h);
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid hsl(214 13% 90% / 0.8);
}
.site-header .inner {
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-weight: 700;
  color: var(--foreground);
  white-space: nowrap;
}
.brand-mark {
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 0.4rem;
  background: var(--primary);
  box-shadow: 0 8px 16px hsl(351 79% 54% / 0.28);
}
.nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.15rem;
}
.nav a {
  padding: 0.5rem 0.85rem;
  border-radius: 999px;
  font-size: 0.8125rem;
  color: hsl(0 0% 7% / 0.72);
  transition: 0.2s ease;
}
.nav a:hover,
.nav a.active {
  color: var(--primary);
  background: hsl(351 79% 54% / 0.08);
}

/* ── Buttons（对齐产品页） ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.25;
  border-radius: 0.375rem;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: transform 0.25s cubic-bezier(0.22,1,0.36,1), box-shadow 0.25s, background 0.25s, border-color 0.25s;
}
.btn::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 30%, hsl(0 0% 100% / 0.22) 50%, transparent 70%);
  transform: translateX(-100%);
  transition: transform 0.55s ease;
  pointer-events: none;
}
.btn:hover::after { transform: translateX(100%); }
.btn:hover { transform: translateY(-2px) scale(1.03); }
.btn-primary {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 10px 15px hsl(351 79% 54% / 0.25);
}
.btn-primary:hover { box-shadow: 0 10px 25px hsl(351 79% 54% / 0.4); color: #fff; }
.btn-ghost {
  background: hsl(0 0% 100% / 0.05);
  color: #fff;
  border: 1px solid hsl(0 0% 100% / 0.3);
  backdrop-filter: blur(8px);
}
.btn-ghost:hover {
  background: hsl(0 0% 100% / 0.1);
  border-color: hsl(0 0% 100% / 0.5);
  color: #fff;
}
.btn-outline {
  background: #fff;
  color: var(--primary);
  border: 1px solid hsl(351 79% 54% / 0.28);
}
.btn-outline:hover {
  background: hsl(351 79% 54% / 0.06);
  color: var(--primary);
}
.btn-lg { padding: 1rem 2.5rem; }
.btn-row { display: flex; flex-wrap: wrap; gap: 1rem; align-items: center; }

/* ── Hero（暂无背景图：纯 CSS 氛围层，后续可往 .hero-photo 加图） ── */
.hero {
  position: relative;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(900px 420px at 85% 15%, hsl(351 79% 54% / 0.28), transparent 55%),
    radial-gradient(700px 380px at 10% 90%, hsl(351 79% 40% / 0.16), transparent 50%),
    linear-gradient(160deg, #0a0a0a 0%, #141018 48%, #1a0f12 100%);
  margin-top: var(--header-h);
  min-height: 28rem;
}
.hero-photo {
  position: absolute;
  inset: 0;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  opacity: 0; /* 有背景图时再设 opacity / background-image */
  pointer-events: none;
}
.hero-photo.has-image { opacity: 0.45; }
.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(8,8,10,.94) 0%, rgba(8,8,10,.78) 42%, rgba(8,8,10,.35) 100%),
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 47px,
      hsl(0 0% 100% / 0.025) 47px,
      hsl(0 0% 100% / 0.025) 48px
    ),
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 47px,
      hsl(0 0% 100% / 0.025) 47px,
      hsl(0 0% 100% / 0.025) 48px
    );
  pointer-events: none;
}
.hero-orb1,
.hero-orb2 {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
}
.hero-orb1 {
  top: -6rem; right: -4rem;
  width: 28rem; height: 28rem;
  background: hsl(351 79% 54% / 0.28);
}
.hero-orb2 {
  bottom: -5rem; left: -3rem;
  width: 20rem; height: 20rem;
  background: hsl(351 79% 54% / 0.14);
}
.hero-inner {
  position: relative;
  z-index: 2;
  padding: 5.5rem 0 4.5rem;
  max-width: 52rem;
}
.hero-label {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}
.hero-label-line {
  width: 2.5rem;
  height: 2px;
  background: var(--primary);
}
.hero-label-text {
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: hsl(351 79% 54% / 0.95);
}
.hero h1 {
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}
.hero h1 .accent { color: var(--primary); }
.hero-desc {
  font-size: 1.125rem;
  line-height: 1.7;
  color: hsl(0 0% 100% / 0.72);
  max-width: 42rem;
  margin-bottom: 2rem;
}
.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 2rem;
}
.hero-tag {
  padding: 0.4rem 0.95rem;
  border-radius: 999px;
  border: 1px solid hsl(351 79% 54% / 0.35);
  background: hsl(351 79% 54% / 0.12);
  color: #fff;
  font-size: 0.8125rem;
  font-weight: 500;
}

/* ── Sections ── */
.section {
  padding: 5rem 0;
  position: relative;
}
.section-muted { background: hsl(210 13% 97%); }
.section-dark {
  background: linear-gradient(135deg, #0f172a, #1e1b4b 55%, #7f1d1d);
  color: #fff;
}
.section-head {
  text-align: center;
  margin-bottom: 3rem;
}
.section-head.left { text-align: left; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.85rem;
  color: var(--primary);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.eyebrow-line {
  width: 1.75rem;
  height: 2px;
  background: var(--primary);
}
.section-head h2 {
  font-size: clamp(1.5rem, 3.2vw, 2.25rem);
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 0.75rem;
}
.section-head h2 .accent { color: var(--primary); }
.section-head p,
.section-lead {
  margin: 0.75rem auto 0;
  max-width: 42rem;
  color: var(--muted);
  font-size: 1.05rem;
}
.section-head.left p { margin-left: 0; }
.section-dark .section-head p { color: hsl(0 0% 100% / 0.7); }

/* 概述：左图右文 / 上图下文 */
.layout-split {
  display: grid;
  gap: 1.75rem;
  align-items: start;
}
@media (min-width: 1024px) {
  .layout-split {
    grid-template-columns: 1.2fr 0.8fr;
    gap: 2rem;
  }
  .layout-split .figure { margin-bottom: 0; }
}
.prose-block {
  padding: 1.5rem 1.6rem;
  border-radius: var(--radius);
  border: 1px solid hsl(214 13% 90%);
  background: #fff;
  box-shadow: 0 10px 24px hsl(0 0% 0% / 0.04);
}
.prose-block p {
  margin: 0;
  color: var(--muted);
  line-height: 1.9;
  font-size: 0.98rem;
}
.prose {
  color: var(--muted);
  max-width: 48rem;
  margin: 1.25rem auto 0;
  text-align: center;
  line-height: 1.9;
  font-size: 1rem;
}

/* ── Figure ── */
.figure {
  margin: 0 0 1.5rem;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid hsl(214 13% 90%);
  background: #fff;
  box-shadow: 0 12px 30px hsl(0 0% 0% / 0.06);
}
.figure img {
  width: 100%;
  height: auto;
  max-height: none;
  object-fit: contain;
  object-position: center top;
  display: block;
  background: hsl(210 13% 97%);
}
.figure figcaption {
  padding: 0.85rem 1.1rem;
  font-size: 0.875rem;
  color: var(--muted);
  border-top: 1px solid hsl(214 13% 92%);
  background: #fff;
}
.figure[data-priority="P0"] {
  border-color: hsl(351 79% 54% / 0.28);
  box-shadow: 0 14px 34px hsl(351 79% 54% / 0.08);
}

/* ── Cards ──
   .grid-5：一行最多 5 张，第 6 张起自动换行
   注意：#schemes 只能挂在 .grid-5 上，勿挂到外层 section（否则整节被设成 grid 会乱版） */
.grid-2 {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}
.grid-3,
.grid-4,
.grid-5 {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
  grid-auto-flow: row;
  grid-auto-rows: auto;
}
@media (min-width: 768px) {
  .grid-2 { grid-template-columns: 1.15fr 0.85fr; align-items: start; }
  .grid-3 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .grid-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .grid-5 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (min-width: 1024px) {
  .grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .grid-5 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (min-width: 1280px) {
  /* 大屏固定 5 列：超过 5 张自动换行 */
  .grid-5 {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
}

.card {
  position: relative;
  overflow: hidden;
  background: #fff;
  border: 1px solid hsl(214 13% 90%);
  border-radius: var(--radius);
  padding: 1.75rem;
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
}
.card::before {
  content: "";
  position: absolute;
  left: 0; top: 0;
  width: 4px; height: 100%;
  background: var(--primary);
  transform: translateX(-100%);
  transition: transform 0.3s;
}
.card:hover {
  transform: translateY(-6px);
  border-color: hsl(351 79% 54% / 0.3);
  box-shadow: 0 10px 15px hsl(351 79% 54% / 0.05);
}
.card:hover::before { transform: translateX(0); }
.card-num {
  font-size: 2rem;
  font-weight: 700;
  color: hsl(351 79% 54% / 0.2);
  margin-bottom: 1rem;
  transition: color 0.3s;
}
.card:hover .card-num { color: hsl(351 79% 54% / 0.4); }
.card h3 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  transition: color 0.3s;
}
.card:hover h3 { color: var(--primary); }
.card p {
  font-size: 0.875rem;
  line-height: 1.7;
  color: var(--muted);
  margin-bottom: 1.25rem;
}
.card .btn { margin-top: auto; }
.scheme-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding-top: 0;
  padding-left: 0;
  padding-right: 0;
  overflow: hidden;
}
.scheme-card .thumb {
  margin: 0 0 1.1rem;
  border-bottom: 1px solid hsl(214 13% 92%);
  background: hsl(210 13% 97%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 0.65rem 0;
  min-height: 7.5rem;
}
.scheme-card .thumb img {
  width: 100%;
  height: auto;
  max-height: 10.5rem; /* 等比缩小，不裁切 */
  object-fit: contain;
  object-position: center top;
  display: block;
}
.scheme-card .card-num,
.scheme-card h3,
.scheme-card p,
.scheme-card .btn {
  margin-left: 1.5rem;
  margin-right: 1.5rem;
}
.scheme-card .btn { margin-bottom: 1.5rem; }
.scheme-card .card-num {
  font-size: 2rem;
  line-height: 1;
  margin-bottom: 0.85rem;
  color: hsl(351 79% 54% / 0.28);
}
a.scheme-card-hit {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  text-decoration: none;
  color: inherit;
}
a.scheme-card-hit:hover,
a.scheme-card-hit:focus {
  color: inherit;
  text-decoration: none;
}
a.scheme-card-hit .scheme-card {
  flex: 1;
  width: 100%;
  height: 100%;
}
.modes-grid { margin-top: 1.25rem; }
@media (min-width: 768px) {
  /* 两种集成模式：等宽等高，避免 1.15/0.85 导致卡片大小不一 */
  .modes-grid.grid-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: stretch;
  }
  .modes-grid .card {
    height: 100%;
    display: flex;
    flex-direction: column;
  }
  .modes-grid .card p {
    flex: 1;
    margin-bottom: 0;
  }
}

.btn-outline-light {
  background: transparent;
  color: #fff;
  border: 1px solid hsl(0 0% 100% / 0.35);
}
.btn-outline-light:hover {
  background: hsl(0 0% 100% / 0.1);
  border-color: hsl(0 0% 100% / 0.55);
  color: #fff;
}

.compose-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .compose-grid.cols-2 { grid-template-columns: repeat(2, 1fr); }
  .compose-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
}

.info-card {
  position: relative;
  padding: 1.5rem 1.6rem 1.6rem;
  border-radius: 0.65rem;
  border: 1px solid hsl(214 13% 90%);
  background: linear-gradient(180deg, #fff, hsl(210 20% 99%));
  box-shadow: 0 8px 20px hsl(0 0% 0% / 0.03);
  transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s;
  overflow: hidden;
}
.info-card::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--primary);
  opacity: 0.85;
  transform: scaleY(0.28);
  transform-origin: center center;
  transition: transform 0.35s ease, width 0.35s ease, opacity 0.35s ease, box-shadow 0.35s ease;
}
.info-card:hover {
  transform: translateY(-3px);
  border-color: hsl(351 79% 54% / 0.28);
  box-shadow: 0 14px 28px hsl(351 79% 54% / 0.08);
}
.info-card:hover::after {
  transform: scaleY(1);
  width: 4px;
  opacity: 1;
  box-shadow: 0 0 14px hsl(351 79% 54% / 0.55);
}
.info-card-top {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.85rem;
}
.info-index {
  font-size: 1.25rem;
  font-weight: 700;
  color: hsl(351 79% 54% / 0.35);
  letter-spacing: 0.02em;
}
.info-label {
  display: inline-flex;
  align-items: center;
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  background: hsl(351 79% 54% / 0.1);
  color: var(--primary);
  font-size: 0.75rem;
  font-weight: 700;
}
.info-body {
  margin: 0;
  color: var(--foreground);
  font-size: 1.05rem;
  font-weight: 500;
  line-height: 1.7;
}

/* 核心能力 / 客户价值 */
.feature-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
}
.feature-card {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.25rem 1.35rem;
  border-radius: 0.65rem;
  border: 1px solid hsl(214 13% 90%);
  background: #fff;
  transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s;
}
.feature-card:hover {
  transform: translateY(-2px);
  border-color: hsl(351 79% 54% / 0.25);
  box-shadow: 0 10px 22px hsl(351 79% 54% / 0.06);
}
.feature-index {
  flex: 0 0 auto;
  width: 2.35rem;
  height: 2.35rem;
  border-radius: 0.5rem;
  display: grid;
  place-items: center;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--primary);
  background: hsl(351 79% 54% / 0.1);
  border: 1px solid hsl(351 79% 54% / 0.18);
}
.feature-text {
  margin: 0;
  color: hsl(0 0% 18%);
  font-size: 0.95rem;
  line-height: 1.75;
}
.feature-value .feature-index {
  background: hsl(351 79% 54% / 0.12);
  color: var(--primary);
}

/* 业务适配 */
.adapt-grid {
  display: grid;
  gap: 1.15rem;
  grid-template-columns: 1fr;
}
@media (min-width: 900px) {
  .adapt-grid { grid-template-columns: repeat(3, 1fr); }
}
.adapt-card {
  padding: 1.5rem 1.4rem;
  border-radius: 0.65rem;
  border: 1px solid hsl(214 13% 90%);
  background: #fff;
  box-shadow: 0 8px 18px hsl(0 0% 0% / 0.03);
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}
.adapt-card:hover {
  transform: translateY(-3px);
  border-color: hsl(351 79% 54% / 0.25);
  box-shadow: 0 12px 26px hsl(351 79% 54% / 0.07);
}
.adapt-label {
  display: inline-block;
  margin-bottom: 0.85rem;
  padding-bottom: 0.55rem;
  border-bottom: 2px solid hsl(351 79% 54% / 0.35);
  color: var(--primary);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}
.adapt-body {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.8;
}

/* 连续配图 gallery：并排/网格，弱化堆叠感；图片完整显示不裁切 */
.figure-gallery {
  margin-top: 2rem;
  padding: 1.25rem;
  border-radius: 0.85rem;
  background:
    radial-gradient(500px 180px at 10% 0%, hsl(351 79% 54% / 0.06), transparent 65%),
    linear-gradient(180deg, hsl(210 16% 97.5%), hsl(210 14% 96%));
  border: 1px solid hsl(214 13% 90%);
  display: grid;
  gap: 1.15rem;
  align-items: start;
}
.figure-gallery .figure {
  margin: 0;
  height: auto;
  display: flex;
  flex-direction: column;
  box-shadow: 0 10px 24px hsl(0 0% 0% / 0.05);
  background: #fff;
}
.figure-gallery .figure img {
  width: 100%;
  height: auto;
  max-height: none;
  object-fit: contain;
  object-position: center top;
  display: block;
  background: #fff;
}
.figure-gallery.is-pair,
.figure-gallery.is-triple,
.figure-gallery.is-quad {
  grid-template-columns: 1fr;
}
.figure-gallery.is-single .figure img {
  background: #fff;
}
@media (min-width: 900px) {
  .figure-gallery.is-pair {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.35rem;
    padding: 1.4rem;
  }
  /* 三张：上全宽 + 下两张并排，均完整显示 */
  .figure-gallery.is-triple {
    grid-template-columns: repeat(2, 1fr);
  }
  .figure-gallery.is-triple .figure:first-child {
    grid-column: 1 / -1;
  }
  .figure-gallery.is-quad {
    grid-template-columns: repeat(2, 1fr);
  }
}
.figure-gallery .figure figcaption {
  flex: 0 0 auto;
  font-size: 0.8125rem;
  text-align: center;
  background: hsl(0 0% 100% / 0.92);
}

/* CTA band */
.cta-band {
  margin-top: 2.5rem;
  padding: 2.5rem;
  border-radius: 0.75rem;
  background:
    radial-gradient(600px 220px at 90% 0%, hsl(351 79% 54% / 0.28), transparent 60%),
    linear-gradient(135deg, #0f172a, #1a1520 50%, #3f1218);
  color: #fff;
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  align-items: center;
  justify-content: space-between;
}
.cta-band h3 { margin: 0 0 0.4rem; font-size: 1.35rem; }
.cta-band p { margin: 0; color: hsl(0 0% 100% / 0.7); font-size: 0.9375rem; }

/* Footer */
.site-footer {
  padding: 2rem 0 2.5rem;
  border-top: 1px solid hsl(214 13% 92%);
  color: var(--muted);
  font-size: 0.8125rem;
  background: #fff;
}
.site-footer .inner {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: space-between;
}

/* Reveal */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.8s cubic-bezier(0.22,1,0.36,1), transform 0.8s cubic-bezier(0.22,1,0.36,1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 900px) {
  .site-header { height: auto; min-height: var(--header-h); }
  .site-header .inner {
    height: auto;
    padding: 0.85rem 0;
    flex-direction: column;
    align-items: flex-start;
  }
  .nav {
    width: 100%;
    justify-content: flex-start;
    gap: 0.1rem;
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 0.15rem;
  }
  .nav a { white-space: nowrap; font-size: 0.75rem; padding: 0.4rem 0.7rem; }
  .hero { margin-top: 5.5rem; }
  .hero-inner { padding: 4rem 0 3.5rem; }
  .section { padding: 3.5rem 0; }
  .cta-band { padding: 1.5rem; }
}

/* 全局兜底：所有内容配图完整显示，禁止裁切 */
.figure img,
.figure-gallery img,
.layout-split img,
.scheme-card .thumb img {
  width: 100%;
  height: auto !important;
  object-fit: contain !important;
  object-position: center top !important;
}
.figure img,
.figure-gallery img,
.layout-split img {
  max-height: none !important;
}

/* 方案页精简结构：概述内产品链接 */
.product-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.15rem;
}
.product-links a {
  display: inline-flex;
  align-items: center;
  padding: 0.4rem 0.85rem;
  border-radius: 0.375rem;
  border: 1px solid hsl(214 13% 88%);
  background: #fff;
  font-size: 0.85rem;
  color: hsl(215 55% 22%);
  transition: 0.2s ease;
}
.product-links a:hover {
  border-color: hsl(351 79% 54% / 0.45);
  color: var(--primary);
}

/* 方案总览 Hero 配图（不影响各分方案页） */
.hero--solutions-overview {
  background:
    radial-gradient(900px 420px at 85% 15%, hsl(351 79% 54% / 0.34), transparent 55%),
    radial-gradient(700px 380px at 12% 80%, hsl(351 79% 48% / 0.22), transparent 52%),
    linear-gradient(160deg, #1a1418 0%, #22181c 48%, #2a1c22 100%);
}
.hero--solutions-overview .hero-photo.has-image {
  background-image: url('/solutions/solution-overview-hero.png?v=20260909k');
  background-position: 62% center;
  background-size: cover;
  opacity: 0.85;
}
.hero--solutions-overview .hero-shade {
  background:
    linear-gradient(105deg, rgba(8, 8, 10, 0.78) 0%, rgba(8, 8, 10, 0.48) 48%, rgba(8, 8, 10, 0.12) 100%),
    linear-gradient(to top, rgba(8, 8, 10, 0.4) 0%, transparent 40%);
}
.hero--solutions-overview .hero-orb1 { opacity: 0.5; }
.hero--solutions-overview .hero-orb2 { opacity: 0.35; }
.hero--solutions-overview h1,
.hero--solutions-overview .hero-desc,
.hero--solutions-overview .hero-label-text {
  text-shadow: 0 1px 14px rgba(0, 0, 0, 0.5);
}

/* 五个分方案页：全幅场景图 + 与案例页一致的白色左→右过渡蒙层 */
.hero--scheme-web,
.hero--scheme-terminal,
.hero--scheme-doc,
.hero--scheme-print,
.hero--scheme-partner {
  background:
    radial-gradient(900px 420px at 85% 15%, hsl(351 79% 54% / 0.18), transparent 55%),
    linear-gradient(160deg, #121820 0%, #1a222c 48%, #1c181c 100%);
}

.hero--scheme-web .hero-photo.has-image {
  background-image: url('/solutions/scheme-web-stego-hero.jpg?v=20260914c');
}
.hero--scheme-terminal .hero-photo.has-image {
  background-image: url('/solutions/scheme-terminal-hero.jpg?v=20260914c');
}
.hero--scheme-doc .hero-photo.has-image {
  background-image: url('/solutions/scheme-doc-flow-hero.jpg?v=20260914c');
}
.hero--scheme-print .hero-photo.has-image {
  background-image: url('/solutions/scheme-print-hero.jpg?v=20260914c');
}
.hero--scheme-partner .hero-photo.has-image {
  background-image: url('/solutions/scheme-partner-hero.jpg?v=20260914c');
}

.hero--scheme-web .hero-photo.has-image,
.hero--scheme-terminal .hero-photo.has-image,
.hero--scheme-doc .hero-photo.has-image,
.hero--scheme-print .hero-photo.has-image,
.hero--scheme-partner .hero-photo.has-image {
  background-position: center center;
  background-size: cover;
  opacity: 1;
}

.hero--scheme-web .hero-shade,
.hero--scheme-terminal .hero-shade,
.hero--scheme-doc .hero-shade,
.hero--scheme-print .hero-shade,
.hero--scheme-partner .hero-shade {
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 0.62) 0%,
    rgba(255, 255, 255, 0.55) 28%,
    rgba(255, 255, 255, 0.42) 48%,
    rgba(255, 255, 255, 0.22) 62%,
    rgba(255, 255, 255, 0.08) 74%,
    transparent 86%
  );
}

.hero--scheme-web .hero-orb1,
.hero--scheme-terminal .hero-orb1,
.hero--scheme-doc .hero-orb1,
.hero--scheme-print .hero-orb1,
.hero--scheme-partner .hero-orb1 { opacity: 0.12; }

.hero--scheme-web .hero-orb2,
.hero--scheme-terminal .hero-orb2,
.hero--scheme-doc .hero-orb2,
.hero--scheme-print .hero-orb2,
.hero--scheme-partner .hero-orb2 { opacity: 0.08; }

.hero--scheme-web .container.hero-inner,
.hero--scheme-terminal .container.hero-inner,
.hero--scheme-doc .container.hero-inner,
.hero--scheme-print .container.hero-inner,
.hero--scheme-partner .container.hero-inner {
  max-width: var(--max-w, 80rem);
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
}

.hero--scheme-web .hero-label-text,
.hero--scheme-terminal .hero-label-text,
.hero--scheme-doc .hero-label-text,
.hero--scheme-print .hero-label-text,
.hero--scheme-partner .hero-label-text {
  color: var(--primary, #d93751);
  text-shadow: none;
}

.hero--scheme-web h1,
.hero--scheme-terminal h1,
.hero--scheme-doc h1,
.hero--scheme-print h1,
.hero--scheme-partner h1 {
  color: #0f345b;
  text-align: left;
  max-width: 40rem;
  text-shadow: none;
}

.hero--scheme-web h1 .accent,
.hero--scheme-terminal h1 .accent,
.hero--scheme-doc h1 .accent,
.hero--scheme-print h1 .accent,
.hero--scheme-partner h1 .accent {
  color: var(--primary, #d93751);
  text-shadow: none;
}

.hero--scheme-web .hero-desc,
.hero--scheme-terminal .hero-desc,
.hero--scheme-doc .hero-desc,
.hero--scheme-print .hero-desc,
.hero--scheme-partner .hero-desc {
  color: #1a2b3c;
  text-align: left;
  max-width: 40rem;
  font-weight: 500;
  text-shadow: none;
}

.hero--scheme-web .hero-tags,
.hero--scheme-web .btn-row,
.hero--scheme-terminal .hero-tags,
.hero--scheme-terminal .btn-row,
.hero--scheme-doc .hero-tags,
.hero--scheme-doc .btn-row,
.hero--scheme-print .hero-tags,
.hero--scheme-print .btn-row,
.hero--scheme-partner .hero-tags,
.hero--scheme-partner .btn-row {
  max-width: 40rem;
  justify-content: flex-start;
}

.hero--scheme-web .hero-tag,
.hero--scheme-terminal .hero-tag,
.hero--scheme-doc .hero-tag,
.hero--scheme-print .hero-tag,
.hero--scheme-partner .hero-tag {
  color: #0f345b;
  background: rgba(15, 52, 91, 0.06);
  border-color: rgba(15, 52, 91, 0.16);
}

.app-main .hero--scheme-web a.btn.btn-ghost,
.app-main .hero--scheme-terminal a.btn.btn-ghost,
.app-main .hero--scheme-doc a.btn.btn-ghost,
.app-main .hero--scheme-print a.btn.btn-ghost,
.app-main .hero--scheme-partner a.btn.btn-ghost {
  background: #fff !important;
  border: 1px solid rgba(217, 55, 81, 0.65) !important;
  color: #d93751 !important;
  text-shadow: none;
  backdrop-filter: none;
  box-shadow: 0 2px 10px rgba(15, 52, 91, 0.08);
}

.app-main .hero--scheme-web a.btn.btn-ghost:hover,
.app-main .hero--scheme-terminal a.btn.btn-ghost:hover,
.app-main .hero--scheme-doc a.btn.btn-ghost:hover,
.app-main .hero--scheme-print a.btn.btn-ghost:hover,
.app-main .hero--scheme-partner a.btn.btn-ghost:hover {
  background: #d93751 !important;
  color: #fff !important;
  border-color: #d93751 !important;
}


