/* ============================================================
   ADSWERK · Landingpage „Rund um Haus & Immobilie“
   Designsystem: FALKENGUT (Farben, Typo, Komponenten)
   Struktur & Conversion-Mechanik: adswerk.de
   ============================================================ */

:root {
  --nacht-900: #081227;
  --nacht-800: #0C1A38;
  --nacht-700: #11224A;
  --koenig: #1D44AC;
  --koenig-dunkel: #16368C;
  --koenig-hell: #8FA6E6;
  --stahl: #8A93A6;
  --stahl-dunkel: #5F6775;
  --creme: #F1F2F7;
  --nebel: #F8F8FB;
  --creme-2: #E6E8F1;
  --tinte: #131A2E;
  --tinte-70: #454D63;
  --hell: #F2F3F9;
  --hell-70: rgba(242, 243, 249, 0.74);
  --hell-45: rgba(242, 243, 249, 0.45);
  --linie-hell: rgba(242, 243, 249, 0.16);
  --linie-hell-stark: rgba(242, 243, 249, 0.3);
  --linie-dunkel: rgba(19, 26, 46, 0.16);
  --warn: #8C3B2E;
  --serif: 'EB Garamond', Garamond, 'Times New Roman', serif;
  --sans: 'Source Sans 3', 'Helvetica Neue', Arial, sans-serif;
  --max: 1160px;
  --gutter: clamp(20px, 4vw, 48px);
  --radius: 3px;
}

@font-face {
  font-family: 'EB Garamond';
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url('../assets/fonts/ebgaramond.woff2') format('woff2');
}
@font-face {
  font-family: 'EB Garamond';
  font-style: italic;
  font-weight: 400 700;
  font-display: swap;
  src: url('../assets/fonts/ebgaramond-italic.woff2') format('woff2');
}
@font-face {
  font-family: 'Source Sans 3';
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url('../assets/fonts/sourcesans3.woff2') format('woff2');
}
@font-face {
  font-family: 'Source Sans 3';
  font-style: italic;
  font-weight: 400 700;
  font-display: swap;
  src: url('../assets/fonts/sourcesans3-italic.woff2') format('woff2');
}

/* ---------- Reset & Basis ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--sans);
  font-size: 17.5px;
  line-height: 1.65;
  color: var(--tinte);
  background: var(--creme);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: var(--koenig); }

.inhalt { max-width: var(--max); margin: 0 auto; padding: 0 var(--gutter); }
section { padding: clamp(80px, 10vw, 130px) 0; position: relative; }

h1, h2, h3 { font-family: var(--serif); font-weight: 500; line-height: 1.15; letter-spacing: -0.01em; }
h2 { font-size: clamp(30px, 4vw, 44px); }
h3 { font-size: clamp(21px, 2.2vw, 25px); }
em { font-style: italic; }

/* ---------- Kicker & Sektions-Kopf ---------- */
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--stahl-dunkel);
  margin-bottom: 22px;
}
.kicker::before { content: ""; width: 34px; height: 1px; background: var(--koenig); }
.dunkel .kicker { color: var(--stahl); }
.dunkel .kicker::before { background: var(--koenig-hell); }
.sektion-kopf { max-width: 820px; margin-bottom: clamp(44px, 6vw, 72px); }
.sektion-kopf.mittig { margin-left: auto; margin-right: auto; text-align: center; }
.sektion-kopf.mittig .kicker { justify-content: center; }
.sektion-kopf.mittig .kicker::after { content: ""; width: 34px; height: 1px; background: var(--koenig); }
.dunkel .sektion-kopf.mittig .kicker::after { background: var(--koenig-hell); }
.sektion-kopf .intro { margin-top: 20px; font-size: 18.5px; color: var(--tinte-70); }
.dunkel .sektion-kopf .intro { color: var(--hell-70); }

/* ---------- Dunkle Sektionen ---------- */
.dunkel { background: var(--nacht-900); color: var(--hell); }
.dunkel h1, .dunkel h2, .dunkel h3 { color: var(--hell); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  border: 1px solid transparent;
  border-radius: var(--radius);
  padding: 19px 36px;
  position: relative;
  overflow: hidden;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}
.btn::after {
  content: '';
  position: absolute;
  top: 0;
  left: -70%;
  width: 45%;
  height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255, 255, 255, 0.16), transparent);
  transform: skewX(-18deg);
  transition: left 0.7s ease;
}
.btn:hover::after { left: 130%; }
.btn::before {
  content: "";
  order: 2;
  width: 17px;
  height: 17px;
  flex: 0 0 17px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23F2F3F9' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cline x1='4' y1='12' x2='20' y2='12'/%3E%3Cpolyline points='13 5 20 12 13 19'/%3E%3C/svg%3E") no-repeat center / contain;
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}
.btn:hover::before { transform: translateX(4px); }
.btn-primaer { background: var(--koenig); color: var(--hell); }
.btn-primaer:hover { background: var(--koenig-dunkel); }
.btn-ghost { background: transparent; color: var(--hell); border-color: var(--linie-hell-stark); }
.btn-ghost:hover { border-color: var(--hell); }
.btn-zeile { margin-top: 36px; }
.btn-hinweis { display: block; margin-top: 14px; font-size: 13.5px; color: var(--stahl); letter-spacing: 0.02em; }

/* ---------- Header ---------- */
.header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 90;
  transition: background-color 0.4s ease, border-color 0.4s ease, padding 0.4s ease;
  border-bottom: 1px solid transparent;
  padding: 18px 0;
}
.header.fest {
  background: var(--nacht-900);
  border-color: var(--linie-hell);
  padding: 10px 0;
}
.header.immer-fest { background: var(--nacht-900); border-color: var(--linie-hell); }
.lese-fortschritt {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: var(--koenig);
  transform: scaleX(0);
  transform-origin: left;
}
.header-zeile { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.header-logo img { height: 30px; width: auto; }
.nav { display: flex; align-items: center; gap: 36px; }
.nav a {
  color: var(--hell-70);
  text-decoration: none;
  font-size: 15px;
  letter-spacing: 0.04em;
  transition: color 0.25s ease;
}
.nav a:hover { color: var(--hell); }
.nav .btn { padding: 12px 24px; font-size: 13px; }
.nav-burger {
  display: none;
  background: none;
  border: 0;
  cursor: pointer;
  width: 40px;
  height: 40px;
  position: relative;
  z-index: 95;
}
.nav-burger span {
  position: absolute;
  left: 8px;
  right: 8px;
  height: 2px;
  background: var(--hell);
  transition: transform 0.3s ease, opacity 0.3s ease, top 0.3s ease;
}
.nav-burger span:nth-child(1) { top: 13px; }
.nav-burger span:nth-child(2) { top: 19px; }
.nav-burger span:nth-child(3) { top: 25px; }
.nav-burger.offen span:nth-child(1) { top: 19px; transform: rotate(45deg); }
.nav-burger.offen span:nth-child(2) { opacity: 0; }
.nav-burger.offen span:nth-child(3) { top: 19px; transform: rotate(-45deg); }
@media (max-width: 900px) {
  .nav-burger { display: block; }
  .nav {
    position: fixed;
    inset: 0;
    background: var(--nacht-900);
    flex-direction: column;
    justify-content: center;
    gap: 30px;
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.45s ease;
  }
  .nav.offen { transform: none; opacity: 1; pointer-events: auto; }
  .nav a { font-size: 20px; }
}

/* ---------- Hero ---------- */
.hero {
  background:
    radial-gradient(1100px 620px at 72% -12%, rgba(29, 68, 172, 0.34), transparent 62%),
    radial-gradient(700px 420px at 8% 110%, rgba(29, 68, 172, 0.16), transparent 60%),
    var(--nacht-900);
  color: var(--hell);
  padding: clamp(150px, 17vw, 210px) 0 clamp(90px, 10vw, 120px);
  position: relative;
  overflow: hidden;
}
.hero-glut {
  position: absolute;
  left: -18%;
  top: -28%;
  width: 75%;
  height: 90%;
  background: radial-gradient(closest-side, rgba(29, 68, 172, 0.26), transparent 70%);
  animation: glutDrift 16s ease-in-out infinite alternate;
  pointer-events: none;
}
@keyframes glutDrift {
  from { transform: translate3d(0, 0, 0) scale(1); }
  to { transform: translate3d(14%, 9%, 0) scale(1.18); }
}
.hero h1 .betont { display: inline-block; position: relative; }
@keyframes strichRein { to { transform: scaleX(1); } }
.hero h1 .betont::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0.04em;
  height: 3px;
  background: var(--koenig-hell);
  transform: scaleX(0);
  transform-origin: left;
  animation: strichRein 0.9s cubic-bezier(0.22, 1, 0.36, 1) 1.15s forwards;
}
.hero-emblem {
  position: absolute;
  right: -130px;
  top: -110px;
  width: clamp(340px, 40vw, 560px);
  opacity: 0.05;
  transform: translateY(var(--parallax, 0));
  pointer-events: none;
}
.hero-text { position: relative; z-index: 2; }
.hero-haupt { display: block; }
.hero-marke {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  border: 1px solid var(--linie-hell-stark);
  border-radius: 999px;
  padding: 9px 22px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--koenig-hell);
  margin-bottom: 34px;
}
.hero-marke::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--koenig-hell); flex: 0 0 auto; }
@media (max-width: 560px) {
  .hero-marke {
    white-space: nowrap;
    font-size: 9.5px;
    letter-spacing: 0.09em;
    padding: 8px 14px;
    gap: 8px;
  }
  .hero-marke::before { width: 5px; height: 5px; }
}
.hero h1 { font-size: clamp(34px, 4.9vw, 63px); font-weight: 500; line-height: 1.12; letter-spacing: -0.01em; }
.hero h1 .betont { font-style: italic; color: var(--koenig-hell); }

/* Above-the-Fold läuft über reine CSS-Keyframes und funktioniert damit
   auch ohne JavaScript (Regel aus dem Erstgespräch-Funnel-Postmortem:
   Hero niemals über JS einblenden). */
