/* Leistungen — hero, offer cards, process steps, FAQ, CTA.
   Shares .wrap/.col/.card/.section-label from main.css. */

.leistungen-hero {
  padding: 44px 0 4px;
}

.leistungen-hero h1 {
  font-size: 33px;
  line-height: 1.16;
  letter-spacing: -.01em;
  color: var(--ink);
  margin-bottom: 14px;
}

.leistungen-hero__intro p {
  font-size: 16.5px;
  line-height: 1.68;
  color: var(--body);
}

.leistungen-section {
  margin-top: 52px;
}

.leistungen-section > h2 {
  font-size: 21px;
  color: var(--ink);
  margin-bottom: 18px;
}

/* offer cards */

.leistungen-offers {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.offer-card {
  padding: 22px 24px;
}

.offer-card h3 {
  font-size: 16.5px;
  color: var(--ink);
  margin-bottom: 8px;
}

.offer-card__text p {
  font-size: 14.5px;
  line-height: 1.62;
  color: var(--body);
}

@media (max-width: 640px) {
  .leistungen-offers {
    grid-template-columns: 1fr;
  }
}

/* process steps */

.process-steps {
  list-style: none;
  display: grid;
  gap: 12px;
  padding: 0;
}

.process-step {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 18px 22px;
}

.process-step__num {
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--panel);
  color: var(--accent);
  font-weight: 600;
  font-size: 14px;
}

.process-step h3 {
  font-size: 15.5px;
  color: var(--ink);
  margin-bottom: 4px;
}

.process-step__text p {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--body);
}

/* FAQ — always-visible Q&A blocks */

.leistungen-faq {
  display: grid;
  gap: 12px;
}

.faq-item {
  padding: 20px 24px;
}

.faq-item h3 {
  font-size: 15.5px;
  color: var(--ink);
  margin-bottom: 6px;
}

.faq-item__answer p {
  font-size: 14.5px;
  line-height: 1.62;
  color: var(--body);
}

/* CTA card */

.leistungen-cta {
  margin-top: 52px;
  padding: 26px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.leistungen-cta h2 {
  font-size: 19px;
  color: var(--ink);
  margin-bottom: 6px;
}

.leistungen-cta__text p {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--body);
}

.leistungen-cta__btn {
  flex-shrink: 0;
  padding: 11px 22px;
  border-radius: var(--radius-pill);
  background: var(--accent);
  color: var(--card);
  font-weight: 600;
  font-size: 14.5px;
}

.leistungen-cta__btn:hover {
  text-decoration: none;
  filter: brightness(1.08);
}
