/* ==========================================================
   Kontakt -- Seitenmodul ueber troncom.css.
   Traegt nur, was es allein hier gibt: das Zifferblatt in der
   Buehne, das Anfrageformular mit Schiene und mitschreibender
   Vorschau, die drei Zeichnungen unter "Danach" und die Adresse
   als grosse Schlusszeile.
   ========================================================== */
.kt {
  --kt-uhr: clamp(260px, 24vw, 380px);     /* Zifferblatt auf breiten Schirmen */
  --kt-luft: clamp(32px, 4vw, 72px);       /* Abstand Text -- Zifferblatt */
  --kt-einzug: clamp(42px, 4vw, 60px);     /* Spalte fuer Schiene und Schrittmarken */
  --kt-marke: 29px;                        /* ungerade, damit die 1px-Schiene mittig sitzt */
  --kt-knopf: clamp(52px, 4.2vw, 60px);    /* Hoehe von .hero-cta -- dort endet die Schiene */
}

/* ---------- Buehne ----------
   Das Bild bleibt dunkel. Rechts steht das Zifferblatt auf einer
   Glasscheibe -- ueber den hellen Fenstern waeren die feinen Striche
   sonst nicht zu lesen. Schmal rueckt es ueber den Kicker. */
.kt-buehne { --bild-pos: 50% 50%; min-height: 86vh; min-height: 86svh; }
.kt-buehne .buehne-bild img { filter: saturate(.7) brightness(.45); }
.kt-buehne h1 { max-width: none; font-size: clamp(44px, 5.6vw, 88px); }
.kt-buehne h1 span { display: block; color: rgba(255,255,255,.62); }
.kt-uhr {
  border-radius: 50%;
  background: rgba(0,0,0,.45);
  -webkit-backdrop-filter: blur(16px); backdrop-filter: blur(16px);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.12);
}
@media (min-width: 901px) {
  /* Der Text haelt rechts Platz frei, die Uhr steht mittig zur Textspalte.
     top und bottom wiederholen die Innenabstaende von .buehne-inhalt. */
  .kt-buehne .buehne-inhalt { padding-right: calc(var(--gutter) + var(--kt-uhr) + var(--kt-luft)); }
  .kt-uhr {
    position: absolute; right: var(--gutter);
    top: calc(var(--nav-h) + 80px); bottom: clamp(56px, 9vh, 110px);
    width: var(--kt-uhr); height: var(--kt-uhr); margin-block: auto;
  }
}
@media (max-width: 900px) {
  /* Schmal reicht der Textblock bis in die Bildmitte -- dort braucht
     es mehr Schwarz als der Verlauf der Buehne mitbringt */
  .kt-buehne { --bild-pos: 40% 50%; }
  .kt-buehne::after { background: linear-gradient(to bottom, rgba(0,0,0,.5) 0%, rgba(0,0,0,.25) 22%, rgba(0,0,0,.7) 44%, rgba(0,0,0,.9) 70%, #000 100%); }
  .kt-buehne .buehne-inhalt { display: flex; flex-direction: column; align-items: flex-start; }
  .kt-buehne .kt-uhr { order: -1; width: clamp(112px, 30vw, 168px); margin-bottom: clamp(22px, 5vw, 32px); animation-delay: 0s; }
}

/* ---------- Zifferblatt: die halbe Stunde ---------- */
.uh { width: 100%; overflow: visible; }
.uh * { vector-effect: non-scaling-stroke; }
.uh line, .uh path, .uh circle { fill: none; }
.uh-ring { stroke: rgba(255,255,255,.14); stroke-width: 1; }
.uh-tick { stroke: rgba(255,255,255,.24); stroke-width: 1; }
.uh-tick.ist-lang { stroke: rgba(255,255,255,.55); stroke-width: 1.4; }
.uh-bogen { stroke: #FFC46B; stroke-width: 3; stroke-linecap: round; filter: drop-shadow(0 0 10px rgba(255,196,107,.45)); }
.uh-zeiger line { stroke: #fff; stroke-width: 2; stroke-linecap: round; }
.uh .uh-nabe { fill: #fff; }
.uh-zahl { fill: #fff; font-family: var(--font-sans); font-size: 76px; font-weight: 300; letter-spacing: -.05em; }
.uh-einheit, .uh-frei { fill: rgba(255,255,255,.55); font-family: var(--font-mono); font-size: 12px; letter-spacing: .24em; }
.uh-frei { fill: #FFC46B; font-size: 11px; }

/* Aufbau nach dem Auftritt der Scheibe: Striche, Bogen, Zeiger, Zahl */
.uh-ring { opacity: 0; animation: ktEin .8s ease-out .7s forwards; }
.uh-tick { opacity: 0; animation: ktEin .5s ease-out forwards; animation-delay: calc(var(--i) * 14ms + .8s); }
.uh-bogen {
  stroke-dasharray: var(--len, 340); stroke-dashoffset: var(--len, 340);
  animation: ktBogen 1.5s cubic-bezier(.22,.61,.28,1) 1.6s forwards;
}
.uh-zeiger {
  opacity: 0; transform: rotate(-92deg); transform-origin: 160px 160px;
  animation: ktZeiger 1.6s cubic-bezier(.22,.61,.28,1) 1.6s forwards, ktAtmen 6s ease-in-out 3.3s infinite;
}
.uh-nabe, .uh-zahl, .uh-einheit, .uh-frei { opacity: 0; animation: ktEin .8s ease-out 2s forwards; }
.uh-zahl { animation-delay: 2.1s; }
.uh-einheit { animation-delay: 2.22s; }
.uh-frei { animation-delay: 2.36s; }
@keyframes ktEin { to { opacity: 1; } }
@keyframes ktBogen { to { stroke-dashoffset: 0; } }
@keyframes ktZeiger { 0% { opacity: 0; transform: rotate(-92deg); } 20% { opacity: 1; } 100% { opacity: 1; transform: rotate(0deg); } }
@keyframes ktAtmen { 0%, 100% { transform: rotate(0deg); } 50% { transform: rotate(2.2deg); } }

/* ---------- Anfrage: Formular und Vorschau nebeneinander ---------- */
.kt-split { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, .82fr); gap: clamp(40px, 5.6vw, 96px); align-items: start; }

/* Schiene: laeuft durch die Schrittmarken bis auf Hoehe des Knopfs und
   biegt dort zu ihm ab. Wie weit sie sich fuellt, setzt das Skript. */
.kt-form { position: relative; padding-left: var(--kt-einzug); }
.kt-rail { position: absolute; left: 14px; top: 14px; bottom: calc(var(--kt-knopf) / 2); width: 1px; }
.kt-rail::after { content: ''; position: absolute; left: 0; bottom: 0; width: calc(var(--kt-einzug) - 26px); height: 1px; background: var(--rule); }
.kt-rail-linie { position: absolute; inset: 0; display: block; background: var(--rule); }
.kt-rail-fuell { position: absolute; top: 0; left: 0; right: 0; height: 0; display: block; background: #fff; transition: height .7s var(--ease); }

.kt-feld { min-width: 0; margin: 0; padding: 0; border: 0; }
.kt-feld + .kt-feld { margin-top: clamp(44px, 4.6vw, 64px); }
.kt-feld legend {
  position: relative; padding: 0 0 clamp(16px, 1.6vw, 22px);
  font-size: clamp(20px, 1.7vw, 24px); letter-spacing: -.03em; line-height: var(--kt-marke);
}
/* Schrittmarke: sitzt in der Schienenspalte, erledigt wird sie weiss */
.kt-schrittnr {
  position: absolute; top: 0; left: calc(-1 * var(--kt-einzug));
  width: var(--kt-marke); height: var(--kt-marke); display: grid; place-items: center;
  border-radius: 50%; background: #000; box-shadow: inset 0 0 0 1px var(--rule-strong);
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0; line-height: 1; color: var(--text-2);
  transition: background-color .4s var(--ease), color .4s var(--ease), box-shadow .4s var(--ease);
}
.kt-schrittnr.ist-fertig { background: #fff; color: #000; box-shadow: inset 0 0 0 1px #fff; }

/* Sparte: waehlbare Karten, die letzte ueber die volle Breite */
.kt-wahlen { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px; }
.kt-wahl { position: relative; display: block; cursor: pointer; }
.kt-wahl:last-child { grid-column: 1 / -1; }
.kt-wahl input, .kt-chip input { position: absolute; width: 1px; height: 1px; opacity: 0; }
.kt-wahl-in {
  position: relative; display: block; height: 100%; padding: 16px 48px 17px 18px;
  border-radius: var(--radius); background: var(--flaeche-karte); box-shadow: inset 0 0 0 1px var(--rule);
  transition: background-color .25s var(--ease), box-shadow .25s var(--ease);
}
.kt-wahl-in::after {
  content: ''; position: absolute; top: 18px; right: 18px; width: 14px; height: 14px; border-radius: 50%;
  box-shadow: inset 0 0 0 1px var(--rule-strong);
  transition: background-color .25s var(--ease), box-shadow .25s var(--ease);
}
.kt-wahl-titel { display: block; font-size: 16px; font-weight: 500; letter-spacing: -.015em; line-height: 1.3; }
.kt-wahl-text { display: block; margin-top: 4px; font-size: 13.5px; line-height: 1.45; color: var(--text-3); }
.kt-wahl:hover .kt-wahl-in { box-shadow: inset 0 0 0 1px rgba(255,255,255,.34); }
.kt-wahl input:checked + .kt-wahl-in { background: rgba(255,255,255,.06); box-shadow: inset 0 0 0 1px #fff; }
.kt-wahl input:checked + .kt-wahl-in::after { background: radial-gradient(circle, #000 0 2px, #fff 2.5px); box-shadow: none; }
.kt-wahl input:focus-visible + .kt-wahl-in,
.kt-chip input:focus-visible + span { outline: 1px solid #fff; outline-offset: 3px; }

/* Groesse: Chips wie im Designsystem, gewaehlt weiss */
.kt-chips { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; }
.kt-chip { position: relative; cursor: pointer; }
.kt-chip span {
  display: inline-flex; align-items: center; height: 44px; padding: 0 18px;
  border-radius: var(--radius); box-shadow: inset 0 0 0 1px rgba(255,255,255,.25);
  font-family: var(--font-mono); font-size: 12px; letter-spacing: .12em; text-transform: uppercase; color: var(--text-2);
  transition: background-color .25s var(--ease), color .25s var(--ease), box-shadow .25s var(--ease);
}
.kt-chip:hover span { color: #fff; box-shadow: inset 0 0 0 1px rgba(255,255,255,.65); }
.kt-chip input:checked + span { background: #fff; color: #000; box-shadow: none; }
.kt-einheit { margin-left: 8px; font-family: var(--font-mono); font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--text-3); }

/* Felder: Haarrahmen, 4px Rundung, Beschriftung in Mono.
   Der Zaehler liegt in derselben Rasterzelle wie das Textfeld, unten rechts. */
.kt-frageblock { display: grid; grid-template-columns: minmax(0, 1fr); }
.kt-frageblock[hidden] { display: none; }
.kt-frage, .kt-zeile > span {
  font-family: var(--font-mono); font-size: 11px; letter-spacing: .14em; line-height: 1.3;
  text-transform: uppercase; color: var(--text-3);
}
.kt-frage { margin-bottom: 10px; }
.kt-frageblock textarea { grid-row: 2; grid-column: 1; }
.kt-zaehler {
  grid-row: 2; grid-column: 1; align-self: end; justify-self: end; margin: 0 14px 12px 0; pointer-events: none;
  font-family: var(--font-mono); font-size: 11px; letter-spacing: .08em; color: var(--text-3);
}
.kt-zaehler b { font-weight: 400; color: var(--text-2); }
.kt-zusatz { grid-row: 3; margin-top: 20px; }
.kt-zeilen { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px 12px; }
.kt-zeilen .kt-zeile:last-child { grid-column: 1 / -1; }
.kt-zeile { display: grid; gap: 10px; }

.kt-form textarea, .kt-zeile input {
  display: block; width: 100%;
  border: 1px solid var(--rule-strong); border-radius: var(--radius);
  background: var(--flaeche-karte); color: #fff;
  font: inherit; font-size: 16px; line-height: 1.5;
  transition: border-color .25s var(--ease), background-color .25s var(--ease), box-shadow .25s var(--ease);
}
.kt-zeile input { height: 52px; padding: 0 16px; }
.kt-form textarea { min-height: 152px; padding: 14px 16px 36px; resize: vertical; }
.kt-form textarea::placeholder, .kt-zeile input::placeholder { color: rgba(255,255,255,.45); }
.kt-form textarea:hover, .kt-zeile input:hover { border-color: rgba(255,255,255,.5); }
.kt-form textarea:focus, .kt-zeile input:focus {
  outline: none; border-color: #fff; background: rgba(255,255,255,.04); box-shadow: 0 0 0 3px rgba(255,255,255,.1);
}
.kt-zeile input:-webkit-autofill { -webkit-text-fill-color: #fff; caret-color: #fff; -webkit-box-shadow: 0 0 0 100px var(--flaeche-1) inset; }

/* Abschluss: Hinweis, darunter der Knopf -- auf seiner Mitte endet die Schiene */
.kt-abschluss { display: grid; justify-items: start; gap: 16px; margin-top: clamp(40px, 4.4vw, 56px); }
.kt-hinweis { max-width: 48ch; font-size: 13.5px; line-height: 1.55; color: var(--text-3); }

/* ---------- Vorschau: ein Nachrichtenfenster, das mitschreibt ---------- */
.kt-vorschau { position: sticky; top: calc(var(--nav-h) + 32px); }
.kt-fenster {
  overflow: hidden; border-radius: var(--radius-karte);
  background: linear-gradient(180deg, rgba(255,255,255,.05) 0%, rgba(255,255,255,.018) 34%);
  box-shadow: inset 0 0 0 1px var(--rule), 0 40px 90px -40px rgba(0,0,0,.9);
}
.kt-leiste { position: relative; display: flex; align-items: center; gap: 7px; padding: 15px 18px; border-bottom: 1px solid var(--rule); }
.kt-punkt { width: 10px; height: 10px; border-radius: 50%; background: rgba(255,255,255,.16); }
.kt-titel {
  position: absolute; left: 50%; transform: translateX(-50%); white-space: nowrap;
  font-family: var(--font-mono); font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--text-3);
}
.kt-kopfzeilen { display: grid; gap: 10px; padding: 18px 20px; border-bottom: 1px solid var(--rule); }
.kt-kopfzeilen > div { display: grid; grid-template-columns: 76px minmax(0, 1fr); gap: 12px; align-items: baseline; }
.kt-kopfzeilen dt { font-family: var(--font-mono); font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--text-3); }
.kt-kopfzeilen dd { font-size: 14.5px; color: #fff; }
.kt-koerper {
  min-height: 300px; padding: 22px 20px 32px;
  font-family: var(--font-mono); font-size: 13px; line-height: 1.85; color: var(--text-2);
  white-space: pre-wrap; overflow-wrap: anywhere;
}
/* Der Cursor blinkt weiter, auch wenn gerade niemand tippt */
.kt-koerper::after {
  content: ''; display: inline-block; vertical-align: text-bottom;
  width: 7px; height: 1.1em; margin-left: 2px; background: #fff;
  animation: ktBlink 1.15s steps(1, end) infinite;
}
@keyframes ktBlink { 0%, 49% { opacity: 1; } 50%, 100% { opacity: 0; } }

/* ---------- Danach: Zeichnung in der Kachel, Text darunter ---------- */
.kt-schritte { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: clamp(36px, 3.4vw, 48px) clamp(12px, 1.4vw, 20px); }
.kt-schritte.fade-in { opacity: 1; transform: none; }
.kt-schritt {
  opacity: 0; transform: translateY(24px);
  transition: opacity .9s var(--ease), transform .9s var(--ease); transition-delay: calc(var(--n) * 120ms);
}
.kt-schritte.visible .kt-schritt { opacity: 1; transform: none; }
.kt-bild {
  position: relative; display: grid; place-items: center; aspect-ratio: 16 / 10; padding: clamp(18px, 2vw, 30px);
  border-radius: var(--radius-karte); background: var(--flaeche-karte); box-shadow: inset 0 0 0 1px var(--rule);
}
/* Die Nummer steht oben links in der Kachel, ausserhalb des Rasters */
.kt-nr { position: absolute; top: 14px; left: 16px; font-family: var(--font-mono); font-size: 11px; letter-spacing: .14em; line-height: 1; color: var(--text-3); }
.kt-inhalt { margin-top: clamp(20px, 2vw, 28px); padding-right: clamp(0px, 2vw, 24px); }
.kt-schritt h3 { font-size: clamp(22px, 2vw, 28px); letter-spacing: -.03em; line-height: 1.12; }
.kt-zeit { display: block; margin-top: 10px; font-family: var(--font-mono); font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: var(--text-3); }
.kt-schritt p { margin-top: 14px; max-width: 42ch; font-size: clamp(14px, 1.1vw, 15.5px); line-height: 1.6; color: var(--text-2); }

/* --- Die Zeichnungen --- */
.ob3 { display: block; width: 82%; max-width: 300px; height: auto; overflow: visible; }
.ob3 * { vector-effect: non-scaling-stroke; fill: none; }
.o-kasten { stroke: rgba(255,255,255,.42); stroke-width: 1.3; stroke-linejoin: round; }
.o-z { stroke: rgba(255,255,255,.3); stroke-width: 1.2; }
.o-antwort { stroke: #FFC46B; stroke-width: 1.4; stroke-linejoin: round; }
.o-person circle, .o-person path { stroke: rgba(255,255,255,.6); stroke-width: 1.3; }
.o-achse { stroke: rgba(255,255,255,.18); stroke-width: 1; }
.o-w1 { fill: rgba(255,255,255,.85); stroke: none; }
.o-w2 { fill: #FFC46B; stroke: none; }
.o-marke, .o-spanne { stroke: rgba(255,255,255,.35); stroke-width: 1; }
.o-raster line { stroke: rgba(255,255,255,.07); stroke-width: 1; }
.o-block { fill: rgba(255,255,255,.07); stroke: rgba(255,255,255,.4); stroke-width: 1.2; }
.o-ecke { stroke: #FFC46B; stroke-width: 2.2; }
.o-mass line { stroke: rgba(255,255,255,.4); stroke-width: 1; }

/* Eintritt: Umrisse zeichnen sich, Inhalte setzen nach */
.o-kasten, .o-antwort, .o-spanne {
  stroke-dasharray: var(--len, 620); stroke-dashoffset: var(--len, 620);
  transition: stroke-dashoffset 1.2s var(--ease); transition-delay: calc(var(--n) * 150ms + 200ms);
}
.kt-schritte.visible .o-kasten, .kt-schritte.visible .o-antwort, .kt-schritte.visible .o-spanne { stroke-dashoffset: 0; }
.o-z, .o-achse, .o-marke, .o-raster line, .o-person, .o-mass line {
  opacity: 0; transition: opacity .6s ease-out;
  transition-delay: calc(var(--n) * 150ms + var(--i, 0) * 90ms + 700ms);
}
.kt-schritte.visible .o-z, .kt-schritte.visible .o-achse, .kt-schritte.visible .o-marke,
.kt-schritte.visible .o-raster line, .kt-schritte.visible .o-person, .kt-schritte.visible .o-mass line { opacity: 1; }

/* Die Bloecke des Plans setzen sich nacheinander */
.o-block, .o-ecke {
  opacity: 0; transform: scale(.9); transform-box: fill-box; transform-origin: left top;
  transition: opacity .5s ease-out, transform .55s cubic-bezier(.34,1.4,.64,1);
  transition-delay: calc(var(--n) * 150ms + var(--i) * 150ms + 620ms);
}
.kt-schritte.visible .o-block, .kt-schritte.visible .o-ecke { opacity: 1; transform: none; }

/* Die Wellenform waechst aus der Achse und bleibt in Bewegung */
.o-w1, .o-w2 {
  transform: scaleY(0); transform-box: fill-box;
  transition: transform .55s cubic-bezier(.22,.61,.28,1);
  transition-delay: calc(var(--n) * 150ms + var(--i) * 45ms + 420ms);
}
.o-w1 { transform-origin: bottom center; }
.o-w2 { transform-origin: top center; }
.kt-schritte.visible .o-w1, .kt-schritte.visible .o-w2 { transform: scaleY(1); }
.kt-schritte.visible .o-w1 { animation: ktWelle1 3.4s ease-in-out calc(var(--i) * 70ms + 1.4s) infinite; }
.kt-schritte.visible .o-w2 { animation: ktWelle2 3.9s ease-in-out calc(var(--i) * 60ms + 1.7s) infinite; }
@keyframes ktWelle1 { 0%, 100% { transform: scaleY(1); } 50% { transform: scaleY(.42); } }
@keyframes ktWelle2 { 0%, 100% { transform: scaleY(1); } 50% { transform: scaleY(.55); } }

/* ---------- Direkt: die Adresse als grosse Schlusszeile ---------- */
.kt-mail {
  position: relative; display: flex; align-items: center; justify-content: space-between; gap: clamp(16px, 2vw, 32px);
  padding: clamp(18px, 2.2vw, 32px) 0;
  border-top: 1px solid var(--rule-strong); border-bottom: 1px solid var(--rule);
  font-size: clamp(32px, 9vw, 144px); font-weight: 300; letter-spacing: -.055em; line-height: 1.05;
}
/* Beim Zeigen zieht sich die untere Linie weiss durch */
.kt-mail::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: -1px; height: 1px; background: #fff;
  transform: scaleX(0); transform-origin: left; transition: transform .7s var(--ease);
}
.kt-mail:hover::after, .kt-mail:focus-visible::after { transform: scaleX(1); }
.kt-mail-adresse { min-width: 0; overflow-wrap: anywhere; }
.kt-mail-pfeil {
  flex: 0 0 auto; display: grid; place-items: center;
  width: clamp(44px, 5.4vw, 84px); aspect-ratio: 1; border-radius: 50%;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.4);
  font-size: clamp(16px, 1.8vw, 28px); letter-spacing: 0;
  transition: background-color .3s var(--ease), color .3s var(--ease), box-shadow .3s var(--ease);
}
.kt-mail:hover .kt-mail-pfeil, .kt-mail:focus-visible .kt-mail-pfeil { background: #fff; color: #000; box-shadow: none; }
.kt-recht { margin-top: clamp(18px, 2vw, 24px); font-size: 14px; line-height: 1.55; color: var(--text-3); }
.kt-recht a {
  color: #fff; text-decoration: underline; text-decoration-color: rgba(255,255,255,.4); text-underline-offset: 4px;
  transition: text-decoration-color .25s var(--ease);
}
.kt-recht a:hover, .kt-recht a:focus-visible { text-decoration-color: #fff; }

/* ---------- Schmalere Schirme ---------- */
@media (max-width: 1000px) {
  .kt-split { grid-template-columns: minmax(0, 1fr); }
  .kt-vorschau { position: static; max-width: 720px; margin-left: var(--kt-einzug); }
}
@media (max-width: 900px) {
  /* Kachel links, Text rechts daneben */
  .kt-schritte { grid-template-columns: minmax(0, 1fr); }
  .kt-schritt { display: grid; grid-template-columns: minmax(0, .9fr) minmax(0, 1fr); gap: clamp(20px, 4vw, 40px); align-items: center; }
  .kt-inhalt { margin-top: 0; }
}
@media (max-width: 620px) {
  .kt-wahlen, .kt-zeilen { grid-template-columns: minmax(0, 1fr); }
  .kt-vorschau { margin-left: 0; }
  .kt-schritt { display: block; }
  .kt-inhalt { margin-top: 20px; }
}

@media (prefers-reduced-motion: reduce) {
  .uh-ring, .uh-tick, .uh-nabe, .uh-zahl, .uh-einheit, .uh-frei { opacity: 1; animation: none; }
  .uh-bogen { stroke-dashoffset: 0; animation: none; }
  .uh-zeiger { opacity: 1; transform: none; animation: none; }
  .kt-rail-fuell, .kt-schrittnr, .kt-wahl-in, .kt-wahl-in::after, .kt-chip span,
  .kt-mail::after, .kt-mail-pfeil { transition: none; }
  .kt-koerper::after { animation: none; }
  .kt-schritt { opacity: 1; transform: none; transition: none; }
  .o-kasten, .o-antwort, .o-spanne { transition: none; stroke-dashoffset: 0; }
  .o-z, .o-achse, .o-marke, .o-raster line, .o-person, .o-mass line,
  .o-block, .o-ecke { transition: none; opacity: 1; transform: none; }
  .o-w1, .o-w2 { transition: none; transform: none; }
  .kt-schritte.visible .o-w1, .kt-schritte.visible .o-w2 { animation: none; }
}