@keyframes heldRein {
  from { opacity: 0; transform: translateY(26px); }
  to { opacity: 1; transform: none; }
}
@keyframes zeileRein {
  from { transform: translateY(112%); }
  to { transform: none; }
}
.hero-marke, .hero-sub, .hero-cta, .hero-hinweis, .hero .weg-slots, .hero-trust, .usp {
  opacity: 0;
  animation: heldRein 0.9s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.hero-marke { animation-delay: 0.05s; }
.hero-sub { animation-delay: 0.5s; }
.hero-cta { animation-delay: 0.62s; }
.hero-hinweis { animation-delay: 0.68s; }
.hero .weg-slots { animation-delay: 0.7s; }
.hero-trust { animation-delay: 0.8s; }
.hero-usps .usp:nth-child(1) { animation-delay: 0.8s; }
.hero-usps .usp:nth-child(2) { animation-delay: 0.9s; }
.hero-usps .usp:nth-child(3) { animation-delay: 1s; }
.zeile-maske { display: block; overflow: hidden; padding-bottom: 0.08em; margin-bottom: -0.08em; }
.zeile-maske > span {
  display: block;
  transform: translateY(112%);
  animation: zeileRein 1s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  animation-delay: var(--delay, 0s);
}
.hero-sub {
  margin-top: 30px;
  max-width: 640px;
  font-size: 19px;
  color: var(--hell-70);
}
.hero-cta { display: flex; align-items: center; flex-wrap: wrap; gap: 26px; margin-top: 42px; }
.hero-fuss { margin-top: clamp(44px, 5.5vw, 64px); border-top: 1px solid var(--linie-hell); }
.hero-trust {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  justify-content: flex-start;
  gap: 18px;
  padding: 22px 0;
  border-bottom: 1px solid var(--linie-hell);
}
.kunden-stapel { display: flex; flex: 0 0 auto; }
@keyframes avatarRein {
  from { opacity: 0; transform: translateX(-12px) scale(0.4); }
  to { opacity: 1; transform: none; }
}
.kunden-stapel img {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--nacht-900);
  box-shadow: 0 4px 12px rgba(5, 11, 24, 0.35);
  position: relative;
  opacity: 0;
  animation: avatarRein 0.55s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}
.kunden-stapel img + img { margin-left: -13px; }
.kunden-stapel img:hover { transform: translateY(-6px) scale(1.12); z-index: 6; }
.kunden-stapel img:nth-child(1) { animation-delay: 0.85s; }
.kunden-stapel img:nth-child(2) { animation-delay: 0.92s; }
.kunden-stapel img:nth-child(3) { animation-delay: 0.99s; }
.kunden-stapel img:nth-child(4) { animation-delay: 1.06s; }
.kunden-stapel img:nth-child(5) { animation-delay: 1.13s; }
.kunden-stapel img:nth-child(6) { animation-delay: 1.2s; }
.kunden-stapel img:nth-child(7) { animation-delay: 1.27s; }
.kunden-stapel img:nth-child(8) { animation-delay: 1.34s; }
.kunden-stapel img:nth-child(9) { animation-delay: 1.41s; }
.kunden-stapel img:nth-child(10) { animation-delay: 1.48s; }
.hero-trust .trust-text { font-size: 13.5px; letter-spacing: 0.14em; text-transform: uppercase; font-weight: 600; color: var(--stahl); flex: 0 0 auto; }
@media (max-width: 860px) { .hero-trust { flex-wrap: wrap; } }
.hero-usps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 28px;
}
.usp {
  background: rgba(242, 243, 249, 0.09);
  backdrop-filter: blur(36px) saturate(180%);
  -webkit-backdrop-filter: blur(36px) saturate(180%);
  border: 1px solid rgba(242, 243, 249, 0.18);
  border-radius: var(--radius);
  padding: 26px 28px 22px;
  box-shadow:
    inset 0 1px 0 rgba(242, 243, 249, 0.12),
    0 10px 30px rgba(5, 11, 24, 0.22);
}
.usp b {
  display: flex;
  align-items: center;
  gap: 11px;
  white-space: nowrap;
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--koenig-hell);
  margin-bottom: 12px;
}
.usp svg {
  width: 26px;
  height: 26px;
  flex: 0 0 26px;
  padding: 5px;
  border: 1px solid rgba(143, 166, 230, 0.4);
  border-radius: 50%;
}
.usp p { font-size: 15px; color: var(--hell-70); }
@media (max-width: 1000px) and (min-width: 861px) { .hero-usps { grid-template-columns: 1fr; max-width: 560px; } }
@media (max-width: 860px) {
  .hero-usps { grid-template-columns: 1fr; gap: 14px; }
}

.scroll-hinweis {
  position: absolute;
  left: 50%;
  bottom: 26px;
  transform: translateX(-50%);
  width: 1px;
  height: 52px;
  background: var(--linie-hell-stark);
  overflow: hidden;
}
.scroll-hinweis::after {
  content: "";
  position: absolute;
  left: 0;
  top: -50%;
  width: 100%;
  height: 50%;
  background: var(--koenig-hell);
  animation: scrollPuls 2.2s cubic-bezier(0.22, 1, 0.36, 1) infinite;
}
@keyframes scrollPuls {
  0% { top: -50%; }
  60%, 100% { top: 110%; }
}

/* ---------- Kundenlogos ---------- */
.logos { background: var(--nebel); padding: clamp(56px, 7vw, 80px) 0; border-bottom: 1px solid var(--linie-dunkel); }
.logos-titel {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--stahl-dunkel);
  text-align: center;
  margin-bottom: 40px;
}
.marquee { overflow: hidden; position: relative; }
.marquee::before, .marquee::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}
.marquee::before { left: 0; background: linear-gradient(90deg, var(--nebel), transparent); }
.marquee::after { right: 0; background: linear-gradient(-90deg, var(--nebel), transparent); }
.marquee-spur {
  display: flex;
  align-items: center;
  gap: clamp(36px, 4.5vw, 64px);
  width: max-content;
  animation: marquee 110s linear infinite;
}
.marquee + .marquee { margin-top: 30px; }
.marquee-rueck .marquee-spur { animation-duration: 128s; animation-direction: reverse; }
.marquee:hover .marquee-spur { animation-play-state: paused; }
.marquee-spur img {
  height: 32px;
  width: auto;
  max-width: 120px;
  object-fit: contain;
  opacity: 0.82;
}
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ---------- Branchen ---------- */
.branchen { background: var(--creme); }
.cluster-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  background: #FFFFFF;
  border-radius: var(--radius);
  box-shadow: 0 30px 70px rgba(19, 26, 46, 0.09);
  overflow: hidden;
}
.cluster { padding: clamp(36px, 3.5vw, 48px) clamp(30px, 3vw, 42px); transition: background 0.35s ease; }
.cluster + .cluster { border-left: 1px solid var(--linie-dunkel); }
.cluster:hover { background: var(--nebel); }
.cluster-kopf {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--linie-dunkel);
  margin-bottom: 8px;
}
.cluster-kopf h3 { font-size: clamp(19px, 1.75vw, 22.5px); white-space: nowrap; }
.cluster .cluster-nr {
  font-family: var(--serif);
  font-style: italic;
  font-size: 15px;
  color: var(--koenig);
  letter-spacing: 0.04em;
  display: block;
  margin-bottom: 6px;
}
.cluster-zahl {
  flex: 0 0 auto;
  font-family: var(--serif);
  font-style: italic;
  font-size: 42px;
  line-height: 1;
  color: rgba(29, 68, 172, 0.22);
}

.cluster ul { list-style: none; }
.cluster li {
  padding: 12px 0 12px 30px;
  position: relative;
  font-size: 15.5px;
  border-bottom: 1px solid rgba(19, 26, 46, 0.08);
}
.cluster li:hover { color: var(--koenig); }
.cluster li:last-child { border-bottom: 0; }
.cluster li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  translate: 0 -50%;
  width: 14px;
  height: 1px;
  background: rgba(29, 68, 172, 0.55);
  transition: width 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}
.cluster li:hover::before { width: 20px; }
.cluster li { opacity: 0; transform: translateY(12px); transition: opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1), transform 0.6s cubic-bezier(0.22, 1, 0.36, 1), color 0.3s ease; }
.cluster.sichtbar li { opacity: 1; transform: none; }
.cluster.sichtbar li:nth-child(1) { transition-delay: 0.15s; }
.cluster.sichtbar li:nth-child(2) { transition-delay: 0.23s; }
.cluster.sichtbar li:nth-child(3) { transition-delay: 0.31s; }
.cluster.sichtbar li:nth-child(4) { transition-delay: 0.39s; }
.cluster.sichtbar li:nth-child(5) { transition-delay: 0.47s; }
.cluster.sichtbar li:nth-child(6) { transition-delay: 0.55s; }
.branchen-notiz {
  margin-top: 40px;
  text-align: center;
  font-size: 16px;
  color: var(--tinte-70);
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 900px) { .cluster-grid { grid-template-columns: 1fr; } .cluster + .cluster { border-left: 0; border-top: 1px solid var(--linie-dunkel); } }

/* ---------- Problem-Duo ---------- */
.problem { background: var(--nebel); }
.duo { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.duo-karte { border-radius: var(--radius); padding: 40px 38px; }
.duo-overline {
  display: block;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--stahl-dunkel);
  margin-bottom: 8px;
}
.duo-karte h3 {
  font-size: 22px;
  margin-bottom: 0;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--linie-dunkel);
}
.duo-karte p { padding-top: 18px; }
.duo-karte.hell-karte {
  background: #FFFFFF;
  border: 1px solid var(--linie-dunkel);
  box-shadow: 0 14px 40px rgba(19, 26, 46, 0.05);
}
.duo-karte.dunkel-karte {
  background: var(--nacht-800);
  color: var(--hell-70);
  border: 1px solid rgba(140, 59, 46, 0.4);
  box-shadow: inset 0 1px 0 rgba(242, 243, 249, 0.06), 0 22px 54px rgba(5, 11, 24, 0.4);
}
.duo-karte.dunkel-karte .duo-overline { color: var(--stahl); }
.duo-karte.dunkel-karte h3 { color: var(--hell); border-bottom-color: var(--linie-hell); }
@media (max-width: 860px) { .duo { grid-template-columns: 1fr; } }

