/* === 中赛新能微官网 — 各区段专用样式 === */

/* ======== 产品概览区段 ======== */
.product-overview {
  background: var(--color-bg-alt);
}

.product-overview .section__title {
  margin-bottom: var(--spacing-2xl);
}

/* ======== 产品中心区段 ======== */
.products-full {
  background: var(--color-bg-alt);
}

.category-section {
  margin-bottom: var(--spacing-2xl);
}

.category-section:last-child {
  margin-bottom: 0;
}

.category-section__title {
  font-family: var(--font-family-display);
  font-size: var(--font-size-xl);
  font-weight: var(--font-weight-semibold);
  color: var(--color-navy-800);
  margin-bottom: var(--spacing-xs);
  padding-bottom: var(--spacing-sm);
  border-bottom: 2px solid var(--color-gold-400);
  display: inline-block;
}

.category-section__products {
  margin-top: var(--spacing-lg);
}

/* ======== 首页统计区段 ======== */
.stats-section {
  background: var(--color-white);
}

/* ======== 关于我们区段 ======== */
.about-section {
  background: var(--color-white);
}

.about__intro {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--spacing-xl);
  margin-bottom: var(--spacing-3xl);
}

.about__text p {
  font-size: var(--font-size-base);
  color: var(--color-gray-700);
  line-height: var(--line-height-relaxed);
  margin-bottom: var(--spacing-md);
}

.about__image {
  aspect-ratio: 4 / 3;
  background: linear-gradient(135deg, var(--color-navy-800), var(--color-navy-700));
  border-radius: var(--radius-lg);
  overflow: hidden;
}

/* 关于我们幻灯片 */
.about-slideshow {
  position: relative;
}

.about-slideshow__slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 0;
  transition: opacity 0.8s ease;
  pointer-events: none;
}

.about-slideshow__slide--active {
  opacity: 1;
  pointer-events: auto;
}

.about-slideshow__dots {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 2;
}

.about-slideshow__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.5);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: background 0.3s ease;
}

.about-slideshow__dot--active,
.about-slideshow__dot:hover {
  background: var(--color-gold-400);
}

.about__mission {
  padding: var(--spacing-xl);
  background: linear-gradient(135deg, var(--color-navy-800), var(--color-navy-700));
  border-radius: var(--radius-md);
  border-left: 3px solid var(--color-gold-400);
  margin-bottom: var(--spacing-3xl);
}

.about__mission p {
  font-size: var(--font-size-lg);
  color: var(--color-white);
  line-height: var(--line-height-relaxed);
  font-weight: var(--font-weight-medium);
}

.about__timeline-title,
.about__cert-title,
.about__partner-title {
  font-family: var(--font-family-display);
  font-size: var(--font-size-xl);
  font-weight: var(--font-weight-semibold);
  color: var(--color-navy-800);
  margin-bottom: var(--spacing-xl);
  text-align: center;
}

/* ======== 案例区段 ======== */
.cases-section {
  background: var(--color-bg-alt);
}
