/* ============================================================
   HMB Hoffmann Management Beratung GmbH
   Design: Fullscreen-Split, horizontale Bänder, sticky Seitenindex
   Palette: Nacht #0B1120 | Creme #F5F0E8 | Bernstein #C9922A | Silber #8A95A3 | Weiss #FFFFFF
   Fonts: Fraunces (Headline, expressiv) + Outfit (UI, klar)
   Konzept: Vollbreite-Bänder, kein Sidebar, kein zentriertes Logo,
             Navigation als schmale Leiste mit Unterstrich-Hover
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,wght@0,300;0,400;0,600;1,300;1,400&family=Outfit:wght@300;400;500;600;700&display=swap');

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

:root {
  --nacht:    #0B1120;
  --nacht-l:  #131D30;
  --creme:    #F5F0E8;
  --bernstein:#C9922A;
  --bern-d:   #A87520;
  --silber:   #8A95A3;
  --linie:    #E2DDD4;
  --linie-d:  #CCC7BD;
  --text:     #3D3A34;
  --weiss:    #FFFFFF;
  --nav-h:    64px;
}

html { scroll-behavior: smooth; }
body {
  font-family: 'Outfit', system-ui, sans-serif;
  font-size: 16px;
  color: var(--text);
  background: var(--weiss);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

/* ===== NAVIGATION – links Logo, rechts Links, Unterstrich-Hover ===== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  background: var(--nacht);
  z-index: 300;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 4rem;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.nav-logo {
  text-decoration: none;
  display: flex;
  align-items: baseline;
  gap: 0.6rem;
}
.nav-logo-abbr {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 300;
  font-size: 1.5rem;
  color: var(--bernstein);
  letter-spacing: -0.03em;
  line-height: 1;
}
.nav-logo-name {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.25);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  list-style: none;
}
.nav-links a {
  text-decoration: none;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: rgba(255,255,255,0.45);
  padding-bottom: 2px;
  border-bottom: 1px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--bernstein);
  border-bottom-color: var(--bernstein);
}
.nav-cta-btn {
  display: inline-block;
  padding: 0.5rem 1.5rem;
  background: var(--bernstein);
  color: var(--nacht) !important;
  font-size: 0.72rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  border-bottom: none !important;
  transition: background 0.2s !important;
}
.nav-cta-btn:hover { background: var(--bern-d) !important; color: var(--weiss) !important; }

/* Mobile */
.mob-nav {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  background: var(--nacht);
  z-index: 300;
  align-items: center;
  justify-content: space-between;
  padding: 0 1.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.mob-logo-abbr {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 300;
  font-size: 1.4rem;
  color: var(--bernstein);
  text-decoration: none;
}
.mob-toggle {
  background: none; border: none; cursor: pointer;
  display: flex; flex-direction: column; gap: 5px;
}
.mob-toggle span { display: block; width: 22px; height: 1.5px; background: rgba(255,255,255,0.5); }
.mob-menu {
  display: none;
  position: fixed;
  top: var(--nav-h); left: 0; right: 0;
  background: var(--nacht-l);
  z-index: 299;
  padding: 1.5rem 2rem;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.mob-menu.open { display: block; }
.mob-menu ul { list-style: none; }
.mob-menu li { border-bottom: 1px solid rgba(255,255,255,0.05); }
.mob-menu a {
  display: block; padding: 0.85rem 0;
  font-size: 0.9rem; font-weight: 400;
  color: rgba(255,255,255,0.5); text-decoration: none;
}

/* ===== BODY WRAP ===== */
.body { padding-top: var(--nav-h); }

/* ===== HERO – vollbreites Split, links dunkel rechts creme ===== */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: calc(100vh - var(--nav-h));
}
.hero-dark {
  background: var(--nacht);
  padding: 7rem 5rem 6rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.hero-light {
  background: var(--creme);
  padding: 7rem 5rem 6rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
  overflow: hidden;
}
.hero-light::before {
  content: 'HMB';
  position: absolute;
  top: -2rem; right: -3rem;
  font-family: 'Fraunces', Georgia, serif;
  font-size: 22rem;
  font-weight: 300;
  color: rgba(201,146,42,0.06);
  line-height: 1;
  pointer-events: none;
}
.hero-tag {
  font-size: 0.6rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--bernstein);
  font-weight: 600;
  margin-bottom: 2.5rem;
}
.hero-h1 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 300;
  font-size: clamp(2.8rem, 4.5vw, 4.2rem);
  color: var(--weiss);
  line-height: 1.1;
  margin-bottom: 2rem;
}
.hero-h1 em {
  font-style: italic;
  color: var(--bernstein);
}
.hero-sub {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.35);
  line-height: 1.9;
  max-width: 400px;
  font-weight: 300;
  margin-bottom: 3rem;
}
.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-meta {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.hero-meta-item {
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.15);
  font-weight: 500;
}
.hero-meta-item strong {
  color: rgba(255,255,255,0.4);
  font-weight: 600;
}