/* ---------- Bridge ---------- */
.bridge { background: var(--nacht-700); text-align: center; }
.bridge h2 { max-width: 880px; margin: 0 auto; font-size: clamp(26px, 3.4vw, 38px); }
.bridge h2 .betont { font-style: italic; color: var(--koenig-hell); }
.bridge p { max-width: 700px; margin: 24px auto 0; color: var(--hell-70); font-size: 18px; }

/* ---------- Fünf Probleme: Sticky-Karten-Stapel ----------
   Jede Karte klebt beim Scrollen oben, die nächste schiebt sich
   darüber. Die überdeckte Karte skaliert per --scrub leicht zurück
   und dunkelt ab (nur transform/opacity). */
.fuenf { background: var(--creme); padding-bottom: 32px; }
.stapel { position: relative; padding-bottom: 8vh; }
.stapel .stapel-karte {
  position: sticky;
  top: 180px;
  margin-bottom: 20px;
  min-height: 340px;
  background: #FFFFFF;
  border: 1px solid var(--linie-dunkel);
  border-radius: var(--radius);
  padding: clamp(36px, 5vw, 60px);
  overflow: hidden;
  box-shadow: 0 1px 2px rgba(19, 26, 46, 0.04), 0 -18px 40px rgba(8, 18, 39, 0.08);
  transform: scale(calc(1 - 0.05 * var(--deckung, 0)));
  filter: blur(calc(var(--deckung, 0) * 5px));
  transform-origin: top center;
}
.stapel-karte:last-child { margin-bottom: 0; }
.stapel-karte::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--nacht-900);
  opacity: calc(0.5 * var(--deckung, 0));
  pointer-events: none;
  z-index: 2;
}
.stapel-karte .wasserzeichen {
  position: absolute;
  right: clamp(12px, 4vw, 48px);
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(140px, 22vw, 260px);
  line-height: 1;
  color: var(--koenig);
  opacity: 0.07;
  pointer-events: none;
  user-select: none;
}
@supports (-webkit-text-stroke: 1px black) {
  .stapel-karte .wasserzeichen {
    color: transparent;
    -webkit-text-stroke: 1.5px rgba(29, 68, 172, 0.3);
    opacity: 0.55;
  }
}
.stapel-karte .prob-kicker {
  display: flex;
  align-items: baseline;
  gap: 14px;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--stahl-dunkel);
  padding-bottom: 16px;
  border-bottom: 1px solid var(--linie-dunkel);
  margin-bottom: 20px;
  max-width: 640px;
  position: relative;
  z-index: 1;
}
.stapel-karte .prob-kicker i {
  font-family: var(--serif);
  font-style: italic;
  font-size: 17px;
  color: var(--koenig);
  letter-spacing: 0;
  text-transform: none;
  padding-right: 14px;
  border-right: 1px solid var(--linie-dunkel);
  white-space: nowrap;
  flex: 0 0 auto;
}
.stapel-karte h3 { margin-bottom: 14px; font-size: clamp(22px, 2.6vw, 28px); position: relative; z-index: 1; }
.stapel-karte p { font-size: 16.5px; color: var(--tinte-70); max-width: 640px; position: relative; z-index: 1; }
@media (max-width: 860px) {
  .stapel { padding-bottom: 0; }
  .stapel .stapel-karte {
    top: 100px;
    margin-bottom: 16px;
    min-height: 0;
    padding: 30px 24px;
    filter: blur(calc(max(0, var(--deckung, 0) - 0.35) * 4px));
  }
  .stapel-karte::before { opacity: calc(0.35 * max(0, var(--deckung, 0) - 0.25)); }
  .stapel-karte .wasserzeichen { opacity: 0.05; }
}

/* ---------- Phasen: Timeline mit füllender Linie ----------
   Eine Königsblau-Linie füllt sich mit dem Scroll-Fortschritt
   (--scrub am .timeline-Container). Jeder Phasen-Punkt leuchtet
   auf, sobald die Füllung seine Schwelle (--schwelle) passiert. */
.phasen {
  background:
    radial-gradient(1000px 540px at 50% -10%, rgba(29, 68, 172, 0.16), transparent 62%),
    var(--nacht-900);
}
.timeline { position: relative; max-width: 860px; margin: 0 auto; }
.timeline-linie {
  position: absolute;
  left: 0;
  top: 10px;
  bottom: 10px;
  width: 2px;
  background: var(--linie-hell);
  overflow: hidden;
}
.timeline-fuellung {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, var(--koenig-hell), var(--koenig) 55%, var(--warn) 100%);
  transform: scaleY(min(1, calc(var(--scrub, 0) * 1.35)));
  transform-origin: top;
}
/* Szenografie: --an = 0..1, sobald der Linien-Verlauf die Phase erreicht.
   Ziffer, Marker und Text einer Phase "zünden" gemeinsam beim Scrollen.
   (nth-of-type zählt ab 2, weil die Timeline-Linie das erste Geschwister ist.) */
