/* =========================================
  1. Products Section
  ========================================= */
.products-section {
  padding: 80px 0;
  max-width: 1400px;
  margin: 0 auto;
}

.section-title {
  text-align: center;
  margin-bottom: 60px;
}

.section-title h2 {
  font-size: 36px;
  color: #fff;
  margin: 0 0 10px;
}

.section-title p {
  color: #a0cfff;
  font-size: 16px;
  margin: 0;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  padding: 0 30px;
}

.product-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.4s;
  backdrop-filter: blur(10px);
  text-decoration: none;
  display: block;
}

.product-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 25px 60px rgba(43, 85, 206, 0.4);
  border-color: rgba(43, 85, 206, 0.5);
}

.product-img-box {
  height: 220px;
  overflow: hidden;
  position: relative;
}

.product-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.product-card:hover .product-img {
  transform: scale(1.1);
}

.product-content {
  padding: 30px;
}

.product-tag {
  display: inline-block;
  background: linear-gradient(135deg, #2b55ce, #6432ff);
  color: #fff;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 12px;
  margin-bottom: 15px;
}

.product-title {
  font-size: 22px;
  font-weight: bold;
  color: #fff;
  margin: 0 0 15px;
}

.product-desc {
  color: #999;
  font-size: 14px;
  line-height: 1.8;
  margin: 0 0 20px;
}

.product-features {
  list-style: none;
  padding: 0;
  margin: 0;
}

.product-features li {
  color: #a0cfff;
  font-size: 13px;
  padding: 5px 0;
  padding-left: 20px;
  position: relative;
}

.product-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #2b55ce;
}

/* =========================================
  2. Products Hero
  ========================================= */
.hero-bg {
  position: absolute;
  inset: 0;
  opacity: 0.3;
}

/* =========================================
  3. 响应式
  ========================================= */
@media (max-width: 1024px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .products-grid {
    grid-template-columns: 1fr;
  }

  .hero-content h1 {
    font-size: 42px;
  }

  .hero-stats {
    flex-direction: column;
    gap: 30px;
  }
}