/* ==========================================================
   Kontakt -- eigenes Seitenmodul ueber troncom.css.
   Eigenes visuelles Mittel: Formularfelder als Linien und
   ein Nachrichtenfenster, das beim Ausfuellen mitschreibt.
   ========================================================== */
.kt {
  --rule: rgba(255,255,255,.14);
  --rule-strong: rgba(255,255,255,.3);
  --dim: rgba(255,255,255,.5);
  --mono: ui-monospace, SFMono-Regular, "SF Mono", Menlo, Consolas, monospace;
}

/* ---------- Buehne ---------- */
.kt-hero {
  max-width: 1300px; margin: 0 auto;
  padding: clamp(140px, 18vh, 230px) clamp(20px, 5vw, 80px) clamp(56px, 7vw, 92px);
  display: grid; grid-template-columns: minmax(0, 1fr) clamp(230px, 30vw, 380px);
  gap: clamp(34px, 6vw, 90px); align-items: center;
}

/* Zeilenweiser Aufzug der Überschrift */
.kt-hero h1 .kt-ln {
  /* Platz fuer die Unterlaengen: der Aufzugsrahmen schnitt g, p und j ab.
     Die Aussparung wird per negativem Rand wieder eingezogen, damit der
     Zeilenabstand gleich bleibt. Der Startversatz waechst entsprechend,
     sonst luegte die Zeile vor dem Aufzug unten heraus. */
  display: block; overflow: hidden;
  padding-bottom: .16em; margin-bottom: -.16em;
}
.kt-hero h1 .kt-ln > span {
  /* Muss die Zeile doch umbrechen, dann in zwei gleich lange Haelften --
     sonst bliebe auf schmalen Fenstern ein einzelnes Wort stehen. */
  display: block; text-wrap: balance; transform: translateY(125%);
  animation: ktRise .95s cubic-bezier(.16,.8,.3,1) forwards;
  animation-delay: calc(var(--l) * 130ms + 220ms);
}
@keyframes ktRise { to { transform: none; } }
.kt-hero .kt-kicker, .kt-hero .kt-lead {
  opacity: 0; animation: ktAuf .9s cubic-bezier(.25,0,.3,1) forwards;
}
.kt-hero .kt-kicker { animation-delay: .1s; }
.kt-hero .kt-lead   { animation-delay: .6s; }
@keyframes ktAuf { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }

/* ---------- Zifferblatt: die halbe Stunde ---------- */
.kt-hero-bild { justify-self: end; width: 100%; max-width: 380px; }
.uh { display: block; width: 100%; height: auto; overflow: visible; }
.uh * { vector-effect: non-scaling-stroke; }
.uh line, .uh path, .uh circle { fill: none; }

