.page-products {
  --pp-line: rgba(11, 31, 58, .12);
  --pp-line-soft: rgba(216, 227, 244, .18);
  --pp-gap: clamp(18px, 3vw, 28px);
  --pp-text-soft: #47566b;
}

/* ---------- 首屏 ---------- */
.page-products .svc-hero {
  position: relative;
  overflow: hidden;
  padding: 40px 0 clamp(72px, 9vw, 104px);
  color: var(--white);
  background:
    radial-gradient(120% 90% at 88% 4%, rgba(255, 106, 19, .32) 0%, transparent 54%),
    linear-gradient(158deg, #0B1F3A 0%, #14345C 58%, #0B1F3A 100%);
}

.page-products .svc-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 -1px 0;
  height: clamp(40px, 7vw, 84px);
  background: var(--cream);
  clip-path: polygon(0 100%, 100% 18%, 100% 100%);
  pointer-events: none;
}

.page-products .svc-hero__inner {
  position: relative;
  z-index: 1;
}

.page-products .svc-hero__eyebrow {
  margin: 22px 0 0;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--neon);
}

.page-products .svc-hero__title {
  margin: 14px 0 0;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(32px, 7vw, 64px);
  line-height: 1.08;
  letter-spacing: -.01em;
  transform: skewX(-2deg);
  color: var(--white);
  max-width: 16em;
}

.page-products .svc-hero__lead {
  margin: 20px 0 0;
  max-width: 46em;
  font-size: 16px;
  line-height: 1.85;
  color: var(--ink-soft);
}

.page-products .svc-hero__facts {
  list-style: none;
  margin: clamp(30px, 5vw, 46px) 0 0;
  padding: 0;
  display: grid;
  gap: 18px 20px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.page-products .svc-fact {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
}

.page-products .svc-fact__num {
  font-family: var(--font-mono);
  font-variant-numeric: tabular-nums;
  font-size: clamp(30px, 5vw, 46px);
  font-weight: 700;
  line-height: 1;
  color: var(--orange);
}

.page-products .svc-fact__key {
  font-size: 13px;
  line-height: 1.55;
  color: var(--ink-soft);
}

@media (min-width: 860px) {
  .page-products .svc-hero__facts {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0;
  }
  .page-products .svc-fact + .svc-fact {
    border-left: 1px solid var(--pp-line-soft);
    padding-left: 24px;
  }
}

/* ---------- 服务总览 ---------- */
.page-products .svc-board {
  display: grid;
  gap: var(--pp-gap);
  grid-template-columns: 1fr;
  margin-top: clamp(28px, 4vw, 48px);
}

@media (min-width: 720px) {
  .page-products .svc-board {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1100px) {
  .page-products .svc-board {
    grid-template-columns: repeat(12, minmax(0, 1fr));
  }
  .page-products .svc-board > .svc-card:nth-child(1) { grid-column: span 7; }
  .page-products .svc-board > .svc-card:nth-child(2) { grid-column: span 5; }
  .page-products .svc-board > .svc-card:nth-child(3) { grid-column: span 5; }
  .page-products .svc-board > .svc-card:nth-child(4) { grid-column: span 7; }
}

.page-products .svc-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 0;
  padding: 26px 24px 22px;
  background: var(--white);
  border-radius: var(--radius-m);
  border-top: 4px solid var(--orange);
  box-shadow: var(--shadow-card);
  transition: transform .2s ease, box-shadow .2s ease;
}

.page-products .svc-card:hover,
.page-products .svc-card:focus-within {
  transform: translateY(-4px);
  box-shadow: var(--shadow-float);
}

.page-products .svc-card > .tag {
  align-self: flex-start;
}

.page-products .svc-card__title {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(20px, 2.4vw, 26px);
  line-height: 1.32;
  color: var(--ink-deep);
}

.page-products .svc-card__text {
  margin: 0;
  font-size: 15px;
  line-height: 1.85;
  color: var(--pp-text-soft);
}

.page-products .svc-card__fit {
  margin: auto 0 0;
  padding-top: 14px;
  border-top: 1px solid var(--pp-line);
  font-size: 13px;
  line-height: 1.72;
  color: var(--orange-deep);
}

.page-products .svc-figure {
  margin: clamp(28px, 4vw, 46px) 0 0;
}

.page-products .svc-figure img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 14 / 9;
  object-fit: cover;
  border-radius: var(--radius-l);
  box-shadow: var(--shadow-card);
}

.page-products .svc-figure figcaption {
  margin-top: 12px;
  font-size: 13px;
  line-height: 1.7;
  color: #5c6779;
}

