/* ==========================================================
   Beratung -- eigenes Seitenmodul ueber troncom.css.
   Bewusst anders als die Produktseiten: keine Video-Buehne,
   keine Karten-Raster, sondern eine redaktionelle Anlage
   mit Tagesordnung und Zweispalter.
   ========================================================== */
.bt {
  --rule: rgba(255,255,255,.14);
  --dim: rgba(255,255,255,.5);
  --rule-strong: rgba(255,255,255,.3);
  --mono: ui-monospace, SFMono-Regular, "SF Mono", Menlo, Consolas, monospace;
}

/* ---------- Buehne: rein typografisch ---------- */
.bt-hero {
  padding: clamp(150px, 20vh, 260px) clamp(20px, 5vw, 80px) clamp(70px, 9vw, 120px);
  max-width: 1300px;
  margin: 0 auto;
}

.bt-kicker {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--mono);
  font-size: clamp(10px, 1vw, 12px);
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--dim);
  margin-bottom: clamp(26px, 3.5vw, 40px);
}
.bt-kicker::before { content: ''; width: 40px; height: 1px; background: rgba(255,255,255,.4); }

.bt-hero h1 {
  font-size: clamp(38px, 6.4vw, 92px);
  font-weight: 600;
  letter-spacing: -.035em;
  line-height: 1.02;
  max-width: 16ch;
}

.bt-hero .bt-lead {
  margin-top: clamp(26px, 3.4vw, 40px);
  font-size: clamp(16px, 1.55vw, 20px);
  line-height: 1.6;
  color: rgba(255,255,255,.66);
  max-width: 58ch;
}

.bt-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: clamp(40px, 5.2vw, 74px); }

/* ---------- Abschnitt und Kopf ---------- */
.bt-sec {
  max-width: 1300px; margin: 0 auto;
  padding: clamp(56px, 7.5vw, 108px) clamp(20px, 5vw, 80px);
  border-top: 1px solid var(--rule);
}
.bt-kopf {
  display: grid; grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: clamp(24px, 4vw, 72px); align-items: end;
  margin-bottom: clamp(40px, 5vw, 68px);
}
.bt-num {
  display: block; margin-bottom: clamp(16px, 2vw, 22px);
  font-family: var(--mono); font-size: clamp(9.5px, .95vw, 11px);
  letter-spacing: .2em; text-transform: uppercase; color: var(--dim);
}
.bt-kopf h2 {
  font-size: clamp(28px, 3.9vw, 54px); font-weight: 600;
  letter-spacing: -.032em; line-height: 1.05;
}
.bt-kopf > p {
  font-size: clamp(14px, 1.32vw, 17px); line-height: 1.62; color: rgba(255,255,255,.6);
}
@media (max-width: 880px) { .bt-kopf { grid-template-columns: 1fr; align-items: start; } }

/* ---------- Zwei Formen ---------- */
.zw { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: clamp(1px, .2vw, 3px); }
.zw-karte {
  padding: clamp(26px, 3.2vw, 44px);
  border: 1px solid var(--rule);
  opacity: 0; transform: translateY(18px);
  transition: opacity .85s cubic-bezier(.25,0,.3,1), transform .85s cubic-bezier(.25,0,.3,1);
  transition-delay: calc(var(--z) * 180ms);
}
.zw.visible .zw-karte { opacity: 1; transform: none; }
.zw-kick {
  display: inline-block; padding: 6px 11px; margin-bottom: clamp(18px, 2.2vw, 26px);
  font-family: var(--mono); font-size: clamp(8.5px, .82vw, 10px);
  letter-spacing: .18em; text-transform: uppercase;
  color: rgba(255,255,255,.8); border: 1px solid var(--rule-strong);
}
/* Objekte statt Striche: Landkarte und Kalenderblatt */
.ob { display: block; width: 100%; height: auto; margin: clamp(6px, 1vw, 12px) 0 clamp(22px, 2.6vw, 32px); overflow: visible; }
.ob * { vector-effect: non-scaling-stroke; fill: none; }

