/* ============================================================
   We2 Management und Beratung GmbH
   Design: Asymmetrisches Raster, breite Weissräume, Akzentlinie
   Palette: Reinweiss #FFFFFF | Nebel #F0F2F4 | Tinte #111827 | Petrol #0D6E6E | Mittelgrau #6B7280
   Fonts: DM Serif Display (Headline) + Space Grotesk (UI)
   Konzept: Magazin-artiges Layout, keine Sidebar, kein Top-Bar-CTA
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&family=Space+Grotesk:wght@300;400;500;600;700&display=swap');

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

:root {
  --weiss:    #FFFFFF;
  --nebel:    #F0F2F4;
  --tinte:    #111827;
  --petrol:   #0D6E6E;
  --petrol-d: #095858;
  --grau:     #6B7280;
  --linie:    #E5E7EB;
  --linie-d:  #D1D5DB;
  --text:     #374151;
  --nav-h:    68px;
}

html { scroll-behavior: smooth; }

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

/* ===== NAVIGATION – schmale Linie oben, Logo mittig ===== */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  background: var(--weiss);
  border-bottom: 1px solid var(--linie);
  z-index: 200;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 3rem;
}
.header-nav-left,
.header-nav-right {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}
.header-nav-right { justify-content: flex-end; }
.site-header a {
  text-decoration: none;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--grau);
  transition: color 0.2s;
}
.site-header a:hover,
.site-header a.active { color: var(--petrol); }
.header-logo {
  text-align: center;
  text-decoration: none !important;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}
.logo-mark {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 1.35rem;
  color: var(--tinte);
  letter-spacing: -0.02em;
  line-height: 1;
}
.logo-sub {
  font-size: 0.52rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--grau);
  font-weight: 500;
}
.header-contact-btn {
  display: inline-block;
  padding: 0.45rem 1.2rem;
  border: 1.5px solid var(--petrol);
  color: var(--petrol) !important;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: background 0.2s, color 0.2s;
}
.header-contact-btn:hover {
  background: var(--petrol);
  color: var(--weiss) !important;
}

/* Mobile */
.mob-header {
  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: 200;
}
.mob-logo {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 1.2rem;
  color: var(--tinte);
  text-decoration: none;
}
.mob-btn {
  background: none; border: none; cursor: pointer;
  display: flex; flex-direction: column; gap: 5px;
}
.mob-btn span { display: block; width: 22px; height: 1.5px; background: var(--tinte); }
.mob-drawer {
  display: none;
  position: fixed;
  top: var(--nav-h); left: 0; right: 0;
  background: var(--weiss);
  border-bottom: 1px solid var(--linie);
  z-index: 199;
  padding: 1.5rem 2rem;
}
.mob-drawer.open { display: block; }
.mob-drawer ul { list-style: none; }
.mob-drawer li { border-bottom: 1px solid var(--linie); }
.mob-drawer a {
  display: block; padding: 0.85rem 0;
  font-size: 0.9rem; font-weight: 500;
  color: var(--text); text-decoration: none;
}

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

/* ===== HERO – asymmetrisch, Petrol-Akzentstreifen links ===== */
.hero {
  min-height: calc(100vh - var(--nav-h));
  display: grid;
  grid-template-columns: 5px 1fr 1fr;
  position: relative;
  overflow: hidden;
}
.hero-stripe { background: var(--petrol); }
.hero-text {
  padding: 8rem 5rem 6rem 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero-kicker {
  font-size: 0.62rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--petrol);
  font-weight: 600;
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.hero-kicker::before {
  content: '';
  display: block;
  width: 28px; height: 1px;
  background: var(--petrol);
}
.hero-text h1 {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  font-weight: 400;
  color: var(--tinte);
  line-height: 1.1;
  margin-bottom: 2rem;
}
.hero-text h1 em {
  font-style: italic;
  color: var(--petrol);
}
.hero-text p {
  font-size: 1rem;
  color: var(--grau);
  max-width: 440px;
  line-height: 1.85;
  margin-bottom: 3rem;
  font-weight: 300;
}
.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero-visual {
  background: var(--nebel);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 4rem;
  position: relative;
  overflow: hidden;
}
.hero-visual::before {
  content: 'We2';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 18rem;
  color: rgba(13,110,110,0.04);
  white-space: nowrap;
  pointer-events: none;
  line-height: 1;
}
.hero-cards {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--linie-d);
}
.hc-item {
  background: var(--weiss);
  padding: 1.5rem;
}
.hc-num {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 2rem;
  color: var(--petrol);
  opacity: 0.3;
  line-height: 1;
  display: block;
  margin-bottom: 0.5rem;
}
.hc-title {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--tinte);
  margin-bottom: 0.3rem;
}
.hc-text {
  font-size: 0.72rem;
  color: var(--grau);
  line-height: 1.6;
  font-weight: 300;
}

