/* =========================================================
   GRAFFITI-FREE · Leistungsseiten
   styles-leistungen.css · v1.0
   Lädt nach styles-gf.css
   ========================================================= */


/* =========================================================
   01 — HERO
   ========================================================= */

.ls-hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 32px;
}


/* =========================================================
   02 — ABSCHNITT-LAYOUT
   ========================================================= */

.ls-section {
  padding: clamp(72px, 10vw, 120px) 0;
}

.ls-section--stone {
  background: var(--stone);
}

.ls-section-header {
  max-width: 760px;
  margin-bottom: clamp(40px, 5vw, 56px);
}

.ls-intro {
  font-size: 0.92rem;
  font-weight: 300;
  line-height: 1.8;
  color: var(--ink-soft);
  max-width: 620px;
  margin-top: 16px;
}

.ls-subintro {
  font-size: 0.88rem;
  font-weight: 300;
  line-height: 1.75;
  color: var(--ink-soft);
  margin-top: 10px;
}


/* =========================================================
   03 — VERFAHREN
   ========================================================= */

.ls-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}

.ls-tag {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--green);
  background: var(--green-pale);
  padding: 5px 12px;
  border-radius: 2px;
}

.ls-hint-box {
  padding: 24px 28px;
  background: var(--stone);
  border-left: 3px solid var(--green);
  border-radius: 0 4px 4px 0;
  margin-top: clamp(28px, 4vw, 40px);
  max-width: 620px;
}

.ls-hint-box p {
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--ink-soft);
  line-height: 1.7;
  margin: 0;
}


/* =========================================================
   04 — MATERIALIEN-GRID
   ========================================================= */

.ls-mat-intro {
  font-size: 0.88rem;
  font-weight: 300;
  color: var(--ink-soft);
  margin-top: 12px;
}

.ls-mat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 6px;
  overflow: hidden;
  margin-top: clamp(32px, 4vw, 48px);
}

.ls-mat-card {
  background: var(--white);
  padding: 28px 28px 32px;
}

.ls-mat-card--other {
  background: var(--stone);
}

.ls-mat-card h3 {
  font-family: var(--head);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 10px;
  line-height: 1.3;
}

.ls-mat-card p {
  font-size: 0.83rem;
  font-weight: 300;
  color: var(--ink-soft);
  line-height: 1.72;
  margin: 0;
}

.ls-mat-card--other h3 {
  color: var(--ink-soft);
}

.ls-mat-card--other p {
  color: var(--ink-faint);
}

@media (max-width: 768px) {
  .ls-mat-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .ls-mat-grid {
    grid-template-columns: 1fr;
  }
}

.ls-mat-grid--2col {
  grid-template-columns: repeat(2, 1fr);
}

@media (max-width: 480px) {
  .ls-mat-grid--2col {
    grid-template-columns: 1fr;
  }
}

/* =========================================================
   05 — ERGEBNIS
   ========================================================= */

.ls-ergebnis-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(48px, 8vw, 96px);
  align-items: stretch;
  margin-top: clamp(32px, 4vw, 48px);
}

.ls-ergebnis-text p {
  font-size: 0.9rem;
  font-weight: 300;
  line-height: 1.8;
  color: var(--ink-soft);
  margin-bottom: 18px;
}

.ls-ergebnis-text p:last-child {
  margin-bottom: 0;
}

.ls-ergebnis-side {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.ls-highlight-box {
  padding: 24px 28px;
  background: var(--green-pale);
  border-left: 3px solid var(--green);
  border-radius: 0 4px 4px 0;
}

.ls-highlight-box p {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--green);
  line-height: 1.65;
  margin: 0;
}

@media (max-width: 768px) {
  .ls-ergebnis-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}


/* =========================================================
   06 — FAQ ACCORDION
   ========================================================= */

.ls-faq {
  display: flex;
  flex-direction: column;
  margin-top: clamp(32px, 4vw, 48px);
}

.ls-faq details {
  border-top: 1px solid var(--line);
}

.ls-faq details:last-child {
  border-bottom: 1px solid var(--line);
}

.ls-faq summary {
  font-family: var(--head);
  font-size: 1rem;
  font-weight: 600;
  color: var(--ink);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 22px 0;
  transition: color 0.2s;
}

.ls-faq summary::-webkit-details-marker {
  display: none;
}

.ls-faq summary:hover {
  color: var(--green);
}

.ls-faq summary svg {
  width: 16px;
  height: 16px;
  stroke: var(--ink-faint);
  fill: none;
  flex-shrink: 0;
  transition: transform 0.25s var(--ease);
}

.ls-faq details[open] summary svg {
  transform: rotate(180deg);
}

.ls-faq details[open] summary {
  color: var(--green);
}

.ls-faq-answer {
  font-size: 0.88rem;
  font-weight: 300;
  color: var(--ink-soft);
  line-height: 1.75;
  max-width: 680px;
  padding-bottom: 24px;
}

.ls-faq-answer a {
  color: var(--green);
  border-bottom: 1px solid var(--green);
  transition: opacity 0.2s;
}

