/* ===== 方案中心页面专属样式 ===== */
.page-products {
  --pp-cut: 16px;
  --pp-ease: cubic-bezier(0.22, 1, 0.36, 1);
  background: var(--c-white);
  color: var(--c-deep);
  overflow-x: hidden;
}

/* 面包屑 */
.page-products .breadcrumb {
  padding-top: 20px;
  padding-bottom: 8px;
  font-size: 13px;
  color: var(--c-gray);
}

.page-products .breadcrumb a {
  color: var(--c-electric);
  text-decoration: none;
  font-weight: 600;
}

.page-products .breadcrumb a:hover {
  color: var(--c-flame);
}

/* ===== Hero 应用概览 ===== */
.page-products .products-hero {
  position: relative;
  background:
    repeating-linear-gradient(135deg, rgba(255,255,255,0.025) 0 2px, transparent 2px 12px),
    linear-gradient(160deg, var(--c-deep) 0%, #0d2440 55%, var(--c-ocean) 100%);
  color: var(--c-white);
  padding: 48px 0 72px;
  overflow: hidden;
}

.page-products .products-hero__deco {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.7;
}

.page-products .products-hero__deco svg {
  width: 100%;
  height: 100%;
  display: block;
}

.page-products .products-hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 36px;
}

.page-products .products-hero__kicker,
.page-products .section-head__kicker {
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--c-flame);
  font-weight: 700;
  margin: 0 0 10px;
}

.page-products .products-hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(28px, 5vw, 44px);
  line-height: 1.12;
  margin: 0 0 18px;
  letter-spacing: 0.01em;
}

.page-products .products-hero__lead {
  color: rgba(255, 255, 255, 0.85);
  font-size: 16px;
  line-height: 1.75;
  max-width: 52ch;
  margin: 0;
}

.page-products .products-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.page-products .btn--primary {
  background: linear-gradient(135deg, var(--c-flame) 0%, #E85A2A 100%);
  color: var(--c-deep);
  border: none;
  padding: 14px 24px;
  font-weight: 700;
  font-size: 14px;
  border-radius: 2px;
  clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px));
  transition: transform 0.3s var(--pp-ease), box-shadow 0.3s var(--pp-ease);
  display: inline-block;
  text-decoration: none;
}

.page-products .btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(255, 107, 53, 0.28);
}

.page-products .btn--outline-light {
  border: 1px solid rgba(255,255,255,0.6);
  color: var(--c-white);
  background: rgba(255,255,255,0.06);
  padding: 14px 24px;
  font-weight: 600;
  font-size: 14px;
  border-radius: 2px;
  clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px));
  transition: background 0.3s var(--pp-ease), border-color 0.3s var(--pp-ease);
  display: inline-block;
  text-decoration: none;
}

.page-products .btn--outline-light:hover {
  background: rgba(255, 215, 0, 0.15);
  border-color: var(--c-yellow);
}

.page-products .products-hero__stats {
  list-style: none;
  margin: 34px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  max-width: 440px;
}

.page-products .products-hero__stats li {
  background: rgba(255, 255, 255, 0.07);
  border-radius: 2px;
  padding: 14px 16px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  border-left: 3px solid var(--c-yellow);
}

.page-products .products-stat__num {
  font-family: var(--font-heading);
  font-size: 22px;
  color: var(--c-yellow);
  line-height: 1.2;
}

.page-products .products-stat__label {
  font-size: 12px;
  color: rgba(255,255,255,0.6);
}

.page-products .products-hero__visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.page-products .products-hero__phone-frame {
  position: relative;
  width: 200px;
  max-width: 75%;
  background: linear-gradient(165deg, var(--c-ocean), var(--c-deep));
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 36px;
  padding: 10px;
  transform: rotate(3deg);
  box-shadow: 18px 18px 0 rgba(255, 107, 53, 0.22), 0 30px 50px rgba(0, 0, 0, 0.45);
}

.page-products .products-hero__phone-frame::after {
  content: "";
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: 42px;
  height: 4px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.35);
}

