/* ============================================================
   BLZE – style.css  (v=5)
   Growth • Sichtbarkeit • Leadgenerierung
   ============================================================ */

:root {
  /* Hintergründe */
  --bg:          #0B1020;   /* Canvas / Seiten-Hintergrund */
  --bg-2:        #111827;   /* Sektions-Hintergrund dunkel */
  --bg-card:     #161E33;   /* Karten dunkel */
  --bg-light:    #F4F6FB;   /* Heller Abschnitt */
  --bg-light-2:  #FFFFFF;   /* Reinweiß */

  /* Akzente */
  --accent:      #FF6B35;   /* Orange – CTAs, Highlights, Zahlen */
  --accent-2:    #FFB703;   /* Gelb – Sekundär-Akzent */
  --accent-dim:  rgba(255,107,53,0.14);
  --accent-glow: rgba(255,107,53,0.45);

  /* Text */
  --text:        #EAF0FB;   /* Haupttext auf dunkel */
  --text-muted:  rgba(234,240,251,0.62);
  --text-dark:   #0B1020;   /* Text auf hell */
  --text-dark-muted: rgba(11,16,32,0.62);

  /* Linien */
  --border:      rgba(255,255,255,0.08);
  --border-dark: rgba(11,16,32,0.10);

  /* Layout */
  --max-w: 1200px;
  --pad-x: clamp(1.1rem, 5vw, 4rem);
  --nav-h: 74px;
  --r:    0.7rem;
  --r-lg: 1.1rem;

  /* Schrift */
  --f-display:  'Archivo Black', sans-serif;       /* Headlines, große Zahlen */
  --f-headline: 'Barlow Condensed', sans-serif;     /* Labels, Nav, Tags */
  --f-body:     'Barlow', sans-serif;               /* Fließtext */
}

/* ---------- Reset ---------- */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--f-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ---------- Canvas-Hintergrund ---------- */
#bg-canvas {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 70% 55% at 12% 8%, rgba(255,107,53,0.10) 0%, transparent 55%),
    radial-gradient(ellipse 65% 70% at 90% 92%, rgba(255,183,3,0.07) 0%, transparent 55%),
    var(--bg);
}

/* ---------- Layout-Helfer ---------- */
.wrap { max-width: var(--max-w); margin: 0 auto; padding-inline: var(--pad-x); }
.section { position: relative; z-index: 1; padding: clamp(3.5rem, 8vw, 6.5rem) 0; }
.section-light {
  position: relative;
  z-index: 1;
  background: var(--bg-light);
  color: var(--text-dark);
  padding: clamp(3.5rem, 8vw, 6.5rem) 0;
}
.section-dark2 {
  position: relative;
  z-index: 1;
  background: var(--bg-2);
  padding: clamp(3.5rem, 8vw, 6.5rem) 0;
}

/* ---------- Typo-Skala ---------- */
.eyebrow {
  font-family: var(--f-headline);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  display: inline-block;
  margin-bottom: 0.9rem;
}
.section-light .eyebrow { color: #C2410C; } /* dunkleres Orange für Kontrast auf hell */

h1, h2, h3 { font-family: var(--f-display); font-weight: 400; line-height: 1.02; letter-spacing: -0.01em; }
.h-xl { font-size: clamp(2.1rem, 4.6vw, 3.5rem); text-transform: uppercase; }
.h-lg { font-size: clamp(2rem, 4.5vw, 3.4rem); text-transform: uppercase; }
.h-md { font-size: clamp(1.4rem, 2.5vw, 2rem); text-transform: uppercase; }

.lead { font-size: clamp(1.05rem, 1.6vw, 1.3rem); color: var(--text-muted); max-width: 56ch; }
.section-light .lead { color: var(--text-dark-muted); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--f-headline);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.95rem 1.7rem;
  border-radius: var(--r);
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease;
}
.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 8px 24px -8px var(--accent-glow);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 14px 30px -8px var(--accent-glow); }
.btn-ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--border);
}
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); }
.section-light .btn-ghost { color: var(--text-dark); border-color: var(--border-dark); }
.section-light .btn-ghost:hover { border-color: var(--accent); color: #C2410C; }

/* ============================================================
   NAVIGATION
   ============================================================ */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: background .3s ease, box-shadow .3s ease, backdrop-filter .3s ease;
}
.header.scrolled {
  background: rgba(11,16,32,0.88);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--border);
}
.nav { width: 100%; display: flex; align-items: center; justify-content: space-between; }
.brand {
  font-family: var(--f-display);
  font-size: 1.5rem;
  letter-spacing: 0.04em;
  color: var(--text);
}
.brand b { color: var(--accent); }
.nav-links { display: flex; align-items: center; gap: 1.8rem; }
.nav-links a {
  font-family: var(--f-headline);
  font-weight: 600;
  font-size: 1.02rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color .15s ease;
}
.nav-links a:hover { color: var(--text); }
.nav-cta { color: var(--text) !important; }