.phase-eintrag {
  --an: clamp(0, calc((min(1, calc(var(--scrub, 0) * 1.35)) - var(--schwelle, 0.2)) * 6), 1);
  position: relative;
  display: grid;
  grid-template-columns: clamp(56px, 7vw, 84px) 1fr;
  column-gap: clamp(24px, 4vw, 44px);
  align-items: start;
  padding: clamp(30px, 4vw, 46px) 0 clamp(30px, 4vw, 46px) clamp(22px, 3vw, 34px);
}
.phase-eintrag::before,
.phase-eintrag::after {
  content: "";
  position: absolute;
  left: -3.5px;
  top: calc(clamp(30px, 4vw, 46px) + clamp(29.7px, 3.575vw, 48.4px));
  transform: translateY(-50%);
  width: 9px;
  height: 9px;
  border-radius: 50%;
}
.phase-eintrag::before { background: var(--nacht-900); border: 1.5px solid var(--stahl-dunkel); }
.phase-eintrag::after { background: var(--koenig-hell); box-shadow: 0 0 12px rgba(143, 166, 230, 0.55); opacity: var(--an); }
.phase-eintrag:nth-of-type(4)::after { background: #D08A7D; box-shadow: 0 0 12px rgba(208, 138, 125, 0.55); }
.phase-nr {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(54px, 6.5vw, 88px);
  line-height: 1.1;
  padding: 0 0.08em 0 0.02em;
  text-align: left;
  letter-spacing: -0.02em;
  color: #8FA6E6;
  opacity: calc(0.45 + 0.55 * var(--an, 0));
}
.phase-eintrag:nth-of-type(4) .phase-nr { color: #D08A7D; }
@supports (-webkit-background-clip: text) {
  .phase-nr { background: linear-gradient(155deg, #C4D0F4 8%, #5F7BD6 92%); -webkit-background-clip: text; background-clip: text; color: transparent; }
  .phase-eintrag:nth-of-type(3) .phase-nr { background: linear-gradient(155deg, #9FB2EC 8%, #3D5BBF 92%); -webkit-background-clip: text; background-clip: text; color: transparent; }
  .phase-eintrag:nth-of-type(4) .phase-nr { background: linear-gradient(155deg, #E7B1A6 8%, #A34A39 92%); -webkit-background-clip: text; background-clip: text; color: transparent; }
}
.phase-eintrag:nth-of-type(4) .phase-kopf i { color: #D08A7D; border-right-color: rgba(140, 59, 46, 0.6); }
.phase-text { opacity: calc(0.5 + 0.5 * var(--an, 0)); }
.phase-kopf {
  display: flex;
  align-items: baseline;
  gap: 14px;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--stahl);
  padding-bottom: 16px;
  border-bottom: 1px solid var(--linie-hell);
  margin-bottom: 20px;
}
.phase-kopf i {
  font-family: var(--serif);
  font-style: italic;
  font-size: 17px;
  color: var(--koenig-hell);
  letter-spacing: 0;
  text-transform: none;
  padding-right: 14px;
  border-right: 1px solid var(--linie-hell);
}
.phase-text h3 { font-size: clamp(25px, 2.9vw, 34px); letter-spacing: -0.01em; margin-bottom: 12px; }
.phase-text p { font-size: 16px; color: var(--hell-70); max-width: 660px; }
.phasen-warnung { margin-top: clamp(56px, 7vw, 80px); text-align: center; }
.phasen-warnung h3 { font-size: clamp(26px, 3.2vw, 36px); }
.phasen-warnung h3 em { color: #D08A7D; }
.phasen-warnung p { max-width: 640px; margin: 18px auto 0; color: var(--hell-70); }
@media (max-width: 860px) {
  .phase-eintrag { grid-template-columns: 44px 1fr; column-gap: 16px; padding-left: 20px; }
  .phase-eintrag::before, .phase-eintrag::after { top: calc(30px + 23px); }
  .phase-nr { font-size: 42px; }
}

/* ---------- Lösung ---------- */
.loesung { background: var(--nebel); }
.loesung-kopf { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: clamp(40px, 6vw, 80px); align-items: center; margin-bottom: clamp(44px, 6vw, 72px); }
.loesung-lottie { width: 100%; max-width: 420px; margin: 0 auto; }
/* Ohne/Mit-Gegenüberstellung: die Mit-Karte gewinnt sichtbar */
.vergleich { display: grid; grid-template-columns: 0.92fr 1.08fr; gap: 22px; margin-bottom: 22px; position: relative; }
.vergleich-pfeil {
  position: absolute;
  left: 46%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--koenig);
  color: #FFFFFF;
  border: 1px solid rgba(143, 166, 230, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(5, 11, 24, 0.25);
  z-index: 3;
}
.vergleich-pfeil svg { width: 17px; height: 17px; }
.vergleich-spalte { border-radius: var(--radius); padding: 36px 34px; }
.vergleich-spalte .vergleich-overline {
  display: block;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--stahl-dunkel);
  margin-bottom: 8px;
}
.vergleich-spalte.ohne {
  background: #FFFFFF;
  border: 1px solid var(--linie-dunkel);
  box-shadow: 0 14px 40px rgba(19, 26, 46, 0.05);
}
.vergleich-spalte.mit {
  background:
    radial-gradient(560px 320px at 18% -5%, rgba(29, 68, 172, 0.4), transparent 62%),
    var(--nacht-800);
  color: var(--hell);
  border: 1px solid rgba(143, 166, 230, 0.28);
  box-shadow: inset 0 1px 0 rgba(242, 243, 249, 0.09), 0 22px 54px rgba(5, 11, 24, 0.4), 0 0 90px rgba(29, 68, 172, 0.28);
}
.vergleich-spalte.mit .vergleich-overline { color: var(--koenig-hell); }
.vergleich-spalte h3 { font-size: 20px; padding-bottom: 16px; border-bottom: 1px solid rgba(19, 26, 46, 0.08); margin-bottom: 6px; }
.vergleich-spalte.mit h3 { border-bottom-color: var(--linie-hell); }
.vergleich-spalte.mit h3 { color: var(--hell); }
.vergleich-spalte ul { list-style: none; }
.vergleich-spalte li { padding: 11px 0 11px 36px; position: relative; font-size: 15.5px; border-bottom: 1px solid rgba(19, 26, 46, 0.08); }
.vergleich-spalte.mit li { border-bottom: 1px solid var(--linie-hell); color: var(--hell-70); }
.vergleich-spalte li:last-child { border-bottom: 0; }
.vergleich-spalte li b { font-weight: 600; color: var(--tinte); }
.vergleich-spalte.mit li b { color: var(--hell); }
.vergleich-spalte.ohne li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 12px;
  width: 22px;
  height: 22px;
  border: 1px solid rgba(140, 59, 46, 0.4);
  border-radius: 50%;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%238C3B2E' stroke-width='2.8' stroke-linecap='round'%3E%3Cline x1='7' y1='7' x2='17' y2='17'/%3E%3Cline x1='17' y1='7' x2='7' y2='17'/%3E%3C/svg%3E") no-repeat center / 10px;
}
.vergleich-spalte.mit li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 12px;
  width: 22px;
  height: 22px;
  border: 1px solid rgba(143, 166, 230, 0.4);
  border-radius: 50%;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%238FA6E6' stroke-width='2.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3C/svg%3E") no-repeat center / 11px;
}

/* Mechanismus als nummerierte Liste in einer Karte
   (gleiche Kartensprache wie die Ohne/Mit-Spalten darüber) */
.mechanik-kopf { max-width: 720px; margin: clamp(48px, 6vw, 72px) 0 clamp(26px, 3vw, 36px); }
.mechanik-kopf .kicker { margin-bottom: 14px; }
.mechanik-kopf h3 { font-size: clamp(22px, 2.6vw, 28px); margin-bottom: 12px; }
.mechanik-kopf p { font-size: 16.5px; color: var(--tinte-70); }
.mechanik-liste {
  list-style: none;
  background: #FFFFFF;
  border: 1px solid var(--linie-dunkel);
  border-radius: var(--radius);
  padding: 8px clamp(26px, 3.5vw, 44px);
  box-shadow: 0 30px 70px rgba(19, 26, 46, 0.09);
}
.mechanik-liste li { display: grid; grid-template-columns: 56px 1fr; gap: 22px; padding: 26px 0; border-bottom: 1px solid rgba(19, 26, 46, 0.08); align-items: start; }
.mechanik-liste li:last-child { border-bottom: 0; }
.mechanik-nr {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(26px, 2.6vw, 31px);
  color: var(--koenig);
  line-height: 1;
  padding-top: 3px;
  letter-spacing: 0.02em;
}
.mechanik-liste h3 { font-size: 21px; margin-bottom: 8px; transition: color 0.25s ease; }
.mechanik-liste li:hover h3 { color: var(--koenig); }
.mechanik-liste p { font-size: 15.5px; color: var(--tinte-70); max-width: 720px; }
@media (max-width: 860px) {
  .vergleich { grid-template-columns: 1fr; gap: 0; border-radius: var(--radius); overflow: visible; box-shadow: 0 24px 60px rgba(19, 26, 46, 0.16); }
  .vergleich-pfeil { display: none; }
  .vergleich-spalte { padding: 28px 24px; }
  .vergleich-spalte.ohne { border-radius: var(--radius) var(--radius) 0 0; border-bottom: 0; box-shadow: none; }
  .vergleich-spalte li { padding: 10px 0 10px 34px; font-size: 15px; }
  .vergleich-spalte.mit { position: relative; border-radius: 0 0 var(--radius) var(--radius); border-top: 0; box-shadow: inset 0 1px 0 rgba(242, 243, 249, 0.09); }
  .vergleich-spalte.mit::after {
    content: "";
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--koenig) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23FFFFFF' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cline x1='12' y1='4' x2='12' y2='20'/%3E%3Cpolyline points='5 13 12 20 19 13'/%3E%3C/svg%3E") no-repeat center / 17px;
    border: 1px solid rgba(143, 166, 230, 0.35);
    box-shadow: 0 4px 12px rgba(5, 11, 24, 0.35);
    z-index: 2;
  }
  .loesung-kopf { grid-template-columns: 1fr; }
  .mechanik-liste li { grid-template-columns: 44px 1fr; gap: 16px; }
  .mechanik-nr { font-size: 23px; }
}

/* ---------- Methode / Schritte ---------- */
.methode { background: var(--creme); }
.schritte {
  background: #FFFFFF;
  border: 1px solid var(--linie-dunkel);
  border-radius: var(--radius);
  padding: 10px clamp(28px, 4vw, 56px);
  box-shadow: 0 30px 70px rgba(19, 26, 46, 0.09);
}
.schritt-reihe {
  display: grid;
  grid-template-columns: 0.9fr 1.7fr;
  gap: clamp(32px, 5vw, 72px);
  padding: clamp(36px, 4.5vw, 52px) 0;
  align-items: start;
}
.schritt-kopf { position: relative; }
.schritt-kopf::after {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(110px, 12vw, 170px);
  line-height: 1;
  color: var(--koenig);
  opacity: 0.06;
  position: absolute;
  right: 0;
  top: -14px;
  pointer-events: none;
  user-select: none;
}
.schritt-reihe:nth-of-type(1) .schritt-kopf::after { content: "1"; }
.schritt-reihe:nth-of-type(2) .schritt-kopf::after { content: "2"; }
.schritt-reihe:nth-of-type(3) .schritt-kopf::after { content: "3"; }
.schritt-reihe + .schritt-reihe { border-top: 1px solid var(--linie-dunkel); }
.schritt-lottie { width: 112px; height: 112px; margin-bottom: 16px; }
.schritt-kopf .schritt-nr {
  font-family: var(--serif);
  font-style: italic;
  font-size: 15px;
  color: var(--koenig);
  display: block;
  margin-bottom: 6px;
}
.schritt-kopf h3 { font-size: clamp(21px, 2.2vw, 25px); margin-bottom: 14px; }
@media (max-width: 900px) { .schritt-reihe { grid-template-columns: 1fr; gap: 18px; } }
.leistungs-chip {
  display: inline-block;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--koenig);
  background: rgba(29, 68, 172, 0.08);
  border-radius: 999px;
  padding: 6px 14px;
  margin-bottom: 10px;
}
.leistungen {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px clamp(28px, 4vw, 52px);
}
.leistungen li {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 13px;
  padding: 10px 0;
  align-items: start;
}
@media (max-width: 640px) { .leistungen { grid-template-columns: 1fr; } }
.leistungen li::before {
  content: "";
  width: 22px;
  height: 22px;
  margin-top: 1px;
  border: 1px solid rgba(29, 68, 172, 0.35);
  border-radius: 50%;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231D44AC' stroke-width='2.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3C/svg%3E") no-repeat center / 11px;
}
.leistungen b { display: block; font-size: 16px; color: var(--tinte); margin-bottom: 3px; transition: color 0.25s ease; }
.leistungen li:hover b { color: var(--koenig); }
.leistungen p { font-size: 14.5px; color: var(--tinte-70); }
.methode-summe {
  text-align: center;
  margin-top: clamp(40px, 5vw, 60px);
  font-family: var(--serif);
  font-size: clamp(21px, 2.6vw, 28px);
  color: var(--tinte);
}
.methode-summe em { color: var(--koenig); }
@media (max-width: 900px) { .schritte { grid-template-columns: 1fr; } }

/* ---------- Über uns: Führung ----------
   Randloser Split-Screen nach Falkengut-Vorbild: Text-Spalte an
   der Inhaltslinie, Bild in voller Höhe bis an den Sektionsrand,
   Signatur statt Namens-Headline. Zweiter Block gespiegelt. */
.ueber { background: var(--nacht-900); padding-bottom: 0; }
.ueber .sektion-kopf { margin-bottom: clamp(36px, 5vw, 56px); }
.person-split { display: grid; grid-template-columns: 1fr 1fr; }
.person-inhalt {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  padding: clamp(40px, 3.6vw, 60px)
           clamp(28px, 3.5vw, 64px)
           clamp(40px, 3.6vw, 60px)
           clamp(28px, 3.5vw, 64px);
}
.person-split.gespiegelt .person-bild { order: -1; }
.person-inhalt > * { width: 100%; max-width: 680px; }
.person-inhalt h3 { font-size: clamp(25px, 2.5vw, 36px); color: var(--hell); margin: 0 0 20px; max-width: 680px; }
.person-inhalt p { font-size: clamp(15.5px, 1.3vw, 17.5px); color: var(--hell-70); max-width: 680px; }
.person-inhalt p + p { margin-top: 22px; }
.person-inhalt em { font-family: var(--serif); font-size: clamp(17.5px, 1.6vw, 20px); color: var(--hell); line-height: 1.55; }
.person-signatur {
  margin-top: auto;
  padding-top: clamp(18px, 2.2vw, 26px);
  border-top: 1px solid var(--linie-hell);
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.person-inhalt p:last-of-type { margin-bottom: clamp(22px, 3vw, 34px); }
.person-name { font-family: var(--serif); font-style: italic; font-size: 26px; color: var(--hell); letter-spacing: 0.04em; }
.person-label { font-size: 12px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--stahl); }
.person-bild { margin: 0; width: 100%; min-width: 0; height: 100%; overflow: hidden; position: relative; }
.person-bild img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 42% 30%; display: block; }
.person-split.gespiegelt .person-bild img { object-position: 50% 22%; }
@media (max-width: 1020px) {
  .person-split, .person-split.gespiegelt { grid-template-columns: 1fr; }
  .person-bild { aspect-ratio: 16 / 10; height: auto; }
  .person-split .person-bild, .person-split.gespiegelt .person-bild { order: -1; }
  .person-inhalt, .person-split.gespiegelt .person-inhalt { padding: clamp(40px, 7vw, 64px) var(--gutter); }
}

/* ---------- FAQ ---------- */
.faq-sektion { background: var(--creme); }
.faq-liste { max-width: 840px; margin: 0 auto; }
.faq {
  background: #FFFFFF;
  border: 1px solid var(--linie-dunkel);
  border-radius: var(--radius);
  margin-bottom: 12px;
}
.faq summary {
  cursor: pointer;
  list-style: none;
  padding: 22px 60px 22px 26px;
  font-family: var(--serif);
  font-size: 19px;
  color: var(--tinte);
  position: relative;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "";
  position: absolute;
  right: 24px;
  top: 50%;
  width: 14px;
  height: 14px;
  transform: translateY(-50%);
  background:
    linear-gradient(var(--koenig), var(--koenig)) center / 14px 1.5px no-repeat,
    linear-gradient(var(--koenig), var(--koenig)) center / 1.5px 14px no-repeat;
  transition: transform 0.35s ease;
}
.faq[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq .antwort { padding: 0 26px 24px; font-size: 16px; color: var(--tinte-70); }
:root { interpolate-size: allow-keywords; }
.faq::details-content {
  height: 0;
  overflow: clip;
  opacity: 0;
  transition: height 0.45s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.35s ease, content-visibility 0.45s allow-discrete;
}
.faq[open]::details-content { height: auto; opacity: 1; }

/* ---------- Weg: Video-Hintergrund + Glas-Kacheln ---------- */
.weg { position: relative; overflow: hidden; background: var(--nacht-900); }
.weg-video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.weg-schleier {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 18, 39, 0.92) 0%, rgba(8, 18, 39, 0.55) 40%, rgba(8, 18, 39, 0.85) 75%, var(--nacht-900) 100%);
}
.weg .inhalt { position: relative; z-index: 1; }
.weg-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-bottom: clamp(48px, 6vw, 64px); }
.weg-schritt {
  background: rgba(242, 243, 249, 0.07);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(242, 243, 249, 0.16);
  border-radius: var(--radius);
  padding: 40px 30px;
  text-align: center;
}
.weg-ikone { width: 34px; height: 34px; margin: 0 auto 18px; color: var(--hell); }
.weg-ikone svg { width: 100%; height: 100%; display: block; }
.weg-schritt h3 { font-size: 20px; margin-bottom: 12px; color: var(--hell); }
.weg-schritt p { font-size: 15px; color: var(--hell-70); }
.weg-cta { text-align: center; }
.weg-slots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 16px;
  font-size: 14.5px;
  color: var(--hell-70);
}
.weg-slots b { color: var(--hell); font-weight: 600; }
.slot-punkt {
  width: 8px;
  height: 8px;
  flex: 0 0 8px;
  border-radius: 50%;
  background: var(--koenig-hell);
  animation: slotPuls 2.6s ease-in-out infinite;
}
@keyframes slotPuls {
  0%, 100% { opacity: 0.3; box-shadow: none; }
  50% { opacity: 1; box-shadow: 0 0 10px rgba(143, 166, 230, 0.8); }
}
.hero .weg-slots { justify-content: flex-start; margin-top: 18px; }
.abschnitt-cta { text-align: center; margin-top: clamp(36px, 5vw, 52px); }
.branchen .weg-slots, .anti .weg-slots, .faq-sektion .weg-slots { color: var(--tinte-70); }
.branchen .weg-slots b, .anti .weg-slots b, .faq-sektion .weg-slots b { color: var(--tinte); }
.branchen .slot-punkt, .anti .slot-punkt, .faq-sektion .slot-punkt {
  background: var(--koenig);
  animation-name: slotPulsDunkel;
}
.formular-karte .weg-slots { color: var(--tinte-70); margin-top: 18px; }
.formular-karte .weg-slots b { color: var(--tinte); }
.formular-karte .slot-punkt { background: var(--koenig); }
.formular-karte .slot-punkt { animation-name: slotPulsDunkel; }
@keyframes slotPulsDunkel {
  0%, 100% { opacity: 0.3; box-shadow: none; }
  50% { opacity: 1; box-shadow: 0 0 10px rgba(29, 68, 172, 0.5); }
}
@media (max-width: 900px) { .weg-grid { grid-template-columns: 1fr; } }

