/* ==========================================================
   MAY · klima. wärme. solar.
   Apple-inspired. Premium. Bold.
   ========================================================== */

:root {
  --black: #000000;
  --ink: #0b0b0c;
  --white: #ffffff;
  --paper: #f5f5f7;
  --paper-2: #ebebed;
  --line: #d2d2d7;
  --muted: #6e6e73;
  --muted-light: rgba(255, 255, 255, 0.62);
  --max: 1440px;
  --radius: 22px;
  --ease: cubic-bezier(0.28, 0.11, 0.32, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Inter', Helvetica, Arial, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 17px;
  /* Use clip instead of hidden — preserves position:sticky inside. */
  overflow-x: clip;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; transition: opacity .3s var(--ease); }
a:hover { opacity: 0.7; }

/* ===== Layout ===== */
.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 3vw, 3rem);
}

.container-sm { max-width: 1100px; margin: 0 auto; padding: 0 clamp(1.25rem, 3vw, 3rem); }

section { padding: clamp(6rem, 14vw, 12rem) 0; }

.section-narrow {
  max-width: 920px;
  margin: 0 auto;
  text-align: center;
}

/* ===== Typography — Apple bold ===== */
.eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1.5rem;
}

/* Massive display for hero */
.display {
  font-size: clamp(3rem, 11vw, 10rem);
  font-weight: 800;
  line-height: 0.93;
  letter-spacing: -0.055em;
  text-transform: uppercase;
}

.headline {
  font-size: clamp(2.25rem, 6vw, 5.5rem);
  font-weight: 800;
  line-height: 0.98;
  letter-spacing: -0.04em;
  text-transform: uppercase;
}

.headline-md {
  font-size: clamp(1.75rem, 4vw, 3.25rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.03em;
  text-transform: uppercase;
}

.sub-headline {
  font-size: clamp(1.15rem, 1.9vw, 1.55rem);
  font-weight: 400;
  line-height: 1.3;
  letter-spacing: -0.01em;
  color: var(--muted);
  margin-top: 1.5rem;
  font-style: italic;
}

.lead {
  font-size: clamp(1.05rem, 1.4vw, 1.2rem);
  color: var(--muted);
  max-width: 42em;
  line-height: 1.55;
}

.label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink);
}

/* ===== Header / Nav ===== */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  transition: background .3s var(--ease), border-color .3s var(--ease);
}

.site-header.on-dark {
  background: rgba(0, 0, 0, 0.6);
  border-bottom-color: rgba(255,255,255,0.1);
}
.site-header.on-dark .logo { color: var(--white); }
.site-header.on-dark .nav-links a { color: var(--white); }
.site-header.on-dark .nav-toggle span { background: var(--white); }

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 3vw, 3rem);
}

.logo { display: inline-flex; align-items: center; color: var(--ink); }
.logo img, .logo svg { height: 32px; width: auto; }

.nav-links {
  display: flex;
  gap: 2.75rem;
  list-style: none;
  align-items: center;
}
.nav-links a {
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--ink);
  opacity: 0.88;
  transition: opacity .25s var(--ease);
}
.nav-links a:hover { opacity: 1; }
.nav-links a.active { opacity: 1; font-weight: 600; }

/* Nav CTA — Projekt-Check als hervorgehobener Button */
.nav-links a.nav-cta {
  background: var(--ink);
  color: var(--white) !important;
  padding: 0.55rem 1.1rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: -0.005em;
  opacity: 1 !important;
  transition: all .25s var(--ease);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  white-space: nowrap;
}
.nav-links a.nav-cta:hover {
  background: #000;
  transform: translateY(-1px);
  box-shadow: 0 6px 16px -4px rgba(0,0,0,0.25);
}
.nav-links a.nav-cta.active {
  background: var(--white);
  color: var(--ink) !important;
  border: 1.5px solid var(--ink);
}
.site-header.on-dark .nav-links a.nav-cta {
  background: var(--white);
  color: var(--ink) !important;
}
.site-header.on-dark .nav-links a.nav-cta:hover {
  background: rgba(255,255,255,0.92);
}

/* HEADER PHONE-CTA — immer sichtbar, auch mobil */
.nav-right {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}
.nav-phone {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.55rem 1.05rem 0.55rem 0.85rem;
  background: var(--ink);
  color: var(--white) !important;
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: -0.005em;
  text-decoration: none;
  transition: all .25s var(--ease);
  white-space: nowrap;
  box-shadow: 0 6px 18px -6px rgba(0,0,0,0.35);
}
.nav-phone:hover {
  background: #000;
  transform: translateY(-1px);
  box-shadow: 0 10px 24px -6px rgba(0,0,0,0.45);
  opacity: 1;
}
.nav-phone svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}
.nav-phone-text { display: inline-block; }
.site-header.on-dark .nav-phone {
  background: var(--white);
  color: var(--ink) !important;
}

/* Mobile: nur Icon-Button als Anruf-Shortcut */
@media (max-width: 880px) {
  .nav-phone {
    padding: 0.55rem 0.7rem;
    font-size: 0.88rem;
  }
  .nav-phone-text {
    display: none;
  }
  .nav-phone svg { width: 18px; height: 18px; }
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--ink);
  margin: 4px 0;
  transition: transform .3s var(--ease);
}

main { padding-top: 68px; }

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 1rem 1.85rem;
  border-radius: 980px;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all .3s var(--ease);
  font-family: inherit;
}
.btn-primary { background: var(--ink); color: var(--white); }
.btn-primary:hover { background: var(--black); transform: translateY(-1px); opacity: 1; }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn-ghost:hover { background: var(--ink); color: var(--white); opacity: 1; }
.btn-ghost-light { background: transparent; color: var(--white); border-color: var(--white); }
.btn-ghost-light:hover { background: var(--white); color: var(--ink); opacity: 1; }

/* ===== Dark sections ===== */
.dark { background: var(--black); color: var(--white); }
.dark .eyebrow { color: var(--muted-light); }
.dark .lead { color: var(--muted-light); }
.dark .label { color: var(--white); }

/* ===== HERO — cinematic ===== */
.hero {
  position: relative;
  min-height: 92vh;
  padding: clamp(4rem, 8vw, 7rem) 0 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(60% 60% at 50% 10%, rgba(0,0,0,0.05), transparent 60%),
    radial-gradient(80% 80% at 50% 90%, var(--paper) 0%, var(--white) 70%);
  z-index: -1;
}

.hero .container { max-width: 1400px; }

.hero-lead-tag {
  font-size: 0.78rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 2rem;
}

.hero-sub {
  margin-top: 2rem;
  font-size: clamp(1.1rem, 1.6vw, 1.35rem);
  color: var(--muted);
  font-weight: 400;
  letter-spacing: -0.01em;
}

.hero-actions {
  margin-top: 2.5rem;
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Hero trust badge */
.hero-trust {
  margin-top: 2rem;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.88rem;
  color: var(--muted);
  letter-spacing: -0.005em;
}
.hero-trust-stars {
  color: #f2b600;
  letter-spacing: 0.1em;
  font-size: 1rem;
  line-height: 1;
}
.hero-trust-text strong {
  color: var(--ink);
  font-weight: 600;
}

.hero-stage {
  margin: 5rem auto 0;
  position: relative;
  width: min(90%, 1100px);
  aspect-ratio: 16/9;
  border-radius: 28px;
  background:
    radial-gradient(120% 100% at 50% 0%, #ffffff 0%, #f3f3f5 45%, #d9d9dd 100%);
  overflow: hidden;
  box-shadow:
    0 70px 140px -30px rgba(0, 0, 0, 0.18),
    0 20px 40px -10px rgba(0, 0, 0, 0.08);
}

.hero-stage .pump {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: var(--ink);
}
.hero-stage .pump svg {
  width: min(540px, 58%);
  filter: drop-shadow(0 40px 50px rgba(0, 0, 0, 0.18));
  animation: float 8s ease-in-out infinite;
}

/* Hero image (real photo, overlays the placeholder) */
.hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 2;
}
.hero-stage:has(.hero-img:not([style*="display: none"])) .photo-title {
  display: none;
}
.hero-stage.hero-frame:has(.hero-img:not([style*="display: none"])) .hero-photo-caption {
  z-index: 3;
  background: linear-gradient(to top, rgba(0,0,0,0.6), transparent);
  padding: 2rem 2rem 1.5rem;
  border-bottom-left-radius: inherit;
  border-bottom-right-radius: inherit;
  left: 0; right: 0; bottom: 0;
}

/* Hero frame (premium photo placeholder, dark) */
.hero-stage.hero-frame {
  background: linear-gradient(135deg, #1c1d1f 0%, #0a0b0c 55%, #000 100%);
  color: var(--white);
  padding: 0;
  isolation: isolate;
  overflow: hidden;
}
.hero-stage.hero-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(55% 38% at 62% 22%, rgba(255,255,255,0.12), transparent 70%);
  z-index: 1;
  pointer-events: none;
}
.hero-stage.hero-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0  0 0 0 0 0  0 0 0 0 0  0 0 0 0.6 0'/></filter><rect width='200' height='200' filter='url(%23n)' opacity='0.5'/></svg>");
  opacity: 0.12;
  mix-blend-mode: overlay;
  z-index: 2;
  pointer-events: none;
}
.hero-stage.hero-frame .photo-title { z-index: 3; }
.hero-stage.hero-frame .photo-title .pt-name {
  font-size: clamp(1.1rem, 2vw, 1.75rem);
}
.hero-stage.hero-frame .hero-photo-caption {
  position: absolute;
  left: clamp(1.25rem, 3vw, 2.5rem);
  bottom: clamp(1.25rem, 3vw, 2rem);
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  z-index: 3;
}
.hero-stage.hero-frame .hero-photo-caption .label { color: #fff; font-size: 0.72rem; }
.hero-stage.hero-frame .hero-photo-caption .caption-sub {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.75);
  letter-spacing: -0.01em;
}

/* Legacy photo stage (for backward compat) */
.hero-stage.photo {
  background: #1a1b1d;
  padding: 0;
}
.hero-stage .hero-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* Soft ground shadow (only for non-photo stage) */
.hero-stage:not(.photo)::after {
  content: "";
  position: absolute;
  left: 20%;
  right: 20%;
  bottom: 8%;
  height: 14px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(0,0,0,0.28), transparent 70%);
  filter: blur(6px);
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}

/* ===== Marquee (scrolling text band) ===== */
.marquee {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 2rem 0;
  overflow: hidden;
  background: var(--white);
}
.marquee-track {
  display: flex;
  gap: 4rem;
  animation: marquee 35s linear infinite;
  white-space: nowrap;
  align-items: center;
}
.marquee-item {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  gap: 4rem;
}
.marquee-item .dot {
  display: inline-block;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--ink);
}
.marquee.dark-band { background: var(--black); color: var(--white); border-color: rgba(255,255,255,0.1); }
.marquee.dark-band .marquee-item { color: var(--white); }
.marquee.dark-band .marquee-item .dot { background: var(--white); }

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ===== Statement sections — huge display text ===== */
.statement {
  text-align: center;
  padding: clamp(6rem, 16vw, 14rem) 0;
}
.statement .big {
  font-size: clamp(2.5rem, 10vw, 9rem);
  font-weight: 800;
  letter-spacing: -0.055em;
  line-height: 0.92;
  text-transform: uppercase;
}
.statement .sub {
  margin-top: 2rem;
  font-size: clamp(1.1rem, 1.8vw, 1.4rem);
  color: var(--muted);
  max-width: 50ch;
  margin-left: auto;
  margin-right: auto;
  font-weight: 400;
}
.statement.dark .sub { color: var(--muted-light); }

/* Strike text effect */
.line-em { display: inline-block; }
.line-em em {
  font-style: italic;
  font-weight: 300;
  letter-spacing: -0.04em;
}

/* ===== Stats Row ===== */
.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  padding-top: 3rem;
  border-top: 1px solid var(--line);
}
.stat-value {
  font-size: clamp(2.25rem, 5vw, 4rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
}
.stat-label {
  font-size: 0.85rem;
  color: var(--muted);
  margin-top: 0.75rem;
  letter-spacing: -0.01em;
}
.dark .stats { border-color: rgba(255, 255, 255, 0.12); }
.dark .stat-label { color: var(--muted-light); }

/* ===== Pills ===== */
.pills {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 5rem;
}
.pill { text-align: center; }
.pill-icon { width: 52px; height: 52px; margin: 0 auto 1.5rem; color: var(--ink); }
.pill h3 {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}
.pill p {
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.5;
}
.dark .pill-icon { color: var(--white); }
.dark .pill p { color: var(--muted-light); }

/* ===== Flow 01 02 03 04 ===== */
.flow {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.5rem;
  margin-top: 5rem;
  position: relative;
}
.flow-step { text-align: center; position: relative; }
.flow-num { font-size: 0.8rem; font-weight: 700; letter-spacing: 0.18em; color: var(--muted); margin-bottom: 1.5rem; }
.dark .flow-num { color: var(--muted-light); }
.flow-icon { width: 56px; height: 56px; margin: 0 auto 1.5rem; }
.flow-step h3 { font-size: 0.78rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; margin-bottom: 0.75rem; }
.flow-step p { font-size: 0.92rem; line-height: 1.5; color: var(--muted); max-width: 22ch; margin: 0 auto; }
.dark .flow-step p { color: var(--muted-light); }
.flow-step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: calc(1.5rem + 14px + 28px);
  left: calc(50% + 28px);
  right: calc(-50% + 28px);
  height: 1px;
  background-image: linear-gradient(to right, currentColor 30%, transparent 30%);
  background-size: 6px 1px;
  opacity: 0.3;
}

/* ===== Variant Cards (Apple-style, photo-first) ===== */
.variants-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 5rem;
}
.vcard {
  background: var(--paper);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .5s var(--ease-out), box-shadow .5s var(--ease-out);
}
.vcard:hover {
  transform: translateY(-6px);
  box-shadow: 0 40px 80px -20px rgba(0,0,0,0.18);
}

/* Premium photo placeholder (vcard + svc shared styles via .photo-frame) */
.photo-frame,
.vcard-media,
.svc-media {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.photo-frame::before,
.vcard-media::before,
.svc-media::before {
  /* soft key-light spot */
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(60% 40% at 60% 20%, rgba(255,255,255,0.35), transparent 70%);
  z-index: 1;
  pointer-events: none;
}
.photo-frame::after,
.vcard-media::after,
.svc-media::after {
  /* fine noise/grain texture */
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0  0 0 0 0 0  0 0 0 0 0  0 0 0 0.6 0'/></filter><rect width='200' height='200' filter='url(%23n)' opacity='0.5'/></svg>");
  opacity: 0.16;
  mix-blend-mode: overlay;
  z-index: 2;
  pointer-events: none;
}

/* Media area (photo placeholder) */
.vcard-media {
  aspect-ratio: 16/10;
  display: grid;
  place-items: center;
}
.vcard-media-light {
  background: linear-gradient(135deg, #f7f7f8 0%, #e4e4e8 60%, #cbcbd0 100%);
  color: var(--ink);
}
.vcard-media-dark {
  background: linear-gradient(135deg, #1c1d1f 0%, #0a0b0c 60%, #000 100%);
  color: var(--white);
}
.vcard-media-dark::before {
  background: radial-gradient(55% 38% at 60% 22%, rgba(255,255,255,0.12), transparent 70%);
}

/* Central product name inside placeholder */
.photo-title {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  z-index: 3;
  text-align: center;
  padding: 2rem;
}
.photo-title .pt-kicker {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  opacity: 0.55;
  margin-bottom: 0.75rem;
}
.photo-title .pt-name {
  display: block;
  font-size: clamp(1rem, 1.8vw, 1.5rem);
  font-weight: 300;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.85;
}

/* Small chip */
.vcard-chip, .svc-media .vcard-chip {
  position: absolute;
  bottom: 1.25rem;
  right: 1.25rem;
  background: rgba(255,255,255,0.9);
  color: var(--ink);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 0.42rem 0.8rem;
  border-radius: 980px;
  backdrop-filter: blur(8px);
  z-index: 3;
}
.vcard-media-dark .vcard-chip,
.svc-media-dark .vcard-chip {
  background: rgba(0,0,0,0.55);
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.18);
}

/* Body */
.vcard-body {
  padding: clamp(2rem, 3.5vw, 3rem);
  display: flex;
  flex-direction: column;
  flex: 1;
}
.vcard-num {
  font-size: 0.78rem;
  letter-spacing: 0.25em;
  color: var(--muted);
  margin-bottom: 1.5rem;
  font-weight: 600;
}
.vcard-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}
.vcard-tag {
  color: var(--ink);
  font-style: italic;
  font-weight: 400;
  font-size: 1.05rem;
  margin-bottom: 1.25rem;
  letter-spacing: -0.01em;
}
.vcard-copy {
  font-size: 0.98rem;
  color: var(--muted);
  line-height: 1.55;
  margin-bottom: 2rem;
}

/* Specs */
.vcard-specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem 1.5rem;
  border-top: 1px solid var(--line);
  padding-top: 1.5rem;
  margin-top: auto;
}
.vcard-specs div { display: flex; flex-direction: column; gap: 0.2rem; }
.vcard-specs dt {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
}
.vcard-specs dd { font-size: 0.95rem; font-weight: 500; color: var(--ink); }

/* Dark variant */
.vcard.vcard-dark { background: var(--black); color: var(--white); }
.vcard.vcard-dark .vcard-title { color: var(--white) !important; }
.vcard.vcard-dark .vcard-num { color: rgba(255,255,255,0.7) !important; }
.vcard.vcard-dark .vcard-tag { color: var(--white) !important; }
.vcard.vcard-dark .vcard-copy { color: rgba(255,255,255,0.9) !important; }
.vcard.vcard-dark .vcard-specs { border-color: rgba(255,255,255,0.12); }
.vcard.vcard-dark .vcard-specs dt { color: rgba(255,255,255,0.7) !important; }
.vcard.vcard-dark .vcard-specs dd { color: var(--white) !important; }

/* Area image (when real photos are present, they cover the placeholder) */
.area-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 2;
  transition: transform .5s var(--ease-out);
}
.area:hover .area-img { transform: scale(1.03); }
/* Hide placeholder text when image is present */
.area-media:has(.area-img:not([style*="display: none"])) .photo-title {
  display: none;
}
.area-media:has(.area-img:not([style*="display: none"])) .vcard-chip {
  display: none;
}

