.page-products {
  --prod-gap: 24px;
  --prod-gap-lg: 40px;
}

/* ===== 首屏：解决方案总览 ===== */
.page-products .prod-hero {
  background:
    repeating-linear-gradient(135deg, rgba(255, 215, 0, .05) 0 2px, transparent 2px 10px),
    linear-gradient(135deg, #0A1F44 0%, #1B3A6B 58%, #0A1F44 100%);
  color: #F7F1E8;
  padding: 28px 0 48px;
  position: relative;
  overflow: hidden;
}

.page-products .prod-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 85% 12%, rgba(255, 107, 53, .28), transparent 42%);
  pointer-events: none;
}

.page-products .prod-hero .container {
  position: relative;
  z-index: 1;
}

.page-products .prod-hero .breadcrumb {
  margin-bottom: 26px;
}

.page-products .prod-hero__wrap {
  display: grid;
  gap: 20px;
  margin-bottom: 28px;
}

.page-products .prod-hero__visual {
  display: none;
}

.page-products .prod-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(32px, 8vw, 68px);
  line-height: 1.05;
  margin: 8px 0 16px;
  letter-spacing: .5px;
  max-width: 680px;
  color: #F7F1E8;
}

.page-products .prod-hero__lead {
  font-size: 16px;
  line-height: 1.75;
  max-width: 620px;
  color: rgba(247, 241, 232, .9);
  margin: 0;
}

.page-products .prod-hero__visual svg {
  width: 220px;
  height: 220px;
  display: block;
}

/* ===== 顶部卡片式导航 ===== */
.page-products .prod-quicknav {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding-bottom: 10px;
  scroll-snap-type: x proximity;
}

.page-products .prod-quicknav__card {
  flex: 0 0 80%;
  scroll-snap-align: start;
  background: linear-gradient(135deg, rgba(255, 255, 255, .12), rgba(255, 255, 255, .04));
  border: 1px solid rgba(255, 215, 0, .35);
  border-radius: var(--radius-lg);
  padding: 18px 16px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 2px 12px;
  align-items: center;
  text-decoration: none;
  color: #F7F1E8;
  box-shadow: 0 8px 20px rgba(0, 0, 0, .18);
  transition: transform .25s ease, border-color .25s ease, background .25s ease;
}

.page-products .prod-quicknav__card:hover,
.page-products .prod-quicknav__card:focus-visible {
  transform: translateY(-3px);
  border-color: #FFD700;
}

.page-products .prod-quicknav__num {
  grid-row: span 2;
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 26px;
  color: #FFD700;
  background: rgba(255, 107, 53, .14);
  border: 1px solid rgba(255, 215, 0, .5);
  border-radius: 14px;
}

.page-products .prod-quicknav__title {
  font-weight: 700;
  font-size: 16px;
  letter-spacing: .3px;
}

.page-products .prod-quicknav__meta {
  font-size: 13px;
  color: rgba(247, 241, 232, .68);
  line-height: 1.4;
}

/* ===== 区块通用 ===== */
.page-products .section {
  padding: 52px 0;
}

.page-products .section__head {
  margin-bottom: 30px;
}

.page-products .section__kicker {
  color: #C05A3C;
  font-weight: 700;
  letter-spacing: 1.5px;
  font-size: 13px;
}

.page-products .section__head h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 6vw, 48px);
  margin: 6px 0 12px;
  line-height: 1.12;
  color: #0A1F44;
}

.page-products .section__head p:not(.section__kicker) {
  color: #5A6472;
  max-width: 720px;
  margin: 0;
  line-height: 1.7;
}

.page-products .section--dark .section__head h2 {
  color: #F7F1E8;
}

.page-products .section--dark .section__kicker {
  color: #FFD700;
}

.page-products .section--dark .section__head p:not(.section__kicker) {
  color: rgba(247, 241, 232, .78);
}

.page-products .filter-bar {
  flex-wrap: wrap;
}