.page-products .products-hero__phone-img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 27px;
}

.page-products .products-hero__visual-caption {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: 0.08em;
  text-align: center;
}

/* ===== 功能路径 ===== */
.page-products .products-path {
  padding: 64px 0 72px;
  background: var(--c-white);
}

.page-products .products-path .section-head {
  margin-bottom: 36px;
}

.page-products .products-path__steps {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  max-width: 760px;
  margin: 0 auto;
}

.page-products .products-path__card {
  position: relative;
  padding: 30px 28px 26px;
  border-radius: 2px;
  clip-path: polygon(0 0, calc(100% - 14px) 0, 100% 14px, 100% 100%, 14px 100%, 0 calc(100% - 14px));
  transition: transform 0.4s var(--pp-ease), box-shadow 0.4s var(--pp-ease);
}

.page-products .products-path__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 28px rgba(11, 30, 51, 0.14);
}

.page-products .products-path__card--schedule {
  background: linear-gradient(90deg, var(--c-yellow) 0 4px, transparent 4px), var(--c-sand);
  color: var(--c-deep);
}

.page-products .products-path__card--data {
  background: linear-gradient(90deg, var(--c-flame) 0 4px, transparent 4px), var(--c-ocean);
  color: var(--c-white);
}

.page-products .products-path__card--team {
  background: linear-gradient(90deg, var(--c-green) 0 4px, transparent 4px), var(--c-indigo);
  color: var(--c-white);
}

.page-products .products-path__num {
  font-family: var(--font-heading);
  font-size: 44px;
  line-height: 1;
  color: var(--c-flame);
  margin-bottom: 10px;
  opacity: 0.9;
}

.page-products .products-path__card--data .products-path__num {
  color: var(--c-yellow);
}

.page-products .products-path__card--team .products-path__num {
  color: var(--c-yellow);
}

.page-products .products-path__card h3 {
  font-size: 21px;
  font-weight: 800;
  margin: 12px 0 10px;
  line-height: 1.3;
}

.page-products .products-path__card p {
  font-size: 14px;
  line-height: 1.7;
  margin: 0;
  opacity: 0.85;
}

.page-products .products-path__link {
  display: inline-block;
  margin-top: 16px;
  color: var(--c-electric);
  text-decoration: none;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.02em;
}

.page-products .products-path__link span {
  display: inline-block;
  transition: transform 0.3s var(--pp-ease);
}

.page-products .products-path__link:hover span {
  transform: translateX(4px);
}

.page-products .products-path__card--data .products-path__link,
.page-products .products-path__card--team .products-path__link {
  color: var(--c-yellow);
}

.page-products .products-path__line {
  position: relative;
  width: 3px;
  height: 52px;
  margin: 8px 0 8px 28px;
  background: repeating-linear-gradient(180deg, var(--c-flame) 0 6px, transparent 6px 12px);
}

.page-products .products-path__line::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 10px;
  height: 10px;
  transform: translateX(-50%) rotate(45deg);
  background: var(--c-yellow);
}

/* ===== 赛程中心 ===== */
.page-products .products-schedule {
  padding: 64px 0;
}

.page-products .products-schedule__inner {
  display: grid;
  gap: 40px;
}

.page-products .products-schedule h2 {
  font-family: var(--font-heading);
  font-size: clamp(24px, 4vw, 34px);
  line-height: 1.2;
  margin: 0 0 16px;
  color: var(--c-deep);
}

.page-products .products-schedule__lead {
  font-size: 16px;
  line-height: 1.75;
  color: #43536a;
  margin: 0 0 20px;
  max-width: 54ch;
}

.page-products .products-schedule__points {
  list-style: none;
  margin: 0 0 24px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.page-products .products-schedule__points li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  line-height: 1.6;
  color: #33455d;
}

.page-products .products-check {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--c-green);
  color: var(--c-white);
  font-size: 12px;
  margin-top: 2px;
}

.page-products .products-schedule__leagues {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}

