/* ═══════════════════════════════════════════════════════════════
   DONDERER GMBH — Design-System
   Technisch-präzise mit Hands-On-Charakter
   ═══════════════════════════════════════════════════════════════ */

/* ─── Fonts (selbst gehostet) ─── */
@font-face {
  font-family: 'Overpass';
  src: url('../fonts/overpass-v19-latin-300.woff2') format('woff2');
  font-weight: 300; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Overpass';
  src: url('../fonts/overpass-v19-latin-regular.woff2') format('woff2');
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Overpass';
  src: url('../fonts/overpass-v19-latin-600.woff2') format('woff2');
  font-weight: 600; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Overpass';
  src: url('../fonts/overpass-v19-latin-800.woff2') format('woff2');
  font-weight: 800; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Overpass Mono';
  src: url('../fonts/overpass-mono-v21-latin-regular.woff2') format('woff2');
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Overpass Mono';
  src: url('../fonts/overpass-mono-v21-latin-600.woff2') format('woff2');
  font-weight: 600; font-style: normal; font-display: swap;
}

/* ─── Design-Tokens ─── */
:root {
  --rot: #d51130;
  --rot-dunkel: #ac0c25;
  --rot-hell: #fbe9ec;
  --ink: #16181d;
  --text: #41454d;
  --text-hell: #71757e;
  --linie: #e4e6ea;
  --flaeche: #f6f7f8;
  --dunkel: #14161a;
  --dunkel-2: #1c1f25;
  --weiss: #ffffff;
  --sans: 'Overpass', system-ui, -apple-system, sans-serif;
  --mono: 'Overpass Mono', ui-monospace, 'Cascadia Mono', monospace;
  --container: 1200px;
  --radius: 10px;
  --schatten: 0 2px 6px rgba(20, 22, 26, .05), 0 18px 40px -18px rgba(20, 22, 26, .18);
  --uebergang: .25s cubic-bezier(.4, 0, .2, 1);
}

/* ─── Reset / Basis ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  font-weight: 400;
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--text);
  background: var(--weiss);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
ul { list-style: none; }
::selection { background: var(--rot); color: #fff; }

.container {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 24px;
}

/* ─── Typografie ─── */
h1, h2, h3 { color: var(--ink); font-weight: 800; line-height: 1.12; letter-spacing: -0.015em; }
h1 { font-size: clamp(2.7rem, 6vw, 4.4rem); }
h2 { font-size: clamp(1.9rem, 3.6vw, 2.75rem); margin-bottom: 1rem; }
h3 { font-size: 1.25rem; line-height: 1.3; }

.overline {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--mono);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--rot);
  margin-bottom: 1.1rem;
}
.overline::before {
  content: "";
  width: 34px;
  height: 2px;
  background: var(--rot);
  flex-shrink: 0;
}

.section-intro { max-width: 640px; }
.section-intro p { margin-top: .5rem; color: var(--text-hell); }

.mono { font-family: var(--mono); }

/* ─── Sektionen ─── */
section { padding: clamp(72px, 9vw, 120px) 0; position: relative; }
.section-grau { background: var(--flaeche); }
.section-dunkel { background: var(--dunkel); }
.section-dunkel h2 { color: #fff; }
.section-dunkel p { color: rgba(255, 255, 255, .78); }

/* Technisches Raster als Hintergrund-Motiv */
.raster-bg {
  background-image:
    linear-gradient(var(--linie) 1px, transparent 1px),
    linear-gradient(90deg, var(--linie) 1px, transparent 1px);
  background-size: 72px 72px;
  position: absolute;
  inset: 0;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.55), transparent 62%);
  -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,.55), transparent 62%);
  pointer-events: none;
}

/* ─── Buttons ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 1rem;
  line-height: 1;
  padding: 17px 28px 15px;
  border-radius: 6px;
  border: 2px solid transparent;
  text-decoration: none;
  cursor: pointer;
  transition: background var(--uebergang), color var(--uebergang), border-color var(--uebergang), transform var(--uebergang);
}
.btn .pfeil { transition: transform var(--uebergang); }
.btn:hover .pfeil { transform: translateX(5px); }
.btn-primary { background: var(--rot); color: #fff; }
.btn-primary:hover { background: var(--rot-dunkel); }
.btn-ghost { border-color: var(--linie); color: var(--ink); background: transparent; }
.btn-ghost:hover { border-color: var(--ink); }
.section-dunkel .btn-ghost { border-color: rgba(255,255,255,.28); color: #fff; }
.section-dunkel .btn-ghost:hover { border-color: #fff; }

.textlink {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  color: var(--rot);
  text-decoration: none;
  position: relative;
}
.textlink::after {
  content: "";
  position: absolute;
  left: 0; bottom: -3px;
  width: 100%; height: 2px;
  background: var(--rot);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--uebergang);
}
.textlink:hover::after { transform: scaleX(1); }

/* ─── Top-Bar ─── */
.top-bar {
  background: var(--dunkel);
  color: rgba(255,255,255,.82);
  font-family: var(--mono);
  font-size: .8rem;
}
.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 40px;
}
.top-bar a {
  color: inherit;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  transition: color var(--uebergang);
}
.top-bar a:hover { color: #fff; }
.top-bar-left { display: flex; gap: 26px; }
.top-bar-right { display: flex; gap: 16px; }
.top-bar svg { width: 15px; height: 15px; fill: currentColor; }

/* ─── Header ─── */
#main-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--uebergang), box-shadow var(--uebergang);
}
#main-header.scrolled {
  border-bottom-color: var(--linie);
  box-shadow: 0 6px 24px -12px rgba(20,22,26,.14);
}
.header-inner {
  max-width: var(--container);
  margin-inline: auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 82px;
}
.logo img { height: 42px; width: auto; }
#main-header nav ul {
  display: flex;
  align-items: center;
  gap: 34px;
}
#main-header nav a:not(.nav-cta) {
  text-decoration: none;
  font-weight: 600;
  font-size: .98rem;
  color: var(--ink);
  position: relative;
  padding: 6px 0;
}
#main-header nav a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 2px;
  background: var(--rot);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--uebergang);
}
#main-header nav a:not(.nav-cta):hover::after,
#main-header nav a.aktiv::after { transform: scaleX(1); }
.nav-cta {
  background: var(--rot);
  color: #fff !important;
  font-weight: 600;
  font-size: .95rem;
  text-decoration: none;
  padding: 13px 22px 11px;
  border-radius: 6px;
  transition: background var(--uebergang);
}
.nav-cta:hover { background: var(--rot-dunkel); }