/* ===== 01 票务查询 ===== */
.page-products .ticket-layout {
  display: grid;
  gap: 28px;
  align-items: start;
}

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

.page-products .ticket-figure__img {
  display: block;
  width: 100%;
  max-width: 300px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-pop);
}

.page-products .ticket-figure figcaption {
  font-size: 13px;
  color: #5A6472;
  margin-top: 8px;
  line-height: 1.6;
  max-width: 300px;
}

.page-products .ticket-panel__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 24px;
}

.page-products .stat-pill {
  background: #E8E4DC;
  border-radius: var(--radius-pill);
  padding: 12px 10px;
  text-align: center;
  display: grid;
  gap: 2px;
  font-size: 13px;
  color: #5A6472;
}

.page-products .stat-pill .data-highlight {
  font-size: 26px;
  color: #FF6B35;
  font-weight: 700;
  line-height: 1.1;
}

.page-products .ticket-table-wrap {
  background: #fff;
  border: 1px solid #E8E4DC;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  overflow-x: auto;
}

.page-products .ticket-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 520px;
  font-size: 14px;
}

.page-products .ticket-table th,
.page-products .ticket-table td {
  padding: 12px 14px;
  text-align: left;
  border-bottom: 1px solid #E8E4DC;
  white-space: nowrap;
}

.page-products .ticket-table th {
  background: #0A1F44;
  color: #fff;
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: .5px;
}

.page-products .ticket-table tbody tr:last-child td {
  border-bottom: 0;
}

.page-products .ticket-table tbody tr:hover {
  background: rgba(255, 107, 53, .07);
}

.page-products .ticket-table td:last-child {
  color: #0A1F44;
  font-weight: 700;
}

.page-products .ticket-table__note {
  margin-top: 12px;
  font-size: 13px;
  line-height: 1.7;
}

/* ===== 02 购票手续费 ===== */
.page-products .fee-layout {
  display: grid;
  gap: 28px;
  align-items: center;
}

.page-products .fee-examples {
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 215, 0, .22);
  border-radius: var(--radius-lg);
  padding: 20px;
  display: grid;
  gap: 12px;
}

.page-products .fee-example {
  background: rgba(255, 255, 255, .08);
  border-left: 4px solid #FF6B35;
  border-radius: var(--radius-md);
  padding: 14px 16px;
  display: grid;
  gap: 2px;
}

.page-products .fee-example__price {
  font-weight: 700;
  font-size: 16px;
  color: #fff;
}

.page-products .fee-example__calc {
  font-size: 13px;
  color: rgba(247, 241, 232, .72);
  letter-spacing: .3px;
}

.page-products .fee-example__result {
  font-size: 15px;
  color: #FFD700;
}

.page-products .fee-example__result strong {
  font-size: 22px;
  margin-left: 4px;
}

.page-products .fee-examples__note {
  font-size: 13px;
  color: rgba(247, 241, 232, .76);
  line-height: 1.6;
  margin: 0;
}

.page-products .fee-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  align-items: end;
}

.page-products .fee-steps__step {
  background: rgba(255, 215, 0, .13);
  border: 1px solid rgba(255, 215, 0, .42);
  border-radius: var(--radius-md) var(--radius-md) 0 0;
  padding: 10px 8px;
  text-align: center;
  color: #FFD700;
  font-weight: 700;
  font-size: 14px;
}

.page-products .fee-steps__step--1 {
  height: 66px;
}

.page-products .fee-steps__step--2 {
  height: 90px;
}

.page-products .fee-steps__step--3 {
  height: 116px;
}

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

.page-products .fee-figure__img {
  display: block;
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-pop);
}

.page-products .fee-figure figcaption {
  color: rgba(247, 241, 232, .8);
  font-size: 13px;
  margin-top: 10px;
  line-height: 1.6;
}

/* ===== 03 体育战报流量 ===== */
.page-products .data-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 26px;
}

