/* Customer Showcase Page */

.showcase-hero {
  text-align: center;
  padding: 3rem 1rem 2rem;
}

.showcase-hero h1 {
  font-size: 2rem;
  margin-bottom: 0.75rem;
}

.showcase-hero .hero-subtitle {
  font-size: 1.1rem;
  color: var(--text-secondary, #6b7280);
  max-width: 600px;
  margin: 0 auto;
}

/* Stats bar */
.showcase-stats {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  padding: 2rem 1rem;
  max-width: 800px;
  margin: 0 auto;
}

.stat-item {
  text-align: center;
  min-width: 120px;
}

.stat-number {
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary, #2563eb);
  display: block;
}

.stat-label {
  font-size: 0.85rem;
  color: var(--text-secondary, #6b7280);
}

/* Story cards */
.stories-section {
  padding: 2rem 1rem 3rem;
  max-width: 900px;
  margin: 0 auto;
}

.stories-section h2 {
  text-align: center;
  font-size: 1.6rem;
  margin-bottom: 2rem;
}

.story-card {
  background: var(--card-bg, #fff);
  border: 1px solid var(--border, #e5e7eb);
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 2rem;
}

.story-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.story-icon {
  font-size: 2rem;
  flex-shrink: 0;
}

.story-meta h3 {
  font-size: 1.15rem;
  margin: 0 0 0.25rem;
}

.story-meta .story-type {
  font-size: 0.85rem;
  color: var(--text-secondary, #6b7280);
  margin: 0;
}

.story-quote {
  font-style: italic;
  color: var(--text-secondary, #374151);
  line-height: 1.7;
  margin: 1rem 0;
  padding-left: 1rem;
  border-left: 3px solid var(--primary, #2563eb);
}

.story-results {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1rem;
}

.result-badge {
  background: var(--primary-light, #eff6ff);
  color: var(--primary, #2563eb);
  padding: 0.4rem 0.8rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
}

/* CTA section */
.showcase-cta {
  text-align: center;
  padding: 3rem 1rem;
  background: var(--bg-alt, #f9fafb);
  border-radius: 12px;
  max-width: 700px;
  margin: 0 auto 3rem;
}

.showcase-cta h2 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.showcase-cta p {
  color: var(--text-secondary, #6b7280);
  margin-bottom: 1.5rem;
}

/* Responsive */
@media (min-width: 640px) {
  .showcase-hero h1 {
    font-size: 2.5rem;
  }

  .showcase-stats {
    gap: 2.5rem;
  }

  .stat-number {
    font-size: 2.4rem;
  }

  .story-card {
    padding: 2.5rem;
  }
}

@media (min-width: 1024px) {
  .showcase-hero h1 {
    font-size: 3rem;
  }
}