.ob-rahmen  { stroke: rgba(255,255,255,.4); stroke-width: 1.2; }
.ob-hoehen path { stroke: rgba(255,255,255,.13); stroke-width: 1; }
.ob-raster line { stroke: rgba(255,255,255,.08); stroke-width: 1; }
.ob-route   { stroke: rgba(255,255,255,.75); stroke-width: 1.6; stroke-linejoin: round; stroke-linecap: round; }
.ob-weiter  { stroke: url(#obFade); stroke-width: 1.6; stroke-dasharray: 5 4; }
.ob-punkte circle { fill: #000; stroke: rgba(255,255,255,.75); stroke-width: 1.3; }
.ob-ring    { stroke: #FFC46B; stroke-width: 1.3; }
.ob-kern    { fill: #FFC46B; }
.ob-start   { stroke: rgba(255,255,255,.6); stroke-width: 1.4; stroke-linejoin: round; stroke-linecap: round; }

.ob-kopf    { stroke: rgba(255,255,255,.4); stroke-width: 1.2; }
.ob-oesen line { stroke: rgba(255,255,255,.5); stroke-width: 1.4; stroke-linecap: round; }
.ob-tag     { fill: rgba(255,255,255,.07); stroke: rgba(255,255,255,.14); stroke-width: 1; }
.ob-tag.ist-markiert { fill: rgba(255,196,107,.9); stroke: #FFC46B; }
.ob-klammer { stroke: rgba(255,255,255,.45); stroke-width: 1.2; }

/* Eintritt */
.ob-rahmen, .ob-kopf, .ob-route, .ob-weiter, .ob-klammer, .ob-start {
  stroke-dasharray: var(--len, 720); stroke-dashoffset: var(--len, 720);
  transition: stroke-dashoffset 1.3s cubic-bezier(.25,0,.3,1);
  transition-delay: calc(var(--z) * 180ms + 240ms);
}
.zw.visible .ob-rahmen, .zw.visible .ob-kopf, .zw.visible .ob-route,
.zw.visible .ob-weiter, .zw.visible .ob-klammer, .zw.visible .ob-start { stroke-dashoffset: 0; }

.ob-hoehen path, .ob-raster line, .ob-oesen line {
  opacity: 0; transition: opacity 1s ease-out;
  transition-delay: calc(var(--z) * 180ms + 520ms);
}
.zw.visible .ob-hoehen path, .zw.visible .ob-raster line, .zw.visible .ob-oesen line { opacity: 1; }

.ob-punkte circle, .ob-tag {
  opacity: 0; transition: opacity .5s ease-out;
  transition-delay: calc(var(--z) * 180ms + var(--k, 0) * 70ms + 620ms);
}
.zw.visible .ob-punkte circle, .zw.visible .ob-tag { opacity: 1; }

.ob-hier { opacity: 0; transform: scale(.4); transform-box: fill-box; transform-origin: center;
  transition: opacity .5s ease-out, transform .6s cubic-bezier(.34,1.56,.64,1);
  transition-delay: calc(var(--z) * 180ms + 1s); }
.zw.visible .ob-hier { opacity: 1; transform: none; }
/* Der Standort pulst weiter - die Beratung laeuft */
.zw.visible .ob-ring { animation: obPuls 3.6s ease-out 1.8s infinite; transform-box: fill-box; transform-origin: center; }
@keyframes obPuls { 0% { opacity: .9; transform: scale(1); } 70%, 100% { opacity: 0; transform: scale(2.1); } }

.zw-karte h3 {
  font-size: clamp(24px, 2.9vw, 40px); font-weight: 600;
  letter-spacing: -.035em; line-height: 1.02;
}
.zw-karte > p {
  margin-top: clamp(14px, 1.6vw, 20px);
  font-size: clamp(13.5px, 1.22vw, 15.5px); line-height: 1.66; color: rgba(255,255,255,.6);
}
.zw-liste { list-style: none; margin: clamp(22px, 2.6vw, 32px) 0 0; padding: 0; border-top: 1px solid var(--rule); }
.zw-liste li {
  position: relative; padding: clamp(11px, 1.2vw, 14px) 0 clamp(11px, 1.2vw, 14px) 22px;
  border-bottom: 1px solid var(--rule);
  font-size: clamp(12.5px, 1.15vw, 14px); line-height: 1.5; color: rgba(255,255,255,.76);
}
.zw-liste li::before {
  content: ''; position: absolute; left: 0; top: 50%; width: 8px; height: 1px;
  background: rgba(255,255,255,.45);
}
@media (max-width: 820px) { .zw { grid-template-columns: 1fr; } }

/* ---------- Zuschnitt nach Unternehmensgroesse ---------- */
.zs { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: clamp(18px, 2.6vw, 42px); }
.zs-stufe {
  padding-top: clamp(18px, 2vw, 24px); border-top: 1px solid var(--rule-strong);
  opacity: 0; transform: translateY(16px);
  transition: opacity .8s cubic-bezier(.25,0,.3,1), transform .8s cubic-bezier(.25,0,.3,1);
  transition-delay: calc(var(--g) * 160ms + 120ms);
}
.zs.visible .zs-stufe { opacity: 1; transform: none; }
.hs { display: block; width: clamp(56px, 6vw, 80px); height: auto; margin-bottom: clamp(14px, 1.6vw, 20px); overflow: visible; }
.hs * { vector-effect: non-scaling-stroke; }
.hs-koerper { fill: rgba(255,255,255,.04); stroke: rgba(255,255,255,.4); stroke-width: 1.2; }
.hs-fenster { fill: rgba(255,255,255,.3); stroke: none; }
.hs-boden   { stroke: rgba(255,255,255,.28); stroke-width: 1; }
.hs-koerper, .hs-boden {
  stroke-dasharray: var(--len, 300); stroke-dashoffset: var(--len, 300);
  transition: stroke-dashoffset 1.1s cubic-bezier(.25,0,.3,1);
  transition-delay: calc(var(--g) * 160ms + 200ms);
}
.zs.visible .hs-koerper, .zs.visible .hs-boden { stroke-dashoffset: 0; }
.hs-fenster { opacity: 0; transition: opacity .45s ease-out;
  transition-delay: calc(var(--g) * 160ms + var(--k) * 60ms + 640ms); }
.zs.visible .hs-fenster { opacity: 1; }

.zs-groesse {
  display: block; font-family: var(--mono); font-size: clamp(9px, .88vw, 10.5px);
  letter-spacing: .18em; text-transform: uppercase; color: var(--dim);
}
.zs-stufe h3 {
  margin-top: clamp(9px, 1vw, 13px);
  font-size: clamp(20px, 2.2vw, 29px); font-weight: 600; letter-spacing: -.03em;
}
/* Balken zeigt, wie der Umfang mitwaechst */
.zs-bar {
  display: block; height: 4px; margin: clamp(16px, 1.8vw, 22px) 0 clamp(18px, 2vw, 24px);
  background: rgba(255,255,255,.09);
}
.zs-bar i {
  display: block; height: 100%; width: var(--f); background: #FFC46B;
  transform: scaleX(0); transform-origin: left center;
  transition: transform 1s cubic-bezier(.22,.61,.28,1);
  transition-delay: calc(var(--g) * 160ms + 420ms);
}
.zs.visible .zs-bar i { transform: scaleX(1); }
.zs-stufe dl { margin: 0; }
.zs-stufe dl > div {
  display: grid; grid-template-columns: 38% 1fr; gap: 12px; align-items: baseline;
  padding: clamp(9px, 1vw, 12px) 0; border-bottom: 1px solid var(--rule);
}
.zs-stufe dt {
  font-family: var(--mono); font-size: clamp(8.5px, .8vw, 10px);
  letter-spacing: .14em; text-transform: uppercase; color: var(--dim);
}
.zs-stufe dd { margin: 0; font-size: clamp(12.5px, 1.12vw, 14px); color: rgba(255,255,255,.86); }
.zs-fuss {
  margin-top: clamp(24px, 3vw, 36px);
  font-size: clamp(12.5px, 1.15vw, 14px); line-height: 1.6; color: rgba(255,255,255,.42);
  max-width: 62ch;
}
@media (max-width: 860px) { .zs { grid-template-columns: 1fr; gap: clamp(26px, 6vw, 34px); } }

/* ---------- Tagesordnung ---------- */
.ag { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: clamp(28px, 4.5vw, 76px); }
.ag-tag {
  opacity: 0; transform: translateY(16px);
  transition: opacity .8s cubic-bezier(.25,0,.3,1), transform .8s cubic-bezier(.25,0,.3,1);
  transition-delay: calc(var(--t) * 200ms);
}
.ag.visible .ag-tag { opacity: 1; transform: none; }
.ag-tag > header {
  display: flex; align-items: baseline; gap: 14px;
  padding-bottom: clamp(16px, 1.8vw, 22px); border-bottom: 1px solid var(--rule-strong);
}
.ag-nr {
  font-family: var(--mono); font-size: clamp(9px, .88vw, 10.5px);
  letter-spacing: .18em; text-transform: uppercase; color: var(--dim);
}
.ag-tag h3 { font-size: clamp(19px, 2vw, 26px); font-weight: 600; letter-spacing: -.03em; }
.ag-slots { position: relative; list-style: none; margin: 0; padding: 0; }
/* Zeitachse laeuft durch den Tag */
.ag-slots {
  --zeitspalte: clamp(46px, 4.8vw, 60px);
  --achsgasse:  clamp(26px, 3.2vw, 44px);
}
.ag-slots::before {
  content: ''; position: absolute; top: 0; bottom: 0;
  left: calc(var(--zeitspalte) + var(--achsgasse) / 2);
  width: 1px; background: var(--rule);
  transform: scaleY(0); transform-origin: top center;
  transition: transform 1.2s cubic-bezier(.25,0,.3,1);
  transition-delay: calc(var(--t) * 200ms + 220ms);
}
.ag.visible .ag-slots::before { transform: scaleY(1); }

.ag-slot {
  position: relative;
  display: grid;
  grid-template-columns: var(--zeitspalte) minmax(0,1fr);
  column-gap: var(--achsgasse);
  padding: clamp(16px, 1.9vw, 24px) 0;
  border-bottom: 1px solid var(--rule);
}
.ag-slot > div { grid-column: 2; }
/* Punkt sitzt mittig auf der Achse, nicht auf der Uhrzeit */
.ag-slot::before {
  content: ''; position: absolute;
  left: calc(var(--zeitspalte) + var(--achsgasse) / 2 - 3px);
  top: calc(clamp(16px, 1.9vw, 24px) + 5px);
  width: 7px; height: 7px; border-radius: 50%;
  background: #000; box-shadow: inset 0 0 0 1px rgba(255,255,255,.7);
  transform: scale(0);
  transition: transform .45s cubic-bezier(.34,1.56,.64,1);
  transition-delay: calc(var(--t) * 200ms + var(--s) * 110ms + 420ms);
}
.ag.visible .ag-slot::before { transform: scale(1); }

.ag-zeit {
  grid-column: 1; align-self: start; text-align: right;
  font-family: var(--mono); font-size: clamp(10px, .95vw, 12px);
  letter-spacing: .04em; color: rgba(255,255,255,.5); padding-top: 2px;
}
.ag-slot h4 { font-size: clamp(14.5px, 1.35vw, 17px); font-weight: 600; letter-spacing: -.018em; }
.ag-slot p { margin-top: 7px; font-size: clamp(12.5px, 1.14vw, 14px); line-height: 1.6; color: rgba(255,255,255,.56); }
@media (max-width: 860px) { .ag { grid-template-columns: 1fr; } }

/* ---------- Ergebnisdokumente ---------- */
.dk { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 0; }
.dk-fig { display: block; width: clamp(40px, 4.4vw, 58px); height: auto; overflow: visible; }
.dk-fig * { vector-effect: non-scaling-stroke; fill: none; }
.dk-blatt { stroke: rgba(255,255,255,.45); stroke-width: 1.2; stroke-linejoin: round; }
.dk-ecke  { stroke: rgba(255,255,255,.32); stroke-width: 1; }
.dk-inhalt line, .dk-inhalt path, .dk-inhalt rect { stroke: rgba(255,255,255,.42); stroke-width: 1; }
.dk-inhalt circle { fill: rgba(255,255,255,.5); stroke: none; }
.dk-haken { stroke: #7CF5B0; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }

.dk-blatt, .dk-ecke {
  stroke-dasharray: var(--len, 260); stroke-dashoffset: var(--len, 260);
  transition: stroke-dashoffset 1s cubic-bezier(.25,0,.3,1);
  transition-delay: calc(var(--d) * 130ms + 220ms);
}
.dk.visible .dk-blatt, .dk.visible .dk-ecke { stroke-dashoffset: 0; }
.dk-inhalt { opacity: 0; transition: opacity .7s ease-out; transition-delay: calc(var(--d) * 130ms + 620ms); }
.dk.visible .dk-inhalt { opacity: 1; }

.dk li {
  display: grid; grid-template-columns: auto minmax(0,1fr); gap: clamp(14px, 1.8vw, 24px);
  padding: clamp(22px, 2.6vw, 32px) clamp(20px, 2.4vw, 34px) clamp(22px, 2.6vw, 32px) 0;
  border-top: 1px solid var(--rule);
  opacity: 0; transform: translateY(14px);
  transition: opacity .75s cubic-bezier(.25,0,.3,1), transform .75s cubic-bezier(.25,0,.3,1);
  transition-delay: calc(var(--d) * 130ms + 120ms);
}
.dk.visible li { opacity: 1; transform: none; }
.dk-nr {
  display: block; margin-bottom: 8px;
  font-family: var(--mono); font-size: clamp(9.5px, .9vw, 11px);
  letter-spacing: .16em; color: var(--dim);
}
.dk li h3 { font-size: clamp(16px, 1.6vw, 21px); font-weight: 600; letter-spacing: -.024em; }
.dk li p { margin-top: 8px; font-size: clamp(12.5px, 1.15vw, 14px); line-height: 1.6; color: rgba(255,255,255,.56); }
@media (max-width: 780px) { .dk { grid-template-columns: 1fr; } }

/* ---------- Fragen: offen, zweispaltig ---------- */
.fr {
  display: grid; grid-template-columns: repeat(2, minmax(0,1fr));
  column-gap: clamp(30px, 5vw, 88px); row-gap: 0;
}
.fr-item {
  padding: clamp(22px, 2.6vw, 32px) 0;
  border-top: 1px solid var(--rule);
  opacity: 0; transform: translateY(14px);
  transition: opacity .7s cubic-bezier(.25,0,.3,1), transform .7s cubic-bezier(.25,0,.3,1);
  transition-delay: calc(var(--f) * 90ms + 120ms);
}
.fr.visible .fr-item { opacity: 1; transform: none; }
.fr-item h3 {
  font-size: clamp(15px, 1.45vw, 18.5px); font-weight: 600;
  letter-spacing: -.022em; line-height: 1.32;
}
.fr-item p {
  margin-top: clamp(10px, 1.1vw, 14px);
  font-size: clamp(12.5px, 1.15vw, 14.5px); line-height: 1.66; color: rgba(255,255,255,.58);
}
@media (max-width: 820px) { .fr { grid-template-columns: 1fr; } }

/* ---------- Bildband ---------- */
.bt-band { max-width: 1300px; margin: 0 auto; padding: 0 clamp(20px, 5vw, 80px); }
.bt-band figure { margin: 0; position: relative; }
.bt-band img {
  display: block; width: 100%; height: clamp(240px, 34vw, 460px);
  object-fit: cover; filter: grayscale(1) contrast(1.08) brightness(.78);
}
.bt-band figcaption {
  margin-top: 14px;
  font-family: var(--mono); font-size: clamp(9px, .88vw, 10.5px);
  letter-spacing: .18em; text-transform: uppercase; color: var(--dim);
}

/* ---------- Aussage ---------- */
.bt-claim {
  max-width: 1300px; margin: 0 auto;
  padding: clamp(64px, 9vw, 130px) clamp(20px, 5vw, 80px);
  border-top: 1px solid var(--rule);
  display: grid; grid-template-columns: minmax(0, 1fr) clamp(190px, 22vw, 300px);
  gap: clamp(30px, 6vw, 90px); align-items: center;
}
.cl-text { opacity: 0; transform: translateY(16px);
  transition: opacity .85s cubic-bezier(.25,0,.3,1), transform .85s cubic-bezier(.25,0,.3,1); }
.bt-claim.visible .cl-text { opacity: 1; transform: none; }

.br-fig { display: block; width: 100%; height: auto; overflow: visible; }
.br-fig * { vector-effect: non-scaling-stroke; fill: none; }
.br-blatt  { stroke: rgba(255,255,255,.42); stroke-width: 1.3; stroke-linejoin: round; }
.br-ecke   { stroke: rgba(255,255,255,.28); stroke-width: 1; }
.br-kopf rect { fill: rgba(255,255,255,.24); }
.br-saeule { fill: rgba(255,255,255,.16); stroke: rgba(255,255,255,.3); stroke-width: 1; }
.br-basis  { stroke: rgba(255,255,255,.3); stroke-width: 1; }
.br-feld   { stroke: rgba(255,255,255,.22); stroke-width: 1; }
.br-kasten { stroke: rgba(255,255,255,.42); stroke-width: 1.1; }
.br-zeile  { stroke: rgba(255,255,255,.18); stroke-width: 3; stroke-linecap: round; }
.br-haken  { stroke: #7CF5B0; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }

.br-blatt, .br-ecke {
  stroke-dasharray: var(--len, 1200); stroke-dashoffset: var(--len, 1200);
  transition: stroke-dashoffset 1.6s cubic-bezier(.25,0,.3,1) .2s;
}
.bt-claim.visible .br-blatt, .bt-claim.visible .br-ecke { stroke-dashoffset: 0; }
.br-kopf rect, .br-basis, .br-feld, .br-kasten, .br-zeile {
  opacity: 0; transition: opacity .8s ease-out .9s;
}
.bt-claim.visible .br-kopf rect, .bt-claim.visible .br-basis,
.bt-claim.visible .br-feld, .bt-claim.visible .br-kasten, .bt-claim.visible .br-zeile { opacity: 1; }
.br-saeule { transform: scaleY(0); transform-box: fill-box; transform-origin: bottom center;
  transition: transform .7s cubic-bezier(.22,.61,.28,1);
  transition-delay: calc(var(--k) * 90ms + 1s); }
.bt-claim.visible .br-saeule { transform: scaleY(1); }
.br-haken { stroke-dasharray: var(--len, 40); stroke-dashoffset: var(--len, 40);
  transition: stroke-dashoffset .5s ease-out 1.9s; }
.bt-claim.visible .br-haken { stroke-dashoffset: 0; }

@media (max-width: 860px) {
  .bt-claim { grid-template-columns: 1fr; }
  .cl-bild { max-width: 220px; }
}
.bt-claim p {
  font-size: clamp(26px, 3.9vw, 58px); font-weight: 600;
  letter-spacing: -.035em; line-height: 1.1; max-width: 22ch; hyphens: none;
}
.bt-claim span {
  display: block; margin-top: clamp(20px, 2.4vw, 28px);
  font-family: var(--mono); font-size: clamp(9.5px, .92vw, 11px);
  letter-spacing: .18em; text-transform: uppercase; color: var(--dim);
}

/* ---------- Abschluss ---------- */
.bt-end {
  max-width: 1300px; margin: 0 auto;
  padding: clamp(64px, 9vw, 130px) clamp(20px, 5vw, 80px);
  border-top: 1px solid var(--rule);
}
.bt-end h2 {
  font-size: clamp(28px, 4.2vw, 60px); font-weight: 600;
  letter-spacing: -.035em; line-height: 1.05; max-width: 20ch; hyphens: none;
}
.bt-end p {
  margin-top: clamp(18px, 2.2vw, 26px);
  font-size: clamp(15px, 1.4vw, 18px); line-height: 1.6; color: rgba(255,255,255,.6); max-width: 52ch;
}

@media (prefers-reduced-motion: reduce) {
  .zw-karte, .zs-stufe, .ag-tag, .dk li, .fr-item { transition: none; opacity: 1; transform: none; }
  .ob-rahmen, .ob-kopf, .ob-route, .ob-weiter, .ob-klammer, .ob-start,
  .dk-blatt, .dk-ecke, .br-blatt, .br-ecke, .br-haken,
  .hs-koerper, .hs-boden { transition: none; stroke-dashoffset: 0; }
  .ob-hoehen path, .ob-raster line, .ob-oesen line, .ob-punkte circle, .ob-tag,
  .ob-hier, .dk-inhalt, .hs-fenster, .cl-text,
  .br-kopf rect, .br-basis, .br-feld, .br-kasten, .br-zeile { transition: none; opacity: 1; transform: none; }
  .br-saeule { transition: none; transform: none; }
  .ob-ring { animation: none; }
  .ag-slots::before { transition: none; transform: scaleY(1); }
  .ag-slot::before { transition: none; transform: scale(1); }
  .zs-bar i { transition: none; transform: scaleX(1); }
}

/* ---------- Erstgespraech: der Standardeinstieg ---------- */
.bt-erst {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: clamp(20px, 3.4vw, 56px);
  align-items: start;
  margin-top: clamp(46px, 6vw, 82px);
  padding-top: clamp(26px, 3.2vw, 40px);
  border-top: 1px solid var(--rule-strong);
}
.bt-erst-marke {
  display: inline-block; padding: 7px 13px;
  background: #fff; color: #000;
  font-family: var(--mono); font-size: clamp(8.5px, .82vw, 10px);
  letter-spacing: .18em; text-transform: uppercase; font-weight: 600;
}
.bt-erst h2 {
  font-size: clamp(20px, 2.3vw, 31px); font-weight: 600;
  letter-spacing: -.03em; line-height: 1.1; max-width: 22ch;
}
.bt-erst p {
  margin-top: clamp(12px, 1.4vw, 17px);
  font-size: clamp(13.5px, 1.22vw, 15.5px); line-height: 1.64;
  color: rgba(255,255,255,.6); max-width: 52ch;
}
.bt-erst-daten { margin: 0; display: grid; gap: clamp(11px, 1.3vw, 15px); }
.bt-erst-daten > div { display: grid; gap: 4px; }
.bt-erst-daten dt {
  font-family: var(--mono); font-size: clamp(8.5px, .8vw, 10px);
  letter-spacing: .16em; text-transform: uppercase; color: var(--dim);
}
.bt-erst-daten dd { margin: 0; font-size: clamp(12.5px, 1.12vw, 14px); font-weight: 500; color: rgba(255,255,255,.88); white-space: nowrap; }

@media (max-width: 900px) {
  .bt-erst { grid-template-columns: 1fr; gap: clamp(16px, 4vw, 24px); }
  .bt-erst-daten { grid-template-columns: repeat(3, minmax(0,1fr)); }
}
