/* ---------- Services (Leistungen) ---------- */
/* Full-bleed surface band that sets the offerings apart from the cream page. */
.services {
  background: var(--color-surface);
  border-block: 1px solid var(--color-border);
}

.services__head {
  margin-bottom: 2.8rem;
  text-align: center;
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

.service-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding: 2.8rem 2.4rem;
  text-align: center;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: transform 0.15s ease;
}

.service-card:hover {
  transform: translateY(-3px);
}

.service-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 5.6rem;
  height: 5.6rem;
  border-radius: 999px;
  background: var(--color-accent);
  color: var(--color-primary);
}

.service-card__icon .icon {
  width: 2.8rem;
  height: 2.8rem;
}

.service-card__icon i {
  font-size: 2.8rem;
  line-height: 1;
}

.service-card__title {
  margin: 0;
}

.service-card p {
  margin: 0;
}
