/* ===== Product Hero ===== */
.product-hero {
  padding: 140px 0 80px;
  text-align: center;
  background: var(--home-hero-bg);
}

.product-hero h1 {
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
  color: var(--home-text);
}

.product-hero .hero-badge {
  display: inline-block;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 500;
  color: var(--primary);
  background: var(--primary-light);
  margin-bottom: 24px;
  letter-spacing: 0.5px;
}

.product-hero .hero-desc {
  font-size: 17px;
  color: var(--home-text-3);
  line-height: 1.8;
  margin-bottom: 36px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

/* ===== Sections ===== */
.product-section-title {
  text-align: center;
  font-size: 34px;
  font-weight: 700;
  margin-bottom: 56px;
  color: var(--home-text);
}

/* ===== Feature Rows ===== */
.features-list {
  display: flex;
  flex-direction: column;
  gap: 64px;
}

.feature-row {
  display: flex;
  align-items: center;
  gap: 64px;
}

.feature-row.reverse {
  flex-direction: row-reverse;
}

.feature-content {
  flex: 1;
}

.feature-content h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--home-text);
}

.feature-content p {
  font-size: 15px;
  color: var(--home-text-2);
  line-height: 1.8;
}

.feature-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 24px;
  margin-bottom: 16px;
}

.feature-visual {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.visual-placeholder {
  width: 100%;
  max-width: 420px;
  aspect-ratio: 4 / 3;
  border-radius: 16px;
  background: var(--home-visual-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--home-text-3);
  font-size: 48px;
}

/* ===== Product CTA ===== */
.product-cta {
  background: linear-gradient(135deg, rgba(22, 93, 255, 0.04) 0%, rgba(114, 46, 209, 0.04) 100%);
  padding: 80px 0;
  text-align: center;
}

.product-cta h2 {
  font-size: 34px;
  font-weight: 700;
  color: var(--home-text);
  margin-bottom: 10px;
}

.product-cta p {
  color: var(--home-text-3);
  margin-bottom: 28px;
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
  .product-hero {
    padding: 120px 0 60px;
  }

  .product-hero h1 {
    font-size: 34px;
  }

  .product-hero .hero-desc br {
    display: none;
  }

  .section {
    padding: 64px 0;
  }

  .product-section-title {
    font-size: 26px;
    margin-bottom: 40px;
  }

  .feature-row,
  .feature-row.reverse {
    flex-direction: column;
    gap: 32px;
  }

  .visual-placeholder {
    max-width: 100%;
  }
}