/* ===== BUTTONS ===== */
.btn-petrol {
  display: inline-block;
  padding: 0.8rem 2.2rem;
  background: var(--petrol);
  color: var(--weiss);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.2s;
}
.btn-petrol:hover { background: var(--petrol-d); }
.btn-outline {
  display: inline-block;
  padding: 0.8rem 2.2rem;
  border: 1.5px solid var(--linie-d);
  color: var(--grau);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s;
}
.btn-outline:hover { border-color: var(--petrol); color: var(--petrol); }

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

.kicker {
  font-size: 0.6rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--petrol);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1rem;
}
.kicker::before {
  content: '';
  display: block;
  width: 20px; height: 1px;
  background: var(--petrol);
}
.h2-display {
  font-family: 'DM Serif Display', Georgia, serif;
  font-weight: 400;
  font-size: clamp(1.8rem, 3.2vw, 2.8rem);
  color: var(--tinte);
  line-height: 1.2;
  margin-bottom: 1.25rem;
}
.h2-display em { font-style: italic; color: var(--petrol); }
.h2-light { color: var(--weiss); }
.lead {
  font-size: 0.95rem;
  color: var(--grau);
  line-height: 1.9;
  font-weight: 300;
  max-width: 580px;
}
.lead-light { color: rgba(255,255,255,0.45); }
.petrol-line {
  width: 36px; height: 2px;
  background: var(--petrol);
  margin-bottom: 1.5rem;
}

/* ===== THEMEN-RASTER (Startseite) ===== */
.themen-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 1px;
  background: var(--linie);
  margin-top: 4rem;
}
.tg-item {
  background: var(--weiss);
  padding: 3rem;
  transition: background 0.2s;
}
.tg-item:hover { background: var(--nebel); }
.tg-item--featured {
  grid-row: span 2;
  background: var(--tinte);
}
.tg-item--featured:hover { background: var(--tinte); }
.tg-num {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 1rem;
  color: var(--petrol);
  display: block;
  margin-bottom: 1.5rem;
  opacity: 0.5;
}
.tg-num-light { color: rgba(13,110,110,0.5); }
.tg-title {
  font-family: 'DM Serif Display', Georgia, serif;
  font-weight: 400;
  font-size: 1.35rem;
  color: var(--tinte);
  margin-bottom: 0.75rem;
  line-height: 1.25;
}
.tg-title-light { color: var(--weiss); }
.tg-text {
  font-size: 0.85rem;
  color: var(--grau);
  line-height: 1.8;
  font-weight: 300;
}
.tg-text-light { color: rgba(255,255,255,0.35); }
.tg-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--petrol);
  text-decoration: none;
  margin-top: 1.5rem;
}
.tg-link-light { color: rgba(13,110,110,0.7); }
.tg-link::after { content: '\2192'; font-size: 0.9rem; }

/* ===== VERBESSERUNGS-SYSTEM SECTION ===== */
.system-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin-top: 4rem;
}
.sg-left {
  background: var(--petrol);
  padding: 4rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 3rem;
}
.sg-right {
  background: var(--nebel);
  padding: 4rem;
}
.sg-step {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.sg-step:last-child { border-bottom: none; padding-bottom: 0; }
.sg-step-num {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 1.5rem;
  color: rgba(255,255,255,0.2);
  line-height: 1;
  min-width: 2rem;
}
.sg-step-body {}
.sg-step-title {
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255,255,255,0.75);
  display: block;
  margin-bottom: 0.25rem;
}
.sg-step-text {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.3);
  line-height: 1.7;
  font-weight: 300;
}
.sg-right-item {
  padding: 1.75rem 0;
  border-bottom: 1px solid var(--linie-d);
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 2rem;
  align-items: start;
}
.sg-right-item:last-child { border-bottom: none; }
.sg-right-label {
  font-size: 0.65rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--petrol);
  font-weight: 600;
  padding-top: 0.15rem;
}
.sg-right-text {
  font-size: 0.88rem;
  color: var(--text);
  line-height: 1.8;
  font-weight: 300;
}

