/* ══════════════════════════════════════════════════════════════════════════════
   HYPERION LEADS — CLEAN & LIGHT PREMIUM
   Inspired by Stripe, Linear, Apple — minimal, professional, trustworthy
   ══════════════════════════════════════════════════════════════════════════════ */

/* ── RESET ──────────────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  color: #1e293b;
  background: #fff;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
img { display: block; max-width: 100%; }
input, select, textarea, button { font: inherit; }
address { font-style: normal; }

/* ── TOKENS ─────────────────────────────────────────────────────────────────── */
:root {
  --ink:     #0f172a;
  --ink-2:   #1e293b;
  --ink-3:   #334155;
  --body:    #475569;
  --muted:   #94a3b8;
  --faint:   #cbd5e1;
  --border:  #e2e8f0;
  --bg:      #ffffff;
  --bg-alt:  #f8fafc;
  --bg-warm: #f1f5f9;
  --accent:  #2563eb;
  --accent-hover: #1d4ed8;
  --accent-light: #eff6ff;
  --green:   #16a34a;
  --green-bg: #f0fdf4;
  --red:     #dc2626;
  --ease:    cubic-bezier(.25,.46,.45,.94);
  --ease-out: cubic-bezier(.22,1,.36,1);
}

/* ── LAYOUT ──────────────────────────────────────────────────────────────────── */
.wrap { max-width: 1120px; margin: 0 auto; padding: 0 24px; }
.section { padding: 100px 0; }
.section-alt { background: var(--bg-alt); }

/* ── TYPOGRAPHY ──────────────────────────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-weight: 700;
  line-height: 1.18;
  letter-spacing: -0.02em;
  color: var(--ink);
}
h1 { font-size: clamp(2.2rem, 4.5vw, 3rem); font-weight: 800; }
h2 { font-size: clamp(1.6rem, 3vw, 2.1rem); font-weight: 700; }
h3 { font-size: 1.02rem; font-weight: 600; letter-spacing: -0.01em; }

/* ── SCROLL REVEAL ───────────────────────────────────────────────────────────── */
[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
[data-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
}
[data-reveal-delay="1"] { transition-delay: 0.08s; }
[data-reveal-delay="2"] { transition-delay: 0.16s; }
[data-reveal-delay="3"] { transition-delay: 0.24s; }
[data-reveal-delay="4"] { transition-delay: 0.32s; }
[data-reveal-delay="5"] { transition-delay: 0.4s; }

/* ── KEYFRAMES ───────────────────────────────────────────────────────────────── */
@keyframes fadeDown  { from { opacity:0; transform:translateY(-12px); } to { opacity:1; transform:translateY(0); } }
@keyframes fadeUp    { from { opacity:0; transform:translateY(16px);  } to { opacity:1; transform:translateY(0); } }
@keyframes fadeIn    { from { opacity:0; } to { opacity:1; } }
@keyframes slideInLeft { from { opacity:0; transform:translateX(-24px); } to { opacity:1; transform:translateX(0); } }

/* ── BUTTONS ─────────────────────────────────────────────────────────────────── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--ink);
  color: #fff;
  font-size: 0.9rem;
  font-weight: 600;
  padding: 13px 28px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  white-space: nowrap;
}
.btn-primary:hover {
  background: var(--ink-3);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0,0,0,.1);
}
.btn-primary:active { transform: translateY(0); box-shadow: none; }

.btn-text {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--body);
  transition: color 0.2s, gap 0.2s;
}
.btn-text:hover { color: var(--ink); gap: 10px; }

/* ── HEADER ──────────────────────────────────────────────────────────────────── */
#site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(255,255,255,0.88);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: box-shadow 0.3s;
  animation: fadeDown 0.4s var(--ease-out) both;
}
#site-header.scrolled {
  box-shadow: 0 1px 8px rgba(0,0,0,.04);
}
.nav-wrap {
  display: flex;
  align-items: center;
  gap: 4px;
  height: 64px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 0;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--ink);
  letter-spacing: -0.04em;
  margin-right: auto;
  transition: opacity 0.2s;
}
.brand:hover { opacity: 0.7; }
.brand .brand-dot {
  width: 6px; height: 6px;
  background: var(--accent);
  border-radius: 50%;
  margin-right: 10px;
  flex-shrink: 0;
}
.brand span { font-weight: 500; color: var(--body); margin-left: 4px; }
.brand--light { color: #fff; }
.brand--light span { color: rgba(255,255,255,.5); }
.brand--light .brand-dot { background: rgba(255,255,255,.4); }

#site-header nav {
  display: flex;
  align-items: center;
  gap: 1px;
}
#site-header nav > a {
  padding: 7px 14px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--body);
  border-radius: 6px;
  transition: color 0.15s, background 0.15s;
}
#site-header nav > a:hover { color: var(--ink); background: var(--bg-alt); }
#site-header nav > a[aria-current="page"] { color: var(--ink); font-weight: 600; }