/* ===== Bereiche / Areas (4 equal cards on homepage) ===== */
.areas {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-top: 5rem;
}
.area {
  display: flex;
  flex-direction: column;
  background: var(--paper);
  border-radius: var(--radius);
  overflow: hidden;
  text-decoration: none;
  color: var(--ink);
  transition: transform .5s var(--ease-out), box-shadow .5s var(--ease-out);
}
.area:hover {
  transform: translateY(-6px);
  box-shadow: 0 40px 80px -20px rgba(0,0,0,0.18);
  opacity: 1;
}
@media (max-width: 1100px) {
  .areas { grid-template-columns: repeat(2, 1fr); }
}
.area-media {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: linear-gradient(135deg, #1c1d1f 0%, #0a0b0c 60%, #000 100%);
  color: var(--white);
  display: grid;
  place-items: center;
  isolation: isolate;
}
.area-media .photo-title .pt-kicker,
.area-media .photo-title .pt-name { color: var(--white); }
.area:nth-child(2) .area-media,
.area:nth-child(4) .area-media {
  background: linear-gradient(135deg, #f7f7f8 0%, #e4e4e8 60%, #cbcbd0 100%);
  color: var(--ink);
}
.area-media::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(55% 38% at 60% 22%, rgba(255,255,255,0.12), transparent 70%);
  z-index: 1; pointer-events: none;
}
.area:nth-child(2) .area-media::before,
.area:nth-child(4) .area-media::before {
  background: radial-gradient(60% 40% at 60% 20%, rgba(255,255,255,0.35), transparent 70%);
}
.area-media::after {
  content: "";
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0  0 0 0 0 0  0 0 0 0 0  0 0 0 0.6 0'/></filter><rect width='200' height='200' filter='url(%23n)' opacity='0.5'/></svg>");
  opacity: 0.14;
  mix-blend-mode: overlay;
  z-index: 2; pointer-events: none;
}
.area-media .vcard-chip {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  z-index: 3;
}
.area:nth-child(odd) .area-media .vcard-chip {
  background: rgba(0,0,0,0.55);
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.18);
}

.area-body {
  padding: clamp(2rem, 3.5vw, 3rem);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  flex: 1;
}
.area-num {
  font-size: 0.78rem;
  letter-spacing: 0.25em;
  color: var(--muted);
  font-weight: 600;
}
.area-title {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1;
  text-transform: uppercase;
}
.area-copy {
  font-size: 0.98rem;
  color: var(--muted);
  line-height: 1.55;
}
.area-link {
  margin-top: auto;
  padding-top: 1rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.area:hover .area-link { text-decoration: underline; text-underline-offset: 4px; }

/* ==========================================================
   HOMEPAGE — BRAND-FIRST HERO
   Hero ohne Formular, mit großem Visual-Slot rechts.
   Formular kommt in eigener Sektion weiter unten.
   ========================================================== */
.hero-brand {
  padding: clamp(5rem, 9vw, 7rem) 0 clamp(3rem, 6vw, 5rem);
  background: linear-gradient(180deg, #f7f7f8 0%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}
.hero-brand::before {
  content: "";
  position: absolute;
  top: -20%; right: -10%;
  width: 60vmin; height: 60vmin;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,180,120,0.08), transparent 70%);
  filter: blur(60px);
  pointer-events: none;
  z-index: 0;
}
.hero-brand .container { position: relative; z-index: 1; }

.hb-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: center;
}

.hb-content { padding-top: clamp(1rem, 3vw, 2rem); }
.hb-h1 {
  font-size: clamp(2.2rem, 5.5vw, 4.2rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.04em;
  margin-bottom: 1.5rem;
  color: var(--ink);
}

/* HERO BRUTAL — Value-Prop-Power */
.hb-eyebrow-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.45rem 0.95rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 16px rgba(0,0,0,0.04);
}
.hb-eyebrow-dot {
  width: 7px;
  height: 7px;
  background: #25D366;
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(37,211,102,0.5);
  animation: hb-eyebrow-pulse 2.4s infinite;
}
@keyframes hb-eyebrow-pulse {
  0% { box-shadow: 0 0 0 0 rgba(37,211,102,0.5); }
  70% { box-shadow: 0 0 0 8px rgba(37,211,102,0); }
  100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}

.hb-h1-power {
  font-size: clamp(2.6rem, 6.8vw, 5.4rem);
  line-height: 0.96;
  letter-spacing: -0.045em;
  margin-bottom: 1.5rem;
}
.hb-h1-power .hb-word {
  display: inline-block;
  color: var(--ink);
  margin-right: 0.15em;
}
.hb-h1-tag {
  display: block;
  font-size: 0.42em;
  font-weight: 500;
  font-style: italic;
  letter-spacing: -0.02em;
  color: var(--muted);
  margin-top: 0.5em;
  line-height: 1.2;
  background: none !important;
  -webkit-text-fill-color: var(--muted) !important;
}

.hb-power-sub {
  font-size: clamp(1.05rem, 1.5vw, 1.2rem);
  color: var(--ink);
  line-height: 1.55;
  margin-bottom: 2.25rem;
  max-width: 52ch;
}
.hb-power-sub strong { font-weight: 700; }

/* PROOF STRIP — 4 Zahlen brutal nebeneinander */
.hb-proof-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  gap: 0;
  padding: 1.4rem 1.6rem;
  margin: 0 0 2rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow:
    0 12px 32px -8px rgba(0,0,0,0.06),
    inset 0 1px 0 rgba(255,255,255,0.5);
}
.hb-proof {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  min-width: 110px;
  padding: 0 1rem;
}
.hb-proof strong {
  font-size: clamp(1.5rem, 2.5vw, 1.95rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1;
  color: var(--ink);
  margin-bottom: 0.3rem;
}
.hb-proof span {
  font-size: 0.78rem;
  color: var(--muted);
  font-weight: 500;
  letter-spacing: 0.02em;
  line-height: 1.3;
}
.hb-proof-sep {
  width: 1px;
  background: var(--line);
  margin: 0.25rem 0;
}
@media (max-width: 720px) {
  .hb-proof-strip { padding: 1rem; gap: 0.75rem; }
  .hb-proof { min-width: 45%; padding: 0.5rem 0.5rem; }
  .hb-proof-sep { display: none; }
}

/* Service Chips — 4 horizontal nebeneinander */
.hb-services {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.55rem;
  margin: 0 0 1.75rem;
  max-width: 520px;
}
@media (max-width: 560px) {
  .hb-services { grid-template-columns: 1fr; max-width: 100%; }
}
.hb-service-chip {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.75rem 1rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--ink);
  text-decoration: none;
  transition: all .25s var(--ease);
  letter-spacing: -0.005em;
}
.hb-service-chip:hover {
  background: var(--ink);
  color: var(--white);
  border-color: var(--ink);
  transform: translateX(4px);
  opacity: 1;
}
.hb-chip-num {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--muted);
  padding-right: 0.65rem;
  border-right: 1px solid var(--line);
  transition: all .25s var(--ease);
}
.hb-service-chip:hover .hb-chip-num {
  color: rgba(255,255,255,0.6);
  border-right-color: rgba(255,255,255,0.2);
}
.hb-chip-arrow {
  margin-left: auto;
  font-size: 1.1rem;
  font-weight: 300;
  opacity: 0.5;
  transition: transform .25s var(--ease), opacity .25s var(--ease);
}
.hb-service-chip:hover .hb-chip-arrow {
  opacity: 1;
  transform: translateX(3px);
}
.hb-h1-region {
  display: block;
  font-size: 0.55em;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--muted);
  margin-top: 0.45em;
  font-style: italic;
  line-height: 1.2;
}
.hb-sub {
  font-size: clamp(1.05rem, 1.5vw, 1.18rem);
  color: var(--ink);
  line-height: 1.55;
  margin-bottom: 2rem;
  max-width: 44ch;
}
.hb-sub strong { font-weight: 700; }

.hb-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2rem;
}
.hb-ctas .btn-konv svg { width: 18px; height: 18px; }

/* Hero Visual Slot (rechte Spalte) */
.hb-visual {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: 24px;
  background: linear-gradient(135deg, #1c1d1f 0%, #0a0b0c 60%, #000 100%);
  overflow: hidden;
  isolation: isolate;
  box-shadow:
    0 60px 120px -40px rgba(0,0,0,0.35),
    0 20px 40px -10px rgba(0,0,0,0.15);
}
.hb-visual::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(55% 38% at 60% 22%, rgba(255,255,255,0.14), transparent 70%);
  z-index: 1; pointer-events: none;
}
.hb-visual::after {
  content: "";
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0  0 0 0 0 0  0 0 0 0 0  0 0 0 0.6 0'/></filter><rect width='200' height='200' filter='url(%23n)' opacity='0.5'/></svg>");
  opacity: 0.14;
  mix-blend-mode: overlay;
  z-index: 2; pointer-events: none;
}
.hb-img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
}
.hb-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0) 50%, rgba(0,0,0,0.5) 100%);
  z-index: 3;
  pointer-events: none;
}
.hb-photo-title {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  z-index: 3;
  text-align: center;
  padding: 2rem;
  color: var(--white);
}
.hb-photo-kicker {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  opacity: 0.55;
  margin-bottom: 0.75rem;
}
.hb-photo-name {
  display: block;
  font-size: clamp(1.1rem, 1.8vw, 1.5rem);
  font-weight: 300;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.9;
}
.hb-visual:has(.hb-img:not([style*="display: none"])) .hb-photo-title { display: none; }
.hb-photo-caption {
  position: absolute;
  left: clamp(1.5rem, 3vw, 2rem);
  bottom: clamp(1.5rem, 3vw, 2rem);
  color: var(--white);
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  z-index: 4;
}
.hb-photo-caption .label { color: var(--white); font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase; font-weight: 600; }
.hb-photo-caption .caption-sub { font-size: 0.85rem; color: rgba(255,255,255,0.75); letter-spacing: -0.005em; }

/* ==========================================================
   LEAD-FORM-SECTION — eigener prominenter Block in Seitenmitte
   ========================================================== */
.lead-form-section {
  background: var(--paper);
  padding: clamp(5rem, 10vw, 8rem) 0;
}
.lf-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}
.lf-intro { display: flex; flex-direction: column; gap: 1rem; }
.lf-promises {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
}
.lf-promise { display: flex; flex-direction: column; gap: 0.25rem; }
.lf-promise-num {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--ink);
}
.lf-promise-text {
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
}
.lf-direct {
  margin-top: 2rem;
  padding: 1.5rem;
  background: var(--white);
  border-radius: 14px;
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.lf-direct-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}
.lf-direct-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--ink);
  text-decoration: none;
  padding: 0.55rem 0.85rem;
  background: var(--paper);
  border-radius: 999px;
  border: 1px solid var(--line);
  transition: all .25s var(--ease);
}
.lf-direct-link svg { width: 16px; height: 16px; }
.lf-direct-link:hover {
  background: var(--ink);
  color: var(--white);
  border-color: var(--ink);
  opacity: 1;
}
.lf-direct-wa { color: #1e8e4e; border-color: rgba(37,211,102,0.3); background: rgba(37,211,102,0.06); }
.lf-direct-wa:hover { background: #25D366; color: #fff; border-color: #25D366; }

.lf-form .qf-card h3 {
  font-size: clamp(1.5rem, 2.5vw, 1.85rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.05;
  color: var(--ink);
  margin-bottom: 0.5rem;
}

/* ==========================================================
   KLIMA-PRIVATKUNDEN-LEAD-PAGE
   Conversion-fokussiert, wärmer als der Rest der Site,
   Apple-DNA bleibt erhalten — aber persönlicher.
   ========================================================== */

.hero-konv {
  padding: clamp(5rem, 9vw, 7rem) 0 clamp(3rem, 6vw, 5rem);
  background: linear-gradient(180deg, #f7f7f8 0%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}
.hero-konv::before {
  content: "";
  position: absolute;
  top: -20%; right: -10%;
  width: 60vmin; height: 60vmin;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,180,120,0.10), transparent 70%);
  filter: blur(60px);
  pointer-events: none;
  z-index: 0;
}
.hero-konv .container { position: relative; z-index: 1; }

.konv-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

.konv-content { padding-top: clamp(1rem, 3vw, 2rem); }

/* Trust bar */
.trust-bar {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1.75rem;
  font-size: 0.85rem;
  color: var(--muted);
}
.trust-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--white);
  border: 1px solid var(--line);
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--ink);
  box-shadow: 0 4px 12px -4px rgba(0,0,0,0.06);
}
.trust-stars { color: #f2b600; letter-spacing: 0.06em; font-size: 0.95rem; }
.trust-pill strong { font-weight: 700; }
.trust-meta { font-weight: 500; }
.trust-sep {
  width: 1px;
  height: 18px;
  background: var(--line);
}

/* H1 — kraftvoll und lokal */
.konv-h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.04em;
  margin-bottom: 1.5rem;
  color: var(--ink);
}
.konv-h1-region {
  display: block;
  font-size: 0.6em;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--muted);
  margin-top: 0.4em;
  font-style: italic;
}

.konv-sub {
  font-size: clamp(1.05rem, 1.5vw, 1.18rem);
  color: var(--ink);
  line-height: 1.55;
  margin-bottom: 2rem;
  max-width: 44ch;
}
.konv-sub strong { font-weight: 700; }

/* Conversion CTAs (4 Buttons) */
.konv-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2rem;
}
.btn-konv {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.95rem 1.5rem;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all .3s var(--ease);
  font-family: inherit;
}
.btn-konv svg { width: 18px; height: 18px; flex-shrink: 0; }
.btn-konv-primary {
  background: var(--ink);
  color: var(--white);
}
.btn-konv-primary:hover {
  background: #000;
  transform: translateY(-1px);
  box-shadow: 0 10px 25px -8px rgba(0,0,0,0.3);
  opacity: 1;
}
.btn-konv-wa {
  background: #25D366;
  color: #fff;
}
.btn-konv-wa:hover {
  background: #1ebe5d;
  transform: translateY(-1px);
  box-shadow: 0 10px 25px -8px rgba(37,211,102,0.4);
  opacity: 1;
}
.btn-konv-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn-konv-ghost:hover {
  background: var(--ink);
  color: var(--white);
  opacity: 1;
}
.btn-konv-light { background: var(--white); color: var(--ink); }
.btn-konv-light:hover { background: var(--paper); opacity: 1; transform: translateY(-1px); }
.btn-konv-ghost-light {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.4);
}
.btn-konv-ghost-light:hover {
  background: var(--white);
  color: var(--ink);
  opacity: 1;
}

/* Partner row */
.hero-partner-row {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  flex-wrap: wrap;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
  font-size: 0.78rem;
}
.hp-label {
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}
.hp-logo {
  font-weight: 800;
  letter-spacing: 0.15em;
  font-size: 0.95rem;
  color: var(--ink);
}
.hp-meta { color: var(--muted); }

/* Quick-Form Card */
.konv-form {
  position: sticky;
  top: 90px;
}
.qf-card {
  background: var(--white);
  border-radius: 24px;
  padding: clamp(1.75rem, 3vw, 2.5rem);
  box-shadow:
    0 30px 80px -20px rgba(0,0,0,0.18),
    0 10px 30px -8px rgba(0,0,0,0.08),
    inset 0 1px 0 rgba(255,255,255,0.6);
  border: 1px solid rgba(0,0,0,0.04);
}
.qf-header {
  margin-bottom: 1.5rem;
}
.qf-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #25D366;
  background: rgba(37,211,102,0.08);
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  margin-bottom: 1rem;
}
.qf-header h2 {
  font-size: clamp(1.5rem, 2.5vw, 1.85rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.05;
  color: var(--ink);
  margin-bottom: 0.5rem;
}
.qf-header p {
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.45;
}
.qf-form { display: flex; flex-direction: column; gap: 1rem; }
.qf-row { display: flex; flex-direction: column; gap: 0.4rem; }
.qf-row-split { flex-direction: row; gap: 0.75rem; }
.qf-row-split > div { flex: 1; display: flex; flex-direction: column; gap: 0.4rem; }
.qf-row label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}
.qf-opt { text-transform: none; letter-spacing: 0; font-weight: 400; font-style: italic; }
.qf-row input, .qf-row select, .qf-row textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--white);
  font-family: inherit;
  font-size: 0.98rem;
  color: var(--ink);
  transition: border-color .25s var(--ease), box-shadow .25s var(--ease);
}
.qf-row input:focus, .qf-row select:focus, .qf-row textarea:focus {
  outline: none;
  border-color: var(--ink);
  box-shadow: 0 0 0 3px rgba(0,0,0,0.06);
}
.qf-row textarea { resize: vertical; min-height: 80px; }
.qf-submit {
  margin-top: 0.5rem;
  justify-content: center;
  width: 100%;
  padding: 1.1rem 1.5rem;
  font-size: 1rem;
}
.qf-fineprint {
  font-size: 0.8rem;
  color: var(--muted);
  text-align: center;
  margin-top: 0.5rem;
}
.qf-success {
  display: none;
  padding: 1rem;
  background: rgba(37,211,102,0.1);
  color: #1a7c3e;
  border-radius: 12px;
  border: 1px solid rgba(37,211,102,0.25);
  font-size: 0.92rem;
  text-align: center;
}
.qf-success.show { display: block; }

/* Emotionales Band */
.emo-band {
  background: var(--ink);
  color: var(--white);
  padding: clamp(2rem, 4vw, 3rem) 0;
  text-align: center;
}
.emo-text {
  font-size: clamp(1.1rem, 1.8vw, 1.45rem);
  line-height: 1.4;
  font-weight: 400;
  max-width: 700px;
  margin: 0 auto;
}
.emo-text em {
  color: rgba(255,255,255,0.65);
  font-style: italic;
}

