/* =========================
   ChatCPQ Product Page
   ========================= */

.product-page {
  padding-top: 40px;
  padding-bottom: 80px;
}

/* HERO */
.product-hero {
  max-width: 720px;
  margin-bottom: 80px;
}

.product-kicker {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 12px;
}

.product-hero h1 {
  font-size: clamp(44px, 5vw, 72px);
  letter-spacing: -0.04em;
  margin: 0 0 18px;
}

.product-lead {
  font-size: 18px;
  line-height: 1.6;
  color: var(--text);
  max-width: 60ch;
}

.product-cta {
  margin-top: 28px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* SECTIONS */
.product-section {
  max-width: 900px;
  margin: 0 0 72px;
}

.product-section h2 {
  font-size: 28px;
  letter-spacing: -0.03em;
  margin-bottom: 12px;
}

.product-section p {
  max-width: 70ch;
  line-height: 1.6;
  margin-bottom: 12px;
}

/* TWO SIDES */
.product-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 24px;
}

.product-card {
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 20px;
  background: rgba(255,255,255,0.8);
  box-shadow: var(--shadow);
}

.product-card h3 {
  margin-top: 0;
  margin-bottom: 8px;
}

.product-card ul {
  margin: 12px 0 0;
  padding-left: 18px;
}

.product-card li {
  margin-bottom: 6px;
}

/* GRID */
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 20px;
}

.mini-card {
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 16px;
  background: rgba(255,255,255,0.75);
}

/* FINAL CTA */
.product-final {
  margin-top: 80px;
  padding-top: 48px;
  border-top: 1px solid var(--border);
  text-align: center;
}

.product-final .btn {
  margin-top: 12px;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .product-split {
    grid-template-columns: 1fr;
  }
  .product-grid {
    grid-template-columns: 1fr;
  }
}