.nav-cta {
  margin-left: 14px;
  background: var(--ink);
  color: #fff;
  font-size: 0.84rem;
  font-weight: 600;
  padding: 9px 20px;
  border-radius: 8px;
  transition: background 0.2s, transform 0.15s;
  white-space: nowrap;
}
.nav-cta:hover {
  background: var(--ink-3);
  transform: translateY(-1px);
}

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  margin-left: auto;
}
.burger span {
  display: block;
  width: 20px; height: 1.5px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.3s var(--ease), opacity 0.2s;
}

/* ── DROPDOWN ────────────────────────────────────────────────────────────────── */
.dropdown { position: relative; }
.dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 7px 14px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--body);
  background: none;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: color 0.15s, background 0.15s;
}
.dropdown-toggle:hover,
.dropdown.open .dropdown-toggle { color: var(--ink); background: var(--bg-alt); }
.dropdown-toggle svg { transition: transform 0.2s; }
.dropdown.open .dropdown-toggle svg { transform: rotate(180deg); }

.dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 6px);
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  box-shadow: 0 16px 48px rgba(0,0,0,.08), 0 2px 8px rgba(0,0,0,.04);
  padding: 20px 22px;
  min-width: 560px;
  grid-template-columns: 1fr auto 1fr;
  gap: 6px;
  z-index: 300;
  animation: fadeDown 0.15s var(--ease-out) both;
}
.dropdown.open .dropdown-menu { display: grid; }

.dropdown-group-label {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
  padding: 4px 10px 10px;
}
.dropdown-col { display: flex; flex-direction: column; gap: 1px; }
.dropdown-col a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 10px;
  transition: background 0.15s;
}
.dropdown-col a:hover { background: var(--bg-alt); }
.dropdown-col a[aria-current="page"] { background: var(--accent-light); }
.dropdown-col a span:last-child { display: flex; flex-direction: column; gap: 1px; }
.dropdown-col a strong { font-size: 0.84rem; font-weight: 600; color: var(--ink); line-height: 1.3; }
.dropdown-col a small { font-size: 0.72rem; color: var(--muted); }
.dropdown-divider { width: 1px; background: var(--border); margin: 4px 8px; }

