/* ═══════════════════════════════════════════════════════════
   STROMVERGLEICH HAMBURG — Design System
   Konzept: "Hamburger Hafenblatt"
   Strenge Vertikale, Zeitungsraster, brutale Typografie
   Farben: Off-White + Fast-Schwarz + Signal-Orange
   Fonts: Cabinet Grotesk (Headlines) + Newsreader (Body/Zitate)
   Grid: Vertikales Streifensystem statt horizontale Boxen
   ═══════════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Newsreader:ital,wght@0,400;0,600;1,400;1,600&family=DM+Mono:wght@400;500&display=swap');
@import url('https://api.fontshare.com/v2/css?f[]=cabinet-grotesk@800,900,700,400,500&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* Kern-Palette */
  --w:       #F0EDE6;     /* Off-White Papier */
  --b:       #111110;     /* Fast-Schwarz */
  --o:       #FF4D00;     /* Signal-Orange */
  --o-pale:  #FFF0EB;     /* Orange-Hauch */
  --mid:     #6B6B66;     /* Mittleres Grau */
  --rule:    rgba(17,17,16,0.12);  /* Trennlinien */

  /* Typo */
  --ff-head: 'Cabinet Grotesk', 'Arial Black', sans-serif;
  --ff-body: 'Newsreader', Georgia, serif;
  --ff-mono: 'DM Mono', 'Courier New', monospace;

  /* Layout */
  --nav-h: 64px;
  --max:   1240px;
  --pad:   40px;
  --col:   calc((var(--max) - var(--pad)*2) / 12);
  --gap:   24px;
  --r:     0.18s ease;
}

/* ── Reset & Base ── */
html { font-size: 16px; scroll-behavior: smooth; }
body {
  font-family: var(--ff-body);
  background: var(--w);
  color: var(--b);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; }
img { display: block; max-width: 100%; }
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--w); }
::-webkit-scrollbar-thumb { background: var(--b); }

/* ── NAVIGATION ── */
.site-nav {
  position: sticky; top: 0; z-index: 100;
  height: var(--nav-h);
  background: var(--b);
  display: flex; align-items: stretch;
  border-bottom: 3px solid var(--o);
}
.nav-inner {
  max-width: var(--max); margin: 0 auto; padding: 0 var(--pad);
  display: flex; align-items: center; width: 100%; gap: 0;
}
.nav-logo {
  font-family: var(--ff-head); font-weight: 900;
  font-size: 1.05rem; letter-spacing: -0.03em;
  color: var(--w); text-decoration: none;
  margin-right: 40px; line-height: 1;
  white-space: nowrap;
}
.nav-logo .dot { color: var(--o); }
.nav-links {
  display: flex; align-items: stretch; list-style: none;
  gap: 0; flex: 1;
}
.nav-links > li { position: relative; display: flex; align-items: stretch; }
.nav-links > li > a {
  display: flex; align-items: center;
  font-family: var(--ff-mono); font-size: 0.72rem; font-weight: 500;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: rgba(240,237,230,0.55); text-decoration: none;
  padding: 0 16px;
  border-left: 1px solid rgba(255,255,255,0.06);
  transition: all var(--r);
}
.nav-links > li > a:hover,
.nav-links > li > a.aktiv { color: var(--w); background: rgba(255,255,255,0.04); }
.nav-links > li:last-child > a { border-right: 1px solid rgba(255,255,255,0.06); }

/* Dropdown */
.has-drop:hover .drop { opacity: 1; pointer-events: all; transform: translateY(0); }
.drop {
  position: absolute; top: 100%; left: 0;
  min-width: 220px;
  background: var(--b); border: 1px solid rgba(255,255,255,0.1);
  border-top: 2px solid var(--o);
  list-style: none; padding: 6px 0;
  opacity: 0; pointer-events: none;
  transform: translateY(-4px);
  transition: all 0.15s ease;
  z-index: 99;
}
.drop li a {
  display: block; padding: 8px 18px;
  font-family: var(--ff-mono); font-size: 0.68rem; letter-spacing: 0.06em;
  text-transform: uppercase; color: rgba(240,237,230,0.55);
  text-decoration: none; transition: color var(--r);
}
.drop li a:hover { color: var(--o); background: rgba(255,77,0,0.06); }
.drop li.drop-sep { height: 1px; background: rgba(255,255,255,0.07); margin: 4px 0; }