/* Hamburger + Mobile Nav */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 8px;
}
.hamburger span {
  width: 24px; height: 2px;
  background: var(--ink);
  transition: transform var(--uebergang), opacity var(--uebergang);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  top: 0;
  padding: 140px 32px 40px;
  background: var(--weiss);
  z-index: 90;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--uebergang);
}
.mobile-nav.open { opacity: 1; pointer-events: auto; }
.mobile-nav ul { display: flex; flex-direction: column; gap: 8px; }
.mobile-nav a:not(.nav-cta) {
  display: block;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--ink);
  text-decoration: none;
  padding: 12px 0;
  border-bottom: 1px solid var(--linie);
}
.mobile-nav .nav-cta {
  display: inline-block;
  margin-top: 24px;
  text-align: center;
  font-size: 1.1rem;
  padding: 16px 28px;
}
.mobile-nav .mobile-kontakt {
  margin-top: 32px;
  font-family: var(--mono);
  font-size: .9rem;
}
.mobile-nav .mobile-kontakt a { color: var(--text); text-decoration: none; display: block; padding: 6px 0; border: 0; font-family: var(--mono); font-size: .9rem; font-weight: 400; }

/* ─── Hero ─── */
.hero { padding: clamp(56px, 7vw, 96px) 0 clamp(64px, 8vw, 110px); overflow: hidden; }
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
  gap: clamp(40px, 5vw, 72px);
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-text .overline { margin-bottom: 1.4rem; }
.hero-text h1 { margin-bottom: 1.4rem; }
.hero-text h1 .punkt { color: var(--rot); }
.hero-lead {
  font-size: 1.2rem;
  line-height: 1.6;
  max-width: 520px;
  margin-bottom: 2.2rem;
}
.hero-buttons { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 2.6rem; }
.cta-mikrozeile {
  font-family: var(--mono);
  font-size: .76rem;
  letter-spacing: .05em;
  color: var(--text-hell);
  margin: -1.6rem 0 2.2rem;
}
.section-dunkel .cta-mikrozeile { color: rgba(255,255,255,.5); }

.google-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--mono);
  font-size: .85rem;
  color: var(--text-hell);
}
.google-badge img.google-logo { height: 22px; width: auto; }
.google-badge img.stars { height: 16px; width: auto; }
.google-badge .score { font-weight: 600; color: var(--ink); font-size: 1rem; }
.badge-link {
  color: inherit;
  text-decoration: underline;
  text-decoration-color: transparent;
  text-underline-offset: 3px;
  transition: color var(--uebergang), text-decoration-color var(--uebergang);
}
.badge-link:hover { color: var(--rot); text-decoration-color: var(--rot); }
.badge-klick {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: inherit;
  transition: transform var(--uebergang);
}
.badge-klick:hover { transform: translateY(-1px); }

/* Bildrahmen mit technischen Eckmarkierungen */
.tech-frame { position: relative; }
.tech-frame img { border-radius: var(--radius); box-shadow: var(--schatten); }
.tech-frame::before, .tech-frame::after,
.tech-frame .ecke::before, .tech-frame .ecke::after {
  content: "";
  position: absolute;
  width: 26px; height: 26px;
  border-color: var(--rot);
  border-style: solid;
  border-width: 0;
}
.tech-frame::before { top: -12px; left: -12px; border-top-width: 2px; border-left-width: 2px; }
.tech-frame::after { top: -12px; right: -12px; border-top-width: 2px; border-right-width: 2px; }
.tech-frame .ecke::before { bottom: -12px; left: -12px; border-bottom-width: 2px; border-left-width: 2px; }
.tech-frame .ecke::after { bottom: -12px; right: -12px; border-bottom-width: 2px; border-right-width: 2px; }

/* ─── 3D-Tilt (Hero-Bild kippt sanft zur Mausposition) ─── */
.tech-frame.tilt {
  transition: transform .25s ease-out;
  will-change: transform;
}
.bild-chip { z-index: 3; }