/* ---------- 专区 ---------- */
.page-products .zone-split {
  display: grid;
  gap: clamp(26px, 4vw, 40px);
  grid-template-columns: 1fr;
  margin-top: clamp(26px, 4vw, 42px);
}

@media (min-width: 1024px) {
  .page-products .zone-split {
    grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
    align-items: start;
  }
}

.page-products .zone-side {
  min-width: 0;
}

.page-products .zone-side__title {
  margin: 0 0 14px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(21px, 2.6vw, 29px);
  line-height: 1.36;
  color: var(--white);
}

.page-products .zone-side__text {
  margin: 0 0 22px;
  font-size: 15px;
  line-height: 1.85;
  color: var(--ink-soft);
}

.page-products .zone-side .segmented {
  margin-bottom: 22px;
}

.page-products .zone-hints {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
}

.page-products .zone-hints li {
  position: relative;
  padding-left: 22px;
  font-size: 14px;
  line-height: 1.75;
  color: var(--ink-soft);
}

.page-products .zone-hints li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--neon);
}

.page-products .zone-body {
  min-width: 0;
}

.page-products .zone-panel {
  min-width: 0;
}

.page-products .zone-figure {
  margin: 0;
}

.page-products .zone-figure img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: var(--radius-l);
  box-shadow: var(--shadow-float);
}

.page-products .zone-figure figcaption {
  margin-top: 12px;
  font-size: 13px;
  line-height: 1.7;
  color: var(--ink-soft);
}

.page-products .zone-panel .zone-figure + .zone-figure,
.page-products .zone-panel .zone-figure + figcaption {
  margin-top: 18px;
}

.page-products .zone-sub {
  margin: 26px 0 10px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .14em;
  color: var(--ink-soft);
}

.page-products .zone-panel .data-table {
  margin-top: 0;
}

.page-products .table-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.page-products .filter-panel {
  display: grid;
  gap: 16px;
  padding: 22px 20px;
  border-radius: var(--radius-m);
  background: rgba(11, 31, 58, .45);
  border: 1px solid var(--pp-line-soft);
  margin-bottom: 24px;
}

