/* ============================================================
   KopfIdee78, Designsystem der Landingpage

   Drei Farben, mehr nicht: Anthrazit, Gelb, Weiss. Genau die
   Farben des Logos (aus den PNG-Dateien ausgelesen: #17181A und
   #F5C518). Alles Weitere sind Abstufungen davon.

   Schrift: Manrope (SIL Open Font License), lokal ausgeliefert,
   kein Google-CDN. Lizenz und Hinweis in schriften/.
   ============================================================ */

/* --- Schrift, muss vor allem anderen stehen --- */
/* latin-ext */
@font-face {
  font-family: 'Manrope';
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url('../schriften/Manrope-400-800-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Manrope';
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url('../schriften/Manrope-400-800-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  --anthrazit:   #17181A;
  --anthrazit-2: #202226;   /* Karten auf dunklem Grund */
  --anthrazit-3: #2C2F34;   /* Linien auf dunklem Grund */
  --gelb:        #F5C518;
  --gelb-dunkel: #D9AC0B;   /* Hover, und Gelb auf Weiss, wenn Kontrast noetig */
  --weiss:       #FFFFFF;
  --papier:      #F7F7F5;   /* helle Sektionen, minimal waermer als Weiss */
  --grau:        #5C6066;   /* Fliesstext zweiter Ordnung */
  --grau-hell:   #E4E4E1;   /* Linien auf hellem Grund */

  --breite: 1180px;
  --radius: 18px;
  --radius-klein: 12px;
  --schatten: 0 18px 50px rgba(23, 24, 26, .10);
  --schatten-stark: 0 24px 70px rgba(23, 24, 26, .18);

  --schrift: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 88px; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation: none !important; transition: none !important; }
}

body {
  margin: 0;
  font-family: var(--schrift);
  font-size: 17px;
  line-height: 1.65;
  color: var(--anthrazit);
  background: var(--weiss);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }

.container { width: min(100% - 2.5rem, var(--breite)); margin-inline: auto; }

h1, h2, h3 { line-height: 1.14; letter-spacing: -.022em; margin: 0 0 .6rem; font-weight: 800; }
h1 { font-size: clamp(2.4rem, 6vw, 4.15rem); }
h2 { font-size: clamp(1.85rem, 3.9vw, 2.8rem); }
h3 { font-size: 1.24rem; letter-spacing: -.012em; }
p { margin: 0 0 1rem; }
.lead { font-size: clamp(1.05rem, 1.9vw, 1.28rem); color: var(--grau); max-width: 62ch; }

/* Der gelbe Marker aus dem Logo, als wiederkehrendes Zeichen */
.marker {
  background: var(--gelb);
  color: var(--anthrazit);
  padding: .04em .26em .1em;
  border-radius: 10px;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}
.punkt { color: var(--gelb); }

/* ---------- Kopfzeile ---------- */
.kopf {
  position: sticky; top: 0; z-index: 60;
  background: rgba(23, 24, 26, .92);
  backdrop-filter: saturate(140%) blur(12px);
  -webkit-backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color .2s ease, background .2s ease;
}
.kopf.gescrollt { border-bottom-color: var(--anthrazit-3); }
.kopf-innen { display: flex; align-items: center; gap: 1.5rem; height: 76px; }
.kopf-logo img { width: 172px; }
.kopf-nav { display: flex; gap: 1.65rem; margin-left: auto; }
.kopf-nav a {
  color: #D9DBDE; text-decoration: none; font-weight: 600; font-size: .965rem;
  padding: .3rem 0; position: relative;
}
.kopf-nav a::after {
  content: ''; position: absolute; left: 0; right: 100%; bottom: 0; height: 2px;
  background: var(--gelb); transition: right .25s ease;
}
.kopf-nav a:hover { color: var(--weiss); }
.kopf-nav a:hover::after { right: 0; }
/* Muss spezifischer sein als ".kopf-nav a", sonst faerbt die Navigation den
   Knopftext grau ein und Grau auf Gelb ist praktisch unlesbar. */
.kopf-nav a.knopf { margin-left: .4rem; color: var(--anthrazit); }
.kopf-nav a.knopf::after { display: none; }
.kopf-nav a.knopf:hover { color: var(--anthrazit); }

.burger {
  display: none; margin-left: auto; background: none; border: 0; cursor: pointer;
  width: 44px; height: 44px; padding: 10px; color: var(--weiss);
}
.burger span { display: block; height: 2px; background: currentColor; border-radius: 2px; transition: transform .25s ease, opacity .2s ease; }
.burger span + span { margin-top: 6px; }
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ---------- Knoepfe ---------- */
.knopf {
  display: inline-flex; align-items: center; gap: .55rem;
  padding: .82rem 1.5rem; border-radius: 999px; border: 2px solid transparent;
  font-family: inherit; font-weight: 800; font-size: 1rem; text-decoration: none;
  cursor: pointer; transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease, border-color .18s ease;
  white-space: nowrap;
}
.knopf-gelb { background: var(--gelb); color: var(--anthrazit); }
.knopf-gelb:hover { background: #FFD534; transform: translateY(-2px); box-shadow: 0 12px 28px rgba(245, 197, 24, .34); }
.knopf-dunkel { background: var(--anthrazit); color: var(--weiss); }
.knopf-dunkel:hover { transform: translateY(-2px); box-shadow: 0 14px 30px rgba(23, 24, 26, .28); }
.knopf-rand { border-color: rgba(255, 255, 255, .28); color: var(--weiss); }
.knopf-rand:hover { border-color: var(--gelb); color: var(--gelb); }
.knopf-rand-dunkel { border-color: var(--anthrazit); color: var(--anthrazit); }
.knopf-rand-dunkel:hover { background: var(--anthrazit); color: var(--weiss); }
.knopf-klein { padding: .6rem 1.15rem; font-size: .93rem; }

/* ---------- Hero ---------- */
.hero {
  position: relative; overflow: hidden;
  background: var(--anthrazit); color: var(--weiss);
  padding: clamp(4rem, 9vw, 7.5rem) 0 clamp(4.5rem, 9vw, 7rem);
}
.hero::before {
  content: ''; position: absolute; inset: auto auto -30% -12%;
  width: 640px; height: 640px; border-radius: 50%;
  background: radial-gradient(circle, rgba(245, 197, 24, .16) 0%, rgba(245, 197, 24, 0) 68%);
  pointer-events: none;
}
.hero::after {
  content: ''; position: absolute; inset: -22% -14% auto auto;
  width: 720px; height: 720px; border-radius: 50%;
  background: radial-gradient(circle, rgba(245, 197, 24, .12) 0%, rgba(245, 197, 24, 0) 66%);
  pointer-events: none;
}
.hero .container { position: relative; z-index: 1; }
/* Etwas mehr Zeilenabstand als sonst: der gelbe Marker ist ein Kasten und
   schrammt bei 1.14 an der naechsten Zeile entlang. */
.hero h1 { color: var(--weiss); max-width: 15ch; line-height: 1.24; }
.hero .lead { color: #B9BCC1; margin-top: 1.4rem; }

.augenbraue {
  display: inline-flex; align-items: center; gap: .6rem;
  font-size: .82rem; font-weight: 800; letter-spacing: .13em; text-transform: uppercase;
  color: var(--gelb); margin-bottom: 1.5rem;
}
.augenbraue::before { content: ''; width: 30px; height: 2px; background: var(--gelb); border-radius: 2px; }

.hero-knoepfe { display: flex; flex-wrap: wrap; gap: .85rem; margin-top: 2.3rem; }

/* Zweispaltig ab Tablet: links der Text, rechts die Buehne mit dem Zeichen.
   Die Leiste mit den Themen laeuft unter beiden Spalten durch. */
.hero-innen { display: grid; gap: clamp(2.5rem, 5vw, 4rem); align-items: center; }
@media (min-width: 940px) {
  .hero-innen { grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr); }
  .hero-marken { grid-column: 1 / -1; }
}

/* ---------- Buehne mit dem Markenzeichen ---------- */
/* Die Breite ist gedeckelt und die Buehne steht mittig. Ohne das nimmt sie in
   der einspaltigen Ansicht die volle Containerbreite ein, und die beiden
   Kaertchen, die absichtlich 7 Prozent nach aussen ragen, stehen dann ueber
   dem Seitenrand. */
.buehne {
  position: relative; display: grid; place-items: center;
  min-height: 400px; width: 100%; max-width: 440px; margin-inline: auto;
}
.buehne-ring {
  position: absolute; width: min(100%, 460px); aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245, 197, 24, .20) 0%, rgba(245, 197, 24, .05) 45%, transparent 68%);
}
.buehne-ring::before, .buehne-ring::after {
  content: ''; position: absolute; inset: 6%; border-radius: 50%;
  border: 1px solid rgba(245, 197, 24, .16);
}
.buehne-ring::after { inset: 20%; border-color: rgba(245, 197, 24, .10); }
.buehne-zeichen {
  position: relative; width: min(62%, 290px); height: auto;
  border-radius: 22%;
  box-shadow: 0 30px 70px rgba(0, 0, 0, .45), 0 0 0 1px rgba(255, 255, 255, .05);
  animation: schweben 7s ease-in-out infinite;
}
@keyframes schweben {
  0%, 100% { transform: translateY(-6px); }
  50%      { transform: translateY(6px); }
}