/* RÄUME GRID */
.rooms-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 4rem;
}
.room-card {
  background: var(--paper);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .4s var(--ease-out), box-shadow .4s var(--ease-out);
}
.room-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 30px 60px -20px rgba(0,0,0,0.15);
}
.room-media {
  aspect-ratio: 16/10;
  background: radial-gradient(120% 120% at 50% 0%, #ffffff 0%, #ededef 50%, #cfcfd3 100%);
  position: relative;
  overflow: hidden;
}
.room-card-feature .room-media {
  background: radial-gradient(120% 120% at 50% 0%, #1c1d1f 0%, #0a0b0c 60%, #000 100%);
  color: var(--white);
}
.room-body { padding: clamp(1.5rem, 3vw, 2rem); display: flex; flex-direction: column; gap: 0.85rem; flex: 1; }
.room-body h3 {
  font-size: clamp(1.35rem, 2.2vw, 1.65rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.room-pitch {
  font-size: 1rem;
  color: var(--ink);
  font-weight: 500;
  letter-spacing: -0.01em;
}
.room-pitch em { font-style: italic; }
.room-body p:not(.room-pitch) {
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.55;
}
.room-bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  margin-top: 0.25rem;
}
.room-bullets li {
  font-size: 0.9rem;
  color: var(--ink);
  padding-left: 1.5rem;
  position: relative;
}
.room-bullets li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #25D366;
  font-weight: 700;
}
.room-cta {
  margin-top: auto;
  align-self: flex-start;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--ink);
  text-decoration: none;
  padding-top: 0.75rem;
  border-top: 1px solid var(--line);
  transition: color .25s var(--ease);
}
.room-cta:hover { color: #25D366; opacity: 1; text-decoration: none; }

/* TRUST SECTION */
.trust-section {
  background: var(--paper);
  padding: clamp(5rem, 10vw, 8rem) 0;
}
.trust-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}
.trust-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
}
.trust-stats > div { display: flex; flex-direction: column; gap: 0.3rem; }
.trust-stats strong {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1;
  color: var(--ink);
}
.trust-stats span {
  font-size: 0.85rem;
  color: var(--muted);
  letter-spacing: -0.005em;
}
.trust-card {
  background: var(--white);
  border-radius: 20px;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  box-shadow: 0 30px 60px -20px rgba(0,0,0,0.12);
}
.trust-card-img {
  aspect-ratio: 4/3;
  border-radius: 14px;
  background: radial-gradient(120% 120% at 50% 0%, #ffffff 0%, #ededef 50%, #cfcfd3 100%);
  position: relative;
  overflow: hidden;
  margin-bottom: 1.5rem;
}
.trust-card-quote {
  font-size: clamp(1.05rem, 1.7vw, 1.25rem);
  line-height: 1.45;
  color: var(--ink);
  font-weight: 500;
  font-style: italic;
  letter-spacing: -0.01em;
}
.trust-card-author {
  margin-top: 1rem;
  font-size: 0.85rem;
  color: var(--muted);
  font-weight: 600;
}

/* PREIS-TRANSPARENZ */
.price-section { padding: clamp(5rem, 10vw, 8rem) 0; }
.price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 4rem;
}
.price-tile {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(1.5rem, 3vw, 2.25rem);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  transition: transform .4s var(--ease-out), border-color .4s var(--ease-out);
}
.price-tile:hover { transform: translateY(-4px); border-color: var(--ink); }
.price-tile-featured {
  background: var(--ink);
  color: var(--white);
  border-color: var(--ink);
}
.price-tile.price-tile-featured h3,
.price-tile.price-tile-featured .price-amount strong { color: var(--white) !important; }
.price-tile.price-tile-featured .price-room,
.price-tile.price-tile-featured .price-note { color: rgba(255,255,255,0.85) !important; }
.price-tile.price-tile-featured .price-icon { color: rgba(255,255,255,0.7) !important; }
.price-tile.price-tile-featured .price-amount { color: rgba(255,255,255,0.85) !important; }
.price-tag {
  position: absolute;
  top: 1rem; right: 1rem;
  background: #25D366;
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
}
.price-icon {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--muted);
}
.price-tile h3 {
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.price-room { font-size: 0.9rem; color: var(--muted); }
.price-amount { font-size: 1.1rem; color: var(--ink); margin-top: 0.5rem; }
.price-amount strong {
  font-size: 2.2rem;
  font-weight: 800;
  letter-spacing: -0.035em;
  display: inline-block;
  margin-left: 0.25rem;
}
.price-note { font-size: 0.85rem; color: var(--muted); }
.price-disclaimer {
  text-align: center;
  margin-top: 2.5rem;
  font-size: 0.92rem;
  color: var(--muted);
  font-style: italic;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* REFERENZEN */
.ref-section { background: var(--paper); padding: clamp(5rem, 10vw, 8rem) 0; }
.ref-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 4rem;
}
.ref-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform .4s var(--ease-out), box-shadow .4s var(--ease-out);
}
.ref-card:hover { transform: translateY(-4px); box-shadow: 0 25px 50px -15px rgba(0,0,0,0.15); }
.ref-img {
  aspect-ratio: 4/3;
  background: radial-gradient(120% 120% at 50% 0%, #ffffff 0%, #ededef 50%, #cfcfd3 100%);
  position: relative;
  overflow: hidden;
}
.ref-body { padding: 1.5rem; display: flex; flex-direction: column; gap: 0.6rem; }
.ref-meta {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}
.ref-body h3 {
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: -0.015em;
  color: var(--ink);
  line-height: 1.25;
}
.ref-body p {
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.5;
}

/* ABLAUF */
.ablauf-section { padding: clamp(5rem, 10vw, 8rem) 0; }
.ablauf-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 4rem;
}
.ablauf-step {
  padding: clamp(1.5rem, 3vw, 2rem);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  border-left: 1px solid var(--line);
}
.ablauf-step:first-child { border-left-color: var(--ink); }
.ablauf-num {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--ink);
}
.ablauf-step h3 {
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: -0.015em;
  color: var(--ink);
}
.ablauf-step p {
  font-size: 0.94rem;
  color: var(--muted);
  line-height: 1.55;
}

/* EMO TILES */
.emo-section { background: var(--paper); padding: clamp(5rem, 10vw, 8rem) 0; }
.emo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 4rem;
}
.emo-tile {
  background: var(--white);
  border-radius: 16px;
  padding: clamp(1.5rem, 3vw, 2rem);
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  border: 1px solid var(--line);
  transition: transform .4s var(--ease-out);
}
.emo-tile:hover { transform: translateY(-3px); }
.emo-emoji { font-size: 2rem; line-height: 1; margin-bottom: 0.5rem; }
.emo-tile h3 {
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: -0.015em;
}
.emo-tile p {
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.5;
}

/* FAQ */
.faq-section { padding: clamp(5rem, 10vw, 8rem) 0; }
.faq-list {
  margin-top: 3rem;
  max-width: 820px;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.faq-item {
  background: var(--paper);
  border-radius: 14px;
  padding: 0;
  overflow: hidden;
  transition: background .3s var(--ease);
}
.faq-item[open] { background: var(--white); border: 1px solid var(--line); }
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 1.25rem 1.5rem;
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  transition: color .25s var(--ease);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  display: grid;
  place-items: center;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--white);
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--ink);
  flex-shrink: 0;
  transition: transform .3s var(--ease), background .3s var(--ease);
  border: 1px solid var(--line);
}
.faq-item[open] summary::after {
  content: "−";
  background: var(--ink);
  color: var(--white);
  border-color: var(--ink);
  transform: rotate(180deg);
}
.faq-answer {
  padding: 0 1.5rem 1.5rem;
}
.faq-answer p {
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.6;
}
.faq-answer strong { color: var(--ink); font-weight: 700; }

/* REGION */
.region-section { background: var(--paper); padding: clamp(5rem, 10vw, 8rem) 0; }
.region-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}
.region-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
}
.region-list span {
  padding: 0.8rem 1rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 10px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--ink);
  text-align: center;
  transition: all .25s var(--ease);
}
.region-list span:hover {
  border-color: var(--ink);
  transform: translateY(-2px);
}

/* CITY LANDINGPAGES — Breadcrumbs, City Links, Stadtteil-Cards */
.city-crumbs {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 1.5rem;
  font-weight: 500;
  letter-spacing: 0.01em;
}
.city-crumbs a {
  color: var(--muted);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: all .2s var(--ease);
}
.city-crumbs a:hover { color: var(--ink); border-bottom-color: var(--ink); }
.city-crumbs span { color: var(--line); }
.city-crumbs .city-crumbs-current {
  color: var(--ink);
  font-weight: 600;
}

/* City Links — Region/Footer */
.city-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 10px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--ink);
  text-align: center;
  text-decoration: none;
  transition: all .25s var(--ease);
  cursor: pointer;
}
.city-link:hover {
  border-color: var(--ink);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}
.city-link-active {
  background: var(--ink);
  color: var(--white);
  border-color: var(--ink);
  position: relative;
}
.city-link-active::after {
  content: "↓";
  margin-left: 0.4rem;
  font-size: 0.75rem;
  opacity: 0.6;
}
.city-link-active:hover {
  background: var(--ink);
  color: var(--white);
  transform: none;
  cursor: default;
}
.city-link-static {
  opacity: 0.55;
  cursor: default;
  background: transparent;
}
.city-link-static:hover {
  transform: none;
  border-color: var(--line);
  box-shadow: none;
  opacity: 0.7;
}

/* City Areas — Stadtteile-Grid (für Köln) */
.city-areas-section { background: var(--paper); padding: clamp(5rem, 10vw, 8rem) 0; }
.city-areas {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: clamp(2rem, 5vw, 3rem);
}
.city-area-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 1.75rem 1.5rem;
  transition: all .3s var(--ease);
  position: relative;
  overflow: hidden;
}
.city-area-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--ink), transparent);
  opacity: 0;
  transition: opacity .3s var(--ease);
}
.city-area-card:hover {
  border-color: var(--ink);
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.08);
}
.city-area-card:hover::before { opacity: 1; }
.city-area-card .ca-num {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--muted);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}
.city-area-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--ink);
  margin: 0 0 0.6rem;
  letter-spacing: -0.01em;
}
.city-area-card p {
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.55;
  margin: 0;
}
.city-area-card .ca-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 1rem;
}
.city-area-card .ca-tag {
  display: inline-block;
  padding: 0.25rem 0.6rem;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: 0.01em;
}

@media (max-width: 920px) {
  .city-areas { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .city-areas { grid-template-columns: 1fr; }
  .city-crumbs { font-size: 0.8rem; }
}

/* STORY GRID — Timeline-Karten für Über uns */
.story-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: clamp(2rem, 5vw, 3rem);
}
.story-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 2rem 1.75rem;
  transition: all .3s var(--ease);
  position: relative;
}
.story-card:hover {
  border-color: var(--ink);
  transform: translateY(-4px);
  box-shadow: 0 20px 44px rgba(0,0,0,0.08);
}
.story-card .story-year {
  display: inline-block;
  padding: 0.3rem 0.8rem;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--muted);
  margin-bottom: 1rem;
}
.story-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.015em;
  margin: 0 0 0.6rem;
  color: var(--ink);
}
.story-card p {
  font-size: 0.94rem;
  color: var(--muted);
  line-height: 1.55;
  margin: 0;
}
.story-card-future {
  background: var(--ink);
  color: var(--white);
  border-color: var(--ink);
}
.story-card-future .story-year {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.18);
  color: rgba(255,255,255,0.85);
}
.story-card-future h3 { color: var(--white); }
.story-card-future p { color: rgba(255,255,255,0.78); }
@media (max-width: 960px) {
  .story-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .story-grid { grid-template-columns: 1fr; }
}

/* PARTNER GRID — Über uns */
.partner-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}
.partner-tile {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 2rem 1.5rem;
  text-align: center;
  transition: all .3s var(--ease);
}
.partner-tile:hover {
  border-color: var(--ink);
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.08);
}
.partner-tile .partner-tile-logo {
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  color: var(--ink);
  padding: 1rem 1.25rem;
  background: var(--paper);
  border-radius: 12px;
  margin-bottom: 1.25rem;
  display: inline-block;
  min-width: 130px;
}
.partner-tile h3 {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin: 0 0 0.5rem;
  color: var(--ink);
}
.partner-tile p {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.55;
  margin: 0;
}
@media (max-width: 960px) {
  .partner-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .partner-grid { grid-template-columns: 1fr; }
}

/* qf-card-static — Variant ohne hover */
.qf-card-static {
  cursor: default;
}

/* JOB TILES — neue Karriere-Stellen */
.jobs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
.job-tile {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 2.5rem 2.25rem;
  transition: all .3s var(--ease);
  position: relative;
}
.job-tile:hover {
  border-color: var(--ink);
  transform: translateY(-3px);
  box-shadow: 0 24px 56px rgba(0,0,0,0.08);
}
.jt-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.25rem;
}
.jt-num {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--muted);
}
.jt-chip {
  display: inline-block;
  padding: 0.3rem 0.7rem;
  background: var(--ink);
  color: var(--white);
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.jt-title {
  font-size: 1.65rem;
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.1;
  margin: 0 0 0.6rem;
  color: var(--ink);
}
.jt-variant {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: -0.005em;
}
.jt-tagline {
  font-size: 1.02rem;
  color: var(--ink);
  margin: 0 0 1.5rem;
  line-height: 1.45;
}
.jt-facts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem 1.25rem;
  margin: 0 0 1.75rem;
  padding: 1.25rem 1.25rem;
  background: var(--paper);
  border-radius: 14px;
  border: 1px solid var(--line);
}
.jt-facts div { display: flex; flex-direction: column; gap: 0.2rem; }
.jt-facts dt {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0;
}
.jt-facts dd {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--ink);
  margin: 0;
}
.jt-section { margin-bottom: 1.5rem; }
.jt-section h4 {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 0.85rem;
}
.jt-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.jt-section li {
  position: relative;
  padding-left: 1.25rem;
  font-size: 0.94rem;
  color: var(--ink);
  line-height: 1.55;
  margin-bottom: 0.45rem;
}
.jt-section li::before {
  content: "→";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--muted);
  font-weight: 600;
}
.jt-cta {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  padding-top: 0.5rem;
  border-top: 1px solid var(--line);
}
@media (max-width: 960px) {
  .jobs-grid { grid-template-columns: 1fr; }
  .job-tile { padding: 2rem 1.5rem; }
  .jt-title { font-size: 1.4rem; }
}

/* WARUM MAY — Kernversprechen-Block */
.warum-section {
  background: var(--paper);
  padding: clamp(5rem, 10vw, 8rem) 0;
}
.warum-grid {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: start;
}
.warum-intro h2 {
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1;
  margin: 0.8rem 0 1.25rem;
  color: var(--ink);
}
.warum-intro p {
  font-size: 1.02rem;
  color: var(--muted);
  line-height: 1.55;
}
.warum-grid-points {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.warum-tile {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 1.5rem 1.5rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  transition: all .25s var(--ease);
}
.warum-tile:hover {
  border-color: var(--ink);
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(0,0,0,0.06);
}
.warum-check {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  background: var(--ink);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 800;
}
.warum-tile h3 {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.005em;
  margin: 0 0 0.3rem;
  color: var(--ink);
}
.warum-tile p {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.5;
  margin: 0;
}
@media (max-width: 960px) {
  .warum-grid { grid-template-columns: 1fr; gap: 2.5rem; }
}
@media (max-width: 560px) {
  .warum-grid-points { grid-template-columns: 1fr; }
}

/* SO LÄUFT'S — Prozessblock */
.prozess-section {
  padding: clamp(5rem, 10vw, 8rem) 0;
}
.prozess-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.25rem;
  margin-top: clamp(2.5rem, 5vw, 4rem);
  position: relative;
}
.prozess-step {
  position: relative;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 2rem 1.5rem 2rem;
  transition: all .3s var(--ease);
}
.prozess-step:hover {
  border-color: var(--ink);
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.06);
}
.prozess-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  background: var(--ink);
  color: var(--white);
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 800;
  margin-bottom: 1rem;
}
.prozess-step h3 {
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin: 0 0 0.5rem;
  color: var(--ink);
}
.prozess-step p {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.5;
  margin: 0 0 0.85rem;
}
.prozess-meta {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 0.3rem 0.7rem;
  background: var(--paper);
  border-radius: 999px;
  display: inline-block;
}
@media (max-width: 1100px) {
  .prozess-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 720px) {
  .prozess-grid { grid-template-columns: 1fr; }
}

/* REFERENZ-BLOCK — Vorher-Nachher */
.ref-section {
  background: var(--paper);
  padding: clamp(5rem, 10vw, 8rem) 0;
}
.ref-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: clamp(2.5rem, 5vw, 3.5rem);
}
.ref-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 22px;
  overflow: hidden;
  transition: all .3s var(--ease);
}
.ref-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 48px rgba(0,0,0,0.08);
  border-color: var(--ink);
}
.ref-card-img {
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, #2a2c30 0%, #0d0e10 100%);
  position: relative;
  overflow: hidden;
}
.ref-card-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0  0 0 0 0 0  0 0 0 0 0  0 0 0 0.5 0'/></filter><rect width='200' height='200' filter='url(%23n)' opacity='0.4'/></svg>");
  opacity: 0.18;
}
.ref-card-img .ref-img-label {
  position: absolute;
  top: 1.25rem;
  left: 1.25rem;
  display: flex;
  flex-direction: column;
  color: var(--white);
}
.ref-img-label .ref-img-kicker {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.65;
  margin-bottom: 0.25rem;
}
.ref-img-label .ref-img-name {
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: -0.015em;
}
.ref-card-img .ref-vorher-nachher {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  display: flex;
  gap: 0.4rem;
}
.ref-vorher-nachher span {
  padding: 0.3rem 0.7rem;
  background: rgba(255,255,255,0.18);
  backdrop-filter: blur(8px);
  color: var(--white);
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
}
.ref-card-body {
  padding: 1.5rem 1.5rem 1.75rem;
}
.ref-card-body .ref-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.6rem;
}
.ref-card-body h3 {
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin: 0 0 0.6rem;
  color: var(--ink);
}
.ref-card-body p {
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.55;
  margin: 0 0 1rem;
}
.ref-card-stats {
  display: flex;
  gap: 1.25rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}
.ref-card-stats div { flex: 1; }
.ref-card-stats strong {
  display: block;
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin-bottom: 0.15rem;
}
.ref-card-stats span {
  font-size: 0.75rem;
  color: var(--muted);
  letter-spacing: 0.02em;
}
@media (max-width: 960px) {
  .ref-grid { grid-template-columns: 1fr; }
}