@media (min-width: 640px) {
  .page-products .filter-panel {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.page-products .filter-panel__label {
  margin: 0 0 10px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .14em;
  color: var(--neon);
}

.page-products .filter-panel__opts {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.page-products .filter-panel__opts li {
  padding: 5px 12px;
  border-radius: 999px;
  border: 1px solid var(--pp-line-soft);
  font-size: 13px;
  line-height: 1.5;
  color: var(--white);
  background: rgba(255, 255, 255, .06);
}

/* ---------- 主客场表现 ---------- */
.page-products .form-views {
  margin-top: clamp(22px, 3vw, 34px);
}

.page-products .form-panel {
  min-width: 0;
}

.page-products .ha-grid {
  display: grid;
  gap: var(--pp-gap);
  grid-template-columns: 1fr;
}

@media (min-width: 1080px) {
  .page-products .ha-grid {
    grid-template-columns: repeat(12, minmax(0, 1fr));
  }
  .page-products .ha-grid > .ha-card:nth-child(1) { grid-column: span 5; }
  .page-products .ha-grid > .ha-card:nth-child(2) { grid-column: span 4; }
  .page-products .ha-grid > .ha-card:nth-child(3) { grid-column: span 3; }
}

.page-products .ha-card {
  min-width: 0;
  padding: 24px 22px;
  background: var(--white);
  border-radius: var(--radius-m);
  border-left: 4px solid var(--ink-mid);
  box-shadow: var(--shadow-card);
}

.page-products .ha-card h4 {
  margin: 0 0 10px;
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 800;
  line-height: 1.4;
  color: var(--ink-deep);
}

.page-products .ha-card p {
  margin: 0;
  font-size: 14px;
  line-height: 1.85;
  color: var(--pp-text-soft);
}

.page-products .adapt {
  display: grid;
  gap: var(--pp-gap);
  grid-template-columns: 1fr;
}

@media (min-width: 900px) {
  .page-products .adapt {
    grid-template-columns: minmax(0, 3fr) minmax(0, 2fr);
    align-items: start;
  }
}

.page-products .adapt__text h4 {
  margin: 0 0 12px;
  font-family: var(--font-editorial);
  font-size: clamp(20px, 2.4vw, 26px);
  font-weight: 600;
  line-height: 1.45;
  color: var(--ink-deep);
}

.page-products .adapt__text p {
  margin: 0 0 14px;
  font-size: 15px;
  line-height: 1.85;
  color: var(--pp-text-soft);
}

.page-products .adapt__levels-box {
  padding: 24px 22px;
  background: var(--ink-mid);
  border-radius: var(--radius-m);
  box-shadow: var(--shadow-card);
}

.page-products .adapt__levels-title {
  margin: 0 0 16px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .14em;
  color: var(--neon);
}

.page-products .adapt__levels {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 14px;
}

.page-products .adapt__levels li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 14px;
  line-height: 1.7;
  color: var(--ink-soft);
}

.page-products .adapt__dot {
  flex: 0 0 auto;
  width: 10px;
  height: 10px;
  margin-top: 6px;
  border-radius: 50%;
}

.page-products .adapt__dot--low { background: var(--orange); }
.page-products .adapt__dot--mid { background: var(--ink-soft); }
.page-products .adapt__dot--high { background: var(--neon); }

/* ---------- 会员档位 ---------- */
.page-products .tier-panels {
  margin-top: clamp(22px, 3vw, 34px);
}

.page-products .tier-card {
  display: grid;
  gap: 20px;
  padding: 28px 24px;
  background: var(--white);
  border-radius: var(--radius-l);
  border-top: 5px solid var(--ink-mid);
  box-shadow: var(--shadow-card);
}

@media (min-width: 900px) {
  .page-products .tier-card {
    grid-template-columns: minmax(0, 5fr) minmax(0, 4fr) auto;
    align-items: center;
    gap: 32px;
    padding: 38px 36px;
  }
}

.page-products .tier-card__badge {
  display: inline-block;
  padding: 5px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .1em;
  color: var(--ink-deep);
  background: var(--paper-line);
}

.page-products .tier-card__badge--pro {
  background: var(--orange);
  color: var(--white);
}

.page-products .tier-card__name {
  margin: 14px 0 10px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(21px, 2.6vw, 28px);
  line-height: 1.34;
  color: var(--ink-deep);
}

.page-products .tier-card__text {
  margin: 0;
  font-size: 15px;
  line-height: 1.85;
  color: var(--pp-text-soft);
}

.page-products .tier-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.page-products .tier-list li {
  position: relative;
  padding-left: 20px;
  font-size: 14px;
  line-height: 1.7;
  color: var(--ink-deep);
}

.page-products .tier-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 8px;
  height: 8px;
  border-radius: 2px;
  background: var(--orange);
  transform: rotate(45deg);
}

.page-products .tier-card .btn {
  justify-self: start;
  white-space: nowrap;
}

.page-products .tier-figure {
  margin: clamp(28px, 4vw, 44px) 0 0;
}

.page-products .tier-figure img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  border-radius: var(--radius-l);
  box-shadow: var(--shadow-card);
}

.page-products .tier-figure figcaption {
  margin-top: 12px;
  font-size: 13px;
  line-height: 1.7;
  color: #5c6779;
}

.page-products .cmp-scroll {
  margin-top: clamp(28px, 4vw, 44px);
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.page-products .cmp-scroll .data-table {
  min-width: 560px;
}

.page-products .mark-yes {
  color: var(--orange-deep);
  font-weight: 700;
}

.page-products .mark-no {
  color: #8792a3;
}

/* ---------- 青训与战报 ---------- */
.page-products .youth-split {
  display: grid;
  gap: clamp(26px, 4vw, 40px);
  grid-template-columns: 1fr;
  margin-top: clamp(26px, 4vw, 42px);
}

@media (min-width: 1024px) {
  .page-products .youth-split {
    grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
    align-items: start;
  }
}

.page-products .youth-split__main {
  min-width: 0;
  display: grid;
  gap: 22px;
}

.page-products .youth-block {
  padding: 24px 22px;
  background: var(--white);
  border-radius: var(--radius-m);
  box-shadow: var(--shadow-card);
}

.page-products .youth-block__title {
  margin: 0 0 12px;
  font-family: var(--font-editorial);
  font-weight: 600;
  font-size: clamp(19px, 2.3vw, 24px);
  line-height: 1.45;
  color: var(--ink-deep);
}

.page-products .youth-block p {
  margin: 0 0 12px;
  font-size: 15px;
  line-height: 1.85;
  color: var(--pp-text-soft);
}

.page-products .youth-block p:last-child {
  margin-bottom: 0;
}

.page-products .youth-points {
  list-style: none;
  margin: 16px 0 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.page-products .youth-points li {
  position: relative;
  padding-left: 20px;
  font-size: 14px;
  line-height: 1.72;
  color: var(--ink-deep);
}

.page-products .youth-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 10px;
  height: 2px;
  background: var(--orange);
}

.page-products .youth-split__main .btn {
  justify-self: start;
}

.page-products .youth-split__media {
  margin: 0;
  min-width: 0;
}

.page-products .youth-split__media img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: var(--radius-l);
  box-shadow: var(--shadow-float);
}