/* ---------- Mittel-CTA (Wenn-Dann) ---------- */
.zwischen-cta { background: var(--nacht-700); text-align: center; padding: clamp(64px, 8vw, 90px) 0; }
.zwischen-cta h2 { font-size: clamp(26px, 3.4vw, 38px); max-width: 840px; margin: 0 auto; }
.zwischen-cta h2 .betont { font-style: italic; color: var(--koenig-hell); }
.zwischen-cta .btn-zeile { margin-top: 34px; }

/* ---------- Ergebnisse ---------- */
.ergebnisse { background: var(--nacht-900); }
.case-karte {
  background: #FFFFFF;
  color: var(--tinte);
  border-radius: var(--radius);
  overflow: hidden;
  max-width: 920px;
  margin: clamp(48px, 6vw, 72px) auto 0;
  box-shadow: 0 30px 80px rgba(8, 18, 39, 0.5);
}
.case-kopf {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: clamp(28px, 3.5vw, 40px);
  padding-bottom: 24px;
  border-bottom: 1px solid var(--linie-dunkel);
}
.case-kopf .kicker { color: var(--stahl-dunkel); margin-bottom: 12px; }
.case-kopf .kicker::before { background: var(--koenig); }
.case-kopf h3 { font-size: clamp(21px, 2.4vw, 26px); color: var(--tinte); max-width: 620px; }
.case-logo { height: 84px; width: auto; flex: 0 0 auto; }
@media (max-width: 700px) { .case-kopf { flex-direction: column-reverse; align-items: flex-start; } .case-logo { height: 64px; } }
.case-zahlen { display: grid; grid-template-columns: repeat(3, 1fr); border-bottom: 1px solid var(--linie-dunkel); }
.case-zahl { padding: 36px 24px; text-align: center; border-left: 1px solid var(--linie-dunkel); }
.case-zahl:first-child { border-left: 0; }
.case-zahl .wert { font-family: var(--serif); font-style: italic; font-size: clamp(34px, 4vw, 48px); color: var(--koenig); line-height: 1; }
.case-zahl .wert .einheit { font-size: 0.5em; }
.case-zahl .label { margin-top: 10px; font-size: 13px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--stahl-dunkel); font-weight: 600; }
.case-raster { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: rgba(19, 26, 46, 0.12); }
.case-feld { background: #FFFFFF; padding: 30px 28px; }
.case-feld .feld-titel { font-family: var(--serif); font-style: italic; font-size: 17.5px; font-weight: 500; color: var(--koenig); letter-spacing: 0.01em; margin-bottom: 8px; }
.case-feld p { font-size: 15px; color: var(--tinte-70); }
.median-hinweis { max-width: 760px; margin: 28px auto 0; text-align: center; font-size: 15.5px; color: var(--hell-70); }
.median-hinweis em { color: var(--hell); }
/* Weiße Schatten-Karte nach LearningSuite-Vorbild:
   links Video + Person, rechts Ergebnis-Headline + Kennzahl. */
.testimonial {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 0;
  align-items: stretch;
  max-width: 920px;
  margin: clamp(48px, 6vw, 72px) auto 0;
  background: #FFFFFF;
  color: var(--tinte);
  border-radius: var(--radius);
  padding: 0;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(8, 18, 39, 0.55);
}
.testimonial-text { padding: clamp(30px, 3.5vw, 48px); }
.testimonial-medien {
  background: var(--nebel);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(22px, 2.8vw, 32px);
}
.testimonial-video video {
  width: 100%;
  aspect-ratio: 9 / 16;
  object-fit: cover;
  border-radius: var(--radius);
  display: block;
  background: var(--nacht-900);
}
.testimonial-person { margin-top: 18px; text-align: center; }
.testimonial-person .overline { font-size: 11.5px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--stahl-dunkel); }
.testimonial-person .name { font-family: var(--serif); font-size: 21px; line-height: 1.3; color: var(--tinte); margin-top: 2px; }
.testimonial-person .firma { font-size: 14px; color: var(--tinte-70); }
.testimonial-text .kicker { margin-bottom: 14px; color: var(--stahl-dunkel); }
.testimonial-text .kicker::before { background: var(--koenig); }
.testimonial-text h3 { font-size: clamp(22px, 2.6vw, 28px); color: var(--tinte); margin-bottom: 20px; }
.testimonial-text p { font-size: 15px; color: var(--tinte-70); }
.t-reihe { display: grid; grid-template-columns: 138px 1fr; gap: 20px; align-items: baseline; padding: 16px 0; }
.t-reihe + .t-reihe { border-top: 1px solid rgba(19, 26, 46, 0.08); }
.t-titel { font-family: var(--serif); font-style: italic; font-size: 17.5px; font-weight: 500; color: var(--koenig); letter-spacing: 0.01em; }
.t-reihe.t-ergebnis p { color: var(--tinte); }
.testimonial-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; margin-top: 24px; padding-top: 24px; border-top: 1px solid var(--linie-dunkel); }
.t-stat { padding: 0 clamp(14px, 2vw, 24px); border-left: 1px solid var(--linie-dunkel); }
.t-stat:first-child { border-left: 0; padding-left: 0; }
.t-stat .wert { display: block; font-family: var(--serif); font-style: italic; font-size: clamp(26px, 2.8vw, 34px); color: var(--koenig); line-height: 1; }
.t-stat .wert i { font-size: 0.55em; }
.t-stat .label { display: block; margin-top: 8px; font-size: 11.5px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--stahl-dunkel); font-weight: 600; max-width: 150px; }
@media (max-width: 560px) {
  .testimonial-stats { grid-template-columns: 1fr; gap: 0; }
  .t-stat {
    display: grid;
    grid-template-columns: 118px 1fr;
    align-items: center;
    gap: 14px;
    padding: 13px 0;
    border-left: 0;
  }
  .t-stat + .t-stat { border-top: 1px solid var(--linie-dunkel); }
  .t-stat .wert { font-size: 30px; }
  .t-stat .label { margin-top: 0; max-width: none; font-size: 10.5px; letter-spacing: 0.08em; }
  .t-reihe { grid-template-columns: 1fr; gap: 6px; }
}
@media (max-width: 760px) { .testimonial-bild img { height: auto; min-height: 0; aspect-ratio: 4 / 5; } }
.testimonial-logo { display: block; height: 38px; width: auto; margin: 22px auto 0; filter: grayscale(1); opacity: 0.65; }
.testimonial-logo[src*="amili"] { height: 34px; opacity: 0.6; }
.testimonial.gespiegelt { grid-template-columns: 1fr 320px; }
.testimonial.gespiegelt > div:first-child { order: 2; }
.testimonial-bild { flex: 1; min-height: 0; }
.testimonial-bild img {
  width: 100%;
  height: 100%;
  min-height: 340px;
  object-fit: cover;
  object-position: 50% 30%;
  border-radius: var(--radius);
  display: block;
}
@media (max-width: 760px) {
  .testimonial, .testimonial.gespiegelt { grid-template-columns: 1fr; }
  .testimonial.gespiegelt > div:first-child { order: 0; }
  .testimonial-video { width: 100%; }
  .testimonial-logo { height: 27px; margin: 20px auto 12px; }
  .testimonial-logo[src*="amili"] { height: 31px; }
}
@media (max-width: 860px) {
  .case-zahlen, .case-raster { grid-template-columns: 1fr; }
  .case-zahl {
    display: grid;
    grid-template-columns: 118px 1fr;
    align-items: center;
    gap: 14px;
    padding: 13px 24px;
    text-align: left;
    border-left: 0;
    border-top: 1px solid var(--linie-dunkel);
  }
  .case-zahl:first-child { border-top: 0; }
  .case-zahl .wert { font-size: 30px; }
  .case-zahl .label { margin-top: 0; font-size: 10.5px; letter-spacing: 0.08em; }
  .case-feld { padding: 22px 24px; }
}

