/* ==========================================================================
   DigiLeader — Grundlagen
   ========================================================================== */

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

html { scroll-behavior: smooth; }
[id] { scroll-margin-top: 88px; }

:root {
  /* Marke — direkt aus dem Logo-Ring abgeleitet */
  --green:       #0A8C46;
  --green-deep:  #0F2A1C;
  --orange:      #E6741E;
  --red:         #E51E2A;

  /* Papier statt Dark-Mode-Template — leicht grünstichig */
  --paper:       #E4E9D2;
  --paper-deep:  #D5DDB8;
  --card:        #FBFAF0;

  /* Tinte */
  --ink:         #14201A;
  --ink-soft:    #47543F;
  --ink-faint:   #8B9480;

  --line:        rgba(20, 32, 20, 0.18);
  --line-strong: #14201A;
}

body {
  font-family: 'IBM Plex Sans', sans-serif;
  background: var(--paper);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: 'Fraunces', serif;
  color: var(--ink);
  font-weight: 600;
  letter-spacing: -0.01em;
  overflow-wrap: break-word;
}

a { color: inherit; }

.mono {
  font-family: 'IBM Plex Mono', monospace;
}

.accent-green  { color: var(--green); }
.accent-orange { color: var(--orange); }
.accent-red    { color: var(--red); }

/* ==========================================================================
   NAV — flach, Rand statt Eyebrow, harte Kante
   ========================================================================== */

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 48px;
  height: 88px;
  border-bottom: 2px solid var(--line-strong);
  position: sticky;
  top: 0;
  background: var(--paper);
  z-index: 100;
  gap: 20px;
}

.logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.logo svg { display: block; }
.logo-img { display: block; height: 52px; width: auto; }
.logo-word {
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: 22px;
  color: var(--ink);
  line-height: 1;
}
.logo-sub {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-faint);
  display: block;
  margin-top: 3px;
}

.nav-links {
  display: flex;
  gap: 22px;
  align-items: center;
  flex: 1;
  justify-content: center;
}

.nav-links a {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0;
  color: var(--ink);
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.15s;
}
.nav-links a:hover { color: var(--green); }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}
.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--ink);
  transition: transform 0.25s, opacity 0.25s;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.nav-link-contact { display: none; }

.btn-primary {
  background: var(--green);
  color: var(--paper);
  padding: 12px 26px;
  font-family: 'IBM Plex Mono', monospace;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: 2px solid var(--green);
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: background 0.15s, color 0.15s;
}
.btn-primary:hover { background: var(--paper); color: var(--green); }

.btn-outline {
  background: transparent;
  color: var(--ink);
  padding: 12px 26px;
  font-family: 'IBM Plex Mono', monospace;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: 2px solid var(--ink);
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: background 0.15s, color 0.15s;
}
.btn-outline:hover { background: var(--ink); color: var(--paper); }

/* ==========================================================================
   SEKTIONS-GERÜST — Randspalte mit Nummer statt Eyebrow-Strich
   ========================================================================== */

.section {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 24px;
  max-width: 1360px;
  margin: 0 auto;
  padding: 128px 48px;
}

.section-mark {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}

.section-mark-num {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
}

.section-mark-label {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-faint);
}

.section-body { min-width: 0; }

.section h2 {
  font-size: clamp(30px, 3.6vw, 46px);
  line-height: 1.1;
  margin-bottom: 20px;
  max-width: 780px;
}

.lead {
  font-size: 22px;
  color: var(--ink-soft);
  max-width: 620px;
  line-height: 1.65;
  font-weight: 400;
}

/* ==========================================================================
   HERO — Split-Screen, kein zentrierter Block
   ========================================================================== */

.hero {
  max-width: 1360px;
  margin: 0 auto;
  padding: 56px 48px 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 0;
  align-items: start;
}

.hero-text { padding-right: 56px; padding-top: 24px; min-width: 0; }

