/* Leistungen-Detailseite: Stats-Strip, Service-Zeilen, FAQ-Akkordeon */

.px-stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(230px, 100%), 1fr)); gap: 16px; }
.px-stat-card { padding: 26px; }
.px-stat-value { font-size: clamp(32px, 3.4vw, 46px); font-weight: 700; letter-spacing: -.05em; line-height: 1; }
.px-stat-label { font-size: 14px; opacity: .6; margin-top: 12px; line-height: 1.45; }

.px-service-row {
  border-radius: 32px; box-shadow: var(--shadow-card); padding: clamp(28px, 3.4vw, 46px);
  display: grid; grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr)); gap: clamp(40px, 4vw, 58px);
  background: #fff; color: var(--color-ink);
}
.px-service-row.is-dark { background: var(--color-ink); color: #fff; }
.px-service-row-head { display: flex; align-items: center; gap: 14px; font-family: var(--font-mono); font-size: 11.5px; letter-spacing: .14em; text-transform: uppercase; opacity: .45; }
.px-service-row-head .line { flex: 1; height: 1px; background: currentColor; opacity: .2; display: block; }
.px-service-row h2 { margin: 20px 0 16px; font-size: clamp(28px, 3.4vw, 46px); line-height: 1.04; letter-spacing: -.04em; font-weight: 700; }
.px-service-row p { margin: 0 0 32px; font-size: 16.5px; line-height: 1.6; opacity: .65; max-width: 32em; }
.px-service-facts { display: flex; flex-wrap: wrap; gap: 24px 40px; }
.px-fact-value { font-size: 21px; font-weight: 650; letter-spacing: -.03em; }
.px-fact-label { font-family: var(--font-mono); font-size: 10.5px; letter-spacing: .1em; text-transform: uppercase; opacity: .45; margin-top: 6px; }
.px-service-items { display: grid; gap: 10px; }
.px-service-item-row {
  display: flex; gap: 14px; align-items: baseline; padding: 13px 16px; border-radius: 14px;
  background: #f4f5f5; font-size: 15px; line-height: 1.45; transition: transform .4s var(--ease-standard);
}
.is-dark .px-service-item-row { background: rgba(255,255,255,.06); }
.px-service-item-row:hover { transform: translateX(5px); }
.px-service-item-row .plus { opacity: .45; font-family: var(--font-mono); font-size: 11px; }
.px-service-shot {
  position: relative; overflow: hidden; isolation: isolate; box-sizing: border-box;
  width: 100%; min-width: 0; height: 132px; margin-top: 28px;
  border-radius: 18px;
}
.px-service-shot-image { position: absolute; inset: 0; width: 100%; height: 100%; display: block; object-fit: cover; }
.px-service-shot-caption {
  position: absolute; z-index: 2; left: 14px; right: auto; bottom: 14px;
  box-sizing: border-box; max-width: calc(100% - 28px); overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
  padding: 7px 9px; border-radius: 999px; background: rgba(16,17,18,.82); color: #fff;
  font-family: var(--font-mono); font-size: 9px; line-height: 1; letter-spacing: .08em; text-transform: uppercase;
}
.px-service-insight-link {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-mono); font-size: 10.5px; line-height: 1.3;
  font-weight: 500; letter-spacing: .07em; text-transform: uppercase;
  opacity: .52; transition: opacity .25s ease, gap .25s ease;
}
.px-service-links { display: flex; flex-direction: column; align-items: flex-start; gap: 13px; margin-top: 32px; }
.px-service-insight-link:hover,
.px-service-insight-link:focus-visible { gap: 11px; opacity: 1; }
.px-service-row.is-dark .px-service-insight-link { color: #fff; opacity: .68; }
.px-service-row.is-dark .px-service-insight-link:hover,
.px-service-row.is-dark .px-service-insight-link:focus-visible { opacity: 1; }

.px-faq-item { border-radius: 22px; overflow: hidden; background: #fff; box-shadow: var(--shadow-card); }
.px-faq-item summary {
  list-style: none; cursor: pointer; display: flex; align-items: center; gap: 20px;
  padding: 24px 26px; font-size: clamp(17px, 1.8vw, 22px); letter-spacing: -.025em; font-weight: 600;
}
.px-faq-item summary::-webkit-details-marker { display: none; }
.px-faq-icon {
  width: 32px; height: 32px; border-radius: 999px; background: linear-gradient(180deg, #fdfdfd, #e4e6e7 58%, #f7f8f8);
  box-shadow: inset 0 1px 0 #fff, 0 3px 8px -4px rgba(16,17,18,.4); display: grid; place-items: center;
  font-size: 15px; flex-shrink: 0; margin-left: auto; transition: transform .4s var(--ease-standard);
}
.px-faq-item[open] .px-faq-icon { transform: rotate(45deg); }
.px-faq-answer { padding: 0 26px 26px; font-size: 16px; line-height: 1.6; opacity: .65; max-width: 44em; }