.nav-cta {
  margin-left: auto;
  font-family: var(--ff-mono); font-size: 0.72rem; font-weight: 500;
  letter-spacing: 0.08em; text-transform: uppercase;
  background: var(--o); color: var(--w);
  padding: 0 24px; border: none; cursor: pointer;
  text-decoration: none; display: flex; align-items: center; gap: 8px;
  transition: background var(--r);
  white-space: nowrap; height: 100%;
}
.nav-cta:hover { background: #E04400; }

/* Mobile burger */
.burger {
  display: none; background: none; border: none; cursor: pointer;
  margin-left: auto; flex-direction: column; gap: 5px; padding: 4px;
}
.burger span { display: block; width: 22px; height: 1.5px; background: var(--w); }

/* ── MAIN + MARGIN ── */
.site-main { min-height: calc(100vh - var(--nav-h)); }
.inner { max-width: var(--max); margin: 0 auto; padding: 0 var(--pad); }

/* ── BREADCRUMB ── */
.breadcrumb {
  font-family: var(--ff-mono); font-size: 0.65rem; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--mid);
  padding: 12px 0; border-bottom: 1px solid var(--rule);
  display: flex; gap: 8px; align-items: center;
}
.breadcrumb a { color: var(--mid); text-decoration: none; }
.breadcrumb a:hover { color: var(--o); }
.breadcrumb .sep { color: var(--rule); }

/* ════════════════════════════════════════════════════════════
   HOMEPAGE — HERO
   Komplett vertikal statt split-screen
   Großes Typografie-Statement, Rechner darunter als eigene Zone
   ════════════════════════════════════════════════════════════ */
.hero {
  background: var(--w);
  border-bottom: 2px solid var(--b);
  overflow: hidden;
}

.hero-top {
  padding: 72px 0 0;
  position: relative;
}
.hero-top::before {
  content: '';
  position: absolute; top: 0; right: var(--pad);
  width: 3px; height: 100%; background: var(--o);
  opacity: 0.2;
}

/* Laufzettel */
.hero-kenn {
  font-family: var(--ff-mono); font-size: 0.65rem; font-weight: 500;
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--o);
  margin-bottom: 20px; display: flex; align-items: center; gap: 14px;
}
.hero-kenn::before {
  content: ''; display: block; width: 24px; height: 2px; background: var(--o);
}

/* Schlagzeile — das Herzstück */
.hero-h1 {
  font-family: var(--ff-head); font-weight: 900;
  font-size: clamp(3.5rem, 8vw, 7.5rem);
  line-height: 0.92; letter-spacing: -0.04em;
  color: var(--b); max-width: 900px;
  margin-bottom: 0;
}
.hero-h1 .durch {
  -webkit-text-stroke: 2px var(--b);
  color: transparent;
  position: relative;
}
.hero-h1 .durch::after {
  content: '';
  position: absolute; top: 52%; left: -4px; right: -4px;
  height: 4px; background: var(--o); transform: rotate(-1.5deg);
}
.hero-h1 .o { color: var(--o); }

/* Zweizeiliger Sub unter H1 */
.hero-sub-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-top: 2px solid var(--b);
  margin-top: 40px;
}
.hero-sub-col {
  padding: 24px 0;
  border-right: 1px solid var(--rule);
}
.hero-sub-col:last-child { border-right: none; padding-left: 32px; }
.hero-sub-col:first-child { padding-right: 32px; }

.hero-fact {
  font-family: var(--ff-mono); font-size: 0.7rem; color: var(--mid);
  text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 6px;
}
.hero-fact-val {
  font-family: var(--ff-head); font-size: 2.2rem; font-weight: 900;
  color: var(--b); letter-spacing: -0.04em; line-height: 1;
}
.hero-fact-val.orange { color: var(--o); }

/* ── RECHNER-ZONE ── */
.rechner-zone {
  background: var(--b);
  padding: 40px 0;
  border-top: 2px solid var(--b);
}
.rechner-inner {
  max-width: var(--max); margin: 0 auto; padding: 0 var(--pad);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}
.rechner-left {
  padding-right: 40px;
  border-right: 1px solid rgba(255,255,255,0.1);
}
.rechner-right { padding-left: 40px; }

.rz-label {
  font-family: var(--ff-mono); font-size: 0.62rem; font-weight: 500;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(240,237,230,0.4); margin-bottom: 6px;
}
.rz-title {
  font-family: var(--ff-head); font-size: 1.5rem; font-weight: 900;
  color: var(--w); letter-spacing: -0.03em; line-height: 1.1;
  margin-bottom: 24px;
}

/* Formular */
.rz-field { margin-bottom: 16px; }
.rz-field label {
  display: block; font-family: var(--ff-mono); font-size: 0.62rem;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(240,237,230,0.4); margin-bottom: 7px;
}
.rz-field input[type="text"],
.rz-field input[type="number"],
.rz-field select {
  width: 100%; padding: 12px 14px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  color: var(--w); font-family: var(--ff-mono); font-size: 0.9rem;
  border-radius: 0; appearance: none; outline: none;
  transition: border-color var(--r);
}
.rz-field input:focus, .rz-field select:focus {
  border-color: var(--o);
  background: rgba(255,77,0,0.05);
}

