/* ===== 解决方案页面专属样式 ===== */
.page-products {
  --exhibit-pad: clamp(28px, 4vw, 48px);
  --exhibit-gap: clamp(24px, 3vw, 40px);
  background: var(--white);
  color: var(--grey);
  overflow-x: hidden;
}

/* ---------- 首屏 ---------- */
.page-products .solution-hero {
  position: relative;
  background: linear-gradient(135deg, rgba(76, 175, 80, 0.16) 0%, rgba(13, 27, 42, 0) 42%), var(--navy);
  color: var(--white);
  padding: 40px 0 72px;
  overflow: hidden;
}
.page-products .solution-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}
.page-products .solution-hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 6px;
  background: linear-gradient(90deg, var(--kiwi) 0 58%, var(--orange) 58% 76%, transparent 76%);
  transform: skewY(-1deg) translateY(3px);
  z-index: 1;
}
.page-products .solution-hero__inner {
  position: relative;
  z-index: 2;
}
.page-products .solution-hero__grid {
  display: grid;
  gap: 40px;
  margin-top: 32px;
}
.page-products .solution-hero__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}
.page-products .solution-hero__content .section-kicker {
  color: var(--kiwi-light);
  margin: 0;
}
.page-products .solution-hero h1 {
  margin: 0;
  font-family: var(--font-headline);
  font-size: clamp(1.5rem, 4.6vw, 3.4rem);
  line-height: 1.12;
  letter-spacing: 0.01em;
  color: var(--white);
}
.page-products .solution-hero__lead {
  max-width: 560px;
  font-size: 1rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.86);
  margin: 0;
}
.page-products .solution-hero__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 4px;
}
.page-products .solution-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 8px;
}
.page-products .solution-hero__visual {
  position: relative;
}
.page-products .solution-hero__visual::before {
  content: "LIVE / 01";
  position: absolute;
  top: 14px;
  left: -6px;
  z-index: 2;
  font-family: var(--font-data);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  color: var(--navy);
  background: var(--kiwi);
  padding: 4px 10px;
  border-radius: var(--radius);
  text-transform: uppercase;
}
.page-products .solution-hero__frame {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line-light);
  background: var(--navy-soft);
  box-shadow: var(--shadow-lift);
}
.page-products .solution-hero__frame img {
  display: block;
  width: 100%;
  height: auto;
  max-width: 100%;
  object-fit: cover;
}

/* ---------- 方案目录 ---------- */
.page-products .solution-directory {
  position: relative;
  z-index: 2;
  border-bottom: 1px solid var(--line);
  background: var(--white);
  padding: 20px 0;
}
.page-products .solution-directory__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 8px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.page-products .solution-directory__list::-webkit-scrollbar {
  display: none;
}
.page-products .solution-directory__item {
  flex: 0 0 auto;
}
.page-products .solution-directory__item a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--off-white);
  color: var(--navy);
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  transition: border-color 0.2s var(--ease), background 0.2s var(--ease), color 0.2s var(--ease);
}
.page-products .solution-directory__item a:hover,
.page-products .solution-directory__item a:focus {
  background: var(--kiwi);
  border-color: var(--kiwi);
  color: var(--white);
}