/* Hero-Right: Leistungsstreifen */
.hero-strips {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.hs-item {
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--linie);
  display: flex;
  align-items: center;
  gap: 1.5rem;
  cursor: default;
  transition: padding-left 0.2s;
}
.hs-item:last-child { border-bottom: none; }
.hs-item:hover { padding-left: 0.5rem; }
.hs-num {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 0.85rem;
  color: var(--bernstein);
  opacity: 0.5;
  min-width: 1.5rem;
  font-weight: 300;
}
.hs-title {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--nacht);
  flex: 1;
}
.hs-arrow {
  font-size: 0.8rem;
  color: var(--linie-d);
  transition: color 0.2s;
}
.hs-item:hover .hs-arrow { color: var(--bernstein); }

/* ===== BUTTONS ===== */
.btn-bern {
  display: inline-block;
  padding: 0.85rem 2.5rem;
  background: var(--bernstein);
  color: var(--nacht);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.2s;
}
.btn-bern:hover { background: var(--bern-d); color: var(--weiss); }
.btn-ghost-light {
  display: inline-block;
  padding: 0.85rem 2.5rem;
  border: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.5);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s;
}
.btn-ghost-light:hover { border-color: var(--bernstein); color: var(--bernstein); }
.btn-ghost-dark {
  display: inline-block;
  padding: 0.85rem 2.5rem;
  border: 1px solid var(--linie-d);
  color: var(--silber);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s;
}
.btn-ghost-dark:hover { border-color: var(--bernstein); color: var(--bernstein); }

/* ===== SECTION HELPERS ===== */
.sec { padding: 7rem 5rem; }
.wrap { max-width: 1200px; margin: 0 auto; }
.wrap-md { max-width: 900px; margin: 0 auto; }
.wrap-sm { max-width: 680px; margin: 0 auto; }

.eyebrow {
  font-size: 0.58rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--bernstein);
  font-weight: 600;
  display: block;
  margin-bottom: 1rem;
}
.h2 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 300;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  color: var(--nacht);
  line-height: 1.2;
  margin-bottom: 1.25rem;
}
.h2 em { font-style: italic; color: var(--bernstein); }
.h2-light { color: var(--weiss); }
.lead {
  font-size: 0.92rem;
  color: var(--silber);
  line-height: 1.9;
  font-weight: 300;
  max-width: 560px;
}
.lead-dark { color: var(--text); }
.bern-rule { width: 32px; height: 2px; background: var(--bernstein); margin-bottom: 1.5rem; }

/* ===== LEISTUNGS-BAND (Startseite) ===== */
.leistungs-band {
  background: var(--creme);
  padding: 0;
}
.lb-inner {
  max-width: 100%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--linie);
}
.lb-item {
  padding: 3.5rem 3rem;
  border-right: 1px solid var(--linie);
  position: relative;
  overflow: hidden;
  transition: background 0.25s;
}
.lb-item:last-child { border-right: none; }
.lb-item:hover { background: var(--weiss); }
.lb-item::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--bernstein);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s;
}
.lb-item:hover::after { transform: scaleX(1); }
.lb-num {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--linie-d);
  line-height: 1;
  display: block;
  margin-bottom: 1.25rem;
}
.lb-title {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--nacht);
  margin-bottom: 0.75rem;
  line-height: 1.3;
}
.lb-text {
  font-size: 0.8rem;
  color: var(--silber);
  line-height: 1.8;
  font-weight: 300;
}