.dm-icon {
  width: 36px; height: 36px;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 15px;
  flex-shrink: 0;
  transition: transform 0.2s;
}
.dropdown-col a:hover .dm-icon { transform: scale(1.08); }
.dm-icon--solar  { background: #fef9c3; }
.dm-icon--wp     { background: #fce7f3; }
.dm-icon--strom  { background: #e0f2fe; }
.dm-icon--zahn   { background: #f0fdf4; }
.dm-icon--bu     { background: #eff6ff; }
.dm-icon--kredit { background: #fef3c7; }

/* ── HERO ────────────────────────────────────────────────────────────────────── */
.hero {
  background: var(--bg);
  padding: 72px 0 80px;
  border-bottom: 1px solid var(--border);
}
.hero-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.73rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 20px;
  animation: fadeIn 0.6s 0.1s both;
}
.eyebrow::before {
  content: '';
  width: 18px; height: 1.5px;
  background: var(--accent);
  display: inline-block;
}
.hero h1 {
  color: var(--ink);
  margin-bottom: 20px;
  animation: slideInLeft 0.6s 0.15s var(--ease-out) both;
}
.hero h1 em {
  font-style: normal;
  color: var(--accent);
}
.hero-desc {
  color: var(--body);
  font-size: 1.05rem;
  line-height: 1.75;
  margin-bottom: 32px;
  max-width: 460px;
  animation: fadeUp 0.6s 0.25s var(--ease-out) both;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 36px;
  animation: fadeUp 0.6s 0.3s var(--ease-out) both;
}
.trust-row {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  animation: fadeUp 0.6s 0.4s var(--ease-out) both;
}
.trust-row li {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--body);
}

/* Hero right */
.hero-right {
  display: flex;
  flex-direction: column;
  gap: 12px;
  animation: fadeUp 0.6s 0.2s var(--ease-out) both;
}
.stat-block {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 14px;
  display: flex;
  align-items: center;
  padding: 24px 28px;
  transition: border-color 0.2s;
}
.stat-block:hover { border-color: var(--faint); }
.stat-item { flex: 1; text-align: center; }
.stat-item strong {
  display: block;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.03em;
  line-height: 1.1;
}
.stat-item span { font-size: 0.72rem; color: var(--muted); margin-top: 3px; display: block; }
.stat-divider { width: 1px; height: 36px; background: var(--border); }

.industry-list {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
}
.industry-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 20px;
  border-bottom: 1px solid var(--border);
  transition: background 0.15s;
  cursor: default;
}
.industry-item:last-child { border-bottom: none; }
.industry-item:hover { background: #fff; }
.industry-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--green);
  flex-shrink: 0;
}
.industry-item div { flex: 1; }
.industry-item strong { display: block; font-size: 0.85rem; font-weight: 600; color: var(--ink); }
.industry-item span { font-size: 0.73rem; color: var(--muted); }
.industry-badge {
  font-size: 0.67rem;
  font-weight: 600;
  color: var(--green);
  background: var(--green-bg);
  padding: 3px 10px;
  border-radius: 100px;
  white-space: nowrap;
}

/* ── LOGO BAR ─────────────────────────────────────────────────────────────────── */
.logo-bar {
  border-bottom: 1px solid var(--border);
  background: var(--bg);
  padding: 20px 0;
}
.logo-bar-wrap {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}
.logo-bar p {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--faint);
  white-space: nowrap;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.logo-bar ul { display: flex; align-items: center; gap: 36px; flex-wrap: wrap; }
.logo-bar li {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--faint);
  letter-spacing: -0.01em;
  transition: color 0.2s;
  cursor: default;
}
.logo-bar li:hover { color: var(--ink); }

/* ── SECTION HEADER ───────────────────────────────────────────────────────────── */
.section-header {
  max-width: 640px;
  margin: 0 auto 56px;
  text-align: center;
}
.section-header h2 { margin-bottom: 12px; }
.section-header p { color: var(--body); font-size: 1rem; line-height: 1.75; }

/* ── LEISTUNGEN ───────────────────────────────────────────────────────────────── */
.leistungen-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.leistung-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 32px 28px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
  cursor: default;
}
.leistung-card:hover {
  border-color: var(--faint);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,.04);
}
.leistung-card--dark {
  background: var(--ink);
  border-color: var(--ink);
  color: #fff;
}
.leistung-card--dark:hover {
  box-shadow: 0 8px 24px rgba(0,0,0,.15);
}
.leistung-card--dark p { color: #94a3b8; }
.lk-label {
  position: absolute;
  top: 18px; right: 18px;
  background: var(--accent);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 3px 10px;
  border-radius: 100px;
}
.lk-top { display: flex; flex-direction: column; gap: 8px; }
.lk-num {
  font-size: 0.67rem;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.leistung-card--dark .lk-num { color: #475569; }
.leistung-card h3 { font-size: 1.1rem; color: var(--ink); }
.leistung-card--dark h3 { color: #fff; }
.leistung-card p { font-size: 0.88rem; color: var(--body); line-height: 1.7; flex: 1; }
.lk-list { display: flex; flex-direction: column; gap: 7px; }
.lk-list li {
  font-size: 0.83rem;
  color: var(--body);
  padding-left: 14px;
  position: relative;
  line-height: 1.5;
}
.leistung-card--dark .lk-list li { color: #64748b; }
.lk-list li::before { content: '\2013'; position: absolute; left: 0; color: var(--faint); }
.leistung-card--dark .lk-list li::before { color: #334155; }
.lk-link {
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--ink);
  margin-top: 4px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s, color 0.15s;
}
.lk-link:hover { color: var(--accent); gap: 10px; }
.leistung-card--dark .lk-link { color: #60a5fa; }

/* ── LEAD TYPES GRID ──────────────────────────────────────────────────────────── */
.lead-types {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
}
.lead-type {
  padding: 28px 24px;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: #fff;
  transition: background 0.15s;
  position: relative;
}
.lead-type::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--accent);
  transition: width 0.3s var(--ease);
}
.lead-type:hover { background: var(--bg-alt); }
.lead-type:hover::after { width: 100%; }
.lead-type:nth-child(3n) { border-right: none; }
.lead-type:nth-last-child(-n+3):nth-child(3n+1),
.lead-type:nth-last-child(-n+3):nth-child(3n+1) ~ .lead-type { border-bottom: none; }
.lead-type h4 { font-size: 0.88rem; font-weight: 700; color: var(--ink); margin-bottom: 6px; }
.lead-type p { font-size: 0.8rem; color: var(--body); line-height: 1.65; }
.lead-type[style*="text-decoration"] { cursor: pointer; }

/* ── PROZESS ──────────────────────────────────────────────────────────────────── */
.prozess-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}
.prozess-list::before {
  content: '';
  position: absolute;
  top: 43px;
  left: calc(25% / 2);
  width: calc(100% - 25%);
  height: 1px;
  background: var(--border);
  z-index: 0;
}
.prozess-step {
  padding: 28px 24px;
  position: relative;
  z-index: 1;
  transition: background 0.15s;
  border-radius: 8px;
}
.prozess-step:hover { background: var(--bg-alt); }
.ps-num {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.7rem;
  font-weight: 800;
  color: #fff;
  background: var(--ink);
  width: 30px; height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  transition: background 0.2s, transform 0.15s;
}
.prozess-step:hover .ps-num { background: var(--accent); transform: scale(1.08); }
.prozess-step h3 { font-size: 0.92rem; font-weight: 700; color: var(--ink); margin-bottom: 8px; }
.prozess-step p { font-size: 0.82rem; color: var(--body); line-height: 1.65; }

/* ── USP COMPARISON ───────────────────────────────────────────────────────────── */
.usp-section { background: var(--ink); }
.usp-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.usp-left h2 { color: #fff; margin-bottom: 14px; }
.usp-left p { color: #94a3b8; font-size: 0.95rem; line-height: 1.8; margin-bottom: 28px; }
.usp-left .btn-primary { background: #fff; color: var(--ink); }
.usp-left .btn-primary:hover { background: var(--bg-alt); }
.usp-compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.1);
}
.usp-col { padding: 28px 24px; }
.usp-col--bad { background: rgba(255,255,255,.04); }
.usp-col--good {
  background: rgba(255,255,255,.08);
  border-left: 2px solid var(--accent);
}
.usp-col h4 {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}
.usp-col--bad h4 { color: #64748b; }
.usp-col--good h4 { color: #60a5fa; }
.usp-col ul { display: flex; flex-direction: column; gap: 10px; }
.usp-col li { font-size: 0.82rem; line-height: 1.5; }
.usp-col--bad li {
  color: #64748b;
  display: flex;
  align-items: flex-start;
  gap: 7px;
}
.usp-col--bad li::before { content: '\00d7'; color: #ef4444; font-weight: 600; flex-shrink: 0; opacity: 0.6; }
.usp-col--good li {
  color: #e2e8f0;
  display: flex;
  align-items: flex-start;
  gap: 7px;
}
.usp-col--good li::before { content: '\2713'; color: #22c55e; font-weight: 700; flex-shrink: 0; }

/* ── STATS ────────────────────────────────────────────────────────────────────── */
.stats-section {
  background: var(--bg-alt);
  padding: 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.stats-wrap {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  text-align: center;
}
.stat-big {
  padding: 48px 24px;
  border-right: 1px solid var(--border);
  transition: background 0.15s;
}
.stat-big:last-child { border-right: none; }
.stat-big:hover { background: #fff; }
.stat-big strong {
  display: block;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 6px;
}
.stat-big span { font-size: 0.78rem; color: var(--muted); }

/* ── TESTIMONIALS ─────────────────────────────────────────────────────────────── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.testimonial {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
  position: relative;
}
.testimonial:hover {
  border-color: var(--faint);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,.04);
}
.testimonial::before {
  content: '\201C';
  position: absolute;
  top: 16px; right: 22px;
  font-size: 4.5rem;
  line-height: 1;
  color: var(--border);
  font-family: Georgia, serif;
  pointer-events: none;
}
.testimonial p {
  font-size: 0.88rem;
  line-height: 1.75;
  color: var(--ink-2);
  flex: 1;
  position: relative;
  z-index: 1;
}
.testimonial footer {
  display: flex;
  flex-direction: column;
  gap: 2px;
  border-top: 1px solid var(--border);
  padding-top: 16px;
}
.t-name { font-size: 0.87rem; font-weight: 700; color: var(--ink); font-style: normal; }
.t-role { font-size: 0.76rem; color: var(--muted); }

/* ── FAQ ──────────────────────────────────────────────────────────────────────── */
.faq-wrap .section-header { text-align: left; margin-left: 0; }
.faq-list { border-top: 1px solid var(--border); }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item dt {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--ink);
  padding: 20px 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  user-select: none;
  transition: color 0.15s;
}
.faq-item dt:hover { color: var(--accent); }
.faq-item dt::after {
  content: '+';
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--muted);
  flex-shrink: 0;
  transition: transform 0.25s var(--ease), color 0.15s;
  line-height: 1;
}
.faq-item.open dt::after { transform: rotate(45deg); color: var(--accent); }
.faq-item dd {
  font-size: 0.88rem;
  color: var(--body);
  line-height: 1.8;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease-out), padding 0.25s;
}
.faq-item.open dd { max-height: 300px; padding-bottom: 20px; }

/* ── KONTAKT ──────────────────────────────────────────────────────────────────── */
.kontakt-section { background: var(--bg-alt); }
.kontakt-wrap {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  align-items: start;
}
.kontakt-left h2 { color: var(--ink); margin-bottom: 12px; }
.kontakt-left > p { font-size: 0.95rem; color: var(--body); line-height: 1.75; margin-bottom: 32px; }
.kontakt-details { display: flex; flex-direction: column; gap: 10px; }
.kd-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 14px 16px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 10px;
  transition: border-color 0.15s, transform 0.15s;
}
.kd-item:hover { border-color: var(--faint); transform: translateX(2px); }
.kd-item strong { font-size: 0.67rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; color: var(--muted); }
.kd-item a, .kd-item span { font-size: 0.9rem; font-weight: 600; color: var(--ink); }
.kd-item a:hover { color: var(--accent); }

/* ── FORM ─────────────────────────────────────────────────────────────────────── */
.contact-form {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: 0 2px 12px rgba(0,0,0,.03);
}
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.field { display: flex; flex-direction: column; gap: 5px; }
.field label { font-size: 0.78rem; font-weight: 600; color: var(--ink-3); }
.field input,
.field select,
.field textarea {
  padding: 11px 14px;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 0.88rem;
  color: var(--ink);
  background: #fff;
  outline: none;
  transition: border-color 0.15s, box-shadow 0.15s;
  appearance: none;
}
.field input::placeholder,
.field textarea::placeholder { color: var(--faint); }
.field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath fill='%2394a3b8' d='M0 0l5 6 5-6z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
  cursor: pointer;
  color: var(--body);
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(37,99,235,.08);
}
.field textarea { resize: vertical; min-height: 96px; }
.field-check { flex-direction: row; align-items: flex-start; }
.check-label {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-size: 0.77rem;
  color: var(--body);
  cursor: pointer;
  line-height: 1.5;
}
.check-label input { width: 15px; height: 15px; margin-top: 1px; flex-shrink: 0; accent-color: var(--accent); cursor: pointer; }
.check-label a { color: var(--accent); text-decoration: underline; }
.btn-submit {
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 13px;
  font-size: 0.9rem;
  background: var(--ink);
  color: #fff;
  font-weight: 600;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
}
.btn-submit:hover {
  background: var(--ink-3);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0,0,0,.1);
}
.form-ok {
  display: none;
  background: var(--green-bg);
  border: 1px solid #bbf7d0;
  border-radius: 8px;
  padding: 12px 16px;
  font-size: 0.84rem;
  color: #166534;
  font-weight: 500;
  animation: fadeUp 0.3s var(--ease-out) both;
}
.form-ok.show { display: block; }

/* ── FOOTER ───────────────────────────────────────────────────────────────────── */
.site-footer { background: var(--ink); color: rgba(255,255,255,.4); }
.footer-wrap {
  display: flex;
  justify-content: space-between;
  gap: 48px;
  padding: 64px 24px;
  flex-wrap: wrap;
}
.footer-brand { max-width: 220px; }
.footer-brand .brand { margin-bottom: 12px; }
.footer-brand p { font-size: 0.82rem; line-height: 1.6; }
.footer-nav { display: flex; gap: 48px; flex-wrap: wrap; }
.fn-col { display: flex; flex-direction: column; gap: 10px; min-width: 130px; }
.fn-col h3 { font-size: 0.67rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; color: rgba(255,255,255,.3); margin-bottom: 4px; }
.fn-col a { font-size: 0.84rem; color: rgba(255,255,255,.35); transition: color 0.15s; display: inline-block; }
.fn-col a:hover { color: rgba(255,255,255,.85); }
.footer-bar { border-top: 1px solid rgba(255,255,255,.07); padding: 18px 24px; }
.footer-bar-inner { display: flex; justify-content: space-between; align-items: center; gap: 12px; flex-wrap: wrap; }
.footer-bar p { font-size: 0.73rem; color: rgba(255,255,255,.18); }

/* ── MOBILE NAV ───────────────────────────────────────────────────────────────── */
@media (max-width: 860px) {
  #site-header nav, .nav-cta { display: none; }
  .burger { display: flex; }
  #site-header nav.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 64px; left: 0; right: 0;
    background: #fff;
    border-bottom: 1px solid var(--border);
    padding: 12px 20px 20px;
    gap: 2px;
    z-index: 199;
    box-shadow: 0 12px 32px rgba(0,0,0,.06);
    animation: fadeDown 0.2s var(--ease-out) both;
  }
  #site-header nav.open > a { padding: 12px 14px; font-size: 0.95rem; border-radius: 6px; }
  .burger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
  .burger.open span:nth-child(2) { opacity: 0; }
  .burger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }
  .dropdown-menu { display: none !important; }
  .dropdown-toggle { padding: 12px 14px; font-size: 0.95rem; width: 100%; justify-content: space-between; border-radius: 6px; }
}

/* ── RESPONSIVE ───────────────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero-wrap { grid-template-columns: 1fr; gap: 40px; }
  .hero-right { display: none; }
  .leistungen-grid { grid-template-columns: 1fr; gap: 12px; }
  .prozess-list { grid-template-columns: 1fr 1fr; }
  .prozess-list::before { display: none; }
  .prozess-step { border: 1px solid var(--border); border-radius: 8px; }
  .usp-wrap { grid-template-columns: 1fr; gap: 40px; }
  .stats-wrap { grid-template-columns: repeat(2, 1fr); }
  .stat-big:nth-child(2) { border-right: none; }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .kontakt-wrap { grid-template-columns: 1fr; }
  .lead-hero-wrap { grid-template-columns: 1fr; }
  .lead-aside { display: none; }
  .content-split { grid-template-columns: 1fr; gap: 40px; }
  .lead-types { grid-template-columns: repeat(2, 1fr); }
  .lead-type:nth-child(3n) { border-right: 1px solid var(--border); }
  .lead-type:nth-child(2n) { border-right: none; }
  .lead-type:nth-last-child(-n+3):nth-child(3n+1),
  .lead-type:nth-last-child(-n+3):nth-child(3n+1) ~ .lead-type { border-bottom: 1px solid var(--border); }
  .lead-type:nth-last-child(-n+2):nth-child(2n+1),
  .lead-type:nth-last-child(-n+2):nth-child(2n+1) ~ .lead-type { border-bottom: none; }
}
@media (max-width: 640px) {
  .section { padding: 64px 0; }
  .hero { padding: 48px 0 56px; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .lead-types { grid-template-columns: 1fr; }
  .lead-type { border-right: none !important; }
  .field-row { grid-template-columns: 1fr; }
  .usp-compare { grid-template-columns: 1fr; }
  .stats-wrap { grid-template-columns: repeat(2, 1fr); }
  .footer-nav { flex-direction: column; gap: 28px; }
  .footer-bar-inner { flex-direction: column; align-items: flex-start; }
  .logo-bar-wrap { flex-direction: column; gap: 12px; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .lead-hero-actions { flex-direction: column; align-items: flex-start; }
  .contact-form { padding: 24px 18px; }
  .prozess-list { grid-template-columns: 1fr; }
}

/* ── LEGAL PAGES ─────────────────────────────────────────────────────────────── */
.legal-page { background: #fff; }
.legal-wrap { max-width: 820px; }

.legal-hero {
  padding: 56px 0 48px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 48px;
}
.legal-hero h1 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--ink);
  margin-bottom: 16px;
}
.legal-intro {
  font-size: 1rem;
  color: var(--body);
  line-height: 1.8;
  max-width: 640px;
}

.legal-toc {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 24px 28px;
  margin-bottom: 48px;
}
.legal-toc h3 {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  margin-bottom: 14px;
}
.legal-toc ol {
  list-style: decimal;
  padding-left: 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px 32px;
}
.legal-toc ol li { font-size: 0.88rem; }
.legal-toc ol a { color: var(--ink); font-weight: 500; transition: color 0.15s; }
.legal-toc ol a:hover { color: var(--accent); }

.legal-body { display: flex; flex-direction: column; gap: 0; }

.legal-block {
  padding: 36px 0;
  border-bottom: 1px solid var(--border);
}
.legal-block:last-child { border-bottom: none; }
.legal-block h2 {
  font-size: 1.2rem;
  color: var(--ink);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--border);
}
.legal-block h3 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--ink);
  margin: 20px 0 8px;
}
.legal-block p {
  font-size: 0.9rem;
  color: var(--ink-3);
  line-height: 1.8;
  margin-bottom: 12px;
}
.legal-block p:last-child { margin-bottom: 0; }
.legal-block a { color: var(--accent); text-decoration: underline; }
.legal-block strong { color: var(--ink); }