/* PROJEKT-CHECK BANNER — Mid-page Hervorhebung */
.pc-banner {
  padding: clamp(3rem, 6vw, 5rem) 0;
}
.pc-banner-card {
  background: var(--ink);
  color: var(--white);
  border-radius: 28px;
  padding: clamp(2.5rem, 5vw, 4.5rem) clamp(2rem, 5vw, 4rem);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2.5rem;
  align-items: center;
  overflow: hidden;
  position: relative;
}
.pc-banner-card::before {
  content: "";
  position: absolute;
  top: -50%; right: -10%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(255,255,255,0.06), transparent 60%);
  pointer-events: none;
}
.pc-banner-content { position: relative; z-index: 1; }
.pc-banner-content .eyebrow {
  color: rgba(255,255,255,0.65);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 0.85rem;
  display: block;
}
.pc-banner-content h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin: 0 0 1rem;
  color: var(--white);
}
.pc-banner-content p {
  font-size: 1rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.55;
  margin: 0 0 1.5rem;
  max-width: 50ch;
}
.pc-banner-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.pc-banner-visual {
  position: relative;
  z-index: 1;
  text-align: center;
}
.pc-banner-visual strong {
  display: block;
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 900;
  letter-spacing: -0.05em;
  line-height: 1;
  color: var(--white);
  margin-bottom: 0.5rem;
  background: linear-gradient(180deg, #fff 0%, rgba(255,255,255,0.4) 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.pc-banner-visual span {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.65);
  letter-spacing: 0.06em;
}
@media (max-width: 960px) {
  .pc-banner-card { grid-template-columns: 1fr; gap: 1.5rem; padding: 2.5rem 1.75rem; }
  .pc-banner-visual { text-align: left; }
}

/* PREISANKER — dezent, hochwertig */
.preisanker-section {
  padding: clamp(5rem, 10vw, 8rem) 0;
  background: var(--paper);
}
.preisanker-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: clamp(2.5rem, 5vw, 3.5rem);
}
.preisanker-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 2.25rem 1.85rem;
  transition: all .3s var(--ease);
  position: relative;
}
.preisanker-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.07);
  border-color: var(--ink);
}
.preisanker-tag {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.8rem;
}
.preisanker-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.015em;
  margin: 0 0 1rem;
  color: var(--ink);
}
.preisanker-price {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--line);
}
.preisanker-price .pa-from {
  font-size: 0.85rem;
  color: var(--muted);
  font-weight: 500;
}
.preisanker-price .pa-amount {
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.025em;
  color: var(--ink);
}
.preisanker-price .pa-unit {
  font-size: 0.85rem;
  color: var(--muted);
  font-weight: 500;
}
.preisanker-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
}
.preisanker-card li {
  position: relative;
  padding-left: 1.25rem;
  font-size: 0.9rem;
  color: var(--ink);
  line-height: 1.55;
  margin-bottom: 0.4rem;
}
.preisanker-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--ink);
  font-weight: 700;
}
.preisanker-hint {
  font-size: 0.8rem;
  color: var(--muted);
  font-style: italic;
  line-height: 1.5;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}
.preisanker-disclaimer {
  margin-top: 2rem;
  font-size: 0.85rem;
  color: var(--muted);
  text-align: center;
  max-width: 60ch;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.55;
}
@media (max-width: 960px) {
  .preisanker-grid { grid-template-columns: 1fr; }
}

/* CONTACT CARDS — Premium-Grid */
.contact-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: clamp(2rem, 5vw, 3rem);
}
.contact-card {
  position: relative;
  display: block;
  padding: 2rem 1.75rem 2.25rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 20px;
  text-decoration: none;
  color: var(--ink);
  transition: all .3s var(--ease);
  overflow: hidden;
}
.contact-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--ink), transparent);
  opacity: 0;
  transition: opacity .3s var(--ease);
}
.contact-card:hover {
  border-color: var(--ink);
  transform: translateY(-4px);
  box-shadow: 0 20px 44px rgba(0,0,0,0.08);
  opacity: 1;
}
.contact-card:hover::before { opacity: 1; }
.contact-card .cc-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  color: var(--ink);
}
.contact-card .cc-icon svg { width: 30px; height: 30px; }
.contact-card .cc-num {
  position: absolute;
  top: 1.6rem;
  right: 1.6rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--muted);
  opacity: 0.6;
}
.contact-card h3 {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 0.5rem;
}
.contact-card .cc-value {
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin: 0 0 0.85rem;
  line-height: 1.3;
}
.contact-card .cc-meta {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.5;
  margin: 0 0 1.5rem;
}
.contact-card .cc-link {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ink);
  border-bottom: 1px solid var(--ink);
  padding-bottom: 2px;
  transition: gap .25s var(--ease);
}
/* WhatsApp variant */
.contact-card-whatsapp {
  background: linear-gradient(135deg, #25D366 0%, #1eb853 100%);
  color: var(--white);
  border-color: transparent;
}
.contact-card-whatsapp .cc-icon,
.contact-card-whatsapp h3,
.contact-card-whatsapp .cc-value,
.contact-card-whatsapp .cc-meta,
.contact-card-whatsapp .cc-link,
.contact-card-whatsapp .cc-num { color: var(--white) !important; }
.contact-card-whatsapp h3 { opacity: 0.85; }
.contact-card-whatsapp .cc-meta { opacity: 0.9; }
.contact-card-whatsapp .cc-link { border-bottom-color: var(--white); }
.contact-card-whatsapp:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 48px rgba(37,211,102,0.35);
}
/* CTA variant */
.contact-card-cta {
  background: var(--ink);
  color: var(--white);
  border-color: var(--ink);
}
.contact-card-cta .cc-icon,
.contact-card-cta h3,
.contact-card-cta .cc-value,
.contact-card-cta .cc-meta,
.contact-card-cta .cc-link,
.contact-card-cta .cc-num { color: var(--white) !important; }
.contact-card-cta h3 { opacity: 0.7; }
.contact-card-cta .cc-meta { opacity: 0.7; }
.contact-card-cta .cc-link { border-bottom-color: var(--white); }
.contact-card-cta:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 48px rgba(0,0,0,0.35);
}
@media (max-width: 960px) {
  .contact-cards { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .contact-cards { grid-template-columns: 1fr; }
}

/* FINAL CTA */
.final-cta { padding: clamp(5rem, 10vw, 8rem) 0; }
.final-card {
  background: var(--ink);
  color: var(--white);
  border-radius: 28px;
  padding: clamp(2.5rem, 5vw, 5rem);
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  position: relative;
  overflow: hidden;
}
.final-card::before {
  content: "";
  position: absolute;
  top: -20%; right: -10%;
  width: 50%; aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(37,211,102,0.18), transparent 70%);
  filter: blur(50px);
}
.final-content { position: relative; z-index: 1; }
.final-content h2 {
  font-size: clamp(1.85rem, 3.5vw, 3rem);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.03em;
  line-height: 1.05;
  color: var(--white);
}
.final-content p {
  margin-top: 1rem;
  color: rgba(255,255,255,0.7);
  font-size: 1.02rem;
  max-width: 42ch;
  margin-bottom: 2rem;
}
.final-ctas {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}
.final-trust {
  text-align: center;
  position: relative;
  z-index: 1;
}
.final-stars {
  color: #f2b600;
  font-size: 1.5rem;
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
}
.final-rating strong {
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--white);
}
.final-rating span { font-size: 1rem; color: rgba(255,255,255,0.5); margin-left: 0.25rem; }
.final-meta {
  margin-top: 0.75rem;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.45;
}

/* ==========================================================
   WÄRMEPUMPEN-LEAD-PAGE — gleicher Baukasten, ruhigere Tonalität
   ========================================================== */

/* Wärmepumpen-Hero — etwas zurückhaltender */
.hero-wp { background: linear-gradient(180deg, #ffffff 0%, #f7f7f8 100%); }
.hero-wp::before {
  background: radial-gradient(circle, rgba(80, 130, 220, 0.08), transparent 70%);
}

/* HERO-BILD — rechts neben dem Hero-Text */
.konv-hero-visual {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: 24px;
  overflow: hidden;
  background: var(--paper);
  isolation: isolate;
  box-shadow:
    0 40px 80px -30px rgba(0,0,0,0.18),
    0 16px 32px -8px rgba(0,0,0,0.08);
  border: 1px solid var(--line);
  transition: transform .5s var(--ease);
  width: 100%;
  max-width: 560px;
  margin-left: auto;
}
.konv-hero-visual:hover { transform: translateY(-4px); }

/* Fallback: zeigt sich nur wenn das Bild nicht lädt (img liegt darüber) */
.konv-hero-fallback {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
  color: var(--muted);
  background: repeating-linear-gradient(
    45deg,
    var(--paper),
    var(--paper) 12px,
    rgba(0,0,0,0.025) 12px,
    rgba(0,0,0,0.025) 24px
  );
  z-index: 0;
}
.konv-hero-fallback .fb-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  font-size: 1.5rem;
}
.konv-hero-fallback strong {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.01em;
  margin-bottom: 0.4rem;
}
.konv-hero-fallback code {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.78rem;
  background: var(--white);
  border: 1px solid var(--line);
  padding: 0.3rem 0.6rem;
  border-radius: 6px;
  color: var(--ink);
  word-break: break-all;
  max-width: 80%;
}
.konv-hero-fallback p {
  font-size: 0.78rem;
  line-height: 1.45;
  max-width: 36ch;
  margin-top: 0.85rem;
  margin-bottom: 0;
}

.konv-hero-img {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 1;
}
.konv-hero-caption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 2rem 1.75rem 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  color: var(--white);
  background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.65) 100%);
  pointer-events: none;
  z-index: 2;
}
.konv-hero-kicker {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.72;
}
.konv-hero-title {
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -0.015em;
  line-height: 1.15;
}

/* Wenn img scheitert → wird per JS .img-missing gesetzt, dann Caption verstecken */
.konv-hero-visual.img-missing .konv-hero-caption { display: none; }
.konv-hero-visual.img-missing .konv-hero-img { display: none; }

@media (max-width: 920px) {
  .konv-hero-visual {
    aspect-ratio: 3/4;
    max-width: 100%;
  }
  .konv-hero-title { font-size: 1.15rem; }
}

/* WP-CHECK SECTION — Heizungs-Check, direkt nach Hero */
.wp-check-section {
  padding: clamp(4rem, 8vw, 7rem) 0;
  background: var(--white);
}
.wp-check-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: center;
}
.wp-check-intro h2 {
  margin: 0.6rem 0 0;
}
.wp-check-pills {
  list-style: none;
  padding: 0;
  margin: 2rem 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}
.wp-check-pills li {
  padding: 0.55rem 1rem;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: -0.005em;
  color: var(--ink);
}
.wp-check-form-wrap .qf-card {
  position: static;
}
@media (max-width: 960px) {
  .wp-check-grid { grid-template-columns: 1fr; gap: 2.5rem; }
}

/* Dunkler CTA (statt WhatsApp-Grün) für seriösere Wirkung im WP-Hero */
.btn-konv-dark {
  background: rgba(0,0,0,0.05);
  color: var(--ink);
  border: 1px solid var(--ink);
}
.btn-konv-dark:hover {
  background: var(--ink);
  color: var(--white);
  opacity: 1;
  transform: translateY(-1px);
}

/* QF-Tag in dunkel statt grün für Wärmepumpe */
.qf-tag-dark {
  color: var(--ink);
  background: rgba(0,0,0,0.05);
}

/* Emo-Band Wärmepumpe — weiß auf schwarz mit weniger Drama */
.emo-band-wp { background: var(--ink); }
.emo-band-wp .emo-text { font-weight: 500; }

/* EIGNUNGS-GRID — 6 Karten "Für wen geeignet" */
.eignung-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 4rem;
}
.eignung-card {
  background: var(--paper);
  border-radius: var(--radius);
  padding: clamp(1.75rem, 3vw, 2.25rem);
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  position: relative;
  transition: transform .4s var(--ease-out), box-shadow .4s var(--ease-out);
}
.eignung-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 30px 60px -20px rgba(0,0,0,0.12);
}
.eignung-num {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: var(--muted);
}
.eignung-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.015em;
  color: var(--ink);
  line-height: 1.25;
}
.eignung-card p {
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.55;
  flex: 1;
}
.eignung-tag {
  align-self: flex-start;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  margin-top: 0.25rem;
}
.eignung-tag-ideal {
  background: rgba(60, 160, 90, 0.1);
  color: #1f7a3c;
}
.eignung-tag-pruefen {
  background: rgba(200, 140, 30, 0.1);
  color: #8a5a00;
}

/* SYSTEM-VERGLEICH: Luft-Wasser vs Luft-Luft */
.system-compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 4rem;
}
.sys-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(2rem, 3.5vw, 2.75rem);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: transform .4s var(--ease-out), border-color .4s var(--ease-out);
}
.sys-card:hover { transform: translateY(-4px); border-color: var(--ink); }
.sys-card-primary {
  background: var(--ink);
  color: var(--white);
  border-color: var(--ink);
}
.sys-card.sys-card-primary h3,
.sys-card.sys-card-primary .sys-pitch { color: var(--white) !important; }
.sys-card.sys-card-primary p,
.sys-card.sys-card-primary .sys-features li { color: rgba(255,255,255,0.92) !important; }
.sys-card-primary .sys-features li::before { background: rgba(255,255,255,0.85); }

.sys-badge {
  align-self: flex-start;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  background: rgba(0,0,0,0.05);
  color: var(--ink);
}
.sys-card-primary .sys-badge {
  background: rgba(255,255,255,0.12);
  color: var(--white);
}
.sys-card h3 {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  color: var(--ink);
  line-height: 1.05;
}
.sys-pitch {
  font-size: 1.05rem;
  font-weight: 500;
  font-style: italic;
  letter-spacing: -0.01em;
}
.sys-card p {
  font-size: 0.96rem;
  color: var(--muted);
  line-height: 1.6;
}
.sys-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  margin-top: 0.5rem;
}
.sys-features li {
  font-size: 0.94rem;
  color: var(--ink);
  padding-left: 1.5rem;
  position: relative;
}
.sys-features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 8px;
  height: 1px;
  background: var(--ink);
}
.sys-note {
  margin-top: 2.5rem;
  text-align: center;
  font-size: 0.95rem;
  color: var(--muted);
  font-style: italic;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

/* FÖRDER-GRID */
.foerder-section {
  background: var(--paper);
  padding: clamp(5rem, 10vw, 8rem) 0;
}
.foerder-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-top: 4rem;
}
.foerder-tile {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2rem 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  transition: transform .4s var(--ease-out), box-shadow .4s var(--ease-out);
}
.foerder-tile:hover {
  transform: translateY(-4px);
  box-shadow: 0 25px 50px -15px rgba(0,0,0,0.12);
}
.foerder-tile-total {
  background: var(--ink);
  color: var(--white);
  border-color: var(--ink);
}
.foerder-tile.foerder-tile-total h3 { color: var(--white) !important; }
.foerder-tile.foerder-tile-total p { color: rgba(255,255,255,0.9) !important; }
.foerder-tile.foerder-tile-total .foerder-percent { color: var(--white) !important; }
.foerder-percent {
  font-size: clamp(2.25rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--ink);
}
.foerder-tile h3 {
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.foerder-tile p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.5;
}
.foerder-meta {
  margin-top: 2.5rem;
  padding: 1.5rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
}
.foerder-meta p {
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.55;
}
.foerder-meta strong { color: var(--ink); font-weight: 700; }

/* FÖRDERUNG SOFT — vorsichtiger Block ohne konkrete Zahlen */
.foerder-soft-wrap {
  margin-top: 4rem;
}
.foerder-info-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(2rem, 4vw, 3rem);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  align-items: start;
  box-shadow: 0 20px 50px -25px rgba(0,0,0,0.1);
}
.foerder-info-icon {
  width: 72px;
  height: 72px;
  border-radius: 16px;
  background: var(--ink);
  display: grid;
  place-items: center;
  color: var(--white);
  flex-shrink: 0;
}
.foerder-info-icon svg { width: 36px; height: 36px; }
.foerder-info-card h3 {
  font-size: clamp(1.3rem, 2vw, 1.6rem);
  font-weight: 700;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin-bottom: 0.75rem;
}
.foerder-info-card > div > p {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 1.25rem;
}
.foerder-info-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.foerder-info-list li {
  font-size: 0.95rem;
  color: var(--ink);
  padding-left: 1.5rem;
  position: relative;
}
.foerder-info-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 8px;
  height: 1px;
  background: var(--ink);
}

/* INVESTITION SOFT — keine konkreten Preisspannen */
.invest-soft-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 4rem;
}
.invest-soft-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(1.75rem, 3vw, 2.25rem);
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  position: relative;
  transition: transform .4s var(--ease-out), border-color .4s var(--ease-out);
}
.invest-soft-card:hover {
  transform: translateY(-4px);
  border-color: var(--ink);
}
.invest-soft-card-featured {
  background: var(--ink);
  color: var(--white);
  border-color: var(--ink);
}
.invest-soft-card.invest-soft-card-featured h3 { color: var(--white) !important; }
.invest-soft-card.invest-soft-card-featured p { color: rgba(255,255,255,0.9) !important; }
.invest-soft-card.invest-soft-card-featured .invest-soft-num { color: rgba(255,255,255,0.7) !important; }
.invest-soft-tag {
  position: absolute;
  top: 1rem; right: 1rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  background: var(--white);
  color: var(--ink);
}
.invest-soft-num {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: var(--muted);
}
.invest-soft-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: -0.015em;
  color: var(--ink);
  line-height: 1.3;
}
.invest-soft-card p {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.55;
  flex: 1;
}

/* INVESTITIONS-GRID */
.invest-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 4rem;
}
.invest-tile {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(1.75rem, 3vw, 2.25rem);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: relative;
  transition: transform .4s var(--ease-out), border-color .4s var(--ease-out);
}
.invest-tile:hover { transform: translateY(-4px); border-color: var(--ink); }
.invest-tile-featured {
  background: var(--ink);
  color: var(--white);
  border-color: var(--ink);
}
.invest-tile.invest-tile-featured .invest-meta,
.invest-tile.invest-tile-featured .invest-label { color: rgba(255,255,255,0.75) !important; }
.invest-tile.invest-tile-featured .invest-amount { color: var(--white) !important; }
.invest-tile.invest-tile-featured p { color: rgba(255,255,255,0.9) !important; }
.invest-tag {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  background: var(--white);
  color: var(--ink);
}
.invest-meta {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}
.invest-prices {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  padding: 0.75rem 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.invest-tile-featured .invest-prices {
  border-color: rgba(255,255,255,0.15);
}
.invest-before, .invest-after {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}
.invest-label {
  font-size: 0.85rem;
  color: var(--muted);
}
.invest-amount {
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: -0.015em;
  color: var(--ink);
}
.invest-amount-highlight {
  font-size: 1.25rem;
  font-weight: 800;
}
.invest-tile p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.5;
}
.invest-amort {
  margin-top: 3rem;
  background: var(--paper);
  border-radius: var(--radius);
  padding: clamp(2rem, 3.5vw, 2.75rem);
  max-width: 820px;
}
.invest-amort h3 {
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.015em;
  margin-bottom: 0.75rem;
}
.invest-amort p {
  font-size: 0.98rem;
  color: var(--muted);
  line-height: 1.6;
}
.invest-amort strong { color: var(--ink); font-weight: 700; }
.invest-link {
  font-weight: 600;
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid var(--ink);
  padding-bottom: 1px;
  transition: opacity .25s var(--ease);
}
.invest-link:hover { opacity: 0.6; }