.uh-ring  { stroke: rgba(255,255,255,.12); stroke-width: 1; }
.uh-tick  { stroke: rgba(255,255,255,.22); stroke-width: 1; }
.uh-tick.ist-lang { stroke: rgba(255,255,255,.5); 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-nabe  { fill: #fff; }
.uh-zahl {
  fill: #fff; font-family: inherit; font-size: 76px; font-weight: 600;
  letter-spacing: -.05em;
}
.uh-einheit, .uh-frei {
  fill: rgba(255,255,255,.5);
  font-family: ui-monospace, SFMono-Regular, "SF Mono", Menlo, Consolas, monospace;
  font-size: 13px; letter-spacing: .28em;
}
.uh-frei { fill: #FFC46B; font-size: 11px; }

/* Aufbau: Striche setzen sich, Bogen zieht auf, Zeiger dreht ein */
.uh-tick { opacity: 0; animation: ktAufOnly .5s ease-out forwards; animation-delay: calc(var(--i) * 14ms + 300ms); }
@keyframes ktAufOnly { to { opacity: 1; } }
.uh-ring { opacity: 0; animation: ktAufOnly .8s ease-out .2s forwards; }
.uh-bogen {
  stroke-dasharray: var(--len, 340); stroke-dashoffset: var(--len, 340);
  animation: ktBogen 1.5s cubic-bezier(.22,.61,.28,1) 1.1s forwards;
}
@keyframes ktBogen { to { stroke-dashoffset: 0; } }
.uh-zeiger {
  transform-origin: 160px 160px; transform: rotate(-92deg); opacity: 0;
  animation: ktZeiger 1.6s cubic-bezier(.22,.61,.28,1) 1.1s forwards,
             ktAtmen 6s ease-in-out 2.8s infinite;
}
@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); } }
.uh-nabe, .uh-zahl, .uh-einheit, .uh-frei { opacity: 0; animation: ktAufOnly .8s ease-out 1.5s forwards; }
.uh-zahl { animation-delay: 1.6s; }
.uh-einheit { animation-delay: 1.72s; }
.uh-frei { animation-delay: 1.86s; }
.kt-kicker {
  display: flex; align-items: center; gap: 14px;
  margin-bottom: clamp(24px, 3.2vw, 38px);
  font-family: var(--mono); font-size: clamp(10px, 1vw, 12px);
  letter-spacing: .2em; text-transform: uppercase; color: var(--dim);
}
.kt-kicker::before { content: ''; width: 40px; height: 1px; background: rgba(255,255,255,.4); }
.kt-hero h1 {
  /* Groesse so gewaehlt, dass beide Saetze je auf eine Zeile passen --
     die Spalte begrenzt die Breite, nicht eine ch-Angabe. */
  font-size: clamp(30px, 4vw, 58px); font-weight: 600;
  letter-spacing: -.035em; line-height: 1.08; max-width: none;
}
.kt-lead {
  margin-top: clamp(24px, 3vw, 36px);
  font-size: clamp(15px, 1.5vw, 19px); line-height: 1.6;
  color: rgba(255,255,255,.62); max-width: 56ch;
}

/* Die Adresse als eigenes Zeichen, nicht als Fließtext */
.kt-mail {
  display: inline-block; margin-top: clamp(30px, 4vw, 48px);
  font-size: clamp(18px, 2.4vw, 32px); font-weight: 500;
  letter-spacing: -.03em; color: #fff; text-decoration: none;
  padding-bottom: 10px;
  background-image: linear-gradient(#fff, #fff);
  background-size: 100% 1px; background-repeat: no-repeat; background-position: 0 100%;
  transition: background-size .5s cubic-bezier(.25,0,.3,1);
}
.kt-mail:hover, .kt-mail:focus-visible { background-size: 40% 1px; }

/* ---------- Abschnitte ---------- */
.kt-sec {
  max-width: 1300px; margin: 0 auto;
  padding: clamp(56px, 7.5vw, 104px) clamp(20px, 5vw, 80px);
  border-top: 1px solid var(--rule);
}
.kt-num {
  display: block; margin-bottom: clamp(14px, 1.8vw, 20px);
  font-family: var(--mono); font-size: clamp(9.5px, .95vw, 11px);
  letter-spacing: .2em; text-transform: uppercase; color: var(--dim);
}
.kt-kopf { margin-bottom: clamp(36px, 4.6vw, 60px); }
.kt-kopf h2 {
  font-size: clamp(28px, 3.9vw, 54px); font-weight: 600;
  letter-spacing: -.032em; line-height: 1.05;
}

/* ---------- Formular und Vorschau nebeneinander ---------- */
.kt-split {
  display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, .9fr);
  gap: clamp(34px, 5vw, 78px); align-items: start;
}