/* ===== VERTRIEB-SYSTEM SECTION ===== */
.vsys {
  background: var(--nacht);
  padding: 7rem 5rem;
}
.vsys-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7rem;
  align-items: start;
}
.vsys-left {}
.vsys-right {}
.vsys-steps {
  margin-top: 3rem;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.vs-step {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 1.5rem;
  padding: 1.75rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  align-items: start;
}
.vs-step:last-child { border-bottom: none; }
.vs-dot {
  width: 36px; height: 36px;
  border: 1px solid rgba(201,146,42,0.3);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Fraunces', Georgia, serif;
  font-size: 0.85rem;
  color: var(--bernstein);
  font-weight: 300;
  flex-shrink: 0;
}
.vs-body {}
.vs-title {
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255,255,255,0.65);
  display: block;
  margin-bottom: 0.3rem;
}
.vs-text {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.2);
  line-height: 1.75;
  font-weight: 300;
}
.vsys-right-list {
  margin-top: 3rem;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.vrl-item {
  padding: 1.5rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 1rem;
}
.vrl-item:last-child { border-bottom: none; }
.vrl-label {
  font-size: 0.85rem;
  font-weight: 400;
  color: rgba(255,255,255,0.35);
}
.vrl-tag {
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--bernstein);
  font-weight: 600;
  border: 1px solid rgba(201,146,42,0.3);
  padding: 0.2rem 0.6rem;
}

/* ===== KENNZAHLEN ===== */
.kz-band {
  background: var(--bernstein);
  padding: 4rem 5rem;
}
.kz-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-left: 1px solid rgba(255,255,255,0.2);
}
.kz-item {
  padding: 0 3rem;
  border-right: 1px solid rgba(255,255,255,0.2);
}
.kz-num {
  display: block;
  font-family: 'Fraunces', Georgia, serif;
  font-size: 2.8rem;
  font-weight: 300;
  color: var(--nacht);
  line-height: 1;
  margin-bottom: 0.4rem;
}
.kz-label {
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(11,17,32,0.45);
  font-weight: 600;
}

/* ===== SPLIT ABOUT ===== */
.split-about {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.sa-left {
  background: var(--nacht);
  padding: 7rem 5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 2rem;
}
.sa-right {
  background: var(--creme);
  padding: 7rem 5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.5rem;
}
.sa-fact {
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--linie);
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 1.5rem;
  align-items: baseline;
}
.sa-fact:last-child { border-bottom: none; }
.sa-fact-label {
  font-size: 0.6rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--silber);
  font-weight: 600;
}
.sa-fact-value {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 0.95rem;
  color: var(--nacht);
  font-weight: 300;
  line-height: 1.5;
}

/* ===== CTA BAND ===== */
.cta-band {
  background: var(--creme);
  padding: 6rem 5rem;
  border-top: 1px solid var(--linie);
}
.cta-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 4rem;
  align-items: center;
}
.cta-inner h2 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 300;
  font-size: 2rem;
  color: var(--nacht);
  margin-bottom: 0.5rem;
}
.cta-inner p {
  font-size: 0.88rem;
  color: var(--silber);
  font-weight: 300;
}

/* ===== FOOTER ===== */
footer {
  background: var(--nacht);
  padding: 5rem;
}
.footer-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 4rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.footer-brand {}
.footer-brand .abbr {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 300;
  font-size: 2rem;
  color: var(--bernstein);
  display: block;
  margin-bottom: 0.25rem;
}
.footer-brand .name {
  font-size: 0.58rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.15);
  display: block;
  margin-bottom: 1.5rem;
}
.footer-brand p {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.15);
  line-height: 1.9;
  font-weight: 300;
}
.footer-col h5 {
  font-size: 0.56rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.15);
  margin-bottom: 1.25rem;
  font-weight: 600;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 0.55rem; }
.footer-col a {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.25);
  text-decoration: none;
  font-weight: 300;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--bernstein); }
