/* ===== 服务项目页专属样式 ===== */
.page-products {
  --service-label-color: var(--neon-green);
  --service-label-alt: var(--orange);
  --content-gap: clamp(56px, 7vw, 96px);
  background:
    radial-gradient(ellipse at 10% 0%, rgba(57,255,20,.05) 0%, transparent 38%),
    radial-gradient(ellipse at 90% 28%, rgba(255,106,0,.035) 0%, transparent 30%),
    radial-gradient(ellipse at 20% 80%, rgba(0,229,255,.02) 0%, transparent 45%);
}

/* 面包屑补充 */
.page-products .breadcrumb-sep {
  color: var(--dark-gray);
}
.page-products .breadcrumb-current {
  color: var(--off-white);
  font-weight: 600;
}

/* 服务标签 */
.page-products .service-label {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 7px 14px;
  background: rgba(57,255,20,.08);
  border-left: 3px solid var(--neon-green);
  color: var(--neon-green);
  font-family: var(--font-numeric);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  line-height: 1.3;
}
.page-products .service-label-orange {
  background: rgba(255,106,0,.08);
  border-left-color: var(--orange);
  color: #FFB05C;
}

/* Hero */
.page-products .product-hero {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  padding-top: 28px;
  padding-bottom: 24px;
  position: relative;
}
.page-products .product-hero::after {
  content: '';
  display: block;
  height: 2px;
  background: linear-gradient(90deg, var(--neon-green), var(--cyan), var(--orange));
  margin-top: 12px;
  opacity: .5;
}
.page-products .product-hero-copy h1 {
  font-family: var(--font-headline);
  font-size: clamp(38px, 5vw, 64px);
  line-height: 1.06;
  margin: 18px 0 20px;
  color: var(--off-white);
  letter-spacing: .01em;
}
.page-products .hero-accent {
  display: block;
  color: var(--neon-green);
}
.page-products .hero-lead {
  font-size: 16px;
  line-height: 1.7;
  color: var(--muted-blue);
  max-width: 56ch;
  margin-bottom: 28px;
}
.page-products .hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.page-products .hero-visual {
  margin: 0;
  position: relative;
  overflow: hidden;
  background: var(--navy-light);
  border: 1px solid var(--dark-gray);
  aspect-ratio: 4 / 3;
}
.page-products .hero-visual img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* 服务索引横向带 */
.page-products .service-strip {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 12px 0 0;
}
@media (min-width: 900px) {
  .page-products .service-strip {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
  }
}
@media (max-width: 360px) {
  .page-products .service-strip {
    grid-template-columns: 1fr;
  }
}
.page-products .strip-item {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 22px 18px 20px;
  background: var(--navy-light);
  border: 1px solid var(--dark-gray);
  border-left: 3px solid var(--dark-gray);
  text-decoration: none;
  overflow: hidden;
  transition: border-left-color .2s ease, background .2s ease, transform .2s ease;
}
.page-products .strip-item:nth-child(2n) {
  border-left-color: var(--orange);
}
.page-products .strip-item::before {
  content: '';
  position: absolute;
  right: -18px;
  top: -18px;
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, transparent 50%, rgba(57,255,20,.08) 50%);
  transition: background .2s ease;
}
.page-products .strip-item:hover {
  transform: translateY(-3px);
  border-left-color: var(--neon-green);
  background: rgba(57,255,20,.07);
}
.page-products .strip-item:nth-child(2n):hover {
  border-left-color: var(--orange);
  background: rgba(255,106,0,.06);
}
.page-products .strip-index {
  font-family: var(--font-numeric);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .14em;
  color: var(--neon-green);
}
.page-products .strip-item:nth-child(2n) .strip-index {
  color: var(--orange);
}
.page-products .strip-title {
  font-family: var(--font-headline);
  font-size: 15px;
  color: var(--off-white);
  line-height: 1.2;
}
.page-products .strip-meta {
  font-size: 12px;
  color: var(--muted-blue);
  line-height: 1.5;
  margin-top: 4px;
}

/* 服务区块 */
.page-products .service-block {
  padding: var(--content-gap) 0;
  position: relative;
}
.page-products .service-block-alt {
  background: linear-gradient(120deg, rgba(19,36,60,.55), rgba(19,36,60,.18));
}
.page-products .service-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 34px;
}
.page-products .service-copy h2 {
  font-family: var(--font-headline);
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.08;
  color: var(--off-white);
  margin: 18px 0 20px;
}
.page-products .service-copy > p {
  color: var(--muted-blue);
  font-size: 16px;
  line-height: 1.7;
  max-width: 58ch;
  margin-bottom: 22px;
}