.page-products .products-schedule__league-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-gray);
  margin-right: 4px;
}

.page-products .products-schedule__leagues .tag {
  background: var(--c-white);
  border: 1px solid rgba(11, 30, 51, 0.12);
  color: var(--c-deep);
  font-size: 12px;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 2px;
}

.page-products .products-steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
  background: var(--c-white);
  border-radius: 2px;
  box-shadow: 0 12px 28px rgba(11, 30, 51, 0.08);
}

.page-products .products-steps li {
  display: flex;
  gap: 16px;
  padding: 18px 20px;
  border-bottom: 1px solid rgba(11, 30, 51, 0.08);
  align-items: flex-start;
  transition: background 0.3s var(--pp-ease);
}

.page-products .products-steps li:last-child {
  border-bottom: none;
}

.page-products .products-steps li:hover {
  background: rgba(46, 107, 255, 0.04);
}

.page-products .products-steps__num {
  font-family: var(--font-heading);
  font-size: 20px;
  color: var(--c-flame);
  line-height: 1.2;
  width: 28px;
  flex-shrink: 0;
  position: relative;
}

.page-products .products-steps__num::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 22px;
  height: 3px;
  background: linear-gradient(90deg, var(--c-flame), var(--c-yellow));
}

.page-products .products-steps h3 {
  font-size: 15px;
  font-weight: 800;
  margin: 0 0 4px;
  color: var(--c-deep);
}

.page-products .products-steps p {
  font-size: 13px;
  line-height: 1.55;
  color: var(--c-gray);
  margin: 0;
}

/* ===== 数据面板 ===== */
.page-products .products-data {
  padding: 64px 0;
  background:
    linear-gradient(0deg, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.18)),
    repeating-linear-gradient(-45deg, rgba(255, 255, 255, 0.02) 0 2px, transparent 2px 10px),
    var(--c-deep);
  color: var(--c-white);
}

.page-products .products-data__inner {
  display: grid;
  gap: 40px;
}

.page-products .products-data__visual {
  position: relative;
}

.page-products .products-data__frame {
  position: relative;
  clip-path: polygon(0 0, calc(100% - 18px) 0, 100% 18px, 100% 100%, 18px 100%, 0 calc(100% - 18px));
  background: var(--c-ocean);
  padding: 6px;
}

.page-products .products-data__img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px));
}

.page-products .products-data__badge {
  position: absolute;
  top: -10px;
  left: 16px;
  background: var(--c-flame);
  color: var(--c-white);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 6px 14px;
  clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 8px 100%, 0 calc(100% - 8px));
  z-index: 2;
}

.page-products .products-data h2 {
  font-family: var(--font-heading);
  font-size: clamp(24px, 4vw, 34px);
  line-height: 1.2;
  margin: 0 0 16px;
  color: var(--c-white);
}

.page-products .products-data__lead {
  font-size: 16px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.8);
  margin: 0 0 22px;
  max-width: 52ch;
}

.page-products .products-data__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin: 0 0 20px;
}

.page-products .products-data__list div {
  background: rgba(255, 255, 255, 0.07);
  padding: 12px 14px;
  border-left: 3px solid var(--c-yellow);
}

.page-products .products-data__list dt {
  font-size: 13px;
  font-weight: 700;
  color: var(--c-yellow);
  margin-bottom: 2px;
}

.page-products .products-data__list dd {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.65);
  margin: 0;
  line-height: 1.45;
}

.page-products .products-data__details,
.page-products .products-team__details {
  margin: 0 0 20px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.05);
  border-radius: 2px;
}

.page-products .products-data__details summary,
.page-products .products-team__details summary {
  padding: 12px 14px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  color: var(--c-yellow);
  list-style: none;
  position: relative;
}

.page-products .products-data__details summary::-webkit-details-marker,
.page-products .products-team__details summary::-webkit-details-marker {
  display: none;
}

.page-products .products-data__details summary::after,
.page-products .products-team__details summary::after {
  content: "+";
  position: absolute;
  right: 14px;
  font-size: 16px;
  color: var(--c-flame);
  transition: transform 0.3s var(--pp-ease);
}