.legal-list {
  margin: 12px 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-left: 4px;
}
.legal-list li {
  font-size: 0.88rem;
  color: var(--ink-3);
  line-height: 1.7;
  padding-left: 18px;
  position: relative;
}
.legal-list li::before {
  content: '\2013';
  position: absolute;
  left: 0;
  color: var(--muted);
}

.legal-info-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 16px;
}
.legal-info-item {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 14px 16px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.legal-info-item strong {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
}
.legal-info-item span {
  font-size: 0.9rem;
  color: var(--ink);
  font-weight: 500;
  line-height: 1.5;
}
.legal-info-item a { color: var(--accent); text-decoration: underline; }

.legal-table-wrap { overflow-x: auto; margin: 16px 0; }
.legal-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.85rem;
}
.legal-table th {
  background: var(--ink);
  color: #fff;
  font-weight: 600;
  padding: 10px 14px;
  text-align: left;
  font-size: 0.8rem;
}
.legal-table th:first-child { border-radius: 6px 0 0 0; }
.legal-table th:last-child  { border-radius: 0 6px 0 0; }
.legal-table td {
  padding: 10px 14px;
  border-bottom: 1px solid var(--border);
  color: var(--ink-3);
  vertical-align: top;
}
.legal-table tr:last-child td { border-bottom: none; }
.legal-table tr:nth-child(even) td { background: var(--bg-alt); }

