.statistics-container {
  padding: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  font-family: var(--ff-sans);
}

.statistics-header {
  text-align: center;
  margin-bottom: 3rem;
}

.statistics-header h1 {
  font-size: 2.5rem;
  color: #111111;
  margin: 0 0 1rem 0;
  font-weight: 700;
}

.statistics-header p {
  font-size: 1.2rem;
  color: #666;
  margin: 0;
}

.statistics-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.stat-card {
  background: #ffffff;
  border: 1px solid #e4e4e4;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.stat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
}

.stat-icon {
  font-size: 2rem;
  font-weight: 700;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 50%;
  color: white;
}

.stat-content {
  flex: 1;
}

.stat-content h3 {
  font-size: 1.1rem;
  color: #666;
  margin: 0 0 0.5rem 0;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.stat-content p {
  font-size: 0.95rem;
  color: #888;
  margin: 0;
  font-weight: 500;
}

/* Responsive */
@media (max-width: 768px) {
  .statistics-container {
    padding: 1rem;
  }

  .statistics-header h1 {
    font-size: 2rem;
  }

  .statistics-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .stat-card {
    padding: 1.5rem;
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }

  .stat-icon {
    font-size: 1.8rem;
    width: 60px;
    height: 60px;
  }
}