.page-products {
  --feature-gap: 4rem;
  --feature-padding: 3rem;
}

.page-products__breadcrumb {
  padding: 1rem 0;
  font-size: 0.9rem;
  color: var(--zb-text-secondary);
}

.page-products__breadcrumb a {
  color: var(--zb-secondary);
  text-decoration: none;
  transition: border-bottom 0.2s;
}

.page-products__breadcrumb a:hover,
.page-products__breadcrumb a:focus {
  border-bottom: 1px solid var(--zb-accent);
}

.page-products__breadcrumb [aria-current="page"] {
  color: var(--zb-text-primary);
  font-weight: 500;
}

/* ===== HERO ===== */
.page-products__hero {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--zb-bg-dark) 0%, var(--zb-bg-card) 100%);
  position: relative;
  overflow: hidden;
}

.page-products__hero::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 50%;
  height: 140%;
  background: linear-gradient(135deg, transparent 40%, rgba(0, 229, 255, 0.08) 100%);
  transform: skewX(-10deg);
  pointer-events: none;
}

.page-products__hero-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  width: 100%;
  max-width: var(--zb-max-width);
  margin: 0 auto;
  padding: 0 1rem;
  position: relative;
  z-index: 1;
}

.page-products__hero-text {
  flex: 1 1 40%;
  min-width: 280px;
}

.page-products__hero-text h1 {
  font-family: var(--zb-font-heading);
  font-weight: 900;
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: var(--zb-text-primary);
  text-shadow: 0 0 10px var(--zb-primary), 0 0 20px var(--zb-secondary);
  margin-bottom: 1rem;
}

.page-products__hero-text .zb-text {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.page-products__hero-text .zb-btn {
  display: inline-block;
}

.page-products__hero-visual {
  flex: 1 1 50%;
  min-width: 280px;
}

.page-products__hero-visual img {
  width: 100%;
  height: auto;
  border: var(--zb-border-width) solid transparent;
  border-image: var(--zb-grad-main) 1;
  box-shadow: var(--zb-shadow-card);
}

/* ===== FEATURE SECTIONS ===== */
.page-products__feature {
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

.page-products__feature::before {
  content: '';
  position: absolute;
  top: 0;
  left: -5%;
  width: 110%;
  height: 100%;
  background: linear-gradient(135deg, transparent 50%, rgba(123, 47, 247, 0.06) 50%);
  pointer-events: none;
}

.page-products__feature .zb-container {
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.page-products__feature-text {
  flex: 1 1 45%;
  min-width: 280px;
}

.page-products__feature-text h2 {
  font-family: var(--zb-font-heading);
  font-weight: 700;
  font-size: 2rem;
  color: var(--zb-text-primary);
  margin-bottom: 1rem;
  text-shadow: 0 0 5px var(--zb-primary);
}

.page-products__feature-text .zb-text {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--zb-text-secondary);
}

.page-products__feature-list {
  list-style: none;
  padding: 0;
  margin-top: 1.5rem;
}

.page-products__feature-list li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.5rem;
  color: var(--zb-text-primary);
}

.page-products__feature-list li::before {
  content: '▶';
  position: absolute;
  left: 0;
  color: var(--zb-secondary);
  font-size: 0.8rem;
}

.page-products__feature-visual {
  flex: 1 1 45%;
  min-width: 280px;
}

.page-products__feature-visual img {
  width: 100%;
  height: auto;
  border: var(--zb-border-width) solid transparent;
  border-image: var(--zb-grad-main) 1;
  box-shadow: var(--zb-shadow-card);
  transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.page-products__feature-visual img:hover,
.page-products__feature-visual img:focus {
  transform: scale(1.02);
}

/* 反向右图左文 */
.page-products__feature--reverse .zb-container {
  flex-direction: row-reverse;
}

/* ===== OVERVIEW ===== */
.page-products__overview {
  padding: 5rem 0;
  text-align: center;
  background: var(--zb-bg-card);
}

.page-products__overview .zb-title {
  font-size: 2rem;
  margin-bottom: 3rem;
  text-shadow: 0 0 8px var(--zb-primary);
}

.page-products__overview-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}

.page-products__overview-item {
  flex: 1 1 260px;
  max-width: 340px;
  padding: 2rem 1.5rem;
  border: var(--zb-border-width) solid transparent;
  border-image: var(--zb-grad-main) 1;
  background: var(--zb-bg-dark);
  box-shadow: var(--zb-shadow-card);
  transition: transform 0.3s;
}

.page-products__overview-item:hover {
  transform: translateY(-4px);
}

.page-products__overview-item .zb-glow-text {
  display: block;
  font-size: 2.5rem;
  font-weight: 900;
  color: transparent;
  -webkit-text-stroke: 2px var(--zb-secondary);
  margin-bottom: 0.5rem;
}

.page-products__overview-item h3 {
  font-family: var(--zb-font-heading);
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: var(--zb-text-primary);
}

.page-products__overview-item p {
  color: var(--zb-text-secondary);
  font-size: 0.95rem;
}

/* ===== CTA ===== */
.page-products__cta {
  padding: 3rem 0;
  text-align: center;
}

.page-products__cta a {
  color: var(--zb-secondary);
  text-decoration: none;
  border-bottom: 2px solid transparent;
  transition: border-color 0.3s;
}

.page-products__cta a:hover,
.page-products__cta a:focus {
  border-bottom-color: var(--zb-accent);
}

/* ===== 响应式 (移动优先) ===== */
@media (max-width: 768px) {
  .page-products__hero {
    padding: 60px 0;
  }

  .page-products__hero-text,
  .page-products__hero-visual,
  .page-products__feature-text,
  .page-products__feature-visual {
    flex: 1 1 100%;
  }

  .page-products__hero-text h1 {
    font-size: 1.8rem;
  }

  .page-products__feature {
    padding: 3rem 0;
  }

  .page-products__feature-text h2 {
    font-size: 1.5rem;
  }

  .page-products__overview-grid {
    gap: 1rem;
  }

  .page-products__overview-item {
    flex: 1 1 100%;
  }

  .page-products__overview-item .zb-glow-text {
    font-size: 2rem;
  }
}