@media (max-width: 640px) {
  .legal-toc ol { grid-template-columns: 1fr; }
  .legal-info-grid { grid-template-columns: 1fr; }
}

/* ── COOKIE BANNER ───────────────────────────────────────────────────────────── */
#cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 9999;
  background: var(--ink);
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 20px 24px;
  transform: translateY(100%);
  transition: transform 0.3s var(--ease-out);
  box-shadow: 0 -4px 24px rgba(0,0,0,.15);
}
#cookie-banner.cb-visible  { transform: translateY(0); }
#cookie-banner.cb-hiding   { transform: translateY(110%); }

.cb-inner {
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}
.cb-icon { font-size: 2rem; flex-shrink: 0; }
.cb-left {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  flex: 1;
  min-width: 240px;
}
.cb-text strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
  font-family: 'Plus Jakarta Sans', sans-serif;
}
.cb-text p {
  font-size: 0.8rem;
  color: #94a3b8;
  line-height: 1.6;
  max-width: 560px;
}
.cb-links {
  display: flex;
  gap: 8px;
  align-items: center;
  margin-top: 8px;
}
.cb-links a {
  font-size: 0.75rem;
  color: #60a5fa;
  text-decoration: underline;
  transition: color 0.15s;
}
.cb-links a:hover { color: #fff; }
.cb-links span { color: #475569; font-size: 0.75rem; }

.cb-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
  flex-wrap: wrap;
}
.cb-btn {
  padding: 11px 22px;
  font-size: 0.84rem;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  border: none;
  transition: all 0.15s;
  white-space: nowrap;
}
.cb-btn--secondary {
  background: rgba(255,255,255,.08);
  color: #94a3b8;
  border: 1px solid rgba(255,255,255,.1);
}
.cb-btn--secondary:hover {
  background: rgba(255,255,255,.12);
  color: #fff;
}
.cb-btn--primary {
  background: #fff;
  color: var(--ink);
}
.cb-btn--primary:hover {
  background: var(--bg-alt);
}

@media (max-width: 640px) {
  .cb-inner { flex-direction: column; gap: 16px; }
  .cb-actions { width: 100%; }
  .cb-btn { flex: 1; text-align: center; }
  .cb-icon { display: none; }
}

/* ── LEAD HERO (inner pages) ─────────────────────────────────────────────────── */
.lead-hero {
  background: var(--bg);
  padding: 64px 0 72px;
  border-bottom: 1px solid var(--border);
}
.lead-hero-wrap {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 56px;
  align-items: center;
}
.lead-hero h1 { color: var(--ink); font-size: clamp(1.8rem, 4vw, 2.6rem); margin-bottom: 16px; animation: slideInLeft 0.5s 0.1s var(--ease-out) both; }
.lead-hero h1 em { font-style: normal; color: var(--accent); }
.lead-hero h1 br { display: none; }
@media (min-width: 860px) { .lead-hero h1 br { display: inline; } }
.lead-hero-desc { color: var(--body); font-size: 0.95rem; line-height: 1.8; margin-bottom: 28px; max-width: 480px; animation: fadeUp 0.5s 0.15s var(--ease-out) both; }
.lead-hero-actions { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; margin-bottom: 28px; animation: fadeUp 0.5s 0.2s var(--ease-out) both; }
.lead-hero .trust-row { animation: fadeUp 0.5s 0.25s var(--ease-out) both; }

.lead-aside {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  animation: fadeUp 0.5s 0.15s var(--ease-out) both;
  transition: border-color 0.2s;
}
.lead-aside:hover { border-color: var(--faint); }
.lead-aside-header { padding: 18px 20px; border-bottom: 1px solid var(--border); }
.lead-aside-header p { font-size: 0.67rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; color: var(--accent); margin-bottom: 4px; }
.lead-aside-header strong { font-size: 0.95rem; color: var(--ink); font-family: 'Plus Jakarta Sans', sans-serif; }
.lead-aside ul { padding: 4px 0; }
.lead-aside li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 20px;
  font-size: 0.83rem;
  color: var(--body);
  border-bottom: 1px solid var(--border);
  transition: background 0.1s;
}
.lead-aside li:last-child { border-bottom: none; }
.lead-aside li:hover { background: #fff; }
.lead-aside li::before { content: '\2192'; color: var(--accent); flex-shrink: 0; font-size: 0.75rem; }

/* ── CONTENT SPLIT ────────────────────────────────────────────────────────────── */
.content-split { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.content-split h2 { color: var(--ink); margin-bottom: 16px; }
.content-split p { font-size: 0.92rem; color: var(--body); line-height: 1.8; margin-bottom: 14px; }
.content-split p:last-child { margin-bottom: 0; }

.check-list { display: flex; flex-direction: column; gap: 10px; }
.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.87rem;
  color: var(--ink-2);
  line-height: 1.5;
  padding: 12px 14px;
  background: var(--bg-alt);
  border-radius: 8px;
  border: 1px solid var(--border);
  transition: border-color 0.15s, transform 0.15s;
}
.check-list li:hover { border-color: var(--faint); transform: translateX(3px); }
.check-list li::before { content: '\2713'; color: var(--green); font-weight: 700; flex-shrink: 0; }
.check-list li strong { font-weight: 600; }

/* ── NAV ACTIVE ────────────────────────────────────────────────────────────── */
.nav-active { color: var(--ink) !important; }