.footer-bottom {
  max-width: 1200px;
  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.7rem;
  color: rgba(255,255,255,0.12);
  font-weight: 300;
}
.footer-bottom a { color: rgba(255,255,255,0.18); text-decoration: none; }
.footer-bottom a:hover { color: var(--bernstein); }

/* ===== BREADCRUMB ===== */
.breadcrumb {
  background: var(--creme);
  border-bottom: 1px solid var(--linie);
  padding: 0.7rem 5rem;
}
.bc-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.7rem;
  color: var(--silber);
}
.bc-inner a { color: var(--silber); text-decoration: none; }
.bc-inner a:hover { color: var(--bernstein); }
.bc-sep { color: var(--linie-d); }

/* ===== PAGE HEADER ===== */
.page-header {
  background: var(--nacht);
  padding: 5rem 5rem 4rem;
  border-bottom: 2px solid var(--bernstein);
}
.page-header-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.page-header h1 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 300;
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--weiss);
  margin-top: 0.75rem;
  line-height: 1.15;
}

/* ===== LEISTUNGS-DETAIL ===== */
.ld-wrap {
  padding: 6rem 5rem;
  border-bottom: 1px solid var(--linie);
}
.ld-wrap:nth-child(even) { background: var(--creme); }
.ld-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 6rem;
  align-items: start;
}
.ld-left {}
.ld-big-num {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 6rem;
  font-weight: 300;
  color: var(--linie);
  line-height: 1;
  display: block;
  margin-bottom: 0.5rem;
}
.ld-left h2 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 300;
  font-size: 1.5rem;
  color: var(--nacht);
  line-height: 1.3;
  margin-bottom: 0.75rem;
}
.ld-right p {
  font-size: 0.92rem;
  color: var(--text);
  line-height: 1.9;
  font-weight: 300;
  margin-bottom: 1rem;
}
.ld-checklist {
  list-style: none;
  margin-top: 1.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem 2rem;
}
.ld-checklist li {
  font-size: 0.82rem;
  color: var(--text);
  padding-left: 1.25rem;
  position: relative;
  font-weight: 300;
  line-height: 1.5;
}
.ld-checklist li::before {
  content: '';
  position: absolute;
  left: 0; top: 0.55em;
  width: 6px; height: 6px;
  background: var(--bernstein);
}

/* ===== PERSON ===== */
.person-wrap {
  background: var(--nacht);
  padding: 6rem 5rem;
}
.person-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 5rem;
  align-items: start;
}
.person-card {
  background: var(--nacht-l);
  border: 1px solid rgba(255,255,255,0.05);
  padding: 2.5rem;
  text-align: center;
  border-top: 3px solid var(--bernstein);
}
.person-initials {
  width: 64px; height: 64px;
  background: var(--bernstein);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.3rem;
  font-weight: 300;
  color: var(--nacht);
  margin: 0 auto 1.25rem;
}
.person-card h3 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 300;
  font-size: 1.15rem;
  color: var(--weiss);
  margin-bottom: 0.3rem;
}
.person-card .role {
  font-size: 0.58rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--bernstein);
  font-weight: 600;
}
.person-right p {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.35);
  line-height: 1.9;
  font-weight: 300;
  margin-bottom: 1rem;
}
.person-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid rgba(255,255,255,0.05);
  margin-top: 2rem;
}
.pf-item {
  padding: 1.25rem;
  border-right: 1px solid rgba(255,255,255,0.05);
}
.pf-item:last-child { border-right: none; }
.pf-label {
  font-size: 0.56rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.2);
  display: block;
  margin-bottom: 0.3rem;
  font-weight: 600;
}
.pf-value {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
  font-weight: 400;
}

/* ===== REGISTER TABLE ===== */
.reg-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 2rem;
  font-size: 0.85rem;
}
.reg-table tr { border-bottom: 1px solid var(--linie); }
.reg-table tr:last-child { border-bottom: none; }
.reg-table td {
  padding: 0.9rem 1.25rem;
  vertical-align: top;
  line-height: 1.7;
  font-weight: 300;
}
.reg-table td:first-child {
  font-size: 0.6rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--silber);
  font-weight: 600;
  white-space: nowrap;
  width: 190px;
  background: var(--creme);
}