/* ABLAUF 5-stufig */
.ablauf-grid-5 {
  grid-template-columns: repeat(5, 1fr);
}

/* WERT-GRID (sachlich, ohne Emojis) */
.emo-section-wp {
  background: var(--ink);
  color: var(--white);
}
.emo-section-wp .eyebrow {
  color: rgba(255,255,255,0.6);
}
.emo-section-wp .headline {
  color: var(--white);
}
.wert-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 4rem;
}
.wert-tile {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: clamp(1.5rem, 3vw, 2rem);
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  transition: transform .4s var(--ease-out), background .4s var(--ease-out);
}
.wert-tile:hover {
  transform: translateY(-3px);
  background: rgba(255,255,255,0.07);
}
.wert-tile h3 {
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--white);
}
.wert-tile p {
  font-size: 0.94rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.55;
}

/* ==========================================================
   KLIMA-PAGE — STRATEGIE-BLOCK „Klima oder Wärmepumpe? Beides."
   ========================================================== */
.dual-section {
  background: var(--ink);
  color: var(--white);
  padding: clamp(5rem, 10vw, 8rem) 0;
  position: relative;
  overflow: hidden;
}
.dual-section::before {
  content: "";
  position: absolute;
  top: -10%; right: -10%;
  width: 50%; aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,180,120,0.10), transparent 70%);
  filter: blur(60px);
  pointer-events: none;
}
.dual-section .container { position: relative; z-index: 1; }

.dual-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: center;
}
.dual-content .eyebrow { color: rgba(255,255,255,0.6); }
.dual-content .headline { color: var(--white); }
.dual-headline-accent {
  display: block;
  color: var(--white);
  font-style: italic;
  font-weight: 500;
  letter-spacing: -0.02em;
  margin-top: 0.2em;
}
.dual-content .lead {
  color: rgba(255,255,255,0.85);
}
.dual-content .lead strong { color: var(--white); }

.dual-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
.dual-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 1.5rem 1.75rem;
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto;
  column-gap: 1.5rem;
  row-gap: 0.4rem;
  align-items: center;
  transition: transform .4s var(--ease-out), background .4s var(--ease-out);
}
.dual-card:hover {
  transform: translateY(-3px);
  background: rgba(255,255,255,0.08);
}
.dual-card-tag {
  grid-column: 2;
  grid-row: 1;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}
.dual-card-num {
  grid-column: 1;
  grid-row: 1 / 3;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--white);
  padding-right: 1.5rem;
  border-right: 1px solid rgba(255,255,255,0.1);
  align-self: center;
}
.dual-card h3 {
  grid-column: 2;
  grid-row: 2;
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: -0.015em;
  color: var(--white);
  margin: 0;
}
.dual-card p {
  grid-column: 2;
  grid-row: 3;
  font-size: 0.92rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.5;
  margin: 0;
}
.dual-card-mid {
  background: rgba(255,180,120,0.08);
  border-color: rgba(255,180,120,0.25);
}
.dual-card-cold {
  background: rgba(120,170,255,0.08);
  border-color: rgba(120,170,255,0.25);
}

.dual-note {
  margin-top: 3.5rem;
  padding: 1.75rem 2rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 14px;
}
.dual-note p {
  font-size: 0.98rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.6;
  margin: 0;
}
.dual-note strong { color: var(--white); font-weight: 700; }
.dual-link {
  color: var(--white);
  border-bottom: 1px solid rgba(255,255,255,0.4);
  padding-bottom: 1px;
  text-decoration: none;
  font-weight: 600;
  transition: border-color .25s var(--ease);
}
.dual-link:hover { border-color: var(--white); opacity: 1; }

/* ==========================================================
   FÖRDERUNG — vorsichtiger Block, nicht reißerisch
   ========================================================== */
.foerder-soft-section {
  padding: clamp(4rem, 8vw, 6rem) 0;
  background: var(--paper);
}
.foerder-soft {
  background: var(--white);
  border-radius: var(--radius);
  padding: clamp(2rem, 4vw, 3rem);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  align-items: center;
  max-width: 900px;
  margin: 0 auto;
  box-shadow: 0 20px 60px -20px rgba(0,0,0,0.08);
  border: 1px solid var(--line);
}
.foerder-soft-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--paper);
  display: grid;
  place-items: center;
  color: var(--ink);
  flex-shrink: 0;
}
.foerder-soft-icon svg { width: 32px; height: 32px; }
.foerder-soft-content { display: flex; flex-direction: column; gap: 0.5rem; }
.headline-md {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.05;
  text-transform: uppercase;
  color: var(--ink);
}
.foerder-soft .lead { color: var(--muted); }
.foerder-soft .lead strong { color: var(--ink); font-weight: 700; }

/* ==========================================================
   PHOTOVOLTAIK-SEITE
   ========================================================== */
.pv-benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 4rem;
}
.pv-benefit-card {
  background: var(--paper);
  border-radius: var(--radius);
  padding: clamp(1.75rem, 3vw, 2.25rem);
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  transition: transform .4s var(--ease-out), box-shadow .4s var(--ease-out);
}
.pv-benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 30px 60px -20px rgba(0,0,0,0.12);
}
.pv-benefit-card-featured {
  background: var(--ink);
  color: var(--white);
}
.pv-benefit-card.pv-benefit-card-featured h3 { color: var(--white) !important; }
.pv-benefit-card.pv-benefit-card-featured p { color: rgba(255,255,255,0.9) !important; }
.pv-benefit-card.pv-benefit-card-featured .pv-benefit-num { color: rgba(255,255,255,0.7) !important; }
.pv-benefit-num {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: var(--muted);
}
.pv-benefit-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.015em;
  color: var(--ink);
  line-height: 1.3;
}
.pv-benefit-card p {
  font-size: 0.94rem;
  color: var(--muted);
  line-height: 1.55;
}

/* PV Komponenten */
.pv-comp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 4rem;
}
.pv-comp-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(1.75rem, 3vw, 2.25rem);
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  position: relative;
  transition: transform .4s var(--ease-out), border-color .4s var(--ease-out);
}
.pv-comp-card:hover { transform: translateY(-4px); border-color: var(--ink); }
.pv-comp-card-featured {
  background: var(--ink);
  color: var(--white);
  border-color: var(--ink);
}
.pv-comp-card.pv-comp-card-featured h3 { color: var(--white) !important; }
.pv-comp-card.pv-comp-card-featured p { color: rgba(255,255,255,0.9) !important; }
.pv-comp-card.pv-comp-card-featured .pv-comp-num { color: rgba(255,255,255,0.7) !important; }
.pv-comp-card.pv-comp-card-featured .pv-comp-list li { color: var(--white) !important; }
.pv-comp-card.pv-comp-card-featured .pv-comp-list li::before { background: rgba(255,255,255,0.85) !important; }
.pv-comp-tag {
  position: absolute;
  top: 1rem; right: 1rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  background: var(--white);
  color: var(--ink);
}
.pv-comp-num {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: var(--muted);
}
.pv-comp-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.015em;
  color: var(--ink);
  line-height: 1.25;
}
.pv-comp-card p {
  font-size: 0.94rem;
  color: var(--muted);
  line-height: 1.55;
}
.pv-comp-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  margin-top: 0.25rem;
}
.pv-comp-list li {
  font-size: 0.9rem;
  color: var(--ink);
  padding-left: 1.5rem;
  position: relative;
}
.pv-comp-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 8px;
  height: 1px;
  background: var(--ink);
}

/* ==========================================================
   SERVICE-SEITE
   ========================================================== */
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 4rem;
}
.service-card {
  background: var(--paper);
  border-radius: var(--radius);
  padding: clamp(1.75rem, 3vw, 2.25rem);
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  position: relative;
  transition: transform .4s var(--ease-out), box-shadow .4s var(--ease-out);
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 30px 60px -20px rgba(0,0,0,0.12);
}
.service-card-feature {
  background: var(--ink);
  color: var(--white);
}
.service-card.service-card-feature h3 { color: var(--white) !important; }
.service-card.service-card-feature p { color: rgba(255,255,255,0.9) !important; }
.service-card.service-card-feature .service-card-num { color: rgba(255,255,255,0.7) !important; }
.service-card.service-card-feature .service-card-list li { color: var(--white) !important; }
.service-card.service-card-feature .service-card-list li::before { background: rgba(255,255,255,0.85) !important; }
.service-card-tag {
  position: absolute;
  top: 1rem; right: 1rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  background: var(--white);
  color: var(--ink);
}
.service-card-num {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: var(--muted);
}
.service-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.015em;
  color: var(--ink);
  line-height: 1.25;
}
.service-card p {
  font-size: 0.94rem;
  color: var(--muted);
  line-height: 1.55;
}
.service-card-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  margin-top: 0.5rem;
}
.service-card-list li {
  font-size: 0.9rem;
  color: var(--ink);
  padding-left: 1.5rem;
  position: relative;
}
.service-card-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 8px;
  height: 1px;
  background: var(--ink);
}

/* Service Kontakt-Karten */
.service-contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 3rem;
}
.service-contact-card {
  background: var(--paper);
  border-radius: var(--radius);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: flex-start;
  transition: transform .4s var(--ease-out);
}
.service-contact-card:hover { transform: translateY(-3px); }
.service-contact-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--ink);
  color: var(--white);
  display: grid;
  place-items: center;
  margin-bottom: 0.75rem;
}
.service-contact-icon svg { width: 22px; height: 22px; }
.service-contact-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}
.service-contact-value {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--ink);
  text-decoration: none;
  letter-spacing: -0.01em;
}
.service-contact-value:hover { opacity: 0.7; }
.service-contact-meta {
  font-size: 0.85rem;
  color: var(--muted);
  margin-top: 0.25rem;
}

/* ==========================================================
   PROJEKT-CHECK — Premium Wizard
   ========================================================== */
.pc-hero {
  padding: clamp(5rem, 10vw, 8rem) 0 clamp(3rem, 5vw, 4rem);
  background: linear-gradient(180deg, #f7f7f8 0%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}
.pc-hero::before {
  content: "";
  position: absolute;
  top: -25%; right: -10%;
  width: 60vmin; height: 60vmin;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,180,120,0.08), transparent 70%);
  filter: blur(60px);
  pointer-events: none;
}
.pc-hero .container { position: relative; z-index: 1; }
.pc-hero-inner { max-width: 820px; }
.pc-hero-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 0.5rem 0.9rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
  margin-bottom: 1.5rem;
}
.pc-hero-title {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.04em;
  margin-bottom: 1.5rem;
}
.pc-hero-sub {
  font-size: clamp(1.05rem, 1.5vw, 1.18rem);
  color: var(--muted);
  line-height: 1.55;
  max-width: 60ch;
  margin-bottom: 1.5rem;
}
.pc-hero-sub strong { color: var(--ink); font-weight: 700; }
.pc-hero-meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  font-size: 0.88rem;
  color: var(--muted);
}
.pc-hero-meta strong { color: var(--ink); font-weight: 700; }
.pc-hero-meta .dot { opacity: 0.4; }

/* Auswahl-Karten */
.pc-select-section { padding: clamp(2rem, 5vw, 4rem) 0 clamp(5rem, 10vw, 8rem); }
.pc-select-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  margin-top: 4rem;
}
.pc-select-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(2rem, 4vw, 2.75rem);
  text-align: left;
  font-family: inherit;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  position: relative;
  transition: transform .4s var(--ease-out), border-color .4s var(--ease-out), box-shadow .4s var(--ease-out);
}
.pc-select-card:hover {
  transform: translateY(-6px);
  border-color: var(--ink);
  box-shadow: 0 40px 80px -20px rgba(0,0,0,0.18);
}
.pc-select-card-service {
  background: var(--ink);
  color: var(--white);
  border-color: var(--ink);
}
.pc-select-card.pc-select-card-service h3 { color: var(--white) !important; }
.pc-select-card.pc-select-card-service p { color: rgba(255,255,255,0.9) !important; }
.pc-select-card.pc-select-card-service .pc-select-num,
.pc-select-card.pc-select-card-service .pc-select-meta { color: rgba(255,255,255,0.7) !important; }
.pc-select-num {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  color: var(--muted);
}
.pc-select-card h3 {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.1;
  color: var(--ink);
  text-transform: uppercase;
}
.pc-select-card p {
  font-size: 0.98rem;
  color: var(--muted);
  line-height: 1.55;
  margin-bottom: 0.5rem;
}
.pc-select-meta {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: auto;
}
.pc-select-arrow {
  position: absolute;
  top: clamp(2rem, 4vw, 2.75rem);
  right: clamp(2rem, 4vw, 2.75rem);
  font-size: 1.5rem;
  font-weight: 300;
  transition: transform .3s var(--ease-out);
}
.pc-select-card:hover .pc-select-arrow { transform: translateX(6px); }

/* Trust Strip */
.pc-trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 4rem;
  padding-top: 3rem;
  border-top: 1px solid var(--line);
}
.pc-trust-item { text-align: center; }
.pc-trust-num {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--ink);
}
.pc-trust-label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 0.5rem;
}

/* WIZARD */
.pc-wizard-section {
  padding: clamp(3rem, 6vw, 5rem) 0 clamp(5rem, 10vw, 8rem);
  background: var(--paper);
  min-height: 70vh;
}
.pc-wizard {
  max-width: 760px;
  margin: 0 auto;
  background: var(--white);
  border-radius: 24px;
  box-shadow:
    0 30px 80px -20px rgba(0,0,0,0.18),
    0 12px 30px -8px rgba(0,0,0,0.08);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 600px;
}
.pc-wizard-head {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid var(--line);
}
.pc-icon-btn {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--paper);
  border: 1px solid var(--line);
  cursor: pointer;
  display: grid;
  place-items: center;
  color: var(--ink);
  font-family: inherit;
  transition: all .2s var(--ease);
}
.pc-icon-btn svg { width: 16px; height: 16px; }
.pc-icon-btn:hover { background: var(--ink); color: var(--white); border-color: var(--ink); }
.pc-icon-btn:disabled { opacity: 0.4; cursor: not-allowed; }
.pc-icon-btn:disabled:hover { background: var(--paper); color: var(--ink); border-color: var(--line); }
.pc-progress { flex: 1; display: flex; flex-direction: column; gap: 0.4rem; }
.pc-progress-bar {
  height: 4px;
  background: var(--line);
  border-radius: 999px;
  overflow: hidden;
}
.pc-progress-fill {
  height: 100%;
  background: var(--ink);
  border-radius: 999px;
  width: 0;
  transition: width .5s var(--ease-out);
}
.pc-progress-text {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  text-align: center;
}

.pc-wizard-body {
  flex: 1;
  padding: clamp(2rem, 4vw, 3rem);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.pc-wizard-foot {
  padding: 1.25rem 1.5rem;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  background: var(--paper);
}

/* Frage + Optionen */
.pc-question {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.15;
  color: var(--ink);
}
.pc-question-sub {
  font-size: 1rem;
  color: var(--muted);
  margin-top: -0.5rem;
  line-height: 1.5;
}

.pc-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  animation: pc-slide-in .35s var(--ease-out);
}
@keyframes pc-slide-in {
  from { opacity: 0; transform: translateX(20px); }
  to { opacity: 1; transform: translateX(0); }
}
.pc-option {
  text-align: left;
  padding: 1.15rem 1.25rem;
  background: var(--white);
  border: 1.5px solid var(--line);
  border-radius: 14px;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 500;
  color: var(--ink);
  cursor: pointer;
  letter-spacing: -0.005em;
  transition: all .2s var(--ease);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.pc-option:hover {
  border-color: var(--ink);
  background: var(--paper);
}
.pc-option.is-selected {
  background: var(--ink);
  color: var(--white);
  border-color: var(--ink);
}
.pc-option-check {
  width: 24px; height: 24px;
  border-radius: 50%;
  border: 1.5px solid var(--line);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  transition: all .2s var(--ease);
}
.pc-option.is-selected .pc-option-check {
  background: var(--white);
  border-color: var(--white);
}
.pc-option-check svg { width: 14px; height: 14px; opacity: 0; }
.pc-option.is-selected .pc-option-check svg { opacity: 1; color: var(--ink); }

/* Multi-select pills */
.pc-multi {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  animation: pc-slide-in .35s var(--ease-out);
}
.pc-multi-pill {
  padding: 0.7rem 1.1rem;
  background: var(--white);
  border: 1.5px solid var(--line);
  border-radius: 999px;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--ink);
  cursor: pointer;
  transition: all .2s var(--ease);
  letter-spacing: -0.005em;
}
.pc-multi-pill:hover { border-color: var(--ink); }
.pc-multi-pill.is-selected {
  background: var(--ink);
  color: var(--white);
  border-color: var(--ink);
}

/* Text-Input + PLZ */
.pc-text {
  padding: 1.1rem 1.25rem;
  background: var(--white);
  border: 1.5px solid var(--line);
  border-radius: 14px;
  font-family: inherit;
  font-size: 1.05rem;
  color: var(--ink);
  width: 100%;
  transition: border-color .2s var(--ease), background .2s var(--ease);
  animation: pc-slide-in .35s var(--ease-out);
}
.pc-text:focus {
  outline: none;
  border-color: var(--ink);
}

/* Upload-Bereich */
.pc-upload {
  position: relative;
  border: 2px dashed var(--line);
  border-radius: 16px;
  padding: 2.5rem 1.5rem;
  text-align: center;
  cursor: pointer;
  background: var(--paper);
  transition: all .25s var(--ease);
  animation: pc-slide-in .35s var(--ease-out);
}
.pc-upload:hover, .pc-upload.is-dragover {
  border-color: var(--ink);
  background: var(--white);
}
.pc-upload input[type="file"] {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
}
.pc-upload-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: var(--white);
  display: grid;
  place-items: center;
  margin: 0 auto 1rem;
  border: 1px solid var(--line);
}
.pc-upload-icon svg { width: 22px; height: 22px; }
.pc-upload-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 0.35rem;
}
.pc-upload-sub {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.5;
}
.pc-upload-files {
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.pc-upload-file {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.5rem 0.75rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.85rem;
  color: var(--ink);
}
.pc-upload-file-remove {
  margin-left: auto;
  background: none;
  border: none;
  color: var(--muted);
  cursor: pointer;
  font-size: 1rem;
  width: 22px; height: 22px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  transition: background .2s var(--ease);
}
.pc-upload-file-remove:hover { background: var(--paper); color: var(--ink); }

/* Lead-Form */
.pc-lead-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  animation: pc-slide-in .35s var(--ease-out);
}
.pc-lead-row { display: flex; flex-direction: column; gap: 0.45rem; }
.pc-lead-row label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}
.pc-lead-row .pc-text { animation: none; }