.page-products .products-data__details[open] summary::after,
.page-products .products-team__details[open] summary::after {
  transform: rotate(45deg);
}

.page-products .products-data__details ul,
.page-products .products-team__details ul {
  margin: 0;
  padding: 0 14px 14px;
  font-size: 13px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
}

.page-products .products-data__details li,
.page-products .products-team__details li {
  margin-left: 16px;
}

/* ===== 球队库 ===== */
.page-products .products-team {
  padding: 64px 0;
  background:
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.02) 0 2px, transparent 2px 10px),
    linear-gradient(150deg, var(--c-indigo) 0%, #2A0747 80%);
  color: var(--c-white);
}

.page-products .products-team__inner {
  display: grid;
  gap: 40px;
}

.page-products .products-team h2 {
  font-family: var(--font-heading);
  font-size: clamp(24px, 4vw, 34px);
  line-height: 1.22;
  margin: 0 0 16px;
  color: var(--c-white);
}

.page-products .products-team__lead {
  font-size: 16px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.82);
  margin: 0 0 22px;
  max-width: 52ch;
}

.page-products .products-team__route {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
}

.page-products .products-team__route-row {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  line-height: 1.5;
  padding: 12px 14px;
  border-radius: 2px;
}

.page-products .products-team__route-row--old {
  background: rgba(128, 0, 32, 0.35);
  border-left: 3px solid var(--c-wine);
  color: rgba(255, 255, 255, 0.75);
}

.page-products .products-team__route-row--new {
  background: rgba(0, 107, 94, 0.35);
  border-left: 3px solid var(--c-green);
  color: var(--c-white);
}

.page-products .products-team__route-label {
  flex-shrink: 0;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 8px;
  border-radius: 2px;
}

.page-products .products-team__route-row--old .products-team__route-label {
  background: rgba(128, 0, 32, 0.6);
  color: #F6C9C3;
}

.page-products .products-team__route-row--new .products-team__route-label {
  background: rgba(0, 107, 94, 0.7);
  color: #CDF3E4;
}

.page-products .products-team .products-team__details {
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.06);
}

.page-products .products-team__visual {
  position: relative;
}

.page-products .products-team__frame {
  position: relative;
  clip-path: polygon(0 0, calc(100% - 18px) 0, 100% 18px, 100% 100%, 18px 100%, 0 calc(100% - 18px));
  background: rgba(255, 255, 255, 0.1);
  padding: 6px;
}

.page-products .products-team__img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px));
}

.page-products .products-team__badge {
  position: absolute;
  bottom: -10px;
  right: 22px;
  background: var(--c-yellow);
  color: var(--c-deep);
  font-size: 12px;
  font-weight: 800;
  padding: 6px 14px;
  clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 8px 100%, 0 calc(100% - 8px));
  z-index: 2;
}

/* ===== 功能对比 ===== */
.page-products .products-compare {
  padding: 64px 0;
}

.page-products .products-compare h2 {
  font-family: var(--font-heading);
  font-size: clamp(24px, 4vw, 34px);
  line-height: 1.2;
  margin: 0 0 12px;
  color: var(--c-deep);
}

.page-products .products-compare .section-head__desc {
  font-size: 15px;
  line-height: 1.7;
  color: #5a6a7e;
  max-width: 56ch;
  margin: 0;
}

.page-products .products-compare__grid {
  display: grid;
  gap: 32px;
  margin-top: 36px;
}

.page-products .products-compare__table-wrap {
  overflow-x: auto;
  background: var(--c-white);
  border: 1px solid rgba(11, 30, 51, 0.08);
  box-shadow: 0 10px 24px rgba(11, 30, 51, 0.06);
  border-radius: 2px;
}

.page-products .products-compare__table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
  min-width: 520px;
}

.page-products .products-compare__table th {
  background: var(--c-deep);
  color: var(--c-white);
  font-weight: 700;
  text-align: left;
  padding: 12px 16px;
  font-size: 12px;
  letter-spacing: 0.04em;
}

