/* Social Proof Section (#5800) */
.social-proof-section {
  padding: 48px 24px;
  background: linear-gradient(135deg, #f0f4ff 0%, #faf5ff 100%);
  border-top: 1px solid #e2e8f0;
}
.social-proof-container { max-width: 900px; margin: 0 auto; }

/* Stats Bar */
.stats-bar {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  margin-bottom: 40px;
  padding: 24px;
  background: white;
  border-radius: 16px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.08);
}
.stat-item { text-align: center; min-width: 100px; }
.stat-icon { display: block; font-size: 1.5rem; margin-bottom: 4px; }
.stat-value { display: block; font-size: 1.5rem; font-weight: 800; color: #1c3070; }
.stat-label { display: block; font-size: 0.8rem; color: #64748b; margin-top: 2px; }

/* Testimonials */
.testimonial-heading {
  text-align: center;
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: #1a1a2e;
}
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
}
.testimonial-card {
  background: white;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.06);
  border: 1px solid #e2e8f0;
}
.testimonial-quote {
  font-size: 0.9rem;
  line-height: 1.6;
  color: #334155;
  margin-bottom: 16px;
  font-style: italic;
}
.testimonial-author { display: flex; align-items: center; gap: 10px; }
.testimonial-avatar { font-size: 1.5rem; }
.testimonial-name { font-weight: 600; font-size: 0.85rem; color: #1a1a2e; }
.testimonial-role { font-size: 0.75rem; color: #64748b; }

/* Dark mode */
@media (prefers-color-scheme: dark) {
  .social-proof-section { background: linear-gradient(135deg, #0b0e14, #111827); border-color: #334155; }
  .stats-bar { background: #161b22; box-shadow: none; border: 1px solid #334155; }
  .stat-value { color: #38bdf8; }
  .stat-label { color: #8b949e; }
  .testimonial-heading { color: #f0f6fc; }
  .testimonial-card { background: #161b22; border-color: #334155; }
  .testimonial-quote { color: #c9d1d9; }
  .testimonial-name { color: #f0f6fc; }
  .testimonial-role { color: #8b949e; }
}