.page-products .data-metric {
  background: #0A1F44;
  border-radius: var(--radius-lg);
  padding: 20px 12px;
  text-align: center;
  box-shadow: var(--shadow-card);
}

.page-products .data-metric__value {
  display: block;
  font-family: var(--font-display);
  font-size: 30px;
  color: #FFD700;
  line-height: 1.1;
}

.page-products .data-metric__label {
  display: block;
  margin-top: 6px;
  color: #F7F1E8;
  font-size: 13px;
}

.page-products .data-scenario-grid {
  display: grid;
  gap: 12px;
  margin: 24px 0;
}

.page-products .data-scenario {
  background: #fff;
  border: 1px solid #E8E4DC;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  padding: 18px 20px;
}

.page-products .data-scenario h3 {
  font-family: var(--font-display);
  font-size: 18px;
  color: #0A1F44;
  margin: 0 0 6px;
}

.page-products .data-scenario p {
  margin: 0;
  font-size: 14px;
  color: #5A6472;
  line-height: 1.7;
}

.page-products .data-scenario__cost {
  margin-top: 10px !important;
  font-weight: 700;
}

.page-products .data-scenario__cost span {
  color: #FF6B35;
  font-size: 18px;
}

.page-products .data-banner {
  margin: 0 0 8px;
}

.page-products .data-banner__img {
  display: block;
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
}

.page-products .data-banner figcaption {
  font-size: 13px;
  color: #5A6472;
  margin-top: 8px;
  line-height: 1.6;
}

.page-products .data-page-link {
  margin-top: 16px;
  font-size: 14px;
}

.page-products .data-page-link a {
  color: #FF6B35;
  font-weight: 700;
  text-decoration-color: rgba(255, 107, 53, .4);
}

/* ===== 04 赛季套票分期 ===== */
.page-products .plan-layout {
  display: grid;
  gap: 28px;
  align-items: center;
}

.page-products .plan-visual {
  margin: 0;
}

.page-products .plan-visual__img {
  display: block;
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-pop);
}

.page-products .plan-visual figcaption {
  color: rgba(247, 241, 232, .78);
  font-size: 13px;
  margin-top: 10px;
  line-height: 1.6;
}

.page-products .plan-chart {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  align-items: end;
  margin-top: 16px;
}

.page-products .plan-chart__bar {
  border-radius: var(--radius-md) var(--radius-md) 0 0;
  background: linear-gradient(180deg, #FFD700 0%, rgba(255, 215, 0, .4) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  padding: 12px 6px 8px;
  text-align: center;
}

.page-products .plan-chart__bar--3 {
  height: 150px;
}

.page-products .plan-chart__bar--6 {
  height: 100px;
}

.page-products .plan-chart__bar--12 {
  height: 70px;
}

.page-products .plan-chart__bar strong {
  color: #0A1F44;
  font-size: 16px;
  font-family: var(--font-display);
}

.page-products .plan-chart__bar span {
  color: #0A1F44;
  font-size: 12px;
  font-weight: 700;
  margin-top: 4px;
  line-height: 1.3;
}

.page-products .plan-panel .filter-bar {
  margin-bottom: 14px;
}

.page-products .plan-grid {
  display: grid;
  gap: 12px;
}

.page-products .plan-card {
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 215, 0, .25);
  border-radius: var(--radius-lg);
  padding: 20px;
  color: #F7F1E8;
}

.page-products .plan-card h3 {
  margin: 0 0 6px;
  font-family: var(--font-display);
  font-size: 20px;
  color: #FFD700;
}

.page-products .plan-card p {
  margin: 6px 0;
  font-size: 14px;
  color: rgba(247, 241, 232, .9);
  line-height: 1.6;
}

.page-products .plan-card strong {
  color: #fff;
  font-size: 18px;
}

.page-products .plan-panel__note {
  margin-top: 14px;
  font-size: 13px;
  line-height: 1.7;
}

.page-products .plan-panel__note a {
  color: #FFD700;
}

