/* =========================
   PRODUCT PAGE STYLES
   ========================= */

.product {
  max-width: 1100px;
  margin: 0 auto;
  padding: 24px 24px;
  
}



/* Spacing baseline */
.product .product-intro,
.product-features,
.product-workflow,
.product-use-cases,
.product-cta {
  padding: 45px 0;
}

/* Reduce spacing between intro sections */
.product .product-intro {
  background: #f7faff;
  padding: 60px 0 60px;
  border-bottom: 1px solid #e6eaf2;
}

.product .product-intro h2{
  font-size: clamp(2.1rem, 3vw + 1.2rem, 2.8rem);
  line-height: 1.15;
  margin-bottom: 0.7rem;
}

/* Shared section intro text */
.product .section-intro {
  color: var(--muted);
  max-width: 52rem;
  margin-bottom: 1.5rem;
}

/* =========================
   FEATURES
   ========================= */

.product .product-features h2,
.product-workflow h2,
.product-use-cases h2 {
  margin-bottom: 24px;
}

.product .feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.product .feature-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  padding: 24px;
}

.product .feature-card h3 {
  margin-bottom: 12px;
}

.product .feature-card ul {
  padding-left: 18px;
}

.product .feature-card li {
  margin-bottom: 8px;
}

/* =========================
   PRODUCT BENEFITS
   ========================= */

.product .product-benefits {
  background: #0f172a;
  color: #fff;
  padding: 80px 0;
}

.product .product-benefits h2,
.product-benefits p {
  color: #fff;
}

.product .benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.product .benefit-card {
  background: #111827;
  border-radius: 14px;
  padding: 28px;
  position: relative;
}

.product .benefit-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(to bottom, #3b82f6, #22c55e);
  border-radius: 14px 0 0 14px;
}



/* =========================
   USE CASES
   ========================= */

.product .use-cases {
  padding: 80px 0;
}

.product .use-cases .section-title {
  text-align: center;
  margin-bottom: 48px;
}

.product .use-case-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.product .use-case-card {
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #e5e7eb;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.product .use-case-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.product .use-case-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.product .use-case-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin: 16px 16px 6px;
}

.product .use-case-card p {
  font-size: 0.95rem;
  color: #4b5563;
  line-height: 1.5;
  margin: 0 16px 20px;
}

/* Responsive */
@media (max-width: 1024px) {
  .product .use-case-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .product .use-case-grid {
    grid-template-columns: 1fr;
  }
}


/* =========================
   CTA
   ========================= */

.product .product-cta {
  background: #f0f6ff;
  border-top: 1px solid #dbe7ff;
  border-bottom: 1px solid #dbe7ff;
}

.product .product-cta h2 {
  margin-bottom: 12px;
}

.product .product-cta p {
  max-width: 640px;
  color: #374151;
  margin-bottom: 24px;
}

.product .cta-actions {
  display: flex;
  gap: 12px;
}

/* =========================
   RESPONSIVE
   ========================= */

@media (max-width: 900px) {
  .product .feature-grid {
    grid-template-columns: 1fr;
  }

  .product .workflow-steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .product .use-case-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .product .workflow-steps {
    grid-template-columns: 1fr;
  }

  .product .use-case-grid {
    grid-template-columns: 1fr;
  }

  .product .cta-actions {
    flex-direction: column;
    align-items: flex-start;
  }
}