/* Die zwei Kaertchen. Sie sagen in zwei Zeilen, was der Kunde davon hat,
   und geben der Buehne Tiefe. */
.buehne-karte {
  position: absolute; display: flex; align-items: center; gap: .8rem;
  background: rgba(32, 34, 38, .92);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  border: 1px solid var(--anthrazit-3); border-radius: 14px;
  padding: .8rem 1.05rem; box-shadow: 0 16px 40px rgba(0, 0, 0, .38);
  white-space: nowrap;
}
.buehne-karte b { display: block; font-size: .95rem; color: var(--weiss); line-height: 1.3; }
.buehne-karte small { font-size: .8rem; color: #9A9EA5; }
.buehne-karte svg { width: 22px; height: 22px; color: var(--gelb); flex: none; }
/* Weit genug nach aussen, damit die Kaertchen das Zeichen anschneiden statt
   es zu verdecken. */
.buehne-karte-oben  { top: 6%;    left: -7%;  animation: schweben 8s ease-in-out infinite reverse; }
.buehne-karte-unten { bottom: 5%; right: -7%; animation: schweben 9s ease-in-out infinite; }
.punkt-gruen {
  width: 10px; height: 10px; border-radius: 50%; background: #3DD68C; flex: none;
  box-shadow: 0 0 0 4px rgba(61, 214, 140, .18);
}

.hero-marken {
  display: flex; flex-wrap: wrap; gap: .55rem 1.9rem; margin-top: 1rem;
  padding-top: 1.9rem; border-top: 1px solid var(--anthrazit-3);
  color: #9A9EA5; font-size: .93rem; font-weight: 600;
}
.hero-marken span { display: inline-flex; align-items: center; gap: .5rem; }
.hero-marken span::before { content: ''; width: 7px; height: 7px; border-radius: 50%; background: var(--gelb); flex: none; }

/* ---------- Sektionen ---------- */
.sektion { padding: clamp(3.8rem, 8vw, 6.5rem) 0; }
.sektion-papier { background: var(--papier); }
.sektion-dunkel { background: var(--anthrazit); color: var(--weiss); }
.sektion-dunkel .lead { color: #B9BCC1; }
.sektion-kopf { max-width: 64ch; margin-bottom: clamp(2.2rem, 4vw, 3.4rem); }
.sektion-kopf.mitte { margin-inline: auto; text-align: center; }
.sektion-kopf.mitte .lead { margin-inline: auto; }

/* ---------- Leistungen ---------- */
.raster {
  display: grid; gap: 1.15rem;
  grid-template-columns: repeat(auto-fit, minmax(285px, 1fr));
}
.raster { counter-reset: karte; }
.karte {
  background: var(--weiss); border: 1px solid var(--grau-hell); border-radius: var(--radius);
  padding: 2rem 1.75rem 1.85rem; position: relative; overflow: hidden;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.karte::before {
  content: ''; position: absolute; left: 0; top: 0; height: 4px; width: 0;
  background: var(--gelb); transition: width .3s ease;
}
/* Grosse blasse Ziffer in der Ecke: gibt den Karten Rhythmus, ohne dass
   noch mehr Text dazukommt. Beim Zeigen tritt sie etwas hervor. */
.karte::after {
  counter-increment: karte; content: counter(karte, decimal-leading-zero);
  position: absolute; top: 1.15rem; right: 1.35rem;
  font-size: 1.5rem; font-weight: 800; letter-spacing: -.03em;
  color: var(--grau-hell); transition: color .22s ease;
}
.karte:hover { transform: translateY(-4px); box-shadow: var(--schatten); border-color: #D2D2CE; }
.karte:hover::before { width: 100%; }
.karte:hover::after { color: var(--gelb); }
.karte h3 { margin-bottom: .5rem; }
.karte p { color: var(--grau); font-size: .985rem; margin: 0; }

.karten-symbol {
  width: 54px; height: 54px; border-radius: 15px;
  background: var(--gelb); color: var(--anthrazit);
  display: grid; place-items: center; margin-bottom: 1.25rem;
  box-shadow: 0 8px 20px rgba(245, 197, 24, .32);
  transition: transform .22s ease;
}
.karte:hover .karten-symbol { transform: rotate(-6deg) scale(1.06); }
.karten-symbol svg { width: 27px; height: 27px; }

/* ---------- Argumente auf dunklem Grund ---------- */
.arg-raster { display: grid; gap: 1.15rem; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
.arg {
  background: var(--anthrazit-2); border: 1px solid var(--anthrazit-3);
  border-radius: var(--radius); padding: 1.9rem 1.7rem;
}
.arg h3 { color: var(--weiss); }
.arg p { color: #A8ACB2; font-size: .98rem; margin: 0; }
.arg-zahl {
  font-size: 2.1rem; font-weight: 800; color: var(--gelb);
  line-height: 1; margin-bottom: .9rem; letter-spacing: -.03em;
}

/* ---------- Ablauf ---------- */
.ablauf { display: grid; gap: 1.15rem; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); counter-reset: schritt; }
.schritt { position: relative; padding-top: 2.9rem; }
.schritt::before {
  counter-increment: schritt; content: counter(schritt);
  position: absolute; top: 0; left: 0;
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--anthrazit); color: var(--gelb);
  display: grid; place-items: center; font-weight: 800; font-size: 1.05rem;
}
.schritt::after {
  content: ''; position: absolute; top: 20px; left: 54px; right: -1.15rem; height: 2px;
  background: repeating-linear-gradient(to right, var(--grau-hell) 0 8px, transparent 8px 15px);
}
.schritt:last-child::after { display: none; }
.schritt h3 { margin-bottom: .4rem; }
.schritt p { color: var(--grau); font-size: .97rem; margin: 0; }

/* ---------- Ansprechpartner ---------- */
.person { display: grid; gap: clamp(2rem, 5vw, 3.5rem); grid-template-columns: minmax(0, 1fr); align-items: center; }
@media (min-width: 900px) { .person { grid-template-columns: 390px minmax(0, 1fr); } }
/* Die Kachel traegt die Wortmarke gross. Sie ist ANTHRAZIT, nicht gelb:
   auf gelbem Grund verschwindet der gelbe Kasten hinter "Idee" und vom Logo
   bleibt nur schwarzer Text uebrig. Auf Dunkel dagegen leuchtet er. */
.person-bild {
  position: relative; overflow: hidden;
  background: var(--anthrazit); border-radius: var(--radius);
  display: grid; place-items: center; align-content: center; gap: 1.3rem;
  padding: 2.6rem 2rem; aspect-ratio: 1 / 1;
}
.person-bild::before {
  content: ''; position: absolute; inset: -35% -35% auto auto;
  width: 90%; aspect-ratio: 1; border-radius: 50%;
  background: radial-gradient(circle, rgba(245, 197, 24, .22) 0%, transparent 68%);
}
.person-bild::after {
  content: ''; position: absolute; inset: 12px; border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, .10);
}
.person-wortmarke { position: relative; width: 84%; }
.person-claim {
  position: relative; font-weight: 800; font-size: 1.02rem;
  letter-spacing: -.01em; color: #9A9EA5;
}
.punkt-dunkel { color: var(--gelb); }
.person-liste { list-style: none; margin: 1.4rem 0 0; padding: 0; display: grid; gap: .65rem; }
.person-liste li { display: flex; gap: .75rem; align-items: flex-start; color: var(--grau); }
.person-liste svg { width: 20px; height: 20px; flex: none; margin-top: .28rem; color: var(--gelb); }

/* ---------- Kontakt ---------- */
.kontakt-raster { display: grid; gap: clamp(2rem, 4vw, 3rem); grid-template-columns: minmax(0, 1fr); }
@media (min-width: 940px) { .kontakt-raster { grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr); } }

.kontakt-wege { list-style: none; margin: 1.8rem 0 0; padding: 0; display: grid; gap: 1rem; }
.kontakt-wege a, .kontakt-wege .weg {
  display: flex; gap: 1rem; align-items: center; text-decoration: none;
  background: var(--anthrazit-2); border: 1px solid var(--anthrazit-3);
  border-radius: var(--radius-klein); padding: 1.05rem 1.25rem;
  transition: border-color .2s ease, transform .2s ease;
}
.kontakt-wege a:hover { border-color: var(--gelb); transform: translateX(3px); }
.kontakt-wege svg { width: 22px; height: 22px; color: var(--gelb); flex: none; }
.kontakt-wege b { display: block; font-size: .8rem; letter-spacing: .09em; text-transform: uppercase; color: #8E9299; font-weight: 700; }
.kontakt-wege span { color: var(--weiss); font-weight: 700; }

.formular {
  background: var(--weiss); color: var(--anthrazit);
  border-radius: var(--radius); padding: clamp(1.6rem, 3vw, 2.4rem);
  box-shadow: var(--schatten-stark);
}
.feld { margin-bottom: 1.05rem; }
.feld label { display: block; font-weight: 700; font-size: .92rem; margin-bottom: .38rem; }
.feld input, .feld select, .feld textarea {
  width: 100%; font-family: inherit; font-size: 1rem; color: var(--anthrazit);
  padding: .78rem .95rem; border: 1.5px solid var(--grau-hell); border-radius: var(--radius-klein);
  background: var(--weiss); transition: border-color .18s ease, box-shadow .18s ease;
}
.feld textarea { min-height: 130px; resize: vertical; }
.feld input:focus, .feld select:focus, .feld textarea:focus {
  outline: none; border-color: var(--gelb); box-shadow: 0 0 0 3px rgba(245, 197, 24, .28);
}
.feld-zwei { display: grid; gap: 1.05rem; grid-template-columns: minmax(0, 1fr); }
@media (min-width: 620px) { .feld-zwei { grid-template-columns: 1fr 1fr; } }
.feld-hinweis { font-size: .86rem; color: var(--grau); margin: .2rem 0 1.2rem; }
.feld-hinweis a { color: var(--anthrazit); }
.honig { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.banner { border-radius: var(--radius-klein); padding: 1rem 1.15rem; margin-bottom: 1.4rem; font-weight: 600; }
.banner-ok { background: #E9F7EC; border: 1px solid #B7E3C1; color: #17492A; }
.banner-fehler { background: #FDECEC; border: 1px solid #F3BDBD; color: #7A1F1F; }

/* ---------- Fusszeile ---------- */
.fuss { background: var(--anthrazit); color: #8E9299; padding: 3.2rem 0 2.2rem; border-top: 1px solid var(--anthrazit-3); }
.fuss-innen { display: flex; flex-wrap: wrap; gap: 2rem; justify-content: space-between; align-items: flex-start; }
.fuss img { width: 156px; margin-bottom: .9rem; }
.fuss-nav { display: flex; flex-wrap: wrap; gap: 1.4rem; }
.fuss a { color: #C4C7CB; text-decoration: none; font-weight: 600; font-size: .95rem; }
.fuss a:hover { color: var(--gelb); }
.fuss-zeile { margin-top: 2.4rem; padding-top: 1.5rem; border-top: 1px solid var(--anthrazit-3); font-size: .88rem; display: flex; flex-wrap: wrap; gap: .8rem 1.5rem; justify-content: space-between; }

/* ---------- Unterseiten (Impressum, Datenschutz, 404) ---------- */
.seitenkopf { background: var(--anthrazit); color: var(--weiss); padding: clamp(3rem, 7vw, 5rem) 0 clamp(2.4rem, 5vw, 3.4rem); }
.seitenkopf h1 { font-size: clamp(2rem, 4.6vw, 3rem); }
.text { padding: clamp(2.6rem, 6vw, 4.5rem) 0; }
.text .container { max-width: 780px; }
.text h2 { font-size: 1.45rem; margin-top: 2.4rem; }
.text h3 { font-size: 1.1rem; margin-top: 1.7rem; }
.text p, .text li { color: #3B3E43; }
.text ul { padding-left: 1.2rem; }
.text a { color: var(--anthrazit); text-decoration: underline; text-decoration-color: var(--gelb); text-decoration-thickness: 2px; text-underline-offset: 3px; }
.text a:hover { color: var(--gelb-dunkel); }
.zurueck { display: inline-flex; align-items: center; gap: .5rem; color: var(--gelb); text-decoration: none; font-weight: 700; margin-bottom: 1.2rem; }
.zurueck:hover { text-decoration: underline; }

/* ---------- Mobil ---------- */
/* Auf dem Handy zaehlt der Text. Die Buehne braucht Platz, den es dort nicht
   gibt, deshalb faellt sie unter 620 Pixeln ganz weg. */
@media (max-width: 619px) {
  .buehne { display: none; }
}

@media (max-width: 880px) {
  .burger { display: block; }
  .kopf-nav {
    position: fixed; inset: 76px 0 auto; flex-direction: column; gap: 0;
    background: var(--anthrazit); border-bottom: 1px solid var(--anthrazit-3);
    padding: .5rem 1.25rem 1.4rem; margin: 0;
    transform: translateY(-130%); transition: transform .28s ease; z-index: 55;
  }
  .kopf-nav.offen { transform: translateY(0); }
  .kopf-nav a { padding: .95rem .25rem; border-bottom: 1px solid var(--anthrazit-3); font-size: 1.05rem; }
  .kopf-nav a::after { display: none; }
  .kopf-nav .knopf { margin: 1rem 0 0; justify-content: center; }
  .schritt::after { display: none; }
  .hero-marken { gap: .5rem 1.2rem; }
}
