/* =========================================================
   Meisterauftritt - Design-System "Stahl & Signal"
   Reines CSS, kein Build. Laeuft direkt auf All-Inkl.
   ========================================================= */

:root {
  --bg:        #0F172A;
  --bg-elev:   #1A2436;
  --bg-line:   #2A3850;
  --text:      #E2E8F0;
  --text-mut:  #94A3B8;
  --signal:    #FF6B35;
  --signal-d:  #E8551F;
  --sky:       #38BDF8;
  --on-signal: #0F172A;

  --font-display: "Space Grotesk", system-ui, sans-serif;
  --font-body: "Inter", system-ui, sans-serif;

  --maxw: 1180px;
}

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

* { border-color: var(--bg-line); }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 6.75rem;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.01em;
  margin: 0;
}

p { margin: 0; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul, ol { margin: 0; padding: 0; list-style: none; }
button { font-family: inherit; }

::selection { background: var(--signal); color: var(--on-signal); }

:focus-visible {
  outline: 2px solid var(--sky);
  outline-offset: 3px;
  border-radius: 2px;
}

/* ---------- Layout ---------- */
.container {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: 1.25rem;
}
@media (min-width: 768px) {
  .container { padding-inline: 2rem; }
}

.section { padding-block: 5rem; }
@media (min-width: 768px) {
  .section { padding-block: 7rem; }
}

/* Abwechselnd hellere Abschnitte fuer mehr Rhythmus.
   Cards/Boxen darauf werden dunkler, damit sie knackig bleiben. */
.section--alt { background-color: var(--bg-elev); }
.section--alt .card { background-color: var(--bg); }
.section--alt .funnel { background-color: var(--bg); }

/* ---------- Typo-Helfer ---------- */
.h1 { font-size: clamp(2.5rem, 6vw, 4.5rem); line-height: 1.05; }
.h2 { font-size: clamp(2rem, 4vw, 3rem); line-height: 1.1; }
.h3 { font-size: 1.5rem; line-height: 1.2; }
.lead { font-size: 1.125rem; color: var(--text-mut); }
.muted { color: var(--text-mut); }
.balance { text-wrap: balance; }
.pretty { text-wrap: pretty; }

/* ---------- Signature: Eyebrow mit diagonalem Signal-Strich ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 0.8125rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-mut);
}
.eyebrow::before {
  content: "";
  width: 1.5rem;
  height: 0.1875rem;
  background: var(--signal);
  transform: skewX(-24deg);
  flex-shrink: 0;
}

/* ---------- Section-Trenner (leicht schraeg) ---------- */
.divider { }
.divider .line {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--bg-line) 15%, var(--bg-line) 85%, transparent);
  transform: skewY(-0.6deg);
  transform-origin: left;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-weight: 500;
  border-radius: 0.5rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background-color .2s, border-color .2s, color .2s;
  text-align: center;
  white-space: nowrap;
}
.btn:disabled { opacity: .6; cursor: not-allowed; }

.btn-primary {
  background: var(--signal);
  color: var(--on-signal);
  box-shadow: 0 8px 24px -8px rgba(255,107,53,.5);
}
.btn-primary:hover { background: var(--signal-d); }

.btn-secondary {
  background: var(--bg-elev);
  color: var(--text);
  border-color: var(--bg-line);
}
.btn-secondary:hover { border-color: var(--signal); color: var(--signal); }

.btn-ghost { background: transparent; color: var(--text-mut); }
.btn-ghost:hover { color: var(--signal); }

.btn-md { padding: .65rem 1.25rem; font-size: .95rem; }
.btn-lg { padding: .9rem 1.75rem; font-size: 1rem; }
.btn-block { width: 100%; }

.icon { width: 1.05em; height: 1.05em; stroke: currentColor; fill: none; stroke-width: 2; flex-shrink: 0; }

/* ---------- Header ---------- */
.header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  border-bottom: 1px solid transparent;
  transition: background-color .3s, border-color .3s, backdrop-filter .3s;
}
.header.scrolled {
  background: rgba(15,23,42,.9);
  backdrop-filter: blur(10px);
  border-bottom-color: var(--bg-line);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4.75rem;
}
@media (min-width: 768px) { .header-inner { height: 6.25rem; } }

.wordmark { display: inline-flex; align-items: center; gap: .625rem; }
.wordmark .slash {
  display: block; width: 1.25rem; height: .2rem;
  background: var(--signal); transform: skewX(-24deg);
}
.wordmark .name {
  font-family: var(--font-display); font-weight: 700; font-size: 1.25rem;
  letter-spacing: -.01em;
}
.wordmark .name .m { color: var(--signal); }
.logo-img { display: block; height: 60px; width: auto; }
@media (min-width: 768px) { .logo-img { height: 78px; } }

.nav-desktop { display: none; align-items: center; gap: 2rem; }
@media (min-width: 768px) { .nav-desktop { display: flex; } }
.nav-desktop a { color: var(--text-mut); font-size: .95rem; transition: color .2s; }
.nav-desktop a:hover { color: var(--text); }

.burger {
  display: inline-flex; align-items: center; justify-content: center;
  width: 2.5rem; height: 2.5rem; background: transparent; border: none; color: var(--text);
}
@media (min-width: 768px) { .burger { display: none; } }

.nav-mobile { display: none; border-top: 1px solid var(--bg-line); background: var(--bg); }
.nav-mobile.open { display: block; }
.nav-mobile .inner { display: flex; flex-direction: column; gap: .25rem; padding-block: 1rem; }
.nav-mobile a { padding: .75rem .5rem; border-radius: .5rem; color: var(--text-mut); transition: background-color .2s, color .2s; }
.nav-mobile a:hover { background: var(--bg-elev); color: var(--text); }
/* CTA-Button in der Navigation: dunkler Text auf Orange (sonst ueberschreibt die Nav-Link-Farbe) */
.nav-desktop a.btn-primary, .nav-desktop a.btn-primary:hover,
.nav-mobile a.btn-primary, .nav-mobile a.btn-primary:hover { color: var(--on-signal); }

/* ---------- Hero ---------- */
.hero { position: relative; overflow: hidden; padding-top: 7rem; padding-bottom: 5rem; }
@media (min-width: 768px) { .hero { padding-top: 9rem; padding-bottom: 7rem; } }

.hero-bg { position: absolute; inset: 0; z-index: -1; pointer-events: none; }
.hero-bg .hero-bg-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .38; }
.hero-bg .hero-veil { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(15, 23, 42, .93) 0%, rgba(15, 23, 42, .6) 48%, rgba(15, 23, 42, .25) 100%); }
.hero-bg .stripe {
  position: absolute; top: 0; right: -25%; width: 80%; height: 140%; opacity: .13;
  transform: skewX(-14deg);
  background: linear-gradient(105deg, transparent 0%, var(--signal) 45%, var(--signal) 55%, transparent 100%);
}
.hero-bg .glow {
  position: absolute; inset: 0;
  background: radial-gradient(900px 500px at 18% 8%, rgba(56,189,248,.10), transparent 60%);
}