.bild-chip {
  position: absolute;
  left: 18px; bottom: 18px;
  background: rgba(20, 22, 26, .82);
  backdrop-filter: blur(4px);
  color: rgba(255,255,255,.92);
  font-family: var(--mono);
  font-size: .74rem;
  letter-spacing: .06em;
  padding: 9px 14px 7px;
  border-radius: 5px;
  border-left: 2px solid var(--rot);
}

/* ─── Zahlen-Band (Vertrauens-Metriken unter dem Hero) ─── */
.zahlen-band { padding: 30px 0 34px; }
.zahlen-band .container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 64px;
  justify-content: center;
}
.zahlen-band .fakt { text-align: center; }
.zahlen-band .zahl {
  font-family: var(--mono);
  font-weight: 600;
  font-size: 1.35rem;
  color: var(--ink);
  line-height: 1.15;
}
.zahlen-band .zahl .einheit { color: var(--rot); }
.zahlen-band .beschr {
  font-family: var(--mono);
  font-size: .72rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-hell);
}

/* Klickbare Kachel (Leistungen) */
a.kachel {
  display: block;
  text-decoration: none;
  color: var(--text);
}
a.kachel .textlink { margin-top: 14px; font-size: .9rem; }
a.kachel:hover .textlink::after { transform: scaleX(1); }

.chips-titel {
  font-family: var(--mono);
  font-size: .74rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text-hell);
  margin: 1.4rem 0 4px;
}

/* ─── Kundenlogos ─── */
.logos-section { padding: clamp(56px, 7vw, 88px) 0; border-top: 1px solid var(--linie); border-bottom: 1px solid var(--linie); }
.logos-kopf {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 40px;
}
.logos-kopf h2 { font-size: 1.35rem; margin: 0; }
.logos-kopf .mono-hinweis { font-family: var(--mono); font-size: .8rem; color: var(--text-hell); letter-spacing: .08em; }
.logo-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 36px 0;
}
.logo-grid img {
  width: 12.5%;
  height: 46px;
  padding: 0 22px;
  object-fit: contain;
  filter: grayscale(1);
  opacity: .55;
  transition: filter var(--uebergang), opacity var(--uebergang);
}
.logo-grid img:hover { filter: grayscale(0); opacity: 1; }

/* ─── Split-Sektion (Text + Bild) ─── */
.split-section {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(40px, 6vw, 88px);
  align-items: center;
}
.split-text p { margin-bottom: 1.1rem; }
.split-text p:last-of-type { margin-bottom: 1.8rem; }
.split-text .fett-rot { font-weight: 600; color: var(--ink); }

/* Schmerzpunkt-Liste ("Kennt ihr das?") */
.schmerz-liste { margin: 0 0 1.2rem; }
.schmerz-liste li {
  position: relative;
  padding: 10px 0 10px 30px;
  border-bottom: 1px solid var(--linie);
}
.schmerz-liste li:last-child { border-bottom: 0; }
.schmerz-liste li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--rot);
  font-weight: 800;
}

/* Dezenter Inline-Link (z. B. 3D-Druck im Prozess) */
.dezent-link {
  color: inherit;
  text-decoration: underline;
  text-decoration-style: dotted;
  text-decoration-color: var(--text-hell);
  text-underline-offset: 3px;
  transition: color var(--uebergang), text-decoration-color var(--uebergang);
}
.dezent-link:hover { color: var(--rot); text-decoration-color: var(--rot); text-decoration-style: solid; }

/* Mono-Akzent im Fließtext (Risiko-Umkehr) */
.mono-akzent {
  font-family: var(--mono);
  font-size: .85em;
  font-weight: 600;
  color: var(--rot);
  letter-spacing: .02em;
}