.hero-tag {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.03em;
  color: var(--ink-soft);
  margin-bottom: 28px;
  white-space: nowrap;
  line-height: 1.6;
}
.hero-tag b { color: var(--green); font-weight: 600; }

h1 {
  font-size: clamp(36px, 4.8vw, 64px);
  font-weight: 600;
  line-height: 1.02;
  margin-bottom: 28px;
  letter-spacing: -0.02em;
}
h1 em { font-style: italic; font-weight: 400; color: var(--ink-faint); }

.hero-text .lead { margin-bottom: 0; }

.hero-photo {
  position: relative;
  align-self: start;
  width: 100%;
  aspect-ratio: 640 / 427;
}
.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  filter: grayscale(0.15) contrast(1.05);
}

.hero-stats {
  display: flex;
  margin-top: 56px;
  border-top: 2px solid var(--line-strong);
  max-width: 900px;
}

.hero-stat {
  flex: 1;
  display: flex;
  align-items: baseline;
  gap: 14px;
  padding: 20px 20px 20px 0;
  border-right: 1px solid var(--line);
}
.hero-stat:last-child { border-right: none; }
.hero-stat:first-child { padding-left: 0; }

.hero-stat-num {
  font-family: 'Fraunces', serif;
  font-size: 32px;
  font-weight: 600;
  color: var(--ink);
  line-height: 1;
  white-space: nowrap;
  flex-shrink: 0;
}

.hero-stat-label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink-soft);
  line-height: 1.3;
  white-space: nowrap;
}

/* ==========================================================================
   LEITGEDANKE — redaktionelle Nummernliste statt Icon-Grid
   ========================================================================== */

.prinzip-list {
  margin-top: 48px;
  border-top: 2px solid var(--line-strong);
}

.prinzip-row {
  display: grid;
  grid-template-columns: 90px 260px 1fr;
  gap: 32px;
  padding: 30px 0;
  border-bottom: 1px solid var(--line);
  align-items: baseline;
}

.prinzip-num {
  font-family: 'Fraunces', serif;
  font-size: 28px;
  font-weight: 600;
}
.prinzip-row:nth-child(5n+1) .prinzip-num { color: var(--green); }
.prinzip-row:nth-child(5n+2) .prinzip-num { color: var(--orange); }
.prinzip-row:nth-child(5n+3) .prinzip-num { color: var(--red); }
.prinzip-row:nth-child(5n+4) .prinzip-num { color: var(--green); }
.prinzip-row:nth-child(5n+5) .prinzip-num { color: var(--orange); }

.prinzip-title {
  font-family: 'Fraunces', serif;
  font-size: 21px;
  font-weight: 600;
  line-height: 1.25;
}

.prinzip-text {
  font-size: 19px;
  color: var(--ink-soft);
  line-height: 1.6;
  max-width: 620px;
}

/* ==========================================================================
   EBENEN — Treppenkaskade statt 3-Spalten-Grid
   ========================================================================== */

.divider-section {
  background: var(--green-deep);
  padding: 96px 0;
}

.divider-section .section { padding: 0 48px; }
.divider-section .section-mark-label,
.divider-section .section-mark-num { color: rgba(241,243,230,0.55); }
.divider-section h2 { color: var(--paper); }
.divider-section .lead { color: rgba(241,243,230,0.75); }

.ebenen-stack { margin-top: 48px; max-width: 940px; }

.ebene-row {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 32px;
  padding: 28px 32px;
  margin-bottom: -1px;
  border: 1px solid rgba(241,243,230,0.18);
}

.ebene-row:nth-child(1) { margin-right: 0; background: rgba(10,140,70,0.16); border-left: 4px solid var(--green); }
.ebene-row:nth-child(2) { margin-right: 0; margin-left: 60px; background: rgba(230,116,30,0.14); border-left: 4px solid var(--orange); }
.ebene-row:nth-child(3) { margin-right: 0; margin-left: 120px; background: rgba(229,30,42,0.14); border-left: 4px solid var(--red); }