.nav-toggle { display: none; background: none; border: 0; cursor: pointer; padding: .5rem; }
.nav-toggle span { display: block; width: 26px; height: 2px; background: var(--text); margin: 5px 0; transition: .25s; }

@media (max-width: 880px) {
  .nav-toggle { display: block; }
  .nav-links {
    position: fixed;
    inset: var(--nav-h) 0 auto 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    background: rgba(11,16,32,0.97);
    backdrop-filter: blur(12px);
    padding: 1rem var(--pad-x) 2rem;
    border-bottom: 1px solid var(--border);
    transform: translateY(-130%);
    transition: transform .3s ease;
  }
  .nav-links.open { transform: translateY(0); }
  .nav-links a { width: 100%; padding: .9rem 0; border-bottom: 1px solid var(--border); font-size: 1.2rem; }
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: calc(var(--nav-h) + 2rem);
  padding-bottom: 3rem;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3rem;
  align-items: center;
  width: 100%;
}
.hero-kick {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  font-family: var(--f-headline);
  font-weight: 700;
  font-size: .85rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--accent-2);
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.03);
  padding: .45rem .9rem;
  border-radius: 100px;
  margin-bottom: 1.5rem;
}
.hero-kick .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 0 0 var(--accent-glow); animation: pulse 2s infinite; }
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 var(--accent-glow); }
  70% { box-shadow: 0 0 0 10px rgba(255,107,53,0); }
  100% { box-shadow: 0 0 0 0 rgba(255,107,53,0); }
}
.hero h1 { margin-bottom: 1.4rem; }
.hero h1 .hl { color: var(--accent); }
.hero .lead { margin-bottom: 2rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; align-items: center; }
.hero-trust { margin-top: 2.2rem; display: flex; flex-wrap: wrap; gap: 1.5rem; align-items: center; }
.hero-trust .stars { color: var(--accent-2); letter-spacing: 2px; }
.hero-trust small { font-family: var(--f-headline); text-transform: uppercase; letter-spacing: .08em; color: var(--text-muted); font-size: .8rem; }

/* Growth-Dashboard (Signature) */
.dash {
  background: linear-gradient(160deg, var(--bg-card), #0d1326);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 1.4rem;
  box-shadow: 0 30px 60px -25px rgba(0,0,0,0.6);
  position: relative;
  overflow: hidden;
}
.dash::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(circle at 80% 0%, var(--accent-dim), transparent 60%);
  pointer-events: none;
}
.dash-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1.1rem; }
.dash-head .label { font-family: var(--f-headline); text-transform: uppercase; letter-spacing: .1em; font-size: .78rem; color: var(--text-muted); }
.dash-head .live { font-family: var(--f-headline); font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; color: var(--accent); display: inline-flex; align-items: center; gap: .4rem; }
.dash-head .live::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--accent); animation: pulse 2s infinite; }
.dash-big { font-family: var(--f-display); font-size: clamp(2.8rem, 6vw, 3.6rem); color: var(--accent); line-height: 1; }
.dash-sub { font-family: var(--f-headline); text-transform: uppercase; letter-spacing: .1em; color: var(--text-muted); font-size: .8rem; margin-bottom: 1.2rem; }
.dash-chart { display: flex; align-items: flex-end; gap: .5rem; height: 110px; }
.dash-chart .bar {
  flex: 1;
  background: linear-gradient(to top, var(--accent), var(--accent-2));
  border-radius: 5px 5px 0 0;
  transform-origin: bottom;
  animation: grow 1.1s cubic-bezier(.2,.8,.2,1) both;
}
@keyframes grow { from { transform: scaleY(0); } to { transform: scaleY(1); } }
.dash-foot { display: flex; justify-content: space-between; margin-top: 1rem; font-family: var(--f-headline); font-size: .72rem; letter-spacing: .08em; text-transform: uppercase; color: var(--text-muted); }