/* Aktionen */
.pc-action-skip {
  background: none;
  border: none;
  color: var(--muted);
  font-family: inherit;
  font-size: 0.92rem;
  cursor: pointer;
  text-decoration: underline;
  padding: 0.5rem;
}
.pc-action-skip:hover { color: var(--ink); }
.pc-action-next {
  background: var(--ink);
  color: var(--white);
  border: none;
  padding: 0.95rem 1.85rem;
  border-radius: 999px;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  transition: all .25s var(--ease);
}
.pc-action-next svg { width: 16px; height: 16px; }
.pc-action-next:hover {
  background: #000;
  transform: translateY(-1px);
  box-shadow: 0 10px 25px -8px rgba(0,0,0,0.3);
}
.pc-action-next:disabled {
  background: var(--line);
  color: var(--muted);
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

/* Result-Screen */
.pc-result {
  text-align: center;
  padding: 1rem 0;
  animation: pc-slide-in .4s var(--ease-out);
}
.pc-result-icon {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--white);
  display: grid;
  place-items: center;
  margin: 0 auto 1.5rem;
}
.pc-result-icon svg { width: 32px; height: 32px; }
.pc-result h2 {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.1;
  margin-bottom: 1rem;
}
.pc-result p {
  font-size: 1.05rem;
  color: var(--muted);
  line-height: 1.55;
  max-width: 52ch;
  margin: 0 auto 2rem;
}
.pc-result-summary {
  background: var(--paper);
  border-radius: 14px;
  padding: 1.5rem;
  text-align: left;
  margin: 0 auto 2rem;
  max-width: 480px;
}
.pc-result-summary-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.85rem;
  display: block;
}
.pc-result-summary dl {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.4rem 1rem;
}
.pc-result-summary dt { font-size: 0.85rem; color: var(--muted); font-weight: 500; }
.pc-result-summary dd { font-size: 0.92rem; color: var(--ink); font-weight: 600; }
.pc-result-actions {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  flex-wrap: wrap;
}
.pc-result-actions a {
  text-decoration: none;
}

/* Mail-Status-Hinweis nach Submit */
.pc-result-mail-status {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  background: rgba(37, 211, 102, 0.08);
  border: 1px solid rgba(37, 211, 102, 0.25);
  border-radius: 14px;
  padding: 1rem 1.25rem;
  max-width: 480px;
  margin: 0 auto 1.5rem;
  text-align: left;
}
.pc-result-mail-icon {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.pc-result-mail-icon svg { width: 18px; height: 18px; }
.pc-result-mail-status > div:last-child {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  font-size: 0.92rem;
  line-height: 1.45;
  color: var(--ink);
}
.pc-result-mail-status strong { font-weight: 700; }
.pc-result-mail-status span { color: var(--muted); font-size: 0.88rem; }
.pc-result-mail-status code {
  background: var(--white);
  padding: 1px 6px;
  border-radius: 4px;
  font-size: 0.85em;
  border: 1px solid var(--line);
  color: var(--ink);
  font-family: inherit;
}
.pc-result-mail-status em { color: var(--ink); font-style: normal; font-weight: 600; }

.pc-result-alt {
  font-size: 0.88rem !important;
  color: var(--muted) !important;
  margin: 0 auto 1rem !important;
  max-width: 480px !important;
}

/* Responsive */
@media (max-width: 760px) {
  .pc-select-grid { grid-template-columns: 1fr; gap: 1rem; }
  .pc-trust-strip { grid-template-columns: 1fr 1fr; gap: 1.5rem; padding-top: 2rem; }
  .pc-wizard { border-radius: 18px; min-height: 500px; }
  .pc-wizard-head { padding: 1rem 1rem; }
  .pc-wizard-body { padding: 1.5rem 1.25rem; gap: 1.25rem; }
  .pc-wizard-foot { padding: 1rem; flex-direction: column-reverse; gap: 0.75rem; }
  .pc-wizard-foot > * { width: 100%; justify-content: center; }
  .pc-options { grid-template-columns: 1fr; }
}

/* ==========================================================
   MAY ASSISTENT — Premium digitaler Vertriebs-/Service-Mitarbeiter
   ========================================================== */
.may-assistant {
  position: fixed;
  bottom: 0;
  right: 0;
  z-index: 100;
  font-family: inherit;
}

/* Toggle Button — sitzt oberhalb des WhatsApp-Buttons */
.ma-toggle {
  position: fixed;
  bottom: 5.5rem;
  right: 1.5rem;
  z-index: 100;
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.9rem 1.25rem 0.9rem 0.95rem;
  background: var(--ink);
  color: var(--white);
  border: none;
  border-radius: 999px;
  cursor: pointer;
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: -0.005em;
  box-shadow:
    0 18px 40px -10px rgba(0,0,0,0.45),
    0 6px 14px -2px rgba(0,0,0,0.2),
    inset 0 1px 0 rgba(255,255,255,0.08);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), opacity .3s var(--ease);
  font-family: inherit;
}
.ma-toggle:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 22px 48px -10px rgba(0,0,0,0.55), 0 8px 16px -2px rgba(0,0,0,0.25);
}
.ma-toggle-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  position: relative;
}
.ma-toggle-icon svg { width: 16px; height: 16px; }
.ma-toggle-icon::after {
  content: "";
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.25);
  animation: ma-pulse 2.4s ease-out infinite;
  pointer-events: none;
}
@keyframes ma-pulse {
  0%   { transform: scale(0.85); opacity: 1; }
  100% { transform: scale(1.5); opacity: 0; }
}
.ma-toggle-label { white-space: nowrap; }
.ma-toggle-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  border-radius: 999px;
  background: #25D366;
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  margin-left: 0.25rem;
}

/* Wenn Widget geöffnet, Toggle dezent verstecken */
.may-assistant[data-open="true"] .ma-toggle {
  opacity: 0;
  pointer-events: none;
  transform: scale(0.9);
}

/* Panel */
.ma-panel {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  width: 400px;
  max-width: calc(100vw - 2rem);
  height: 640px;
  max-height: calc(100vh - 3rem);
  background: var(--white);
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-shadow:
    0 40px 100px -20px rgba(0,0,0,0.4),
    0 16px 32px -8px rgba(0,0,0,0.2),
    inset 0 1px 0 rgba(255,255,255,0.5);
  opacity: 0;
  transform: translateY(20px) scale(0.96);
  pointer-events: none;
  transition: opacity .35s var(--ease-out), transform .35s var(--ease-out);
  z-index: 101;
}
.may-assistant[data-open="true"] .ma-panel {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

/* Header */
.ma-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1.25rem 1.25rem 1.1rem;
  background: var(--ink);
  color: var(--white);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.ma-header-info {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex: 1;
}
.ma-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, #2a2b2d, #0a0b0c);
  display: grid;
  place-items: center;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.15);
  position: relative;
}
.ma-avatar::after {
  content: "";
  position: absolute;
  bottom: 0; right: 0;
  width: 10px; height: 10px;
  border-radius: 50%;
  background: #25D366;
  border: 2px solid var(--ink);
}
.ma-title-block { display: flex; flex-direction: column; line-height: 1.1; }
.ma-title {
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: -0.005em;
}
.ma-subtitle {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.6);
  margin-top: 0.2rem;
  letter-spacing: 0.01em;
}
.ma-header-actions { display: flex; gap: 0.25rem; }
.ma-icon-btn {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: none;
  color: var(--white);
  cursor: pointer;
  display: grid;
  place-items: center;
  font-size: 1.1rem;
  font-family: inherit;
  transition: background .25s var(--ease);
}
.ma-icon-btn:hover { background: rgba(255,255,255,0.16); }

/* Body */
.ma-body {
  flex: 1;
  overflow-y: auto;
  padding: 1.25rem;
  background: var(--paper);
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  scroll-behavior: smooth;
}
.ma-body::-webkit-scrollbar { width: 6px; }
.ma-body::-webkit-scrollbar-thumb { background: rgba(0,0,0,0.15); border-radius: 999px; }

/* Message Bubbles */
.ma-msg {
  display: flex;
  max-width: 85%;
  animation: ma-fade-in .35s var(--ease-out);
}
@keyframes ma-fade-in {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: translateY(0); }
}
.ma-msg-bot { align-self: flex-start; }
.ma-msg-user { align-self: flex-end; }
.ma-msg-bubble {
  padding: 0.75rem 1rem;
  border-radius: 18px;
  font-size: 0.92rem;
  line-height: 1.5;
  letter-spacing: -0.005em;
}
.ma-msg-bot .ma-msg-bubble {
  background: var(--white);
  color: var(--ink);
  border: 1px solid var(--line);
  border-bottom-left-radius: 4px;
  box-shadow: 0 1px 2px rgba(0,0,0,0.04);
}
.ma-msg-user .ma-msg-bubble {
  background: var(--ink);
  color: var(--white);
  border-bottom-right-radius: 4px;
}
.ma-msg-bubble a { color: inherit; border-bottom: 1px solid currentColor; padding-bottom: 1px; }
.ma-msg-bubble strong { font-weight: 700; }

/* Typing indicator */
.ma-typing {
  display: inline-flex;
  gap: 4px;
  padding: 0.65rem 0.9rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 18px;
  border-bottom-left-radius: 4px;
  align-self: flex-start;
}
.ma-typing span {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--muted);
  animation: ma-dot 1.2s ease-in-out infinite;
}
.ma-typing span:nth-child(2) { animation-delay: 0.15s; }
.ma-typing span:nth-child(3) { animation-delay: 0.3s; }
@keyframes ma-dot {
  0%, 60%, 100% { transform: translateY(0); opacity: 0.4; }
  30% { transform: translateY(-4px); opacity: 1; }
}

/* Quick Reply Buttons */
.ma-options {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-top: 0.25rem;
  align-self: flex-start;
  max-width: 90%;
  animation: ma-fade-in .35s var(--ease-out) .1s both;
}
.ma-option {
  text-align: left;
  padding: 0.7rem 0.95rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--ink);
  cursor: pointer;
  font-family: inherit;
  letter-spacing: -0.005em;
  transition: all .2s var(--ease);
}
.ma-option:hover {
  background: var(--ink);
  color: var(--white);
  border-color: var(--ink);
  transform: translateX(2px);
}
.ma-option.ma-option-primary {
  background: var(--ink);
  color: var(--white);
  border-color: var(--ink);
}
.ma-option.ma-option-primary:hover {
  background: #000;
}
.ma-option.ma-option-wa {
  background: #25D366;
  color: var(--white);
  border-color: #25D366;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.ma-option.ma-option-wa:hover { background: #1ebe5d; border-color: #1ebe5d; }
.ma-option-wa svg { width: 16px; height: 16px; fill: currentColor; }

/* Form Input Area */
.ma-input-area {
  display: flex;
  gap: 0.5rem;
  padding: 0.85rem 1rem;
  background: var(--white);
  border-top: 1px solid var(--line);
}
.ma-input {
  flex: 1;
  padding: 0.7rem 0.95rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-family: inherit;
  font-size: 0.92rem;
  color: var(--ink);
  background: var(--paper);
  transition: border-color .2s var(--ease), background .2s var(--ease);
}
.ma-input:focus {
  outline: none;
  border-color: var(--ink);
  background: var(--white);
}
.ma-send {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--white);
  border: none;
  cursor: pointer;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  transition: background .2s var(--ease), transform .2s var(--ease);
}
.ma-send:hover { background: #000; transform: scale(1.05); }
.ma-send svg { width: 18px; height: 18px; }
.ma-send:disabled { background: var(--muted); cursor: not-allowed; transform: none; }

/* Footer */
.ma-footer {
  padding: 0.6rem 1rem;
  background: var(--paper);
  border-top: 1px solid var(--line);
  font-size: 0.7rem;
  text-align: center;
  color: var(--muted);
  letter-spacing: 0.06em;
  font-weight: 500;
}
.ma-footer strong { color: var(--ink); font-weight: 700; }

/* Lead Recap Card (final step) */
.ma-recap {
  background: var(--ink);
  color: var(--white);
  border-radius: 14px;
  padding: 1rem 1.1rem;
  font-size: 0.88rem;
  line-height: 1.5;
  align-self: flex-start;
  max-width: 95%;
  animation: ma-fade-in .35s var(--ease-out);
}
.ma-recap-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-bottom: 0.5rem;
  display: block;
}
.ma-recap dl {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.25rem 0.85rem;
}
.ma-recap dt {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.6);
  font-weight: 500;
}
.ma-recap dd {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--white);
}

/* Responsive */
@media (max-width: 560px) {
  .ma-toggle {
    bottom: 5rem;
    right: 1rem;
    padding: 0.8rem 1.05rem 0.8rem 0.85rem;
    font-size: 0.88rem;
  }
  .ma-panel {
    bottom: 0.75rem;
    right: 0.75rem;
    left: 0.75rem;
    width: auto;
    max-height: calc(100vh - 1.5rem);
    height: calc(100vh - 1.5rem);
    border-radius: 18px;
  }
}

/* WHATSAPP FLOATING BUTTON — Brutaler Lead-Magnet */
.wa-float {
  position: fixed;
  bottom: 1.75rem;
  right: 1.75rem;
  z-index: 999;
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  padding: 1rem 1.4rem 1rem 1rem;
  background: #25D366;
  background-image: linear-gradient(135deg, #25D366 0%, #1eb853 100%);
  color: #fff;
  border-radius: 999px;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: -0.005em;
  box-shadow:
    0 14px 38px -6px rgba(37,211,102,0.55),
    0 6px 16px -2px rgba(0,0,0,0.20),
    inset 0 1px 0 rgba(255,255,255,0.18);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
  animation: wa-float-pulse 2.6s ease-in-out infinite;
}
.wa-float::before {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 999px;
  background: rgba(37,211,102,0.35);
  z-index: -1;
  animation: wa-ring-pulse 2.6s ease-out infinite;
}
.wa-float:hover {
  transform: translateY(-3px) scale(1.04);
  opacity: 1;
  animation-play-state: paused;
  box-shadow:
    0 20px 50px -8px rgba(37,211,102,0.65),
    0 8px 20px -2px rgba(0,0,0,0.25),
    inset 0 1px 0 rgba(255,255,255,0.25);
}
.wa-float svg { width: 26px; height: 26px; flex-shrink: 0; }
.wa-float-label {
  white-space: nowrap;
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}
.wa-float-label strong {
  font-size: 0.98rem;
  font-weight: 800;
  letter-spacing: -0.01em;
}
.wa-float-label span {
  font-size: 0.72rem;
  font-weight: 500;
  opacity: 0.92;
  letter-spacing: 0.02em;
}
.wa-float-badge {
  position: absolute;
  top: -6px;
  right: -4px;
  background: #ff3b30;
  color: #fff;
  font-size: 0.65rem;
  font-weight: 800;
  padding: 0.2rem 0.45rem;
  border-radius: 999px;
  letter-spacing: 0.04em;
  box-shadow: 0 4px 12px rgba(255,59,48,0.45);
  animation: wa-badge-bounce 2.6s ease-in-out infinite;
}

@keyframes wa-float-pulse {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-3px) scale(1.015); }
}
@keyframes wa-ring-pulse {
  0% { transform: scale(1); opacity: 0.5; }
  70% { transform: scale(1.35); opacity: 0; }
  100% { transform: scale(1.35); opacity: 0; }
}
@keyframes wa-badge-bounce {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.12); }
}

/* Mobile: Schmaler aber immer noch sichtbar */
@media (max-width: 720px) {
  .wa-float {
    bottom: 1rem;
    right: 1rem;
    padding: 0.85rem 1rem 0.85rem 0.85rem;
    gap: 0.55rem;
  }
  .wa-float svg { width: 22px; height: 22px; }
  .wa-float-label strong { font-size: 0.88rem; }
  .wa-float-label span { font-size: 0.66rem; }
  .wa-float-badge { font-size: 0.6rem; padding: 0.15rem 0.4rem; }
}

/* ===== Hero-Future: rotating aurora background ===== */
.hero-future { position: relative; isolation: isolate; }
.hero-future .container { position: relative; z-index: 2; }

.aurora-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.aurora-glow {
  position: absolute;
  top: 50%; left: 50%;
  width: 80vmin; height: 80vmin;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(255,180,120,0.18), transparent 60%);
  filter: blur(50px);
}
.aurora-ring {
  position: absolute;
  top: 50%; left: 50%;
  border-radius: 50%;
  background: conic-gradient(
    from 0deg,
    rgba(120, 170, 255, 0.0) 0%,
    rgba(120, 170, 255, 0.18) 20%,
    rgba(255, 200, 130, 0.18) 50%,
    rgba(255, 130, 100, 0.16) 75%,
    rgba(120, 170, 255, 0.0) 100%
  );
  filter: blur(40px);
  mix-blend-mode: screen;
}
.aurora-ring-1 {
  width: 70vmin; height: 70vmin;
  transform: translate(-50%, -50%);
  animation: aurora-rotate 50s linear infinite;
  opacity: 0.85;
}
.aurora-ring-2 {
  width: 95vmin; height: 95vmin;
  transform: translate(-50%, -50%);
  animation: aurora-rotate 80s linear infinite reverse;
  opacity: 0.55;
  background: conic-gradient(
    from 90deg,
    rgba(120, 170, 255, 0.0) 0%,
    rgba(180, 130, 255, 0.14) 25%,
    rgba(120, 170, 255, 0.0) 50%,
    rgba(255, 200, 130, 0.14) 75%,
    rgba(120, 170, 255, 0.0) 100%
  );
}
.aurora-ring-3 {
  width: 50vmin; height: 50vmin;
  transform: translate(-50%, -50%);
  animation: aurora-rotate 30s linear infinite;
  opacity: 0.7;
  filter: blur(60px);
  background: conic-gradient(
    from 180deg,
    rgba(255, 100, 80, 0.0) 0%,
    rgba(255, 150, 90, 0.22) 30%,
    rgba(255, 200, 130, 0.18) 60%,
    rgba(255, 100, 80, 0.0) 100%
  );
}
@keyframes aurora-rotate {
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

/* ===== Stats expanded (5 columns) ===== */
.stats-5 {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2rem;
  padding-top: 3rem;
  border-top: 1px solid var(--line);
}
.stats-5 .stat-value { font-size: clamp(1.75rem, 3.5vw, 2.75rem); }

/* ===== Timeline (vertical, dark) ===== */
.timeline {
  position: relative;
  margin-top: 5rem;
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 5vw, 4rem);
}
.timeline::before {
  content: "";
  position: absolute;
  left: 90px;
  top: 12px;
  bottom: 12px;
  width: 1px;
  background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.18) 10%, rgba(255,255,255,0.18) 90%, transparent);
}
.tl-item {
  display: grid;
  grid-template-columns: 80px 40px 1fr;
  gap: 1.5rem;
  align-items: start;
}
.tl-year {
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.75);
  text-align: right;
  padding-top: 0.65rem;
}
.tl-marker {
  display: grid;
  place-items: center;
  padding-top: 0.65rem;
}
.tl-marker span {
  display: block;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--white);
  box-shadow: 0 0 0 5px rgba(255,255,255,0.08);
  position: relative;
  z-index: 1;
}
.tl-item.is-future .tl-marker span {
  background: transparent;
  border: 1px solid var(--white);
  animation: tl-pulse 2s ease-in-out infinite;
}
@keyframes tl-pulse {
  0%, 100% { box-shadow: 0 0 0 5px rgba(255,255,255,0.08); }
  50% { box-shadow: 0 0 0 12px rgba(255,255,255,0.12); }
}