.ebene-heading { display: flex; flex-direction: column; gap: 6px; min-width: 0; }
.ebene-tag {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(241,243,230,0.55);
}
.ebene-title { font-family: 'Fraunces', serif; font-size: 23px; font-weight: 600; color: var(--paper); line-height: 1.2; overflow-wrap: break-word; }
.ebene-subtitle { font-size: 12px; color: rgba(241,243,230,0.6); margin-top: 4px; line-height: 1.4; }

.ebene-body { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; align-items: start; min-width: 0; }

.ebene-list { list-style: none; }
.ebene-list li {
  font-size: 15.5px;
  color: rgba(241,243,230,0.85);
  padding: 5px 0;
  padding-left: 18px;
  position: relative;
}
.ebene-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 11px;
  width: 6px;
  height: 6px;
  background: currentColor;
}
.ebene-row:nth-child(1) .ebene-list li::before { color: var(--green); }
.ebene-row:nth-child(2) .ebene-list li::before { color: var(--orange); }
.ebene-row:nth-child(3) .ebene-list li::before { color: var(--red); }

.ebene-note {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 17px;
  color: rgba(241,243,230,0.85);
  line-height: 1.5;
  align-self: center;
}

/* ==========================================================================
   PHASEN
   ========================================================================== */

.phasen-section { background: var(--paper); }

.phasen-ring-wrap {
  margin: 56px 0 72px;
  border: 2px solid var(--line-strong);
}

.phasen-grafik-img {
  display: block;
  width: 100%;
  height: auto;
}

.phase-zigzag { margin-top: 0; max-width: 1040px; }

.phase-item {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 40px;
  padding: 40px 0;
  border-top: 2px solid var(--line-strong);
  align-items: start;
}
.phase-item:last-child { border-bottom: 2px solid var(--line-strong); }

.phase-lead-col { display: flex; flex-direction: column; gap: 10px; }

.phase-num {
  font-family: 'Fraunces', serif;
  font-size: 56px;
  font-weight: 600;
  line-height: 1;
}
.phase-item:nth-child(1) .phase-num { color: var(--green); }
.phase-item:nth-child(2) .phase-num { color: var(--orange); }
.phase-item:nth-child(3) .phase-num { color: var(--red); }
.phase-item:nth-child(4) .phase-num { color: var(--green); }

.phase-code {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-faint);
}

.phase-content { max-width: 680px; }

.phase-badge {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 12px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
}
.phase-badge-icon { width: 20px; height: 20px; flex-shrink: 0; }
.phase-item:nth-child(1) .phase-badge { color: var(--green); }
.phase-item:nth-child(2) .phase-badge { color: var(--orange); }
.phase-item:nth-child(3) .phase-badge { color: var(--red); }
.phase-item:nth-child(4) .phase-badge { color: var(--green); }

.phase-title { font-size: 26px; margin-bottom: 14px; }
.phase-text { font-size: 17px; color: var(--ink-soft); line-height: 1.65; margin-bottom: 20px; }

.phase-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.phase-tag {
  border: 1px solid var(--line-strong);
  padding: 5px 12px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 13px;
  color: var(--ink-soft);
}

/* ==========================================================================
   KONTAKT CTA — Übergangsstreifen
   ========================================================================== */

.cta-strip { background: var(--green); padding: 56px 48px; }

