/* Statistik-Grid */
.ueber-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 48px;
}

.ueber-stat {
  background: var(--gray-100);
  padding: 32px 28px;
}

.ueber-stat:first-child { border-radius: 18px 0 0 18px; }
.ueber-stat:last-child  { border-radius: 0 18px 18px 0; }

.ueber-stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 6px;
}

.ueber-stat-label {
  font-size: 0.8rem;
  color: var(--gray-600);
  line-height: 1.4;
}

@media (max-width: 640px) {
  .ueber-stats {
    grid-template-columns: 1fr;
    gap: 2px;
  }

  .ueber-stat:first-child { border-radius: 18px 18px 0 0; }
  .ueber-stat:last-child  { border-radius: 0 0 18px 18px; }
}