@media (max-width: 880px) {
  .hero-grid { grid-template-columns: 1fr; gap: 2.4rem; }
  .hero { min-height: auto; }
}

/* ============================================================
   VORTEILE (Warum BLZE)
   ============================================================ */
.cards-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.2rem; }
.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 1.8rem 1.5rem;
  transition: transform .18s ease, border-color .2s ease;
}
.card:hover { transform: translateY(-4px); border-color: var(--accent); }
.card .num {
  font-family: var(--f-display);
  font-size: 1rem;
  color: var(--accent);
  letter-spacing: .05em;
  display: block;
  margin-bottom: .9rem;
}
.card h3 { font-size: 1.35rem; margin-bottom: .5rem; }
.card p { color: var(--text-muted); font-size: .98rem; }
@media (max-width: 880px) { .cards-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .cards-4 { grid-template-columns: 1fr; } }

/* ============================================================
   ERGEBNISSE (Zahlen-Band)
   ============================================================ */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  text-align: center;
}
.stat .big {
  font-family: var(--f-display);
  font-size: clamp(2.6rem, 6vw, 4rem);
  color: var(--accent);
  line-height: 1;
}
.stat .lbl {
  font-family: var(--f-headline);
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .85rem;
  color: var(--text-muted);
  margin-top: .5rem;
}
@media (max-width: 700px) { .stats { grid-template-columns: repeat(2, 1fr); gap: 2.2rem; } }

/* ============================================================
   LEISTUNGEN
   ============================================================ */
.cards-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; }
.svc {
  background: var(--bg-light-2);
  border: 1px solid var(--border-dark);
  border-radius: var(--r-lg);
  padding: 1.9rem 1.6rem;
  transition: transform .18s ease, box-shadow .2s ease;
  display: block;
}
.svc:hover { transform: translateY(-4px); box-shadow: 0 18px 40px -20px rgba(11,16,32,0.35); }
.svc .tag {
  font-family: var(--f-headline);
  font-weight: 700;
  font-size: .78rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #C2410C;
}
.svc h3 { font-size: 1.5rem; margin: .5rem 0 .6rem; color: var(--text-dark); }
.svc p { color: var(--text-dark-muted); font-size: .98rem; margin-bottom: 1rem; }
.svc .more { font-family: var(--f-headline); font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: #C2410C; font-size: .9rem; }
@media (max-width: 880px) { .cards-3 { grid-template-columns: 1fr; } }

/* ============================================================
   PROZESS
   ============================================================ */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.2rem; counter-reset: step; }
.step {
  position: relative;
  padding: 1.8rem 1.4rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
}
.step .n {
  font-family: var(--f-display);
  font-size: 2.6rem;
  color: var(--accent);
  line-height: 1;
  opacity: .9;
}
.step h3 { font-size: 1.25rem; margin: .6rem 0 .4rem; }
.step p { color: var(--text-muted); font-size: .95rem; }
@media (max-width: 880px) { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .steps { grid-template-columns: 1fr; } }

/* ============================================================
   ERFOLGSGESCHICHTEN
   ============================================================ */
