/* =========================================================================
   AS-Baltruschat GmbH – Design-System
   Firmenfarben aus dem Logo abgeleitet (Blau / Grau), Akzent Branchengelb.
   ========================================================================= */

:root {
  /* Markenfarben */
  --blau:        #1B5FB4;
  --blau-dunkel: #10437f;
  --blau-hell:   #e8f0fa;
  --grau:        #8E9296;
  --grau-dunkel: #5b6166;
  --gelb:        #F4C400;

  /* Neutrale Töne */
  --text:        #1F2933;
  --text-leise:  #56616c;
  --bg:          #ffffff;
  --bg-grau:     #F5F7FA;
  --linie:       #e3e8ee;
  --weiss:       #ffffff;

  /* Form */
  --radius:      14px;
  --radius-sm:   8px;
  --schatten:    0 6px 24px rgba(16, 67, 127, 0.08);
  --schatten-hover: 0 12px 32px rgba(16, 67, 127, 0.16);
  --max:         1140px;
  --uebergang:   0.2s ease;
}

/* ---------- Reset / Basis ---------- */
* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }

a { color: var(--blau); text-decoration: none; transition: color var(--uebergang); }
a:hover { color: var(--blau-dunkel); }

h1, h2, h3 { line-height: 1.2; color: var(--text); font-weight: 700; }
h1 { font-size: clamp(1.9rem, 4vw, 2.9rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.1rem); }
h3 { font-size: 1.2rem; }

p { color: var(--text-leise); }

.container { width: 100%; max-width: var(--max); margin: 0 auto; padding: 0 20px; }

section { padding: 70px 0; }
.bg-grau { background: var(--bg-grau); }

