/* ============================================================
   Eidecker Beratung & Management GmbH
   Design: Horizontales Full-Width-Layout
   Palette: Stahlweiss #F4F5F6 | Tinte #1A1F2E | Tieforange #C8511B | Silber #8A9099
   Fonts: IBM Plex Sans (UI) + Libre Baskerville (Display)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Sans:ital,wght@0,300;0,400;0,500;0,600;1,300&family=Libre+Baskerville:ital,wght@0,400;0,700;1,400&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --tinte:      #1A1F2E;
  --tinte-soft: #252B3B;
  --orange:     #C8511B;
  --orange-dim: #A0400F;
  --stahl:      #F4F5F6;
  --silber:     #8A9099;
  --linie:      #DDE0E5;
  --weiss:      #FFFFFF;
  --text:       #2C3140;
  --text-soft:  #5A6070;
  --nav-h:      72px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'IBM Plex Sans', system-ui, sans-serif;
  font-size: 16px;
  color: var(--text);
  background: var(--weiss);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

/* ---- TOP NAV ---- */
.top-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  background: var(--weiss);
  border-bottom: 1px solid var(--linie);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 3rem;
  z-index: 100;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}
.nav-brand-mark {
  width: 36px; height: 36px;
  background: var(--orange);
  display: flex; align-items: center; justify-content: center;
  font-family: 'IBM Plex Sans', sans-serif;
  font-weight: 600;
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  color: var(--weiss);
  flex-shrink: 0;
}
.nav-brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}
.nav-brand-name {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--tinte);
  letter-spacing: 0.01em;
}
.nav-brand-sub {
  font-size: 0.65rem;
  color: var(--silber);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.nav-links-top {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  list-style: none;
}
.nav-links-top a {
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-soft);
  letter-spacing: 0.02em;
  transition: color 0.2s;
}
.nav-links-top a:hover,
.nav-links-top a.active { color: var(--orange); }

.nav-cta {
  display: inline-block;
  padding: 0.55rem 1.4rem;
  background: var(--orange);
  color: var(--weiss) !important;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-decoration: none;
  transition: background 0.2s;
}
.nav-cta:hover { background: var(--orange-dim) !important; color: var(--weiss) !important; }

/* Mobile */
.mob-bar {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  background: var(--weiss);
  border-bottom: 1px solid var(--linie);
  align-items: center;
  justify-content: space-between;
  padding: 0 1.5rem;
  z-index: 100;
}
.mob-brand-mark {
  width: 32px; height: 32px;
  background: var(--orange);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.65rem; font-weight: 700; color: var(--weiss);
}
.mob-toggle {
  background: none; border: none; cursor: pointer;
  display: flex; flex-direction: column; gap: 5px; padding: 4px;
}
.mob-toggle span {
  display: block; width: 22px; height: 1.5px; background: var(--tinte);
}
.mob-menu {
  display: none;
  position: fixed;
  top: var(--nav-h); left: 0; right: 0;
  background: var(--weiss);
  border-bottom: 1px solid var(--linie);
  z-index: 99;
  padding: 1.5rem;
}
.mob-menu.open { display: block; }
.mob-menu ul { list-style: none; }
.mob-menu li { border-bottom: 1px solid var(--linie); }
.mob-menu a {
  display: block; padding: 0.9rem 0;
  font-size: 0.9rem; font-weight: 500;
  color: var(--text); text-decoration: none;
}

/* ---- PAGE WRAPPER ---- */
.page-wrap { padding-top: var(--nav-h); }

