/* Leistungen */
.section--leistungen {
  background: var(--bg-radial-accent), var(--bg-section);
}

.section--leistungen .cards {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(2, 1fr);
}

.section--leistungen .card {
  background: var(--surface-card);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 1.15rem 1.15rem 1.2rem;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  position: relative;
  isolation: isolate;
  display: flex;
  flex-direction: column;
}


.section--leistungen .card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08);
  border-color: var(--border-strong);
}

.section--leistungen .card h3 {
  margin: 0 0 0.6rem;
  color: #1f2d1f;
  font-size: 1.08rem;
  line-height: 1.2;
}

.section--leistungen .card ul {
  list-style: none;
  margin: 0.4rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.42rem;
}

.section--leistungen .card li {
  position: relative;
  padding-left: 1.25rem;
  color: #2b3a2b;
}

.section--leistungen .card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--primary-green);
  font-weight: 800;
  line-height: 1;
}

.mini-cta {
  margin-top: 1.1rem;
  display: flex;
  justify-content: center;
}

.mini-cta a {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.62rem 0.92rem;
  font-weight: 700;
  color: var(--primary-green);
  border-radius: 10px;
  text-decoration: none;
  background: #f2f8ee;
  border: 1px solid rgba(72, 102, 64, 0.2);
  box-shadow: 0 6px 14px rgba(45, 67, 39, 0.1);
  transition: background-color 0.2s ease, border-color 0.2s ease;
}

.mini-cta a::after {
  content: "→";
  font-weight: 800;
  line-height: 1;
  transition: transform 0.2s ease;
}

.mini-cta a:hover {
  background: #e8f2e3;
  border-color: rgba(72, 102, 64, 0.32);
}

.mini-cta a:hover::after {
  transform: translateX(3px);
}

.mini-cta a:focus-visible {
  outline: 3px solid #c1dcaf66;
  outline-offset: 2px;
}