/* Haushalt-Buttons */
.haus-grid {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 6px;
}
.haus-btn {
  padding: 10px 4px; background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  color: rgba(240,237,230,0.55); cursor: pointer;
  font-family: var(--ff-mono); font-size: 0.62rem; letter-spacing: 0.06em;
  text-align: center; transition: all var(--r); line-height: 1.3;
}
.haus-btn .hn { display: block; font-size: 1rem; font-weight: 500; color: var(--w); }
.haus-btn.aktiv,
.haus-btn:hover { border-color: var(--o); background: rgba(255,77,0,0.1); }
.haus-btn.aktiv .hn { color: var(--o); }

/* Verbrauch-Slider */
.slider-wrap { position: relative; }
.vz-num {
  font-family: var(--ff-head); font-size: 2.8rem; font-weight: 900;
  color: var(--o); letter-spacing: -0.04em; line-height: 1;
  margin-bottom: 8px;
}
.vz-num small { font-size: 1rem; color: rgba(240,237,230,0.4); font-family: var(--ff-mono); }
.rz-field input[type="range"] {
  width: 100%; height: 2px; background: rgba(255,255,255,0.15);
  appearance: none; outline: none; border: none; cursor: pointer; padding: 0;
}
.rz-field input[type="range"]::-webkit-slider-thumb {
  appearance: none; width: 20px; height: 20px;
  background: var(--o); border: none;
  cursor: pointer; transition: transform var(--r);
}
.rz-field input[type="range"]::-webkit-slider-thumb:hover { transform: scale(1.3); }
.slider-labels {
  display: flex; justify-content: space-between; margin-top: 6px;
}
.slider-labels span { font-family: var(--ff-mono); font-size: 0.6rem; color: rgba(240,237,230,0.3); }

/* Vergleichs-Button */
.btn-vergleich {
  width: 100%; padding: 16px 24px;
  background: var(--o); color: var(--w);
  font-family: var(--ff-mono); font-size: 0.78rem; font-weight: 500;
  letter-spacing: 0.12em; text-transform: uppercase;
  border: none; cursor: pointer; text-decoration: none;
  display: flex; align-items: center; justify-content: center; gap: 12px;
  transition: background var(--r);
  margin-top: 20px;
}
.btn-vergleich:hover { background: #E04400; }
.btn-vergleich svg { flex-shrink: 0; }

.rz-hinweis {
  font-family: var(--ff-mono); font-size: 0.6rem; color: rgba(240,237,230,0.25);
  margin-top: 10px; line-height: 1.6;
}

/* Rechner rechts: Infos + Trust */
.rz-facts {
  display: flex; flex-direction: column; gap: 0;
  margin-bottom: 32px;
}
.rz-fact-item {
  padding: 18px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.rz-fact-item:first-child { border-top: 1px solid rgba(255,255,255,0.07); }
.rfi-num {
  font-family: var(--ff-head); font-size: 2.6rem; font-weight: 900;
  color: var(--w); letter-spacing: -0.04em; line-height: 1;
}
.rfi-num.o { color: var(--o); }
.rfi-label { font-family: var(--ff-mono); font-size: 0.62rem; color: rgba(240,237,230,0.35); letter-spacing: 0.1em; text-transform: uppercase; margin-top: 3px; }

.rz-trust {
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.07);
}
.rz-trust-item {
  font-family: var(--ff-mono); font-size: 0.65rem; color: rgba(240,237,230,0.4);
  padding: 6px 0; border-bottom: 1px solid rgba(255,255,255,0.05);
  display: flex; align-items: center; gap: 10px;
}
.rz-trust-item::before { content: '✓'; color: var(--o); font-size: 0.7rem; }
.rz-trust-item:last-child { border-bottom: none; }

/* ════════════════════════════════════════════════════════════
   SEKTION-SYSTEM
   ════════════════════════════════════════════════════════════ */
.section { padding: 80px 0; }
.section + .section { border-top: 1px solid var(--rule); }
.section.dark { background: var(--b); padding: 80px 0; border-top: none; }

.section-kenn {
  font-family: var(--ff-mono); font-size: 0.62rem; font-weight: 500;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--o);
  margin-bottom: 10px; display: flex; align-items: center; gap: 12px;
}
.section-kenn::after { content: ''; flex: 0 0 28px; height: 1px; background: var(--o); }
.dark .section-kenn { color: var(--o); }

.section-h2 {
  font-family: var(--ff-head); font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 900; letter-spacing: -0.04em; line-height: 0.95;
  color: var(--b); margin-bottom: 48px;
}
.dark .section-h2 { color: var(--w); }

