.stats-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
  gap:16px;
  margin-bottom:24px;
}
.stat-card{
  background:white;
  border-radius:14px;
  box-shadow:0 10px 30px rgba(0,0,0,0.08);
  padding:20px;
  transition:transform .2s ease, box-shadow .2s ease;
}
.stat-card:hover{
  transform:translateY(-3px);
  box-shadow:0 16px 36px rgba(0,0,0,0.12);
}
.stat-label{
  font-size:13px;
  color:#6b7280;
}
.stat-value{
  font-size:30px;
  font-weight:700;
  color:#111827;
}