/* ---------- Anti-Selling ---------- */
.anti { background: var(--nebel); }
.anti-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 30px 70px rgba(19, 26, 46, 0.14);
}
.anti-spalte { padding: clamp(40px, 4vw, 52px) clamp(34px, 3.5vw, 48px); }
.anti-overline {
  display: block;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--stahl-dunkel);
  margin-bottom: 8px;
}
.anti-spalte h3 { font-size: 21px; padding-bottom: 16px; border-bottom: 1px solid rgba(19, 26, 46, 0.08); margin-bottom: 8px; }
.anti-spalte.passt h3 { border-bottom-color: var(--linie-hell); }
.anti-spalte ul { list-style: none; }
.anti-spalte li { padding: 12px 0 12px 38px; position: relative; font-size: 15.5px; border-bottom: 1px solid rgba(19, 26, 46, 0.08); }
.anti-spalte li:last-child { border-bottom: 0; }
.anti-spalte li b { font-weight: 600; color: var(--tinte); }
.anti-spalte.passt li b { color: var(--hell); }
.anti-spalte.passt-nicht { background: #FFFFFF; }
.anti-spalte.passt {
  background:
    radial-gradient(560px 320px at 18% -5%, rgba(29, 68, 172, 0.4), transparent 62%),
    var(--nacht-800);
}
.anti-spalte.passt .anti-overline { color: var(--koenig-hell); }
.anti-spalte.passt h3 { color: var(--hell); }
.anti-spalte.passt li { color: var(--hell-70); border-bottom: 1px solid var(--linie-hell); }
.anti-spalte.passt li:last-child { border-bottom: 0; }
.anti-spalte.passt li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 13px;
  width: 22px;
  height: 22px;
  border: 1px solid rgba(143, 166, 230, 0.4);
  border-radius: 50%;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%238FA6E6' stroke-width='2.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3C/svg%3E") no-repeat center / 11px;
}
.anti-spalte.passt-nicht li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 13px;
  width: 22px;
  height: 22px;
  border: 1px solid rgba(140, 59, 46, 0.4);
  border-radius: 50%;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%238C3B2E' stroke-width='2.8' stroke-linecap='round'%3E%3Cline x1='7' y1='7' x2='17' y2='17'/%3E%3Cline x1='17' y1='7' x2='7' y2='17'/%3E%3C/svg%3E") no-repeat center / 10px;
}
@media (max-width: 860px) { .anti-grid { grid-template-columns: 1fr; } }