/* ── ANBIETER-SEKTION ── */
.anbieter-tabelle {
  width: 100%; border-collapse: collapse; border-spacing: 0;
  border-top: 2px solid var(--b);
}
.anbieter-tabelle thead tr {
  border-bottom: 1px solid var(--b);
}
.anbieter-tabelle th {
  font-family: var(--ff-mono); font-size: 0.6rem; font-weight: 500;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--mid);
  padding: 10px 16px 10px 0; text-align: left;
}
.anbieter-tabelle th:last-child { text-align: right; }
.anbieter-tabelle tbody tr {
  border-bottom: 1px solid var(--rule);
  transition: background var(--r);
}
.anbieter-tabelle tbody tr:hover { background: rgba(255,77,0,0.03); }
.anbieter-tabelle td {
  padding: 16px 16px 16px 0; vertical-align: middle;
}
.anbieter-tabelle td:last-child { text-align: right; }

.at-name {
  font-family: var(--ff-head); font-size: 1.05rem; font-weight: 800;
  color: var(--b); letter-spacing: -0.02em; margin-bottom: 3px;
}
.at-typ { font-family: var(--ff-mono); font-size: 0.6rem; color: var(--mid); letter-spacing: 0.08em; text-transform: uppercase; }
.at-preis {
  font-family: var(--ff-head); font-size: 1.4rem; font-weight: 900;
  color: var(--b); letter-spacing: -0.03em;
}
.at-preis small { font-family: var(--ff-mono); font-size: 0.6rem; color: var(--mid); font-weight: 400; }
.at-bewertung { display: flex; align-items: center; gap: 4px; }
.stars { color: var(--o); font-size: 0.75rem; letter-spacing: 2px; }
.stars-leer { color: var(--rule); }

/* Badges */
.badge {
  display: inline-block; padding: 3px 8px;
  font-family: var(--ff-mono); font-size: 0.58rem; font-weight: 500;
  letter-spacing: 0.08em; text-transform: uppercase;
}
.badge-ok { background: #E8F5E9; color: #2E7D32; }
.badge-warn { background: #FFF3E0; color: #E65100; }
.badge-neutral { background: rgba(17,17,16,0.06); color: var(--mid); }
.badge-oeko { background: #E8F5E9; color: #1B5E20; }

.at-btn {
  font-family: var(--ff-mono); font-size: 0.65rem; font-weight: 500;
  letter-spacing: 0.1em; text-transform: uppercase;
  background: none; border: 1px solid var(--b); color: var(--b);
  padding: 7px 14px; cursor: pointer; text-decoration: none;
  transition: all var(--r); white-space: nowrap; display: inline-block;
}
.at-btn:hover { background: var(--b); color: var(--w); }

/* ── STADTTEILE ── */
.stadtteile-raster {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 2px solid var(--b);
  border-left: 1px solid var(--rule);
}
.st-kachel {
  padding: 24px 20px;
  border-right: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  text-decoration: none; display: block;
  transition: background var(--r); position: relative;
}
.st-kachel:hover { background: var(--o-pale); }
.st-kachel:hover .st-pfeil { opacity: 1; transform: translateX(0); }
.st-kachel.gross { grid-column: span 2; }
.st-kachel.dunkel { background: var(--b); }
.st-kachel.dunkel:hover { background: #1E1E1C; }
.st-kachel.dunkel .st-name { color: var(--w); }
.st-kachel.dunkel .st-plz { color: rgba(240,237,230,0.35); }
.st-kachel.dunkel .st-detail { color: rgba(240,237,230,0.45); }
.st-kachel.dunkel .st-pfeil { color: var(--o); }

.st-plz {
  font-family: var(--ff-mono); font-size: 0.62rem; color: var(--mid);
  letter-spacing: 0.1em; margin-bottom: 6px;
}
.st-name {
  font-family: var(--ff-head); font-size: 1.15rem; font-weight: 900;
  color: var(--b); letter-spacing: -0.03em; line-height: 1.1;
  margin-bottom: 4px;
}
.st-kachel.gross .st-name { font-size: 1.8rem; }
.st-detail { font-size: 0.78rem; color: var(--mid); margin-top: 8px; }
.st-pfeil {
  position: absolute; bottom: 16px; right: 16px;
  font-family: var(--ff-mono); font-size: 0.65rem; color: var(--o);
  opacity: 0; transform: translateX(-6px); transition: all var(--r);
}

/* ── RATGEBER ── */
.ratgeber-liste-gross {
  display: grid;
  grid-template-columns: 1.8fr 1fr;
  gap: 0;
  border-top: 2px solid var(--b);
}
.rg-featured {
  padding: 40px 40px 40px 0;
  border-right: 1px solid var(--rule);
}
.rg-featured-tag {
  font-family: var(--ff-mono); font-size: 0.62rem; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--o); margin-bottom: 12px;
}
.rg-featured-title {
  font-family: var(--ff-head); font-size: 2rem; font-weight: 900;
  color: var(--b); letter-spacing: -0.04em; line-height: 1.0;
  margin-bottom: 16px;
}
.rg-featured-text { font-size: 0.9rem; color: var(--mid); line-height: 1.7; margin-bottom: 28px; }
.rg-lesen {
  font-family: var(--ff-mono); font-size: 0.68rem; font-weight: 500;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--b); text-decoration: none;
  display: inline-flex; align-items: center; gap: 10px;
  border-bottom: 1px solid var(--b); padding-bottom: 2px;
  transition: all var(--r);
}
.rg-lesen:hover { color: var(--o); border-color: var(--o); gap: 16px; }

.rg-liste-seite {
  display: flex; flex-direction: column; gap: 0;
}
.rg-item {
  display: flex; gap: 16px;
  padding: 20px 0 20px 28px;
  border-bottom: 1px solid var(--rule);
  text-decoration: none; transition: padding-left var(--r);
}
.rg-item:hover { padding-left: 36px; }
.rg-item-num {
  font-family: var(--ff-head); font-size: 1.5rem; font-weight: 900;
  color: var(--rule); flex-shrink: 0; line-height: 1;
}
.rg-item-body {}
.rg-item-tag { font-family: var(--ff-mono); font-size: 0.58rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--o); margin-bottom: 4px; }
.rg-item-title { font-family: var(--ff-head); font-size: 0.92rem; font-weight: 800; color: var(--b); letter-spacing: -0.02em; line-height: 1.25; }
.rg-item-sub { font-size: 0.76rem; color: var(--mid); margin-top: 3px; }

/* ── SPARRECHNER (eigene Seite + Einbettung) ── */
.sparrechner { background: var(--w); }

.spar-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 0;
  border-top: 2px solid var(--b);
  align-items: start;
}
.spar-links { border-right: 1px solid var(--rule); padding-right: 40px; }
.spar-rechts { padding-left: 40px; position: sticky; top: calc(var(--nav-h) + 20px); }