/* ─── Prozess (5 Schritte) ─── */
.prozess-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 36px 28px;
  margin-top: 56px;
  position: relative;
}
.prozess-grid::before {
  content: "";
  position: absolute;
  top: 27px; left: 0;
  width: 100%;
  height: 1px;
  background: var(--linie);
}
.prozess-linie {
  position: absolute;
  top: 27px; left: 0;
  height: 1px;
  width: 100%;
  background: var(--rot);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 1.4s cubic-bezier(.4, 0, .2, 1);
}
.prozess-grid.linie-aktiv .prozess-linie { transform: scaleX(1); }
.schritt { position: relative; padding-top: 0; }
.schritt-nr {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px; height: 54px;
  background: var(--weiss);
  border: 1px solid var(--linie);
  border-radius: 50%;
  font-family: var(--mono);
  font-weight: 600;
  font-size: .95rem;
  color: var(--rot);
  margin-bottom: 18px;
  position: relative;
  z-index: 1;
  transition: border-color var(--uebergang);
}
.schritt:hover .schritt-nr { border-color: var(--rot); }
.schritt h3 { font-size: 1.1rem; margin-bottom: .5rem; }
.schritt p { font-size: .95rem; color: var(--text-hell); line-height: 1.55; }
.prozess-fusszeile {
  margin-top: 52px;
  padding-top: 28px;
  border-top: 1px solid var(--linie);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.prozess-fusszeile p { font-weight: 600; color: var(--ink); max-width: 560px; }

/* ─── Projekt-Karten ─── */
.projekt-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 52px;
}
.projekt-karte {
  position: relative;
  background: var(--weiss);
  border: 1px solid var(--linie);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform var(--uebergang), box-shadow var(--uebergang), border-color var(--uebergang);
}
/* rote Eckmarkierungen beim Hover (Engineering-Motiv) */
.projekt-karte::before, .projekt-karte::after {
  content: "";
  position: absolute;
  width: 20px; height: 20px;
  border: 0 solid var(--rot);
  opacity: 0;
  transition: opacity var(--uebergang);
  z-index: 2;
  pointer-events: none;
}
.projekt-karte::before { top: 8px; left: 8px; border-top-width: 2px; border-left-width: 2px; }
.projekt-karte::after { bottom: 8px; right: 8px; border-bottom-width: 2px; border-right-width: 2px; }
.projekt-karte:hover::before, .projekt-karte:hover::after { opacity: 1; }
.projekt-karte:hover {
  transform: translateY(-5px);
  box-shadow: var(--schatten);
  border-color: transparent;
}
.projekt-karte .karten-bild { position: relative; aspect-ratio: 3 / 2; overflow: hidden; }
.projekt-karte .karten-bild img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s cubic-bezier(.4, 0, .2, 1);
}
.projekt-karte:hover .karten-bild img { transform: scale(1.04); }
.branche-chip {
  position: absolute;
  top: 14px; left: 14px;
  background: rgba(20, 22, 26, .82);
  backdrop-filter: blur(4px);
  color: #fff;
  font-family: var(--mono);
  font-size: .72rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 8px 12px 6px;
  border-radius: 5px;
}
.karten-body { padding: 26px 26px 24px; display: flex; flex-direction: column; flex: 1; }
.karten-body h3 { margin-bottom: 14px; }
.projekt-fakt { font-size: .93rem; line-height: 1.55; margin-bottom: 12px; }
.projekt-fakt .label {
  display: block;
  font-family: var(--mono);
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--text-hell);
  margin-bottom: 2px;
}
.projekt-fakt.ergebnis {
  background: var(--rot-hell);
  border-left: 3px solid var(--rot);
  border-radius: 0 6px 6px 0;
  padding: 12px 14px 10px;
  color: var(--ink);
  font-weight: 600;
}
.projekt-fakt.ergebnis .label { color: var(--rot); }
.karten-tags {
  font-family: var(--mono);
  font-size: .74rem;
  color: var(--text-hell);
  letter-spacing: .04em;
  margin: 4px 0 18px;
}
.karten-body .textlink { margin-top: auto; }

/* ─── Werte (bekommt ihr / gibt es nicht) ─── */
.werte-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-top: 52px;
}
.werte-spalte {
  border: 1px solid var(--linie);
  border-radius: var(--radius);
  padding: 36px 36px 30px;
  background: var(--weiss);
}
.werte-spalte.negativ { background: var(--flaeche); }
.werte-spalte h3 { margin-bottom: 22px; display: flex; align-items: center; gap: 10px; }
.werte-liste li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 11px 0;
  border-bottom: 1px solid var(--linie);
  font-weight: 600;
  color: var(--ink);
}
.werte-liste li:last-child { border-bottom: 0; }
.werte-spalte.negativ .werte-liste li { color: var(--text-hell); font-weight: 400; }
.icon-rund {
  flex-shrink: 0;
  width: 24px; height: 24px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}