/* ---------- 展区通用 ---------- */
.page-products .solution-exhibit {
  padding: var(--exhibit-pad) 0;
}
.page-products .solution-exhibit--lineup {
  background: var(--off-white);
}
.page-products .solution-exhibit--team {
  background:
    radial-gradient(circle at 12% 18%, rgba(76, 175, 80, 0.2), transparent 32%),
    linear-gradient(180deg, var(--navy-soft), var(--navy));
  color: var(--white);
}
.page-products .solution-exhibit__grid {
  display: grid;
  gap: var(--exhibit-gap);
  align-items: center;
}
.page-products .solution-exhibit__head {
  max-width: 680px;
  margin-bottom: 8px;
}
.page-products .solution-exhibit__head .section-kicker {
  margin: 0 0 8px;
}
.page-products .solution-exhibit__head h2,
.page-products .solution-exhibit__content h2 {
  margin: 8px 0 12px;
  font-family: var(--font-headline);
  font-size: clamp(1.7rem, 4vw, 2.6rem);
  line-height: 1.12;
  color: var(--navy);
}
.page-products .solution-exhibit--team .solution-exhibit__head h2 {
  color: var(--white);
}
.page-products .solution-exhibit__lead {
  margin: 0 0 12px;
  font-size: 1.05rem;
  line-height: 1.7;
  font-weight: 600;
  color: var(--navy);
}
.page-products .solution-exhibit--team .solution-exhibit__head .solution-exhibit__lead {
  color: var(--kiwi-light);
}
.page-products .solution-exhibit__text {
  margin: 0 0 16px;
  font-size: 0.95rem;
  line-height: 1.8;
}
.page-products .solution-exhibit--team .solution-exhibit__text {
  color: rgba(255, 255, 255, 0.82);
}
.page-products .exhibit-label {
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 14px;
  padding: 6px 10px;
  border: 1px solid var(--line);
  border-left: 3px solid var(--orange);
  background: var(--white);
  font-family: var(--font-data);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--navy);
}
.page-products .exhibit-label__num {
  color: var(--kiwi-dark);
  font-weight: 600;
}
.page-products .solution-exhibit--team .exhibit-label {
  background: rgba(13, 27, 42, 0.72);
  color: rgba(255, 255, 255, 0.88);
  border-color: var(--line-light);
  border-left-color: var(--orange);
}
.page-products .solution-exhibit--team .exhibit-label__num {
  color: var(--kiwi-light);
}

/* ---------- 展区媒体框架 ---------- */
.page-products .solution-exhibit__media {
  display: flex;
  flex-direction: column;
}
.page-products .solution-exhibit__frame {
  position: relative;
  overflow: hidden;
  width: 100%;
  border-radius: var(--radius);
  background: var(--off-white);
  box-shadow: var(--shadow);
}
.page-products .solution-exhibit__frame img {
  display: block;
  width: 100%;
  height: auto;
  max-width: 100%;
  object-fit: cover;
}
.page-products .solution-exhibit__frame--portrait {
  max-width: 360px;
  margin-inline: auto;
  background: var(--white);
}
.page-products .solution-exhibit__frame--wide {
  background: var(--off-white);
}

/* ---------- iOS 能力条 ---------- */
.page-products .version-rail {
  display: grid;
  gap: 10px;
  margin: 20px 0 24px;
  padding: 16px;
  border: 1px solid var(--line);
  background: var(--off-white);
  position: relative;
}
.page-products .version-rail::before {
  content: "VERSION";
  position: absolute;
  top: -8px;
  right: 12px;
  padding: 2px 8px;
  background: var(--off-white);
  font-family: var(--font-data);
  font-size: 0.64rem;
  letter-spacing: 0.12em;
  color: var(--grey);
}
.page-products .version-rail__item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 12px;
  border-left: 2px solid var(--line);
  background: var(--white);
  color: var(--grey);
}
.page-products .version-rail__item--current {
  border-left-color: var(--orange);
}
.page-products .version-rail__code {
  flex: 0 0 auto;
  font-family: var(--font-data);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--navy);
}
.page-products .version-rail__desc {
  font-size: 0.88rem;
  line-height: 1.6;
}

/* ---------- 功能列表 ---------- */
.page-products .feature-list {
  list-style: none;
  margin: 0 0 20px;
  padding: 0;
  display: grid;
  gap: 8px;
}
.page-products .feature-list li {
  position: relative;
  padding-left: 20px;
  font-size: 0.92rem;
  line-height: 1.6;
  color: var(--grey);
}
.page-products .feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.58em;
  width: 8px;
  height: 8px;
  background: var(--kiwi);
  transform: rotate(45deg);
}

/* ---------- 阵容核对条 ---------- */
.page-products .check-grid {
  display: grid;
  gap: 1px;
  margin: 20px 0 20px;
  border: 1px solid var(--line);
  background: var(--line);
}
.page-products .check-grid__item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  background: var(--white);
  padding: 12px 14px;
}
.page-products .check-grid__label {
  font-size: 0.9rem;
  color: var(--grey);
}
.page-products .check-grid__value {
  font-family: var(--font-data);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--navy);
}