/* Kategorie-Akkordeon */
.kat-block { border-bottom: 1px solid var(--rule); }
.kat-head {
  width: 100%; display: flex; justify-content: space-between; align-items: center;
  padding: 16px 0; background: none; border: none; cursor: pointer;
  text-align: left;
}
.kat-head-name {
  font-family: var(--ff-head); font-size: 1rem; font-weight: 800;
  color: var(--b); letter-spacing: -0.02em;
}
.kat-head-chevron { font-size: 0.65rem; color: var(--mid); transition: transform var(--r); }
.kat-head.open .kat-head-chevron { transform: rotate(180deg); }
.kat-body { display: none; padding-bottom: 12px; }
.kat-body.open { display: block; }

.geraet-zeile {
  display: grid;
  grid-template-columns: 20px 1fr auto auto;
  gap: 12px; align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid rgba(17,17,16,0.06);
}
.geraet-zeile:last-child { border-bottom: none; }
.gz-check { width: 16px; height: 16px; accent-color: var(--b); cursor: pointer; }
.gz-info {}
.gz-name { font-family: var(--ff-mono); font-size: 0.72rem; font-weight: 500; color: var(--b); }
.gz-sub { font-size: 0.68rem; color: var(--mid); }
.gz-schieber {
  display: flex; flex-direction: column; align-items: flex-end; gap: 2px;
}
.gz-schieber input[type=range] { width: 90px; height: 2px; accent-color: var(--b); cursor: pointer; }
.gz-schieber-val { font-family: var(--ff-mono); font-size: 0.62rem; color: var(--mid); }
.gz-ersparnis {
  font-family: var(--ff-head); font-size: 0.9rem; font-weight: 900;
  color: var(--b); letter-spacing: -0.02em; text-align: right; min-width: 60px;
}

/* Ergebnis-Box */
.spar-ergebnis {
  background: var(--b); padding: 28px;
}
.se-kenn { font-family: var(--ff-mono); font-size: 0.6rem; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(240,237,230,0.3); margin-bottom: 8px; }
.se-total {
  font-family: var(--ff-head); font-size: 4rem; font-weight: 900;
  color: var(--o); letter-spacing: -0.05em; line-height: 1; margin-bottom: 4px;
}
.se-einheit { font-family: var(--ff-mono); font-size: 0.65rem; color: rgba(240,237,230,0.35); margin-bottom: 20px; }
.se-items { margin-bottom: 20px; }
.se-item { display: flex; justify-content: space-between; align-items: baseline; padding: 7px 0; border-bottom: 1px solid rgba(255,255,255,0.06); }
.se-item:last-child { border-bottom: none; }
.se-item-name { font-family: var(--ff-mono); font-size: 0.68rem; color: rgba(240,237,230,0.45); }
.se-item-val { font-family: var(--ff-head); font-size: 0.9rem; font-weight: 800; color: var(--o); }
.se-hinweis {
  background: rgba(255,77,0,0.08); border-left: 2px solid var(--o);
  padding: 10px 14px; margin-bottom: 16px;
  font-family: var(--ff-mono); font-size: 0.65rem; color: rgba(240,237,230,0.5); line-height: 1.6;
}
.se-cta {
  display: block; width: 100%; padding: 14px;
  background: var(--o); color: var(--w);
  font-family: var(--ff-mono); font-size: 0.72rem; font-weight: 500;
  letter-spacing: 0.1em; text-transform: uppercase; text-align: center;
  text-decoration: none; border: none; cursor: pointer; transition: background var(--r);
}
.se-cta:hover { background: #E04400; }

/* ── FAQ ── */
.faq-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 0;
  border-top: 2px solid var(--b);
}
.faq-sidebar {
  padding: 40px 40px 40px 0;
  border-right: 1px solid var(--rule);
}
.faq-sidebar p { font-size: 0.88rem; color: var(--mid); margin-top: 14px; line-height: 1.7; }
.faq-list { padding: 0 0 0 40px; }