.icon-rund svg { width: 12px; height: 12px; }
.icon-check { background: var(--rot); }
.icon-check svg { fill: #fff; }
.icon-x { background: #d9dbe0; }
.icon-x svg { fill: #888c94; }

/* ─── 3D-Druck-Kompetenz ─── */
.verfahren-karten {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 0 0 1.8rem;
}
.verfahren-karte {
  position: relative;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 16px 20px 14px;
  border: 1px solid var(--linie);
  border-radius: 8px;
  background: var(--weiss);
  text-decoration: none;
  color: var(--text);
  transition: border-color var(--uebergang), transform var(--uebergang), box-shadow var(--uebergang);
}
.verfahren-karte:hover {
  border-color: var(--rot);
  transform: translateX(4px);
  box-shadow: 0 10px 26px -18px rgba(20, 22, 26, .3);
}
.verfahren-kuerzel {
  font-family: var(--mono);
  font-weight: 600;
  font-size: .76rem;
  color: var(--rot);
  border: 1px solid var(--linie);
  border-radius: 4px;
  padding: 5px 9px 3px;
  min-width: 72px;
  text-align: center;
  flex-shrink: 0;
  transition: border-color var(--uebergang);
}
.verfahren-karte:hover .verfahren-kuerzel { border-color: var(--rot); }
.verfahren-text { font-size: .93rem; line-height: 1.45; }
.verfahren-text strong {
  display: block;
  color: var(--ink);
  font-size: .98rem;
}
.verfahren-karte .pfeil {
  margin-left: auto;
  color: var(--rot);
  font-weight: 600;
  opacity: 0;
  transform: translateX(-6px);
  transition: opacity var(--uebergang), transform var(--uebergang);
}
.verfahren-karte:hover .pfeil { opacity: 1; transform: none; }
/* Bild-Preview typischer Teile beim Hover */
.verfahren-preview {
  position: absolute;
  right: 52px;
  top: 50%;
  width: 172px;
  height: 172px;
  object-fit: cover;
  border-radius: 8px;
  border: 4px solid var(--weiss);
  box-shadow: var(--schatten);
  opacity: 0;
  transform: translateY(-50%) scale(.88);
  transition: opacity var(--uebergang), transform var(--uebergang);
  pointer-events: none;
  z-index: 5;
}
@media (hover: hover) and (pointer: fine) {
  .verfahren-karte:hover .verfahren-preview { opacity: 1; transform: translateY(-50%) scale(1); }
}
.druck-bilder { position: relative; }

/* ─── Kundenstimmen ─── */
.reviews-kopf {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.testimonial-viewport { overflow: hidden; margin-top: 48px; }
.testimonial-track {
  display: flex;
  gap: 24px;
  transition: transform .55s cubic-bezier(.4, 0, .2, 1);
}
.review-card {
  flex: 0 0 calc((100% - 48px) / 3);
  background: var(--weiss);
  border: 1px solid var(--linie);
  border-radius: var(--radius);
  padding: 28px 28px 24px;
  display: flex;
  flex-direction: column;
}
.review-kopf { display: flex; align-items: center; gap: 14px; margin-bottom: 14px; }
.review-kopf img.avatar { width: 46px; height: 46px; border-radius: 50%; }
.review-kopf .name { font-weight: 600; color: var(--ink); line-height: 1.2; }
.review-kopf img.sterne { height: 13px; width: auto; margin-top: 5px; }
.review-text { font-size: .95rem; line-height: 1.6; flex: 1; }
.review-text.gekuerzt { display: -webkit-box; -webkit-line-clamp: 5; -webkit-box-orient: vertical; overflow: hidden; }
.mehr-btn {
  background: none; border: 0;
  color: var(--rot);
  font-family: var(--sans);
  font-weight: 600;
  font-size: .88rem;
  cursor: pointer;
  align-self: flex-start;
  margin-top: 6px;
  padding: 0;
}
.review-fuss { margin-top: 16px; }
.review-fuss img { height: 16px; width: auto; opacity: .85; }
.review-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--mono);
  font-size: .74rem;
  letter-spacing: .05em;
  color: var(--text-hell);
  text-decoration: none;
  transition: color var(--uebergang);
}
.review-link:hover { color: var(--rot); }
/* ganze Karte klickbar, Buttons bleiben bedienbar */
.review-link::after { content: ""; position: absolute; inset: 0; }
.review-card { position: relative; transition: border-color var(--uebergang), box-shadow var(--uebergang); }
.review-card:hover { border-color: #d0d3d9; box-shadow: 0 10px 28px -18px rgba(20,22,26,.25); }
.review-card .mehr-btn { position: relative; z-index: 2; }
.testimonial-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  margin-top: 36px;
}
.testimonial-nav button.pfeil-btn {
  width: 46px; height: 46px;
  border-radius: 50%;
  border: 1px solid var(--linie);
  background: var(--weiss);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: border-color var(--uebergang), background var(--uebergang);
}
.testimonial-nav button.pfeil-btn:hover { border-color: var(--rot); }
.testimonial-nav button.pfeil-btn svg { width: 16px; height: 16px; fill: var(--ink); }
.testimonial-dots { display: flex; gap: 8px; }
.testimonial-dots button {
  width: 8px; height: 8px;
  border-radius: 50%;
  border: 0;
  background: #d4d7dc;
  cursor: pointer;
  padding: 0;
  transition: background var(--uebergang), transform var(--uebergang);
}
.testimonial-dots button.aktiv { background: var(--rot); transform: scale(1.25); }

/* ─── Über uns kurz ─── */
.ueber-bild { position: relative; display: flex; justify-content: center; }
.ueber-bild .portrait-rahmen {
  position: relative;
  background:
    linear-gradient(180deg, #eceef0 0%, #f6f7f8 100%);
  border-radius: var(--radius);
  overflow: hidden;
  width: min(420px, 100%);
}
.ueber-bild .portrait-rahmen::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(20,22,26,.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(20,22,26,.045) 1px, transparent 1px);
  background-size: 36px 36px;
}
.ueber-bild .portrait-rahmen::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 4px;
  background: var(--rot);
}
.ueber-bild img { position: relative; z-index: 1; }
.signatur { margin-top: 1.6rem; }
.signatur .name { font-weight: 800; color: var(--ink); font-size: 1.05rem; }
.signatur .titel { font-family: var(--mono); font-size: .8rem; color: var(--text-hell); letter-spacing: .06em; }
.fakten-zeile {
  display: flex;
  gap: 36px;
  flex-wrap: wrap;
  margin: 1.8rem 0;
  padding: 1.4rem 0;
  border-top: 1px solid var(--linie);
  border-bottom: 1px solid var(--linie);
}
.fakt .zahl {
  font-family: var(--mono);
  font-weight: 600;
  font-size: 1.5rem;
  color: var(--ink);
  line-height: 1.1;
}
.fakt .zahl .einheit { color: var(--rot); }
.fakt .beschr { font-family: var(--mono); font-size: .74rem; letter-spacing: .08em; text-transform: uppercase; color: var(--text-hell); }

/* ─── CTA / Kontakt (dunkel) ─── */
.cta-section { overflow: hidden; }
.cta-section .raster-dunkel {
  position: absolute;
  inset: 0;
  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: 72px 72px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.9), transparent 70%);
  -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,.9), transparent 70%);
  pointer-events: none;
}
.cta-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
  gap: clamp(48px, 6vw, 88px);
  position: relative;
  z-index: 1;
}
.cta-kontaktwege { margin-top: 2.2rem; display: flex; flex-direction: column; gap: 16px; }
.cta-kontaktwege a {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: #fff;
  text-decoration: none;
  font-family: var(--mono);
  font-size: 1.05rem;
  transition: color var(--uebergang);
}
.cta-kontaktwege a:hover { color: var(--rot); }
.cta-kontaktwege svg { width: 19px; height: 19px; fill: var(--rot); flex-shrink: 0; }
.mikro-prozess {
  margin-top: 2.4rem;
  padding: 20px 24px 18px;
  border-left: 2px solid var(--rot);
  background: var(--dunkel-2);
  border-radius: 0 8px 8px 0;
  font-size: .95rem;
}
.mikro-prozess .mikro-titel {
  font-family: var(--mono);
  color: var(--rot);
  font-weight: 600;
  font-size: .8rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 12px;
}
.mikro-prozess ol { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.mikro-prozess li { display: flex; align-items: baseline; gap: 12px; color: rgba(255,255,255,.82); }
.mikro-nr {
  font-family: var(--mono);
  font-weight: 600;
  font-size: .78rem;
  color: var(--rot);
  border: 1px solid rgba(213, 17, 48, .5);
  border-radius: 50%;
  width: 22px; height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transform: translateY(3px);
}

/* Formular */
.formular { display: flex; flex-direction: column; gap: 16px; }
.formular-zeile { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.feld { display: flex; flex-direction: column; gap: 6px; }
.feld label {
  font-family: var(--mono);
  font-size: .74rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.6);
}
.feld input, .feld textarea {
  background: var(--dunkel-2);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 6px;
  padding: 14px 16px;
  color: #fff;
  font-family: var(--sans);
  font-size: 1rem;
  transition: border-color var(--uebergang);
}
.feld input:focus, .feld textarea:focus { outline: none; border-color: var(--rot); }
.feld input::placeholder, .feld textarea::placeholder { color: rgba(255,255,255,.35); }
.feld textarea { resize: vertical; min-height: 130px; }
.formular .btn { align-self: flex-start; margin-top: 6px; }
.formular .hinweis { font-size: .8rem; color: rgba(255,255,255,.45); }
.formular .hinweis a { color: rgba(255,255,255,.65); }
.form-meldung { display: none; padding: 14px 18px; border-radius: 6px; font-weight: 600; }
.form-meldung.ok { display: block; background: rgba(46, 160, 67, .15); color: #7ee2a8; border: 1px solid rgba(46,160,67,.4); }
.form-meldung.fehler { display: block; background: rgba(213, 17, 48, .12); color: #ff8fa0; border: 1px solid rgba(213,17,48,.45); }
/* Honeypot */
.hp-feld { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; }

/* ─── Footer ─── */
#main-footer {
  background: #0b0c0f;
  border-top: 1px solid rgba(255, 255, 255, .09);
  color: rgba(255,255,255,.72);
  padding: 72px 0 0;
  font-size: .95rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
}
.footer-col .footer-logo { height: 36px; width: auto; margin-bottom: 14px; }
.footer-claim {
  font-size: .88rem;
  color: rgba(255,255,255,.55);
  max-width: 300px;
  margin-bottom: 16px;
}
.footer-col p { margin-bottom: .4rem; }
.footer-col a { color: inherit; text-decoration: none; transition: color var(--uebergang); }
.footer-col a:hover { color: #fff; }
.footer-heading {
  font-family: var(--mono);
  font-size: .76rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(255,255,255,.45);
  margin-bottom: 18px;
}
.footer-col ul li { margin-bottom: .6rem; }
.footer-social { display: flex; gap: 12px; }
.footer-social a {
  width: 40px; height: 40px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: border-color var(--uebergang), background var(--uebergang);
}
.footer-social a:hover { border-color: var(--rot); background: rgba(213,17,48,.12); }
.footer-social svg { width: 17px; height: 17px; fill: rgba(255,255,255,.85); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  font-family: var(--mono);
  font-size: .78rem;
  color: rgba(255,255,255,.45);
}
.footer-links { display: flex; gap: 22px; }
.footer-links a { color: inherit; text-decoration: none; transition: color var(--uebergang); }
.footer-links a:hover { color: #fff; }

/* ═══════════════════════════════════════════════════════════════
   Unterseiten-Komponenten
   ═══════════════════════════════════════════════════════════════ */

/* Kompakter Seiten-Hero */
.seiten-hero {
  padding: clamp(56px, 7vw, 88px) 0 clamp(40px, 5vw, 64px);
  position: relative;
}
.seiten-hero h1 { font-size: clamp(2.2rem, 4.5vw, 3.4rem); margin-bottom: 1rem; }
.seiten-hero .hero-lead { margin-bottom: 0; }
.seiten-hero .hero-buttons { margin: 2rem 0 0; }

/* Anker-Navigation (Verfahren-Seite) */
.anker-nav {
  position: sticky;
  top: 82px;
  z-index: 50;
  background: rgba(255, 255, 255, .94);
  backdrop-filter: blur(10px);
  border-top: 1px solid var(--linie);
  border-bottom: 1px solid var(--linie);
}
.anker-nav .container {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding-top: 0;
  padding-bottom: 0;
}
.anker-nav a {
  font-family: var(--mono);
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--text-hell);
  padding: 16px 18px 14px;
  border-bottom: 2px solid transparent;
  white-space: nowrap;
  transition: color var(--uebergang), border-color var(--uebergang);
}
.anker-nav a:hover, .anker-nav a.aktiv { color: var(--rot); border-bottom-color: var(--rot); }

/* Timeline (Über uns) */
.timeline { position: relative; margin-top: 52px; }
.timeline::before {
  content: "";
  position: absolute;
  left: 27px;
  top: 6px; bottom: 6px;
  width: 1px;
  background: var(--linie);
}
.timeline-eintrag {
  position: relative;
  padding: 0 0 36px 84px;
}
.timeline-eintrag:last-child { padding-bottom: 0; }
.timeline-punkt {
  position: absolute;
  left: 0;
  top: 0;
  width: 54px; height: 54px;
  border-radius: 50%;
  background: var(--weiss);
  border: 1px solid var(--linie);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--mono);
  font-size: .72rem;
  font-weight: 600;
  color: var(--rot);
}
.timeline-eintrag:last-child .timeline-punkt { border-color: var(--rot); background: var(--rot); color: #fff; }
.timeline-label {
  font-family: var(--mono);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--text-hell);
}
.timeline-eintrag h3 { margin: 2px 0 4px; }
.timeline-eintrag p { color: var(--text-hell); font-size: .97rem; }

/* Vergleichstabelle */
.tabellen-scroll { overflow-x: auto; margin-top: 48px; border: 1px solid var(--linie); border-radius: var(--radius); }
.vergleich-tabelle { width: 100%; border-collapse: collapse; background: var(--weiss); min-width: 720px; }
.vergleich-tabelle th, .vergleich-tabelle td {
  padding: 14px 18px 12px;
  text-align: left;
  border-bottom: 1px solid var(--linie);
  font-size: .95rem;
}
.vergleich-tabelle thead th {
  font-family: var(--mono);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  background: var(--flaeche);
  color: var(--ink);
}
.vergleich-tabelle tbody tr:last-child td { border-bottom: 0; }
.vergleich-tabelle td:first-child { font-weight: 600; color: var(--ink); }
.sterne-wert { color: var(--rot); letter-spacing: 2px; }

/* Kachel-Grid (Anwendungen etc.) */
.kachel-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.kachel {
  background: var(--weiss);
  border: 1px solid var(--linie);
  border-radius: var(--radius);
  padding: 28px 26px 24px;
  transition: transform var(--uebergang), box-shadow var(--uebergang);
}
.kachel:hover { transform: translateY(-4px); box-shadow: var(--schatten); }
.kachel h3 { font-size: 1.08rem; margin-bottom: .5rem; }
.kachel p { font-size: .93rem; color: var(--text-hell); line-height: 1.55; }
.kachel .kachel-nr {
  font-family: var(--mono);
  font-weight: 600;
  color: var(--rot);
  font-size: .8rem;
  display: block;
  margin-bottom: 10px;
}

/* Chip-Liste (Veredelung, Materialien) */
.chip-liste { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }
.chip {
  font-family: var(--mono);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .04em;
  border: 1px solid var(--linie);
  border-radius: 100px;
  padding: 9px 16px 7px;
  background: var(--weiss);
  color: var(--text);
}

/* Material-Liste (Verfahren-Detail) */
.material-liste { margin-top: 20px; }
.material-liste li { padding: 12px 0; border-bottom: 1px solid var(--linie); font-size: .95rem; }
.material-liste li:last-child { border-bottom: 0; }
.material-liste .mat-name { font-weight: 600; color: var(--ink); display: block; }

/* Standort-Karte (Kontakt) */
.standort-karte {
  background: var(--dunkel);
  border-radius: var(--radius);
  padding: 40px 36px;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.standort-karte::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.06) 1px, transparent 1px);
  background-size: 44px 44px;
}
.standort-karte > * { position: relative; }
.standort-karte .koordinaten {
  font-family: var(--mono);
  font-size: .78rem;
  letter-spacing: .08em;
  color: rgba(255,255,255,.55);
  margin-bottom: 14px;
  display: block;
}
.standort-karte address { font-style: normal; line-height: 1.7; margin-bottom: 24px; color: rgba(255,255,255,.85); }
.standort-pin {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--rot);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.standort-pin svg { width: 20px; height: 20px; fill: #fff; }

/* Kontaktdaten-Liste */
.kontakt-wege { display: flex; flex-direction: column; gap: 14px; margin: 1.8rem 0; }
.kontakt-wege a {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--ink);
  font-family: var(--mono);
  font-size: 1rem;
  text-decoration: none;
  transition: color var(--uebergang);
}
.kontakt-wege a:hover { color: var(--rot); }
.kontakt-wege svg { width: 18px; height: 18px; fill: var(--rot); flex-shrink: 0; }

