/* =============================================================================
   pixelwerk.media — Medienagentur in Friedrichshafen am Bodensee
   Konzept, Gestaltung, Text und Umsetzung dieser Website: pixelwerk.media
   https://www.pixelwerk.media · info@pixelwerk.media
   Alle Rechte an Gestaltung und Quelltext liegen bei pixelwerk.media.
   ============================================================================= */

:root {
  --font-sans:    'Helvetica Neue', Inter, system-ui, -apple-system, 'Segoe UI', Arial, sans-serif;
  --font-display: var(--font-sans);

  --schwarz: #000000;
  --tief-1:  #0B0B0B;
  --tief-2:  #131313;
  --tief-3:  #1C1C1C;
  --weiss:   #FFFFFF;
  --hell-1:  #FAFAFA;
  --hell-2:  #F0F0F0;

  --text:           #0A0A0A;
  --text-muted:     #5C5C5C;
  --auf-tief:       #FFFFFF;
  --auf-tief-muted: #A6A6A6;
  --auf-tief-leise: #6E6E6E;

  --linie:            rgba(10, 10, 10, 0.13);
  --linie-stark:      rgba(10, 10, 10, 0.34);
  --linie-tief:       rgba(255, 255, 255, 0.13);
  --linie-tief-stark: rgba(255, 255, 255, 0.30);

  --bg: #FFFFFF; --surface: var(--hell-1); --surface-2: var(--hell-2);
  --border: var(--linie); --border-strong: var(--linie-stark);
  --accent: #0A0A0A; --accent-text: #0A0A0A; --accent-hover: #333333;
  --on-accent: #FFFFFF; --focus: #0A0A0A;

  --radius: 3px;
  --nav-h: 88px;

  --pixel-t: .2s;
  --pixel-e: steps(5, end);
  --breit: 1400px;
  --mittel: 1240px;
  --rand: clamp(18px, 3vw, 46px);
}

[hidden] { display: none !important; }

html { background: var(--schwarz); overscroll-behavior-y: none; }
body { background: var(--schwarz); }

.mitte       { width: min(100% - 2*var(--rand), var(--mittel)); margin-inline: auto; }
.mitte--breit{ width: min(100% - 2*var(--rand), var(--breit));  margin-inline: auto; }

