/* seite.css — Textseiten (Impressum, Datenschutz, AGB, Support) im Design der
   Landingpage. styles.css liefert Farben, Schriften und Grundraster,
   landing.css die Nav und den Fuss; hier steht nur, was Fließtextseiten
   zusätzlich brauchen. */

/* ── Seitenkopf ──────────────────────────────────────────────────────── */
.seite-kopf {
  padding: 148px 0 44px;
  background: linear-gradient(180deg, oklch(98% 0.015 248) 0%, var(--paper) 100%);
  border-bottom: 1px solid var(--line-soft);
}
.seite-kopf h1 {
  font-size: clamp(32px, 4.2vw, 52px);
  line-height: 1.06;
  margin-top: 16px;
}
.seite-kopf .lede { margin-top: 14px; }
.seite-kopf .support-badge-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}
.seite-kopf .support-badge-links img { height: 46px; width: auto; }

@media (max-width: 600px) {
  .seite-kopf { padding: 104px 0 32px; }
}

/* ── Fließtext ───────────────────────────────────────────────────────── */
.seite-inhalt {
  padding: 52px 0 clamp(72px, 9vw, 120px);
}
/* Lesbreite: rund 70 Zeichen, das ist für Rechtstexte die angenehme Spanne */
.seite-inhalt .container > * { max-width: 74ch; }
.seite-inhalt .container > .support-section,
.seite-inhalt .container > section { max-width: none; }

.seite-inhalt h2 {
  font-size: clamp(21px, 2.1vw, 26px);
  line-height: 1.25;
  margin-top: 46px;
  padding-top: 22px;
  border-top: 1px solid var(--line-soft);
}
.seite-inhalt h2:first-child { margin-top: 0; padding-top: 0; border-top: 0; }
.seite-inhalt h3 {
  font-size: 18px;
  line-height: 1.3;
  margin-top: 30px;
}
.seite-inhalt p {
  font-size: 16.5px;
  line-height: 1.68;
  margin-top: 12px;
  color: var(--ink-soft);
}
.seite-inhalt ul,
.seite-inhalt ol {
  margin: 12px 0 0;
  padding-left: 22px;
  color: var(--ink-soft);
  font-size: 16.5px;
  line-height: 1.68;
}
.seite-inhalt li { margin-top: 8px; }
.seite-inhalt li::marker { color: var(--primary); }
.seite-inhalt strong { color: var(--ink); font-weight: 600; }
.seite-inhalt a {
  color: var(--primary);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
}
.seite-inhalt a:hover { color: var(--primary-2); }

/* Kontaktkästen im Impressum und in der Datenschutzerklärung */
.seite-inhalt .contact-info {
  margin-top: 16px;
  padding: 18px 20px;
  background: var(--primary-50);
  border: 1px solid var(--primary-100);
  border-radius: var(--radius);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink-soft);
}

/* Tabelle (Auftragsverarbeiter in der Datenschutzerklärung) */
.seite-inhalt table {
  width: 100%;
  margin-top: 18px;
  border-collapse: collapse;
  font-size: 15px;
  /* auf schmalen Schirmen scrollbar statt gequetscht */
  display: block;
  overflow-x: auto;
}
.seite-inhalt th,
.seite-inhalt td {
  border: 1px solid var(--line);
  padding: 10px 12px;
  text-align: left;
  vertical-align: top;
  color: var(--ink-soft);
}
.seite-inhalt th {
  background: var(--primary-50);
  color: var(--ink);
  font-weight: 600;
  white-space: nowrap;
}

.seite-stand {
  margin-top: 52px;
  padding-top: 18px;
  border-top: 1px solid var(--line-soft);
  font-size: 14px;
  color: var(--ink-mute);
}

/* ── Support-Seite ───────────────────────────────────────────────────── */
.support-section { margin-top: 56px; }
.support-section:first-child { margin-top: 0; }
.support-container { max-width: none; }
.support-section-header { max-width: 74ch; }
.support-section-header h2 {
  margin-top: 0;
  padding-top: 0;
  border-top: 0;
}
.support-section-content { margin-top: 26px; }

.support-feature {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 24px 26px;
  box-shadow: var(--shadow-sm);
  margin-top: 16px;
}
.support-feature h3 { margin-top: 0; }

.highlight-box {
  margin-top: 16px;
  padding: 16px 18px;
  background: var(--peach-50);
  border: 1px solid var(--peach-200);
  border-left: 3px solid var(--peach-ink);
  border-radius: var(--radius-sm);
  font-size: 15.5px;
  line-height: 1.6;
  color: var(--ink-soft);
}
.highlight-box strong { color: var(--peach-ink); }

.support-badge {
  display: inline-flex;
  align-items: center;
  font-family: var(--body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--primary);
  background: var(--primary-50);
  border: 1px solid var(--primary-100);
  padding: 6px 12px;
  border-radius: 999px;
}
