/* Nachklang — Inhaltsseiten (FAQ, So funktioniert es, Preise, Fragenliste).
   Ergaenzt selbst.css: Kopf, Fuss, Farben und Schriften kommen von dort, hier
   stehen nur die Bausteine fuer laufenden Text. Bewusst eine eigene Datei, damit
   die Landingpage-CSS schlank bleibt und nicht bei jeder Textseite anfassbar ist. */

.inhalt-hero {
  background: var(--peach);
  padding-block: 46px 40px;
  border-bottom: 1px solid #f0e2c8;
}
.inhalt-hero .eyebrow { margin-bottom: 10px; }
.inhalt-hero h1 {
  font-family: var(--serif);
  font-size: clamp(30px, 5vw, 46px);
  line-height: 1.12;
  margin: 0 0 14px;
  color: var(--gruen-tief);
  max-width: 20ch;
}
.inhalt-hero p.lead {
  font-size: 17px;
  line-height: 1.6;
  color: var(--text-soft);
  max-width: 58ch;
  margin: 0;
}

.inhalt { padding-block: 44px 24px; }
.inhalt-spalte { max-width: 760px; }
.inhalt h2 {
  font-family: var(--serif);
  font-size: clamp(23px, 3.4vw, 30px);
  line-height: 1.2;
  color: var(--gruen-tief);
  margin: 44px 0 14px;
}
.inhalt h2:first-child { margin-top: 0; }
.inhalt h3 {
  font-family: var(--sans);
  font-size: 17px;
  font-weight: 700;
  color: var(--text);
  margin: 26px 0 8px;
}
.inhalt p, .inhalt li { font-size: 16.5px; line-height: 1.68; color: var(--text-soft); margin: 0 0 14px; }
.inhalt strong { color: var(--text); }
/* Fliesstext-Links gruen — aber NICHT die CTA-Knoepfe. `.inhalt a` ist
   spezifischer als `.cta` und hat dessen weisse Schrift ueberschrieben: Auf dem
   dunklen Abschluss-Block stand dunkelgruene Schrift auf dunkelgruenem Knopf,
   der Text war unsichtbar (Michael 24.08.2026, FAQ-Seite). */
.inhalt a:not(.cta) { color: var(--gruen); }
.inhalt ul { margin: 0 0 18px; padding-left: 22px; }
.inhalt li { margin-bottom: 8px; }

/* Aufklappbare Frage/Antwort. <details> statt JavaScript: funktioniert ohne
   Skript, ist von Haus aus zugaenglich, und Suchmaschinen lesen den Antworttext
   auch im zugeklappten Zustand. */
.fragen { border-top: 1px solid #ece0c6; margin-top: 8px; }
.frage {
  border-bottom: 1px solid #ece0c6;
  padding: 0;
}
.frage > summary {
  cursor: pointer;
  list-style: none;
  padding: 18px 40px 18px 0;
  position: relative;
  font-weight: 600;
  font-size: 17px;
  color: var(--text);
  line-height: 1.45;
}
.frage > summary::-webkit-details-marker { display: none; }
.frage > summary::after {
  content: "+";
  position: absolute;
  right: 6px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 24px;
  font-weight: 400;
  color: var(--gruen);
  line-height: 1;
}
.frage[open] > summary::after { content: "–"; }
.frage > summary:hover { color: var(--gruen); }
.frage-antwort { padding: 0 0 20px; }
.frage-antwort p:last-child { margin-bottom: 0; }

/* Schritt-Karten fuer „So funktioniert es" */
.ablauf { display: grid; gap: 18px; margin: 8px 0 26px; }
.ablauf-schritt {
  background: var(--creme-karte);
  border: 1px solid #efe2c4;
  border-radius: 16px;
  padding: 22px 24px;
}
.ablauf-nummer {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px; height: 32px;
  border-radius: 999px;
  background: var(--gruen);
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  margin-bottom: 12px;
}
.ablauf-schritt h3 { margin: 0 0 8px; font-size: 18px; }
.ablauf-schritt p:last-child { margin-bottom: 0; }

/* Hinweiskasten fuer Nebenbemerkungen */
.notiz {
  background: #fffbec;
  border-left: 3px solid var(--gelb);
  border-radius: 0 10px 10px 0;
  padding: 16px 18px;
  margin: 0 0 20px;
}
.notiz p:last-child { margin-bottom: 0; }

/* Abschluss-CTA */
.inhalt-cta {
  background: var(--gruen-tief);
  color: #f4efe6;
  border-radius: 20px;
  padding: 34px 28px;
  text-align: center;
  margin: 20px 0 8px;
}
.inhalt-cta h2 {
  color: #fff;
  margin: 0 0 10px;
  font-size: clamp(22px, 3.2vw, 28px);
}
.inhalt-cta p { color: rgba(244, 239, 230, 0.82); margin: 0 auto 20px; max-width: 46ch; }
/* Knopf auf dunklem Grund: weisse Schrift erzwingen und den Knopf selbst
   aufhellen, damit er sich vom Block abhebt. */
.inhalt-cta .cta { display: inline-flex; color: #fff; background: var(--gruen); box-shadow: 0 0 0 1px rgba(255,255,255,0.18); }
.inhalt-cta .cta:hover { background: #175a49; color: #fff; }

/* Querverweise zwischen den Inhaltsseiten */
.weiterlesen { margin: 34px 0 0; padding-top: 22px; border-top: 1px solid #ece0c6; }
.weiterlesen h2 { font-size: 19px; margin: 0 0 12px; font-family: var(--sans); font-weight: 700; }
.weiterlesen ul { list-style: none; padding: 0; margin: 0; }
.weiterlesen li { margin-bottom: 8px; }

@media (min-width: 760px) {
  .inhalt-hero { padding-block: 62px 54px; }
  .inhalt { padding-block: 56px 30px; }
  .ablauf { gap: 20px; }
  .inhalt-cta { padding: 44px 40px; }
}
