/* Gemeinsames Stylesheet für die SEO-Landingpages (Generator-/Themenseiten).
   Bewusst schlank — Brand-Tokens + Header/Footer/Prosa, passend zur Startseite.
   Bestehende Seiten (index/check/legal) bleiben unangetastet (eigenes Inline-CSS). */
:root {
  --ink: #0e1726; --ink-soft: #33405a; --paper: #fbfaf7; --paper-2: #f2efe8;
  --surface: #fff; --line: #e2ddd2; --gold: #b8862f; --gold-soft: #d8b063; --blue: #16304f;
  --nav-bg: rgba(251, 250, 247, .85); --max: 880px; --r: 14px;
}
html[data-theme="dark"] {
  --ink: #e9eef6; --ink-soft: #a4b1c5; --paper: #0b111b; --paper-2: #111a28;
  --surface: #15202f; --line: #283648; --nav-bg: rgba(11, 17, 27, .82);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--paper); color: var(--ink);
  font: 16px/1.7 Inter, system-ui, -apple-system, sans-serif; -webkit-font-smoothing: antialiased; }
.wrap { max-width: var(--max); margin: 0 auto; padding: 0 22px; }
a { color: var(--blue); text-decoration: none; }
a:hover { text-decoration: underline; }
html[data-theme="dark"] a { color: var(--gold-soft); }

/* Nav */
.nav { position: sticky; top: 0; z-index: 30; background: var(--nav-bg); backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line); }
.nav .wrap { display: flex; align-items: center; gap: 16px; height: 62px; max-width: 1140px; }
.brand { display: inline-flex; align-items: center; gap: 9px; font-weight: 700; font-size: 20px; color: var(--ink); }
.brand:hover { text-decoration: none; }
.brand .accent { color: var(--gold); }
.brandmark { width: 30px; height: 30px; }
.nav .links { margin-left: auto; display: flex; align-items: center; gap: 20px; font-size: 14.5px; }
.nav .links a { color: var(--ink-soft); }
.nav .links a:hover { color: var(--ink); text-decoration: none; }
.themebtn { background: transparent; border: 1px solid var(--line); border-radius: 10px; width: 38px; height: 34px;
  cursor: pointer; color: var(--ink); display: inline-flex; align-items: center; justify-content: center; }
.themebtn .sun { display: none; } html[data-theme="dark"] .themebtn .moon { display: none; }
html[data-theme="dark"] .themebtn .sun { display: block; }
@media (max-width: 680px) { .nav .links a:not(.btn) { display: none; } }

/* Buttons */
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 11px 20px; border-radius: 999px;
  font-weight: 600; font-size: 15px; cursor: pointer; border: 1px solid transparent; transition: transform .15s, box-shadow .15s; }
.btn:hover { text-decoration: none; transform: translateY(-1px); }
.btn.gold { background: var(--gold); color: #fff; box-shadow: 0 8px 22px -10px var(--gold); }
.btn.ghost { background: transparent; border-color: var(--line); color: var(--ink); }

/* Breadcrumb */
.crumb { font-size: 13px; color: var(--ink-soft); padding: 18px 0 0; }
.crumb a { color: var(--ink-soft); }
.crumb span { opacity: .5; margin: 0 6px; }

/* Hero */
.hero { padding: 26px 0 12px; }
.eyebrow { display: inline-block; font-size: 12.5px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 12px; }
h1 { font-family: 'Playfair Display', Georgia, serif; font-weight: 800; font-size: clamp(30px, 5vw, 46px);
  line-height: 1.1; margin: 0 0 14px; letter-spacing: -.01em; }
h1 .accent { color: var(--gold); }
.lead { font-size: 19px; color: var(--ink-soft); margin: 0 0 22px; max-width: 60ch; }

/* Prosa */
.prose { padding: 14px 0 10px; }
.prose h2 { font-family: 'Playfair Display', Georgia, serif; font-size: 26px; margin: 38px 0 10px; line-height: 1.2; }
.prose h3 { font-size: 18px; margin: 26px 0 6px; }
.prose p { margin: 0 0 14px; }
.prose ul, .prose ol { margin: 0 0 16px; padding-left: 22px; }
.prose li { margin: 6px 0; }
.prose strong { color: var(--ink); }
.prose .note { background: var(--paper-2); border-left: 3px solid var(--gold); border-radius: 0 10px 10px 0;
  padding: 14px 18px; margin: 18px 0; font-size: 15px; }

/* Karten-Raster (Hub) */
.grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 16px; margin: 22px 0; }
.tcard { display: block; background: var(--surface); border: 1px solid var(--line); border-radius: var(--r);
  padding: 18px 20px; color: var(--ink); transition: transform .15s, box-shadow .15s, border-color .15s; }
.tcard:hover { text-decoration: none; transform: translateY(-2px); border-color: var(--gold-soft);
  box-shadow: 0 14px 32px -18px rgba(0, 0, 0, .35); }
.tcard b { display: block; font-size: 17px; }
.tcard .abbr { font-size: 12px; font-weight: 700; color: var(--gold); letter-spacing: .04em; }
.tcard span { display: block; color: var(--ink-soft); font-size: 14px; margin-top: 4px; }

/* USP-/Stärken-Streifen */
.usps { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 10px 18px; margin: 18px 0 6px; padding: 16px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.usps div { font-size: 14px; color: var(--ink); padding-left: 24px; position: relative; line-height: 1.4; }
.usps div::before { content: "✓"; position: absolute; left: 0; top: 0; color: var(--gold); font-weight: 800; }
.usps b { font-weight: 600; }

/* CTA-Box */
.cta-card { background: var(--blue); color: #fff; border-radius: var(--r); padding: 26px 28px; margin: 34px 0;
  display: flex; flex-wrap: wrap; align-items: center; gap: 16px; justify-content: space-between; }
html[data-theme="dark"] .cta-card { background: var(--surface); border: 1px solid var(--line); }
.cta-card h2 { font-family: 'Playfair Display', Georgia, serif; margin: 0 0 4px; font-size: 22px; }
.cta-card p { margin: 0; color: #cdd6e4; font-size: 15px; }

/* FAQ */
.faq { margin: 12px 0; }
.faq details { border-bottom: 1px solid var(--line); padding: 14px 0; }
.faq summary { font-weight: 600; cursor: pointer; list-style: none; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; float: right; color: var(--gold); font-weight: 700; }
.faq details[open] summary::after { content: "–"; }
.faq p { margin: 10px 0 2px; color: var(--ink-soft); }

/* Footer */
.foot { background: var(--ink); color: #aeb9c9; margin-top: 50px; padding: 34px 0; font-size: 14px; }
html[data-theme="dark"] .foot { background: #060a11; }
.foot .wrap { display: flex; flex-wrap: wrap; gap: 14px; justify-content: space-between; align-items: center; max-width: 1140px; }
.foot a { color: #cdd6e4; }