.hero-grid { display: grid; gap: 3.5rem; align-items: center; }
@media (min-width: 1024px) { .hero-grid { grid-template-columns: 1.05fr .95fr; } }

.hero h1 { margin-top: 1.25rem; }
.hero .sub { margin-top: 1.5rem; max-width: 36rem; }
.hero .cta-row { margin-top: 2.25rem; display: flex; flex-direction: column; gap: 1rem; }
@media (min-width: 640px) { .hero .cta-row { flex-direction: row; align-items: center; } }
.hero .trust { margin-top: 3rem; }
.branch-tags { display: flex; flex-wrap: wrap; gap: .5rem .75rem; }
.branch-tag {
  border: 1px solid var(--bg-line); background: rgba(26,36,54,.6);
  padding: .25rem .75rem; border-radius: 999px;
  font-family: var(--font-display); font-size: .75rem; font-weight: 500;
  text-transform: uppercase; letter-spacing: .05em; color: var(--text-mut);
}
.hero .trust p { margin-top: .75rem; font-size: .875rem; color: var(--text-mut); }

/* Browser-Mockup */
.mockup-wrap { position: relative; width: 100%; max-width: 28rem; margin-inline: auto; }
@media (min-width: 1024px) { .mockup-wrap { max-width: none; } }
.mockup-badge {
  position: absolute; right: -.75rem; top: -1rem; z-index: 20;
  display: inline-flex; align-items: center; gap: .5rem;
  border: 1px solid rgba(255,107,53,.4); background: var(--bg-elev);
  padding: .5rem .875rem; border-radius: .5rem;
  box-shadow: 0 12px 40px -12px rgba(255,107,53,.6);
  font-family: var(--font-display); font-size: .875rem; font-weight: 500;
}
@media (min-width: 768px) { .mockup-badge { right: -1.5rem; } }
.mockup-badge .icon { color: var(--signal); }