/* ---- HERO ---- */
.hero {
  background: var(--tinte);
  min-height: 88vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  overflow: hidden;
}
.hero-left {
  padding: 7rem 4rem 5rem 5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 2;
}
.hero-eyebrow {
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--orange);
  font-weight: 500;
  display: block;
  margin-bottom: 1.5rem;
}
.hero-left h1 {
  font-family: 'Libre Baskerville', Georgia, serif;
  font-weight: 400;
  font-size: clamp(2.4rem, 4.5vw, 3.8rem);
  color: var(--weiss);
  line-height: 1.15;
  margin-bottom: 1.75rem;
}
.hero-left h1 em {
  font-style: italic;
  color: var(--orange);
}
.hero-divider {
  width: 48px; height: 2px;
  background: var(--orange);
  margin-bottom: 1.75rem;
}
.hero-left p {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.42);
  max-width: 420px;
  line-height: 1.9;
  margin-bottom: 2.5rem;
}
.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero-right {
  background: var(--tinte-soft);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 4rem;
  position: relative;
  overflow: hidden;
}
.hero-right::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 340px; height: 340px;
  border: 1px solid rgba(200,81,27,0.12);
  border-radius: 50%;
}
.hero-right::after {
  content: '';
  position: absolute;
  top: 20px; right: 20px;
  width: 200px; height: 200px;
  border: 1px solid rgba(200,81,27,0.08);
  border-radius: 50%;
}
.hero-process {
  position: relative;
  z-index: 2;
}
.hero-process-label {
  font-size: 0.6rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.2);
  display: block;
  margin-bottom: 2rem;
}
.process-step {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.process-step:last-child { border-bottom: none; }
.ps-num {
  font-family: 'Libre Baskerville', Georgia, serif;
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--orange);
  opacity: 0.4;
  line-height: 1;
  min-width: 2.5rem;
}
.ps-body {}
.ps-title {
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.02em;
  display: block;
  margin-bottom: 0.2rem;
}
.ps-desc {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.25);
  line-height: 1.6;
}

/* ---- BUTTONS ---- */
.btn-orange {
  display: inline-block;
  padding: 0.75rem 2rem;
  background: var(--orange);
  color: var(--weiss);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.2s;
}
.btn-orange:hover { background: var(--orange-dim); }
.btn-ghost-w {
  display: inline-block;
  padding: 0.75rem 2rem;
  border: 1px solid rgba(255,255,255,0.18);
  color: rgba(255,255,255,0.55);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s;
}
.btn-ghost-w:hover { border-color: rgba(255,255,255,0.4); color: rgba(255,255,255,0.8); }
.btn-ghost-d {
  display: inline-block;
  padding: 0.75rem 2rem;
  border: 1px solid var(--linie);
  color: var(--text-soft);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s;
}
.btn-ghost-d:hover { border-color: var(--orange); color: var(--orange); }

/* ---- SECTION HELPERS ---- */
.sec { padding: 6rem 5rem; }
.sec-sm { padding: 4rem 5rem; }
.sec-dark { background: var(--tinte); }
.sec-stahl { background: var(--stahl); }
.sec-white { background: var(--weiss); }

.wrap { max-width: 1160px; margin: 0 auto; }
.wrap-narrow { max-width: 760px; margin: 0 auto; }

.eyebrow {
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--orange);
  font-weight: 500;
  display: block;
  margin-bottom: 0.9rem;
}
.sec-title {
  font-family: 'Libre Baskerville', Georgia, serif;
  font-weight: 400;
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  color: var(--tinte);
  line-height: 1.25;
  margin-bottom: 1rem;
}
.sec-title-light { color: var(--weiss); }
.orange-rule {
  width: 40px; height: 2px;
  background: var(--orange);
  margin-bottom: 1.5rem;
}
.sec-lead {
  font-size: 0.92rem;
  color: var(--text-soft);
  max-width: 580px;
  line-height: 1.9;
}
.sec-lead-light { color: rgba(255,255,255,0.38); }

/* ---- LEISTUNGS-GRID (Startseite) ---- */
.leistung-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--linie);
  margin-top: 3.5rem;
}
.lg-item {
  padding: 2.5rem;
  border-right: 1px solid var(--linie);
  position: relative;
  transition: background 0.2s;
}
.lg-item:last-child { border-right: none; }
.lg-item:hover { background: var(--stahl); }
.lg-num {
  font-family: 'Libre Baskerville', Georgia, serif;
  font-size: 3rem;
  font-weight: 400;
  color: var(--linie);
  line-height: 1;
  display: block;
  margin-bottom: 1.25rem;
}
.lg-title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--tinte);
  margin-bottom: 0.75rem;
  line-height: 1.3;
}
.lg-text {
  font-size: 0.85rem;
  color: var(--text-soft);
  line-height: 1.8;
}
.lg-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--orange);
  text-decoration: none;
  margin-top: 1.25rem;
}
.lg-link::after { content: '\2192'; }