/* Helles Formular (für Seiten mit Formular auf hellem Grund nutzt
   die dunkle CTA-Sektion der Startseite; hier bleibt alles dunkel-basiert) */

/* Datei-Upload */
.feld input[type="file"] {
  padding: 11px 14px;
  cursor: pointer;
}
.feld input[type="file"]::file-selector-button {
  font-family: var(--sans);
  font-weight: 600;
  font-size: .85rem;
  color: #fff;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 5px;
  padding: 8px 14px 6px;
  margin-right: 14px;
  cursor: pointer;
  transition: background var(--uebergang);
}
.feld input[type="file"]::file-selector-button:hover { background: rgba(255,255,255,.2); }
.feld .feld-hinweis { font-size: .78rem; color: rgba(255,255,255,.45); }

/* Angaben-Checkliste (3D-Druck-Anfrage) */
.checkliste {
  background: var(--dunkel-2);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius);
  padding: 24px 26px 20px;
  margin-top: 2rem;
}
.checkliste .mono-titel {
  font-family: var(--mono);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--rot);
  display: block;
  margin-bottom: 14px;
}
.checkliste li {
  position: relative;
  padding: 7px 0 7px 26px;
  font-size: .92rem;
  color: rgba(255,255,255,.78);
}
.checkliste li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 14px;
  width: 12px; height: 12px;
  border: 1px solid var(--rot);
  border-radius: 3px;
}