.section-titel { text-align: center; margin-bottom: 12px; }
.section-untertitel {
  text-align: center; max-width: 640px; margin: 0 auto 48px;
  color: var(--text-leise);
}
.akzent-strich {
  width: 64px; height: 4px; background: var(--gelb);
  border-radius: 2px; margin: 14px auto 0;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 26px; border-radius: var(--radius-sm);
  font-weight: 600; font-size: 1rem; cursor: pointer;
  border: 2px solid transparent; transition: all var(--uebergang);
}
.btn-primaer { background: var(--blau); color: #fff; }
.btn-primaer:hover { background: var(--blau-dunkel); color: #fff; transform: translateY(-2px); }
.btn-hell { background: #fff; color: var(--blau); border-color: #fff; }
.btn-hell:hover { background: var(--gelb); border-color: var(--gelb); color: var(--text); }
.btn-outline { background: transparent; color: var(--blau); border-color: var(--blau); }
.btn-outline:hover { background: var(--blau); color: #fff; }

/* ---------- Header / Navigation ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: saturate(180%) blur(8px);
  border-bottom: 1px solid var(--linie);
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  height: 106px;
}
.nav-logo img { height: 74px; width: auto; }
.nav-links { display: flex; align-items: center; gap: 4px; list-style: none; }
.nav-links a {
  display: block; padding: 10px 17px; border-radius: var(--radius-sm);
  color: var(--text); font-weight: 500; font-size: 1.05rem;
}
.nav-links a:hover, .nav-links a.aktiv { color: var(--blau); background: var(--blau-hell); }
.nav-cta { margin-left: 8px; }

.nav-toggle {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 8px;
}
.nav-toggle span {
  width: 26px; height: 3px; background: var(--blau);
  border-radius: 2px; transition: var(--uebergang);
}

/* ---------- Hero (Split: Textpanel + Foto) ---------- */
.hero { color: #fff; }
.hero-split { display: grid; grid-template-columns: 1fr 1fr; min-height: 540px; }
.hero-text {
  background: linear-gradient(135deg, var(--blau) 0%, var(--blau-dunkel) 100%);
  display: flex; align-items: center; padding: 72px 44px;
}
.hero-text-inner { max-width: 520px; margin-left: auto; }
.hero-foto {
  background-color: #c9d6e6;
  background-image: url('../img/arbeitsschutz.jpg');
  background-size: cover; background-position: center;
}
.hero-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 48px; align-items: center; }
.hero-single { max-width: 760px; }

/* ---------- Bild-Band (volle Breite) ---------- */
.bild-band {
  height: clamp(260px, 40vw, 460px);
  background-color: #dfe6ef;
  background-image: url('../img/arbeitsschutz.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.hero h1 { color: #fff; }
.hero p { color: rgba(255,255,255,0.9); font-size: 1.15rem; margin: 18px 0 30px; }
.hero .eyebrow {
  display: inline-block; background: rgba(255,255,255,0.15);
  color: var(--gelb); font-weight: 600; letter-spacing: 0.04em;
  padding: 6px 14px; border-radius: 100px; font-size: 0.85rem; margin-bottom: 18px;
}
.hero-aktionen { display: flex; flex-wrap: wrap; gap: 14px; }
.hero-bild { background: #fff; border-radius: var(--radius); padding: 16px; box-shadow: var(--schatten-hover); }

/* ---------- Karten-Grid ---------- */
.grid { display: grid; gap: 24px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }

.card {
  background: #fff; border: 1px solid var(--linie); border-radius: var(--radius);
  padding: 28px; box-shadow: var(--schatten); transition: all var(--uebergang);
  display: flex; flex-direction: column;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--schatten-hover); border-color: #cfd9e6; }
.card-icon {
  width: 52px; height: 52px; border-radius: 12px;
  background: var(--blau-hell); color: var(--blau);
  display: grid; place-items: center; margin-bottom: 16px;
}
.card-icon svg { width: 28px; height: 28px; }
.card h3 { margin-bottom: 8px; }
.card p { font-size: 0.96rem; flex: 1; }
.card .mehr {
  margin-top: 16px; font-weight: 600; display: inline-flex; align-items: center; gap: 6px;
}
.card .mehr::after { content: "→"; transition: transform var(--uebergang); }
.card:hover .mehr::after { transform: translateX(4px); }

/* ---------- Über-uns / Split ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.feature-liste { list-style: none; margin-top: 20px; }
.feature-liste li {
  display: flex; gap: 12px; align-items: flex-start; margin-bottom: 12px; color: var(--text-leise);
}
.feature-liste li::before {
  content: "✓"; flex: none; width: 24px; height: 24px; border-radius: 50%;
  background: var(--blau); color: #fff; display: grid; place-items: center;
  font-size: 0.8rem; font-weight: 700; margin-top: 3px;
}

/* ---------- Leistungs-Detailseite ---------- */
.seiten-kopf {
  background: linear-gradient(135deg, var(--blau) 0%, var(--blau-dunkel) 100%);
  color: #fff; padding: 64px 0;
}
.seiten-kopf h1 { color: #fff; }
.seiten-kopf .breadcrumb { color: rgba(255,255,255,0.8); font-size: 0.9rem; margin-bottom: 10px; }
.seiten-kopf .breadcrumb a { color: #fff; }

.inhalt-grid { display: grid; grid-template-columns: 1fr 320px; gap: 40px; align-items: start; }
.prosa h2 { margin: 28px 0 12px; }
.prosa p { margin-bottom: 14px; }
.prosa ul { margin: 0 0 18px 0; list-style: none; }
.prosa ul li {
  position: relative; padding-left: 28px; margin-bottom: 9px; color: var(--text-leise);
}
.prosa ul li::before {
  content: ""; position: absolute; left: 6px; top: 10px;
  width: 8px; height: 8px; border-radius: 50%; background: var(--gelb);
}

.gesetz-box {
  background: var(--blau-hell); border-left: 4px solid var(--blau);
  border-radius: var(--radius-sm); padding: 22px 24px; margin: 24px 0;
}
.gesetz-box h2 { font-size: 1.15rem; margin-bottom: 10px; color: var(--blau-dunkel); }
.gesetz-box ul li::before { background: var(--blau); }

/* Sidebar */
.sidebar { position: sticky; top: 96px; }
.sidebar-box {
  background: #fff; border: 1px solid var(--linie); border-radius: var(--radius);
  padding: 24px; box-shadow: var(--schatten); margin-bottom: 20px;
}
.sidebar-box h3 { margin-bottom: 14px; }
.sidebar-box.dunkel { background: var(--blau); color: #fff; border: none; }
.sidebar-box.dunkel h3, .sidebar-box.dunkel p { color: #fff; }
.sidebar-nav { list-style: none; }
.sidebar-nav li { border-bottom: 1px solid var(--linie); }
.sidebar-nav li:last-child { border-bottom: none; }
.sidebar-nav a { display: block; padding: 10px 0; color: var(--text); font-size: 0.95rem; }
.sidebar-nav a:hover, .sidebar-nav a.aktiv { color: var(--blau); padding-left: 6px; }

/* ---------- Kontaktformular ---------- */
.form-feld { margin-bottom: 18px; }
.form-feld label { display: block; font-weight: 600; margin-bottom: 6px; font-size: 0.95rem; }
.form-feld input, .form-feld textarea, .form-feld select {
  width: 100%; padding: 12px 14px; border: 1px solid var(--linie);
  border-radius: var(--radius-sm); font: inherit; color: var(--text); background: #fff;
  transition: border-color var(--uebergang);
}
.form-feld input:focus, .form-feld textarea:focus {
  outline: none; border-color: var(--blau); box-shadow: 0 0 0 3px rgba(27,95,180,0.12);
}
.form-feld textarea { min-height: 150px; resize: vertical; }

/* Statusmeldung des Kontaktformulars */
.form-msg { margin-top: 14px; font-size: 0.95rem; line-height: 1.5; }
.form-msg:empty { display: none; }
.form-msg.ok {
  background: #e6f7ed; border: 1px solid #abe0c0; color: #1c7a45;
  padding: 12px 16px; border-radius: var(--radius-sm);
}
.form-msg.err {
  background: #fdecec; border: 1px solid #f3b6b6; color: #b42323;
  padding: 12px 16px; border-radius: var(--radius-sm);
}

/* Honeypot-Feld: für Menschen unsichtbar, von Bots aber ausfüllbar (Spam-Schutz) */
.hp-feld {
  position: absolute !important;
  left: -9999px !important;
  width: 1px; height: 1px;
  overflow: hidden;
}

.kontakt-info { list-style: none; }
.kontakt-info li { display: flex; gap: 14px; align-items: flex-start; margin-bottom: 18px; }
.kontakt-info .ico {
  flex: none; width: 44px; height: 44px; border-radius: 10px;
  background: var(--blau-hell); color: var(--blau); display: grid; place-items: center;
}

/* ---------- Fakten-Band (Kennzahlen) ---------- */
.fakten-band {
  background: linear-gradient(135deg, var(--blau) 0%, var(--blau-dunkel) 100%);
  color: #fff; padding: 48px 0;
}
.fakten-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; text-align: center;
}

/* Erfahrungs-Counter (Jahre/Tage/Std/Min/Sek) */
.erfahrung-counter { text-align: center; margin-bottom: 40px; }
.ec-titel {
  color: rgba(255,255,255,0.9); font-size: 0.98rem; letter-spacing: 0.03em;
  margin-bottom: 16px;
}
.ec-einheiten { display: flex; justify-content: center; flex-wrap: wrap; gap: 12px; }
.ec-einheit {
  min-width: 86px; background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.22); border-radius: 12px; padding: 12px 10px;
}
.ec-zahl {
  display: block; font-size: clamp(1.7rem, 3.4vw, 2.4rem); font-weight: 800;
  line-height: 1; font-variant-numeric: tabular-nums;
}
.ec-label {
  display: block; margin-top: 6px; font-size: 0.78rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 1px; color: var(--gelb);
}
.fakt { padding: 8px 6px; }
.fakt-zahl {
  font-size: clamp(2rem, 4vw, 2.8rem); font-weight: 800; line-height: 1;
  color: #fff; display: flex; justify-content: center; align-items: baseline; gap: 2px;
}
.fakt-zahl .suffix { color: var(--gelb); }
.fakt-live { white-space: nowrap; }
.fakt-live .dez { font-size: 0.42em; font-weight: 700; opacity: 0.85; letter-spacing: 0.5px; }
.fakt-label { margin-top: 8px; font-size: 0.95rem; color: rgba(255,255,255,0.88); }
.fakt + .fakt { border-left: 1px solid rgba(255,255,255,0.18); }

/* ---------- Qualifikations-Siegel ---------- */
.siegel-leiste {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; margin-top: 36px;
}
.siegel {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.25);
  color: #fff; padding: 8px 16px; border-radius: 100px; font-size: 0.9rem; font-weight: 600;
}
.siegel svg { width: 16px; height: 16px; color: var(--gelb); }

/* ---------- Vorteile / "Wir bieten Ihnen" ---------- */
.vorteil { display: flex; gap: 16px; align-items: flex-start; }
.vorteil .v-ico {
  flex: none; width: 46px; height: 46px; border-radius: 11px;
  background: var(--blau-hell); color: var(--blau); display: grid; place-items: center;
}
.vorteil .v-ico svg { width: 24px; height: 24px; }
.vorteil h3 { font-size: 1.08rem; margin-bottom: 4px; }
.vorteil p { font-size: 0.95rem; }

/* ---------- Logo-Wand (Partner & Referenzen) ---------- */
.logo-wall {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 18px;
}
.logo-kachel {
  display: flex; align-items: center; justify-content: center;
  background: #fff; border: 1px solid var(--linie); border-radius: var(--radius-sm);
  padding: 22px 18px; min-height: 116px; transition: all var(--uebergang);
}
.logo-kachel:hover { box-shadow: var(--schatten-hover); transform: translateY(-3px); border-color: #cfd9e6; }
.logo-kachel img { max-height: 64px; max-width: 100%; width: auto; object-fit: contain; }

/* ---------- FAQ (Accordion) ---------- */
.faq-liste { max-width: 820px; margin: 0 auto; }
.faq-item {
  border: 1px solid var(--linie); border-radius: var(--radius-sm);
  margin-bottom: 12px; background: #fff; overflow: hidden;
}
.faq-item summary {
  cursor: pointer; padding: 18px 22px; font-weight: 600; color: var(--text);
  list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+"; color: var(--blau); font-size: 1.5rem; font-weight: 400; line-height: 1;
}
.faq-item[open] summary::after { content: "\2013"; }
.faq-item[open] summary { color: var(--blau); }
.faq-item .faq-antwort { padding: 0 22px 20px; color: var(--text-leise); }

/* ---------- Ablauf / "So arbeiten wir" ---------- */
.schritte {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
  position: relative; margin-top: 44px;
}
.schritte::before {
  content: ""; position: absolute; top: 28px; left: 12.5%; right: 12.5%;
  height: 3px; background: var(--linie); z-index: 0;
}
.schritt { text-align: center; position: relative; z-index: 1; }
.schritt-num {
  width: 56px; height: 56px; border-radius: 50%;
  background: linear-gradient(135deg, var(--blau) 0%, var(--blau-dunkel) 100%);
  color: #fff; font-size: 1.4rem; font-weight: 800;
  display: grid; place-items: center; margin: 0 auto 16px;
  box-shadow: 0 6px 16px rgba(27, 95, 180, 0.3); border: 4px solid #fff;
}
.schritt h3 { font-size: 1.1rem; margin-bottom: 6px; }
.schritt p { font-size: 0.93rem; }

/* ---------- Branchen ---------- */
.branchen-grid {
  display: grid; grid-template-columns: repeat(6, 1fr); gap: 18px; margin-top: 44px;
}
.branche {
  text-align: center; padding: 24px 10px; background: #fff;
  border: 1px solid var(--linie); border-radius: var(--radius); transition: all var(--uebergang);
}
.branche:hover { transform: translateY(-4px); box-shadow: var(--schatten); border-color: #cfd9e6; }
.branche .b-ico {
  width: 50px; height: 50px; margin: 0 auto 12px; border-radius: 12px;
  background: var(--blau-hell); color: var(--blau); display: grid; place-items: center;
}
.branche .b-ico svg { width: 26px; height: 26px; }
.branche span { font-weight: 600; font-size: 0.92rem; }

/* ---------- Schwebender Anruf-Button (mobil) ---------- */
.call-fab {
  position: fixed; right: 18px; bottom: 18px; z-index: 60;
  width: 58px; height: 58px; border-radius: 50%;
  background: var(--blau); color: #fff; display: none;
  align-items: center; justify-content: center;
  box-shadow: 0 8px 24px rgba(16, 67, 127, 0.4);
}
.call-fab svg { width: 26px; height: 26px; }
.call-fab:hover { background: var(--blau-dunkel); color: #fff; }
@media (max-width: 760px) { .call-fab { display: flex; } }

/* ---------- Sticky-Header: schrumpft beim Scrollen ---------- */
.site-header { transition: box-shadow 0.25s ease; }
.nav { transition: height 0.25s ease; }
.nav-logo img { transition: height 0.25s ease; }
.site-header.geschrumpft { box-shadow: 0 4px 20px rgba(16, 67, 127, 0.13); }
.site-header.geschrumpft .nav { height: 84px; }
.site-header.geschrumpft .nav-logo img { height: 58px; }

/* ---------- Scroll-Animationen (sanftes Einblenden) ---------- */
.pre-reveal { opacity: 0; transform: translateY(24px); }
.pre-reveal.is-visible {
  opacity: 1; transform: none;
  transition: opacity 0.6s ease, transform 0.6s ease;
}
@media (prefers-reduced-motion: reduce) {
  .pre-reveal, .pre-reveal.is-visible { opacity: 1; transform: none; transition: none; }
}

/* ---------- Sechseck-/Sicherheits-Muster ---------- */
.muster { position: relative; }
.muster > .container { position: relative; z-index: 1; }
.muster::before {
  content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none;
}
.muster-hell::before {
  background-image: url("data:image/svg+xml,%3Csvg width='28' height='49' viewBox='0 0 28 49' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%23ffffff' stroke-opacity='0.07' stroke-width='2'%3E%3Cpath d='M13.99 9.25l13 7.5v15l-13 7.5L1 31.75v-15l12.99-7.5z'/%3E%3Cpath d='M-13 18.25l13 7.5v15l-13 7.5L-26 40.75v-15l13-7.5zM41 18.25l13 7.5v15l-13 7.5-13-7.5v-15l13-7.5z'/%3E%3Cpath d='M27.99 1.25l13 7.5v15l-13 7.5-13-7.5v-15l13-7.5zM-.01 1.25l13 7.5v15l-13 7.5-13-7.5v-15l13-7.5zM27.99 33.75l13 7.5v15l-13 7.5-13-7.5v-15l13-7.5zM-.01 33.75l13 7.5v15l-13 7.5-13-7.5v-15l13-7.5z'/%3E%3C/g%3E%3C/svg%3E");
}
.muster-dunkel::before {
  background-image: url("data:image/svg+xml,%3Csvg width='28' height='49' viewBox='0 0 28 49' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%231B5FB4' stroke-opacity='0.06' stroke-width='2'%3E%3Cpath d='M13.99 9.25l13 7.5v15l-13 7.5L1 31.75v-15l12.99-7.5z'/%3E%3Cpath d='M-13 18.25l13 7.5v15l-13 7.5L-26 40.75v-15l13-7.5zM41 18.25l13 7.5v15l-13 7.5-13-7.5v-15l13-7.5z'/%3E%3Cpath d='M27.99 1.25l13 7.5v15l-13 7.5-13-7.5v-15l13-7.5zM-.01 1.25l13 7.5v15l-13 7.5-13-7.5v-15l13-7.5zM27.99 33.75l13 7.5v15l-13 7.5-13-7.5v-15l13-7.5zM-.01 33.75l13 7.5v15l-13 7.5-13-7.5v-15l13-7.5z'/%3E%3C/g%3E%3C/svg%3E");
}

/* ---------- Diagonale Section-Übergänge ---------- */
.fakten-band { clip-path: polygon(0 0, 100% 0, 100% 100%, 0 calc(100% - 22px)); }
.seiten-kopf { clip-path: polygon(0 0, 100% 0, 100% 100%, 0 calc(100% - 22px)); }

/* ---------- CTA mit Bild (Foto neben der CTA-Box) ---------- */
.cta-mit-bild {
  display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 28px; align-items: stretch;
}
.cta-mit-bild > img {
  width: 100%; height: 100%; max-height: 340px; object-fit: cover;
  border-radius: var(--radius); box-shadow: var(--schatten);
}
.cta-mit-bild .cta-band { margin: 0; }
@media (max-width: 760px) {
  .cta-mit-bild { grid-template-columns: 1fr; }
  .cta-mit-bild > img { max-height: 220px; }
}

/* ---------- CTA-Band ---------- */
.cta-band {
  background: linear-gradient(135deg, var(--blau) 0%, var(--blau-dunkel) 100%);
  color: #fff; text-align: center; border-radius: var(--radius); padding: 48px 24px;
}
.cta-band h2 { color: #fff; }
.cta-band p { color: rgba(255,255,255,0.9); margin: 12px auto 24px; max-width: 540px; }

/* ---------- Download-Kachel mit Mini-Vorschau ---------- */
.dl-vorschau {
  border: 1px solid var(--linie); border-radius: var(--radius-sm);
  overflow: hidden; margin-bottom: 16px; background: #fff; aspect-ratio: 1 / 0.7;
}
.dl-vorschau img {
  width: 100%; height: 100%; object-fit: cover; object-position: top center;
  display: block; transition: transform 0.3s ease;
}
.download-karte:hover .dl-vorschau img { transform: scale(1.03); }
.dl-leer {
  display: grid; place-items: center; background: var(--blau-hell); border-style: dashed;
}
.dl-leer svg { width: 46px; height: 46px; color: var(--blau); }

/* ---------- Hinweis-Box (Platzhalter) ---------- */
.hinweis {
  background: #fff8db; border: 1px dashed #e0c200; color: #6b5800;
  padding: 14px 18px; border-radius: var(--radius-sm); font-size: 0.92rem; margin: 16px 0;
}

/* ---------- Footer ---------- */
.site-footer { background: #16212e; color: #c4ccd6; padding: 56px 0 24px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; }
.site-footer h4 { color: #fff; font-size: 1rem; margin-bottom: 16px; }
.site-footer a { color: #c4ccd6; }
.site-footer a:hover { color: var(--gelb); }
.footer-logo { background:#fff; padding:10px 14px; border-radius:10px; display:inline-block; margin-bottom:16px; }
.footer-logo img { height: 40px; }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 9px; }
.footer-unten {
  border-top: 1px solid #2a3744; margin-top: 36px; padding-top: 20px;
  display: flex; flex-wrap: wrap; gap: 12px; justify-content: space-between;
  font-size: 0.88rem; color: #8a96a4;
}
.footer-unten a { color: #8a96a4; }

/* ---------- Responsiv ---------- */
@media (max-width: 900px) {
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .hero-grid, .split, .inhalt-grid, .footer-grid { grid-template-columns: 1fr; }
  .hero-split { grid-template-columns: 1fr; }
  .hero-text { padding: 56px 20px; }
  .hero-text-inner { max-width: none; margin-left: 0; }
  .hero-foto { min-height: 320px; }
  .hero-bild { order: -1; max-width: 460px; }
  .sidebar { position: static; }
  .footer-grid { gap: 28px; }

  .nav-toggle { display: flex; }
  .nav-links {
    position: absolute; top: 106px; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: #fff; border-bottom: 1px solid var(--linie);
    padding: 8px 16px 16px; box-shadow: var(--schatten);
    transform: translateY(-12px); opacity: 0; pointer-events: none;
    transition: all var(--uebergang);
  }
  .nav-links.offen { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .nav-links a { padding: 12px 8px; }
  .nav-cta { margin: 8px 0 0; }
}

@media (max-width: 900px) {
  .schritte { grid-template-columns: repeat(2, 1fr); gap: 36px 24px; }
  .schritte::before { display: none; }
  .branchen-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 700px) {
  .fakten-grid { grid-template-columns: repeat(2, 1fr); gap: 28px 12px; }
  .fakt + .fakt { border-left: none; }
}

@media (max-width: 560px) {
  .grid-3, .grid-2 { grid-template-columns: 1fr; }
  .schritte { grid-template-columns: 1fr; gap: 28px; }
  .branchen-grid { grid-template-columns: repeat(2, 1fr); }
  section { padding: 50px 0; }
  .hero { padding: 60px 0; }
}