/* ---- PROZESS-SECTION ---- */
.prozess-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 3.5rem;
  border-top: 2px solid rgba(255,255,255,0.06);
}
.pz-step {
  padding: 2.5rem 2rem;
  border-right: 1px solid rgba(255,255,255,0.05);
  position: relative;
}
.pz-step:last-child { border-right: none; }
.pz-step::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 0; height: 2px;
  background: var(--orange);
  transition: width 0.4s ease;
}
.pz-step:hover::before { width: 100%; }
.pz-n {
  font-family: 'Libre Baskerville', Georgia, serif;
  font-size: 2.5rem;
  font-weight: 400;
  color: rgba(255,255,255,0.06);
  line-height: 1;
  display: block;
  margin-bottom: 1rem;
}
.pz-title {
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(255,255,255,0.65);
  margin-bottom: 0.6rem;
}
.pz-text {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.25);
  line-height: 1.8;
}

/* ---- SPLIT SECTION ---- */
.split { display: grid; grid-template-columns: 1fr 1fr; }
.split-left { padding: 6rem 4rem 6rem 5rem; }
.split-right { padding: 6rem 5rem 6rem 4rem; }
.split-dark { background: var(--tinte); }
.split-stahl { background: var(--stahl); }

/* ---- STATS BAND ---- */
.stats-band {
  background: var(--orange);
  padding: 3.5rem 5rem;
}
.stats-inner {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.stat-item {
  padding: 0 2rem;
  border-right: 1px solid rgba(255,255,255,0.2);
  text-align: center;
}
.stat-item:first-child { padding-left: 0; }
.stat-item:last-child { border-right: none; }
.stat-num {
  display: block;
  font-family: 'Libre Baskerville', Georgia, serif;
  font-size: 2.4rem;
  font-weight: 400;
  color: var(--weiss);
  line-height: 1;
  margin-bottom: 0.4rem;
}
.stat-label {
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  font-weight: 500;
}

/* ---- CTA BAND ---- */
.cta-band {
  background: var(--stahl);
  padding: 5rem;
  border-top: 1px solid var(--linie);
}
.cta-inner {
  max-width: 1160px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
}
.cta-inner h2 {
  font-family: 'Libre Baskerville', Georgia, serif;
  font-weight: 400;
  font-size: 1.9rem;
  color: var(--tinte);
  margin-bottom: 0.5rem;
}
.cta-inner p {
  font-size: 0.88rem;
  color: var(--text-soft);
}

/* ---- FOOTER ---- */
footer {
  background: var(--tinte);
  padding: 5rem;
}
.footer-grid {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 4rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.footer-brand-mark {
  width: 40px; height: 40px;
  background: var(--orange);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.7rem; font-weight: 700; color: var(--weiss);
  margin-bottom: 1.25rem;
}
.footer-brand p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.22);
  line-height: 1.8;
  max-width: 280px;
}
.footer-col h5 {
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.22);
  margin-bottom: 1.25rem;
  font-weight: 500;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 0.6rem; }
.footer-col a {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.38);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--orange); }
.footer-bottom {
  max-width: 1160px;
  margin: 2.5rem auto 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.footer-bottom p {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.18);
}
.footer-bottom a {
  color: rgba(255,255,255,0.28);
  text-decoration: none;
}
.footer-bottom a:hover { color: var(--orange); }

/* ---- BREADCRUMB ---- */
.crumb-bar {
  background: var(--stahl);
  border-bottom: 1px solid var(--linie);
  padding: 0.75rem 5rem;
}
.crumb-inner {
  max-width: 1160px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.72rem;
  color: var(--silber);
}
.crumb-inner a { color: var(--silber); text-decoration: none; }
.crumb-inner a:hover { color: var(--orange); }
.crumb-sep { color: var(--linie); }

