/* ===== PRODUCT DETAIL STYLES ===== */

/* Product Hero */
.product-hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  padding: var(--space-20) 0 var(--space-16);
  overflow: hidden;
}

.product-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

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

.product-hero-badge {
  margin-bottom: var(--space-6);
}

.product-hero-title {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: var(--space-4);
  color: var(--color-text);
}

.product-hero-subtitle {
  font-size: clamp(1.25rem, 3vw, 1.5rem);
  font-weight: 500;
  color: var(--color-secondary);
  margin-bottom: var(--space-6);
}

.product-hero-description {
  font-size: var(--font-size-lg);
  color: var(--color-text-muted);
  line-height: 1.8;
  margin-bottom: var(--space-8);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.product-hero-cta {
  display: flex;
  gap: var(--space-4);
  justify-content: center;
  flex-wrap: wrap;
}

/* Features Section */
.product-features {
  background: var(--color-bg-secondary);
}

.section-title {
  text-align: center;
  font-size: clamp(2rem, 4vw, 2.5rem);
  font-weight: 700;
  margin-bottom: var(--space-12);
  color: var(--color-text);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-8);
}

.feature-card {
  background: var(--color-bg-tertiary);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  text-align: center;
  transition: all var(--transition-normal);
}

.feature-card:hover {
  border-color: var(--color-secondary);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.feature-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto var(--space-6);
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    135deg,
    var(--color-secondary),
    var(--color-accent-1)
  );
  border-radius: var(--radius-lg);
  padding: var(--space-4);
}

.feature-icon svg {
  width: 32px;
  height: 32px;
  stroke: white;
}

.feature-card h3 {
  font-size: var(--font-size-xl);
  font-weight: 600;
  margin-bottom: var(--space-3);
  color: var(--color-text);
}

.feature-card p {
  font-size: var(--font-size-base);
  color: var(--color-text-muted);
  line-height: 1.7;
}

/* How It Works */
.product-how {
  background: var(--color-bg);
}

.steps-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--space-8);
  position: relative;
}

.step {
  text-align: center;
  position: relative;
}

.step-number {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-5);
  font-size: var(--font-size-2xl);
  font-weight: 700;
  color: var(--color-primary);
  background: var(--color-secondary);
  border-radius: 50%;
}

.step h3 {
  font-size: var(--font-size-lg);
  font-weight: 600;
  margin-bottom: var(--space-3);
  color: var(--color-text);
}

.step p {
  font-size: var(--font-size-base);
  color: var(--color-text-muted);
  line-height: 1.6;
}

/* CTA Section */
.product-cta-section {
  background: var(--color-bg-secondary);
}

.cta-box {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  background: linear-gradient(
    135deg,
    var(--color-bg-tertiary),
    rgba(41, 135, 207, 0.1)
  );
  border: 1px solid var(--color-border);
  border-radius: var(--radius-2xl);
  padding: var(--space-12) var(--space-8);
}

.cta-box h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  margin-bottom: var(--space-4);
  color: var(--color-text);
}

.cta-box p {
  font-size: var(--font-size-lg);
  color: var(--color-text-muted);
  margin-bottom: var(--space-8);
}

.cta-buttons {
  display: flex;
  gap: var(--space-4);
  justify-content: center;
  flex-wrap: wrap;
}

/* Large button variant */
.btn-lg {
  padding: var(--space-4) var(--space-8);
  font-size: var(--font-size-lg);
}

/* Badge for Beta */
.badge-beta {
  background: linear-gradient(135deg, var(--color-accent-2), #ff9500);
  color: var(--color-primary);
}

/* Responsive */
@media (max-width: 768px) {
  .product-hero {
    min-height: 60vh;
    padding: var(--space-16) 0 var(--space-12);
  }

  .product-hero-cta {
    flex-direction: column;
    align-items: center;
  }

  .product-hero-cta .btn {
    width: 100%;
    max-width: 300px;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .cta-buttons .btn {
    width: 100%;
    max-width: 300px;
  }
}