.tl-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  padding: 1.5rem 1.75rem;
  transition: transform .4s var(--ease-out), background .4s var(--ease-out);
}
.tl-card:hover {
  transform: translateX(6px);
  background: rgba(255,255,255,0.07);
}
.tl-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
  color: var(--white);
}
.tl-card p {
  color: rgba(255,255,255,0.7);
  font-size: 0.95rem;
  line-height: 1.55;
}

/* ===== Team Orbit ===== */
.team-orbit {
  margin: 5rem auto 4rem;
  max-width: 720px;
  display: grid;
  place-items: center;
}
.orbit-stage {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
}
.orbit-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px dashed rgba(0,0,0,0.12);
}
.orbit-ring-outer {
  inset: 0;
  animation: aurora-rotate 60s linear infinite;
}
.orbit-ring-inner {
  inset: 18%;
  border-style: solid;
  border-color: rgba(0,0,0,0.06);
  animation: aurora-rotate 40s linear infinite reverse;
}
.orbit-center {
  position: relative;
  width: 32%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--ink);
  color: var(--white);
  display: grid;
  place-items: center;
  text-align: center;
  z-index: 2;
  box-shadow: 0 30px 60px -20px rgba(0,0,0,0.3);
}
.orbit-center-num {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
}
.orbit-center-label {
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-top: 0.4rem;
}

.orbit-node {
  position: absolute;
  top: 50%; left: 50%;
  width: clamp(110px, 16vw, 140px);
  height: clamp(110px, 16vw, 140px);
  border-radius: 50%;
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.1);
  display: grid;
  place-items: center;
  text-align: center;
  padding: 0.5rem;
  transform-origin: center;
  /* Position around circle: rotate, translate to edge, then counter-rotate so text stays upright */
  transform:
    translate(-50%, -50%)
    rotate(var(--angle))
    translateY(calc(-1 * 38%))
    rotate(calc(-1 * var(--angle)));
  box-shadow: 0 10px 30px -10px rgba(0,0,0,0.12);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--ink);
  line-height: 1.3;
}
.orbit-node span { display: block; padding: 0 0.25rem; }

/* ===== Roles cards ===== */
.roles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 4rem;
}
.role-card {
  background: var(--paper);
  border-radius: var(--radius);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition: transform .4s var(--ease-out), box-shadow .4s var(--ease-out);
}
.role-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 30px 60px -20px rgba(0,0,0,0.12);
}
.role-tag {
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
}
.role-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: var(--ink);
}
.role-card p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.55;
}

/* ===== Partner Strip ===== */
.partner-strip {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 4rem;
}
.partner-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: clamp(2rem, 4vw, 3rem);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  transition: transform .4s var(--ease-out), background .4s var(--ease-out);
}
.partner-card:hover {
  transform: translateY(-4px);
  background: rgba(255,255,255,0.06);
}
.partner-logo {
  display: grid;
  place-items: center;
  height: 80px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  padding-bottom: 1.25rem;
}
.partner-logo-text {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 800;
  letter-spacing: 0.18em;
  color: var(--white);
}
.partner-meta {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}
.partner-desc {
  color: rgba(255,255,255,0.75);
  font-size: 0.98rem;
  line-height: 1.55;
}

/* ===== Trainee tiles ===== */
.trainee-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.trainee-tile {
  aspect-ratio: 1;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--paper) 0%, var(--paper-2) 100%);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1.5rem;
  transition: transform .4s var(--ease-out);
}
.trainee-tile:hover { transform: translateY(-4px); }
.t-num {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--ink);
}
.t-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  align-self: flex-end;
}

/* ===== Scrollytelling — cinematic ===== */
.scrollyt {
  padding: clamp(6rem, 12vw, 10rem) 0;
  position: relative;
  /* NOTE: no overflow:hidden here — would break position:sticky for .st-sticky */
}
.scrollyt .section-narrow { margin-bottom: clamp(3rem, 6vw, 5rem); }

.st-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(2rem, 6vw, 6rem);
  align-items: start;
}

/* Sticky left side */
.st-sticky {
  position: sticky;
  top: 10vh;
  height: 80vh;
  display: grid;
  place-items: center;
}

.st-frame {
  width: 100%;
  max-width: 560px;
  aspect-ratio: 1;
  border-radius: 28px;
  background: radial-gradient(120% 120% at 50% 0%, #1c1d1f 0%, #0a0b0c 60%, #000 100%);
  position: relative;
  overflow: hidden;
  isolation: isolate;
  display: grid;
  place-items: center;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  transition: box-shadow 1.2s var(--ease-out);
  box-shadow:
    0 60px 120px -40px rgba(0,0,0,0.8),
    inset 0 1px 0 rgba(255,255,255,0.08);
}

/* Ambient aura — glow that shifts hue per stage */
.st-aura {
  position: absolute;
  inset: -10%;
  z-index: 0;
  opacity: 0.85;
  filter: blur(50px);
  transition: background 1.4s var(--ease-out), transform 2s var(--ease-out);
  pointer-events: none;
  background: radial-gradient(50% 50% at 30% 25%, rgba(120, 170, 255, 0.28), transparent 70%);
}
.st-frame[data-active-stage="1"] .st-aura {
  background: radial-gradient(50% 50% at 30% 25%, rgba(120, 170, 255, 0.32), transparent 70%);
  transform: translate(-4%, -4%);
}
.st-frame[data-active-stage="2"] .st-aura {
  background: radial-gradient(60% 60% at 50% 50%, rgba(255, 210, 130, 0.38), transparent 70%);
  transform: translate(0, 0) scale(1.05);
}
.st-frame[data-active-stage="3"] .st-aura {
  background: radial-gradient(55% 55% at 70% 40%, rgba(255, 150, 90, 0.36), transparent 70%);
  transform: translate(4%, 0);
}
.st-frame[data-active-stage="4"] .st-aura {
  background: radial-gradient(70% 70% at 50% 70%, rgba(255, 110, 80, 0.45), transparent 70%);
  transform: translate(0, 4%) scale(1.08);
}

/* Noise texture overlay */
.st-frame::after {
  content: "";
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0  0 0 0 0 0  0 0 0 0 0  0 0 0 0.6 0'/></filter><rect width='200' height='200' filter='url(%23n)' opacity='0.5'/></svg>");
  opacity: 0.14;
  mix-blend-mode: overlay;
  z-index: 8; pointer-events: none;
}

/* Ghost phase number — giant, subtle, behind everything */
.st-ghost {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  z-index: 1;
  font-size: clamp(14rem, 32vw, 28rem);
  font-weight: 800;
  letter-spacing: -0.08em;
  line-height: 1;
  color: rgba(255,255,255,0.04);
  pointer-events: none;
  transform: translateY(-4%);
  transition: opacity .8s var(--ease-out), color .8s var(--ease-out);
}
.st-frame[data-active-stage="2"] .st-ghost,
.st-frame[data-active-stage="4"] .st-ghost { color: rgba(255,255,255,0.06); }

/* Rotating orbit rings */
.st-orbit {
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.06);
  z-index: 2;
  pointer-events: none;
}
.st-orbit-1 {
  width: 74%;
  aspect-ratio: 1;
  transform: translate(-50%, -50%);
  animation: st-orbit-spin 40s linear infinite;
  border-style: dashed;
  border-color: rgba(255,255,255,0.08);
}
.st-orbit-2 {
  width: 52%;
  aspect-ratio: 1;
  transform: translate(-50%, -50%);
  animation: st-orbit-spin 26s linear infinite reverse;
  border-color: rgba(255,255,255,0.11);
}
@keyframes st-orbit-spin {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Floating ambient particles */
.st-particles {
  position: absolute; inset: 0;
  z-index: 2;
  pointer-events: none;
}
.st-particle {
  position: absolute;
  width: 3px; height: 3px;
  background: rgba(255,255,255,0.4);
  border-radius: 50%;
  filter: blur(0.3px);
  opacity: 0;
  animation: st-float 8s ease-in-out infinite;
}
.st-particle:nth-child(1) { left: 12%; top: 80%; animation-delay: 0s; }
.st-particle:nth-child(2) { left: 88%; top: 70%; animation-delay: 1.2s; }
.st-particle:nth-child(3) { left: 30%; top: 88%; animation-delay: 2.4s; }
.st-particle:nth-child(4) { left: 72%; top: 85%; animation-delay: 3.6s; }
.st-particle:nth-child(5) { left: 50%; top: 92%; animation-delay: 0.8s; }
.st-particle:nth-child(6) { left: 20%; top: 75%; animation-delay: 2s; }
.st-particle:nth-child(7) { left: 78%; top: 78%; animation-delay: 3.2s; }
.st-particle:nth-child(8) { left: 60%; top: 82%; animation-delay: 4.4s; }
@keyframes st-float {
  0%   { opacity: 0; transform: translateY(0) scale(1); }
  25%  { opacity: 0.9; }
  70%  { opacity: 0.4; }
  100% { opacity: 0; transform: translateY(-180px) scale(1.6); }
}

/* Stage 2 — compressor-style pulse in particles */
.st-frame[data-active-stage="2"] .st-particle {
  background: rgba(255, 210, 130, 0.7);
  animation-duration: 1.6s;
}
/* Stage 3 — transfer, slower drift */
.st-frame[data-active-stage="3"] .st-particle {
  background: rgba(255, 180, 120, 0.55);
  animation-duration: 5s;
}
/* Stage 4 — embers rising */
.st-frame[data-active-stage="4"] .st-particle {
  background: rgba(255, 130, 80, 0.75);
  animation-duration: 3.5s;
}

/* Progress display */
.st-progress {
  position: absolute;
  top: 1.75rem;
  left: 1.75rem;
  z-index: 5;
  display: flex;
  align-items: baseline;
  gap: 0.4rem;
  color: var(--white);
}
.st-phase-current {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  letter-spacing: -0.05em;
  line-height: 1;
  color: var(--white);
  transition: transform .5s var(--ease-out);
}
@keyframes st-num-pop {
  0%   { transform: scale(1); }
  40%  { transform: scale(1.18); }
  100% { transform: scale(1); }
}
.st-phase-current.pop { animation: st-num-pop .8s var(--ease-out); }
.st-phase-sep { font-size: 1.2rem; opacity: 0.35; font-weight: 300; }
.st-phase-total { font-size: 1.2rem; opacity: 0.45; font-weight: 400; }

/* Stages — the icons that fade in/out */
.st-stages {
  position: relative;
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  z-index: 4;
}
.st-stage {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  gap: 2.5rem;
  grid-template-rows: 1fr auto;
  padding: 3rem 1rem 3rem;
  opacity: 0;
  transform: scale(0.88) translateY(14px);
  transition: opacity 1s var(--ease-out), transform 1s var(--ease-out);
  pointer-events: none;
  color: var(--white);
  filter: blur(8px);
}
.st-stage.is-active {
  opacity: 1;
  transform: scale(1) translateY(0);
  filter: blur(0);
}

.st-icon-wrap {
  position: relative;
  display: grid;
  place-items: center;
}
.st-icon-wrap::before {
  content: "";
  position: absolute;
  inset: -25%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.08), transparent 65%);
  z-index: -1;
}
.st-icon-wrap.st-icon-pulse::after {
  content: "";
  position: absolute;
  inset: -10%;
  border-radius: 50%;
  border: 1px solid rgba(255,210,130,0.35);
  animation: st-pulse 2s var(--ease-out) infinite;
  pointer-events: none;
}
@keyframes st-pulse {
  0%   { transform: scale(0.7); opacity: 0.9; }
  100% { transform: scale(1.6); opacity: 0; }
}

.st-icon {
  width: clamp(160px, 30vw, 260px);
  height: auto;
  color: var(--white);
  filter: drop-shadow(0 24px 48px rgba(0,0,0,0.55));
  transition: filter 1.2s var(--ease-out);
}
.st-frame[data-active-stage="2"] .st-icon { filter: drop-shadow(0 0 30px rgba(255,210,130,0.5)) drop-shadow(0 24px 48px rgba(0,0,0,0.55)); }
.st-frame[data-active-stage="3"] .st-icon { filter: drop-shadow(0 0 24px rgba(255,150,90,0.4)) drop-shadow(0 24px 48px rgba(0,0,0,0.55)); }
.st-frame[data-active-stage="4"] .st-icon { filter: drop-shadow(0 0 40px rgba(255,110,80,0.55)) drop-shadow(0 24px 48px rgba(0,0,0,0.55)); }

.st-stage-label {
  font-size: 0.75rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  text-align: center;
  padding: 0.75rem 1.25rem;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 999px;
  backdrop-filter: blur(6px);
}

/* ===== Light variant (for pages without dark section wrapping) ===== */
.st-frame.st-frame-light {
  background: radial-gradient(120% 120% at 50% 0%, #ffffff 0%, #ededef 50%, #d3d3d8 100%);
  color: var(--ink);
  box-shadow:
    0 60px 120px -40px rgba(0,0,0,0.18),
    inset 0 1px 0 rgba(255,255,255,0.6);
}
.st-frame.st-frame-light::after { opacity: 0.08; mix-blend-mode: multiply; }
.st-aura.st-aura-light { opacity: 0.5; }
.st-frame.st-frame-light[data-active-stage="1"] .st-aura {
  background: radial-gradient(50% 50% at 30% 25%, rgba(80, 130, 220, 0.3), transparent 70%);
}
.st-frame.st-frame-light[data-active-stage="2"] .st-aura {
  background: radial-gradient(60% 60% at 50% 50%, rgba(230, 180, 90, 0.4), transparent 70%);
}
.st-frame.st-frame-light[data-active-stage="3"] .st-aura {
  background: radial-gradient(55% 55% at 70% 40%, rgba(230, 120, 70, 0.38), transparent 70%);
}
.st-frame.st-frame-light[data-active-stage="4"] .st-aura {
  background: radial-gradient(70% 70% at 50% 70%, rgba(220, 90, 70, 0.42), transparent 70%);
}
.st-ghost-light {
  color: rgba(0,0,0,0.05) !important;
}
.st-frame.st-frame-light[data-active-stage="2"] .st-ghost,
.st-frame.st-frame-light[data-active-stage="4"] .st-ghost { color: rgba(0,0,0,0.07) !important; }

.st-orbit-light { border-color: rgba(0,0,0,0.08); }

.st-progress.st-progress-light { color: var(--ink); }
.st-progress.st-progress-light .st-phase-current { color: var(--ink); }
.st-progress.st-progress-light .st-phase-sep,
.st-progress.st-progress-light .st-phase-total { opacity: 0.4; }

.st-frame-light .st-icon { color: var(--ink); filter: drop-shadow(0 20px 40px rgba(0,0,0,0.15)); }
.st-stage-label-light {
  color: var(--ink);
  border: 1px solid rgba(0,0,0,0.15);
  background: rgba(255,255,255,0.5);
}

.st-icon-pulse-light::after {
  border-color: rgba(0,0,0,0.3) !important;
}

.st-bar-light .st-seg { background: rgba(0,0,0,0.12); }
.st-bar-light .st-seg::after { background: var(--ink); }
.st-bar-light .st-seg.is-current::after {
  background: linear-gradient(90deg, var(--ink), rgba(0,0,0,0.6));
  box-shadow: 0 0 12px rgba(0,0,0,0.15);
}

.st-panels-light .st-panel-num { color: var(--muted); }
.st-panels-light .st-panel-title { color: var(--ink); }
.st-panels-light .st-panel-lead { color: var(--muted); }
.st-panels-light .st-panel-bullets li { color: var(--muted); }
.st-panels-light .st-panel-bullets li::before { background: var(--ink); opacity: 0.5; }

/* Segmented progress bar */
.st-bar {
  position: absolute;
  left: 1.75rem;
  right: 1.75rem;
  bottom: 1.75rem;
  display: flex;
  gap: 0.5rem;
  z-index: 5;
}
.st-seg {
  flex: 1;
  height: 2.5px;
  background: rgba(255,255,255,0.14);
  border-radius: 999px;
  position: relative;
  overflow: hidden;
}
.st-seg::after {
  content: "";
  position: absolute; inset: 0;
  background: var(--white);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .8s var(--ease-out);
  border-radius: inherit;
}
.st-seg.is-done::after { transform: scaleX(1); }
.st-seg.is-current::after {
  transform: scaleX(1);
  background: linear-gradient(90deg, var(--white), rgba(255,255,255,0.6));
  box-shadow: 0 0 12px rgba(255,255,255,0.5);
}

/* Right side panels */
.st-panels {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.st-panel {
  min-height: 90vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 3rem 0;
  opacity: 0.35;
  transition: opacity .6s var(--ease-out);
}
.st-panel.is-active { opacity: 1; }
.st-panels > .st-panel:first-child { min-height: 70vh; justify-content: flex-start; padding-top: 0; }
.st-panels > .st-panel:last-child { min-height: 70vh; justify-content: flex-start; }

.st-panel-num {
  font-size: 0.82rem;
  letter-spacing: 0.24em;
  color: rgba(255,255,255,0.6);
  margin-bottom: 1rem;
  font-weight: 600;
}
.st-panel-title {
  font-size: clamp(2.75rem, 6vw, 5.5rem);
  font-weight: 800;
  letter-spacing: -0.055em;
  line-height: 0.95;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  color: var(--white);
  transform: translateY(8px);
  opacity: 0.75;
  transition: transform .8s var(--ease-out), opacity .8s var(--ease-out);
}
.st-panel.is-active .st-panel-title {
  transform: translateY(0);
  opacity: 1;
}
.st-panel-lead {
  font-size: clamp(1.05rem, 1.4vw, 1.2rem);
  line-height: 1.55;
  color: rgba(255,255,255,0.82);
  margin-bottom: 2rem;
  max-width: 42ch;
}
.st-panel-bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.st-panel-bullets li {
  font-size: 0.95rem;
  line-height: 1.5;
  color: rgba(255,255,255,0.7);
  padding-left: 1.75rem;
  position: relative;
}
.st-panel-bullets li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 10px;
  height: 1px;
  background: rgba(255,255,255,0.6);
}

/* ===== Jobs / Career Page ===== */
.jobs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
.job-card {
  background: var(--paper);
  border-radius: var(--radius);
  padding: clamp(2rem, 4vw, 3rem);
  display: flex;
  flex-direction: column;
  gap: 2rem;
  transition: transform .4s var(--ease-out), box-shadow .4s var(--ease-out);
}
.job-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 40px 80px -30px rgba(0,0,0,0.15);
}
.job-head { display: flex; flex-direction: column; gap: 1rem; }
.job-meta { display: flex; align-items: center; justify-content: space-between; }
.job-num {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  color: var(--muted);
}
.job-chip {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink);
  background: var(--white);
  padding: 0.42rem 0.8rem;
  border-radius: 980px;
  border: 1px solid var(--line);
}
.job-title {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.05;
  text-transform: uppercase;
}
.job-title .job-variant {
  display: inline;
  font-size: 0.68em;
  font-weight: 500;
  color: var(--muted);
  text-transform: none;
  letter-spacing: -0.01em;
}
.job-tagline {
  color: var(--muted);
  font-style: italic;
  font-size: 1rem;
  letter-spacing: -0.01em;
}