.page-products .products-compare__table th:first-child {
  color: var(--c-yellow);
}

.page-products .products-compare__table td {
  padding: 13px 16px;
  border-bottom: 1px solid rgba(11, 30, 51, 0.08);
  line-height: 1.55;
  color: #33455d;
}

.page-products .products-compare__table tr:last-child td {
  border-bottom: none;
}

.page-products .products-compare__table td:first-child {
  font-weight: 700;
  color: var(--c-deep);
  white-space: nowrap;
}

.page-products .products-compare__visual {
  margin: 0;
}

.page-products .products-compare__visual img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  clip-path: polygon(0 0, calc(100% - 18px) 0, 100% 18px, 100% 100%, 18px 100%, 0 calc(100% - 18px));
}

/* 版本演进 */
.page-products .products-version {
  margin-top: 48px;
  background: var(--c-deep);
  border-radius: 2px;
  padding: 28px 24px;
  color: var(--c-white);
  position: relative;
  overflow: hidden;
}

.page-products .products-version::before {
  content: "";
  position: absolute;
  right: -40px;
  bottom: -40px;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  border: 1px solid rgba(255, 215, 0, 0.25);
}

.page-products .products-version h3 {
  font-family: var(--font-heading);
  font-size: 20px;
  margin: 0 0 20px;
  color: var(--c-yellow);
}

.page-products .products-version__timeline {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
  z-index: 1;
}

.page-products .products-version__timeline li {
  display: grid;
  grid-template-columns: auto auto 1fr;
  gap: 12px;
  align-items: baseline;
  font-size: 13px;
  line-height: 1.5;
}

.page-products .products-version__tagline {
  font-family: var(--font-heading);
  font-size: 14px;
  color: var(--c-flame);
  white-space: nowrap;
}

.page-products .products-version__timeline strong {
  color: var(--c-white);
  font-weight: 800;
  white-space: nowrap;
}

.page-products .products-version__timeline li span:last-child {
  color: rgba(255, 255, 255, 0.65);
}

/* ===== 下载与版本 ===== */
.page-products .products-download {
  padding: 64px 0;
  background:
    linear-gradient(120deg, rgba(255, 107, 53, 0.12) 0%, transparent 40%),
    repeating-linear-gradient(-45deg, rgba(255, 255, 255, 0.02) 0 2px, transparent 2px 10px),
    var(--c-deep);
  color: var(--c-white);
}

.page-products .products-download__inner {
  display: grid;
  gap: 40px;
}

.page-products .products-download h2 {
  font-family: var(--font-heading);
  font-size: clamp(24px, 4vw, 34px);
  line-height: 1.2;
  margin: 0 0 16px;
  color: var(--c-white);
}

.page-products .products-download__lead {
  font-size: 16px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.82);
  margin: 0 0 24px;
  max-width: 52ch;
}

.page-products .products-download__points {
  list-style: none;
  margin: 0 0 22px;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.page-products .products-download__points li {
  background: rgba(255, 255, 255, 0.07);
  border-left: 3px solid var(--c-flame);
  padding: 12px 14px;
  display: flex;
  flex-direction: column;
  gap: 3px;
  font-size: 12px;
}

.page-products .products-download__points li span {
  color: rgba(255, 255, 255, 0.55);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.page-products .products-download__points li strong {
  font-size: 13px;
  font-weight: 800;
  color: var(--c-white);
  line-height: 1.45;
}

.page-products .products-download__note {
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.04);
  padding: 16px 18px;
  font-size: 13px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
}

.page-products .products-download__note p {
  margin: 0 0 8px;
}

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

.page-products .products-download__note a {
  color: var(--c-yellow);
  font-weight: 600;
  text-decoration: none;
}

.page-products .products-download__note a:hover {
  text-decoration: underline;
}

.page-products .products-download__visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.page-products .products-download__icon {
  width: 200px;
  max-width: 70%;
  clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 20px, 100% 100%, 20px 100%, 0 calc(100% - 20px));
  box-shadow: 0 20px 36px rgba(0, 0, 0, 0.4);
}