.cases { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; }
.case {
  background: linear-gradient(160deg, var(--bg-card), #0d1326);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 1.8rem 1.6rem;
}
.case .result { font-family: var(--f-display); font-size: 2.3rem; color: var(--accent); line-height: 1; }
.case .who { font-family: var(--f-headline); text-transform: uppercase; letter-spacing: .1em; color: var(--text-muted); font-size: .82rem; margin: .4rem 0 .9rem; }
.case p { color: var(--text-muted); font-size: .96rem; }
@media (max-width: 880px) { .cases { grid-template-columns: 1fr; } }

/* ============================================================
   CTA-SEKTION
   ============================================================ */
.cta-band {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: clamp(4rem, 9vw, 7rem) 0;
  background:
    radial-gradient(ellipse 60% 100% at 50% 0%, var(--accent-dim), transparent 60%),
    var(--bg-2);
}
.cta-band h2 { margin-bottom: 1rem; }
.cta-band .lead { margin: 0 auto 2rem; }
.cta-actions { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; }

/* ============================================================
   FAQ
   ============================================================ */
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q {
  width: 100%;
  text-align: left;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 1.3rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-family: var(--f-headline);
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--text);
}
.faq-q .ic { color: var(--accent); font-size: 1.5rem; flex-shrink: 0; transition: transform .2s ease; }
.faq-item.open .faq-q .ic { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .3s ease; color: var(--text-muted); }
.faq-item.open .faq-a { max-height: 320px; }
.faq-a p { padding-bottom: 1.3rem; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  position: relative;
  z-index: 1;
  background: #070b16;
  border-top: 1px solid var(--border);
  padding: clamp(3rem, 6vw, 4rem) 0 2rem;
}
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 2rem; }
.footer .brand { font-size: 1.6rem; margin-bottom: .8rem; }
.footer p { color: var(--text-muted); font-size: .95rem; max-width: 32ch; }
.footer h4 { font-family: var(--f-headline); text-transform: uppercase; letter-spacing: .1em; font-size: .85rem; color: var(--text); margin-bottom: 1rem; }
.footer-col a { display: block; color: var(--text-muted); padding: .35rem 0; font-size: .96rem; transition: color .15s ease; }
.footer-col a:hover { color: var(--accent); }
.footer-bottom {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  align-items: center;
}
.footer-bottom small { color: var(--text-muted); font-size: .85rem; }
.footer-bottom .legal { display: flex; gap: 1.2rem; }
.footer-bottom .legal a { color: var(--text-muted); font-size: .85rem; }
.footer-bottom .legal a:hover { color: var(--accent); }
@media (max-width: 880px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .footer-grid { grid-template-columns: 1fr; } }

/* ============================================================
   WHATSAPP-FLOAT
   ============================================================ */
.wa-float {
  position: fixed;
  bottom: 1.4rem; right: 1.4rem;
  z-index: 90;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: #25D366;
  display: grid;
  place-items: center;
  box-shadow: 0 10px 26px -8px rgba(0,0,0,.5);
  transition: transform .15s ease;
}
.wa-float:hover { transform: scale(1.08); }
.wa-float svg { width: 30px; height: 30px; fill: #fff; }

/* ============================================================
   COOKIE-BANNER
   ============================================================ */
.cookie {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 120;
  background: rgba(11,16,32,0.97);
  backdrop-filter: blur(10px);
  border-top: 1px solid var(--border);
  padding: 1rem var(--pad-x);
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
  transform: translateY(110%);
  transition: transform .35s ease;
}
.cookie.show { transform: translateY(0); }
.cookie p { color: var(--text-muted); font-size: .9rem; max-width: 70ch; }
.cookie p a { color: var(--accent); text-decoration: underline; }
.cookie .btn { padding: .7rem 1.3rem; font-size: .9rem; }

/* ============================================================
   SCROLL-REVEAL
   ============================================================ */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ---------- Sektions-Kopf ---------- */
.sec-head { max-width: 60ch; margin-bottom: 2.6rem; }
.sec-head.center { margin-inline: auto; text-align: center; }

/* ---------- Reduced Motion ---------- */
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
}

/* ============================================================
   UNTERSEITEN – Hero, Layout, Prose, Sidebar
   (ergänzt in v=3)
   ============================================================ */

/* Subpage-Hero (dunkel) */
.sub-hero {
  position: relative;
  z-index: 1;
  padding: calc(var(--nav-h) + 4rem) 0 3rem;
  background:
    radial-gradient(ellipse 70% 80% at 15% 0%, rgba(255,107,53,0.12), transparent 60%),
    var(--bg-2);
  border-bottom: 1px solid var(--border);
}
.sub-hero .crumb {
  font-family: var(--f-headline);
  text-transform: uppercase;
  letter-spacing: .1em;
  font-size: .82rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}
.sub-hero .crumb a { color: var(--text-muted); }
.sub-hero .crumb a:hover { color: var(--accent); }
.sub-hero .crumb span { color: var(--accent); }
.sub-hero h1 { margin-bottom: 1.1rem; }
.sub-hero .lead { max-width: 60ch; }
.sub-hero .hero-actions { margin-top: 1.8rem; }

