/* ============================================================
   LEISTUNGEN.CSS — Kolkowsky GmbH Services page
   ============================================================ */

/* ── Page Hero ──────────────────────────────────────────── */
#leistungen-hero {
  height: 50vh;
  min-height: 340px;
}

/* ── Services Grid ──────────────────────────────────────── */
#services-grid {
  background: var(--color-bg);
}

.services-grid__header {
  text-align: center;
  margin-bottom: 3rem;
}

.services-grid__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
  max-width: var(--max-width);
  margin: 0 auto;
}

.service-detail-card {
  background: var(--color-surface);
  border-radius: var(--radius-card);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-card);
  padding: 2.25rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: transform var(--transition), box-shadow var(--transition);
}

.service-detail-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.service-detail-card__icon {
  width: 52px;
  height: 52px;
  background: rgba(37,99,168,0.09);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-detail-card__icon svg {
  width: 26px;
  height: 26px;
  color: var(--color-accent);
}

.service-detail-card__title {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--color-text);
}

.service-detail-card__desc {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.7;
  flex: 1;
}

.service-detail-card__price {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  padding-top: 0.5rem;
  border-top: 1px solid var(--color-border);
}

.service-detail-card .btn {
  align-self: flex-start;
  font-size: 0.875rem;
  padding: 0.6rem 1.25rem;
}

@media (max-width: 1024px) {
  .services-grid__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
  .services-grid__grid { grid-template-columns: 1fr; }
}

/* ── FAQ Accordion ──────────────────────────────────────── */
#faq {
  background: var(--color-surface);
}

.faq__header {
  text-align: center;
  margin-bottom: 3rem;
}

.faq__list {
  max-width: 780px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq-item {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
  overflow: hidden;
  background: var(--color-white);
}

.faq-item__trigger {
  width: 100%;
  background: none;
  border: none;
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  cursor: pointer;
  text-align: left;
  transition: background-color var(--transition);
}

.faq-item__trigger:hover {
  background: rgba(37,99,168,0.04);
}

.faq-item__trigger[aria-expanded="true"] {
  background: rgba(37,99,168,0.05);
}

.faq-item__question {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: var(--color-text);
}

.faq-item__chevron {
  width: 20px;
  height: 20px;
  color: var(--color-accent);
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.faq-item__trigger[aria-expanded="true"] .faq-item__chevron {
  transform: rotate(180deg);
}

.faq-item__body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
}

.faq-item__body.open {
  max-height: 400px;
}

.faq-item__answer {
  padding: 0 1.5rem 1.5rem;
  font-size: 0.92rem;
  color: var(--color-text-muted);
  line-height: 1.75;
}