/* ---- PAGE HEADER ---- */
.page-header {
  background: var(--tinte);
  padding: 5rem 5rem 4rem;
  border-bottom: 2px solid var(--orange);
}
.page-header-inner {
  max-width: 1160px;
  margin: 0 auto;
}
.page-header h1 {
  font-family: 'Libre Baskerville', Georgia, serif;
  font-weight: 400;
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--weiss);
  margin-top: 0.75rem;
}

/* ---- LEISTUNG DETAIL (Leistungsseite) ---- */
.ld-block {
  padding: 5rem;
  border-bottom: 1px solid var(--linie);
  max-width: 1160px;
  margin: 0 auto;
}
.ld-block:last-child { border-bottom: none; }
.ld-header {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 2.5rem;
  align-items: start;
  margin-bottom: 3rem;
}
.ld-num {
  font-family: 'Libre Baskerville', Georgia, serif;
  font-size: 4rem;
  font-weight: 400;
  color: var(--linie);
  line-height: 1;
}
.ld-title-group {}
.ld-title-group h2 {
  font-family: 'Libre Baskerville', Georgia, serif;
  font-weight: 400;
  font-size: 1.8rem;
  color: var(--tinte);
  margin-bottom: 0.5rem;
}
.ld-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}
.ld-text p {
  font-size: 0.92rem;
  color: var(--text-soft);
  line-height: 1.9;
  margin-bottom: 1rem;
}
.ld-detail-list { list-style: none; }
.ld-detail-list li {
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--linie);
  font-size: 0.85rem;
  color: var(--text-soft);
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}
.ld-detail-list li::before {
  content: '';
  width: 4px; height: 4px;
  background: var(--orange);
  border-radius: 50%;
  margin-top: 0.55rem;
  flex-shrink: 0;
}

/* ---- PERSON CARD ---- */
.person-block {
  background: var(--stahl);
  border-left: 3px solid var(--orange);
  padding: 3rem;
  margin-top: 3rem;
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 3rem;
  align-items: start;
}
.person-avatar {
  width: 80px; height: 80px;
  background: var(--tinte);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Libre Baskerville', Georgia, serif;
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--weiss);
}
.person-info h3 {
  font-family: 'Libre Baskerville', Georgia, serif;
  font-weight: 400;
  font-size: 1.4rem;
  color: var(--tinte);
  margin-bottom: 0.25rem;
}
.person-role {
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--orange);
  font-weight: 500;
  display: block;
  margin-bottom: 1rem;
}
.person-info p {
  font-size: 0.88rem;
  color: var(--text-soft);
  line-height: 1.8;
  margin-bottom: 0.75rem;
}
.person-meta-row {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--linie);
}
.pm-item {}
.pm-label {
  font-size: 0.6rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--silber);
  display: block;
  margin-bottom: 0.2rem;
}
.pm-value {
  font-size: 0.85rem;
  color: var(--tinte);
  font-weight: 500;
}

/* ---- REGISTER TABLE ---- */
.reg-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 2.5rem;
  font-size: 0.88rem;
}
.reg-table tr { border-bottom: 1px solid var(--linie); }
.reg-table tr:last-child { border-bottom: none; }
.reg-table td {
  padding: 1rem 1.25rem;
  vertical-align: top;
  line-height: 1.7;
}
.reg-table td:first-child {
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--silber);
  font-weight: 500;
  white-space: nowrap;
  width: 220px;
  background: var(--stahl);
}
.reg-table td:last-child { color: var(--text); }

/* ---- LEGAL SECTION ---- */
.legal-block {
  padding-bottom: 2.5rem;
  margin-bottom: 2.5rem;
  border-bottom: 1px solid var(--linie);
}
.legal-block:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.legal-block h2 {
  font-family: 'Libre Baskerville', Georgia, serif;
  font-weight: 400;
  font-size: 1.2rem;
  color: var(--tinte);
  margin-bottom: 1rem;
}
.legal-block h3 {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--tinte);
  margin-top: 1.25rem;
  margin-bottom: 0.5rem;
}
.legal-block p {
  font-size: 0.88rem;
  color: var(--text-soft);
  line-height: 1.9;
  margin-bottom: 0.75rem;
}
.legal-block a { color: var(--orange); text-decoration: none; }
.legal-block a:hover { text-decoration: underline; }