.mockup {
  overflow: hidden; border: 1px solid var(--bg-line); border-radius: .75rem;
  background: var(--bg-elev); box-shadow: 0 25px 50px -12px rgba(0,0,0,.5);
}
.mockup-bar { display: flex; align-items: center; gap: .5rem; border-bottom: 1px solid var(--bg-line); background: rgba(15,23,42,.6); padding: .75rem 1rem; }
.mockup-dot { width: .75rem; height: .75rem; border-radius: 999px; background: var(--bg-line); }
.mockup-url { margin-left: .75rem; flex: 1; border-radius: .375rem; background: var(--bg); padding: .25rem .75rem; font-size: .75rem; color: var(--text-mut); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.mockup-body { padding: 1.25rem; }
.mockup-row { display: flex; align-items: center; justify-content: space-between; }
.bar { border-radius: .25rem; height: .625rem; }
.mockup-hero { margin-top: 1.5rem; display: grid; grid-template-columns: 1.3fr 1fr; gap: 1rem; }
.mockup-pic { border-radius: .5rem; background: linear-gradient(135deg, var(--bg-line), var(--bg-elev)); box-shadow: inset 0 0 0 1px var(--bg-line); }
.mockup-cards { margin-top: 1.25rem; display: grid; grid-template-columns: repeat(3,1fr); gap: .75rem; }
.mockup-card { border: 1px solid var(--bg-line); border-radius: .5rem; padding: .75rem; }

/* Browser-Screen mit auto-scrollendem Screenshot */
.mockup-screen {
  --vp: 360px;
  position: relative;
  height: var(--vp);
  overflow: hidden;
}
.mockup-shot {
  position: absolute; top: 0; left: 0; z-index: 2;
  width: 100%; height: auto; display: block;
  opacity: 0; transition: opacity .8s ease;
}
/* Einzelbild: ruhiger Dauer-Scroll hin und zurueck */
.mockup-shot.is-active { opacity: 1; z-index: 3; animation: autoscroll 8s ease-in-out forwards; }
.mockup-shot.is-active.loop { animation: autoscroll 22s ease-in-out infinite alternate; }
@keyframes autoscroll {
  0%, 8%    { transform: translateY(0); }
  92%, 100% { transform: translateY(calc(-100% + var(--vp))); }
}
/* ---------- Hero: schraege Screenshot-Wand (endlos von oben nach unten) ---------- */
/* Deckel der Mockup-Spalte aufheben, damit 2 Spalten Platz haben */
.mockup-wrap--wall { max-width: none; }
/* Verhindert waagrechtes Scrollen durch das gekippte Panel */
@media (min-width: 1024px) { .hero { overflow: hidden; } }

/* Das PANEL selbst steht schraeg - die Screenshots laufen aufrecht hindurch.
   Dadurch gibt es keine angeschnittenen Bildraender, sondern eine saubere,
   bewusst gesetzte Form. */
.hm-frame {
  position: relative;
  height: 44rem;
  overflow: hidden;
  border-radius: 1.25rem;
  border: 1px solid var(--bg-line);
  transform: rotate(-6deg);
  box-shadow: 0 40px 70px -35px rgba(0, 0, 0, .9);
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, #000 11%, #000 89%, transparent 100%);
          mask-image: linear-gradient(to bottom, transparent 0%, #000 11%, #000 89%, transparent 100%);
}
.hero-marquee {
  position: absolute;
  inset: 0;
  display: flex;
  gap: .8rem;
  padding: 0 .8rem;
}
/* linke Spalte laeuft nach unten, rechte gegenlaeufig nach oben */
.hm-col { flex: 1 1 0; min-width: 0; will-change: transform; animation: hmDown 42s linear infinite; }
.hm-col--b { animation-name: hmUp; animation-duration: 52s; }
.hm-col img {
  display: block;
  width: 100%;
  margin-bottom: 1.1rem;
  border-radius: .75rem;
  border: 1px solid var(--bg-line);
  box-shadow: 0 20px 45px -22px rgba(0, 0, 0, .85);
}
@keyframes hmDown {
  from { transform: translateY(-50%); }
  to   { transform: translateY(0); }
}
@keyframes hmUp {
  from { transform: translateY(0); }
  to   { transform: translateY(-50%); }
}
@media (max-width: 900px) { .hm-frame { height: 24rem; } }
@media (prefers-reduced-motion: reduce) { .hm-col { animation: none; } }

/* Slide-Ebene: neuer Screenshot fliegt von rechts rein, alter zoomt raus */
.mockup-slide {
  position: absolute; top: 0; left: 0; width: 100%; height: 100%;
  overflow: hidden; opacity: 0; z-index: 2; will-change: transform, opacity;
}
.mockup-slide .mockup-shot { opacity: 1; transition: none; }
@keyframes heroSlideIn {
  0%   { opacity: 0; transform: translateX(85%) scale(.95); }
  55%  { opacity: 1; }
  100% { opacity: 1; transform: translateX(0) scale(1); }
}
@keyframes heroZoomOut {
  0%   { opacity: 1; transform: translateX(0) scale(1); }
  100% { opacity: 0; transform: scale(.72); }
}
.mockup-placeholder {
  position: absolute; inset: 0; z-index: 1;
  padding: 1.25rem;
}
@media (max-width: 520px) {
  .mockup-screen { --vp: 300px; }
}

/* Schwebende Hero-Bubbles */
.hero-bubble {
  position: absolute; z-index: 25;
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .5rem .8rem; border-radius: .6rem;
  background: rgba(26,36,54,.92);
  backdrop-filter: blur(6px);
  border: 1px solid var(--bg-line);
  box-shadow: 0 14px 34px -14px rgba(0,0,0,.7);
  font-family: var(--font-display); font-size: .82rem; font-weight: 500; color: var(--text);
  white-space: nowrap;
}
.hero-bubble .icon { width: 1rem; height: 1rem; color: var(--sky); }
.hero-bubble strong { color: var(--signal); font-weight: 700; }
.hero-bubble, .mockup-badge { transition: opacity .4s ease; }
.hero-bubble { animation: floaty 3.6s ease-in-out infinite; }
.hero-bubble--accent { border-color: rgba(255, 107, 53, .4); }
.hero-bubble--accent .icon { color: var(--signal); }
.hero-bubbles { position: absolute; inset: 0; z-index: 25; pointer-events: none; }
.hero-bubble--leads {
  left: -1rem; bottom: 2.2rem;
  border-color: rgba(255,107,53,.35);
  animation: floaty 3.6s ease-in-out infinite .4s;
}
.hero-bubble--leads .icon { color: var(--signal); }
.hero-bubble--seo {
  left: -1.5rem; top: 42%;
  animation: floaty 4s ease-in-out infinite 1s;
}
@media (max-width: 520px) {
  .hero-bubble { font-size: .72rem; padding: .4rem .6rem; }
  .hero-bubble--seo { display: none; }
  .hero-bubble--leads { left: -.25rem; bottom: 1rem; }
}

/* ---------- Cards / Grids ---------- */
.card {
  height: 100%;
  border: 1px solid var(--bg-line);
  background: rgba(26,36,54,.5);
  border-radius: .75rem;
  padding: 1.5rem;
  transition: border-color .2s;
}
.card:hover { border-color: rgba(255,107,53,.4); }
.card .slash { display: block; width: 2rem; height: .2rem; background: rgba(255,107,53,.8); transform: skewX(-24deg); }
.card h3 { margin-top: 1.25rem; }
.card p { margin-top: .75rem; font-size: .95rem; color: var(--text-mut); }

.grid-3 { display: grid; gap: 1.25rem; margin-top: 3rem; }
@media (min-width: 768px) { .grid-3 { grid-template-columns: repeat(3,1fr); } }

.grid-2 { display: grid; gap: 2.5rem 2rem; margin-top: 3rem; }
@media (min-width: 640px) { .grid-2 { grid-template-columns: repeat(2,1fr); } }

.section-head h2 { margin-top: 1.25rem; max-width: 48rem; }
.section-head .sub { margin-top: 1rem; max-width: 36rem; font-size: .95rem; color: var(--text-mut); }

/* Solution feature */
.feature { display: flex; gap: 1.25rem; }
.feature .ico {
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  width: 3rem; height: 3rem; border-radius: .5rem;
  border: 1px solid var(--bg-line); background: var(--bg-elev); color: var(--signal);
}
.feature .ico .icon { width: 1.4rem; height: 1.4rem; stroke-width: 1.75; }
.feature p { margin-top: .5rem; font-size: .95rem; color: var(--text-mut); }

/* Process */
.steps { display: grid; gap: 2.5rem; margin-top: 3.5rem; }
@media (min-width: 768px) { .steps { grid-template-columns: repeat(3,1fr); gap: 2rem; } }
.step { position: relative; }
.step .num { font-family: var(--font-display); font-weight: 700; font-size: 3rem; color: var(--signal); }
.step h3 { margin-top: 1rem; }
.step .step-title { margin-top: 1rem; font-family: var(--font-display); font-weight: 700; font-size: 1.5rem; line-height: 1.2; }
.step p { margin-top: .75rem; font-size: .95rem; color: var(--text-mut); }
.step .connector { display: none; position: absolute; left: 4rem; top: 1.75rem; height: 1px; width: calc(100% - 2rem); background: var(--bg-line); }
@media (min-width: 768px) { .step:not(:last-child) .connector { display: block; } }

/* Cases */
.cases-grid { display: grid; gap: 1.5rem; margin-top: 3rem; }
@media (min-width: 640px) { .cases-grid { grid-template-columns: repeat(2,1fr); } }
@media (min-width: 1024px) { .cases-grid { grid-template-columns: repeat(2,1fr); } }
.case {
  overflow: hidden; border: 1px solid var(--bg-line); border-radius: .75rem;
  background: rgba(26,36,54,.5); transition: border-color .2s;
}
.case:hover { border-color: rgba(255,107,53,.4); }
.case .thumb {
  position: relative; aspect-ratio: 4/3; overflow: hidden;
  background: linear-gradient(135deg, var(--bg-line), var(--bg-elev));
  display: flex; align-items: center; justify-content: center;
}
.case .thumb span {
  font-family: var(--font-display); font-size: .75rem; text-transform: uppercase;
  letter-spacing: .15em; color: rgba(148,163,184,.6);
}
.case .thumb::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 4px; width: 100%;
  background: rgba(255,107,53,.7); transform: skewX(-24deg) translateX(-4px);
}
.case .meta { padding: 1.25rem; }
.case .branche { font-family: var(--font-display); font-size: .75rem; font-weight: 500; text-transform: uppercase; letter-spacing: .05em; color: var(--signal); }
.case .meta h3, .case .meta .case-title { margin: .375rem 0 0; font-size: 1.125rem; font-weight: 600; font-family: var(--font-display); }
.case .result { margin-top: .5rem; font-size: .95rem; color: var(--text-mut); }
.case .thumb img { position: absolute; inset: 0; z-index: 2; width: 100%; height: 100%; object-fit: cover; }
.case .thumb::after { z-index: 3; }

/* WhatsApp Floating-Button */
.wa-float {
  position: fixed; right: 1.25rem; bottom: 1.25rem; z-index: 45;
  width: 3.5rem; height: 3.5rem; border-radius: 999px;
  background: #25D366; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 12px 30px -8px rgba(0, 0, 0, .55); transition: transform .2s ease;
}
.wa-float:hover { transform: scale(1.08); }
.wa-float svg { width: 2rem; height: 2rem; fill: #fff; }
@media (max-width: 767px) { .wa-float { display: none; } }

/* Trust */
.trust-box {
  position: relative; overflow: hidden;
  border: 1px solid var(--bg-line); background: rgba(26,36,54,.6);
  border-radius: 1rem; padding: 2rem;
}
@media (min-width: 768px) { .trust-box { padding: 3rem; } }
.trust-box .accent {
  position: absolute; right: -4rem; top: -4rem; width: 12rem; height: 12rem; opacity: .2;
  transform: skewX(-14deg);
  background: linear-gradient(120deg, transparent, var(--signal));
  pointer-events: none;
}
.trust-box .inner { position: relative; max-width: 48rem; }
.trust-box h2 { margin-top: 1.25rem; }
.trust-box p { margin-top: 1rem; font-size: .95rem; color: var(--text-mut); }
.trust-points { margin-top: 2rem; display: grid; gap: .75rem; }
@media (min-width: 640px) { .trust-points { grid-template-columns: repeat(3,1fr); } }
.trust-point { display: flex; align-items: flex-start; gap: .625rem; font-size: .875rem; }
.trust-point .check {
  margin-top: .125rem; display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  width: 1.25rem; height: 1.25rem; border-radius: 999px; background: var(--signal); color: var(--on-signal);
}
.trust-point .check .icon { width: .8rem; height: .8rem; stroke-width: 3; }

/* ---------- Funnel ---------- */
.funnel-section { scroll-margin-top: 5rem; }
.funnel-grid { display: grid; gap: 3rem; align-items: start; }
@media (min-width: 1024px) { .funnel-grid { grid-template-columns: .9fr 1.1fr; } }
.funnel-intro h2 { margin-top: 1.25rem; }
.funnel-intro .sub { margin-top: 1rem; max-width: 28rem; font-size: .95rem; color: var(--text-mut); }
.funnel-intro .deco { display: none; margin-top: 2rem; height: 1px; width: 66%; background: var(--bg-line); transform: skewY(-1deg); }
@media (min-width: 1024px) { .funnel-intro .deco { display: block; } }

.funnel {
  border: 1px solid var(--bg-line); background: rgba(26,36,54,.4);
  border-radius: 1rem; padding: 1.5rem; box-shadow: 0 25px 50px -12px rgba(0,0,0,.5);
}
@media (min-width: 768px) { .funnel { padding: 2rem; } }

.progress { margin-bottom: 2rem; }
.progress .label { font-family: var(--font-display); font-size: .75rem; font-weight: 500; text-transform: uppercase; letter-spacing: .05em; color: var(--text-mut); margin-bottom: .5rem; }
.progress .track { height: .375rem; width: 100%; border-radius: 999px; background: var(--bg-line); overflow: hidden; }
.progress .fill { height: 100%; border-radius: 999px; background: var(--signal); width: 20%; transition: width .5s ease-out; }

.back-btn {
  display: inline-flex; align-items: center; gap: .375rem;
  background: none; border: none; color: var(--text-mut); cursor: pointer;
  font-size: .875rem; margin-bottom: 1rem; transition: color .2s;
}
.back-btn:hover { color: var(--signal); }
.back-btn .icon { width: 1rem; height: 1rem; }

.funnel-stage { position: relative; min-height: 360px; }
.step-panel { animation: stepIn .35s cubic-bezier(.22,1,.36,1); }
@keyframes stepIn { from { opacity: 0; transform: translateX(30px); } to { opacity: 1; transform: translateX(0); } }

.step-title { font-size: 1.5rem; line-height: 1.2; font-family: var(--font-display); font-weight: 700; text-wrap: balance; }

.options { margin-top: 1.5rem; display: grid; gap: .75rem; }
@media (min-width: 640px) { .options { grid-template-columns: repeat(2,1fr); } }
.option {
  display: flex; align-items: center; justify-content: space-between; gap: .75rem;
  border: 1px solid var(--bg-line); background: rgba(26,36,54,.5); color: var(--text);
  border-radius: .5rem; padding: 1rem; text-align: left; cursor: pointer;
  transition: border-color .2s, background-color .2s;
}
.option:hover { border-color: rgba(255,107,53,.5); background: var(--bg-elev); }
.option.active { border-color: var(--signal); background: rgba(255,107,53,.1); }
.option .label { font-weight: 500; }
.option .radio {
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  width: 1.25rem; height: 1.25rem; border-radius: 999px; border: 1px solid var(--bg-line);
  transition: border-color .2s, background-color .2s;
}
.option:hover .radio { border-color: rgba(255,107,53,.6); }
.option.active .radio { border-color: var(--signal); background: var(--signal); }
.option .radio::after { content: ""; width: .5rem; height: .5rem; border-radius: 999px; background: var(--on-signal); opacity: 0; transition: opacity .2s; }
.option.active .radio::after { opacity: 1; }

/* Form */
.form-grid { margin-top: 1.5rem; display: grid; gap: 1rem; }
@media (min-width: 640px) { .form-grid { grid-template-columns: repeat(2,1fr); } }
.field.full { grid-column: 1 / -1; }
.field label { display: block; margin-bottom: .375rem; font-size: .875rem; font-weight: 500; color: var(--text); }
.field label .req { color: var(--signal); margin-left: .25rem; }
.field input {
  width: 100%; border-radius: .5rem; border: 1px solid var(--bg-line);
  background: rgba(26,36,54,.6); padding: .75rem 1rem; color: var(--text);
  font-family: inherit; font-size: 1rem; transition: border-color .2s;
}
.field input::placeholder { color: rgba(148,163,184,.6); }
.field input:focus { outline: none; border-color: var(--signal); }
.field input.invalid { border-color: var(--signal); }
.field .error { margin-top: .375rem; font-size: .875rem; color: var(--signal); }

.consent { margin-top: 1.5rem; display: flex; align-items: flex-start; gap: .75rem; cursor: pointer; }
.consent input { margin-top: .25rem; width: 1rem; height: 1rem; flex-shrink: 0; accent-color: var(--signal); }
.consent span { font-size: .875rem; color: var(--text-mut); }
.consent-error { margin-top: .375rem; font-size: .875rem; color: var(--signal); }

.server-error {
  margin-top: 1.25rem; border: 1px solid rgba(255,107,53,.5); background: rgba(255,107,53,.1);
  border-radius: .5rem; padding: .75rem 1rem; font-size: .875rem;
}

.submit { margin-top: 1.75rem; }

.spinner { animation: spin 1s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

/* Thank you */
.thanks { text-align: center; padding-block: 1rem; }
.thanks .check-circle {
  margin-inline: auto; display: flex; align-items: center; justify-content: center;
  width: 4rem; height: 4rem; border-radius: 999px; background: rgba(255,107,53,.15);
}
.thanks .check-circle .icon { width: 2.25rem; height: 2.25rem; color: var(--signal); }
.thanks h3 { margin-top: 1.5rem; }
.thanks .msg { margin-inline: auto; margin-top: .75rem; max-width: 28rem; font-size: .95rem; color: var(--text-mut); }
.thanks .next {
  margin-inline: auto; margin-top: 2rem; max-width: 28rem; text-align: left;
  border: 1px solid var(--bg-line); background: rgba(26,36,54,.5); border-radius: .75rem; padding: 1.25rem;
}
.thanks .next .cap { font-family: var(--font-display); font-size: .75rem; font-weight: 500; text-transform: uppercase; letter-spacing: .05em; color: var(--text-mut); }
.thanks .next ul { margin-top: .75rem; display: grid; gap: .625rem; font-size: .875rem; color: var(--text); }
.thanks .next li { display: flex; gap: .625rem; }
.thanks .next li b { font-family: var(--font-display); color: var(--signal); }

/* ---------- Footer ---------- */
.footer { border-top: 1px solid var(--bg-line); background: rgba(26,36,54,.4); }
.footer-inner { padding-block: 3.5rem; }
.footer-top { display: flex; flex-direction: column; gap: 2.5rem; }
@media (min-width: 768px) { .footer-top { flex-direction: row; align-items: flex-start; justify-content: space-between; } }
.footer p { margin-top: 1rem; max-width: 24rem; font-size: .95rem; color: var(--text-mut); }
.footer nav { display: flex; flex-direction: column; gap: .75rem; }
.footer nav a { font-size: .95rem; color: var(--text-mut); transition: color .2s; }
.footer nav a:hover { color: var(--signal); }
.footer-bottom {
  margin-top: 3rem; padding-top: 1.5rem; border-top: 1px solid var(--bg-line);
  display: flex; flex-direction: column; gap: .5rem; font-size: .875rem; color: var(--text-mut);
}
@media (min-width: 640px) { .footer-bottom { flex-direction: row; align-items: center; justify-content: space-between; } }
.footer-bottom a { color: var(--sky); transition: color .2s; }
.footer-bottom a:hover { color: var(--text); }

/* ====================================================
   Micro-Interactions & Tiefe
   ==================================================== */
.card, .case, .tcard, .compare-col {
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.card:hover, .case:hover, .tcard:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 44px -22px rgba(0,0,0,.65);
}
.feature .ico { transition: transform .25s ease, color .25s ease, border-color .25s ease; }
.feature:hover .ico { transform: translateY(-2px) scale(1.05); border-color: rgba(255,107,53,.5); }

/* Button-Shine: laeuft dauerhaft durch (nicht nur bei Hover) */
.btn-primary { position: relative; overflow: hidden; }
.btn-primary::after {
  content: ""; position: absolute; top: 0; left: -130%;
  width: 55%; height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,.40), transparent);
  transform: skewX(-18deg); pointer-events: none;
  animation: btn-shine 3.6s ease-in-out infinite;
}
@keyframes btn-shine {
  0%   { left: -130%; }
  55%  { left: 150%; }
  100% { left: 150%; }
}

/* Hero-CTA: zusaetzlich pulsierend */
.btn-pulse { animation: btn-pulse 2.1s ease-in-out infinite; }
@keyframes btn-pulse {
  0%   { transform: scale(1);     box-shadow: 0 8px 24px -8px rgba(255,107,53,.55), 0 0 0 0 rgba(255,107,53,.5); }
  50%  { transform: scale(1.035); box-shadow: 0 12px 32px -6px rgba(255,107,53,.75), 0 0 0 12px rgba(255,107,53,0); }
  100% { transform: scale(1);     box-shadow: 0 8px 24px -8px rgba(255,107,53,.55), 0 0 0 0 rgba(255,107,53,0); }
}

/* Feine Grain/Noise-Tiefe ueber der ganzen Seite */
body::before {
  content: ""; position: fixed; inset: 0; z-index: 3; pointer-events: none;
  opacity: .035; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ====================================================
   Zahlen-Band
   ==================================================== */
.stats-grid {
  margin-top: 2.5rem; display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem 1rem; text-align: center;
}
@media (min-width: 768px) { .stats-grid { grid-template-columns: repeat(4, 1fr); } }
.stat { position: relative; }
.stat .num {
  font-family: var(--font-display); font-weight: 700; line-height: 1;
  font-size: clamp(2.3rem, 5vw, 3.3rem); color: var(--text);
}
.stat .num .accent { color: var(--signal); }
.stat .label {
  margin-top: .6rem; font-family: var(--font-display); font-weight: 500;
  font-size: .8rem; text-transform: uppercase; letter-spacing: .07em; color: var(--text-mut);
}
.stat::before {
  content: ""; display: block; width: 1.75rem; height: .18rem; margin: 0 auto .9rem;
  background: var(--signal); transform: skewX(-24deg);
}

/* ====================================================
   Vergleichs-Block
   ==================================================== */
.compare-grid { margin-top: 3rem; display: grid; gap: 1.25rem; }
@media (min-width: 768px) { .compare-grid { grid-template-columns: 1fr 1fr; } }
.compare-col {
  border: 1px solid var(--bg-line); border-radius: 1rem; padding: 1.75rem;
}
.compare-col--bad { background-color: var(--bg); }
.compare-col--good {
  position: relative; background: linear-gradient(160deg, rgba(255,107,53,.10), rgba(26,36,54,.4));
  border-color: rgba(255,107,53,.45);
  box-shadow: 0 24px 60px -30px rgba(255,107,53,.55);
  animation: good-glow 3.2s ease-in-out infinite;
}
@keyframes good-glow {
  0%, 100% { box-shadow: 0 22px 55px -30px rgba(255, 107, 53, .42); border-color: rgba(255, 107, 53, .38); }
  50%      { box-shadow: 0 26px 74px -24px rgba(255, 107, 53, .72); border-color: rgba(255, 107, 53, .7); }
}
.compare-col h3, .compare-col .compare-col-title { display: flex; align-items: center; gap: .6rem; font-size: 1.25rem; font-weight: 700; font-family: var(--font-display); }
.compare-col--good .tag {
  position: absolute; top: -.7rem; right: 1.25rem;
  background: var(--signal); color: var(--on-signal);
  font-family: var(--font-display); font-weight: 600; font-size: .72rem;
  text-transform: uppercase; letter-spacing: .05em; padding: .25rem .6rem; border-radius: .4rem;
}
.compare-list { margin-top: 1.25rem; display: grid; gap: .25rem; }
.compare-list li { display: flex; align-items: flex-start; gap: .65rem; padding: .55rem 0; font-size: .98rem; }
.compare-list li .icon { width: 1.15rem; height: 1.15rem; flex-shrink: 0; margin-top: .15rem; }
.compare-col--bad .compare-list li { color: var(--text-mut); }
.compare-col--bad .compare-list .icon { color: var(--text-mut); }
.compare-col--good .compare-list li { color: var(--text); }
.compare-col--good .compare-list .icon { color: var(--signal); }

/* ====================================================
   Kundenstimmen
   ==================================================== */
.tcards { margin-top: 3rem; display: grid; gap: 1.25rem; }
@media (min-width: 768px) { .tcards { grid-template-columns: repeat(3, 1fr); } }
.tcard {
  background-color: var(--bg); border: 1px solid var(--bg-line);
  border-radius: 1rem; padding: 1.5rem; display: flex; flex-direction: column;
}
.tcard .stars { color: var(--signal); letter-spacing: .12em; font-size: 1rem; }
.tcard .quote { margin-top: .9rem; color: var(--text); font-size: 1rem; flex: 1; }
.tcard .who { margin-top: 1.25rem; display: flex; align-items: center; gap: .75rem; }
.tcard .avatar {
  width: 2.75rem; height: 2.75rem; border-radius: 999px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 700; color: var(--on-signal);
  background: linear-gradient(140deg, var(--signal), var(--signal-d));
}
.tcard .name { font-family: var(--font-display); font-weight: 600; font-size: .95rem; }
.tcard .role { font-size: .82rem; color: var(--text-mut); }

/* ====================================================
   FAQ
   ==================================================== */
.faq-list { margin-top: 2.5rem; max-width: 820px; }
.faq-item { border-bottom: 1px solid var(--bg-line); }
.faq-item summary {
  list-style: none; cursor: pointer; padding: 1.25rem 0;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  font-family: var(--font-display); font-weight: 600; font-size: 1.06rem; color: var(--text);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary .chev {
  width: 1.25rem; height: 1.25rem; flex-shrink: 0; color: var(--signal);
  transition: transform .25s ease;
}
.faq-item[open] summary .chev { transform: rotate(45deg); }
.faq-item .answer { padding: 0 0 1.4rem; color: var(--text-mut); font-size: .98rem; max-width: 70ch; }
.faq-item summary:hover { color: var(--signal); }

/* ====================================================
   Leistungen / Feature-Grid
   ==================================================== */
.feat-grid { margin-top: 3rem; display: grid; gap: 1.25rem; }
@media (min-width: 640px) { .feat-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 960px) { .feat-grid { grid-template-columns: repeat(3, 1fr); } }
.feat-card {
  position: relative; border: 1px solid var(--bg-line);
  background-color: rgba(26, 36, 54, .5); border-radius: .9rem; padding: 1.5rem;
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.feat-card:hover {
  transform: translateY(-4px); border-color: rgba(255, 107, 53, .4);
  box-shadow: 0 22px 44px -22px rgba(0, 0, 0, .65);
}
.feat-card .ico {
  display: flex; align-items: center; justify-content: center;
  width: 2.75rem; height: 2.75rem; border-radius: .7rem;
  border: 1px solid var(--bg-line); background: var(--bg); color: var(--signal);
}
.feat-card .ico .icon { width: 1.35rem; height: 1.35rem; stroke-width: 1.75; }
.feat-card h3 { margin-top: 1rem; font-size: 1.12rem; }
.feat-card p { margin-top: .5rem; font-size: .93rem; color: var(--text-mut); }
.feat-card--hot {
  border-color: rgba(255, 107, 53, .45);
  background: linear-gradient(160deg, rgba(255, 107, 53, .09), rgba(26, 36, 54, .5));
}
.feat-card--hot .ico { color: var(--on-signal); background: var(--signal); border-color: transparent; }
.feat-card .hot-tag {
  position: absolute; top: -.6rem; right: 1rem;
  background: var(--signal); color: var(--on-signal);
  font-family: var(--font-display); font-weight: 600; font-size: .66rem;
  text-transform: uppercase; letter-spacing: .05em; padding: .2rem .5rem; border-radius: .35rem;
}

/* Persoenlicher Ansprechpartner (am Funnel) */
.contact-person { margin-top: 1.75rem; display: flex; align-items: center; gap: .9rem; }
.cp-avatar {
  position: relative; width: 3.25rem; height: 3.25rem; border-radius: 999px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center; overflow: hidden;
  background: linear-gradient(140deg, var(--signal), var(--signal-d));
  color: var(--on-signal); font-family: var(--font-display); font-weight: 700; font-size: 1.05rem;
  border: 2px solid var(--bg-line);
}
.cp-avatar img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 18%; }

/* ====================================================
   Ueber mich
   ==================================================== */
.about-grid { display: grid; gap: 2.5rem; align-items: center; }
@media (min-width: 860px) { .about-grid { grid-template-columns: 0.95fr 1.05fr; } }
.about-photo {
  position: relative; border-radius: 1.25rem; overflow: hidden;
  border: 1px solid var(--bg-line); aspect-ratio: 4 / 5;
  background: linear-gradient(140deg, var(--bg-line), var(--bg-elev));
  box-shadow: 0 34px 70px -34px rgba(0, 0, 0, .75);
}
.about-photo img { position: absolute; inset: 0; z-index: 2; width: 100%; height: 100%; object-fit: cover; display: block; }
.about-photo .ph-fallback {
  position: absolute; inset: 0; z-index: 1; display: flex; align-items: center; justify-content: center;
  color: var(--text-mut); font-family: var(--font-display); font-size: .85rem;
}
.about-photo::after {
  content: ""; position: absolute; left: 0; bottom: 0; width: 100%; height: 5px;
  background: var(--signal); transform: skewX(-24deg) translateX(-6px);
}
.about-text h2 { margin-top: 1.25rem; }
.about-text .story p { margin-top: 1rem; color: var(--text-mut); }
.about-creds { margin-top: 1.75rem; display: flex; flex-wrap: wrap; gap: .6rem; }
.cred {
  display: inline-flex; align-items: center; gap: .5rem;
  border: 1px solid var(--bg-line); background: rgba(26, 36, 54, .5);
  border-radius: 999px; padding: .45rem .85rem;
  font-family: var(--font-display); font-weight: 500; font-size: .82rem; color: var(--text-mut);
}
.cred .icon { width: 1rem; height: 1rem; color: var(--signal); flex-shrink: 0; }
.cred strong { color: var(--text); font-weight: 700; }
.about-awards { margin-top: 1.5rem; }
.about-awards img {
  display: block; width: 100%; max-width: 460px;
  border-radius: .6rem; border: 1px solid var(--bg-line);
}
.about-awards .cap { margin-top: .5rem; font-size: .78rem; color: var(--text-mut); }
.cp-label { font-family: var(--font-display); font-size: .78rem; text-transform: uppercase; letter-spacing: .06em; color: var(--text-mut); }
.cp-name { font-family: var(--font-display); font-weight: 600; color: var(--text); margin-top: .1rem; }

/* Gratis-Offer am Funnel */
.offer-list { margin-top: 1.6rem; display: grid; gap: .7rem; }
.offer-list li { display: flex; align-items: flex-start; gap: .65rem; font-size: .98rem; color: var(--text); }
.chk {
  display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0;
  width: 1.3rem; height: 1.3rem; border-radius: 999px; margin-top: .1rem;
  background: var(--signal); color: var(--on-signal);
}
.chk .icon { width: .85rem; height: .85rem; stroke-width: 3; }
.offer-scarcity {
  margin-top: 1.1rem; display: flex; align-items: center; gap: .5rem;
  font-size: .88rem; color: var(--text-mut);
}
.offer-scarcity .icon { width: 1rem; height: 1rem; color: var(--signal); flex-shrink: 0; }
.offer-scarcity strong { color: var(--signal); font-weight: 700; }

/* ---------- Sticky Mobile-Bar: Formular-CTA + WhatsApp ---------- */
.mobile-bar {
  position: fixed; inset: auto 0 0 0; z-index: 40;
  display: none;
  box-shadow: 0 -10px 30px -10px rgba(0,0,0,.55);
}
@media (max-width: 767px) {
  .mobile-bar { display: flex; }
  body { padding-bottom: 3.6rem; }
}
.mobile-bar a {
  display: flex; align-items: center; justify-content: center; gap: .5rem;
  padding: .9rem 1rem;
  padding-bottom: calc(.9rem + env(safe-area-inset-bottom, 0px));
  font-family: var(--font-display); font-weight: 600; font-size: .95rem;
  white-space: nowrap;
}
.mobile-bar-cta { flex: 1 1 0; background: var(--signal); color: var(--on-signal); }
.mobile-bar-wa { flex: 1 1 0; background: #25D366; color: #fff; }
.mobile-bar .icon { width: 1.05em; height: 1.05em; }
.mobile-bar-wa .wa { width: 1.35em; height: 1.35em; fill: #fff; }

/* ---------- Hero-Badge Float + Erfolgs-Animation ---------- */
.mockup-badge { animation: floaty 3.2s ease-in-out infinite; }
@keyframes floaty {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-5px); }
}

.thanks .check-circle { animation: pop .55s cubic-bezier(.22,1,.36,1); }
@keyframes pop {
  0%   { transform: scale(.6); opacity: 0; }
  60%  { transform: scale(1.08); }
  100% { transform: scale(1); opacity: 1; }
}
.thanks .check-circle .icon polyline {
  stroke-dasharray: 30;
  stroke-dashoffset: 30;
  animation: draw .5s .28s forwards ease-out;
}
@keyframes draw { to { stroke-dashoffset: 0; } }

/* ---------- Scroll-Reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  filter: blur(9px);
  transition:
    opacity .75s cubic-bezier(.22, 1, .36, 1),
    transform .75s cubic-bezier(.22, 1, .36, 1),
    filter .75s cubic-bezier(.22, 1, .36, 1);
}
.reveal.in { opacity: 1; transform: none; filter: blur(0); }

/* ---------- Reduced Motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
  .reveal { opacity: 1; transform: none; filter: none; }
}

.hidden { display: none !important; }

/* ====================================================
   Hintergrund-Grafiken pro Section (mit Dunkel-Overlay)
   Nutzung: <section class="section has-bg"> <img class="sec-bg" src="assets/bg/...jpg" alt="" aria-hidden="true" onerror="this.remove()"> ...
   ==================================================== */
.has-bg { position: relative; isolation: isolate; }
.has-bg .sec-bg {
  position: absolute; inset: 0; z-index: -2;
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.has-bg::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(15, 23, 42, .82), rgba(15, 23, 42, .9));
}
.has-bg > .container { position: relative; z-index: 1; }

/* ---------- Rechtsseiten (Impressum / Datenschutz) ---------- */
.legal { padding-top: 8rem; padding-bottom: 5rem; }
.legal .back {
  display: inline-flex; align-items: center; gap: .375rem;
  color: var(--text-mut); font-size: .9rem; transition: color .2s; margin-bottom: 2rem;
}
.legal .back:hover { color: var(--signal); }
.legal .back .icon { width: 1rem; height: 1rem; }
.legal h1 { font-size: clamp(2rem, 4vw, 2.75rem); line-height: 1.1; }
.legal h2 { font-size: 1.3rem; margin-top: 2.5rem; }
.legal h3 { font-size: 1.05rem; margin-top: 1.5rem; }
.legal p, .legal li { color: var(--text-mut); font-size: .98rem; margin-top: .75rem; }
.legal ul { margin-top: .75rem; padding-left: 1.1rem; list-style: disc; }
.legal li { margin-top: .375rem; }
.legal a { color: var(--sky); }
.legal a:hover { color: var(--text); }
.legal .todo {
  display: inline-block; background: rgba(255,107,53,.12); border: 1px dashed var(--signal);
  color: var(--text); padding: .1rem .4rem; border-radius: .25rem; font-size: .9em;
}
.legal .lead { margin-top: 1rem; color: var(--text-mut); }

/* ---------- Lokale Landingpages (Standorte) ---------- */
.lp-hero { padding-top: 8.5rem; }
.lp-hero-grid { display: grid; gap: 2.5rem; align-items: start; }
@media (min-width: 960px) { .lp-hero-grid { grid-template-columns: 1.05fr .95fr; align-items: center; } }
.lp-stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.75rem 1rem; text-align: center; }
@media (min-width: 760px) { .lp-stats { grid-template-columns: repeat(4, 1fr); } }
.lp-stat-num { display: block; font-family: var(--font-display); font-weight: 700; font-size: clamp(1.8rem, 4vw, 2.6rem); line-height: 1; color: var(--signal); }
.lp-stat-label { display: block; margin-top: .5rem; font-size: .88rem; line-height: 1.35; color: var(--text-mut); }
.ref-grid { display: grid; gap: 2.5rem; align-items: center; }
@media (min-width: 860px) { .ref-grid { grid-template-columns: 1fr 1fr; } }
.ref-list { display: grid; gap: 1.1rem; }
.ref-list li { display: flex; align-items: flex-start; gap: .7rem; font-size: .96rem; color: var(--text-mut); }
.ref-list li strong { display: block; margin-bottom: .15rem; color: var(--text); font-family: var(--font-display); font-weight: 600; }

/* ---------- Blog / Ratgeber ---------- */
.blog-grid { display: grid; gap: 1.5rem; margin-top: 2.5rem; }
@media (min-width: 700px) { .blog-grid { grid-template-columns: repeat(2, 1fr); } }
.blog-card {
  display: block; overflow: hidden; border: 1px solid var(--bg-line); background: rgba(26, 36, 54, .5);
  border-radius: 1rem;
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.blog-card:hover { transform: translateY(-4px); border-color: rgba(255, 107, 53, .4); box-shadow: 0 22px 44px -22px rgba(0, 0, 0, .65); }
.blog-card .card-img { aspect-ratio: 16 / 9; overflow: hidden; background: linear-gradient(140deg, var(--bg-line), var(--bg-elev)); }
.blog-card .card-img img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .4s ease; }
.blog-card:hover .card-img img { transform: scale(1.04); }
.blog-card .card-body { padding: 1.5rem; }
.blog-card h2 { font-size: 1.3rem; color: var(--text); line-height: 1.25; }
.blog-card p { margin-top: .6rem; color: var(--text-mut); font-size: .95rem; }
.blog-card .more { display: inline-block; margin-top: 1rem; color: var(--signal); font-family: var(--font-display); font-weight: 600; font-size: .9rem; }
.article .post-img { border-radius: 1rem; overflow: hidden; margin: 1.75rem 0 .5rem; border: 1px solid var(--bg-line); }
.article .post-img img { width: 100%; display: block; }
.article .lead { font-size: 1.2rem; color: var(--text); margin-top: 1.25rem; }
.article .post-meta { color: var(--text-mut); font-size: .85rem; margin-top: .5rem; font-family: var(--font-display); text-transform: uppercase; letter-spacing: .05em; }

/* Artikel mit Sidebar */
.article-layout { display: grid; gap: 2.5rem; margin-top: 1.5rem; align-items: start; }
@media (min-width: 980px) { .article-layout { grid-template-columns: minmax(0, 1fr) 320px; gap: 3rem; } }
.article-layout .article { max-width: 720px; }
.article-side { display: grid; gap: 1.25rem; }
@media (min-width: 980px) { .article-side { position: sticky; top: 6.5rem; } }
.side-card { border: 1px solid var(--bg-line); border-radius: 1rem; padding: 1.5rem; background: rgba(26, 36, 54, .55); }
.side-card.accent { border-color: rgba(255, 107, 53, .4); background: linear-gradient(160deg, rgba(255, 107, 53, .12), rgba(26, 36, 54, .55)); }
.side-card .side-eyebrow { display: block; font-family: var(--font-display); font-size: .72rem; font-weight: 600; text-transform: uppercase; letter-spacing: .08em; color: var(--signal); }
.side-card h3 { font-family: var(--font-display); font-size: 1.12rem; color: var(--text); margin: .5rem 0; line-height: 1.25; }
.side-card p { color: var(--text-mut); font-size: .9rem; margin: 0 0 1.1rem; }
/* Schwebende Fragezeichen im FAQ-Bereich */
.faq-section { position: relative; overflow: hidden; }
.faq-section .container { position: relative; z-index: 1; }
.faq-deco { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.faq-deco .q {
  position: absolute; font-family: var(--font-display); font-weight: 700; line-height: 1;
  color: var(--signal); opacity: .16; user-select: none;
  animation: qfloat 7s ease-in-out infinite;
}
.faq-deco .q1 { left: 4%;  top: 20%; font-size: 5rem;   animation-delay: 0s; }
.faq-deco .q2 { left: 9%;  top: 56%; font-size: 3rem;   opacity: .12; animation-delay: 1.6s; }
.faq-deco .q3 { left: 2.5%; top: 80%; font-size: 4rem;  opacity: .11; animation-delay: .8s; }
.faq-deco .q4 { right: 5%; top: 26%; font-size: 6.5rem; animation-delay: .5s; }
.faq-deco .q5 { right: 9%; top: 64%; font-size: 3.5rem; opacity: .12; animation-delay: 2.2s; }
@keyframes qfloat {
  0%, 100% { transform: translateY(0) rotate(-6deg); }
  50% { transform: translateY(-18px) rotate(6deg); }
}
@media (max-width: 860px) { .faq-deco { display: none; } }
@media (prefers-reduced-motion: reduce) { .faq-deco .q { animation: none; } }

/* Nummerierte Ablauf-Schritte (Standort-Seiten) */
.process { list-style: none; display: grid; gap: 1rem; max-width: 48rem; margin-top: 2.25rem; }
@media (min-width: 720px) { .process { grid-template-columns: 1fr 1fr; gap: 1.1rem; } }
.process li {
  display: flex; gap: 1rem; align-items: flex-start;
  background: rgba(26, 36, 54, .45); border: 1px solid var(--bg-line);
  border-radius: 1rem; padding: 1.25rem 1.35rem;
}
.process .pnum {
  position: relative;
  flex: 0 0 auto; width: 2.6rem; height: 2.6rem; border-radius: 50%;
  display: grid; place-items: center;
  color: var(--signal); background: rgba(255, 107, 53, .12); border: 1px solid rgba(255, 107, 53, .4);
}
.process .pnum svg { width: 1.25rem; height: 1.25rem; }
.process .pnum::after {
  content: attr(data-n);
  position: absolute; top: -.35rem; right: -.35rem;
  width: 1.15rem; height: 1.15rem; border-radius: 50%;
  display: grid; place-items: center;
  font-family: var(--font-display); font-weight: 700; font-size: .68rem;
  color: var(--on-signal); background: var(--signal);
}
.process .ptitle { display: block; font-family: var(--font-display); font-weight: 600; font-size: 1.08rem; color: var(--text); margin-bottom: .3rem; }
.process .pdesc { color: var(--text-mut); font-size: .95rem; line-height: 1.55; }

/* Gewerke-Kacheln mit Icons */
.gewerke-grid { display: grid; grid-template-columns: 1fr; gap: .85rem; margin-top: 2rem; max-width: 47rem; }
@media (min-width: 620px) { .gewerke-grid { grid-template-columns: 1fr 1fr; } }
.gw { display: flex; align-items: center; gap: .9rem; background: rgba(26, 36, 54, .45); border: 1px solid var(--bg-line); border-radius: .8rem; padding: .85rem 1rem; font-size: .95rem; color: var(--text); }
.gw-ic { flex: 0 0 auto; width: 2.5rem; height: 2.5rem; border-radius: .65rem; display: grid; place-items: center; color: var(--signal); background: rgba(255, 107, 53, .1); border: 1px solid rgba(255, 107, 53, .3); }
.gw-ic svg { width: 1.3rem; height: 1.3rem; }

/* Hervorgehobene Callout-Box im Artikel */
.callout { display: flex; gap: 1rem; align-items: flex-start; margin: 1.75rem 0; padding: 1.4rem 1.5rem; border-radius: 1rem; border: 1px solid rgba(255, 107, 53, .4); background: linear-gradient(160deg, rgba(255, 107, 53, .12), rgba(26, 36, 54, .5)); }
.callout-icon { flex: 0 0 auto; width: 2.6rem; height: 2.6rem; display: grid; place-items: center; border-radius: .7rem; background: rgba(255, 107, 53, .18); color: var(--signal); }
.callout-icon svg { width: 1.4rem; height: 1.4rem; }
.callout strong { display: block; margin-bottom: .35rem; font-family: var(--font-display); font-size: 1.12rem; color: var(--text); }
.callout p { margin: 0; color: var(--text-mut); font-size: .96rem; }

.side-card .side-img { border-radius: .6rem; overflow: hidden; margin: 0 0 1rem; border: 1px solid var(--bg-line); }
.side-card .side-img img { width: 100%; display: block; }
.article-side .btn { width: 100%; }
.article-side .btn-primary { color: var(--on-signal); }
.article-side .btn-secondary { color: var(--text); }
.lp-cities { display: flex; flex-wrap: wrap; gap: .6rem; margin-top: 1.5rem; }
.lp-cities a {
  border: 1px solid var(--bg-line); background: rgba(26, 36, 54, .5);
  border-radius: 999px; padding: .45rem .9rem;
  font-family: var(--font-display); font-weight: 500; font-size: .9rem; color: var(--text);
  transition: border-color .2s, color .2s;
}
.lp-cities a:hover { border-color: var(--signal); color: var(--signal); }
.footer-standorte { display: flex; flex-direction: column; gap: .75rem; }
.footer-standorte a { font-size: .95rem; color: var(--text-mut); transition: color .2s; }
.footer-standorte a:hover { color: var(--signal); }

/* Honeypot - fuer Menschen unsichtbar, Bots fuellen es aus */
.hp-field {
  position: absolute !important;
  left: -9999px !important;
  top: auto;
  width: 1px; height: 1px;
  overflow: hidden;
}