.page-products .products-download__img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.page-products .products-download__hint {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: 0.1em;
  text-align: center;
}

/* ===== 延伸了解 ===== */
.page-products .products-more {
  padding: 56px 0 72px;
  background: var(--c-white);
}

.page-products .products-more h2 {
  font-family: var(--font-heading);
  font-size: clamp(22px, 3.5vw, 30px);
  line-height: 1.2;
  margin: 0 0 8px;
  color: var(--c-deep);
}

.page-products .products-more__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin-top: 32px;
}

.page-products .products-more__card {
  position: relative;
  display: block;
  background: var(--c-ocean);
  color: var(--c-white);
  text-decoration: none;
  padding: 22px 20px;
  border-radius: 2px;
  clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px));
  transition: background 0.3s var(--pp-ease), transform 0.3s var(--pp-ease), box-shadow 0.3s var(--pp-ease);
  overflow: hidden;
}

.page-products .products-more__card::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, transparent 50%, rgba(255, 215, 0, 0.9) 50%);
  opacity: 0;
  transition: opacity 0.3s var(--pp-ease);
}

.page-products .products-more__card:hover {
  background: var(--c-deep);
  transform: translateY(-3px);
  box-shadow: 0 14px 24px rgba(11, 30, 51, 0.18);
}

.page-products .products-more__card:hover::before {
  opacity: 1;
}

.page-products .products-more__card h3 {
  font-size: 16px;
  font-weight: 800;
  color: var(--c-yellow);
  margin: 0 0 6px;
}

.page-products .products-more__card p {
  font-size: 13px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.65);
  margin: 0;
}

/* ===== 桌面端适配 ===== */
@media (min-width: 768px) {
  .page-products .products-hero {
    padding: 72px 0 96px;
  }

  .page-products .products-hero__inner {
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
    gap: 48px;
  }

  .page-products .products-hero__stats {
    grid-template-columns: repeat(4, 1fr);
    max-width: none;
  }

  .page-products .products-hero__phone-frame {
    width: 220px;
  }

  .page-products .products-path__card--schedule {
    margin-right: auto;
  }

  .page-products .products-path__card--data {
    margin-left: auto;
    margin-right: 0;
  }

  .page-products .products-path__card--team {
    margin-right: auto;
  }

  .page-products .products-path__line {
    margin-left: 80px;
  }

  .page-products .products-schedule__inner {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 56px;
    align-items: center;
  }

  .page-products .products-data__inner {
    grid-template-columns: 0.9fr 1.1fr;
    gap: 56px;
    align-items: center;
  }

  .page-products .products-data__content {
    order: 2;
  }

  .page-products .products-data__visual {
    order: 1;
  }

  .page-products .products-team__inner {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 56px;
    align-items: center;
  }

  .page-products .products-compare__grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
  }

  .page-products .products-version__timeline {
    flex-direction: row;
    gap: 24px;
  }

  .page-products .products-version__timeline li {
    flex: 1;
    display: block;
    padding-left: 16px;
    border-left: 3px solid rgba(255, 215, 0, 0.5);
  }

  .page-products .products-version__tagline,
  .page-products .products-version__timeline strong,
  .page-products .products-version__timeline li span:last-child {
    display: block;
    white-space: normal;
  }

  .page-products .products-version__tagline {
    margin-bottom: 6px;
  }

  .page-products .products-version__timeline strong {
    margin-bottom: 4px;
  }

  .page-products .products-download__inner {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 48px;
    align-items: center;
  }

  .page-products .products-more__grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }
}

@media (min-width: 1024px) {
  .page-products .products-hero {
    padding: 96px 0 120px;
  }

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

  .page-products .products-path,
  .page-products .products-schedule,
  .page-products .products-data,
  .page-products .products-team,
  .page-products .products-compare,
  .page-products .products-download {
    padding: 88px 0;
  }
}