.page-products .youth-split__media figcaption {
  margin-top: 12px;
  font-size: 13px;
  line-height: 1.7;
  color: #5c6779;
}

/* ---------- 开通流程 ---------- */
.page-products .flow-track {
  list-style: none;
  margin: clamp(28px, 4vw, 46px) 0 0;
  padding: 0;
  display: grid;
  gap: 0;
  grid-template-columns: 1fr;
}

@media (min-width: 880px) {
  .page-products .flow-track {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.page-products .flow-step {
  min-width: 0;
  padding: 22px 0;
  border-top: 1px solid var(--pp-line-soft);
}

@media (min-width: 880px) {
  .page-products .flow-step {
    padding: 26px 24px 0 0;
  }
  .page-products .flow-step + .flow-step {
    padding-left: 26px;
    border-left: 1px solid var(--pp-line-soft);
  }
}

.page-products .flow-step__num {
  display: block;
  font-family: var(--font-mono);
  font-size: 30px;
  font-weight: 700;
  line-height: 1;
  color: var(--orange);
}

.page-products .flow-step__title {
  margin: 14px 0 10px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 19px;
  line-height: 1.4;
  color: var(--white);
}

.page-products .flow-step__text {
  margin: 0;
  font-size: 14px;
  line-height: 1.8;
  color: var(--ink-soft);
}

.page-products .accordion {
  margin-top: clamp(30px, 4vw, 46px);
}

/* ---------- 团队场景 ---------- */
.page-products .team-cases {
  display: grid;
  gap: var(--pp-gap);
  grid-template-columns: 1fr;
  margin-top: clamp(26px, 4vw, 42px);
}

@media (min-width: 980px) {
  .page-products .team-cases {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }
  .page-products .team-case { grid-column: span 3; }
  .page-products .team-case--wide { grid-column: span 6; }
}

.page-products .team-case {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 0;
  padding: 26px 24px;
  background: var(--white);
  border-radius: var(--radius-m);
  box-shadow: var(--shadow-card);
  border-bottom: 4px solid var(--paper-line);
  transition: transform .2s ease;
}

.page-products .team-case:hover {
  transform: translateY(-4px);
}

.page-products .team-case--wide {
  background: linear-gradient(120deg, #14345C 0%, #0B1F3A 100%);
  border-bottom-color: var(--orange);
}

.page-products .team-case__tag {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .14em;
  color: var(--orange-deep);
}

.page-products .team-case--wide .team-case__tag {
  color: var(--neon);
}

.page-products .team-case__title {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(19px, 2.3vw, 24px);
  line-height: 1.4;
  color: var(--ink-deep);
}

.page-products .team-case--wide .team-case__title {
  color: var(--white);
}

.page-products .team-case p {
  margin: 0;
  font-size: 15px;
  line-height: 1.85;
  color: var(--pp-text-soft);
}

.page-products .team-case--wide p {
  color: var(--ink-soft);
  max-width: 62ch;
}

.page-products .team-case__link {
  margin-top: auto;
  padding-top: 6px;
  font-size: 14px;
  font-weight: 700;
  color: var(--orange-deep);
  text-decoration: none;
  border-bottom: 2px solid currentColor;
  align-self: flex-start;
}

.page-products .team-case--wide .team-case__link {
  color: var(--neon);
}

/* ---------- 收尾 ---------- */
.page-products .svc-cta {
  position: relative;
  padding: clamp(30px, 5vw, 52px) clamp(24px, 4vw, 48px);
  border-radius: var(--radius-l);
  background:
    linear-gradient(120deg, #0B1F3A 0%, #14345C 100%);
  overflow: hidden;
}

.page-products .svc-cta::before {
  content: "";
  position: absolute;
  right: -80px;
  top: -80px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 106, 19, .5) 0%, transparent 70%);
  pointer-events: none;
}

.page-products .svc-cta__title {
  position: relative;
  margin: 0 0 14px;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(24px, 4vw, 38px);
  line-height: 1.24;
  color: var(--white);
}

.page-products .svc-cta__text {
  position: relative;
  margin: 0 0 26px;
  max-width: 52em;
  font-size: 15px;
  line-height: 1.85;
  color: var(--ink-soft);
}

.page-products .svc-cta__actions {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

@media (prefers-reduced-motion: reduce) {
  .page-products .svc-card,
  .page-products .team-case {
    transition: none;
  }
  .page-products .svc-card:hover,
  .page-products .svc-card:focus-within,
  .page-products .team-case:hover {
    transform: none;
  }
}