/* ---------- Quali-Formular ---------- */
.formular-sektion {
  background:
    radial-gradient(900px 480px at 50% -10%, rgba(29, 68, 172, 0.22), transparent 60%),
    var(--nacht-900);
}
.formular-karte {
  max-width: 720px;
  margin: 0 auto;
  background: var(--creme);
  color: var(--tinte);
  border-radius: var(--radius);
  padding: clamp(30px, 4vw, 46px);
}
.formular-kopf { margin-bottom: 24px; }
.formular-trust { display: flex; align-items: center; justify-content: center; gap: 18px; margin-bottom: 30px; }
.quali-hinweis .btn { margin-top: 14px; padding: 13px 24px; font-size: 12px; }
.karte-vertrauen {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px 28px;
  margin-top: 26px;
  padding-top: 20px;
  border-top: 1px solid var(--linie-dunkel);
}
.karte-vertrauen span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--stahl-dunkel);
}
.karte-vertrauen svg { width: 14px; height: 14px; flex: 0 0 auto; color: var(--koenig); }
.formular-trust .trust-text { font-size: 12.5px; letter-spacing: 0.14em; text-transform: uppercase; font-weight: 600; color: var(--stahl); }
.schritt-mut { margin-top: 12px; font-family: var(--serif); font-style: italic; font-size: 15.5px; color: var(--koenig); }
@keyframes chipPop { 0% { transform: scale(1); } 45% { transform: scale(1.05); } 100% { transform: scale(1); } }
.chip-btn.aktiv { animation: chipPop 0.28s ease; }
.formular-beweis { max-width: 760px; margin: 40px auto 0; text-align: center; }
.beweis-badges { list-style: none; display: flex; justify-content: center; flex-wrap: wrap; gap: 12px 28px; }
.beweis-badges li {
  position: relative;
  padding-left: 30px;
  font-size: 14.5px;
  color: var(--hell-70);
}
.beweis-badges li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  translate: 0 -50%;
  width: 21px;
  height: 21px;
  border: 1px solid rgba(143, 166, 230, 0.4);
  border-radius: 50%;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%238FA6E6' stroke-width='2.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3C/svg%3E") no-repeat center / 10px;
}
.beweis-logos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: center;
  justify-items: center;
  gap: 30px clamp(24px, 4vw, 56px);
  max-width: 560px;
  margin: 32px auto 0;
}
.beweis-logos img { height: 24px; max-width: 96px; object-fit: contain; filter: invert(1) grayscale(1); opacity: 0.5; }
@media (max-width: 700px) {
  .beweis-logos { max-width: 400px; gap: 24px 18px; }
}
.schritt-text { font-size: 12.5px; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--stahl-dunkel); }
.balken { height: 3px; background: var(--creme-2); border-radius: 999px; margin-top: 12px; overflow: hidden; }
.balken-fuellung { height: 100%; background: var(--koenig); transform: scaleX(0.25); transform-origin: left; transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1); }
.feld-gruppe { display: none; }
.feld-gruppe.gruppe-sichtbar { display: block; animation: heldRein 0.45s cubic-bezier(0.22, 1, 0.36, 1); }
.feld-gruppe h3 { font-size: clamp(20px, 2.4vw, 24px); margin-bottom: 18px; color: var(--tinte); }
.frage-sub { margin: -10px 0 20px; font-size: 15px; color: var(--tinte-70); }
.chip-liste[data-mehrfach] .chip-btn {
  position: relative;
  padding-left: 46px;
  text-align: left;
}
.chip-liste[data-mehrfach] .chip-btn::before {
  content: "";
  position: absolute;
  left: 16px;
  top: 50%;
  translate: 0 -50%;
  width: 18px;
  height: 18px;
  border: 1px solid var(--linie-dunkel);
  border-radius: 2px;
  background: #FFFFFF;
  transition: background 0.2s ease, border-color 0.2s ease;
}
.chip-liste[data-mehrfach] .chip-btn.aktiv {
  background: rgba(29, 68, 172, 0.06);
  border-color: var(--koenig);
  color: var(--tinte);
}
.chip-liste[data-mehrfach] .chip-btn.aktiv::before {
  border-color: var(--koenig);
  background: var(--koenig) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23FFFFFF' stroke-width='3.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3C/svg%3E") no-repeat center / 12px;
}
.andere-zone {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 26px;
  padding-top: 22px;
  border-top: 1px solid var(--linie-dunkel);
}
.andere-frage { font-size: 14.5px; color: var(--tinte-70); }
.chip-andere { border-style: dashed; background: transparent; color: var(--tinte-70); }
.chip-andere:hover { color: var(--koenig); }
.chip-andere.aktiv { border-style: solid; background: var(--koenig); color: var(--hell); }
.andere-branche {
  display: flex;
  align-items: stretch;
  margin-top: 14px;
  background: #FFFFFF;
  border: 1px solid var(--linie-dunkel);
  border-radius: var(--radius);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.andere-branche:focus-within { border-color: var(--koenig); box-shadow: 0 0 0 3px rgba(29, 68, 172, 0.12); }
.andere-branche[hidden] { display: none; }
.formular-karte .andere-branche input[type="text"] {
  flex: 1;
  border: 0;
  background: transparent;
  box-shadow: none;
  margin: 0;
}
.andere-branche .btn { margin: 6px; padding: 12px 22px; font-size: 12px; flex: 0 0 auto; align-self: center; }
.feld-gruppe .gruppen-label { display: block; font-size: 14px; font-weight: 600; color: var(--tinte); margin: 22px 0 10px; }
.chip-liste { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
.schritt-jahre .chip-liste, .schritt-umsatz .chip-liste { grid-template-columns: 1fr; max-width: 480px; }
.schritt-akquise .chip-liste { display: flex; flex-wrap: wrap; }
.schritt-investition .chip-liste { grid-template-columns: 1fr; max-width: 560px; }
.stopp-hinweis {
  display: none;
  align-items: flex-start;
  gap: 14px;
  margin-top: 16px;
  padding: 18px 20px;
  background: rgba(140, 59, 46, 0.07);
  border: 1px solid rgba(140, 59, 46, 0.4);
  border-radius: var(--radius);
}
.stopp-hinweis.sichtbar { display: flex; }
.stopp-zeichen {
  flex: 0 0 24px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--warn);
  color: #FFFFFF;
  font-weight: 700;
  font-size: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
}
.stopp-hinweis p { font-size: 14.5px; color: var(--tinte); margin: 0; }
.formular-nav .btn:disabled { opacity: 0.35; cursor: not-allowed; pointer-events: none; }
@media (max-width: 620px) { .chip-liste { grid-template-columns: 1fr; } }
.chip-btn {
  font-family: var(--sans);
  font-size: 15px;
  padding: 14px 18px;
  border: 1px solid var(--linie-dunkel);
  border-radius: var(--radius);
  background: #FFFFFF;
  color: var(--tinte);
  cursor: pointer;
  text-align: left;
  box-shadow: 0 1px 2px rgba(19, 26, 46, 0.04);
  transition: border-color 0.2s ease, background-color 0.2s ease, color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}
.chip-btn:hover { border-color: var(--koenig); transform: translateY(-1px); box-shadow: 0 6px 16px rgba(19, 26, 46, 0.08); }
.chip-btn.aktiv { background: var(--koenig); border-color: var(--koenig); color: var(--hell); }
.formular-karte input[type="text"], .formular-karte input[type="email"], .formular-karte input[type="tel"], .formular-karte textarea {
  width: 100%;
  font-family: var(--sans);
  font-size: 16px;
  padding: 14px 16px;
  border: 1px solid var(--linie-dunkel);
  border-radius: var(--radius);
  background: #FFFFFF;
  color: var(--tinte);
  margin-bottom: 12px;
}
.formular-karte input:focus, .formular-karte textarea:focus { outline: 2px solid var(--koenig); outline-offset: -1px; }
.formular-karte input.fehler, .formular-karte textarea.fehler { border-color: var(--warn); }
.einwilligung { display: grid; grid-template-columns: 20px 1fr; gap: 12px; align-items: start; font-size: 13.5px; color: var(--tinte-70); margin: 14px 0 4px; }
.einwilligung input { margin-top: 3px; }
.einwilligung.fehler-rahmen { color: var(--warn); }
.formular-fehler { display: none; margin-top: 14px; font-size: 14.5px; color: var(--warn); }
.formular-fehler.sichtbar { display: block; }
.quali-hinweis {
  display: none;
  margin-top: 18px;
  padding: 16px 18px;
  border: 1px solid var(--linie-dunkel);
  border-radius: var(--radius);
  background: #FFFFFF;
  font-size: 14.5px;
  color: var(--tinte-70);
}
.quali-hinweis.sichtbar { display: block; }
.formular-nav { display: flex; justify-content: space-between; align-items: center; gap: 16px; margin-top: 26px; }
.zurueck-btn { background: none; border: 0; font-family: var(--sans); font-size: 14.5px; color: var(--stahl-dunkel); cursor: pointer; padding: 10px 0; }
.zurueck-btn:hover { color: var(--tinte); }
.formular-nav .btn { flex: 1; max-width: 320px; margin-left: auto; }
.recap-zeile { font-size: 12.5px; line-height: 1.7; color: var(--stahl-dunkel); margin-bottom: 16px; }
.formular-nav .btn { white-space: nowrap; }
.chip-zweizeilig b { display: block; font-weight: 600; }
.chip-zweizeilig small { display: block; font-size: 12.5px; color: var(--stahl-dunkel); margin-top: 3px; }
.chip-zweizeilig.aktiv small { color: rgba(255, 255, 255, 0.72); }
@keyframes ctaWobble {
  0%, 90%, 100% { transform: translateX(0); }
  92% { transform: translateX(-3px); }
  94% { transform: translateX(3px); }
  96% { transform: translateX(-2px); }
  98% { transform: translateX(2px); }
}
.schritt-kontakt button[type="submit"] { animation: ctaWobble 6s ease-in-out infinite; }
.schritt-kontakt .weg-slots { justify-content: flex-end; }
.mehrfach-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: -6px 0 18px;
  padding: 7px 14px;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--koenig);
  background: rgba(29, 68, 172, 0.07);
  border: 1px solid rgba(29, 68, 172, 0.16);
  border-radius: 999px;
}
.mehrfach-pill svg { width: 15px; height: 15px; flex: none; }
@media (max-width: 620px) {
  .mehrfach-pill { font-size: 10.5px; padding: 6px 11px; gap: 6px; white-space: nowrap; }
  .mehrfach-pill svg { width: 13px; height: 13px; }
}
@media (max-width: 370px) {
  .mehrfach-pill { font-size: 9.5px; }
  .schritt-kontakt .formular-nav .btn { font-size: 11px; letter-spacing: 0.04em; }
}
.honigtopf { position: absolute; left: -9999px; opacity: 0; pointer-events: none; }
@media (max-width: 640px) {
  .formular-nav .btn { max-width: none; }
  .schritt-kontakt .formular-nav { flex-direction: column-reverse; align-items: stretch; }
  .schritt-kontakt .formular-nav .btn { width: 100%; margin-left: 0; font-size: 12px; letter-spacing: 0.06em; padding-left: 10px; padding-right: 10px; }
  .schritt-kontakt .zurueck-btn { align-self: center; padding: 12px 0 0; }
  .schritt-kontakt .weg-slots { justify-content: center; }
}

/* ---------- Mobiler Sticky-CTA ---------- */
.mobil-cta {
  display: none;
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: calc(16px + env(safe-area-inset-bottom, 0px));
  z-index: 80;
  pointer-events: none;
  transform: translateY(calc(100% + 40px));
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}
.mobil-cta.sichtbar { transform: none; }
.mobil-cta .btn {
  pointer-events: auto;
  display: flex;
  width: 100%;
  justify-content: center;
  white-space: nowrap;
  font-size: 13px;
  padding: 17px 20px;
  box-shadow: 0 14px 34px rgba(5, 11, 24, 0.55), 0 4px 16px rgba(29, 68, 172, 0.45);
}
/* Automatischer Sonnenschein-Sweep alle 7 Sekunden (statt Hover) */
@keyframes ctaSchein {
  0% { left: -70%; opacity: 1; }
  10% { left: 130%; opacity: 1; }
  10.05% { opacity: 0; }
  10.3% { left: -70%; opacity: 0; }
  10.6%, 100% { left: -70%; opacity: 1; }
}
.mobil-cta .btn::after {
  transition: none;
  animation: ctaSchein 7s linear infinite;
}
@media (max-width: 860px) {
  .mobil-cta { display: block; }
  body .footer { padding-bottom: calc(48px + 64px + env(safe-area-inset-bottom, 0px)); }
  .footer-recht-zeile { flex-direction: column; align-items: center; gap: 16px; text-align: center; }
  .footer-links { flex-direction: column; align-items: center; gap: 14px; }
  .footer-links a { white-space: nowrap; }
  body .footer-recht > p:last-child { text-align: center; font-size: 9.5px; line-height: 1.6; color: rgba(242, 243, 249, 0.24); }
}

/* ---------- Cookie-Banner (Modal mit Schleier) ---------- */
.cookie-schleier {
  position: fixed;
  inset: 0;
  z-index: 199;
  background: rgba(8, 18, 39, 0.55);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  opacity: 0;
  transition: opacity 0.45s ease;
}
.cookie-schleier.sichtbar { opacity: 1; }
.cookie-banner {
  position: fixed;
  left: 50%;
  top: 50%;
  z-index: 200;
  width: min(460px, calc(100vw - 48px));
  max-height: calc(100vh - 48px);
  overflow-y: auto;
  background: var(--nacht-800);
  color: var(--hell-70);
  border: 1px solid rgba(143, 166, 230, 0.24);
  border-radius: var(--radius);
  padding: 28px 28px 24px;
  box-shadow: inset 0 1px 0 rgba(242, 243, 249, 0.08), 0 24px 60px rgba(5, 11, 24, 0.5);
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.92);
  transition: opacity 0.45s cubic-bezier(0.22, 1, 0.36, 1), transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}