/* ===== ZAHLEN BAND ===== */
.zahlen-band {
  background: var(--tinte);
  padding: 4rem 5rem;
}
.zahlen-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.05);
}
.z-item {
  padding: 0 3rem;
  border-right: 1px solid rgba(255,255,255,0.05);
  text-align: left;
}
.z-num {
  display: block;
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 3rem;
  font-weight: 400;
  color: var(--petrol);
  line-height: 1;
  margin-bottom: 0.4rem;
}
.z-label {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.25);
  font-weight: 500;
}

/* ===== SPLIT TEASER ===== */
.split-teaser {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.st-left {
  padding: 7rem 5rem;
  background: var(--weiss);
}
.st-right {
  background: var(--nebel);
  padding: 7rem 5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.5rem;
}
.st-data-row {
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--linie);
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
}
.st-data-row:last-child { border-bottom: none; }
.st-data-label {
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--grau);
  font-weight: 500;
}
.st-data-value {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 1rem;
  color: var(--tinte);
  text-align: right;
}

/* ===== CTA BAND ===== */
.cta-band {
  background: var(--petrol);
  padding: 5rem;
}
.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: 'DM Serif Display', Georgia, serif;
  font-weight: 400;
  font-size: 2rem;
  color: var(--weiss);
  margin-bottom: 0.5rem;
}
.cta-inner p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.5);
  font-weight: 300;
}
.btn-white {
  display: inline-block;
  padding: 0.9rem 2.5rem;
  background: var(--weiss);
  color: var(--petrol);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s;
}
.btn-white:hover { background: var(--nebel); }

/* ===== FOOTER ===== */
footer {
  background: var(--tinte);
  padding: 5rem;
  border-top: 3px solid var(--petrol);
}
.footer-top {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 4rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.footer-brand .logo-mark { color: var(--weiss); font-size: 1.6rem; display: block; margin-bottom: 0.25rem; }
.footer-brand .logo-sub { color: rgba(255,255,255,0.2); display: block; margin-bottom: 1.5rem; }
.footer-brand p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.2);
  line-height: 1.8;
  font-weight: 300;
}
.footer-col h5 {
  font-size: 0.58rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.2);
  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.8rem;
  color: rgba(255,255,255,0.3);
  text-decoration: none;
  font-weight: 300;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--petrol); }
.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.72rem;
  color: rgba(255,255,255,0.15);
  font-weight: 300;
}
.footer-bottom a { color: rgba(255,255,255,0.2); text-decoration: none; }
.footer-bottom a:hover { color: var(--petrol); }

/* ===== BREADCRUMB ===== */
.breadcrumb {
  background: var(--nebel);
  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(--grau);
}
.bc-inner a { color: var(--grau); text-decoration: none; }
.bc-inner a:hover { color: var(--petrol); }
.bc-sep { color: var(--linie-d); }

/* ===== PAGE HEADER ===== */
.page-hero {
  background: var(--tinte);
  padding: 6rem 5rem 5rem;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--petrol);
}
.page-hero-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.page-hero h1 {
  font-family: 'DM Serif Display', Georgia, serif;
  font-weight: 400;
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  color: var(--weiss);
  margin-top: 0.75rem;
  line-height: 1.15;
}

/* ===== LEISTUNGS-DETAIL ===== */
.ld-section {
  padding: 6rem 5rem;
  border-bottom: 1px solid var(--linie);
}
.ld-section:last-of-type { border-bottom: none; }
.ld-section:nth-child(even) { background: var(--nebel); }
.ld-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 6rem;
  align-items: start;
}
.ld-meta {}
.ld-meta-num {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 5rem;
  color: var(--linie-d);
  line-height: 1;
  display: block;
  margin-bottom: 0.5rem;
}
.ld-meta h2 {
  font-family: 'DM Serif Display', Georgia, serif;
  font-weight: 400;
  font-size: 1.6rem;
  color: var(--tinte);
  margin-bottom: 0.5rem;
  line-height: 1.25;
}
.ld-content p {
  font-size: 0.92rem;
  color: var(--text);
  line-height: 1.9;
  font-weight: 300;
  margin-bottom: 1rem;
}
.ld-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.5rem;
}
.tag {
  display: inline-block;
  padding: 0.3rem 0.85rem;
  border: 1px solid var(--linie-d);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--grau);
  font-weight: 500;
}

