/* Stats Section Styles */
.stats-section {
  padding: 8rem 0;
  border-top: 1px solid #e2e8f0;
  border-bottom: 1px solid #e2e8f0;
  background: white;
}

.stats-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
}

@media (min-width: 768px) {
  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.stat-item {
  text-align: center;
  transition: transform 0.3s ease;
}

.stat-item:hover {
  transform: translateY(-0.5rem);
}

.stat-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 1rem;
  background: rgba(99, 102, 241, 0.1);
  margin-bottom: 1.5rem;
  transition: transform 0.3s ease;
}

.stat-item:hover .stat-icon {
  transform: scale(1.1);
}

.stat-icon svg {
  width: 1.75rem;
  height: 1.75rem;
  color: #4f46e5;
}

.stat-value {
  font-size: 2.5rem;
  font-weight: 900;
  margin-bottom: 0.25rem;
  color: #0f172a;
  letter-spacing: -0.025em;
}

.stat-label {
  font-size: 0.875rem;
  color: #64748b;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* Dark Mode Overrides */
body.dark-mode .stats-section {
  background: var(--dark-bg);
  border-color: var(--dark-border);
}
body.dark-mode .stat-value {
  color: var(--dark-heading);
}