.ls-faq-answer a:hover {
  opacity: 0.75;
}


/* =========================================================
   07 — REFERENZEN-LINK
   ========================================================= */

.ls-ref-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--body);
  font-size: 0.82rem;
  font-weight: 400;
  color: var(--ink-soft);
  letter-spacing: 0.03em;
  transition: color 0.2s;
  white-space: nowrap;
}

.ls-ref-link:hover {
  color: var(--green);
}

.ls-ref-link svg {
  width: 13px;
  height: 13px;
  stroke: currentColor;
  stroke-width: 2.5;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}

.ls-ref-wrap {
  text-align: center;
  margin-top: 40px;
}

/* =========================================================
   08 — PROZESS-GRID
   ========================================================= */

.ls-process-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(32px, 5vw, 56px);
  margin-top: clamp(32px, 4vw, 48px);
}

.ls-process-grid--3col {
  grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 768px) {
  .ls-process-grid--3col {
    grid-template-columns: 1fr;
  }
}

.ls-process-step {
  position: relative;
}

.ls-process-num {
  font-family: var(--head);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--green);
  margin-bottom: 16px;
}

.ls-process-step h3 {
  font-family: var(--head);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 12px;
  line-height: 1.3;
}

.ls-process-step p {
  font-size: 0.88rem;
  font-weight: 300;
  color: var(--ink-soft);
  line-height: 1.75;
  margin: 0;
}

@media (max-width: 768px) {
  .ls-process-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .ls-process-step {
    padding-left: 0;
    padding-bottom: 20px;
    border-left: none;
    border-bottom: 1px solid var(--green);
  }
}


/* =========================================================
   10 — ZIELGRUPPEN-WEICHE
   ========================================================= */

.ls-audience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 6px;
  overflow: hidden;
  margin-top: clamp(32px, 4vw, 48px);
}

.ls-audience-card {
  background: var(--white);
  padding: 28px 28px 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.ls-audience-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--green);
}

.ls-audience-card p {
  font-size: 0.85rem;
  font-weight: 300;
  color: var(--ink-soft);
  line-height: 1.72;
  margin: 0;
  flex: 1;
}

.ls-audience-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--ink);
  border-bottom: 1px solid var(--line);
  padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
  width: fit-content;
  margin-top: auto;
}

.ls-audience-link svg {
  width: 13px;
  height: 13px;
  stroke: currentColor;
  stroke-width: 2.5;
  fill: none;
  flex-shrink: 0;
}

.ls-audience-link:hover {
  color: var(--green);
  border-color: var(--green);
}

@media (max-width: 768px) {
  .ls-audience-grid {
    grid-template-columns: 1fr;
  }
}


/* ── Trust + CTA nebeneinander (Desktop) ── */
.ls-hero-trust-cta-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 56px);
  align-items: stretch;
  padding-top: clamp(28px, 4vw, 40px);
  padding-bottom: clamp(24px, 3vw, 32px);
}

.ls-hero-trust-cta-row .ls-hero-checklist {
  margin-top: 0;
}

.ls-hero-trust-cta-row .ls-hero-cta {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 12px;
  margin-top: 0;
}

.ls-hero-trust-cta-row .ls-hero-cta a {
  text-align: center;
  justify-content: center;
  flex: 1;
  box-sizing: border-box;
}

.ls-hero-trust-cta-row .ls-hero-cta .btn-ghost {
  border: 1px solid var(--line);
  border-radius: 3px;
  padding: 14px 24px;
  color: var(--ink-soft);
  justify-content: center;
}

@media (max-width: 768px) {
  .ls-hero-trust-cta-row {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .ls-hero-trust-cta-row .ls-hero-cta {
    flex-direction: column;
    align-items: stretch;
  }
  .ls-hero-trust-cta-row .ls-hero-cta a {
    text-align: center;
    justify-content: center;
    width: 100%;
    box-sizing: border-box;
  }
  .ls-hero-trust-cta-row .ls-hero-cta .btn-ghost {
    border: 1px solid var(--line);
    border-radius: 3px;
    padding: 14px 24px;
    color: var(--ink-soft);
    justify-content: center;
  }
  .page-hero h1 br {
    display: none;
  }
}

.ls-hero-checklist {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
  margin: clamp(24px, 3.5vw, 32px) 0 0;
  padding: 0;
  border-top: 1px solid var(--line);
}

.ls-hero-checklist li {
  display: flex;
  align-items: baseline;
  gap: 10px;
  padding: 11px 0;
  border-bottom: 1px solid var(--line);
  flex-wrap: wrap;
}

.ls-hero-checklist li::before {
  content: '';
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2326843D' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  position: relative;
  top: 1px;
}

.ls-hero-check-title {
  font-family: var(--head);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--ink);
}

.ls-hero-check-sub {
  display: block;
  font-size: 0.82rem;
  font-weight: 300;
  color: var(--ink-soft);
  line-height: 1.4;
}

.ls-hero-note {
  font-size: 0.78rem;
  font-weight: 300;
  color: var(--ink-faint);
  margin-top: 12px;
  line-height: 1.5;
}