/* 查询特性列表 */
.page-products .service-feature-list {
  list-style: none;
  padding: 0;
  margin: 0 0 30px;
  display: grid;
  gap: 14px;
}
.page-products .service-feature-list li {
  position: relative;
  padding-left: 22px;
  font-size: 14px;
  line-height: 1.65;
  color: var(--off-white);
}
.page-products .service-feature-list li strong {
  color: var(--off-white);
  font-weight: 600;
}
.page-products .service-feature-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 9px;
  height: 9px;
  background: var(--neon-green);
  transform: rotate(45deg);
}

/* 服务配图 */
.page-products .service-figure {
  margin: 0;
  position: relative;
  overflow: hidden;
  background: var(--navy-light);
  border: 1px solid var(--dark-gray);
}
.page-products .service-figure img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.page-products .service-figure figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: 14px 16px;
  font-size: 12px;
  line-height: 1.5;
  color: var(--muted-blue);
  background: linear-gradient(0deg, rgba(10,22,40,.92), rgba(10,22,40,.72));
  border-top: 1px solid rgba(57,255,20,.25);
}
.page-products .service-figure-portrait {
  aspect-ratio: 4 / 5;
}
.page-products .service-figure-wide {
  aspect-ratio: 16 / 9;
}
.page-products .service-figure-square {
  aspect-ratio: 1 / 1;
}

/* 赛事表数据点 */
.page-products .schedule-points {
  display: grid;
  gap: 14px;
  margin: 24px 0 20px;
}
.page-products .schedule-point {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 16px 20px;
  background: rgba(19,36,60,.5);
  border-left: 3px solid var(--orange);
  transition: border-color .2s ease, background .2s ease;
}
.page-products .schedule-point:hover {
  border-left-color: var(--neon-green);
  background: rgba(57,255,20,.05);
}
.page-products .schedule-point .data-number {
  font-family: var(--font-numeric);
  font-size: 42px;
  font-weight: 800;
  color: var(--neon-green);
  line-height: 1;
  flex-shrink: 0;
}
.page-products .schedule-point-text {
  font-size: 14px;
  line-height: 1.55;
  color: var(--muted-blue);
}
.page-products .subscribe-note {
  margin: 0 0 24px;
  padding: 14px 18px;
  border: 1px solid var(--dark-gray);
  background: rgba(255,255,255,.02);
  font-size: 14px;
  line-height: 1.65;
  color: var(--muted-blue);
}
.page-products .subscribe-note strong {
  color: var(--off-white);
  font-weight: 600;
}

/* 数据对比表格 */
.page-products .compare-table-wrap {
  overflow-x: auto;
  margin: 0 0 24px;
  border: 1px solid var(--dark-gray);
}
.page-products .compare-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 480px;
  font-size: 14px;
}
.page-products .compare-table th,
.page-products .compare-table td {
  text-align: left;
  padding: 14px 16px;
  border-bottom: 1px solid var(--dark-gray);
  white-space: nowrap;
  font-size: 14px;
}
.page-products .compare-table th {
  font-family: var(--font-numeric);
  font-size: 12px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--neon-green);
  background: rgba(10,22,40,.8);
}
.page-products .compare-table tbody tr {
  transition: background .15s ease;
}
.page-products .compare-table tbody tr:hover {
  background: rgba(57,255,20,.05);
}
.page-products .compare-table tr:last-child td {
  border-bottom: 0;
}
.page-products .compare-table td {
  color: var(--off-white);
}

/* 精读指南卡片 */
.page-products .guide-mode-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin: 24px 0 28px;
}
@media (min-width: 640px) {
  .page-products .guide-mode-grid {
    grid-template-columns: 1fr 1fr;
  }
}
.page-products .guide-mode-card {
  background: var(--navy-light);
  border: 1px solid var(--dark-gray);
  border-top: 2px solid var(--neon-green);
  padding: 24px;
  transition: border-color .25s ease, transform .25s ease, box-shadow .25s ease;
}
.page-products .guide-mode-card:nth-child(2) {
  border-top-color: var(--orange);
}
.page-products .guide-mode-card:hover {
  transform: translateY(-3px);
  border-color: var(--neon-green);
  box-shadow: 0 12px 30px rgba(0,0,0,.22);
}
.page-products .guide-mode-card:nth-child(2):hover {
  border-color: var(--orange);
}
.page-products .guide-mode-tag {
  display: inline-block;
}
.page-products .guide-mode-title {
  font-family: var(--font-headline);
  font-size: 18px;
  margin: 12px 0 14px;
  color: var(--off-white);
}
.page-products .guide-mode-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 8px;
}
.page-products .guide-mode-card ul li {
  font-size: 14px;
  line-height: 1.55;
  color: var(--muted-blue);
  padding-left: 18px;
  position: relative;
}
.page-products .guide-mode-card ul li::before {
  content: '◆';
  position: absolute;
  left: 0;
  font-size: 9px;
  color: var(--orange);
  top: 4px;
}
.page-products .guide-mode-card:nth-child(2) ul li::before {
  color: var(--neon-green);
}