:focus-visible { outline: 2px solid #0A0A0A; outline-offset: 3px; }
.tief :focus-visible, .tief:focus-visible { outline-color: #FFFFFF; }

.tief { background: var(--schwarz); color: var(--auf-tief); position: relative; overflow: hidden; }
.hell { background: var(--hell-1);  color: var(--text);     position: relative; overflow: hidden; }
.tief h1,.tief h2,.tief h3,.tief h4 { color: var(--auf-tief); }
.tief p { color: var(--auf-tief-muted); }

.abschnitt { padding-block: clamp(30px, 3vw, 46px); }

.label {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.625rem; font-weight: 600; letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--text-muted); margin-bottom: 14px;
}
.tief .label { color: var(--auf-tief-muted); }
.label::before {
  content: ''; width: 8px; height: 8px; flex: 0 0 auto; opacity: .8;
  background: linear-gradient(currentColor 0 0) 0 0/3.5px 3.5px no-repeat,
              linear-gradient(currentColor 0 0) 4.5px 4.5px/3.5px 3.5px no-repeat;
}

h1,h2,h3 { font-family: var(--font-display); }
.zusammen { white-space: nowrap; }

.t-hero {
  font-size: clamp(1.875rem, 1rem + 4.4vw, 4.25rem);
  line-height: 1.03; letter-spacing: -0.033em; font-weight: 700; hyphens: manual;
}
.t-sektion {
  font-size: clamp(1.375rem, 1rem + 1.5vw, 1.75rem);
  line-height: 1.14; letter-spacing: -0.026em; font-weight: 700; hyphens: manual;
}
.fliess { font-size: 0.875rem; line-height: 1.6; color: var(--text-muted); }
.tief .fliess { color: var(--auf-tief-muted); }

.knopf {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  min-height: 40px; padding: 10px 18px;
  border: 1px solid transparent; border-radius: var(--radius);
  font-size: 0.8125rem; font-weight: 500; text-decoration: none; cursor: pointer; white-space: nowrap;
  transition: background .28s var(--ease), color .28s var(--ease), border-color .28s var(--ease);
}
.knopf .pf { transition: transform .28s var(--ease); flex: 0 0 auto; }
.knopf:hover .pf { transform: translateX(3px); }
.knopf--voll  { background: var(--weiss); color: #000; }
.knopf--voll:hover { background: #D6D6D6; }
.knopf--linie { background: transparent; color: var(--weiss); border-color: var(--linie-tief-stark); }
.knopf--linie:hover { border-color: #FFF; background: rgba(255,255,255,.07); }
.hell .knopf--voll  { background: #0A0A0A; color: #FFF; }
.hell .knopf--voll:hover { background: #333; }
.hell .knopf--linie { color: #0A0A0A; border-color: var(--linie-stark); }
.hell .knopf--linie:hover { border-color: #0A0A0A; background: rgba(0,0,0,.04); }

.knopf:disabled { opacity: .55; cursor: progress; }
.knopf:disabled:hover { background: var(--weiss); }
.hell .knopf--voll:disabled:hover { background: #0A0A0A; }

.kopf {
  position: sticky; top: 0; z-index: 60;
  background: var(--schwarz);
  border-bottom: 1px solid transparent;
  transition: background .35s var(--ease), border-color .35s var(--ease), padding .35s var(--ease);
}
.kopf__reihe {
  display: flex; align-items: center; gap: 28px;
  height: var(--nav-h);
  width: min(100% - 2*var(--rand), var(--mittel)); margin-inline: auto;
  padding-inline: 0;
  border: 1px solid transparent; border-radius: 0;

  transition: width var(--pixel-t) var(--pixel-e), max-width var(--pixel-t) var(--pixel-e),
              height var(--pixel-t) var(--pixel-e), padding var(--pixel-t) var(--pixel-e),
              background var(--pixel-t) var(--pixel-e), border-color var(--pixel-t) var(--pixel-e),
              border-radius var(--pixel-t) var(--pixel-e);
}

.kopf__logo    { order: 1; margin-right: auto; display: flex; align-items: center; justify-content: center; min-height: 26px; min-width: 26px; }
.nav-teil--links  { order: 2; }
.nav-teil--rechts { order: 3; }

.kopf .knopf  { order: 4; margin-left: 10px; min-height: 42px; padding: 10px 20px; font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; border-radius: 999px; }
.burger       { order: 5; }

.kopf__wortmarke {
  height: 25px; width: auto; display: block;
  transition: height .35s var(--ease);
}

.kopf__emblem { display: none; height: 24px; width: auto; }

.kopf.fest { background: transparent; border-bottom-color: transparent; padding-block: 9px; }
.kopf.fest .kopf__reihe {
  height: 58px;

  padding-inline: 20px;
  border-radius: 999px;

  background: rgba(10, 10, 10, 0.72);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-color: rgba(255, 255, 255, 0.14);
}

.kopf.fest .kopf__wortmarke { display: none; }
.kopf.fest .kopf__emblem    { display: block; }

@keyframes pixel-bau {
  0%   { opacity: 0; transform: translateY(-7px) scale(.55); }
  100% { opacity: 1; transform: none; }
}

.kopf.fest .kopf__logo,
.kopf.fest .menue li,
.kopf.fest .knopf {
  animation: pixel-bau var(--pixel-t) steps(4, end) both;
}
.kopf.fest .kopf__logo                { animation-delay: 0s;   }

@keyframes emblem-drehen {
  0%, 91.5% { transform: perspective(240px) rotateY(0deg); }
  100%      { transform: perspective(240px) rotateY(360deg); }
}
.kopf.fest .kopf__emblem {
  animation: emblem-drehen 7s linear infinite;
}
.kopf.fest .menue--links  li:nth-child(1) { animation-delay: .04s; }
.kopf.fest .menue--links  li:nth-child(2) { animation-delay: .07s; }
.kopf.fest .menue--links  li:nth-child(3) { animation-delay: .10s; }
.kopf.fest .menue--rechts li:nth-child(1) { animation-delay: .13s; }
.kopf.fest .menue--rechts li:nth-child(2) { animation-delay: .16s; }

.kopf.fest .menue--rechts li:nth-child(3) { animation-delay: .19s; }
.kopf.fest .knopf                     { animation-delay: .22s; }

.kopf.fest .kopf__reihe {
  position: relative;

  position: relative;
  width: fit-content;
  max-width: min(100% - 2 * var(--rand), var(--mittel));
  margin-inline: auto;
}

.kopf.fest .kopf__logo        { position: static; order: 1; margin-right: auto; transform: none; }
.kopf.fest .nav-teil--links   { order: 2; margin: 0; }
.kopf.fest .nav-teil--rechts  { order: 3; margin: 0; }

.kopf.fest .knopf {
  position: static; order: 4; transform: none;
  margin: 0 0 0 4px; padding-inline: 0;
  border-color: transparent; background: transparent;
  min-height: 34px;
}
.kopf.fest .knopf:hover { background: transparent; border-color: transparent; opacity: .72; }
.kopf.fest .burger { position: static; order: 5; margin: 0 0 0 12px; transform: none; }

.menue { display: none; list-style: none; padding: 0; margin: 0; align-items: center; gap: 26px; }
.menue a {
  position: relative; display: inline-flex; align-items: center; gap: 5px;
  padding-block: 11px;
  font-size: 0.75rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .06em;
  color: #FFFFFF;
  text-decoration: none;
  transition: opacity .28s var(--ease);
  opacity: .82;
}
.menue a:hover, .menue a[aria-current='page'] { opacity: 1; }
.menue a::after { content:''; position:absolute; left:0; bottom:6px; width:0; height:1px; background:currentColor; transition:width .28s var(--ease); }
.menue a:hover::after { width: 100%; }

.burger {
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; flex: 0 0 auto;
  background: none; color: #FFF; cursor: pointer;
  border: 1px solid var(--linie-tief-stark); border-radius: 12px;
  transition: background .28s var(--ease), color .28s var(--ease), border-color .28s var(--ease);
}
.burger:hover { background: #FFF; color: var(--schwarz); border-color: #FFF; }

.burger__striche { position: relative; display: block; width: 21px; height: 13px; }
.burger__strich {
  position: absolute; left: 0; width: 21px; height: 1.5px;
  background: currentColor; border-radius: 1px;
  transition: transform .28s var(--ease), opacity .16s var(--ease), top .28s var(--ease);
}
.burger__strich:nth-child(1) { top: 0; }
.burger__strich:nth-child(2) { top: 5.75px; }
.burger__strich:nth-child(3) { top: 11.5px; }

.burger[aria-expanded='true'] .burger__strich:nth-child(1) { top: 5.75px; transform: rotate(45deg); }
.burger[aria-expanded='true'] .burger__strich:nth-child(2) { opacity: 0; }
.burger[aria-expanded='true'] .burger__strich:nth-child(3) { top: 5.75px; transform: rotate(-45deg); }

@media (min-width: 1080px) { .menue { display: flex; } .burger { display: none; } }
@media (max-width: 620px) {
  :root { --nav-h: 60px; }
  .kopf__logo img { height: 18px; }
  .kopf .knopf { min-height: 36px; padding: 8px 12px; font-size: 0.6875rem; }
  .kopf .knopf .pf { display: none; }
}

html.menue-offen, html.menue-offen body { overflow: hidden; }
html.menue-offen body { position: fixed; left: 0; right: 0; width: 100%; }

html.menue-offen .kopf { position: fixed; top: 0; left: 0; right: 0; background: var(--schwarz); }
html.menue-offen .kopf.fest { background: var(--schwarz); }

html.menue-offen .kopf.fest .kopf__reihe {
  background: transparent; border-color: transparent; border-radius: 0;
  backdrop-filter: none; -webkit-backdrop-filter: none;
}

html.menue-offen .kopf .knopf--linie { display: none; }

.vollmenue {

  position: fixed; inset: var(--kopf-jetzt, var(--nav-h)) 0 0 0; z-index: 59;
  display: flex; flex-direction: column;
  background: var(--schwarz);
  overflow-y: auto; overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
}
.vollmenue[hidden] { display: none; }

.vollmenue:focus, .vollmenue:focus-visible { outline: none; }

.vollmenue__innen {
  display: flex; flex-direction: column; min-height: 100%;
  padding: clamp(14px, 2.4vh, 26px) var(--rand) clamp(16px, 2.4vh, 26px);
  width: min(100% , var(--mittel)); margin-inline: auto;
}

.vollmenue__haupt { display: flex; flex-direction: column; }
.vollmenue__haupt a {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  font-size: clamp(1.5rem, 1rem + 2.2vw, 2.25rem); font-weight: 700; letter-spacing: -0.025em;
  color: #FFF; text-decoration: none;

  padding-block: clamp(10px, 2.2vh, 26px);
  border-bottom: 1px solid var(--linie-tief);
  transition: color .28s var(--ease), padding-left .28s var(--ease);
}

.vollmenue__haupt a:last-child { border-bottom: 0; }
.vollmenue__haupt a:hover { padding-left: 8px; }

.vollmenue__pf { flex: 0 0 auto; opacity: .38; transition: opacity .28s var(--ease), transform .28s var(--ease); }
.vollmenue__haupt a:hover .vollmenue__pf { opacity: 1; transform: translateX(3px); }

.vollmenue__cta {
  margin-top: clamp(18px, 3vh, 30px);
  align-self: stretch; justify-content: center;
  min-height: 52px; font-size: 0.8125rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .06em; border-radius: 999px;
}
@media (min-width: 560px) { .vollmenue__cta { align-self: flex-start; padding-inline: 30px; } }

.vollmenue__direkt {
  display: grid; grid-template-columns: minmax(0, 1fr); gap: 2px 24px;
  margin-top: clamp(18px, 3vh, 30px);
  padding-top: clamp(14px, 2vh, 22px);
  border-top: 1px solid var(--linie-tief);
}
@media (min-width: 420px) { .vollmenue__direkt { grid-template-columns: repeat(2, minmax(0, 1fr)); } }

.vollmenue__label {
  grid-column: 1 / -1;

  font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: .14em;
  color: var(--auf-tief-muted); margin-bottom: 6px;
}
.vollmenue__weg {
  display: flex; align-items: center; gap: 10px;
  min-height: 44px;
  font-size: 0.9375rem; font-weight: 500; letter-spacing: -0.01em;
  color: var(--auf-tief-muted); text-decoration: none;
  transition: color .28s var(--ease);
}
.vollmenue__weg svg { flex: 0 0 auto; opacity: .7; transition: opacity .28s var(--ease); }
.vollmenue__weg:hover { color: #FFF; }
.vollmenue__weg:hover svg { opacity: 1; }

.vollmenue__fuss {
  margin-top: auto;
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between;
  gap: 8px 20px;
  padding-top: clamp(16px, 2.4vh, 24px);
  border-top: 1px solid var(--linie-tief);

  font-size: 0.75rem; color: var(--auf-tief-muted);
}
.vollmenue__fuss nav { display: flex; gap: 20px; }
.vollmenue__fuss a {
  display: inline-flex; align-items: center; min-height: 32px;
  color: var(--auf-tief-muted); text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: color .28s var(--ease), border-color .28s var(--ease);
}
.vollmenue__fuss a:hover { color: #FFF; border-bottom-color: var(--linie-tief-stark); }

.vollmenue__haupt a, .vollmenue__cta, .vollmenue__direkt, .vollmenue__fuss {
  opacity: 0; transform: translateY(10px);
  animation: menue-auf .34s var(--ease) forwards;
}
.vollmenue__haupt a:nth-child(1) { animation-delay: .03s; }
.vollmenue__haupt a:nth-child(2) { animation-delay: .06s; }
.vollmenue__haupt a:nth-child(3) { animation-delay: .09s; }
.vollmenue__haupt a:nth-child(4) { animation-delay: .12s; }
.vollmenue__cta                  { animation-delay: .15s; }
.vollmenue__direkt               { animation-delay: .18s; }
.vollmenue__fuss                 { animation-delay: .21s; }
@keyframes menue-auf { to { opacity: 1; transform: none; } }

@media (prefers-reduced-motion: reduce) {
  .vollmenue__haupt a, .vollmenue__cta, .vollmenue__direkt, .vollmenue__fuss {
    opacity: 1; transform: none; animation: none;
  }
}

@media (max-height: 560px) {
  .vollmenue__haupt a { font-size: clamp(1.125rem, .8rem + 1.4vw, 1.5rem); padding-block: 8px; }
  .vollmenue__cta { min-height: 44px; margin-top: 14px; }
  .vollmenue__direkt { margin-top: 14px; padding-top: 12px; }
  .vollmenue__weg { min-height: 38px; }
  .vollmenue__fuss { padding-top: 12px; }
}

@media (max-height: 560px) and (min-width: 560px) {
  .vollmenue__innen {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
    grid-template-rows: auto 1fr auto;
    column-gap: clamp(24px, 4vw, 56px);
  }
  .vollmenue__haupt  { grid-column: 1; grid-row: 1 / span 2; align-content: start; }
  .vollmenue__cta    { grid-column: 2; grid-row: 1; margin-top: 0; align-self: start; }
  .vollmenue__direkt { grid-column: 2; grid-row: 2; margin-top: 16px; padding-top: 0; border-top: 0; }

  .vollmenue__direkt { grid-template-columns: minmax(0, 1fr); }
  .vollmenue__fuss   { grid-column: 1 / -1; grid-row: 3; margin-top: 0; }
}

@media (min-width: 1080px) { .vollmenue { display: none !important; } }

.deko { position: absolute; inset: 0; pointer-events: none; z-index: 0; }
.deko span { position: absolute; display: block; }
.deko--tief span { background: rgba(255,255,255,.12); }
.deko--tief span.stark { background: rgba(255,255,255,.3); }
.deko--hell span { background: rgba(10,10,10,.075); }
.deko--hell span.stark { background: rgba(10,10,10,.17); }
.inhalt { position: relative; z-index: 1; }
@media (max-width: 900px) { .deko { display: none; } }

.raster-punkte {
  position: absolute; pointer-events: none; z-index: 0;
  background-image: radial-gradient(circle, currentColor 1px, transparent 1px);
  background-size: 13px 13px; opacity: .3;
}

.hero { padding-block: clamp(26px, 2.8vw, 40px) clamp(30px, 3.2vw, 46px); }

.hero__reihe { display: grid; grid-template-columns: minmax(0,1fr); gap: 34px; align-items: center; }
@media (min-width: 1100px) { .hero__reihe > div { max-width: 56%; } }

.hero__bild {
  position: absolute; inset: 0; z-index: 0;
  background-image: url('assets/hero-hintergrund.webp');
  background-repeat: no-repeat;

  background-size: auto 78%;
  background-position: right center;
}

.hero__schleier {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(90deg, #000 0%, #000 30%, rgba(0,0,0,.86) 46%,
                    rgba(0,0,0,.45) 64%, rgba(0,0,0,.10) 82%, transparent 100%);
}
@media (max-width: 1099px) {
  .hero__bild { background-position: 78% center; }

  .hero__schleier {
    background:
      linear-gradient(180deg, rgba(0,0,0,.55) 0%, rgba(0,0,0,.82) 45%, #000 100%);
  }
}

.hero > .mitte { position: relative; z-index: 2; }
.leistungen-voll > .laufband { position: relative; z-index: 2; }
.hero > .deko { z-index: 2; }

.hero h1 { max-width: 20ch; margin-bottom: 15px; }

.hero .fliess {
  max-width: 50ch;
  font-size: clamp(0.9375rem, 0.85rem + 0.4vw, 1.1875rem);
  line-height: 1.6;
}
.hero .label { font-size: 0.75rem; letter-spacing: .19em; }

.hero__knoepfe { display: flex; flex-wrap: wrap; gap: clamp(10px, 1vw, 13px); margin-top: clamp(20px, 2.2vw, 30px); }
.hero__knoepfe .knopf { font-size: 0.8125rem; padding: clamp(10px, 1vw, 13px) clamp(18px, 1.8vw, 24px); min-height: 42px; }

.vertrauen { margin-top: 32px; }
.vertrauen__titel { font-size: 0.625rem; letter-spacing: .2em; text-transform: uppercase; color: var(--auf-tief-muted); margin-bottom: 12px; }
.vertrauen__liste { display: flex; flex-wrap: wrap; align-items: center; gap: 10px 26px; list-style: none; }
.vertrauen__liste li { font-size: 0.9375rem; font-weight: 700; letter-spacing: .06em; color: #7C7C7C; transition: color .28s var(--ease); }
.vertrauen__liste li:hover { color: #FFF; }

.buehne {
  position: absolute; z-index: 2; top: 0; right: 0;
  width: 58%; height: 100%; pointer-events: none;
}
@media (max-width: 1099px) { .buehne { display: none; } }

.buehne__staub { position: absolute; inset: 0; pointer-events: none; }
.buehne__staub span {
  position: absolute; display: block; background: #FFF; border-radius: 1px;
  animation: treiben 8s ease-in-out infinite;
}
.buehne__staub span:nth-child(3n)   { animation: schweben-a 11s ease-in-out infinite; }
.buehne__staub span:nth-child(3n+1) { animation: schweben-b 14.5s ease-in-out infinite; }
.buehne__staub span:nth-child(5n)   { animation-duration: 17s; }

@keyframes schweben-a {
  0%, 100% { transform: translate3d(0, 0, 0) rotate(0deg); }
  50%      { transform: translate3d(-8px, -11px, 0) rotate(9deg); }
}
@keyframes schweben-b {
  0%, 100% { transform: translate3d(0, 0, 0) rotate(0deg); }
  50%      { transform: translate3d(7px, -14px, 0) rotate(-7deg); }
}

.schwebe {
  position: absolute; left: -2%; bottom: 2%; z-index: 3;
  display: flex; align-items: flex-start; gap: 10px;
  padding: 11px 14px; max-width: 185px;

  background: rgba(11,11,11,.9);
  -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px);
  border: 1px solid var(--linie-tief-stark); border-radius: var(--radius);
}
.schwebe img { width: 19px; height: 19px; object-fit: cover; object-position: left center; flex: 0 0 auto; margin-top: 1px; }
.schwebe p { font-size: 0.75rem; font-weight: 600; line-height: 1.4; color: #FFF; margin: 0; }
.schwebe span { display: block; }
@media (max-width: 1099px) {
  .buehne { aspect-ratio: auto; }
  .buehne__bild, .buehne__ersatz { position: static; width: 100%; height: auto; aspect-ratio: 1/0.78; }
  .buehne__staub { display: none; }
  .schwebe { position: static; margin-top: 18px; max-width: none; }
}

.sekkopf { display: grid; gap: 16px; align-items: end; }
@media (min-width: 900px) { .sekkopf { grid-template-columns: minmax(0,1fr) minmax(0,1fr); gap: 40px; } }
.sekkopf .fliess { max-width: 46ch; }

.sekkopf__satz { margin-top: 12px; max-width: 62ch; }

.dienste { display: grid; gap: 9px; margin-top: 26px; }
@media (min-width: 520px)  { .dienste { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 780px)  { .dienste { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1100px) { .dienste { grid-template-columns: repeat(6, 1fr); } }

.dienst {
  display: flex; flex-direction: column; gap: 8px;
  padding: 13px 12px 15px;
  background: var(--weiss); border: 1px solid var(--linie); border-radius: var(--radius);
  transition: border-color .28s var(--ease), transform .28s var(--ease);
}
.dienst:hover { border-color: var(--linie-stark); transform: translateY(-2px); }
.dienst__kopf { display: flex; align-items: center; gap: 9px; }

.dienst__zeichen { flex: 0 0 auto; width: 26px; height: 26px; display: grid; place-items: center; color: inherit; }
.dienst h3 { font-size: 0.8125rem; font-weight: 700; letter-spacing: -0.01em; line-height: 1.2; }
.dienst p { font-size: 0.6875rem; line-height: 1.45; color: var(--text-muted); margin: 0; }

.dienst--stark { border-top: 2px solid #0A0A0A; }

.slider__reihe { display: grid; grid-template-columns: minmax(0,1fr); gap: 24px; align-items: center; }
@media (min-width: 1000px) { .slider__reihe { grid-template-columns: minmax(0,235px) minmax(0,1fr); gap: 44px; } }
.slider__links .knopf { margin-top: 16px; }

.bahn-huelle { position: relative; }
.bahn {
  display: grid; grid-auto-flow: column; grid-auto-columns: minmax(180px, 1fr);
  gap: 10px; overflow-x: auto; scroll-snap-type: x mandatory;
  scroll-behavior: smooth; padding-bottom: 4px;
  scrollbar-width: none;
}
.bahn::-webkit-scrollbar { display: none; }
.bahn > * { scroll-snap-align: start; }
@media (min-width: 1000px) { .bahn { grid-auto-columns: minmax(0, 1fr); } }

.bahn-pfeil {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 3;
  width: 36px; height: 36px; display: none; place-items: center;
  background: rgba(0,0,0,.7); border: 1px solid var(--linie-tief-stark); border-radius: 50%;
  color: #FFF; cursor: pointer;
  transition: background .28s var(--ease), border-color .28s var(--ease);
}
.hell .bahn-pfeil { background: rgba(255,255,255,.85); border-color: var(--linie-stark); color: #0A0A0A; }
.bahn-pfeil:hover { background: #FFF; color: #000; }
.hell .bahn-pfeil:hover { background: #0A0A0A; color: #FFF; }
.bahn-pfeil--zurueck { left: -18px; }
.bahn-pfeil--vor { right: -18px; }
@media (min-width: 700px) { .bahn-pfeil { display: grid; } }

.punkte { display: flex; gap: 5px; justify-content: center; margin-top: 10px; }
.punkte i { width: 5px; height: 5px; border-radius: 50%; background: var(--linie-tief-stark); display: block; }
.hell .punkte i { background: var(--linie-stark); }
.punkte i.an { background: #FFF; width: 14px; border-radius: 3px; }
.hell .punkte i.an { background: #0A0A0A; }

.projekt { display: flex; flex-direction: column; text-decoration: none; color: inherit; text-align: left; padding: 0; -webkit-appearance: none; appearance: none; background: var(--tief-1); border: 1px solid var(--linie-tief); border-radius: var(--radius); overflow: hidden; transition: border-color .28s var(--ease); }
.projekt:hover { border-color: var(--linie-tief-stark); }
.projekt__bild { position: relative; aspect-ratio: 4/2.75; overflow: hidden; background: var(--tief-2); display: grid; place-items: center; }
.projekt__bild img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.projekt:hover .projekt__bild img { transform: scale(1.06); }
.leerbild { font-size: 0.5625rem; letter-spacing: .12em; text-transform: uppercase; color: #666; text-align: center; padding: 0 10px; line-height: 1.6; }

.projekt__fuss { display: flex; justify-content: space-between; align-items: flex-start; gap: 8px; padding: 8px 9px 9px; min-height: 58px; }
.projekt__name { font-size: 0.75rem; font-weight: 700; letter-spacing: .05em; color: #FFF; }
.projekt__art  { font-size: 0.625rem; color: var(--auf-tief-muted); margin-top: 3px; }
.projekt__pf { flex: 0 0 auto; color: #FFF; transition: transform .28s var(--ease); }
.projekt:hover .projekt__pf { transform: translate(3px,-3px); }

.video { display: block; text-decoration: none; color: inherit; }
.video__bild {
  position: relative; aspect-ratio: 4/2.75; overflow: hidden; border-radius: var(--radius);
  background: linear-gradient(140deg, #2A2A2A 0%, #101010 55%, #1E1E1E 100%);
  display: grid; place-items: center; border: 1px solid var(--linie);
}
.video__bild img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.video:hover .video__bild img { transform: scale(1.05); }
.video__play {
  position: absolute; width: 38px; height: 38px; display: grid; place-items: center;
  background: rgba(255,255,255,.92); border-radius: 50%; color: #000;
  transition: transform .28s var(--ease), background .28s var(--ease);
}
.video:hover .video__play { transform: scale(1.09); background: #FFF; }
.video__dauer {
  position: absolute; top: 8px; right: 9px;
  font-size: 0.5625rem; font-weight: 600; letter-spacing: .05em;
  color: #FFF; background: rgba(0,0,0,.62); padding: 2px 5px; border-radius: 2px;
}
.video__titel { font-size: 0.75rem; font-weight: 700; margin-top: 9px; letter-spacing: -0.005em; }
.video__art   { font-size: 0.625rem; color: var(--text-muted); margin-top: 2px; }

.perf__reihe { display: grid; grid-template-columns: minmax(0,1fr); gap: 26px; align-items: center; }
@media (min-width: 1000px) { .perf__reihe { grid-template-columns: minmax(0,255px) minmax(0,1fr); gap: 26px; } }
.kpis { display: grid; gap: 9px; }
@media (min-width: 560px)  { .kpis { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .kpis { grid-template-columns: repeat(5, 1fr); } }

.kpi {
  background: var(--tief-1); border: 1px solid var(--linie-tief); border-radius: var(--radius);
  padding: 12px 12px 11px; display: flex; flex-direction: column; gap: 6px;
  transition: border-color .28s var(--ease);
}
.kpi:hover { border-color: var(--linie-tief-stark); }
.kpi__titel { font-size: 0.625rem; color: var(--auf-tief-muted); letter-spacing: .02em; }
.kpi__wert  { font-size: 1.25rem; font-weight: 700; letter-spacing: -0.03em; line-height: 1; color: #FFF; white-space: nowrap; }
.kpi__zeit  { font-size: 0.5625rem; color: var(--auf-tief-leise); }
.kpi__grafik { margin-top: auto; padding-top: 8px; }
.kpi__grafik svg { display: block; width: 100%; height: auto; }

.kpi__balken { display: flex; flex-direction: column; gap: 6px; margin-top: 6px; }
.kpi__balken div { display: grid; grid-template-columns: 1fr auto; gap: 6px; align-items: center; font-size: 0.5625rem; color: var(--auf-tief-muted); }
.kpi__balken b { color: #FFF; font-size: 0.5625rem; font-weight: 700; }
.kpi__spur { grid-column: 1/-1; height: 3px; background: rgba(255,255,255,.14); border-radius: 2px; overflow: hidden; }
.kpi__spur i { display: block; height: 100%; background: #FFF; }

.partner { display: flex; flex-wrap: wrap; align-items: center; gap: 12px 26px; margin-top: 22px; padding-top: 16px; border-top: 1px solid var(--linie-tief); }
.partner__titel { font-size: 0.5625rem; letter-spacing: .18em; text-transform: uppercase; color: var(--auf-tief-leise); }
.partner li { list-style: none; font-size: 0.8125rem; font-weight: 600; color: #8E8E8E; transition: color .28s var(--ease); }
.partner li:hover { color: #FFF; }
.partner ul { display: flex; flex-wrap: wrap; gap: 10px 24px; list-style: none; }

.stufen { display: grid; gap: 18px; margin-top: 16px; }
@media (min-width: 1000px) { .stufen { grid-template-columns: repeat(5, 1fr); gap: 0; } }
.stufe { position: relative; padding-inline: 0; }
@media (min-width: 1000px) { .stufe { padding-right: 26px; } }
.stufe__kreis { width: 36px; height: 36px; display: grid; place-items: center; border: 1px solid var(--linie-stark); border-radius: 50%; color: #0A0A0A; margin-bottom: 9px; background: var(--weiss); }
.stufe__nr { font-size: 0.625rem; font-weight: 700; letter-spacing: .12em; color: var(--text-muted); margin-bottom: 4px; }
.stufe h3 { font-size: 0.9375rem; font-weight: 700; margin-bottom: 5px; letter-spacing: -0.012em; }
.stufe p { font-size: 0.75rem; line-height: 1.45; color: var(--text-muted); margin: 0; max-width: 30ch; }

.stufe__pfeil { display: none; position: absolute; top: 17px; right: 8px; color: var(--linie-stark); }
@media (min-width: 1000px) { .stufe:not(:last-child) .stufe__pfeil { display: block; } }
@media (max-width: 999px) {
  .stufe { padding-left: 22px; border-left: 1px solid var(--linie-stark); }
  .stufe__kreis { margin-bottom: 9px; }
}

.zahlen__reihe { display: grid; grid-template-columns: minmax(0,1fr); gap: 26px; align-items: center; }
@media (min-width: 1000px) { .zahlen__reihe { grid-template-columns: minmax(0,235px) minmax(0,1.35fr) minmax(0,0.95fr); gap: 26px; } }
.zahlenwerte { display: grid; gap: 18px; }
@media (min-width: 460px) { .zahlenwerte { grid-template-columns: repeat(2,1fr); } }
@media (min-width: 1000px){ .zahlenwerte { grid-template-columns: repeat(3,1fr); gap: 14px; } }
.zahl b { display: block; font-size: clamp(1.5rem, 1.1rem + 1.4vw, 2rem); font-weight: 700; letter-spacing: -0.035em; line-height: 1; margin-bottom: 5px; white-space: nowrap; color: #FFF; }
.zahl span { font-size: 0.6875rem; color: var(--auf-tief-muted); }

.stimme { background: var(--tief-1); border: 1px solid var(--linie-tief); border-radius: var(--radius); padding: 15px 16px; }
.stimme__zeichen { float: left; font-size: 1.25rem; line-height: .8; color: var(--auf-tief-leise); margin: 0 6px 0 0; }
.stimme blockquote { font-size: 0.75rem; line-height: 1.55; margin: 0 0 12px; color: var(--auf-tief-muted); }
.stimme figcaption { display: flex; align-items: center; gap: 9px; font-size: 0.6875rem; color: var(--auf-tief-muted); }
.stimme__kopf { width: 28px; height: 28px; border-radius: 50%; background: var(--tief-3); border: 1px solid var(--linie-tief); flex: 0 0 auto; display: grid; place-items: center; font-size: 0.5625rem; color: var(--auf-tief-muted); }
.stimme figcaption b { display: block; color: #FFF; font-weight: 600; font-size: 0.75rem; }

.fuss { padding-block: clamp(28px, 2.8vw, 40px) 16px; }
.fuss__oben { display: grid; gap: 26px; }
@media (min-width: 700px)  { .fuss__oben { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1100px) { .fuss__oben { grid-template-columns: minmax(0,1.5fr) repeat(5, minmax(0,1fr)); gap: 22px; } }
.fuss__marke img { height: 21px; width: auto; margin-bottom: 12px; display: block; }
.fuss__marke p { font-size: 0.75rem; line-height: 1.55; max-width: 26ch; margin: 0 0 14px; }

.fuss__sozial { display: flex; gap: 9px; width: fit-content; }
.fuss__sozial a { display: grid; place-items: center; width: 27px; height: 27px; border: 1px solid var(--linie-tief); border-radius: var(--radius); color: var(--auf-tief-muted); transition: color .28s var(--ease), border-color .28s var(--ease); }
.fuss__sozial a:hover { color: #FFF; border-color: var(--linie-tief-stark); }
.fuss h3 { font-size: 0.6875rem; font-weight: 700; color: #FFF; margin-bottom: 10px; }
.fuss ul { list-style: none; display: flex; flex-direction: column; gap: 2px; }
.fuss a, .fuss li { font-size: 0.6875rem; color: var(--auf-tief-muted); text-decoration: none; }

.fuss li { display: flex; align-items: center; min-height: 26px; }

.fuss li a { display: inline-flex; align-items: center; min-height: 26px; min-width: 26px; }
.fuss a { transition: color .28s var(--ease); }
.fuss a:hover { color: #FFF; }
.fuss__unten { display: flex; flex-wrap: wrap; gap: 10px 24px; justify-content: space-between; margin-top: 24px; padding-top: 14px; border-top: 1px solid var(--linie-tief); font-size: 0.6875rem; color: var(--auf-tief-muted); }
.fuss__unten nav { display: flex; gap: 20px; }
.fuss__unten nav a { display: inline-flex; align-items: center; min-height: 26px; }

.js .auf { opacity: 0; transform: translateY(18px); transition: opacity .62s var(--ease), transform .62s var(--ease); }
.js .auf.da { opacity: 1; transform: none; }
.js .auf[data-v='1'] { transition-delay: .07s; }
.js .auf[data-v='2'] { transition-delay: .14s; }
.js .auf[data-v='3'] { transition-delay: .21s; }
.js .auf[data-v='4'] { transition-delay: .28s; }

@keyframes treiben { 0%,100% { transform: translate3d(0,0,0); } 50% { transform: translate3d(0,-5px,0); } }
.buehne__staub span { animation: treiben 8s ease-in-out infinite; }

@media (prefers-reduced-motion: reduce) {
  .js .auf { opacity: 1 !important; transform: none !important; }
  .buehne__staub span { animation: none !important; }
  .buehne { transform: none !important; }
  .bahn { scroll-behavior: auto; }
  .kopf, .kopf__reihe, .kopf__logo img { transition: none !important; }
  .kopf.fest .kopf__logo,
  .kopf.fest .kopf__emblem,
  .kopf.fest .menue li,
  .kopf.fest .knopf { animation: none !important; }

  .laufband__spur { animation: none !important; }
  .plattformen__spur { animation: none !important; }
}

.laufband {

  --lauf-schrift: clamp(48px, 8vw, 128px);
  position: relative;

  height: calc(var(--lauf-schrift) * 0.76);
  overflow: hidden;

  background: transparent;

  margin-top: auto;
}

.hero {
  display: flex; flex-direction: column;
  min-height: calc(100vh - var(--nav-h));
  min-height: calc(100svh - var(--nav-h));
  padding-bottom: 0;
}
.hero > .mitte { flex: 1 1 auto; display: flex; align-items: center; }
.hero > .mitte > .hero__reihe { width: 100%; }

.laufband__spur {
  position: absolute; left: 0; bottom: 0;
  display: flex; width: max-content;
  align-items: flex-end;
  animation: laufband-zug 52s linear infinite;
}

.laufband__satz {
  display: inline-flex; align-items: center; flex: 0 0 auto;
  font-family: var(--font-display);
  font-size: var(--lauf-schrift);
  font-weight: 800;
  line-height: 1;

  margin-bottom: -0.129em;
  letter-spacing: 0.012em;
  white-space: pre;

  color: var(--schwarz);
}

@keyframes laufband-zug {
  from { transform: translate3d(0, 0, 0); }
  to   { transform: translate3d(-50%, 0, 0); }
}

.schnellwahl {
  position: fixed; z-index: 55;
  right: clamp(10px, 1.6vw, 20px); top: 50%; transform: translateY(-50%);
  display: flex; flex-direction: column; gap: 4px; padding: 6px;
  background: rgba(10, 10, 10, 0.72);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px; color: #FFF;
}
.schnellwahl__knopf {
  display: grid; place-items: center; width: 40px; height: 40px;
  border-radius: 50%; color: inherit; text-decoration: none;
  transition: background .28s var(--ease), color .28s var(--ease);
}
.schnellwahl__knopf:hover { background: #FFF; color: #0A0A0A; }

@media (max-width: 720px) {
  .schnellwahl {
    top: auto; bottom: clamp(14px, 2vw, 26px); transform: none;
    flex-direction: row; align-items: center;
    left: clamp(10px, 1.6vw, 20px); right: clamp(10px, 1.6vw, 20px);
  }
}

.hoch {
  position: fixed; z-index: 55;
  right: clamp(10px, 1.6vw, 20px); bottom: clamp(14px, 2vw, 26px);
  width: 44px; height: 44px; display: grid; place-items: center;
  background: rgba(10, 10, 10, 0.72);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: #FFF; border-radius: 50%; cursor: pointer;
  transition: background .28s var(--ease), color .28s var(--ease);
}
.hoch:hover { background: #FFF; color: #0A0A0A; }

.dienste { display: grid; gap: 9px; margin-top: 26px; }
@media (min-width: 520px)  { .dienste { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 780px)  { .dienste { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1100px) { .dienste { grid-template-columns: repeat(6, 1fr); } }

.dienst {
  display: flex; flex-direction: column; gap: 8px;
  padding: 13px 12px 15px;
  background: var(--weiss); border: 1px solid var(--linie); border-radius: var(--radius);
  transition: border-color .28s var(--ease), transform .28s var(--ease);
}
.dienst:hover { border-color: var(--linie-stark); transform: translateY(-2px); }
.dienst__kopf { display: flex; align-items: center; gap: 9px; }

.dienst__zeichen { flex: 0 0 auto; width: 26px; height: 26px; display: grid; place-items: center; color: inherit; }
.dienst h3 { font-size: 0.8125rem; font-weight: 700; letter-spacing: -0.01em; line-height: 1.2; }
.dienst p { font-size: 0.6875rem; line-height: 1.45; color: var(--text-muted); margin: 0; }

.dienst--stark { border-top: 2px solid #0A0A0A; }

.slider__reihe { display: grid; grid-template-columns: minmax(0,1fr); gap: 24px; align-items: center; }
@media (min-width: 1000px) { .slider__reihe { grid-template-columns: minmax(0,235px) minmax(0,1fr); gap: 44px; } }
.slider__links .knopf { margin-top: 16px; }

.bahn-huelle { position: relative; }
.bahn {
  display: grid; grid-auto-flow: column; grid-auto-columns: minmax(180px, 1fr);
  gap: 10px; overflow-x: auto; scroll-snap-type: x mandatory;
  scroll-behavior: smooth; padding-bottom: 4px;
  scrollbar-width: none;
}
.bahn::-webkit-scrollbar { display: none; }
.bahn > * { scroll-snap-align: start; }
@media (min-width: 1000px) { .bahn { grid-auto-columns: minmax(0, 1fr); } }

.bahn-pfeil {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 3;
  width: 36px; height: 36px; display: none; place-items: center;
  background: rgba(0,0,0,.7); border: 1px solid var(--linie-tief-stark); border-radius: 50%;
  color: #FFF; cursor: pointer;
  transition: background .28s var(--ease), border-color .28s var(--ease);
}
.hell .bahn-pfeil { background: rgba(255,255,255,.85); border-color: var(--linie-stark); color: #0A0A0A; }
.bahn-pfeil:hover { background: #FFF; color: #000; }
.hell .bahn-pfeil:hover { background: #0A0A0A; color: #FFF; }
.bahn-pfeil--zurueck { left: -18px; }
.bahn-pfeil--vor { right: -18px; }
@media (min-width: 700px) { .bahn-pfeil { display: grid; } }

.punkte { display: flex; gap: 5px; justify-content: center; margin-top: 10px; }
.punkte i { width: 5px; height: 5px; border-radius: 50%; background: var(--linie-tief-stark); display: block; }
.hell .punkte i { background: var(--linie-stark); }
.punkte i.an { background: #FFF; width: 14px; border-radius: 3px; }
.hell .punkte i.an { background: #0A0A0A; }

.projekt { display: flex; flex-direction: column; text-decoration: none; color: inherit; text-align: left; padding: 0; -webkit-appearance: none; appearance: none; background: var(--tief-1); border: 1px solid var(--linie-tief); border-radius: var(--radius); overflow: hidden; transition: border-color .28s var(--ease); }
.projekt:hover { border-color: var(--linie-tief-stark); }
.projekt__bild { position: relative; aspect-ratio: 4/2.75; overflow: hidden; background: var(--tief-2); display: grid; place-items: center; }
.projekt__bild img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.projekt:hover .projekt__bild img { transform: scale(1.06); }
.leerbild { font-size: 0.5625rem; letter-spacing: .12em; text-transform: uppercase; color: #666; text-align: center; padding: 0 10px; line-height: 1.6; }

.projekt__fuss { display: flex; justify-content: space-between; align-items: flex-start; gap: 8px; padding: 8px 9px 9px; min-height: 58px; }
.projekt__name { font-size: 0.75rem; font-weight: 700; letter-spacing: .05em; color: #FFF; }
.projekt__art  { font-size: 0.625rem; color: var(--auf-tief-muted); margin-top: 3px; }
.projekt__pf { flex: 0 0 auto; color: #FFF; transition: transform .28s var(--ease); }
.projekt:hover .projekt__pf { transform: translate(3px,-3px); }

.video { display: block; text-decoration: none; color: inherit; }
.video__bild {
  position: relative; aspect-ratio: 4/2.75; overflow: hidden; border-radius: var(--radius);
  background: linear-gradient(140deg, #2A2A2A 0%, #101010 55%, #1E1E1E 100%);
  display: grid; place-items: center; border: 1px solid var(--linie);
}
.video__bild img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.video:hover .video__bild img { transform: scale(1.05); }
.video__play {
  position: absolute; width: 38px; height: 38px; display: grid; place-items: center;
  background: rgba(255,255,255,.92); border-radius: 50%; color: #000;
  transition: transform .28s var(--ease), background .28s var(--ease);
}
.video:hover .video__play { transform: scale(1.09); background: #FFF; }
.video__dauer {
  position: absolute; top: 8px; right: 9px;
  font-size: 0.5625rem; font-weight: 600; letter-spacing: .05em;
  color: #FFF; background: rgba(0,0,0,.62); padding: 2px 5px; border-radius: 2px;
}
.video__titel { font-size: 0.75rem; font-weight: 700; margin-top: 9px; letter-spacing: -0.005em; }
.video__art   { font-size: 0.625rem; color: var(--text-muted); margin-top: 2px; }

.perf__reihe { display: grid; grid-template-columns: minmax(0,1fr); gap: 26px; align-items: center; }
@media (min-width: 1000px) { .perf__reihe { grid-template-columns: minmax(0,255px) minmax(0,1fr); gap: 26px; } }
.kpis { display: grid; gap: 9px; }
@media (min-width: 560px)  { .kpis { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .kpis { grid-template-columns: repeat(5, 1fr); } }

.kpi {
  background: var(--tief-1); border: 1px solid var(--linie-tief); border-radius: var(--radius);
  padding: 12px 12px 11px; display: flex; flex-direction: column; gap: 6px;
  transition: border-color .28s var(--ease);
}
.kpi:hover { border-color: var(--linie-tief-stark); }
.kpi__titel { font-size: 0.625rem; color: var(--auf-tief-muted); letter-spacing: .02em; }
.kpi__wert  { font-size: 1.25rem; font-weight: 700; letter-spacing: -0.03em; line-height: 1; color: #FFF; white-space: nowrap; }
.kpi__zeit  { font-size: 0.5625rem; color: var(--auf-tief-leise); }
.kpi__grafik { margin-top: auto; padding-top: 8px; }
.kpi__grafik svg { display: block; width: 100%; height: auto; }

.kpi__balken { display: flex; flex-direction: column; gap: 6px; margin-top: 6px; }
.kpi__balken div { display: grid; grid-template-columns: 1fr auto; gap: 6px; align-items: center; font-size: 0.5625rem; color: var(--auf-tief-muted); }
.kpi__balken b { color: #FFF; font-size: 0.5625rem; font-weight: 700; }
.kpi__spur { grid-column: 1/-1; height: 3px; background: rgba(255,255,255,.14); border-radius: 2px; overflow: hidden; }
.kpi__spur i { display: block; height: 100%; background: #FFF; }

.partner { display: flex; flex-wrap: wrap; align-items: center; gap: 12px 26px; margin-top: 22px; padding-top: 16px; border-top: 1px solid var(--linie-tief); }
.partner__titel { font-size: 0.5625rem; letter-spacing: .18em; text-transform: uppercase; color: var(--auf-tief-leise); }
.partner li { list-style: none; font-size: 0.8125rem; font-weight: 600; color: #8E8E8E; transition: color .28s var(--ease); }
.partner li:hover { color: #FFF; }
.partner ul { display: flex; flex-wrap: wrap; gap: 10px 24px; list-style: none; }

.stufen { display: grid; gap: 18px; margin-top: 16px; }
@media (min-width: 1000px) { .stufen { grid-template-columns: repeat(5, 1fr); gap: 0; } }
.stufe { position: relative; padding-inline: 0; }
@media (min-width: 1000px) { .stufe { padding-right: 26px; } }
.stufe__kreis { width: 36px; height: 36px; display: grid; place-items: center; border: 1px solid var(--linie-stark); border-radius: 50%; color: #0A0A0A; margin-bottom: 9px; background: var(--weiss); }
.stufe__nr { font-size: 0.625rem; font-weight: 700; letter-spacing: .12em; color: var(--text-muted); margin-bottom: 4px; }
.stufe h3 { font-size: 0.9375rem; font-weight: 700; margin-bottom: 5px; letter-spacing: -0.012em; }
.stufe p { font-size: 0.75rem; line-height: 1.45; color: var(--text-muted); margin: 0; max-width: 30ch; }

.stufe__pfeil { display: none; position: absolute; top: 17px; right: 8px; color: var(--linie-stark); }
@media (min-width: 1000px) { .stufe:not(:last-child) .stufe__pfeil { display: block; } }
@media (max-width: 999px) {
  .stufe { padding-left: 22px; border-left: 1px solid var(--linie-stark); }
  .stufe__kreis { margin-bottom: 9px; }
}

.zahlen__reihe { display: grid; grid-template-columns: minmax(0,1fr); gap: 26px; align-items: center; }
@media (min-width: 1000px) { .zahlen__reihe { grid-template-columns: minmax(0,235px) minmax(0,1.35fr) minmax(0,0.95fr); gap: 26px; } }
.zahlenwerte { display: grid; gap: 18px; }
@media (min-width: 460px) { .zahlenwerte { grid-template-columns: repeat(2,1fr); } }
@media (min-width: 1000px){ .zahlenwerte { grid-template-columns: repeat(3,1fr); gap: 14px; } }
.zahl b { display: block; font-size: clamp(1.5rem, 1.1rem + 1.4vw, 2rem); font-weight: 700; letter-spacing: -0.035em; line-height: 1; margin-bottom: 5px; white-space: nowrap; color: #FFF; }
.zahl span { font-size: 0.6875rem; color: var(--auf-tief-muted); }

.stimme { background: var(--tief-1); border: 1px solid var(--linie-tief); border-radius: var(--radius); padding: 15px 16px; }
.stimme__zeichen { float: left; font-size: 1.25rem; line-height: .8; color: var(--auf-tief-leise); margin: 0 6px 0 0; }
.stimme blockquote { font-size: 0.75rem; line-height: 1.55; margin: 0 0 12px; color: var(--auf-tief-muted); }
.stimme figcaption { display: flex; align-items: center; gap: 9px; font-size: 0.6875rem; color: var(--auf-tief-muted); }
.stimme__kopf { width: 28px; height: 28px; border-radius: 50%; background: var(--tief-3); border: 1px solid var(--linie-tief); flex: 0 0 auto; display: grid; place-items: center; font-size: 0.5625rem; color: var(--auf-tief-muted); }
.stimme figcaption b { display: block; color: #FFF; font-weight: 600; font-size: 0.75rem; }

.fuss { padding-block: clamp(28px, 2.8vw, 40px) 16px; }
.fuss__oben { display: grid; gap: 26px; }
@media (min-width: 700px)  { .fuss__oben { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1100px) { .fuss__oben { grid-template-columns: minmax(0,1.5fr) repeat(5, minmax(0,1fr)); gap: 22px; } }
.fuss__marke img { height: 21px; width: auto; margin-bottom: 12px; display: block; }
.fuss__marke p { font-size: 0.75rem; line-height: 1.55; max-width: 26ch; margin: 0 0 14px; }

.fuss__sozial { display: flex; gap: 9px; width: fit-content; }
.fuss__sozial a { display: grid; place-items: center; width: 27px; height: 27px; border: 1px solid var(--linie-tief); border-radius: var(--radius); color: var(--auf-tief-muted); transition: color .28s var(--ease), border-color .28s var(--ease); }
.fuss__sozial a:hover { color: #FFF; border-color: var(--linie-tief-stark); }
.fuss h3 { font-size: 0.6875rem; font-weight: 700; color: #FFF; margin-bottom: 10px; }
.fuss ul { list-style: none; display: flex; flex-direction: column; gap: 2px; }
.fuss a, .fuss li { font-size: 0.6875rem; color: var(--auf-tief-muted); text-decoration: none; }

.fuss li { display: flex; align-items: center; min-height: 26px; }

.fuss li a { display: inline-flex; align-items: center; min-height: 26px; min-width: 26px; }
.fuss a { transition: color .28s var(--ease); }
.fuss a:hover { color: #FFF; }
.fuss__unten { display: flex; flex-wrap: wrap; gap: 10px 24px; justify-content: space-between; margin-top: 24px; padding-top: 14px; border-top: 1px solid var(--linie-tief); font-size: 0.6875rem; color: var(--auf-tief-muted); }
.fuss__unten nav { display: flex; gap: 20px; }
.fuss__unten nav a { display: inline-flex; align-items: center; min-height: 26px; }

.js .auf { opacity: 0; transform: translateY(18px); transition: opacity .62s var(--ease), transform .62s var(--ease); }
.js .auf.da { opacity: 1; transform: none; }
.js .auf[data-v='1'] { transition-delay: .07s; }
.js .auf[data-v='2'] { transition-delay: .14s; }
.js .auf[data-v='3'] { transition-delay: .21s; }
.js .auf[data-v='4'] { transition-delay: .28s; }

@keyframes treiben { 0%,100% { transform: translate3d(0,0,0); } 50% { transform: translate3d(0,-5px,0); } }
.buehne__staub span { animation: treiben 8s ease-in-out infinite; }

@media (prefers-reduced-motion: reduce) {
  .js .auf { opacity: 1 !important; transform: none !important; }
  .buehne__staub span { animation: none !important; }
  .buehne { transform: none !important; }
  .bahn { scroll-behavior: auto; }
  .kopf, .kopf__reihe, .kopf__logo img { transition: none !important; }
  .kopf.fest .kopf__logo,
  .kopf.fest .kopf__emblem,
  .kopf.fest .menue li,
  .kopf.fest .knopf { animation: none !important; }

  .laufband__spur { animation: none !important; }
  .plattformen__spur { animation: none !important; }
}

.laufband {

  --lauf-schrift: clamp(48px, 8vw, 128px);
  position: relative;

  height: calc(var(--lauf-schrift) * 0.76);
  overflow: hidden;

  background: transparent;

  margin-top: auto;
}

.hero {
  display: flex; flex-direction: column;
  min-height: calc(100vh - var(--nav-h));
  min-height: calc(100svh - var(--nav-h));
  padding-bottom: 0;
}
.hero > .mitte { flex: 1 1 auto; display: flex; align-items: center; }
.hero > .mitte > .hero__reihe { width: 100%; }

.laufband__spur {
  position: absolute; left: 0; bottom: 0;
  display: flex; width: max-content;
  align-items: flex-end;
  animation: laufband-zug 52s linear infinite;
}

.laufband__satz {
  display: inline-flex; align-items: center; flex: 0 0 auto;
  font-family: var(--font-display);
  font-size: var(--lauf-schrift);
  font-weight: 800;
  line-height: 1;

  margin-bottom: -0.129em;
  letter-spacing: 0.012em;
  white-space: pre;

  color: var(--schwarz);
}

@keyframes laufband-zug {
  from { transform: translate3d(0, 0, 0); }
  to   { transform: translate3d(-50%, 0, 0); }
}

.schnellwahl, .hoch {
  position: fixed; z-index: 55;
  background: rgba(10, 10, 10, 0.72);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: #FFF;
}
.schnellwahl {
  right: clamp(10px, 1.6vw, 20px); top: 50%; transform: translateY(-50%);
  display: flex; flex-direction: column; gap: 4px;
  padding: 6px; border-radius: 999px;
}
.schnellwahl__knopf {
  display: grid; place-items: center; width: 40px; height: 40px;
  border-radius: 50%; color: inherit; text-decoration: none;
  transition: background .28s var(--ease), color .28s var(--ease);
}
.schnellwahl__knopf:hover { background: #FFF; color: #0A0A0A; }

.schnellwahl__cta {
  display: none;
  align-items: center; justify-content: center;
  min-height: 40px; padding: 0 16px;
  border-radius: 999px;
  background: var(--weiss); color: #000;
  font-size: 0.75rem; font-weight: 600; letter-spacing: -0.01em;
  text-decoration: none; white-space: nowrap;
  transition: background .28s var(--ease);
}
.schnellwahl__cta:hover { background: #D6D6D6; }

.hoch {
  right: clamp(10px, 1.6vw, 20px); bottom: clamp(14px, 2vw, 26px);
  width: 44px; height: 44px; display: grid; place-items: center;
  border-radius: 50%; cursor: pointer;
  transition: background .28s var(--ease), color .28s var(--ease), opacity .28s var(--ease);
}
.hoch:hover { background: #FFF; color: #0A0A0A; }

@media (max-width: 720px) {
  .schnellwahl {
    top: auto; bottom: clamp(14px, 2vw, 26px); transform: none;
    flex-direction: row; align-items: center;
    right: auto; left: clamp(10px, 1.6vw, 20px);
  }

  .schnellwahl__cta { display: inline-flex; }
}

@media (max-width: 620px) {
  .schnellwahl { gap: 2px; }
  .schnellwahl__knopf { width: 36px; height: 36px; }
  .schnellwahl__cta { min-height: 36px; padding: 0 14px; }
}

@media (max-width: 380px) {
  .hoch { bottom: calc(clamp(14px, 2vw, 26px) + 58px); }
}

.leistungen-voll {
  min-height: calc(100vh - var(--nav-h));
  min-height: calc(100svh - var(--nav-h));
  display: flex; flex-direction: column; justify-content: center;
}
.leistungen__buehne { display: grid; gap: 20px; margin-top: 24px; }
@media (min-width: 1000px) {
  .leistungen__buehne { grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr); gap: 30px; align-items: start; }
}

.dienste { display: grid; gap: 8px; }
@media (min-width: 560px) { .dienste { grid-template-columns: repeat(2, 1fr); } }

.dienst {
  display: block; width: 100%; text-align: left; cursor: pointer;
  background: transparent; color: inherit; font: inherit;
  border: 1px solid var(--linie); border-top: 2px solid var(--linie-stark);
  border-radius: var(--radius); padding: 12px 13px;
  transition: background .28s var(--ease), border-color .28s var(--ease);
}

.dienste .dienst:nth-child(1)  { --f: #FFFFFF; }
.dienste .dienst:nth-child(1)[aria-selected='true'] {
  color: var(--text); border-color: #0A0A0A; border-top-color: #0A0A0A;
}
.dienste .dienst:nth-child(1)[aria-selected='true'] p { color: var(--text-muted); }

.dienste .dienst:nth-child(2)  { --f: #BA0030; }
.dienste .dienst:nth-child(3)  { --f: #B50068; }
.dienste .dienst:nth-child(4)  { --f: #B00083; }
.dienste .dienst:nth-child(5)  { --f: #A8009B; }
.dienste .dienst:nth-child(6)  { --f: #9700C9; }
.dienste .dienst:nth-child(7)  { --f: #8600E8; }
.dienste .dienst:nth-child(8)  { --f: #662BFF; }
.dienste .dienst:nth-child(9)  { --f: #0064A8; }
.dienste .dienst:nth-child(10) { --f: #B52D00; }

.dienst:hover { background: rgba(10,10,10,.04); border-top-color: var(--f); }
.dienst[aria-selected='true'] {
  background: var(--f); color: #FFF;
  border-color: var(--f); border-top-color: var(--f);
}
.dienst[aria-selected='true'] p { color: rgba(255,255,255,.80); }

.leistungen__vorschau { position: relative; }
.lv { display: grid; gap: 16px; }
.lv[hidden] { display: none; }
@media (min-width: 1000px) { .lv { grid-template-rows: auto 1fr; } }
.lv__titel { font-size: 1.125rem; font-weight: 700; letter-spacing: -0.02em; margin-bottom: 7px; }
.lv__satz  { font-size: 0.875rem; line-height: 1.6; color: var(--text-muted); margin: 0 0 12px; }
.lv__liste { list-style: none; padding: 0; margin: 0; display: grid; gap: 6px; }
.lv__liste li {
  position: relative; padding-left: 17px;
  font-size: 0.8125rem; line-height: 1.5; color: var(--text);
}
.lv__liste li::before {
  content: ''; position: absolute; left: 0; top: .55em;
  width: 7px; height: 7px; background: #0A0A0A;
}

.lv__bild { position: relative; display: block; overflow: hidden; border: 1px solid var(--linie); border-radius: var(--radius); text-decoration: none; }
.lv__bild img { display: block; width: 100%; height: auto; transition: transform .6s var(--ease); }
.lv__bild:hover img { transform: scale(1.03); }

.lv__bild--symbol { cursor: default; }
.lv__bild--symbol:hover img { transform: none; }

.lv__bild--symbol {
  border: 0; border-radius: 0; background: transparent; overflow: visible;
}
.lv__bu {
  position: absolute; left: 0; right: 0; bottom: 0;
  display: flex; align-items: center; justify-content: space-between; gap: 8px;
  padding: 9px 11px; background: rgba(10,10,10,.86); color: #FFF;
  font-size: 0.6875rem; font-weight: 600;
}

.lv__leer {
  min-height: 190px; border: 1px solid var(--linie); border-radius: var(--radius);
  background-color: var(--hell-2);
  background-image:
    linear-gradient(rgba(10,10,10,.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(10,10,10,.055) 1px, transparent 1px);
  background-size: 15px 15px;
}
.lv__hinweis { font-size: 0.6875rem; color: var(--text-muted); margin: 8px 0 0; }

.projekte-voll {
  min-height: calc(100vh - var(--nav-h));
  min-height: calc(100svh - var(--nav-h));
  display: flex; flex-direction: column; justify-content: center;
}
.projektreihe { margin-top: 20px; }
.projektreihe:first-of-type { margin-top: 10px; }
.projektreihe__kopf {
  display: flex; align-items: baseline; gap: 14px; flex-wrap: wrap;
  margin-bottom: 9px;
}
.projektreihe__titel {
  font-size: 0.8125rem; font-weight: 700; letter-spacing: .08em;
  text-transform: uppercase; color: #FFF; margin: 0;
}
.projektreihe__hinweis { font-size: 0.6875rem; color: var(--auf-tief-muted); margin: 0; }

.reihe__leer {
  display: grid; place-items: center; min-height: 118px;
  border: 1px solid var(--linie-tief); border-radius: var(--radius);
  background-color: var(--tief-1);
  background-image:
    linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 15px 15px;
  font-size: 0.6875rem; letter-spacing: .1em; text-transform: uppercase;
  color: var(--auf-tief-leise);
}

.projekte-voll .projekt__bild { aspect-ratio: auto; height: clamp(104px, 15vh, 158px); }
.projekte-voll .bahn { grid-auto-columns: minmax(200px, 260px); justify-content: start; }
.projekte-voll .reihe__leer { min-height: clamp(104px, 15vh, 158px); }

.vertrauen__titel--stark {
  font-weight: 700;
  font-size: 0.8125rem;
  letter-spacing: .1em;
  color: var(--auf-tief);
}

.plattformen { margin-top: clamp(20px, 2.4vw, 32px); max-width: 72%; }
.plattformen__fenster {
  position: relative; overflow: hidden;

  -webkit-mask-image: linear-gradient(90deg, #000 0, #000 84%, transparent 100%);
          mask-image: linear-gradient(90deg, #000 0, #000 84%, transparent 100%);
}
.plattformen__spur {
  display: flex; width: max-content;
  animation: laufband-zug 38s linear infinite;
}
.plattformen__satz { display: flex; align-items: center; flex: 0 0 auto; }
.pf-el {
  display: inline-flex; align-items: center; gap: 9px; flex: 0 0 auto;
  font-size: 0.875rem; font-weight: 600; letter-spacing: .01em;
  color: #9A9A9A;
  padding-right: 32px; white-space: nowrap;
}

.pf-el img { display: block; width: 22px; height: 22px; object-fit: contain; flex: 0 0 auto; }

.nur-vorlese {
  position: absolute; width: 1px; height: 1px; overflow: hidden;
  clip-path: inset(50%); white-space: nowrap;
}

.video__bild::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 14px 14px;
  -webkit-mask-image: radial-gradient(125% 95% at 28% 18%, #000 0%, transparent 74%);
          mask-image: radial-gradient(125% 95% at 28% 18%, #000 0%, transparent 74%);
}
.video__zeichen { position: relative; color: rgba(255,255,255,.55); display: grid; place-items: center;
  transition: color .28s var(--ease), transform .28s var(--ease); }
.video__zeichen svg { width: 26px; height: 26px; }
.video:hover .video__zeichen { color: #FFF; transform: translateY(-2px); }

.methode {
  margin-top: 26px; padding-top: 15px; border-top: 1px solid var(--linie);
  font-size: 0.75rem; line-height: 1.6; color: var(--text-muted);
  max-width: 78ch;
}
.methode b { color: var(--text); font-weight: 700; }

.kpi__satz {
  font-size: 0.6875rem; line-height: 1.55; color: var(--auf-tief-muted);
  margin: 6px 0 0;
}

.stimme__titel { display: block; font-size: 0.75rem; font-weight: 700; color: #FFF; margin-bottom: 7px; }
.stimme p { font-size: 0.75rem; line-height: 1.55; margin: 0; color: var(--auf-tief-muted); }

.bahn-huelle[data-voll='ja'] .bahn-pfeil,
.bahn-huelle[data-voll='ja'] .punkte { display: none; }

@media (max-width: 1079px) {
  .kopf__reihe, .kopf.fest .kopf__reihe { position: relative; }

  .kopf__logo, .kopf.fest .kopf__logo {
    order: 1; position: static;
    left: auto; right: auto; top: auto; bottom: auto;
    margin: 0 auto 0 0;
    width: auto; height: auto;
    justify-content: flex-start;
  }

  .kopf .knopf, .kopf.fest .knopf { order: 2; margin: 0 0 0 10px; }
  .burger, .kopf.fest .burger      { order: 3; margin: 0 0 0 12px; }

  .nav-teil, .kopf.fest .nav-teil { display: none; }
}

@media (max-width: 720px) {

  .kopf .knopf,
  .kopf.fest .knopf { display: none; }

  .kopf__wortmarke,
  .kopf.fest .kopf__wortmarke { display: block; }
  .kopf__emblem,
  .kopf.fest .kopf__emblem { display: none; }

  .kopf.fest .kopf__logo,
  .kopf.fest .kopf__wortmarke,
  .kopf.fest .kopf__emblem,
  .kopf.fest .menue li { animation: none !important; }
}

.leistungen__spalte { display: grid; gap: 0; align-content: start; }
.leistungen-voll .leistungen__buehne { align-items: start; }
.leistungen-voll .sekkopf { margin-bottom: 0; }

.pixelbau {
  position: absolute; inset: 0; display: none;
  width: 100%; height: 100%; pointer-events: none;
}

.leistungen__vorschau { display: grid; }
.leistungen__vorschau > .lv { grid-area: 1 / 1; }

.leistungen__vorschau > .lv--aus { visibility: hidden; }

.leistungen-voll::before {
  content: ''; position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background-image: var(--leistung-bild, none);
  background-repeat: no-repeat;
  background-position: center;
  background-size: min(96%, 1250px) auto;
  opacity: .06;
  transition: opacity .5s var(--ease);
}

.lv__titel {
  font-size: clamp(1.25rem, 1rem + 0.8vw, 1.5rem);
  letter-spacing: -0.025em; line-height: 1.15; margin-bottom: 10px;
}
.lv__satz { font-size: 0.9375rem; line-height: 1.65; margin-bottom: 18px; }

.lv__liste { gap: 0; }
.lv__liste li {
  padding-left: 26px; padding-block: 9px;
  font-size: 0.875rem; line-height: 1.55;
  border-bottom: 1px solid var(--linie);
}
.lv__liste li:last-child { border-bottom: 0; }

.lv__liste li::before {
  content: ''; position: absolute; left: 0; top: 1.05em;
  width: 7px; height: 7px; background: #0A0A0A;
}
.lv__liste li::after {
  content: ''; position: absolute; left: 10px; top: calc(1.05em + 4px);
  width: 4px; height: 4px; background: #0A0A0A; opacity: .32;
}

@keyframes lv-einrasten {
  from { opacity: 0; transform: translateY(9px); }
  to   { opacity: 1; transform: none; }
}
.lv--zeigt .lv__titel,
.lv--zeigt .lv__satz,
.lv--zeigt .lv__liste li {
  animation: lv-einrasten .42s steps(5, end) both;
}
.lv--zeigt .lv__satz              { animation-delay: .06s; }
.lv--zeigt .lv__liste li:nth-child(1) { animation-delay: .12s; }
.lv--zeigt .lv__liste li:nth-child(2) { animation-delay: .17s; }
.lv--zeigt .lv__liste li:nth-child(3) { animation-delay: .22s; }
.lv--zeigt .lv__liste li:nth-child(4) { animation-delay: .27s; }

@media (prefers-reduced-motion: reduce) {
  .lv--zeigt .lv__titel,
  .lv--zeigt .lv__satz,
  .lv--zeigt .lv__liste li { animation: none !important; }
  .leistungen-voll::before { transition: none !important; }
}

.projekte-voll { padding-block: clamp(18px, 2vw, 30px); }
.projekte-voll .projektreihe { margin-top: 14px; }
.projekte-voll .projektreihe:first-of-type { margin-top: 6px; }
.projekte-voll .projektreihe__kopf { gap: 10px; }

.lv__liste li { font-weight: 600; }

.lv--zeigt .lv__titel,
.lv--zeigt .lv__satz,
.lv--zeigt .lv__liste li {
  animation-duration: .5s;
  animation-timing-function: cubic-bezier(.22, .61, .36, 1);
}

.lv__bild--symbol { align-self: start; }
.pixelbau { width: auto; height: auto; }

.visuals__buehne { display: grid; gap: 26px; }
@media (min-width: 1000px) {
  .visuals__buehne {

    grid-template-columns: minmax(0, 1fr) clamp(300px, calc(41.6svh + 92px), 520px);
    align-items: stretch; gap: 34px;
  }
}
.visuals__links { display: flex; flex-direction: column; justify-content: center; min-width: 0; }

.visuals__handy { display: flex; align-items: center; justify-content: center; min-height: 0; }

.projekte-voll .projekt__bild img {
  filter: grayscale(1) contrast(1.04);
  transition: transform .6s var(--ease), filter .55s var(--ease);
}
.projekte-voll .projekt:hover .projekt__bild img,
.projekte-voll .projekt:focus-visible .projekt__bild img { filter: grayscale(0) contrast(1); }
@media (prefers-reduced-motion: reduce) {
  .projekte-voll .projekt__bild img { transition: none; }
}

.menue a[aria-current] {
  color: var(--auf-tief);
  font-weight: 600;
}
.menue a[aria-current] { position: relative; }
.menue a[aria-current]::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: -6px;
  height: 2px; background: currentColor; border-radius: 2px;
}

.vollmenue__haupt a[aria-current] {
  color: var(--auf-tief);
  text-decoration: underline; text-underline-offset: 6px; text-decoration-thickness: 2px;
}
.vollmenue__haupt a[aria-current] .vollmenue__pf { opacity: 1; }

.lupe {

  border: 0; padding: 0; background: transparent;
  margin: auto;
  width: 100vw; height: 100svh;
  max-width: none; max-height: none;
  color: #FFF;

}

.lupe[open] {
  display: grid; grid-template-rows: minmax(0, 1fr) auto;
  place-items: stretch;
}

.lupe::backdrop { background: rgba(0, 0, 0, .93); -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px); }

.lupe__buehne {
  position: relative;

  display: grid;
  grid-template-rows: minmax(0, 1fr);
  grid-template-columns: minmax(0, 1fr);
  place-items: center;
  min-height: 0; min-width: 0;
  padding: clamp(46px, 6vh, 78px) clamp(12px, 5vw, 90px) 6px;
  overflow: hidden;
}

.lupe__bild, .lupe__film {

  display: block; width: 100%; height: 100%;
  object-fit: contain; object-position: center;
}
.lupe__fuss {
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  padding: 10px clamp(14px, 4vw, 40px) clamp(16px, 3vh, 28px); flex-wrap: wrap;
}
.lupe__titel { font-weight: 600; }
.lupe__zaehler { color: var(--auf-tief-muted); font-size: .8125rem; letter-spacing: .06em; }
.lupe__art { color: var(--auf-tief-muted); font-size: .875rem; }
.lupe__zu {
  position: fixed; top: clamp(12px, 2.4vh, 26px); right: clamp(12px, 2vw, 28px); z-index: 4;
  width: 42px; height: 42px; display: grid; place-items: center;
  background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.28);
  border-radius: 50%; color: #FFF; cursor: pointer;
}
.lupe__zu:hover { background: #FFF; color: #000; }
.lupe__pfeil {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 3;
  width: 46px; height: 46px; display: grid; place-items: center;
  background: rgba(0,0,0,.55); border: 1px solid rgba(255,255,255,.28);
  border-radius: 50%; color: #FFF; cursor: pointer;
  transition: background .28s var(--ease);
}
.lupe__pfeil:hover { background: #FFF; color: #000; }
.lupe__pfeil--zurueck { left: clamp(8px, 2vw, 26px); }
.lupe__pfeil--vor { right: clamp(8px, 2vw, 26px); }

.lupe__buehne, .lupe__pfeil, .lupe__zu {
  -webkit-user-select: none; user-select: none;
}

.lupe .knopf--linie { color: #FFF; border-color: rgba(255,255,255,.34); }
.lupe .knopf--linie:hover { border-color: #FFF; background: rgba(255,255,255,.08); }

.projekt:hover .projekt__play { background: rgba(0,0,0,.8); transform: translate(-50%,-50%) scale(1.08); }

.projekt--platzhalter { cursor: default; }
.projekt--platzhalter:hover { border-color: var(--linie-tief); }
.projekt--platzhalter .projekt__bild {
  display: grid; place-items: center; gap: 8px; align-content: center;
  background:
    repeating-linear-gradient(45deg, rgba(255,255,255,.020) 0 9px, rgba(255,255,255,0) 9px 18px),
    var(--tief-2);
}
.platzhalter__zeichen { color: #6E6E6E; line-height: 0; }
.platzhalter__wort {
  font-size: 0.5625rem; letter-spacing: .14em; text-transform: uppercase; color: #6E6E6E;
}

.projekte-voll .sekkopf { display: block; }
.projekte-voll .sekkopf > div { max-width: none; }

.projekte-voll .sekkopf__satz {
  max-width: 70ch;
  margin-bottom: clamp(16px, 1.8vw, 30px);
}

.t-sektion--eine-zeile { text-wrap: balance; }

.reihenband {
  position: relative; overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 5%, #000 95%, transparent 100%);
          mask-image: linear-gradient(90deg, transparent 0, #000 5%, #000 95%, transparent 100%);
}

.reihenband__spur {
  display: flex; width: max-content;
  animation: reihenband-zug var(--lauf, 52s) linear infinite;

  animation-delay: var(--phase, 0s);
}
.reihenband--rechtslauf .reihenband__spur { animation-direction: reverse; }

.reihenband__spur > .projekt { flex: 0 0 260px; margin-right: 10px; }
.reihenband__spur > .reihe__leer { flex: 0 0 auto; width: 260px; margin-right: 10px; }

.reihenband--leer .reihenband__spur { width: 100%; animation: none; }
.reihenband--leer .reihe__leer {
  flex: 1 1 auto; width: auto; margin-right: 0;
  min-height: calc(clamp(104px, 15vh, 158px) + 58px);
  display: grid; place-items: center;
}

.reihenband:hover .reihenband__spur,
.reihenband:has(:focus-visible) .reihenband__spur { animation-play-state: paused; }

@keyframes reihenband-zug {
  from { transform: translate3d(0, 0, 0); }
  to   { transform: translate3d(-50%, 0, 0); }
}

@media (prefers-reduced-motion: reduce) {
  .reihenband__spur { animation: none !important; }
  .reihenband { overflow-x: auto; }
}

.filmfeld {
  position: relative; z-index: 1;
  transform-style: preserve-3d;

  width: min(100%, calc(74svh * 9 / 16));
  aspect-ratio: 9 / 16;

  transform: perspective(2200px) rotateY(-12deg);
  transform-origin: 50% 50%;
}

.filmsockel {

  position: absolute; left: 50%; top: 50%;
  width: 126%; height: 112%;
  transform: translate(-50%, -50%);
  pointer-events: none; z-index: -1;
  border-radius: clamp(18px, 2vw, 34px);
  background-color: rgba(255, 255, 255, .028);
  background-image:
    conic-gradient(from 0deg at 0 0, rgba(255,255,255,.10) 0 25%, rgba(255,255,255,0) 0 100%),
    conic-gradient(from 0deg at 0 0, rgba(255,255,255,.07) 0 25%, rgba(255,255,255,0) 0 100%),
    conic-gradient(from 0deg at 0 0, rgba(255,255,255,.05) 0 25%, rgba(255,255,255,0) 0 100%);
  background-size: 13px 13px, 39px 39px, 91px 91px;
  background-position: 0 0, 6px 6px, 17px 17px;

  -webkit-mask-image: radial-gradient(72% 62% at 50% 50%, #000 0 52%, rgba(0,0,0,.6) 76%, transparent 100%);
          mask-image: radial-gradient(72% 62% at 50% 50%, #000 0 52%, rgba(0,0,0,.6) 76%, transparent 100%);
}

.filmsockel::before,
.filmsockel::after {
  content: ''; position: absolute; display: block;
  background-image:
    conic-gradient(from 0deg at 0 0, rgba(255,255,255,.30) 0 25%, rgba(255,255,255,0) 0 100%);
  background-size: 13px 13px;
}
.filmsockel::before { left: 0; top: 8%; width: 12%; height: 84%;
  -webkit-mask-image: linear-gradient(90deg, #000 0, transparent 100%);
          mask-image: linear-gradient(90deg, #000 0, transparent 100%); }
.filmsockel::after  { right: 0; top: 8%; width: 12%; height: 84%;
  -webkit-mask-image: linear-gradient(270deg, #000 0, transparent 100%);
          mask-image: linear-gradient(270deg, #000 0, transparent 100%); }

.filmfeld::before {
  content: ''; position: absolute; inset: -22% -34%; z-index: -2;
  pointer-events: none;
  background:
    radial-gradient(48% 42% at 50% 44%, rgba(255,255,255,.13) 0, rgba(255,255,255,.045) 46%, rgba(255,255,255,0) 76%);
}

.filmfeld::after {
  content: ''; position: absolute; left: 6%; right: 6%; bottom: -7%;
  height: 7%; z-index: -1; pointer-events: none;
  border-radius: 50%;
  background: radial-gradient(50% 100% at 50% 0, rgba(255,255,255,.16) 0, rgba(255,255,255,0) 78%);
  filter: blur(6px);
}

.schaufilm {
  position: relative; z-index: 1;
  display: block; width: 100%; height: 100%;
  object-fit: cover;
  border-radius: clamp(16px, 1.8vw, 30px);
  background:
    repeating-linear-gradient(45deg, #131313 0 12px, #171717 12px 24px);
  box-shadow: 30px 30px 60px rgba(0, 0, 0, .60), 0 4px 12px rgba(0, 0, 0, .45);
}

.visuals__handy { position: relative; padding-inline: clamp(6px, 1vw, 18px); }

@media (min-width: 1000px) {
  .visuals__handy { margin-block: calc(-1 * clamp(18px, 2vw, 30px)); }
}

}

@media (max-width: 999px) {
  .filmfeld {
    width: auto; height: 62vh; max-height: 560px;

    transform: perspective(1800px) rotateY(-7deg);
  }
  .filmsockel { width: 118%; height: 108%; }
}

.projekte-voll {
  min-height: 100vh;
  min-height: 100svh;
  scroll-margin-top: 0;
}

@media (min-width: 1000px) {

  .visuals__handy { padding-right: clamp(56px, 4.2vw, 62px); justify-content: flex-end; }
}

.kopf.fest { padding-block: 15px; }

.leistungen-voll {
  min-height: 100vh;
  min-height: 100svh;
  scroll-margin-top: 0;

  justify-content: flex-start;

  padding-block: 47px 0;
}
.lv__bild--symbol {
  max-width: min(100%, calc(42svh * 1.5));
  margin-inline: auto;
}

.leistungen-voll .sekkopf { display: block; }
.leistungen-voll .sekkopf > div { max-width: none; }
.leistungen-voll .sekkopf .fliess { max-width: none; }

.leistungen-voll .t-sektion { text-wrap: balance; }

:root {
  --sicher-oben:   env(safe-area-inset-top,    0px);
  --sicher-rechts: env(safe-area-inset-right,  0px);
  --sicher-unten:  env(safe-area-inset-bottom, 0px);
  --sicher-links:  env(safe-area-inset-left,   0px);
}

.kopf {
  padding-left: max(var(--sp-4, 16px), var(--sicher-links));
  padding-right: max(var(--sp-4, 16px), var(--sicher-rechts));
}

.schnellwahl { right: calc(clamp(10px, 1.6vw, 20px) + var(--sicher-rechts)); }

@media (max-width: 720px) {
  .schnellwahl {
    bottom: calc(clamp(14px, 2vw, 26px) + var(--sicher-unten));
    left:  calc(clamp(10px, 1.6vw, 20px) + var(--sicher-links));

    right: auto;
  }
}

.vollmenue__innen {
  padding-left:   max(var(--rand), var(--sicher-links));
  padding-right:  max(var(--rand), var(--sicher-rechts));
  padding-bottom: max(clamp(16px, 2.4vh, 26px), var(--sicher-unten));
}

.fuss {
  padding-bottom: max(
    var(--sp-6, 32px),
    calc(var(--sicher-unten) + 16px),
    calc(clamp(14px, 2vw, 26px) + var(--sicher-unten) + 44px + 14px)
  );
}

.hoch {
  right: calc(clamp(10px, 1.6vw, 20px) + var(--sicher-rechts));
  bottom: calc(clamp(14px, 2vw, 26px) + var(--sicher-unten));
}

@media (max-height: 700px) and (orientation: landscape) {

  .hero, .leistungen-voll, .projekte-voll, .performance-voll { min-height: 0; }
  .hero { padding-block: clamp(14px, 3.5vh, 30px); }
  .leistungen-voll { padding-block: clamp(14px, 3.5vh, 30px) 0; }
  .projekte-voll { padding-block: clamp(14px, 3vh, 26px); }

  .performance-voll { padding-block: clamp(14px, 3vh, 26px); }

  .t-hero { font-size: clamp(1.5rem, 3.4vw + .4rem, 2.6rem); line-height: 1.06; }
  .hero .fliess { font-size: 0.9375rem; }
  .plattformen { margin-top: clamp(10px, 1.6vh, 18px); }

  .laufband { --lauf-schrift: clamp(34px, 8vh, 74px); }

  .visuals__buehne { grid-template-columns: minmax(0, 1fr); }
  .visuals__handy { display: none; }

  .vollmenue { overflow-y: auto; }
}

@media (max-height: 560px) {
  .hero, .leistungen-voll, .projekte-voll, .performance-voll { min-height: 0; }
}

.leerbild, .kpi__zeit, .kpi__balken div, .kpi__balken b, .partner__titel,
.stimme__kopf, .platzhalter__wort, .video__zeit { font-size: 0.625rem; }

@media (max-width: 1024px), (pointer: coarse) {
  .label, .vertrauen__titel, .projekt__art, .kpi__titel, .stufe__nr,
  .video__art, .leerbild, .kpi__zeit, .partner__titel, .platzhalter__wort,
  .kpi__balken div, .kpi__balken b, .stimme__kopf,
  .dienst p, .zahl span, .stimme figcaption, .fuss h3, .fuss a, .fuss li,
  .fuss__unten, .projektreihe__hinweis, .kpi__satz, .video__titel {
    font-size: 0.75rem;
  }

  .label, .vertrauen__titel, .partner__titel { letter-spacing: .14em; }
}

.reihenband__spur > .reihe__leer { width: min(260px, 72vw); }

h1, h2, h3, .projekt__name, .lv__titel, .dienst h3 { overflow-wrap: break-word; }

.anfrage-voll {
  min-height: 100vh;
  min-height: 100svh;
  scroll-margin-top: 0;

  padding-block-start: 47px;
}

.anfrage__buehne { display: grid; gap: 28px; }
@media (min-width: 1000px) {
  .anfrage__buehne { grid-template-columns: minmax(0, 1.25fr) minmax(0, 0.85fr); gap: 44px; }

  .anfrage__rechts { margin-top: 46px; }
}
.anfrage__links { min-width: 0; }
.anfrage__links .t-sektion { margin: 6px 0 22px; }

.anfrage__form { display: grid; grid-template-columns: 1fr 1fr; gap: 18px 14px; }
.feld { position: relative; grid-column: 1 / -1; min-width: 0; }
.feld--halb { grid-column: auto; }
.feld--voll { grid-column: 1 / -1; display: flex; flex-wrap: wrap; align-items: center; gap: 14px; }

.feld__chip {
  position: absolute; top: -7px; left: 11px; z-index: 1;
  padding: 1px 7px; border-radius: 999px;
  background: var(--hell-1); color: var(--text-muted);
  font-size: 0.625rem; letter-spacing: .04em; white-space: nowrap;
  pointer-events: none;
}

.feld__eingabe {
  width: 100%; padding: 15px 13px 12px;
  background: var(--weiss); color: var(--text);
  border: 1px solid var(--linie); border-radius: var(--radius);
  transition: border-color .22s var(--ease), background .22s var(--ease);
}
.feld__eingabe::placeholder { color: var(--text-muted); opacity: .85; }
.feld__eingabe:hover { border-color: var(--linie-stark); }
.feld__eingabe:focus-visible { border-color: var(--text); background: var(--weiss); }
.feld__fliess { resize: vertical; min-height: 118px; line-height: 1.5; }

.feld__auswahl {
  -webkit-appearance: none; appearance: none; cursor: pointer;
  padding-right: 38px;
  background-image: linear-gradient(45deg, transparent 50%, #0A0A0A 50%),
                    linear-gradient(135deg, #0A0A0A 50%, transparent 50%);
  background-position: calc(100% - 20px) center, calc(100% - 14px) center;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
}

.feld__mitvorwahl { display: flex; align-items: stretch; }

.feld__vorwahl {
  flex: 0 0 auto;
  -webkit-appearance: none; appearance: none; cursor: pointer;
  padding: 15px 27px 12px 12px; color: var(--text);
  background-color: var(--hell-2);
  border: 1px solid var(--linie); border-right: 0;
  border-radius: var(--radius) 0 0 var(--radius);
  font-variant-numeric: tabular-nums;
  background-image: linear-gradient(45deg, transparent 50%, #0A0A0A 50%),
                    linear-gradient(135deg, #0A0A0A 50%, transparent 50%);
  background-position: calc(100% - 15px) center, calc(100% - 11px) center;
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
  transition: border-color .22s var(--ease), background-color .22s var(--ease);
}
.feld__vorwahl:hover { border-color: var(--linie-stark); background-color: var(--hell-1); }
.feld__vorwahl:focus-visible { border-color: var(--text); }

.feld__vorwahl:focus-visible { position: relative; z-index: 1; }
.feld__mitvorwahl .feld__eingabe { border-radius: 0 var(--radius) var(--radius) 0; }

.feld--fehler .feld__vorwahl { border-color: #B3261E; }

.anfrage__falle {
  position: absolute; left: -9999px; top: 0;
  width: 1px; height: 0; overflow: hidden;
}

.feld--haken { display: flex; align-items: flex-start; gap: 10px; }
.feld--haken input { flex: 0 0 auto; width: 16px; height: 16px; margin-top: 2px; accent-color: #0A0A0A; }
.feld--haken label { font-size: 0.75rem; color: var(--text-muted); line-height: 1.5; }
.anfrage__rechtslink { color: var(--text); text-decoration: underline; text-underline-offset: 2px; }

.feld--fehler .feld__eingabe { border-color: #B3261E; }
.feld--fehler .feld__chip { color: #B3261E; }
.feld__fehler { margin: 5px 0 0; font-size: 0.625rem; color: #B3261E; }

.anfrage__meldung { margin: 0; font-size: 0.75rem; color: var(--text-muted); }
.anfrage__meldung--warnung { color: #8A5A00; }

.anfrage__meldung--erfolg { color: #1B6B3A; }

.anfrage__direkt { margin-top: 26px; display: flex; flex-wrap: wrap; align-items: center; gap: 12px; }
.anfrage__direkt-satz { margin: 0; font-size: 0.75rem; color: var(--text-muted); }

.anfrage__rechts { display: grid; gap: 14px; align-content: start; }
.anfrage__karte {
  padding: 22px 22px 24px;
  background: var(--weiss); border: 1px solid var(--linie);
  border-radius: var(--radius);
}
.anfrage__karte--knapp { padding-bottom: 20px; }
.anfrage__karte-titel {
  margin: 0 0 12px; font-size: 0.75rem; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase; color: var(--text);
}
.anfrage__schritte { margin: 0; padding-left: 20px; display: grid; gap: 11px; }
.anfrage__schritte li { font-size: 0.8125rem; color: var(--text-muted); line-height: 1.55; }
.anfrage__schritte b { color: var(--text); font-weight: 600; }
.anfrage__wege { margin: 0; padding: 0; list-style: none; display: grid; gap: 7px; }
.anfrage__wege li { font-size: 0.8125rem; color: var(--text-muted); }
.anfrage__wege a { color: var(--text); }

@media (max-width: 559px) {
  .anfrage__form { grid-template-columns: 1fr; }
  .feld--halb { grid-column: 1 / -1; }
}

.projekt:hover .projekt__pf--play { transform: translateX(3px) scale(1.12); }

@media (min-width: 1000px) {
  .kpis { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
.kpi--bild { display: flex; flex-direction: column; }

.kpi__figur {
  position: relative; margin: 0 0 14px;
  padding: 14px 14px 12px;
  background: var(--tief-2); border: 1px solid var(--linie-tief);
  border-radius: var(--radius);
  color: #FFF;
}
.kpi__figur svg { display: block; width: 100%; height: auto; }

.kpi__marke {
  position: absolute; top: 8px; right: 9px;
  padding: 1px 7px; border-radius: 999px;
  background: var(--tief-1); border: 1px solid var(--linie-tief);
  font-size: 0.5625rem; letter-spacing: .08em; text-transform: uppercase;
  color: var(--auf-tief-muted);
}

.kpi__figur--foto { padding: 0; overflow: hidden; }
.kpi__figur--foto img { display: block; width: 100%; height: auto; }

.kpi--bild .kpi__satz { margin-bottom: 0; }

.wahlleiste {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin-bottom: 10px;
}
.wahlknopf {
  min-height: 34px; padding: 7px 16px;
  border: 1px solid var(--linie-tief-stark); border-radius: 999px;
  background: transparent; color: var(--auf-tief);
  font-size: 0.6875rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  white-space: nowrap; cursor: pointer;
  transition: background .28s var(--ease), color .28s var(--ease), border-color .28s var(--ease);
}
.wahlknopf:hover { border-color: #FFF; background: rgba(255,255,255,.07); }
.wahlknopf.ist-aktiv { background: var(--weiss); color: #000; border-color: var(--weiss); }

.wahl__hinweis { min-height: 1.6em; margin-bottom: 12px; }

.wahl__reihen { display: flex; flex-direction: column; gap: 10px; }

@media (max-width: 600px) {
  .wahlknopf { padding: 7px 13px; letter-spacing: .05em; }
}

.stimmen__kopf { margin-bottom: clamp(16px, 1.8vw, 26px); }

.platzhalter-warnung {
  display: block; margin: 0 0 clamp(14px, 1.6vw, 22px);
  padding: 10px 14px; border-radius: var(--radius);
  background: #FFF4D6; border: 1px solid #A6791B; border-left-width: 5px;
  color: #4A360A; font-size: 0.8125rem; line-height: 1.55;
}
.platzhalter-warnung b { color: #4A360A; }
.platzhalter-warnung code {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.9em; background: rgba(0,0,0,.06); padding: 1px 4px; border-radius: 3px;
}

.kstimme {
  margin: 0; display: flex; flex-direction: column;
  background: var(--weiss);
  border: 1px solid var(--linie);
  border-radius: var(--radius);
  padding: clamp(15px, 1.5vw, 21px);
  transition: border-color .28s var(--ease);
}
.kstimme:hover { border-color: var(--linie-stark); }

.kstimme__kopf {
  display: flex; align-items: center; justify-content: space-between;
  gap: 12px; min-height: 26px;
}

.kstimme__logo {
  display: block; width: auto; height: 30px; max-width: 60%;
  object-fit: contain; object-position: left center;
}

.kstimme__wortmarke {
  font-size: 0.8125rem; font-weight: 700; letter-spacing: .06em;
  text-transform: uppercase; color: var(--text);
}
.kstimme__leistung {
  flex: 0 0 auto;
  font-size: 0.625rem; font-weight: 600; letter-spacing: .18em;
  text-transform: uppercase; color: var(--text-muted); white-space: nowrap;
}

@media (max-width: 1024px), (pointer: coarse) {
  .kstimme__leistung { font-size: 0.75rem; letter-spacing: .12em; }
}

.kstimme__flaeche {
  flex: 1 1 auto;
  padding: clamp(15px, 1.5vw, 20px) 0 clamp(14px, 1.4vw, 18px);
  display: flex; flex-direction: column; gap: 11px;
}

`. Damit
   war der Kommentar zu Ende, und die folgenden fuenf Zeilen Fliesstext hat der
   Browser als Selektor gelesen — samt der Regel dahinter. `.sterne { display:
   block; color: var(--text) }` ist deshalb nie angekommen. Sichtbar war es
   kaum, weil `fill: currentColor` die Farbe ohnehin erbt; die Regel gilt jetzt
   trotzdem wieder.

   Groesse am 30.07.2026 auf Ansage von 12 auf 17 px erhoeht — die Bewertung
   ist auf einer Stimmenkarte das Erste, was gesehen wird, und 12 px waren
   dafuer zu leise. Auf schmalen Schirmen bleibt sie etwas kleiner: dort ist
   die Karte nur 320 px breit, und eine 143 px lange Sternreihe wuerde fast die
   halbe Kartenbreite einnehmen. */
.sterne { display: block; color: var(--text); }
.sterne svg { display: block; height: 17px; width: auto; fill: currentColor; }
@media (max-width: 600px) { .sterne svg { height: 15px; } }

.kstimme blockquote {
  margin: 0; position: relative; padding-left: 27px;
  font-size: 0.9375rem; line-height: 1.62; color: var(--text);
}
.kstimme blockquote::before {
  content: '\201C';
  position: absolute; left: 0; top: -2px;
  font-family: var(--font-display); font-size: 1.875rem; line-height: 1;
  color: var(--linie-stark);
}

.kstimme__fuss {
  position: relative;
  display: flex; justify-content: space-between; align-items: flex-end; gap: 12px;
  padding-top: clamp(14px, 1.4vw, 18px); min-height: 46px;
}
.kstimme__fuss::before {
  content: ''; position: absolute; top: 0; left: 0;
  width: 28px; height: 1px; background: var(--linie-stark);
}
.kstimme__name { font-size: 0.75rem; font-weight: 700; letter-spacing: .05em; color: var(--text); }
.kstimme__art  { font-size: 0.625rem; color: var(--text-muted); margin-top: 3px; }

@media (max-width: 1024px), (pointer: coarse) {
  .kstimme__art { font-size: 0.75rem; }
}

.kstimme__motiv {
  flex: 0 0 auto; width: 22px; height: 22px;
  background:
    linear-gradient(var(--linie) 0 0)  0px  0px / 6px 6px no-repeat,
    linear-gradient(var(--linie) 0 0)  8px  8px / 6px 6px no-repeat,
    linear-gradient(var(--linie) 0 0)  0px 16px / 6px 6px no-repeat,
    linear-gradient(var(--linie) 0 0) 16px  8px / 6px 6px no-repeat,
    linear-gradient(var(--text)  0 0) 16px 16px / 6px 6px no-repeat;
  transition: transform .28s var(--ease);
}
.kstimme:hover .kstimme__motiv { transform: translate(3px, -3px); }

.dauerband {
  overflow: hidden;

  -webkit-mask-image: linear-gradient(90deg, transparent, #000 var(--saum), #000 calc(100% - var(--saum)), transparent);
          mask-image: linear-gradient(90deg, transparent, #000 var(--saum), #000 calc(100% - var(--saum)), transparent);
  --saum: clamp(18px, 4vw, 56px);
}
.dauerband__spur {
  display: flex; width: max-content;
  animation-duration: var(--dauer);
  animation-timing-function: linear;
  animation-iteration-count: infinite;

}
.dauerband__satz {
  display: flex; align-items: center; gap: var(--luecke);
  margin: 0; padding: 0; padding-inline-end: var(--luecke);
  list-style: none;
}
.dauerband--rechts .dauerband__spur { animation-name: dauerband-rechts; }
.dauerband--links  .dauerband__spur { animation-name: dauerband-links; }

@keyframes dauerband-rechts {
  from { transform: translate3d(-50%, 0, 0); }
  to   { transform: translate3d(0, 0, 0); }
}
@keyframes dauerband-links {
  from { transform: translate3d(0, 0, 0); }
  to   { transform: translate3d(-50%, 0, 0); }
}

.dauerband:hover .dauerband__spur,
.dauerband:focus-within .dauerband__spur { animation-play-state: paused; }

@media (prefers-reduced-motion: reduce) {

  .dauerband--rechts .dauerband__spur,
  .dauerband--links .dauerband__spur { animation: none; }
  .dauerband__satz + .dauerband__satz { display: none; }
  .dauerband { overflow-x: auto; scrollbar-width: none; }
  .dauerband::-webkit-scrollbar { display: none; }
  .dauerband__spur { width: auto; }
}

.logoband { --luecke: clamp(22px, 3vw, 40px); --dauer: 55s; margin-bottom: clamp(26px, 3vw, 42px); }
.logoband .dauerband__satz > li {
  flex: 0 0 clamp(112px, 12vw, 170px);
  display: grid; place-items: center; min-width: 0;
}
.logoband img {
  display: block; width: 100%; max-width: 140px; height: 54px;
  object-fit: contain;

}
@media (max-width: 700px) { .logoband img { height: 42px; } }

.stimmenband { --luecke: 18px; --dauer: 90s; }

.stimmenband .kstimme { flex: 0 0 auto; width: min(84vw, 420px); }

.stimmenband .dauerband__satz { align-items: stretch; }

.performance-voll {
  min-height: 100vh;
  min-height: 100svh;
  scroll-margin-top: 0;
  display: flex; flex-direction: column; justify-content: center;

  padding-block: clamp(30px, 5.2vh, 47px);
}

.perf__teil {

  margin-top: clamp(10px, 1.8vh, 20px);
  padding-top: clamp(10px, 1.8vh, 20px);
  border-top: 1px solid var(--linie-tief);
}

.performance-voll .stufe p       { color: var(--auf-tief-muted); }

.performance-voll .stufe__nr     { color: var(--auf-tief-muted); }
.performance-voll .stufe__pfeil  { color: var(--linie-tief-stark); }
.performance-voll .stufe__kreis  {
  background: var(--tief-2);
  border-color: var(--linie-tief);
  color: #FFF;
}
@media (max-width: 999px) {
  .performance-voll .stufe { border-left-color: var(--linie-tief); }
}

.performance-voll { --perf-figur: clamp(34px, 6.2vh, 92px); }

.performance-voll .kpi__figur { padding: 10px 12px 9px; margin-bottom: 10px; }
.performance-voll .kpi__figur svg {
  max-width: min(100%, calc(var(--perf-figur) * 3.3334));
  margin-inline: auto;
}
.performance-voll .kpi__figur--foto { padding: 10px 12px 9px; }
.performance-voll .kpi__figur--foto img {
  max-width: min(100%, calc(var(--perf-figur) * 2.2));
  margin-inline: auto;
}
.performance-voll .kpi  { padding: 10px 11px; gap: 5px; }
.performance-voll .kpis { gap: 8px; }

.performance-voll .kpi__satz { line-height: 1.45; }

.performance-voll .stufen       { margin-top: 10px; }
.performance-voll .stufe__kreis { width: 30px; height: 30px; margin-bottom: 6px; }
.performance-voll .stufe__pfeil { top: 14px; }

@media (min-width: 1000px) and (max-width: 1200px) {
  .performance-voll .perf__reihe    { grid-template-columns: minmax(0,186px) minmax(0,1fr); gap: 18px; }
  .performance-voll .zahlen__reihe  { grid-template-columns: minmax(0,186px) minmax(0,1fr) minmax(0,1.2fr); gap: 18px; }
  .performance-voll .stufe          { padding-right: 16px; }
}

.fuss ul { padding-inline-start: 0; margin: 0; }

.fuss li a, .fuss li { gap: 9px; }
.fuss__zeichen {
  width: 15px; height: 15px; flex: 0 0 auto;
  display: grid; place-items: center;
  color: var(--auf-tief-leise);
  transition: color .28s var(--ease), opacity .28s var(--ease);
}
.fuss__zeichen svg { display: block; width: 100%; height: 100%; }

.fuss li a:hover .fuss__zeichen { color: #FFF; }

.fuss__zeichen--logo { width: 18px; height: 15px; }
.fuss__zeichen--logo img {
  display: block; width: 100%; height: 100%;
  object-fit: contain;
  filter: invert(1);
  opacity: .62;
  transition: opacity .28s var(--ease);
}
.fuss li a:hover .fuss__zeichen--logo img { opacity: 1; }

.fuss__wortmarke {
  margin-top: clamp(28px, 3.4vw, 52px);
  line-height: 0;
}
.fuss__wortmarke + .fuss__unten { margin-top: 10px; }

.fuss__wortmarke + .fuss__urheber { margin-top: 10px; }

.fuss__urheber {
  margin: 0;
  max-width: none;
  font-size: 0.75rem;
  line-height: 1.5;
  color: var(--auf-tief-muted);
}
.fuss__urheber strong { color: var(--auf-tief); font-weight: 700; }
.fuss__urheber + .fuss__unten { margin-top: 14px; }
.fuss__wortmarke svg { display: block; width: 100%; height: auto; }
.fuss__wortmarke text {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 128px;
  letter-spacing: -0.03em;
  fill: #FFF;

  fill-opacity: .16;
}
@media (max-width: 700px) {

  .fuss__wortmarke { margin-top: clamp(20px, 5vw, 32px); }
}

@media (min-width: 700px) and (max-width: 1099.98px) {
  .fuss__oben { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (min-width: 1100px) {
  .fuss__oben { grid-template-columns: minmax(0, 1.5fr) repeat(3, minmax(0, 1fr)); }
}

.fuss__zeichen--logo { width: 26px; height: 20px; }

.anfrage__kopf { grid-column: 1 / -1; }
.anfrage__kopf .t-sektion { margin: 6px 0 0; }

@media (min-width: 1000px) {

  .anfrage__buehne { column-gap: 44px; row-gap: 22px; }

  .anfrage__rechts { margin-top: 0; }
}

.pf__oben {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(26px, 3.2vh, 40px);
  align-items: start;
}
@media (min-width: 1000px) {

  .pf__oben {
    grid-template-columns: minmax(0, 30%) minmax(0, 1fr);
    gap: clamp(26px, 2.8vw, 44px);
    align-items: center;
  }
}

.pf__titelzeile {
  font-family: var(--font-display);
  font-size: clamp(1.625rem, 0.4rem + 2.6vw, 2.75rem);
  line-height: 1.2; letter-spacing: -0.032em; font-weight: 700; hyphens: manual;
  margin: 0 0 clamp(18px, 2.6vh, 30px);
}
.pf__fliess {
  font-size: 0.875rem; line-height: 1.78;
  color: var(--auf-tief-muted);
  margin: 0 0 clamp(16px, 2.2vh, 24px);
}
.pf__fliess:last-of-type { margin-bottom: 0; }

.pf__streu { position: relative; display: block; height: 32px; margin-top: clamp(18px, 2.4vh, 28px); }
.pf__streu i { position: absolute; display: block; background: rgba(255,255,255,.13); }
.pf__streu i:nth-child(1) { left:  0px; top: 11px; width:  9px; height:  9px; }
.pf__streu i:nth-child(2) { left: 19px; top: 25px; width:  6px; height:  6px; }
.pf__streu i:nth-child(3) { left: 63px; top:  0px; width:  7px; height:  7px; background: rgba(255,255,255,.3); }
.pf__streu i:nth-child(4) { left: 80px; top: 15px; width: 11px; height: 11px; }
@media (max-width: 999px) { .pf__streu { display: none; } }

.pf__karten { display: grid; grid-template-columns: minmax(0, 1fr); gap: 14px; }
@media (min-width: 620px) {
  .pf__karten { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (min-width: 1000px) {
  .pf__karten { grid-template-columns: repeat(6, minmax(0, 1fr)); gap: clamp(11px, 1.2vw, 17px); }
  .pf__karte        { grid-column: span 2; }
  .pf__karte--breit { grid-column: span 3; }
}

.pf__karte {
  position: relative;
  display: flex; flex-direction: column;
  padding: clamp(16px, 1.5vw, 22px);
  border: 1px solid rgba(255, 255, 255, .10);
  border-radius: 10px;
  background: linear-gradient(155deg, #151515 0%, #0B0B0B 46%, #060606 100%);
  transition: border-color .3s var(--ease, cubic-bezier(.22, .61, .36, 1));
}
.pf__karte:hover { border-color: var(--linie-tief-stark); }

.pf__chip {
  position: absolute; top: clamp(14px, 1.4vw, 20px); right: clamp(14px, 1.4vw, 20px);
  padding: 2px 9px; border: 1px solid rgba(255, 255, 255, .16); border-radius: 999px;
  background: rgba(255, 255, 255, .03);
  font-size: 0.5rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase;
  line-height: 1.8; color: rgba(255, 255, 255, .55);
}

.pf__figur {
  color: rgba(255, 255, 255, .82);
  height: clamp(58px, 8.8vh, 88px);
  margin-bottom: clamp(12px, 1.8vh, 22px);
  display: flex; align-items: flex-start;
}
.pf__figur svg { display: block; height: 100%; width: auto; max-width: 100%; }

.pf__figur--breit { height: clamp(50px, 7.4vh, 74px); }

.pf__karte-titel {
  font-size: clamp(0.9375rem, 0.82rem + 0.3vw, 1.0625rem);
  font-weight: 600; letter-spacing: -0.015em; line-height: 1.3;
  color: #FFF; margin: 0 0 10px;
}
.pf__karte-satz { font-size: 0.8125rem; line-height: 1.62; color: var(--auf-tief-muted); margin: 0; }

.pf__unten { margin-top: clamp(26px, 4.4vh, 54px); }

.pf__ablauf {
  --pf-kreis: clamp(56px, 5.4vw, 78px);
  display: grid; grid-template-columns: minmax(0, 1fr); gap: 22px;
  margin: clamp(12px, 2vh, 22px) 0 0; padding-inline-start: 0;
}
@media (min-width: 1000px) {
  .pf__ablauf  { grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 0; }
  .pf__schritt { padding-right: 26px; }
}
.pf__schritt { position: relative; }

.pf__kreis {
  width: var(--pf-kreis); height: var(--pf-kreis);
  display: grid; place-items: center;
  border: 1px solid rgba(255, 255, 255, .22); border-radius: 50%;
  color: #FFF;
}

.pf__kreis svg { width: 38%; height: 38%; }

.pf__pfeil { display: none; }
@media (min-width: 1000px) {
  .pf__schritt:not(:last-child) .pf__pfeil {
    display: flex; align-items: center; gap: 7px;
    position: absolute;
    top: calc(var(--pf-kreis) / 2 - 4.5px);
    left: calc(var(--pf-kreis) + 30px);

    right: 30px;
    color: rgba(255, 255, 255, .32);
  }
}
.pf__pfeil-linie { flex: 1 1 auto; height: 1px; background: currentColor; }
.pf__pfeil svg   { flex: 0 0 auto; }
.pf__pfeil-punkt { flex: 0 0 auto; width: 3px; height: 3px; border-radius: 50%; background: currentColor; margin-left: 9px; }

.pf__nr {
  font-size: 0.75rem; font-weight: 600; letter-spacing: .12em;
  color: var(--auf-tief-leise); margin: clamp(14px, 2.4vh, 26px) 0 6px;
}
.pf__schritt h3 {
  font-size: clamp(0.9375rem, 0.85rem + 0.25vw, 1.0625rem);
  font-weight: 700; letter-spacing: -0.015em; margin: 0 0 7px; color: #FFF;
}
.pf__schritt p { font-size: 0.8125rem; line-height: 1.55; color: var(--auf-tief-muted); margin: 0; max-width: 28ch; }

@media (max-width: 999px) {
  .pf__ablauf  { --pf-kreis: 52px; }
  .pf__schritt { padding-left: 20px; border-left: 1px solid var(--linie-tief); }
  .pf__nr      { margin-top: 12px; }
  .pf__schritt p { max-width: none; }
}

.anfrage__wege li { display: flex; align-items: center; gap: 9px; }
.anfrage__wege li a { display: inline-flex; align-items: center; gap: 9px; }
.weg__zeichen {
  width: 15px; height: 15px; flex: 0 0 auto;
  display: grid; place-items: center;
  color: var(--text-muted);
  transition: color .28s var(--ease);
}
.weg__zeichen svg { display: block; width: 100%; height: 100%; }
.anfrage__wege a:hover .weg__zeichen { color: var(--text); }

.fuss__unten nav .fuss__einwilligung {
  display: inline-flex; align-items: center; min-height: 26px;
  padding: 0; border: 0; background: none;
  font: inherit; color: inherit; letter-spacing: inherit;
  cursor: pointer; text-align: left;
}
.fuss__unten nav .fuss__einwilligung:hover { color: var(--auf-tief); }

@media (max-width: 999px) {
  .visuals__handy { display: none; }
}

.anfrage__wege li a { min-height: 26px; }

@media (pointer: coarse) {

  .feld--haken input { width: 24px; height: 24px; margin-top: 0; }

  .anfrage__wege li a { min-height: 44px; }

  .anfrage__rechtslink { padding-block: 6px; }
}

@media (max-width: 1024px), (pointer: coarse) {

  .wahlknopf { font-size: 0.75rem; }

  .pf__chip { font-size: 0.75rem; letter-spacing: .08em; line-height: 1.5; }

  .feld__chip { font-size: 0.75rem; }
}

@media (max-width: 999px) {

  .hero__reihe > div,
  .sekkopf,
  .sekkopf > div,
  .stimmen__kopf,
  .pf__text,
  .anfrage__kopf { text-align: center; }

  .leistungen-voll > .mitte--breit > .label { display: flex; justify-content: center; }

  .hero h1,
  .hero .fliess,
  .sekkopf__satz,
  .pf__fliess { margin-inline: auto; }

  .hero__knoepfe { justify-content: center; }

  .vertrauen__titel { text-align: center; }
  .plattformen { margin-inline: auto; }
}