.job-facts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem 1.25rem;
  padding: 1.25rem 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.job-facts div { display: flex; flex-direction: column; gap: 0.2rem; }
.job-facts dt {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
}
.job-facts dd { font-size: 0.95rem; font-weight: 500; color: var(--ink); }

.job-section h4 {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 0.9rem;
}
.job-section ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}
.job-section li {
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--ink);
  padding-left: 1.25rem;
  position: relative;
}
.job-section li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.75em;
  width: 6px;
  height: 1px;
  background: var(--ink);
}

.job-cta {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}

/* ===== Google Reviews Section ===== */
.reviews-section {
  padding: clamp(6rem, 12vw, 10rem) 0;
  background: var(--paper);
}
.reviews-hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 5rem;
}
.reviews-logo {
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}
.reviews-logo::after {
  content: "Google Bewertungen";
}
.reviews-stars {
  font-size: clamp(1.75rem, 3.2vw, 2.5rem);
  letter-spacing: 0.2em;
  color: #f2b600;
  line-height: 1;
  margin-bottom: 1rem;
}
.reviews-number {
  font-size: clamp(3.5rem, 7vw, 5.75rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--ink);
  margin-bottom: 0.75rem;
}
.reviews-number .reviews-of {
  font-size: 0.38em;
  font-weight: 400;
  color: var(--muted);
  margin-left: 0.2em;
  letter-spacing: 0;
}
.reviews-count {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}

.reviews-quotes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.review-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: clamp(1.75rem, 3vw, 2.25rem);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  box-shadow: 0 10px 30px -12px rgba(0,0,0,0.08);
  transition: transform .4s var(--ease-out);
}
.review-card:hover { transform: translateY(-4px); }
.review-stars {
  font-size: 0.95rem;
  letter-spacing: 0.14em;
  color: #f2b600;
  line-height: 1;
}
.review-card p {
  font-size: 1rem;
  color: var(--ink);
  line-height: 1.5;
  letter-spacing: -0.01em;
}
.review-card footer {
  margin-top: auto;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ===== Combo (PV × Wärmepumpe) ===== */
.combo { text-align: center; }
.combo-header { max-width: 720px; margin: 0 auto 4rem; }
.combo-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(1rem, 3vw, 3rem);
  flex-wrap: wrap;
  padding: clamp(2rem, 5vw, 4rem);
  background: var(--paper);
  border-radius: var(--radius);
}
.combo-stat { text-align: center; padding: 1rem 0.5rem; min-width: 140px; }
.combo-num {
  font-size: clamp(2rem, 5vw, 3.75rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1;
}
.combo-cap {
  margin-top: 0.75rem;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
}
.combo-stat.highlight .combo-num { color: var(--black); }
.combo-arrow {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 400;
  color: var(--muted);
  line-height: 1;
}

/* ===== Split sections ===== */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 6vw, 6rem);
  align-items: center;
}
.split.reverse { direction: rtl; }
.split.reverse > * { direction: ltr; }

.split-visual {
  aspect-ratio: 1/1;
  border-radius: var(--radius);
  display: grid;
  place-items: center;
  padding: clamp(1.5rem, 3vw, 3rem);
  position: relative;
  overflow: hidden;
}
.split-visual.paper { background: var(--paper); color: var(--ink); }
.split-visual.dark-v {
  background: radial-gradient(120% 100% at 30% 10%, #2a2a2c 0%, #000 70%);
  color: var(--white);
}
.split-visual svg { width: min(100%, 460px); }
.split-visual img { width: min(100%, 460px); }

/* ===== Quote Block ===== */
.quote-block { text-align: center; max-width: 860px; margin: 0 auto; }
.quote-block blockquote {
  font-size: clamp(1.5rem, 3.5vw, 2.75rem);
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -0.025em;
  font-style: italic;
}

/* ===== CTA Card ===== */
.cta-card {
  background: var(--black);
  color: var(--white);
  border-radius: var(--radius);
  padding: clamp(3rem, 6vw, 5rem);
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 3rem;
  align-items: center;
}
.cta-card h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.025em;
  line-height: 1.05;
}
.cta-card p { margin-top: 1.25rem; color: var(--muted-light); font-size: 1.02rem; max-width: 40ch; }
.cta-phone {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: clamp(1.4rem, 2.6vw, 2rem);
  font-weight: 500;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
}
.cta-phone svg { width: 30px; height: 30px; }
.cta-card .logo img, .cta-card .logo svg { height: 48px; filter: invert(1); }

/* Real photo inside svc-media (overlays placeholder when present) */
.svc-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 2;
}
.svc-media:has(.svc-img:not([style*="display: none"])) .photo-title,
.svc-media:has(.svc-img:not([style*="display: none"])) .vcard-chip {
  display: none;
}

/* ===== Service media placeholder (photo-ready frame) ===== */
.svc-media {
  position: relative;
  aspect-ratio: 4/3;
  border-radius: var(--radius);
  overflow: hidden;
  display: grid;
  place-items: center;
}
.svc-media-light {
  background: radial-gradient(120% 120% at 50% 0%, #ffffff 0%, #ededef 50%, #cfcfd3 100%);
}
.svc-media-dark {
  background: radial-gradient(120% 120% at 50% 0%, #2a2b2d 0%, #0f1012 70%, #000 100%);
}
.svc-media .vcard-chip {
  position: absolute;
  bottom: 1.25rem;
  right: 1.25rem;
}

/* ===== Services page ===== */
.svc-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
  padding: clamp(5rem, 11vw, 9rem) 0;
  border-top: 1px solid var(--line);
}
.svc-block:first-of-type { border-top: none; }
.svc-block.reverse { direction: rtl; }
.svc-block.reverse > * { direction: ltr; }

.svc-num {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: var(--muted);
  margin-bottom: 1rem;
}

.svc-list {
  list-style: none;
  margin-top: 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 2rem;
}
.svc-list li {
  font-size: 0.92rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
}

/* ===== About / team ===== */
.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}
.intro-visual {
  aspect-ratio: 4/5;
  border-radius: var(--radius);
  background: radial-gradient(ellipse at 30% 20%, #ffffff, #ececec 50%, #c8c8c8 100%);
  position: relative;
  overflow: hidden;
}
.intro-visual::after {
  content: "";
  position: absolute;
  inset: 18% 12% 22% 15%;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, rgba(255,255,255,0.9), rgba(0,0,0,0.05) 70%);
  mix-blend-mode: overlay;
}

.values {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem 4rem;
  margin-top: 5rem;
}
.value-num {
  font-size: 0.8rem;
  letter-spacing: 0.22em;
  color: var(--muted);
  margin-bottom: 0.75rem;
}
.value h3 {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}
.value p { color: var(--muted); font-size: 0.95rem; }
.dark .value p { color: var(--muted-light); }
.dark .value-num { color: var(--muted-light); }

/* ===== Contact Page ===== */
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(2rem, 6vw, 5rem); }
.contact-info .info-row { padding: 1.75rem 0; border-bottom: 1px solid var(--line); }
.contact-info .info-row:first-of-type { border-top: 1px solid var(--line); }
.contact-info .info-row .label { display: block; margin-bottom: 0.5rem; color: var(--muted); font-weight: 600; }
.contact-info .info-row .value { font-size: 1.2rem; letter-spacing: -0.01em; }

.contact-form { background: var(--paper); padding: clamp(2rem, 4vw, 3rem); border-radius: var(--radius); }
.form-row { margin-bottom: 1.25rem; }
.form-row label {
  display: block;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  color: var(--muted);
  font-weight: 600;
}
.form-row input, .form-row textarea, .form-row select {
  width: 100%;
  padding: 1rem 1.1rem;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--white);
  font-family: inherit;
  font-size: 1rem;
  color: var(--ink);
  transition: border-color .25s var(--ease), box-shadow .25s var(--ease);
}
.form-row input:focus, .form-row textarea:focus, .form-row select:focus {
  outline: none;
  border-color: var(--ink);
  box-shadow: 0 0 0 3px rgba(0,0,0,0.06);
}
.form-row textarea { min-height: 150px; resize: vertical; }
.form-message {
  margin-top: 1rem;
  padding: 0.95rem 1.1rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
  font-size: 0.92rem;
  display: none;
}
.form-message.show { display: block; }

/* ===== Footer ===== */
.site-footer { background: var(--black); color: var(--muted-light); padding: 6rem 0 2rem; }
.footer-top { display: grid; grid-template-columns: 1.5fr repeat(4, 1fr); gap: 2.5rem; margin-bottom: 4rem; }
.footer-top .logo img, .footer-top .logo svg { height: 44px; filter: invert(1); margin-bottom: 1.5rem; }
.footer-top p { max-width: 34ch; font-size: 0.92rem; }
.footer-col h4 { color: var(--white); font-size: 0.75rem; letter-spacing: 0.18em; text-transform: uppercase; font-weight: 600; margin-bottom: 1.25rem; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 0.75rem; font-size: 0.92rem; }
.footer-bottom { padding-top: 2rem; border-top: 1px solid rgba(255, 255, 255, 0.1); display: flex; justify-content: space-between; font-size: 0.82rem; }

/* Giant brand mark in footer */
.footer-brandmark {
  font-size: clamp(4rem, 18vw, 16rem);
  font-weight: 800;
  letter-spacing: -0.07em;
  line-height: 0.8;
  color: #1a1a1c;
  text-transform: uppercase;
  margin: 4rem 0 3rem;
  text-align: center;
  user-select: none;
  pointer-events: none;
}

/* ===== Scroll reveal ===== */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 1s var(--ease-out), transform 1s var(--ease-out); will-change: opacity, transform; }
.reveal.in { opacity: 1; transform: translateY(0); }

.reveal-stagger > * { opacity: 0; transform: translateY(28px); transition: opacity .9s var(--ease-out), transform .9s var(--ease-out); }
.reveal-stagger.in > *:nth-child(1) { transition-delay: 0ms; }
.reveal-stagger.in > *:nth-child(2) { transition-delay: 90ms; }
.reveal-stagger.in > *:nth-child(3) { transition-delay: 180ms; }
.reveal-stagger.in > *:nth-child(4) { transition-delay: 270ms; }
.reveal-stagger.in > *:nth-child(5) { transition-delay: 360ms; }
.reveal-stagger.in > * { opacity: 1; transform: translateY(0); }

/* Parallax hint on hero stage */
.parallax { will-change: transform; transition: transform .1s linear; }

@media (prefers-reduced-motion: reduce) {
  *, .reveal, .reveal-stagger > *, .hero-stage .pump svg { animation: none !important; transition: none !important; transform: none !important; opacity: 1 !important; }
  .marquee-track { animation: none !important; }
}

/* ===== Responsive ===== */
@media (max-width: 960px) {
  .nav-toggle { display: block; }
  .nav-links {
    display: none;
    position: absolute;
    top: 68px;
    left: 0; right: 0;
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(16px);
    flex-direction: column;
    padding: 2rem 1.5rem;
    gap: 1.25rem;
    border-bottom: 1px solid var(--line);
  }
  .site-header.on-dark .nav-links {
    background: rgba(0,0,0,0.95);
  }
  .nav-links.open { display: flex; }

  .split, .intro-grid, .cta-card, .svc-block, .contact-grid, .variants-2 {
    grid-template-columns: 1fr;
  }
  .split.reverse, .svc-block.reverse { direction: ltr; }

  .pills { grid-template-columns: repeat(2, 1fr); gap: 2.5rem 1rem; }
  .flow { grid-template-columns: repeat(2, 1fr); gap: 3rem 1.5rem; }
  .flow-step:not(:last-child)::after { display: none; }
  .stats { grid-template-columns: 1fr; gap: 1.5rem; }
  .values { grid-template-columns: 1fr; gap: 2.5rem; }
  .svc-list { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
  .vcard-specs { grid-template-columns: 1fr; }
  .combo-grid { flex-direction: column; gap: 1.5rem; padding: 2.5rem 1.5rem; }
  .combo-arrow { transform: rotate(90deg); }
  .reviews-quotes { grid-template-columns: 1fr; }
  .areas { grid-template-columns: 1fr; gap: 1.5rem; }
  .jobs { grid-template-columns: 1fr; gap: 2rem; }
  .stats-5 { grid-template-columns: 1fr 1fr; gap: 1.5rem; }
  .roles { grid-template-columns: 1fr; gap: 1rem; }
  .partner-strip { grid-template-columns: 1fr; gap: 1.5rem; }
  .trainee-grid { grid-template-columns: 1fr 1fr; }
  .timeline::before { left: 60px; }
  .tl-item { grid-template-columns: 60px 30px 1fr; gap: 1rem; }
  .tl-year { font-size: 0.85rem; }
  .team-orbit { max-width: 480px; }
  .orbit-node { width: 80px; height: 80px; font-size: 0.6rem; }
  .orbit-node span { padding: 0; }

  /* Klima-Privatkunden-Page */
  .konv-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .konv-form { position: static; }
  .konv-ctas { gap: 0.5rem; }
  .btn-konv { font-size: 0.9rem; padding: 0.85rem 1.15rem; flex: 1 1 auto; justify-content: center; }
  .rooms-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .trust-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .trust-stats { grid-template-columns: 1fr 1fr; }
  .price-grid { grid-template-columns: 1fr; gap: 1rem; }
  .ref-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .ablauf-grid { grid-template-columns: 1fr 1fr; gap: 1rem; }
  .ablauf-step { border-left: none; border-top: 1px solid var(--line); padding: 1.25rem 0; }
  .emo-grid { grid-template-columns: 1fr 1fr; gap: 1rem; }
  .region-grid { grid-template-columns: 1fr; gap: 2rem; }
  .region-list { grid-template-columns: repeat(2, 1fr); }
  .final-card { grid-template-columns: 1fr; gap: 2rem; text-align: center; }
  .final-content p { margin-left: auto; margin-right: auto; }
  .final-ctas { justify-content: center; }
  .qf-row-split { flex-direction: column; }
  /* wa-float mobile overrides bereits oben definiert */

  /* Wärmepumpe spezifisch */
  .eignung-grid { grid-template-columns: 1fr; gap: 1.25rem; }
  .system-compare { grid-template-columns: 1fr; gap: 1.25rem; }
  .foerder-grid { grid-template-columns: 1fr 1fr; gap: 1rem; }
  .invest-grid { grid-template-columns: 1fr; gap: 1.25rem; }
  .invest-soft-grid { grid-template-columns: 1fr; gap: 1.25rem; }
  .foerder-info-card { grid-template-columns: 1fr; text-align: center; }
  .foerder-info-icon { margin: 0 auto; }
  .foerder-info-list li { text-align: left; }
  .ablauf-grid-5 { grid-template-columns: 1fr 1fr; gap: 1rem; }
  .wert-grid { grid-template-columns: 1fr; gap: 1.25rem; }

  /* Klima-Strategie-Block */
  .dual-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .dual-card { padding: 1.25rem 1.25rem; column-gap: 1rem; }
  .dual-card-num { padding-right: 1rem; }
  .foerder-soft { grid-template-columns: 1fr; text-align: center; }
  .foerder-soft-icon { margin: 0 auto; }

  /* Service-Seite */
  .service-grid { grid-template-columns: 1fr; gap: 1.25rem; }
  .service-contact-grid { grid-template-columns: 1fr; gap: 1rem; }

  /* PV-Seite */
  .pv-benefits-grid { grid-template-columns: 1fr; gap: 1.25rem; }
  .pv-comp-grid { grid-template-columns: 1fr; gap: 1.25rem; }

  /* Homepage Brand-Hero */
  .hb-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .hb-visual { max-width: 480px; margin: 0 auto; aspect-ratio: 4/3; }
  .hb-ctas .btn-konv { flex: 1 1 auto; justify-content: center; }
  .lf-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .lf-promises { grid-template-columns: 1fr; gap: 1rem; }
  .lf-direct { flex-direction: column; align-items: stretch; }
  .lf-direct-label { text-align: center; }
  .lf-direct-link { justify-content: center; }

  /* Scrollytelling — disable sticky on mobile, stack instead */
  .st-grid { grid-template-columns: 1fr; gap: 3rem; }
  .st-sticky { position: static; height: auto; }
  .st-frame { max-width: 400px; margin: 0 auto; }
  .st-panel { min-height: auto; padding: 2rem 0; opacity: 1; border-top: 1px solid rgba(255,255,255,0.12); }
  .st-panels > .st-panel:first-child { border-top: none; padding-top: 1rem; }
  .st-icon { width: clamp(100px, 40vw, 180px); }
  .hero { min-height: auto; padding-top: 6rem; padding-bottom: 4rem; }
  .hero-stage { margin-top: 3rem; }
}

@media (max-width: 560px) {
  .pills { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
}