.cta-strip-inner {
  max-width: 1360px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.cta-strip-text {
  font-family: 'Fraunces', serif;
  font-size: clamp(20px, 2.4vw, 28px);
  font-weight: 600;
  color: var(--paper);
  max-width: 640px;
  line-height: 1.3;
}

.cta-strip .btn-primary {
  background: var(--paper);
  color: var(--green);
  border-color: var(--paper);
  flex-shrink: 0;
}
.cta-strip .btn-primary:hover { background: var(--ink); color: var(--paper); border-color: var(--ink); }

/* ==========================================================================
   FORMATE — alternierende Volltonzeilen statt Icon-Karten
   ========================================================================== */

.formate-section { background: var(--paper-deep); }

.formate-intro { max-width: 720px; margin-bottom: 8px; }
.formate-intro .lead { margin-top: 16px; }

.format-list { margin-top: 48px; border-top: 2px solid var(--line-strong); }

.format-row {
  display: grid;
  grid-template-columns: 90px 1.1fr 1.4fr auto;
  gap: 32px;
  padding: 32px 28px;
  border-bottom: 1px solid var(--line);
  align-items: start;
}
.format-row:nth-child(odd) { background: var(--card); }

.format-num {
  font-family: 'Fraunces', serif;
  font-size: 30px;
  font-weight: 600;
  color: var(--ink-faint);
}

.format-heading { display: flex; flex-direction: column; gap: 6px; }
.format-title { font-size: 19px; font-weight: 700; line-height: 1.3; }
.format-tagline {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--green);
}

.format-text { font-size: 16px; color: var(--ink-soft); line-height: 1.6; }

.format-meta { display: flex; flex-direction: column; gap: 8px; align-items: flex-end; text-align: right; }
.format-pill {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 13px;
  color: var(--ink-soft);
  white-space: nowrap;
}

/* ==========================================================================
   ÜBER DIGILEADER — Split-Bios statt symmetrisches Card-Grid
   ========================================================================== */

.ueber-wrap { background: var(--card); border-top: 2px solid var(--line-strong); border-bottom: 2px solid var(--line-strong); }

.ueber-intro { font-size: 22px; font-family: 'Fraunces', serif; font-weight: 600; margin-bottom: 14px; max-width: 760px; line-height: 1.35; }

.ueber-split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 0;
  margin-top: 48px;
  align-items: stretch;
}

.ueber-photo {
  align-self: start;
  aspect-ratio: 640 / 427;
}
.ueber-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  filter: grayscale(0.2) contrast(1.05);
}

.person-stack { display: flex; flex-direction: column; }
.person-card {
  padding: 32px 0 32px 40px;
  border-bottom: 1px solid var(--line);
}
.person-card:last-child { border-bottom: none; }

.person-name { font-family: 'Fraunces', serif; font-size: 24px; font-weight: 600; margin-bottom: 6px; }
.person-roles {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 16px;
}

.person-list { list-style: none; margin-bottom: 18px; }
.person-list li {
  font-size: 15.5px;
  color: var(--ink-soft);
  padding: 4px 0;
  padding-left: 18px;
  position: relative;
  line-height: 1.5;
}
.person-list li::before { content: ''; position: absolute; left: 0; top: 9px; width: 6px; height: 6px; background: var(--orange); }

.person-link {
  display: inline-block;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  text-decoration: none;
  border-bottom: 2px solid var(--green);
  padding-bottom: 2px;
}

/* ==========================================================================
   REFERENZEN — typografische Wand statt Logo-Leiste
   ========================================================================== */

.ref-wall {
  margin-top: 40px;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 6px 22px;
  padding-bottom: 40px;
  border-bottom: 2px solid var(--line-strong);
}

.ref-name {
  font-family: 'Fraunces', serif;
  color: var(--ink-faint);
  font-weight: 500;
  transition: color 0.15s;
}
.ref-name:hover { color: var(--green); }
.ref-name.size-l { font-size: 30px; color: var(--ink-soft); }
.ref-name.size-m { font-size: 21px; }
.ref-name.size-s { font-size: 15px; }

/* TESTIMONIALS — versetzte Zitate */
.testimonial-stack { margin-top: 56px; }

.testimonial-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
}
.testimonial-row:nth-child(2) { margin-top: 64px; }

.testimonial-card { max-width: 460px; }
.testimonial-row:nth-child(2) .testimonial-card:first-child { margin-top: 56px; }
.testimonial-row:nth-child(odd) .testimonial-card:nth-child(2) { margin-top: 56px; }

.quote-mark {
  font-family: 'Fraunces', serif;
  font-size: 64px;
  font-weight: 600;
  line-height: 0.6;
  color: var(--orange);
  display: block;
  margin-bottom: 12px;
}