/* ===== LEGAL ===== */
.legal-wrap {
  max-width: 760px;
  margin: 0 auto;
  padding: 5rem;
}
.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: 'Fraunces', Georgia, serif;
  font-weight: 300;
  font-size: 1.2rem;
  color: var(--nacht);
  margin-bottom: 1rem;
}
.legal-block h3 {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--nacht);
  margin: 1.25rem 0 0.5rem;
}
.legal-block p {
  font-size: 0.88rem;
  color: var(--text);
  line-height: 1.9;
  font-weight: 300;
  margin-bottom: 0.75rem;
}
.legal-block a { color: var(--bernstein); text-decoration: none; }
.legal-block a:hover { text-decoration: underline; }

/* ===== KONTAKT ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 75vh;
}
.cg-left {
  background: var(--nacht);
  padding: 6rem 5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 3rem;
}
.cg-right {
  background: var(--creme);
  padding: 6rem 5rem;
}
.cg-info-item {}
.cg-label {
  font-size: 0.56rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.2);
  font-weight: 600;
  display: block;
  margin-bottom: 0.4rem;
}
.cg-value {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.4);
  line-height: 1.7;
  font-weight: 300;
}

/* ===== FORM ===== */
.form-field { margin-bottom: 2rem; }
.form-field label {
  display: block;
  font-size: 0.6rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--silber);
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.form-field input,
.form-field textarea,
.form-field select {
  width: 100%;
  border: none;
  border-bottom: 1.5px solid var(--linie-d);
  padding: 0.6rem 0;
  font-family: 'Outfit', sans-serif;
  font-size: 0.9rem;
  color: var(--nacht);
  background: transparent;
  outline: none;
  transition: border-color 0.2s;
  appearance: none;
  font-weight: 300;
}
.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus { border-color: var(--bernstein); }
.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.78rem;
  color: var(--silber);
  line-height: 1.6;
  font-weight: 300;
}
.form-check input[type="checkbox"] { width: auto; margin-top: 0.15rem; flex-shrink: 0; }
.form-check a { color: var(--bernstein); text-decoration: none; }
.form-ok {
  display: none;
  background: var(--creme);
  border-left: 3px solid var(--bernstein);
  padding: 2rem;
  font-size: 0.9rem;
  color: var(--text);
  line-height: 1.8;
  font-weight: 300;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1100px) {
  .nav { padding: 0 2rem; }
  .sec { padding: 5rem 2.5rem; }
  .kz-band, .cta-band, footer { padding: 3.5rem 2.5rem; }
  .breadcrumb, .page-header { padding: 0.7rem 2.5rem; }
  .page-header { padding: 4rem 2.5rem 3rem; }
  .hero { grid-template-columns: 1fr; }
  .hero-light { display: none; }
  .hero-dark { padding: 5rem 2.5rem 4rem; }
  .lb-inner { grid-template-columns: 1fr 1fr; }
  .vsys-inner { grid-template-columns: 1fr; gap: 3rem; }
  .kz-inner { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .kz-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.2); padding-bottom: 1.5rem; }
  .split-about { grid-template-columns: 1fr; }
  .cta-inner { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .ld-wrap { padding: 4rem 2.5rem; }
  .ld-inner { grid-template-columns: 1fr; gap: 2rem; }
  .ld-big-num { font-size: 4rem; }
  .person-wrap { padding: 4rem 2.5rem; }
  .person-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .contact-grid { grid-template-columns: 1fr; }
  .cg-left, .cg-right { padding: 4rem 2.5rem; }
  .legal-wrap { padding: 4rem 2.5rem; }
}
@media (max-width: 768px) {
  .nav { display: none; }
  .mob-nav { display: flex; }
  .lb-inner { grid-template-columns: 1fr; }
  .ld-checklist { 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; }
  .kz-inner { grid-template-columns: 1fr 1fr; }
  .person-facts { grid-template-columns: 1fr; }
  .pf-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.05); }
  .pf-item:last-child { border-bottom: none; }
  .sa-fact { grid-template-columns: 1fr; gap: 0.25rem; }
}