/* ---------- 球队专区订阅 ---------- */
.page-products .solution-subscribe {
  display: grid;
  gap: 24px;
  margin: 32px 0;
}
.page-products .solution-subscribe__visual {
  display: flex;
  flex-direction: column;
}
.page-products .solution-subscribe__frame {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line-light);
  background: var(--navy-soft);
  box-shadow: var(--shadow-lift);
}
.page-products .solution-subscribe__frame img {
  display: block;
  width: 100%;
  height: auto;
  max-width: 100%;
  object-fit: cover;
}
.page-products .solution-subscribe__cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 12px;
}
.page-products .stat-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 20px 16px;
  overflow: hidden;
  border: 1px solid var(--line-light);
  border-top: 2px solid var(--kiwi);
  background: rgba(255, 255, 255, 0.07);
}
.page-products .stat-card--accent {
  border-top-color: var(--orange);
}
.page-products .stat-card__num {
  font-family: var(--font-data);
  font-size: 1.7rem;
  font-weight: 600;
  line-height: 1.1;
  color: var(--white);
}
.page-products .stat-card__label {
  font-size: 0.8rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.7);
}
.page-products .solution-subscribe__cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 24px;
  border-top: 1px solid var(--line-light);
}
.page-products .solution-subscribe__desc {
  flex: 1;
  min-width: 260px;
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.78);
}
.page-products .solution-subscribe__cta .btn-primary {
  background: var(--orange);
  border-color: var(--orange);
}
.page-products .solution-subscribe__cta .btn-primary:hover,
.page-products .solution-subscribe__cta .btn-primary:focus {
  filter: brightness(0.94);
}
.page-products .solution-exhibit--team .btn-ghost {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.45);
}

/* ---------- 简化版对比行 ---------- */
.page-products .compare-rows {
  margin: 20px 0 24px;
  border-top: 1px solid var(--line);
}
.page-products .compare-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 4px;
  border-bottom: 1px solid var(--line);
}
.page-products .compare-row__label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--navy);
}
.page-products .compare-row__label::before {
  content: "";
  width: 8px;
  height: 8px;
  background: var(--kiwi);
  transform: rotate(45deg);
}
.page-products .compare-row__value {
  font-family: var(--font-data);
  font-size: 0.82rem;
  color: var(--grey);
}

/* ---------- 选型说明 ---------- */
.page-products .solution-faq {
  background: var(--off-white);
  padding: var(--exhibit-pad) 0;
}
.page-products .solution-faq__title {
  margin: 0 0 24px;
  font-family: var(--font-headline);
  font-size: 1.8rem;
  line-height: 1.2;
  color: var(--navy);
}
.page-products .solution-faq__grid {
  display: grid;
  gap: 12px;
}

/* ---------- 桌面与平板 ---------- */
@media (min-width: 768px) {
  .page-products .solution-hero {
    padding: 56px 0 96px;
  }
  .page-products .solution-hero__grid {
    grid-template-columns: 5fr 7fr;
    gap: clamp(32px, 5vw, 72px);
    align-items: center;
    margin-top: 40px;
  }
  .page-products .solution-hero__lead {
    font-size: 1.05rem;
  }
  .page-products .solution-exhibit {
    padding: var(--exhibit-pad) 0;
  }
  .page-products .solution-exhibit__grid {
    grid-template-columns: 5fr 7fr;
  }
  .page-products .solution-exhibit__grid--reverse {
    grid-template-columns: 7fr 5fr;
  }
  .page-products .solution-exhibit__grid--reverse .solution-exhibit__media {
    order: 2;
  }
  .page-products .solution-exhibit__grid--reverse .solution-exhibit__content {
    order: 1;
  }
  .page-products .solution-subscribe {
    grid-template-columns: 5fr 7fr;
    gap: 32px;
  }
  .page-products .solution-subscribe__cards {
    gap: 16px;
  }
  .page-products .solution-faq__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