.testimonial-text {
  font-family: 'Fraunces', serif;
  font-size: 19px;
  font-weight: 400;
  font-style: italic;
  color: var(--ink);
  line-height: 1.5;
  margin-bottom: 16px;
}

.testimonial-author {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.04em;
  color: var(--ink-faint);
  text-transform: uppercase;
}

/* ==========================================================================
   INSIGHTS — Manifest-Nummern statt Karten-Icon
   ========================================================================== */

.insights-wrap { border-top: 2px solid var(--line-strong); }

.insight-head { max-width: 720px; }
.insight-subtitle { font-size: 15.5px; color: var(--ink-soft); margin-top: 8px; font-style: italic; font-weight: 500; }

.insight-list { margin-top: 48px; }

.insight-punkt {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 24px;
  padding: 36px 0;
  border-top: 1px solid var(--line);
  position: relative;
}
.insight-punkt:last-child { border-bottom: 1px solid var(--line); }

.insight-bg-num {
  font-family: 'Fraunces', serif;
  font-size: 92px;
  font-weight: 700;
  color: transparent;
  -webkit-text-stroke: 1.5px var(--line-strong);
  line-height: 0.8;
}

.insight-punkt h4 { font-size: 19px; font-weight: 700; margin-bottom: 10px; margin-top: 6px; }
.insight-punkt p { font-size: 16.5px; color: var(--ink-soft); line-height: 1.65; max-width: 620px; }

/* ==========================================================================
   RECHTSSEITEN — Impressum, Datenschutz
   ========================================================================== */

.legal-hero {
  max-width: 1360px;
  margin: 0 auto;
  padding: 64px 48px 0;
}

.legal-kicker {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 16px;
}

.legal-title {
  font-size: clamp(32px, 4.4vw, 52px);
  line-height: 1.08;
  margin-bottom: 8px;
  max-width: 780px;
}

.legal-updated {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12px;
  color: var(--ink-faint);
  margin-top: 12px;
}

.legal-content {
  max-width: 760px;
}

.legal-content h2 {
  font-size: 24px;
  margin-top: 52px;
  margin-bottom: 16px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}
.legal-content > h2:first-child { margin-top: 0; padding-top: 0; border-top: none; }

.legal-content h3 {
  font-size: 18px;
  margin-top: 32px;
  margin-bottom: 10px;
}

.legal-content h4 {
  font-size: 15.5px;
  font-family: 'IBM Plex Mono', monospace;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--green);
  margin-top: 24px;
  margin-bottom: 8px;
}

.legal-content p {
  font-size: 15.5px;
  color: var(--ink-soft);
  line-height: 1.75;
  margin-bottom: 16px;
}

.legal-content ul {
  margin: 0 0 18px 0;
  list-style: none;
}

.legal-content li {
  font-size: 15.5px;
  color: var(--ink-soft);
  line-height: 1.65;
  padding: 4px 0 4px 20px;
  position: relative;
}
.legal-content li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 14px;
  width: 6px;
  height: 6px;
  background: var(--orange);
}

.legal-content a { color: var(--green); text-decoration: underline; text-underline-offset: 2px; }
.legal-content a:hover { color: var(--ink); }

.legal-content strong { color: var(--ink); font-weight: 600; }

/* ==========================================================================
   FOOTER — asymmetrisch
   ========================================================================== */

footer {
  background: var(--green-deep);
  color: var(--paper);
  padding: 96px 48px 32px;
}

.footer-grid {
  max-width: 1360px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.8fr 0.7fr 0.7fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(241,243,230,0.2);
}

.footer-brand .logo-word { color: var(--paper); }
.footer-brand .logo-sub { color: rgba(241,243,230,0.5); }
.footer-brand .logo {
  background: var(--paper);
  padding: 10px 18px;
  border-radius: 8px;
  display: inline-flex;
}
.footer-brand p { font-size: 14px; color: rgba(241,243,230,0.65); margin-top: 20px; line-height: 1.7; max-width: 320px; }