/* Toleranz-/Infobox */
.info-box {
  border: 1px solid var(--linie);
  border-left: 3px solid var(--rot);
  border-radius: 0 var(--radius) var(--radius) 0;
  background: var(--weiss);
  padding: 28px 30px 24px;
  margin-top: 48px;
}
.info-box h3 { margin-bottom: .6rem; }
.info-box p { font-size: .95rem; margin-bottom: .8rem; }
.info-box p:last-child { margin-bottom: 0; }

/* Platzhalter-Bild (fehlende Fotos) */
.platzhalter-bild {
  aspect-ratio: 4 / 3;
  border: 1px dashed #c9ccd2;
  border-radius: var(--radius);
  background: var(--flaeche);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
  font-family: var(--mono);
  font-size: .78rem;
  letter-spacing: .06em;
  color: var(--text-hell);
}

/* Rechtstexte */
.rechtstext { max-width: 820px; }
.rechtstext h2 { font-size: 1.35rem; margin: 2.6rem 0 .9rem; }
.rechtstext h2:first-of-type { margin-top: 2rem; }
.rechtstext h3 { font-size: 1.05rem; margin: 1.6rem 0 .5rem; }
.rechtstext p, .rechtstext li { font-size: .96rem; margin-bottom: .8rem; }
.rechtstext ol { padding-left: 22px; }
.rechtstext ol li { margin-bottom: .7rem; }
.rechtstext a { color: var(--rot); }