/* 2-Spalten-Layout */
.layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 3.5rem;
  align-items: start;
}
@media (max-width: 940px) {
  .layout { grid-template-columns: 1fr; gap: 2.5rem; }
}

/* Prose (Fließtext Unterseiten) */
.prose { max-width: 72ch; }
.prose h2 {
  font-family: var(--f-display);
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  text-transform: uppercase;
  line-height: 1.05;
  margin: 2.6rem 0 1rem;
}
.prose h2:first-child { margin-top: 0; }
.prose h3 {
  font-family: var(--f-headline);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .03em;
  font-size: 1.3rem;
  margin: 1.8rem 0 .6rem;
  color: var(--text);
}
.prose p { margin-bottom: 1.1rem; color: var(--text); }
.prose p.muted { color: var(--text-muted); }
.prose a { color: var(--accent); text-decoration: underline; text-underline-offset: 3px; }
.prose a:hover { color: var(--accent-2); }
.prose ul.list { margin: 0 0 1.4rem; padding: 0; }
.prose ul.list li {
  position: relative;
  padding-left: 1.8rem;
  margin-bottom: .7rem;
  color: var(--text);
}
.prose ul.list li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}
.prose .callout {
  border-left: 3px solid var(--accent);
  background: rgba(255,107,53,0.06);
  padding: 1.1rem 1.3rem;
  border-radius: 0 var(--r) var(--r) 0;
  margin: 1.6rem 0;
}
.prose .callout p { margin: 0; color: var(--text); }