.faq-item { border-bottom: 1px solid var(--rule); }
.faq-item:first-child { border-top: 1px solid var(--rule); }
.faq-btn {
  width: 100%; padding: 20px 0; background: none; border: none; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  text-align: left;
}
.faq-q {
  font-family: var(--ff-head); font-size: 1rem; font-weight: 800;
  color: var(--b); letter-spacing: -0.02em; line-height: 1.2;
}
.faq-icon {
  font-family: var(--ff-mono); font-size: 1.2rem; color: var(--mid);
  flex-shrink: 0; line-height: 1; transition: transform var(--r);
}
.faq-item.open .faq-icon { transform: rotate(45deg); color: var(--o); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.faq-a-inner { padding: 0 0 20px; font-size: 0.875rem; color: var(--mid); line-height: 1.8; }
.faq-item.open .faq-a { max-height: 400px; }

/* ── TESTIMONIALS ── */
.testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 2px solid var(--b);
}
.testi-card {
  padding: 36px;
  border-right: 1px solid var(--rule);
}
.testi-card:last-child { border-right: none; }
.testi-card:nth-child(2) { background: var(--b); border-right-color: rgba(255,255,255,0.07); }
.testi-card:nth-child(2) .testi-text { color: rgba(240,237,230,0.6); }
.testi-card:nth-child(2) .testi-name { color: var(--w); }
.testi-card:nth-child(2) .testi-ort { color: rgba(240,237,230,0.35); }
.testi-anf {
  font-family: var(--ff-head); font-size: 3.5rem; font-weight: 900;
  color: var(--rule); line-height: 0.7; margin-bottom: 12px;
}
.testi-card:nth-child(2) .testi-anf { color: rgba(255,77,0,0.3); }
.testi-sterne { color: var(--o); font-size: 0.72rem; letter-spacing: 3px; margin-bottom: 10px; }
.testi-text { font-family: var(--ff-body); font-style: italic; font-size: 0.9rem; color: var(--mid); line-height: 1.75; margin-bottom: 24px; }
.testi-meta { display: flex; align-items: center; gap: 12px; }
.testi-avatar {
  width: 38px; height: 38px;
  background: var(--b); color: var(--w);
  font-family: var(--ff-mono); font-size: 0.72rem; font-weight: 500;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.testi-card:nth-child(2) .testi-avatar { background: var(--o); }
.testi-name { font-family: var(--ff-mono); font-size: 0.72rem; font-weight: 500; color: var(--b); }
.testi-ort { font-size: 0.68rem; color: var(--mid); }

/* ── CTA-BANNER ── */
.cta-banner {
  background: var(--o); padding: 64px 0;
  text-align: center;
}
.cta-banner .section-h2 { color: var(--w); margin-bottom: 16px; }
.cta-banner p { font-size: 0.95rem; color: rgba(240,237,230,0.75); max-width: 480px; margin: 0 auto 36px; }
.cta-banner .btn-vergleich {
  display: inline-flex; width: auto; padding: 16px 40px;
  background: var(--b); color: var(--w);
}
.cta-banner .btn-vergleich:hover { background: #1E1E1C; }

/* ── FOOTER ── */
.site-footer {
  background: var(--b); color: var(--w);
  border-top: 3px solid var(--o);
  padding: 64px 0 32px;
}
.footer-raster {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 40px; margin-bottom: 48px;
}
.footer-brand-name {
  font-family: var(--ff-head); font-size: 1.15rem; font-weight: 900;
  color: var(--w); letter-spacing: -0.03em; margin-bottom: 12px;
}
.footer-brand-name .dot { color: var(--o); }
.footer-brand-text { font-size: 0.8rem; color: rgba(240,237,230,0.38); line-height: 1.75; max-width: 260px; }
.footer-affiliate { font-size: 0.68rem; color: rgba(240,237,230,0.2); margin-top: 12px; line-height: 1.6; }
.footer-col h3 {
  font-family: var(--ff-mono); font-size: 0.58rem; font-weight: 500;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--o); margin-bottom: 14px;
  padding-bottom: 8px; border-bottom: 1px solid rgba(255,255,255,0.06);
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer-col a { font-size: 0.8rem; color: rgba(240,237,230,0.38); text-decoration: none; transition: color var(--r); }
.footer-col a:hover { color: var(--o); }
.footer-boden {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px;
}
.footer-boden p { font-family: var(--ff-mono); font-size: 0.62rem; color: rgba(240,237,230,0.2); }

/* ════════════════════════════════════════════════════════════
   UNTERSEITEN
   ════════════════════════════════════════════════════════════ */

/* Unterseiten-Hero (kleiner als Homepage) */
.sub-hero {
  background: var(--b);
  padding: 52px 0 48px;
  border-bottom: 3px solid var(--o);
}
.sub-hero-inner { max-width: var(--max); margin: 0 auto; padding: 0 var(--pad); }
.sub-hero-kenn { font-family: var(--ff-mono); font-size: 0.62rem; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(240,237,230,0.35); margin-bottom: 10px; }
.sub-hero-h1 {
  font-family: var(--ff-head); font-size: clamp(2rem, 5vw, 3.8rem);
  font-weight: 900; color: var(--w); letter-spacing: -0.04em; line-height: 0.95;
  margin-bottom: 16px;
}
.sub-hero-h1 .o { color: var(--o); }
.sub-hero-sub { font-size: 0.92rem; color: rgba(240,237,230,0.55); max-width: 640px; line-height: 1.7; }

/* Content-Layout für Unterseiten */
.content-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 0;
  align-items: start;
  padding-top: 56px;
}
.content-main { padding-right: 56px; border-right: 1px solid var(--rule); }
.content-sidebar { padding-left: 40px; position: sticky; top: calc(var(--nav-h) + 20px); }

/* Typografie für Artikel-Inhalte */
.prose h2 {
  font-family: var(--ff-head); font-size: 1.6rem; font-weight: 900;
  letter-spacing: -0.03em; color: var(--b); margin: 40px 0 14px; line-height: 1.1;
}
.prose h2:first-child { margin-top: 0; }
.prose h3 {
  font-family: var(--ff-head); font-size: 1.15rem; font-weight: 900;
  letter-spacing: -0.02em; color: var(--b); margin: 28px 0 10px;
}
.prose p { font-size: 0.95rem; color: var(--mid); line-height: 1.8; margin-bottom: 16px; }
.prose p strong { color: var(--b); font-weight: 600; }
.prose ul { margin: 0 0 16px 0; padding-left: 0; list-style: none; }
.prose ul li { padding: 6px 0 6px 20px; font-size: 0.92rem; color: var(--mid); border-bottom: 1px solid var(--rule); position: relative; line-height: 1.6; }
.prose ul li::before { content: '→'; position: absolute; left: 0; color: var(--o); font-family: var(--ff-mono); font-size: 0.7rem; top: 8px; }
.prose ul li:last-child { border-bottom: none; }
.prose blockquote {
  border-left: 3px solid var(--o); padding: 16px 0 16px 24px; margin: 28px 0;
  font-family: var(--ff-body); font-style: italic; font-size: 1.05rem; color: var(--b);
  line-height: 1.65;
}

/* Info-Boxen */
.info-box {
  padding: 20px 24px; margin: 24px 0;
  border-left: 3px solid var(--b);
  background: rgba(17,17,16,0.03);
}
.info-box.orange { border-left-color: var(--o); background: var(--o-pale); }
.info-box-title { font-family: var(--ff-mono); font-size: 0.62rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--b); margin-bottom: 8px; }
.info-box p { font-size: 0.85rem; color: var(--mid); margin: 0; }
.info-box.orange p { color: #6B3500; }
.info-box.orange .info-box-title { color: var(--o); }

/* Sidebar-Widget */
.sidebar-widget {
  background: var(--b); padding: 24px;
  margin-bottom: 20px;
}
.sw-title { font-family: var(--ff-mono); font-size: 0.62rem; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(240,237,230,0.35); margin-bottom: 16px; }
.sw-rechner-link {
  display: block; padding: 14px;
  background: var(--o); color: var(--w); text-decoration: none; text-align: center;
  font-family: var(--ff-mono); font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase;
  margin-top: 16px; transition: background var(--r);
}
.sw-rechner-link:hover { background: #E04400; }
.sw-item { padding: 10px 0; border-bottom: 1px solid rgba(255,255,255,0.07); }
.sw-item:last-child { border-bottom: none; }
.sw-item a { font-size: 0.78rem; color: rgba(240,237,230,0.5); text-decoration: none; transition: color var(--r); }
.sw-item a:hover { color: var(--o); }

/* Anbieter-Detailseite */
.anbieter-header-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-top: 2px solid var(--b);
  margin-bottom: 48px;
}
.ahg-left { padding: 32px 40px 32px 0; border-right: 1px solid var(--rule); }
.ahg-right { padding: 32px 0 32px 40px; }
.anbieter-preis-block {}
.apb-label { font-family: var(--ff-mono); font-size: 0.6rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--mid); margin-bottom: 4px; }
.apb-val {
  font-family: var(--ff-head); font-size: 3rem; font-weight: 900;
  color: var(--b); letter-spacing: -0.05em; line-height: 1;
}
.apb-val small { font-family: var(--ff-mono); font-size: 0.75rem; color: var(--mid); }
.apb-row { display: flex; justify-content: space-between; padding: 8px 0; border-bottom: 1px solid var(--rule); }
.apb-row-key { font-family: var(--ff-mono); font-size: 0.68rem; color: var(--mid); text-transform: uppercase; letter-spacing: 0.08em; }
.apb-row-val { font-family: var(--ff-mono); font-size: 0.75rem; color: var(--b); font-weight: 500; }