.cookie-banner.sichtbar { opacity: 1; transform: translate(-50%, -50%) scale(1); }
.cookie-banner h3 { font-size: 20px; color: var(--hell); margin-bottom: 8px; }
.cookie-banner > p { font-size: 14px; line-height: 1.55; margin-bottom: 16px; }
.cookie-banner > p a { color: var(--koenig-hell); text-decoration: none; border-bottom: 1px solid rgba(143, 166, 230, 0.4); }
.cookie-optionen { display: none; }
.cookie-optionen.offen { display: block; margin-bottom: 16px; border-top: 1px solid var(--linie-hell); }
.cookie-schalter {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--linie-hell);
  cursor: pointer;
}
.cookie-schalter.gesperrt { cursor: default; }
.cookie-schalter input { position: absolute; opacity: 0; pointer-events: none; }
.schalter-optik {
  flex: 0 0 38px;
  width: 38px;
  height: 22px;
  border-radius: 999px;
  background: rgba(242, 243, 249, 0.18);
  position: relative;
  transition: background 0.25s ease;
  margin-top: 2px;
}
.schalter-optik::after {
  content: "";
  position: absolute;
  top: 3px;
  left: 3px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--hell);
  transition: transform 0.25s cubic-bezier(0.22, 1, 0.36, 1);
}
.cookie-schalter input:checked + .schalter-optik { background: var(--koenig); }
.cookie-schalter input:checked + .schalter-optik::after { transform: translateX(16px); }
.cookie-schalter.gesperrt .schalter-optik { background: rgba(143, 166, 230, 0.4); }
.schalter-text { font-size: 13px; line-height: 1.45; }
.schalter-text b { display: block; color: var(--hell); font-weight: 600; font-size: 13.5px; }
.schalter-text small { font-size: 12.5px; color: var(--stahl); }
.cookie-aktionen { display: flex; flex-wrap: wrap; gap: 10px; align-items: center; }
.cookie-aktionen .btn { padding: 12px 20px; font-size: 12px; }
.cookie-einstellungen-link {
  background: none;
  border: 0;
  color: var(--stahl);
  font-family: var(--sans);
  font-size: 12.5px;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 3px;
  padding: 6px 2px;
}
.cookie-einstellungen-link:hover { color: var(--hell); }
@media (max-width: 560px) {
  .cookie-banner {
    left: 12px;
    right: 12px;
    top: auto;
    bottom: 12px;
    width: auto;
    padding: 22px 20px 18px;
    opacity: 1;
    transform: translateY(calc(100% + 24px));
  }
  .cookie-banner.sichtbar { transform: translateY(0); }
}

/* ---------- Rechtsseiten (Impressum / Datenschutz) ---------- */
.recht-sektion { background: var(--creme); padding: clamp(150px, 16vw, 190px) 0 clamp(70px, 8vw, 100px); }
.recht-inhalt { max-width: 760px; margin: 0 auto; }
.recht-inhalt h1 { font-size: clamp(32px, 4vw, 44px); margin-bottom: 10px; }
.recht-stand { font-size: 14px; color: var(--tinte-70); margin-bottom: clamp(36px, 4vw, 52px); }
.recht-inhalt h2 {
  font-size: 22px;
  margin: clamp(36px, 4vw, 48px) 0 4px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--linie-dunkel);
}
.recht-inhalt h3 { font-size: 17.5px; margin: 26px 0 6px; }
.recht-inhalt p { font-size: 16px; color: var(--tinte-70); margin-top: 12px; }
.recht-inhalt ul { margin: 12px 0 0 20px; font-size: 16px; color: var(--tinte-70); }
.recht-inhalt a { color: var(--koenig); text-decoration: none; border-bottom: 1px solid rgba(29, 68, 172, 0.3); }
.recht-inhalt a:hover { border-bottom-color: var(--koenig); }
.recht-adresse { font-style: normal; font-size: 16px; color: var(--tinte-70); line-height: 1.7; margin-top: 12px; }

/* ---------- Footer (Aufbau nach adswerk.de, Gradient in Blau) ---------- */
.footer {
  background: linear-gradient(180deg, var(--nacht-900) 0%, #050B18 100%);
  color: var(--hell-45);
  padding: clamp(72px, 9vw, 110px) 0 40px;
  font-size: 14.5px;
  position: relative;
  overflow: hidden;
}
.footer::after {
  content: "";
  position: absolute;
  right: -150px;
  bottom: -170px;
  width: clamp(380px, 36vw, 540px);
  aspect-ratio: 1;
  background: url("../assets/img/adswerk-emblem.png") center / contain no-repeat;
  opacity: 0.04;
  pointer-events: none;
}
.footer .inhalt { position: relative; z-index: 1; }
.footer a { color: var(--hell-70); text-decoration: none; transition: color 0.25s ease; }
.footer a:hover { color: var(--koenig-hell); }
.footer-oben {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: clamp(32px, 5vw, 64px);
  margin-bottom: clamp(44px, 5.5vw, 64px);
}
.footer-marke img { height: 32px; width: auto; margin-bottom: 20px; }
.footer-marke p {
  max-width: 320px;
  font-family: var(--serif);
  font-style: italic;
  font-size: 17.5px;
  line-height: 1.55;
  color: var(--hell-70);
}
.footer-social { display: flex; gap: 14px; margin-top: 26px; }
.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid var(--linie-hell-stark);
  border-radius: 50%;
  color: var(--hell-70);
  transition: border-color 0.3s ease, background 0.3s ease, color 0.3s ease, transform 0.3s ease;
}
.footer-social a:hover { border-color: var(--koenig); background: var(--koenig); color: #FFFFFF; transform: translateY(-2px); }
.footer-social svg { width: 16px; height: 16px; }
.footer-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--stahl);
  margin-bottom: 20px;
}
.footer-label::before { content: ""; width: 22px; height: 1px; background: var(--koenig-hell); }
.footer-kontakt { list-style: none; }
.footer-kontakt li { padding: 9px 0; }
.footer-kontakt li + li { border-top: 1px solid var(--linie-hell); }
.footer-anschrift { color: var(--hell-70); line-height: 1.9; }
.footer-links { display: flex; gap: clamp(22px, 3vw, 36px); list-style: none; }
.footer-links a { font-size: 11.5px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--hell-45); }
.footer-links a:hover { color: var(--koenig-hell); }
.footer-recht { border-top: 1px solid var(--linie-hell); padding-top: clamp(26px, 3vw, 34px); font-size: 12px; color: var(--hell-45); line-height: 1.7; }
.footer-recht-zeile { display: flex; justify-content: space-between; align-items: center; gap: 24px; flex-wrap: wrap; margin-bottom: 20px; }
.footer-recht-zeile p { font-size: 13px; letter-spacing: 0.02em; }
.footer-recht > p:last-child { font-size: 11px; color: rgba(242, 243, 249, 0.28); max-width: 900px; letter-spacing: 0.01em; }
@media (max-width: 860px) { .footer-oben { grid-template-columns: 1fr; } }

/* ---------- Foto-Reveals (Über uns) ---------- */
.person-bild img {
  clip-path: inset(0 0 100% 0);
  transform: scale(1.06);
  transition: clip-path 1.1s cubic-bezier(0.22, 1, 0.36, 1), transform 1.1s cubic-bezier(0.22, 1, 0.36, 1);
}
.person-split.sichtbar .person-bild img { clip-path: inset(0 0 0 0); transform: scale(1); }

.btn-zeile { display: inline-block; }

/* ---------- Scroll-Reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1), transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--delay, 0s);
}
.reveal.sichtbar { opacity: 1; transform: none; }

/* ---------- Licht-Rand (Maus-Glanz an Kartenkanten) ---------- */
.licht-rand { position: relative; }
.licht-rand::after {
  content: "";
  position: absolute;
  inset: 0;
  padding: 1px;
  border-radius: inherit;
  background: radial-gradient(
    240px circle at var(--lx, 50%) var(--ly, 50%),
    rgba(140, 225, 240, 0.9),
    rgba(29, 68, 172, 0.45) 40%,
    transparent 72%
  );
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
  z-index: 1;
}
.licht-rand:hover::after { opacity: 1; }

/* ---------- Reduzierte Bewegung ---------- */
/* ---------- Mobile Typografie ---------- */
@media (max-width: 560px) {
  h2 { font-size: 26px; line-height: 1.22; }
  .sektion-kopf .intro { font-size: 16px; line-height: 1.62; margin-top: 16px; }
  .hero-sub { font-size: 16.5px; }
  .kicker { font-size: 10.5px; letter-spacing: 0.15em; gap: 10px; margin-bottom: 18px; }
  .sektion-kopf.mittig .kicker::before,
  .sektion-kopf.mittig .kicker::after { display: none; }
  .sektion-kopf { margin-bottom: clamp(36px, 10vw, 48px); }
  .branchen-notiz { font-size: 15px; }
  .methode-summe { font-size: 22px; line-height: 1.4; }
  .methode-summe .summe-zeile { display: block; }
  .logos-titel { font-size: 9.5px; letter-spacing: 0.1em; white-space: nowrap; margin-bottom: 30px; }
  .mechanik-liste li { grid-template-columns: auto 1fr; gap: 0 12px; align-items: baseline; }
  .mechanik-liste li > div { display: contents; }
  .mechanik-nr { font-size: 21px; padding-top: 0; }
  .mechanik-liste h3 { font-size: 20px; margin-bottom: 0; }
  .mechanik-liste li p { grid-column: 1 / -1; margin-top: 10px; max-width: none; }
  .stapel-karte .prob-kicker { font-size: 10.5px; letter-spacing: 0.13em; gap: 10px; padding-bottom: 12px; margin-bottom: 16px; }
  .stapel-karte .prob-kicker i { font-size: 15px; padding-right: 10px; }
  .stapel-karte h3 { font-size: 21px; }
  .stapel-karte p { font-size: 15.5px; }
  .phasen-warnung h3 { font-size: 30px; line-height: 1.18; }
  .phasen-warnung p { font-size: 16px; }
  .zwischen-cta h2 { font-size: 26px; }
}

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .zeile-maske > span { transform: none; transition: none; }
  .scroll-hinweis::after { animation: none; }
  .marquee-spur { animation: none; }
  .btn::after { display: none; }
  .lese-fortschritt { display: none; }
  .hero-glut { animation: none; }
  .hero h1 .betont::after { transform: none; }
  .cluster li { opacity: 1; transform: none; }
  .stapel .stapel-karte { position: static; transform: none; filter: none; margin-bottom: 22px; min-height: 0; }
  .stapel-karte::before { opacity: 0; }
  .timeline-fuellung { transform: none; }
  .phase-eintrag { --an: 1; }
  .person-bild img { clip-path: none; transform: none; }
  .weg-video { display: none; }
  *, *::before, *::after { transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; }
}