/* Sidebar */
.sidebar { position: sticky; top: calc(var(--nav-h) + 1.5rem); display: grid; gap: 1.2rem; }
.side-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 1.5rem;
}
.side-card.accent {
  background: linear-gradient(160deg, var(--accent), #e85a28);
  border-color: transparent;
}
.side-card.accent h4, .side-card.accent p { color: #fff; }
.side-card.accent .btn { background: #fff; color: var(--accent); width: 100%; justify-content: center; margin-top: .8rem; }
.side-card.accent .btn:hover { transform: translateY(-2px); }
.side-card.accent .tel { display: block; font-family: var(--f-display); font-size: 1.5rem; color: #fff; margin-top: .4rem; }
.side-card h4 {
  font-family: var(--f-headline);
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: .9rem;
  margin-bottom: .8rem;
  color: var(--text);
}
.side-card p { font-size: .92rem; color: var(--text-muted); }
.side-links a {
  display: block;
  padding: .55rem 0;
  border-bottom: 1px solid var(--border);
  color: var(--text-muted);
  font-family: var(--f-headline);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .03em;
  font-size: .92rem;
  transition: color .15s ease, padding-left .15s ease;
}
.side-links a:last-child { border-bottom: 0; }
.side-links a:hover { color: var(--accent); padding-left: .4rem; }

/* Faktor-Grid (innerhalb Prose, z.B. Leistungsdetails) */
.facts { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; margin: 1.6rem 0; }
.fact {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 1.2rem;
}
.fact .fbig { font-family: var(--f-display); font-size: 2rem; color: var(--accent); line-height: 1; }
.fact .flbl { font-family: var(--f-headline); text-transform: uppercase; letter-spacing: .08em; font-size: .8rem; color: var(--text-muted); margin-top: .3rem; }
@media (max-width: 520px) { .facts { grid-template-columns: 1fr; } }

/* Kontakt-Boxen */
.contact-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; margin-top: 1rem; }
.contact-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 1.8rem 1.5rem;
  text-align: center;
}
.contact-card .ic { font-size: 2rem; margin-bottom: .6rem; }
.contact-card h3 { font-family: var(--f-headline); text-transform: uppercase; letter-spacing: .06em; font-size: 1.1rem; margin-bottom: .4rem; }
.contact-card a { color: var(--accent); font-size: 1.05rem; word-break: break-word; }
.contact-card a:hover { color: var(--accent-2); }
@media (max-width: 700px) { .contact-grid { grid-template-columns: 1fr; } }

/* Legal-Text (Impressum / Datenschutz) */
.legal-prose { max-width: 80ch; }
.legal-prose h2 {
  font-family: var(--f-headline);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .03em;
  font-size: 1.4rem;
  margin: 2.2rem 0 .8rem;
  color: var(--text);
}
.legal-prose h3 { font-family: var(--f-headline); font-weight: 700; font-size: 1.1rem; margin: 1.4rem 0 .5rem; color: var(--text); }
.legal-prose p, .legal-prose li { color: var(--text-muted); margin-bottom: .9rem; line-height: 1.7; }
.legal-prose ul { padding-left: 1.3rem; list-style: disc; }
.legal-prose ul li { margin-bottom: .4rem; }
.legal-prose a { color: var(--accent); text-decoration: underline; }
.legal-prose strong { color: var(--text); }

/* 404 */
.err {
  position: relative;
  z-index: 1;
  min-height: 80vh;
  display: grid;
  place-items: center;
  text-align: center;
  padding: calc(var(--nav-h) + 3rem) var(--pad-x) 4rem;
}
.err .code { font-family: var(--f-display); font-size: clamp(5rem, 18vw, 11rem); color: var(--accent); line-height: 1; }
.err h1 { font-size: clamp(1.6rem, 4vw, 2.6rem); text-transform: uppercase; margin: .5rem 0 1rem; }
.err p { color: var(--text-muted); max-width: 48ch; margin: 0 auto 2rem; }
.err .err-links { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; }

/* ============================================================
   v=4 – Mockup-Anpassungen
   Hero-Headline gestapelt, weiße Sektionen, Berg-BG, Dashboard
   ============================================================ */

/* --- Hero: gestapelte Headline (eine Phrase pro Zeile) --- */
.hero h1 .line { display: block; }
.hero h1 .line.accent { color: var(--accent); }

/* --- Trust-Logos-Leiste --- */
.trust-bar {
  position: relative;
  z-index: 1;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 1.6rem 0;
}
.trust-bar .wrap { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; flex-wrap: wrap; }
.trust-bar .tlabel {
  font-family: var(--f-headline);
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: .72rem;
  color: var(--text-muted);
  white-space: nowrap;
}
.trust-logos { display: flex; align-items: center; gap: 2.2rem; flex-wrap: wrap; }
.trust-logos span {
  font-family: var(--f-display);
  font-size: 1.15rem;
  letter-spacing: .06em;
  color: rgba(234,240,251,0.4);
  transition: color .2s ease;
}
.trust-logos span:hover { color: rgba(234,240,251,0.75); }
@media (max-width: 640px) { .trust-logos { gap: 1.3rem; } .trust-logos span { font-size: .95rem; } }

/* --- Dashboard: Linienkurve + Donut + Footer-KPIs --- */
.dash-line { width: 100%; height: 120px; display: block; }
.dash-kpis {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 1.3rem;
  padding-top: 1.3rem;
  border-top: 1px solid var(--border);
}
.dash-kpi .k-lbl { font-family: var(--f-headline); text-transform: uppercase; letter-spacing: .08em; font-size: .66rem; color: var(--text-muted); }
.dash-kpi .k-val { font-family: var(--f-display); font-size: 1.5rem; color: var(--text); line-height: 1.1; margin-top: .15rem; }
.dash-kpi .k-up { font-family: var(--f-headline); font-size: .72rem; color: #34D399; letter-spacing: .04em; }
.dash-2 {
  margin-top: 1.2rem;
  background: linear-gradient(160deg, var(--bg-card), #0d1326);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.dash-2 .d2-num { font-family: var(--f-display); font-size: 2.2rem; color: var(--text); line-height: 1; }
.dash-2 .d2-lbl { font-family: var(--f-headline); text-transform: uppercase; letter-spacing: .1em; font-size: .72rem; color: var(--text-muted); margin-top: .2rem; }
.donut { width: 84px; height: 84px; flex-shrink: 0; }
.donut circle { fill: none; stroke-width: 9; }
.donut .track { stroke: rgba(255,255,255,0.08); }
.donut .prog { stroke: var(--accent); stroke-linecap: round; transform: rotate(-90deg); transform-origin: center; animation: donut 1.4s cubic-bezier(.2,.8,.2,1) both; }
@keyframes donut { from { stroke-dashoffset: 220; } }

/* --- Weiße Vorteils-Karten (in section-light) --- */
.section-light .cards-4 .card {
  background: #fff;
  border: 1px solid var(--border-dark);
  box-shadow: 0 12px 30px -22px rgba(11,16,32,0.5);
}
.section-light .cards-4 .card:hover { border-color: var(--accent); }
.section-light .card h3 { color: var(--text-dark); }
.section-light .card p { color: var(--text-dark-muted); }
.section-light .card .icon-badge {
  width: 46px; height: 46px;
  border-radius: 12px;
  background: var(--accent-dim);
  display: grid; place-items: center;
  margin-bottom: 1rem;
  color: var(--accent);
}
.section-light .card .icon-badge svg { width: 24px; height: 24px; }

/* dunkle Variante behält Icon-Badge auch */
.icon-badge {
  width: 46px; height: 46px;
  border-radius: 12px;
  background: var(--accent-dim);
  display: grid; place-items: center;
  margin-bottom: 1rem;
  color: var(--accent);
}
.icon-badge svg { width: 24px; height: 24px; }

/* --- Berg-Sektion (So arbeiten wir) --- */
.berg-section {
  position: relative;
  z-index: 1;
  background: #06080f;
  padding: clamp(3.5rem, 8vw, 6rem) 0 0;
  overflow: hidden;
}
.berg-section .wrap { position: relative; z-index: 2; }
.berg-bg {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  width: 100%;
  height: auto;
  z-index: 1;
  pointer-events: none;
  opacity: .9;
  -webkit-mask-image: linear-gradient(to bottom, transparent, #000 30%);
  mask-image: linear-gradient(to bottom, transparent, #000 30%);
}
.berg-step p, .berg-step h3 { position: relative; }
.berg-step { position: relative; }
.berg-step::after { content: none; }
.berg-steps {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
  padding-bottom: clamp(10rem, 26vw, 20rem); /* Platz für den Berg darunter */
}
.berg-step .bn {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 2px solid var(--accent);
  display: grid; place-items: center;
  font-family: var(--f-display);
  color: var(--accent);
  font-size: 1.1rem;
  margin-bottom: .9rem;
}
.berg-step h3 { font-size: 1.2rem; margin-bottom: .4rem; text-transform: uppercase; }
.berg-step p { color: var(--text-muted); font-size: .93rem; }
@media (max-width: 880px) {
  .berg-steps { grid-template-columns: repeat(2, 1fr); gap: 2rem; padding-bottom: 3rem; }
  .berg-bg { position: relative; opacity: .8; margin-top: 2rem; -webkit-mask-image: none; mask-image: none; }
}

/* Connector-Linie über den Berg-Steps (Desktop) */
.berg-steps::before {
  content: "";
  position: absolute;
  top: 22px; left: 10%; right: 10%;
  height: 2px;
  background: linear-gradient(to right, var(--accent-2), var(--accent));
  z-index: -1;
  opacity: .5;
}
@media (max-width: 880px) { .berg-steps::before { display: none; } }

/* ============================================================
   v=5 – FAQ-Light-Fix, Berg klein, Blitz, Prozess-Animation
   ============================================================ */

/* --- FAQ auf hellem Hintergrund (Kontrast-Fix) --- */
.section-light .faq-item { border-bottom: 1px solid var(--border-dark); }
.section-light .faq-q { color: var(--text-dark); }
.section-light .faq-q .ic { color: var(--accent); }
.section-light .faq-a { color: var(--text-dark-muted); }

/* --- Berg klein, oben rechts über Step 03/04 --- */
.berg-section { padding-bottom: clamp(3rem, 6vw, 5rem); }
.berg-bg {
  position: absolute;
  top: clamp(1rem, 4vw, 3rem);
  right: 0;
  bottom: auto; left: auto;
  width: clamp(380px, 48%, 720px);
  height: auto;
  z-index: 1;
  pointer-events: none;
  opacity: .85;
  -webkit-mask-image: radial-gradient(ellipse 75% 80% at 70% 45%, #000 55%, transparent 100%);
  mask-image: radial-gradient(ellipse 75% 80% at 70% 45%, #000 55%, transparent 100%);
}
.berg-steps {
  padding-bottom: clamp(2rem, 4vw, 3rem);
}
@media (max-width: 880px) {
  .berg-bg { position: relative; top: 0; right: 0; width: 100%; opacity: .7; margin-top: 2rem;
    -webkit-mask-image: none; mask-image: none; }
}

/* --- Prozess-Animation: Linie zeichnet sich, Kreise leuchten nacheinander auf --- */
.berg-steps.go::before { animation: line-grow 1.6s ease forwards; }
@keyframes line-grow {
  from { transform: scaleX(0); }
  to   { transform: scaleX(1); }
}
.berg-steps::before { transform-origin: left center; transform: scaleX(0); }

.berg-step .bn {
  position: relative;
  transition: none;
}
.berg-step .bn::after {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid var(--accent);
  opacity: 0;
}
.berg-steps.go .berg-step:nth-child(1) .bn { animation: pop .5s ease both .2s; }
.berg-steps.go .berg-step:nth-child(2) .bn { animation: pop .5s ease both .6s; }
.berg-steps.go .berg-step:nth-child(3) .bn { animation: pop .5s ease both 1.0s; }
.berg-steps.go .berg-step:nth-child(4) .bn { animation: pop .5s ease both 1.4s; }
.berg-steps.go .berg-step:nth-child(1) .bn::after { animation: ring 1s ease both .2s; }
.berg-steps.go .berg-step:nth-child(2) .bn::after { animation: ring 1s ease both .6s; }
.berg-steps.go .berg-step:nth-child(3) .bn::after { animation: ring 1s ease both 1.0s; }
.berg-steps.go .berg-step:nth-child(4) .bn::after { animation: ring 1s ease both 1.4s; }
@keyframes pop {
  0%   { transform: scale(.6); background: transparent; color: var(--accent); box-shadow: 0 0 0 0 var(--accent-glow); }
  50%  { transform: scale(1.18); background: var(--accent); color: #fff; box-shadow: 0 0 26px 4px var(--accent-glow); }
  100% { transform: scale(1); background: var(--accent); color: #fff; box-shadow: 0 0 14px 0 rgba(255,107,53,.35); }
}
@keyframes ring {
  0%   { opacity: .9; transform: scale(.8); }
  100% { opacity: 0;  transform: scale(2.1); }
}
/* Steps-Texte fade-in nacheinander */
.berg-steps.go .berg-step:nth-child(1) h3, .berg-steps.go .berg-step:nth-child(1) p { animation: step-in .6s ease both .35s; }
.berg-steps.go .berg-step:nth-child(2) h3, .berg-steps.go .berg-step:nth-child(2) p { animation: step-in .6s ease both .75s; }
.berg-steps.go .berg-step:nth-child(3) h3, .berg-steps.go .berg-step:nth-child(3) p { animation: step-in .6s ease both 1.15s; }
.berg-steps.go .berg-step:nth-child(4) h3, .berg-steps.go .berg-step:nth-child(4) p { animation: step-in .6s ease both 1.55s; }
@keyframes step-in { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }
.berg-steps:not(.go) .berg-step h3, .berg-steps:not(.go) .berg-step p { opacity: 0; }
.berg-steps.played .berg-step h3, .berg-steps.played .berg-step p { opacity: 1; }

/* --- Blitz-Canvas über dem Footer / CTA --- */
.cta-band { position: relative; overflow: hidden; }
#bolt-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}
.cta-band .wrap { position: relative; z-index: 2; }
.cta-flash {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: radial-gradient(ellipse 80% 70% at 50% 60%, rgba(255,183,3,0.0), rgba(255,107,53,0.0));
  opacity: 0;
}
.cta-flash.flash { animation: flash-hit .55s ease-out; }
@keyframes flash-hit {
  0%   { opacity: 0; background: radial-gradient(ellipse 60% 50% at 50% 60%, rgba(255,255,255,0), transparent 70%); }
  18%  { opacity: 1; background: radial-gradient(ellipse 130% 110% at 50% 55%, rgba(255,255,255,0.95), rgba(255,183,3,0.5) 40%, rgba(255,107,53,0.15) 70%, transparent 85%); }
  45%  { opacity: .55; }
  100% { opacity: 0; }
}

@media (prefers-reduced-motion: reduce) {
  .berg-steps::before { transform: scaleX(1); }
  .berg-steps .berg-step h3, .berg-steps .berg-step p { opacity: 1 !important; }
  .berg-step .bn { background: var(--accent); color: #fff; }
  #bolt-canvas, .cta-flash { display: none; }
}