/* ===== PERSON SECTION ===== */
.person-section {
  background: var(--nebel);
  padding: 6rem 5rem;
}
.person-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 5rem;
  align-items: start;
}
.person-card-left {
  background: var(--tinte);
  padding: 2.5rem;
  text-align: center;
}
.person-initials {
  width: 72px; height: 72px;
  background: var(--petrol);
  display: flex; align-items: center; justify-content: center;
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 1.4rem;
  color: var(--weiss);
  margin: 0 auto 1.25rem;
}
.person-card-left h3 {
  font-family: 'DM Serif Display', Georgia, serif;
  font-weight: 400;
  font-size: 1.2rem;
  color: var(--weiss);
  margin-bottom: 0.3rem;
}
.person-card-left .role {
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--petrol);
  font-weight: 600;
}
.person-card-right {}
.person-card-right p {
  font-size: 0.92rem;
  color: var(--text);
  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 var(--linie);
  margin-top: 2rem;
}
.pf-item {
  padding: 1.25rem;
  border-right: 1px solid var(--linie);
}
.pf-item:last-child { border-right: none; }
.pf-label {
  font-size: 0.58rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--grau);
  display: block;
  margin-bottom: 0.3rem;
  font-weight: 500;
}
.pf-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.62rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--grau);
  font-weight: 600;
  white-space: nowrap;
  width: 200px;
  background: var(--nebel);
}

/* ===== 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: 'DM Serif Display', Georgia, serif;
  font-weight: 400;
  font-size: 1.2rem;
  color: var(--tinte);
  margin-bottom: 1rem;
}
.legal-block h3 {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--tinte);
  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(--petrol); text-decoration: none; }
.legal-block a:hover { text-decoration: underline; }

/* ===== KONTAKT ===== */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 75vh;
}
.contact-left {
  padding: 6rem 5rem;
  background: var(--nebel);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 3rem;
}
.contact-right {
  padding: 6rem 5rem;
  background: var(--weiss);
}
.cl-block {}
.cl-label {
  font-size: 0.58rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--petrol);
  font-weight: 600;
  display: block;
  margin-bottom: 0.4rem;
}
.cl-value {
  font-size: 0.9rem;
  color: var(--text);
  line-height: 1.7;
  font-weight: 300;
}

/* ===== FORM ===== */
.form-field { margin-bottom: 2rem; }
.form-field label {
  display: block;
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--grau);
  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: 'Space Grotesk', sans-serif;
  font-size: 0.9rem;
  color: var(--tinte);
  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(--petrol); }
.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(--grau);
  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(--petrol); text-decoration: none; }
.form-ok {
  display: none;
  background: var(--nebel);
  border-left: 3px solid var(--petrol);
  padding: 2rem;
  font-size: 0.9rem;
  color: var(--text);
  line-height: 1.8;
  font-weight: 300;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1100px) {
  .sec, .sec-sm { padding: 5rem 2.5rem; }
  .zahlen-band, .cta-band, footer { padding: 3.5rem 2.5rem; }
  .breadcrumb { padding: 0.7rem 2.5rem; }
  .page-hero { padding: 5rem 2.5rem 4rem; }
  .hero { grid-template-columns: 5px 1fr; }
  .hero-visual { display: none; }
  .hero-text { padding: 6rem 3rem 5rem 3rem; }
  .themen-grid { grid-template-columns: 1fr 1fr; }
  .tg-item--featured { grid-row: span 1; }
  .system-grid { grid-template-columns: 1fr; }
  .zahlen-inner { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .z-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.05); padding-bottom: 1.5rem; }
  .split-teaser { grid-template-columns: 1fr; }
  .cta-inner { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .ld-section { padding: 4rem 2.5rem; }
  .ld-inner { grid-template-columns: 1fr; gap: 2rem; }
  .ld-meta-num { font-size: 3rem; }
  .person-section { padding: 4rem 2.5rem; }
  .person-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .contact-layout { grid-template-columns: 1fr; }
  .contact-left, .contact-right { padding: 4rem 2.5rem; }
  .legal-wrap { padding: 4rem 2.5rem; }
}
@media (max-width: 768px) {
  .site-header { display: none; }
  .mob-header { display: flex; }
  .themen-grid { grid-template-columns: 1fr; }
  .hero-cards { grid-template-columns: 1fr; }
  .form-row-2 { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .zahlen-inner { grid-template-columns: 1fr 1fr; }
  .person-facts { grid-template-columns: 1fr; }
  .pf-item { border-right: none; border-bottom: 1px solid var(--linie); }
  .pf-item:last-child { border-bottom: none; }
}