/* Stadtteil-Seite */
.stadtteil-map-placeholder {
  background: rgba(17,17,16,0.04); border: 1px solid var(--rule);
  height: 200px; display: flex; align-items: center; justify-content: center;
  font-family: var(--ff-mono); font-size: 0.68rem; color: var(--mid);
  margin-bottom: 28px;
}

/* Ergebnis-Seite */
.ergebnis-hero { background: var(--b); padding: 40px 0; border-bottom: 3px solid var(--o); }
.widget-wrap { background: var(--w); }

/* ════════════════════════════════════════════════════════════
   RESPONSIVE
   ════════════════════════════════════════════════════════════ */
@media (max-width: 1080px) {
  :root { --pad: 28px; }
  .anbieter-tabelle thead .hide-md { display: none; }
  .anbieter-tabelle td.hide-md { display: none; }
  .footer-raster { grid-template-columns: 1fr 1fr; gap: 28px; }
  .stadtteile-raster { grid-template-columns: repeat(3, 1fr); }
  .st-kachel.gross { grid-column: span 2; }
}
@media (max-width: 900px) {
  .nav-links, .nav-cta { display: none; }
  .burger { display: flex; }
  .hero-h1 { font-size: 3rem; }
  .rechner-inner { grid-template-columns: 1fr; }
  .rechner-left { padding-right: 0; border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); padding-bottom: 32px; margin-bottom: 32px; }
  .rechner-right { padding-left: 0; }
  .ratgeber-liste-gross { grid-template-columns: 1fr; }
  .rg-featured { padding: 0 0 32px; border-right: none; border-bottom: 1px solid var(--rule); }
  .spar-layout { grid-template-columns: 1fr; }
  .spar-rechts { position: static; padding-left: 0; padding-top: 28px; }
  .spar-links { border-right: none; padding-right: 0; }
  .faq-layout { grid-template-columns: 1fr; }
  .faq-sidebar { padding-right: 0; border-right: none; border-bottom: 1px solid var(--rule); padding-bottom: 28px; margin-bottom: 28px; }
  .faq-list { padding-left: 0; }
  .testimonials { grid-template-columns: 1fr; }
  .testi-card { border-right: none; border-bottom: 1px solid var(--rule); }
  .content-layout { grid-template-columns: 1fr; }
  .content-main { padding-right: 0; border-right: none; }
  .content-sidebar { padding-left: 0; position: static; margin-top: 40px; }
  .anbieter-header-grid { grid-template-columns: 1fr; }
  .ahg-left { padding-right: 0; border-right: none; border-bottom: 1px solid var(--rule); }
  .ahg-right { padding-left: 0; }
  .stadtteile-raster { grid-template-columns: repeat(2, 1fr); }
  .st-kachel.gross { grid-column: span 2; }
  .footer-raster { grid-template-columns: 1fr 1fr; }
  .hero-sub-wrap { grid-template-columns: 1fr; }
  .hero-sub-col:last-child { padding-left: 0; border-top: 1px solid var(--rule); }
  .hero-sub-col:first-child { padding-right: 0; }
}
@media (max-width: 600px) {
  :root { --pad: 20px; }
  .hero-h1 { font-size: 2.4rem; }
  .haus-grid { grid-template-columns: repeat(3, 1fr); }
  .stadtteile-raster { grid-template-columns: 1fr 1fr; }
  .st-kachel.gross { grid-column: span 2; }
  .footer-raster { grid-template-columns: 1fr; }
  .footer-boden { flex-direction: column; align-items: flex-start; }
}
</style>