/* ---------- Fortschrittsschiene ---------- */
.kt-form { position: relative; padding-left: clamp(0px, 3.4vw, 46px); }
.kt-rail { position: absolute; left: 11px; top: 12px; bottom: 78px; width: 2px; }
.kt-rail-linie { position: absolute; inset: 0; background: rgba(255,255,255,.12); display: block; }
.kt-rail-fuell {
  position: absolute; top: 0; left: 0; right: 0; height: 0;
  background: linear-gradient(180deg, #fff 0%, rgba(255,255,255,.55) 100%);
  transition: height .7s cubic-bezier(.25,0,.3,1);
}
.kt-schrittnr {
  position: relative; z-index: 1;
  transition: background .4s ease, color .4s ease, border-color .4s ease, transform .4s cubic-bezier(.34,1.56,.64,1);
}
.kt-schrittnr.ist-fertig { background: #fff; border-color: #fff; color: #000; transform: scale(1.08); }

.kt-feld { border: 0; margin: 0 0 clamp(34px, 4.2vw, 54px); padding: 0; }
.kt-feld legend {
  display: flex; align-items: center; gap: 13px;
  margin-bottom: clamp(18px, 2.2vw, 26px);
  font-size: clamp(14.5px, 1.4vw, 18px); font-weight: 600; letter-spacing: -.02em;
}
.kt-schrittnr {
  display: grid; place-items: center; flex: 0 0 auto;
  width: 24px; height: 24px; border-radius: 50%;
  border: 1px solid var(--rule-strong);
  font-family: var(--mono); font-size: 11px; color: rgba(255,255,255,.75);
}

/* Auswahl der Sparte: Zeilen, kein Kachelraster */
.kt-wahlen { display: grid; border-top: 1px solid var(--rule); }
.kt-wahl { display: block; position: relative; cursor: pointer; border-bottom: 1px solid var(--rule); }
.kt-wahl input { position: absolute; opacity: 0; width: 1px; height: 1px; }
.kt-wahl-in {
  display: grid; grid-template-columns: 16px minmax(0,1fr);
  align-items: baseline; column-gap: 14px; row-gap: 0;
  padding: clamp(13px, 1.5vw, 17px) 0 clamp(13px, 1.5vw, 17px) 4px;
  transition: padding-left .35s cubic-bezier(.25,0,.3,1);
}
.kt-wahl-in::before {
  content: ''; width: 10px; height: 10px; border-radius: 50%;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.4);
  transition: box-shadow .3s ease, background .3s ease;
}
/* Beide Textteile gehoeren in die zweite Spalte -- sonst rutscht das
   <i> in die 16px-Spalte und bricht Zeichen fuer Zeichen um. */
.kt-wahl b, .kt-wahl i { grid-column: 2; }
.kt-wahl b { font-size: clamp(14px, 1.3vw, 16.5px); font-weight: 600; letter-spacing: -.018em; color: rgba(255,255,255,.72); }
.kt-wahl i {
  display: block; margin-top: 4px; font-style: normal;
  font-size: clamp(12px, 1.08vw, 13.5px); line-height: 1.45; color: rgba(255,255,255,.42);
}
.kt-wahl input:checked + .kt-wahl-in { padding-left: 14px; }
.kt-wahl input:checked + .kt-wahl-in::before { background: #fff; box-shadow: inset 0 0 0 1px #fff; }
.kt-wahl input:checked + .kt-wahl-in b { color: #fff; }
.kt-wahl input:focus-visible + .kt-wahl-in { outline: 1px solid rgba(255,255,255,.55); outline-offset: 3px; }

/* Unternehmensgroesse */
.kt-chips { display: flex; flex-wrap: wrap; gap: 10px; }
.kt-chip { cursor: pointer; }
.kt-chip input { position: absolute; opacity: 0; width: 1px; height: 1px; }
.kt-chip span {
  display: inline-block; padding: 11px 20px;
  border: 1px solid var(--rule-strong);
  font-family: var(--mono); font-size: clamp(10px, .95vw, 11.5px);
  letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.66);
  transition: background .3s ease, color .3s ease, border-color .3s ease;
}
.kt-chip input:checked + span { background: #fff; border-color: #fff; color: #000; }
.kt-chip input:focus-visible + span { outline: 1px solid rgba(255,255,255,.55); outline-offset: 3px; }

/* Textfeld und Zeilen: Linien statt Kaesten */
.kt-feld textarea {
  width: 100%; resize: vertical; min-height: 108px;
  padding: 14px 0; border: 0; border-bottom: 1px solid var(--rule-strong);
  background: transparent; color: #fff;
  font-family: inherit; font-size: clamp(14px, 1.3vw, 16px); line-height: 1.6;
  transition: border-color .3s ease;
}
.kt-feld textarea::placeholder { color: rgba(255,255,255,.3); }
.kt-feld textarea:focus { outline: none; border-bottom-color: #fff; }
.kt-zaehler {
  display: block; margin-top: 10px; text-align: right;
  font-family: var(--mono); font-size: 10px; letter-spacing: .1em; color: rgba(255,255,255,.34);
}
.kt-zaehler b { color: rgba(255,255,255,.6); font-weight: 400; }

.kt-zeilen { display: grid; gap: clamp(16px, 2vw, 24px); }
.kt-zeile { display: grid; grid-template-columns: clamp(96px, 11vw, 140px) minmax(0,1fr); align-items: center; gap: 16px; }
.kt-zeile > span {
  font-family: var(--mono); font-size: clamp(9px, .88vw, 10.5px);
  letter-spacing: .16em; text-transform: uppercase; color: var(--dim);
}
.kt-zeile input {
  width: 100%; padding: 11px 0; border: 0; border-bottom: 1px solid var(--rule);
  background: transparent; color: #fff;
  font-family: inherit; font-size: clamp(14px, 1.3vw, 16px);
  transition: border-color .3s ease;
}
.kt-zeile input::placeholder { color: rgba(255,255,255,.26); }
.kt-zeile input:focus { outline: none; border-bottom-color: #fff; }

.kt-abschluss { display: flex; flex-wrap: wrap; align-items: center; gap: clamp(16px, 2.4vw, 30px); }
.kt-senden {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 17px 30px; border: 0; border-radius: 100px;
  background: #fff; color: #000; cursor: pointer;
  font-family: inherit; font-size: clamp(13px, 1.2vw, 15px); font-weight: 600; letter-spacing: -.01em;
  transition: transform .3s cubic-bezier(.25,0,.3,1), box-shadow .3s ease;
}
.kt-senden i { font-size: 12px; transition: transform .3s cubic-bezier(.25,0,.3,1); }
.kt-senden:hover { box-shadow: 0 14px 40px rgba(255,255,255,.16); }
.kt-senden:hover i { transform: translateX(4px); }
.kt-senden:active { transform: translateY(1px); }
.kt-hinweis { max-width: 34ch; font-size: clamp(11.5px, 1.05vw, 13px); line-height: 1.55; color: rgba(255,255,255,.4); }

/* ---------- Nachrichtenfenster ---------- */
.kt-vorschau { position: sticky; top: clamp(110px, 14vh, 150px); }
.kt-fenster {
  border: 1px solid var(--rule-strong);
  background: linear-gradient(180deg, rgba(255,255,255,.05) 0%, rgba(255,255,255,0) 46%), #000;
}
.kt-leiste {
  display: flex; align-items: center; gap: 7px;
  padding: 13px 16px; border-bottom: 1px solid var(--rule);
}
.kt-punkt { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,.22); }
.kt-titel {
  margin-left: 10px;
  font-family: var(--mono); font-size: 9.5px; letter-spacing: .18em;
  text-transform: uppercase; color: var(--dim);
}
.kt-kopfzeilen { margin: 0; padding: clamp(14px, 1.8vw, 20px) clamp(16px, 2vw, 22px); border-bottom: 1px solid var(--rule); }
.kt-kopfzeilen > div { display: grid; grid-template-columns: 74px minmax(0,1fr); gap: 12px; align-items: baseline; }
.kt-kopfzeilen > div + div { margin-top: 9px; }
.kt-kopfzeilen dt {
  font-family: var(--mono); font-size: 9.5px; letter-spacing: .16em;
  text-transform: uppercase; color: var(--dim);
}
.kt-kopfzeilen dd { margin: 0; font-size: clamp(12.5px, 1.15vw, 14px); color: rgba(255,255,255,.9); }

.kt-koerper {
  margin: 0; padding: clamp(18px, 2.2vw, 26px) clamp(16px, 2vw, 22px) clamp(26px, 3vw, 36px);
  min-height: 260px;
  font-family: var(--mono); font-size: clamp(11px, 1.02vw, 12.5px); line-height: 1.85;
  color: rgba(255,255,255,.74);
  white-space: pre-wrap; word-break: break-word;
}
/* Der Cursor blinkt weiter, auch wenn gerade niemand tippt */
.kt-koerper::after {
  content: ''; display: inline-block; vertical-align: text-bottom;
  width: 7px; height: 1.05em; margin-left: 3px; background: #fff;
  animation: ktBlink 1.15s steps(1, end) infinite;
}
@keyframes ktBlink { 0%, 49% { opacity: 1; } 50%, 100% { opacity: 0; } }

/* ---------- Was danach passiert ---------- */
.kt-schritte { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: clamp(20px, 3.4vw, 56px); }
.kt-schritt { position: relative; padding-top: clamp(20px, 2.4vw, 28px); }

/* Oberkante zieht sich beim Eintreten auf */
.kt-linie {
  position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: rgba(255,255,255,.3);
  transform: scaleX(0); transform-origin: left center;
  transition: transform .9s cubic-bezier(.25,0,.3,1);
  transition-delay: calc(var(--n) * 150ms);
}
.kt-schritte.visible .kt-linie { transform: scaleX(1); }

/* --- Die Zeichnungen --- */
.kt-bild { margin-bottom: clamp(18px, 2.2vw, 28px); }
.ob3 { display: block; width: 100%; max-width: 240px; height: auto; overflow: visible; }
.ob3 * { vector-effect: non-scaling-stroke; fill: none; }
.o-kasten, .o-brief { stroke: rgba(255,255,255,.42); stroke-width: 1.3; stroke-linejoin: round; }
.o-klappe { stroke: rgba(255,255,255,.28); stroke-width: 1.2; stroke-linejoin: round; }
.o-linien line, .o-z { stroke: rgba(255,255,255,.3); stroke-width: 1.2; }
.o-bogen  { stroke: #FFC46B; stroke-width: 1.6; stroke-dasharray: 5 4; }
.o-spitze { stroke: #FFC46B; stroke-width: 1.6; stroke-linejoin: round; stroke-linecap: round; }
.o-punkt  { fill: #FFC46B; stroke: none; }
.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  { stroke: rgba(255,255,255,.35); stroke-width: 1; }
.o-spanne { stroke: rgba(255,255,255,.35); stroke-width: 1; }
.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-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-klappe, .o-brief, .o-bogen, .o-antwort, .o-spanne {
  stroke-dasharray: var(--len, 620); stroke-dashoffset: var(--len, 620);
  transition: stroke-dashoffset 1.2s cubic-bezier(.25,0,.3,1);
  transition-delay: calc(var(--n) * 150ms + 200ms);
}
.kt-schritte.visible .o-kasten, .kt-schritte.visible .o-klappe, .kt-schritte.visible .o-brief,
.kt-schritte.visible .o-bogen, .kt-schritte.visible .o-antwort,
.kt-schritte.visible .o-spanne { stroke-dashoffset: 0; }

.o-linien line, .o-z, .o-spitze, .o-punkt, .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-linien line, .kt-schritte.visible .o-z,
.kt-schritte.visible .o-spitze, .kt-schritte.visible .o-punkt,
.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; }

/* Wellenform wächst 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); } }

/* Der Rückweg der Antwort pulst weiter */
.kt-schritte.visible .o-punkt { animation: ktPunkt 3.2s ease-out 1.6s infinite; transform-box: fill-box; transform-origin: center; }
@keyframes ktPunkt { 0% { opacity: 1; transform: scale(1); } 60%, 100% { opacity: .25; transform: scale(1.5); } }

/* --- Text --- */
.kt-inhalt > * {
  opacity: 0; transform: translateY(12px);
  transition: opacity .7s cubic-bezier(.25,0,.3,1), transform .7s cubic-bezier(.25,0,.3,1);
}
.kt-inhalt > *:nth-child(1) { transition-delay: calc(var(--n) * 150ms + 460ms); }
.kt-inhalt > *:nth-child(2) { transition-delay: calc(var(--n) * 150ms + 530ms); }
.kt-inhalt > *:nth-child(3) { transition-delay: calc(var(--n) * 150ms + 600ms); }
.kt-inhalt > *:nth-child(4) { transition-delay: calc(var(--n) * 150ms + 670ms); }
.kt-schritte.visible .kt-inhalt > * { opacity: 1; transform: none; }

.kt-nr {
  display: block; margin-bottom: clamp(9px, 1vw, 13px);
  font-family: var(--mono); font-weight: 700; font-size: clamp(11px, 1.05vw, 13px);
  letter-spacing: .1em; color: rgba(255,255,255,.4);
}
.kt-schritt h3 { font-size: clamp(18px, 1.9vw, 25px); font-weight: 600; letter-spacing: -.03em; }
.kt-zeit {
  display: block; margin-top: 9px;
  font-family: var(--mono); font-size: clamp(9px, .88vw, 10.5px);
  letter-spacing: .14em; text-transform: uppercase; color: rgba(255,255,255,.72);
}
.kt-schritt p { margin-top: clamp(11px, 1.2vw, 15px); font-size: clamp(12.5px, 1.15vw, 14.5px); line-height: 1.6; color: rgba(255,255,255,.54); }

/* ---------- Direkt ---------- */
.kt-direkt {
  max-width: 1300px; margin: 0 auto;
  padding: clamp(56px, 8vw, 116px) clamp(20px, 5vw, 80px);
  border-top: 1px solid var(--rule);
  display: grid; grid-template-columns: minmax(0,1fr) minmax(0,.9fr);
  gap: clamp(30px, 5vw, 80px); align-items: end;
}
.kt-direkt h2 { font-size: clamp(26px, 3.4vw, 46px); font-weight: 600; letter-spacing: -.032em; line-height: 1.06; }
.kt-direkt > div > p { margin-top: clamp(16px, 2vw, 22px); font-size: clamp(14px, 1.3vw, 16.5px); line-height: 1.6; color: rgba(255,255,255,.58); max-width: 44ch; }
.kt-mail-gross { margin-top: 0; font-size: clamp(20px, 3vw, 40px); }
.kt-recht { margin-top: clamp(18px, 2.2vw, 26px); font-size: clamp(12px, 1.1vw, 13.5px); color: rgba(255,255,255,.4); }
.kt-recht a { color: rgba(255,255,255,.7); text-decoration: underline; text-underline-offset: 3px; }

@media (max-width: 980px) {
  .kt-hero { grid-template-columns: 1fr; gap: clamp(34px, 7vw, 48px); }
  .kt-hero-bild { justify-self: start; max-width: 260px; }
  .kt-split { grid-template-columns: 1fr; }
  .kt-vorschau { position: static; }
  .kt-schritte { grid-template-columns: 1fr; gap: clamp(30px, 6vw, 40px); }
  .ob3 { max-width: 200px; }
  .kt-direkt { grid-template-columns: 1fr; align-items: start; }
}
@media (max-width: 620px) {
  .kt-zeile { grid-template-columns: 1fr; gap: 6px; }
}

@media (prefers-reduced-motion: reduce) {
  .kt-mail, .kt-wahl-in, .kt-senden, .kt-senden i, .kt-schrittnr, .kt-rail-fuell { transition: none; }
  .kt-koerper::after { animation: none; }
  .kt-linie { transition: none; transform: scaleX(1); }
  .o-kasten, .o-klappe, .o-brief, .o-bogen, .o-antwort, .o-spanne { transition: none; stroke-dashoffset: 0; }
  .o-linien line, .o-z, .o-spitze, .o-punkt, .o-achse, .o-marke, .o-raster line,
  .o-person, .o-mass line, .o-block, .o-ecke, .kt-inhalt > * { transition: none; opacity: 1; transform: none; }
  .o-w1, .o-w2 { transition: none; transform: none; animation: none; }
  .kt-schritte.visible .o-punkt { animation: none; }
  .kt-hero h1 .kt-ln > span { transform: none; animation: none; }
  .kt-hero .kt-kicker, .kt-hero .kt-lead { opacity: 1; animation: none; }
  .uh-tick, .uh-ring, .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; }
}

/* ---------- Spartenabhaengige Fragen ---------- */
.kt-frageblock[hidden] { display: none; }
.kt-frage {
  display: block; margin-bottom: clamp(12px, 1.4vw, 16px);
  font-size: clamp(13.5px, 1.25vw, 16px); font-weight: 500;
  letter-spacing: -.014em; color: rgba(255,255,255,.82);
}
.kt-zusatz { margin-top: clamp(18px, 2.2vw, 26px); }
.kt-zusatz > span { color: var(--dim); }