.page-products .plan-panel .btn {
  margin-top: 16px;
}

/* ===== 05 历史版本与更新记录 ===== */
.page-products .archive-grid {
  display: grid;
  gap: 28px;
}

.page-products .archive-cover {
  margin: 0;
}

.page-products .archive-cover__img {
  display: block;
  width: 100%;
  max-width: 480px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
}

.page-products .archive-list {
  display: grid;
  gap: 12px;
}

.page-products .archive-row {
  background: #fff;
  border: 1px solid #E8E4DC;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  padding: 16px 18px;
}

.page-products .archive-row h3 {
  margin: 8px 0 4px;
  font-family: var(--font-display);
  font-size: 18px;
  color: #0A1F44;
}

.page-products .archive-row p {
  margin: 0;
  font-size: 14px;
  color: #5A6472;
  line-height: 1.6;
  max-width: 620px;
}

.page-products .archive-row__tag {
  font-size: 12px;
}

.page-products .archive-note {
  margin-top: 26px;
  padding: 12px 16px;
  font-size: 14px;
  color: #5A6472;
  background: rgba(255, 215, 0, .14);
  border-left: 4px solid #FFD700;
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  line-height: 1.7;
}

/* ===== 06 常见问题 ===== */
.page-products .section--faq {
  background: linear-gradient(180deg, #F7F1E8 0%, #E8E4DC 100%);
}

.page-products .faq-list {
  display: grid;
  gap: 12px;
  margin-bottom: 28px;
}

.page-products .faq-item {
  background: #fff;
  border: 1px solid #E8E4DC;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  padding: 0 18px;
}

.page-products .faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 16px 0;
  font-weight: 700;
  font-size: 15px;
  color: #0A1F44;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
}

.page-products .faq-item summary::-webkit-details-marker {
  display: none;
}

.page-products .faq-item summary::after {
  content: "+";
  font-family: var(--font-display);
  font-size: 24px;
  color: #C05A3C;
  line-height: 1;
  flex: 0 0 auto;
}

.page-products .faq-item[open] summary::after {
  content: "–";
}

.page-products .faq-item p {
  margin: 0;
  padding-bottom: 16px;
  font-size: 14px;
  color: #5A6472;
  line-height: 1.7;
}

.page-products .faq-help {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.page-products .faq-help p {
  margin: 0 12px 0 0;
  font-weight: 700;
  font-size: 16px;
  color: #0A1F44;
}

/* ===== 焦点可见性 ===== */
.page-products a:focus-visible,
.page-products button:focus-visible,
.page-products summary:focus-visible {
  outline: 3px solid #FFD700;
  outline-offset: 3px;
}

/* ===== 响应式：平板 ===== */
@media (min-width: 640px) {
  .page-products .prod-quicknav__card {
    flex-basis: 46%;
  }

  .page-products .ticket-layout {
    grid-template-columns: 300px 1fr;
    gap: 32px;
  }

  .page-products .fee-examples {
    padding: 24px;
  }

  .page-products .data-scenario-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .page-products .plan-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .page-products .archive-grid {
    grid-template-columns: 280px 1fr;
    gap: 32px;
  }

  .page-products .prod-hero__wrap {
    grid-template-columns: 1fr auto;
    align-items: end;
  }

  .page-products .prod-hero__visual {
    display: block;
  }
}

/* ===== 响应式：桌面 ===== */
@media (min-width: 1024px) {
  .page-products .prod-hero {
    padding-top: 40px;
  }

  .page-products .prod-hero h1 {
    font-size: 68px;
  }

  .page-products .prod-quicknav {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    overflow: visible;
    padding-bottom: 0;
  }

  .page-products .prod-quicknav__card {
    flex: 0 0 auto;
  }

  .page-products .fee-layout {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }

  .page-products .data-scenario-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .page-products .plan-layout {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }

  .page-products .plan-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .page-products .ticket-layout {
    gap: 40px;
  }
}
