/* ─── Product Page Styles (shared by Forge INSTANT & Forge ISO) ─── */

/* Product Hero */
.product-hero {
  position: relative;
  padding: 160px 0 100px;
  overflow: hidden;
  color: #fff;
}

.product-hero-instant {
  background: linear-gradient(135deg, #1a0a0a 0%, #2D1A1A 50%, var(--charcoal) 100%);
}

.product-hero-iso {
  background: linear-gradient(135deg, var(--charcoal) 0%, #1A1A2E 50%, #2D2D44 100%);
}

.product-hero-content {
  position: relative;
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}

.product-badge {
  display: inline-block;
  padding: 8px 18px;
  font-size: 14px;
  font-weight: 700;
  border-radius: 24px;
  margin-bottom: 24px;
  letter-spacing: 1px;
}

.product-badge-urgent {
  background: rgba(220, 38, 38, 0.15);
  color: #FF6B6B;
  border: 1px solid rgba(220, 38, 38, 0.3);
}

.product-badge-orange {
  background: rgba(232, 89, 12, 0.15);
  color: var(--orange-light);
  border: 1px solid rgba(232, 89, 12, 0.3);
}

.product-hero-title {
  font-size: 52px;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 24px;
  letter-spacing: -1px;
}

.product-hero-subtitle {
  font-size: 19px;
  color: var(--slate);
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

/* Features Grid */
.product-features-section {
  padding: 100px 0;
  background: var(--background);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.feature-card {
  background: var(--surface);
  border-radius: 16px;
  padding: 32px;
  border: 1px solid var(--border);
  transition: all 0.2s ease;
}

.feature-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.06);
}

.feature-icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.urgent-bg {
  background: var(--urgent-light);
}

.orange-bg {
  background: var(--orange-muted);
}

.feature-icon {
  font-size: 24px;
}

.feature-title {
  font-size: 17px;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 10px;
}

.feature-desc {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* Process Steps */
.product-how-it-works {
  padding: 100px 0;
}

.process-steps {
  max-width: 640px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

.process-step {
  display: flex;
  align-items: flex-start;
  gap: 24px;
}

.process-step-number {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: 14px;
  background: var(--orange);
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.process-step-content h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 6px;
}

.process-step-content p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
}

.process-connector {
  width: 2px;
  height: 32px;
  background: var(--border);
  margin-left: 23px;
}

/* Two-column process (ISO page) */
.two-col-process {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

.process-col-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 24px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--orange);
  display: inline-block;
}

/* ─── Responsive ─── */
@media (max-width: 768px) {
  .product-hero-title {
    font-size: 34px;
  }

  .product-hero-subtitle {
    font-size: 16px;
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .two-col-process {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .feature-card {
    padding: 24px;
  }
}

@media (max-width: 480px) {
  .product-hero {
    padding: 130px 0 70px;
  }

  .product-hero-title {
    font-size: 28px;
  }

  .process-step {
    gap: 16px;
  }
}