.footer-col h4 {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 18px;
}
.footer-col p, .footer-col a {
  font-size: 15.5px;
  color: rgba(241,243,230,0.8);
  text-decoration: none;
  display: block;
  margin-bottom: 10px;
  line-height: 1.55;
}
.footer-col a:hover { color: var(--paper); }

.footer-bottom {
  max-width: 1360px;
  margin: 24px auto 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  color: rgba(241,243,230,0.5);
}
.footer-bottom-links { display: flex; gap: 24px; }
.footer-bottom-links a { color: rgba(241,243,230,0.7); text-decoration: none; font-size: 11px; }
.footer-bottom-links a:hover { color: var(--paper); }

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */

@media (max-width: 1080px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-text { padding-right: 0; }
  .hero-photo { margin-top: 40px; }
  .hero-stats { flex-direction: column; }
  .hero-stat { flex: 1 1 auto; padding: 16px 0; border-right: none; border-bottom: 1px solid var(--line); gap: 10px; }
  .hero-stat:last-child { border-bottom: none; }
  .hero-stat-num { font-size: 24px; flex-basis: 22px; }
  .hero-stat-label { white-space: nowrap; font-size: 12px; letter-spacing: 0.02em; }
}

@media (max-width: 900px) {
  .section { grid-template-columns: 1fr; }
  .section-mark { flex-direction: row; align-items: center; }
  .section-mark-label { writing-mode: horizontal-tb; transform: none; }

  .prinzip-row { grid-template-columns: 1fr; gap: 10px; }

  .ebene-row { grid-template-columns: 1fr; }
  .ebene-row:nth-child(1), .ebene-row:nth-child(2), .ebene-row:nth-child(3) { margin-left: 0; }
  .ebene-body { grid-template-columns: 1fr; }

  .phase-item { grid-template-columns: 1fr; gap: 12px; }

  .format-row { grid-template-columns: 1fr; gap: 12px; }
  .format-meta { align-items: flex-start; text-align: left; flex-direction: row; gap: 16px; }

  .ueber-split { grid-template-columns: 1fr; }
  .person-card { padding-left: 0; }

  .testimonial-row { grid-template-columns: 1fr; gap: 32px; }
  .testimonial-row:nth-child(2) .testimonial-card:first-child,
  .testimonial-row:nth-child(odd) .testimonial-card:nth-child(2) { margin-top: 0; }

  .insight-punkt { grid-template-columns: 1fr; gap: 8px; }
  .insight-bg-num { font-size: 56px; }

  .footer-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-bottom { flex-direction: column; gap: 12px; align-items: flex-start; }
}

@media (max-width: 1400px) {
  .nav-toggle { display: flex; }
  .nav-links {
    display: none;
    position: fixed;
    top: 68px;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    background: var(--paper);
    border-bottom: 2px solid var(--line-strong);
    padding: 8px 20px 16px;
    z-index: 99;
  }
  .nav-links.open { display: flex; }
  .nav-links a {
    width: 100%;
    padding: 14px 0;
    font-size: 14px;
    border-bottom: 1px solid var(--line);
  }
  nav .btn-primary { display: none; }
  .nav-link-contact { display: block; color: var(--green) !important; font-weight: 700 !important; }
  .nav-links a:last-child { border-bottom: none; }
}

@media (max-width: 768px) {
  nav { padding: 0 20px; height: 68px; }
  .logo svg { width: 40px; height: 40px; }
  .logo-word { font-size: 17px; }
  .logo-img { height: 40px; }

  .section { padding: 72px 20px; }
  .hero { padding: 32px 20px 0; }
  .divider-section .section { padding: 0 20px; }
  footer { padding: 64px 20px 24px; }

  .cta-strip { padding: 40px 20px; }
  .cta-strip-inner { flex-direction: column; align-items: flex-start; gap: 20px; }

  .hero-tag { white-space: normal; font-size: 12.5px; }
}