/* ─── Scroll-Reveal ─── */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .7s cubic-bezier(.4, 0, .2, 1), transform .7s cubic-bezier(.4, 0, .2, 1);
}
.reveal.sichtbar { opacity: 1; transform: none; }
.reveal-verzoegert-1 { transition-delay: .1s; }
.reveal-verzoegert-2 { transition-delay: .2s; }
.reveal-verzoegert-3 { transition-delay: .3s; }
.reveal-verzoegert-4 { transition-delay: .4s; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .prozess-linie { transition: none; }
  *, *::before, *::after { animation: none !important; }
}

/* ═══ Responsive ═══ */
@media (max-width: 1024px) {
  .prozess-grid { grid-template-columns: repeat(3, 1fr); }
  .prozess-grid::before, .prozess-linie { display: none; }
  .projekt-grid { grid-template-columns: 1fr; max-width: 560px; margin-inline: auto; }
  .review-card { flex: 0 0 calc((100% - 24px) / 2); }
  .cta-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  #main-header nav { display: none; }
  .hamburger { display: flex; }
  .mobile-nav { display: block; }
  .top-bar-right { display: none; }
  .top-bar-left { justify-content: space-between; width: 100%; gap: 12px; }

  .hero-grid { grid-template-columns: 1fr; }
  .hero-text { order: 1; }
  .hero-bild-spalte { order: 2; }
  .hero-lead { font-size: 1.08rem; }

  .split-section { grid-template-columns: 1fr; }
  .logo-grid { gap: 24px 0; }
  .logo-grid img { width: 33.333%; height: 34px; padding: 0 12px; }
  .verfahren-preview { display: none; }
  .prozess-grid { grid-template-columns: 1fr; gap: 28px; }
  .schritt { display: grid; grid-template-columns: 54px 1fr; gap: 0 18px; }
  .schritt .schritt-nr { margin-bottom: 0; grid-row: span 2; }
  .werte-grid { grid-template-columns: 1fr; }
  .werte-spalte { padding: 28px 24px 22px; }
  .review-card { flex: 0 0 100%; }
  .formular-zeile { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .fakten-zeile { gap: 24px; }
  .kachel-grid { grid-template-columns: 1fr; }
  .anker-nav { top: 70px; }
  .timeline::before { left: 21px; }
  .timeline-punkt { width: 42px; height: 42px; font-size: .65rem; }
  .timeline-eintrag { padding-left: 62px; }
}

@media (max-width: 1024px) and (min-width: 769px) {
  .kachel-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  .hero-buttons .btn { width: 100%; justify-content: center; }
}