/* 服务使用流程 */
.page-products .flow-section {
  padding: var(--content-gap) 0;
  border-top: 1px solid var(--dark-gray);
  background: linear-gradient(180deg, rgba(19,36,60,.22), rgba(19,36,60,.05));
}
.page-products .flow-section h2 {
  font-family: var(--font-headline);
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.08;
  color: var(--off-white);
  margin: 18px 0 8px;
}
.page-products .flow-intro {
  color: var(--muted-blue);
  max-width: 52ch;
  margin-bottom: 36px;
  font-size: 16px;
  line-height: 1.6;
}
.page-products .flow-steps {
  list-style: none;
  margin: 0;
  padding: 0;
}
.page-products .flow-step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 20px;
  padding: 28px 0;
  border-bottom: 1px solid var(--dark-gray);
}
.page-products .flow-step:first-child {
  border-top: 1px solid var(--dark-gray);
}
.page-products .flow-step-num {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  background: var(--navy-light);
  border: 1px solid var(--dark-gray);
  font-family: var(--font-numeric);
  font-size: 22px;
  font-weight: 700;
  color: var(--neon-green);
  transition: border-color .25s ease, box-shadow .25s ease, background .25s ease;
}
.page-products .flow-step:hover .flow-step-num {
  border-color: var(--neon-green);
  box-shadow: 0 0 22px rgba(57,255,20,.2);
  background: rgba(57,255,20,.08);
}
.page-products .flow-step-body h3 {
  font-family: var(--font-headline);
  font-size: 20px;
  line-height: 1.2;
  color: var(--off-white);
  margin: 0 0 8px;
}
.page-products .flow-step-body p {
  font-size: 14px;
  line-height: 1.65;
  color: var(--muted-blue);
  max-width: 60ch;
}
@media (max-width: 560px) {
  .page-products .flow-step {
    grid-template-columns: 46px 1fr;
    gap: 16px;
    padding: 24px 0;
  }
  .page-products .flow-step-num {
    width: 46px;
    height: 46px;
    font-size: 18px;
  }
  .page-products .flow-step-body h3 {
    font-size: 18px;
  }
}

/* CTA 服务入口带 */
.page-products .service-cta-band {
  padding-top: clamp(8px, 2vw, 24px);
  padding-bottom: clamp(40px, 6vw, 72px);
}
.page-products .cta-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  padding: clamp(48px, 7vw, 84px) clamp(22px, 5vw, 64px);
  background:
    repeating-linear-gradient(-45deg, rgba(255,255,255,.015) 0 2px, transparent 2px 16px),
    linear-gradient(120deg, rgba(57,255,20,.1), rgba(10,22,40,.7) 55%, rgba(255,106,0,.12)),
    var(--navy-light);
  border-top: 2px solid var(--neon-green);
  border-bottom: 2px solid var(--orange);
  position: relative;
  overflow: hidden;
}
.page-products .cta-copy h2 {
  font-family: var(--font-headline);
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.06;
  color: var(--off-white);
  margin: 16px 0 10px;
}
.page-products .cta-copy p {
  font-size: 15px;
  line-height: 1.65;
  color: var(--muted-blue);
  max-width: 50ch;
}
.page-products .cta-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

/* 桌面端网格增强 */
@media (min-width: 760px) {
  .page-products .product-hero {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
    align-items: center;
    gap: 40px;
  }
  .page-products .product-hero::after {
    grid-column: 1 / -1;
  }
  .page-products .hero-visual {
    clip-path: polygon(8% 0, 100% 0, 100% 100%, 0 100%);
  }
  .page-products .service-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: clamp(32px, 5vw, 64px);
    align-items: center;
  }
  .page-products .service-grid-reverse {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  }
  .page-products .service-grid-reverse .service-copy {
    grid-column: 2;
    grid-row: 1;
  }
  .page-products .service-grid-reverse .service-figure {
    grid-column: 1;
    grid-row: 1;
  }
}

@media (min-width: 900px) {
  .page-products .cta-inner {
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
    align-items: center;
  }
  .page-products .cta-links {
    justify-content: flex-end;
  }
}
