:root {
  --pink: #d10062;
  --blau: #161047;
  --grau: #9a9eab;
  --rose: #fbeff5;
  --weiss: #ffffff;
  --text2: #4a4e5e;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: Tahoma, Verdana, "Segoe UI", sans-serif;
  color: var(--blau);
  background: var(--weiss);
  line-height: 1.65;
  font-size: 17px;
}
.wrap { max-width: 1080px; margin: 0 auto; padding: 0 24px; }
.schmal { max-width: 760px; }

/* Header */
header {
  position: sticky; top: 0; z-index: 10;
  background: rgba(255,255,255,0.96);
  border-bottom: 1px solid var(--rose);
  backdrop-filter: blur(6px);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; padding: 14px 0; }
.logo { font-weight: bold; font-size: 1.05rem; letter-spacing: -0.01em; text-decoration: none; color: var(--blau); line-height: 1.2; }
.logo .dot { color: var(--pink); }
.logo small { display: block; font-weight: normal; color: var(--grau); font-size: 0.72rem; letter-spacing: 0.04em; }
.btn {
  display: inline-block;
  background: var(--pink); color: #fff;
  padding: 12px 26px; border-radius: 999px;
  text-decoration: none; font-weight: bold; font-size: 0.95rem;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.btn:hover { transform: translateY(-1px); box-shadow: 0 6px 18px rgba(209,0,98,0.3); }
.btn:focus-visible { outline: 3px solid var(--blau); outline-offset: 2px; }
.btn-klein { padding: 9px 20px; font-size: 0.85rem; }

/* Hero (Startseite) */
.hero { background: var(--blau); color: #fff; padding: 96px 0 104px; }
.hero h1 {
  font-size: clamp(2.1rem, 5.5vw, 3.6rem);
  line-height: 1.12; letter-spacing: -0.02em; font-weight: bold;
  max-width: 17ch;
}
.hero h1 .dot { color: #ffffff; }
.hero p { margin-top: 28px; max-width: 56ch; font-size: 1.12rem; color: #d6d4e4; }
.hero .btn { margin-top: 40px; padding: 16px 36px; font-size: 1.05rem; }
.hero .hinweis { margin-top: 16px; font-size: 0.85rem; color: var(--grau); }
.badge {
  display: inline-block; margin-bottom: 26px;
  background: rgba(209,0,98,0.14); border: 1px solid var(--pink);
  color: #ffffff; border-radius: 999px; padding: 6px 18px;
  font-size: 0.85rem; font-weight: bold; letter-spacing: 0.03em;
}

/* Sektionen */
section { padding: 88px 0; }
.rose { background: var(--rose); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.3rem); letter-spacing: -0.015em; line-height: 1.2; max-width: 26ch; }
h2 .dot, h1 .dot { color: var(--pink); }
.lead { margin-top: 20px; max-width: 62ch; font-size: 1.05rem; }
.lead + .lead { margin-top: 14px; }

/* Störungsbild-Karten (Startseite) */
.spektrum { margin-top: 44px; display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 14px; list-style: none; }
.spektrum li { display: contents; }
.spektrum a, .spektrum .still {
  background: #fff; border-radius: 14px; padding: 18px 22px;
  font-weight: bold; font-size: 0.98rem;
  border-left: 4px solid var(--pink);
  color: var(--blau); text-decoration: none; display: block;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.spektrum a:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(22,16,71,0.08); }
.spektrum a::after { content: " →"; color: var(--pink); }
.spektrum span { display: block; font-weight: normal; color: var(--text2); font-size: 0.86rem; margin-top: 3px; }

/* Zweispalter */
.zwei-spalten { margin-top: 44px; display: grid; grid-template-columns: 1.4fr 1fr; gap: 56px; align-items: start; }
.karte { background: var(--rose); border-radius: 18px; padding: 32px; }
.karte h3 { font-size: 1.05rem; margin-bottom: 8px; }
.karte p { font-size: 0.95rem; }
.karte .name { font-weight: bold; margin-top: 18px; }
.karte .rolle { color: var(--text2); font-size: 0.86rem; }
.karte img { width: 150px; height: 150px; object-fit: cover; border-radius: 50%; margin-bottom: 16px; display: block; }
.karten-reihe { margin-top: 44px; display: grid; grid-template-columns: 1fr 1fr; gap: 24px; align-items: stretch; }

/* Ablauf */
.schritte { margin-top: 48px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; counter-reset: schritt; }
.schritt { counter-increment: schritt; }
.schritt::before {
  content: "0" counter(schritt);
  display: block; font-size: 2.4rem; font-weight: bold; color: var(--pink);
  letter-spacing: -0.03em; margin-bottom: 10px;
}
.schritt h3 { font-size: 1.05rem; margin-bottom: 6px; }
.schritt p { font-size: 0.95rem; color: #2c3046; }

/* FAQ */
.faq { margin-top: 44px; max-width: 760px; }
.faq details { border-bottom: 1px solid #e8e0ea; padding: 6px 0; }
.faq summary {
  cursor: pointer; font-weight: bold; font-size: 1.02rem;
  padding: 14px 36px 14px 0; list-style: none; position: relative;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+"; position: absolute; right: 4px; top: 50%;
  transform: translateY(-50%);
  color: var(--pink); font-size: 1.5rem; font-weight: bold;
}
.faq details[open] summary::after { content: "-"; }
.faq details p { padding: 0 0 18px; font-size: 0.97rem; max-width: 66ch; }

/* Kontakt */
.kontakt .zwei-spalten { grid-template-columns: 1fr 1fr; }
.kontakt address { font-style: normal; font-size: 1rem; line-height: 1.9; }
.kontakt a { color: var(--pink); text-decoration: none; font-weight: bold; }
.kontakt a:hover { text-decoration: underline; }
.notfall { background: var(--rose); border-radius: 14px; padding: 22px 26px; font-size: 0.92rem; max-width: 60ch; }

/* Footer */
footer { background: var(--rose); padding: 32px 0; font-size: 0.85rem; color: var(--text2); }
.footer-inner { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
footer a { color: var(--text2); }
.footer-wb { margin-top: 14px; padding-top: 14px; border-top: 1px solid #f0d9e6; width: 100%; }

/* ---------- Störungsbild-Unterseiten ---------- */
.sub-hero { background: var(--blau); color: #fff; padding: 72px 0 80px; }
.sub-hero .krumen { font-size: 0.85rem; margin-bottom: 22px; }
.sub-hero .krumen a { color: var(--grau); text-decoration: none; }
.sub-hero .krumen a:hover { color: #fff; }
.sub-hero h1 {
  font-size: clamp(1.9rem, 4.5vw, 3rem);
  line-height: 1.15; letter-spacing: -0.02em; max-width: 22ch;
}
.sub-hero p { margin-top: 22px; max-width: 58ch; font-size: 1.08rem; color: #d6d4e4; }
article section { padding: 64px 0; }
article h2 { font-size: clamp(1.35rem, 3vw, 1.8rem); }
article ul.merkmale { margin: 24px 0 0 0; list-style: none; max-width: 62ch; }
article ul.merkmale li { padding: 9px 0 9px 26px; position: relative; font-size: 1rem; }
article ul.merkmale li::before {
  content: ""; position: absolute; left: 0; top: 17px;
  width: 10px; height: 10px; border-radius: 50%; background: var(--pink);
}
.cta-band { background: var(--blau); color: #fff; text-align: center; padding: 72px 0; }
.cta-band h2 { color: #fff; margin: 0 auto; }
.cta-band p { margin: 18px auto 0; max-width: 54ch; color: #d6d4e4; }
.cta-band .btn { margin-top: 34px; padding: 15px 34px; font-size: 1rem; }
.cta-band .hinweis { margin-top: 14px; font-size: 0.83rem; color: var(--grau); }

@media (max-width: 760px) {
  section, article section { padding: 56px 0; }
  .hero { padding: 72px 0; }
  .zwei-spalten, .schritte, .kontakt .zwei-spalten, .karten-reihe { grid-template-columns: 1fr; gap: 32px; }
  .header-inner .btn { display: none; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .btn, .spektrum a { transition: none; }
}

.sub-hero h1 .dot, .cta-band h2 .dot { color: #ffffff; }