/* ---- CONTACT LAYOUT ---- */
.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  min-height: 70vh;
}
.contact-sidebar {
  background: var(--tinte);
  padding: 5rem 4rem;
  display: flex;
  flex-direction: column;
  gap: 3rem;
}
.contact-sidebar h2 {
  font-family: 'Libre Baskerville', Georgia, serif;
  font-weight: 400;
  font-size: 1.9rem;
  color: var(--weiss);
  line-height: 1.3;
}
.contact-sidebar p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.3);
  line-height: 1.9;
}
.cs-block {}
.cs-label {
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.2);
  display: block;
  margin-bottom: 0.4rem;
}
.cs-value {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
}
.contact-form-wrap {
  background: var(--weiss);
  padding: 5rem 4rem;
}
.contact-form-wrap h2 {
  font-family: 'Libre Baskerville', Georgia, serif;
  font-weight: 400;
  font-size: 1.6rem;
  color: var(--tinte);
  margin-bottom: 2.5rem;
}

/* ---- FORM ---- */
.form-field {
  margin-bottom: 1.75rem;
}
.form-field label {
  display: block;
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--silber);
  font-weight: 500;
  margin-bottom: 0.5rem;
}
.form-field input,
.form-field textarea,
.form-field select {
  width: 100%;
  border: none;
  border-bottom: 1.5px solid var(--linie);
  padding: 0.6rem 0;
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 0.9rem;
  color: var(--tinte);
  background: transparent;
  outline: none;
  transition: border-color 0.2s;
  appearance: none;
}
.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus { border-color: var(--orange); }
.form-field textarea { resize: vertical; min-height: 120px; }
.form-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.form-check {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 2rem;
  font-size: 0.8rem;
  color: var(--text-soft);
  line-height: 1.6;
}
.form-check input[type="checkbox"] {
  width: auto;
  margin-top: 0.15rem;
  flex-shrink: 0;
}
.form-check a { color: var(--orange); text-decoration: none; }
.form-ok {
  display: none;
  background: var(--stahl);
  border-left: 3px solid var(--orange);
  padding: 2rem;
  font-size: 0.9rem;
  color: var(--text-soft);
  line-height: 1.8;
}

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
  .sec, .sec-sm { padding: 4rem 2.5rem; }
  .stats-band, .cta-band, footer { padding: 3rem 2.5rem; }
  .crumb-bar { padding: 0.75rem 2.5rem; }
  .page-header { padding: 4rem 2.5rem 3rem; }
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-left { padding: 5rem 2.5rem 3rem; }
  .hero-right { padding: 3rem 2.5rem; }
  .leistung-grid { grid-template-columns: 1fr 1fr; }
  .leistung-grid .lg-item:nth-child(2) { border-right: none; }
  .leistung-grid .lg-item:nth-child(3) { border-top: 1px solid var(--linie); }
  .prozess-steps { grid-template-columns: 1fr 1fr; }
  .split { grid-template-columns: 1fr; }
  .split-left, .split-right { padding: 4rem 2.5rem; }
  .stats-inner { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.2); padding-bottom: 1.5rem; }
  .stat-item:last-child { border-bottom: none; }
  .cta-inner { flex-direction: column; align-items: flex-start; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .ld-block { padding: 3rem 2.5rem; }
  .ld-body { grid-template-columns: 1fr; gap: 2rem; }
  .contact-wrap { grid-template-columns: 1fr; }
  .contact-sidebar { padding: 4rem 2.5rem; }
  .contact-form-wrap { padding: 4rem 2.5rem; }
  .person-block { grid-template-columns: 1fr; gap: 1.5rem; }
}

@media (max-width: 768px) {
  .top-nav { display: none; }
  .mob-bar { display: flex; }
  .leistung-grid { grid-template-columns: 1fr; }
  .leistung-grid .lg-item { border-right: none; border-bottom: 1px solid var(--linie); }
  .prozess-steps { grid-template-columns: 1fr; }
  .form-row-2 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .ld-header { grid-template-columns: 1fr; }
  .ld-num { font-size: 2.5rem; }
  .stats-inner { grid-template-columns: 1fr 1fr; }
}
