:root {
  --red: #04574B;         /* Markenfarbe Perlopalgruen / Petrol */
  --red-dark: #02362E;
  --black: #313030;
  --ink: #141414;
  --char: #2A2A2A;
  --paper: #FAFAF7;
  --paper-2: #F2F2EE;
  --line: #E5E5E0;
  --muted: #6B6B66;
  --accent: #FFD500;
  --logoblack: #141414;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Manrope', system-ui, sans-serif;
  background: var(--paper);
  color: var(--ink);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ---------- TYPE ---------- */
.mono { font-family: 'JetBrains Mono', monospace; }
h1, h2, h3, h4 { font-weight: 800; letter-spacing: -0.02em; line-height: 1.05; }

/* ---------- GRID OVERLAY ---------- */
.grid-bg {
  position: fixed; inset: 0;
  background-image:
    linear-gradient(to right, rgba(20,20,20,0.04) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(20,20,20,0.04) 1px, transparent 1px);
  background-size: 80px 80px;
  pointer-events: none; z-index: 0;
}

/* ---------- TICKER ---------- */
.ticker {
  background: var(--black); color: var(--paper);
  border-bottom: 1px solid var(--char);
  overflow: hidden; position: relative; z-index: 10;
}
.ticker-track {
  display: flex; gap: 3rem; padding: 0.75rem 0;
  animation: scroll 40s linear infinite;
  white-space: nowrap;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.75rem; letter-spacing: 0.1em;
  text-transform: uppercase;
}
.ticker-track span { display: flex; align-items: center; gap: 0.75rem; }
.ticker-track .dot { width: 6px; height: 6px; background: var(--red); border-radius: 50%; }
@keyframes scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ---------- NAV ---------- */
nav.site-nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(250,250,247,0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  max-width: 1400px; margin: 0 auto;
  padding: 1.1rem 2rem;
  display: flex; align-items: center; justify-content: space-between;
}
.logo { display: flex; align-items: center; gap: 0.85rem; text-decoration: none; }
.logo-mark { display: grid; grid-template-columns: repeat(2, 11px); grid-template-rows: repeat(2, 14px);gap: 2px; transform: skewX(-30deg); }
.logo-mark span { display: block; width: 10px; height: 14px; }
.logo-mark span:nth-child(1) { background: var(--logoblack); }
.logo-mark span:nth-child(2) { background: var(--red); }
.logo-mark span:nth-child(3) { background: var(--red); }
.logo-mark span:nth-child(4) { background: var(--logoblack); }
.logo-text { display: flex; flex-direction: column; line-height: 1; }
.logo-text .b { font-weight: 800; font-size: 1.15rem; letter-spacing: 0.02em; color: var(--logoblack); }
.logo-text .c { font-weight: 500; font-size: 0.85rem; color: var(--red); letter-spacing: 0.01em; margin-top: 2px; }

.nav-links { display: flex; gap: 2rem; align-items: center; }
.nav-links a {
  text-decoration: none; color: var(--ink);
  font-weight: 500; font-size: 0.92rem;
  position: relative; padding: 0.25rem 0;
  transition: color 0.2s;
}
.nav-links a::after {
  content: ''; position: absolute;
  bottom: 0; left: 0; right: 100%;
  height: 2px; background: var(--red);
  transition: right 0.25s ease;
}
.nav-links a:hover { color: var(--red); }
.nav-links a:hover::after { right: 0; }

.nav-cta {
  background: var(--red); color: white !important;
  padding: 0.7rem 1.4rem !important;
  font-weight: 600 !important;
  transition: background 0.2s, transform 0.2s;
}
.nav-cta::after { display: none; }
.nav-cta:hover { background: var(--red-dark); transform: translateY(-1px); }

.burger { display: none; background: none; border: none; cursor: pointer; padding: 0.5rem; }
.burger span { display: block; width: 24px; height: 2px; background: var(--ink); margin: 5px 0; transition: 0.25s; }

/* ---------- HERO ---------- */
.hero {
  position: relative; overflow: hidden;
  padding: 6rem 2rem 8rem;
  background: var(--paper);
}
.hero-inner { max-width: 1400px; margin: 0 auto; position: relative; z-index: 2; }

.hero-meta {
  display: flex; align-items: center; gap: 1rem;
  margin-bottom: 2.5rem;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.78rem; text-transform: uppercase;
  letter-spacing: 0.15em; color: var(--muted);
}

.hero-meta a{
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.78rem; text-transform: uppercase;
  letter-spacing: 0.15em; color: var(--red);
}

.hero-meta .line { flex: 0 0 60px; height: 1px; background: var(--ink); }
.hero-meta .red-square { width: 10px; height: 10px; background: var(--red); transform: skewX(-20deg); }

.hero h1 {
  font-size: clamp(2.8rem, 7.5vw, 6.5rem);
  margin-bottom: 2rem;
  max-width: 1100px;
}
.hero h1 .accent { color: var(--red); position: relative; display: inline-block; }
.hero h1 .accent::after {
  content: ''; position: absolute;
  bottom: 0.08em; left: 0; right: 0; height: 0.12em;
  background: var(--red);
  transform: skewX(-20deg);
  opacity: 0.18;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 4rem; align-items: end;
  margin-top: 3rem;
}
.hero-lead {
  font-size: 1.2rem; color: var(--char);
  max-width: 540px; line-height: 1.6;
}

.hero-actions { display: flex; flex-direction: column; gap: 1rem; }
.btn-primary, .btn-secondary {
  display: inline-flex; align-items: center; justify-content: space-between;
  padding: 1.1rem 1.5rem;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.85rem; font-weight: 500;
  text-transform: uppercase; letter-spacing: 0.1em;
  text-decoration: none;
  transition: all 0.25s ease;
  border: 1px solid transparent;
}
.btn-primary {
  background: var(--ink); color: white;
  position: relative; overflow: hidden;
}
.btn-primary::before {
  content: ''; position: absolute; inset: 0;
  background: var(--red); transform: translateX(-101%);
  transition: transform 0.3s ease;
}
.btn-primary span { position: relative; z-index: 1; }
.btn-primary:hover::before { transform: translateX(0); }

.btn-secondary {
  background: transparent; color: var(--ink);
  border-color: var(--ink);
}
.btn-secondary:hover { background: var(--ink); color: white; }

/* Hero diagonal decorations */
.hero-deco {
  position: absolute; top: 0; right: -50px;
  width: 500px; height: 100%;
  pointer-events: none; opacity: 0.06;
  z-index: 1;
}
.hero-deco svg { width: 100%; height: 100%; }

/* Status card */
.status-card {
  position: absolute; top: 8rem; right: 2rem;
  background: var(--black); color: var(--paper);
  padding: 1.5rem 1.75rem; max-width: 280px;
  font-family: 'JetBrains Mono', monospace; font-size: 0.78rem;
  border-left: 3px solid var(--red);
  z-index: 3;
  transform: rotate(1deg);
  box-shadow: 0 20px 50px -20px rgba(0,0,0,0.3);
}
.status-card .label { color: var(--muted); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 0.5rem; font-size: 0.7rem; }
.status-card .val { font-size: 1.05rem; font-weight: 600; line-height: 1.4; color: white; }
.status-card .pulse { display: inline-block; width: 8px; height: 8px; background: #4ADE80; border-radius: 50%; margin-right: 0.5rem; animation: pulse 2s infinite; }
@keyframes pulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(74,222,128,0.6); }
  50% { opacity: 0.6; box-shadow: 0 0 0 6px rgba(74,222,128,0); }
}

/* ---------- PAGE HERO (subpages) ---------- */
.page-hero {
  position: relative; overflow: hidden;
  padding: 4rem 2rem 3rem;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}
.page-hero-inner { max-width: 1400px; margin: 0 auto; position: relative; z-index: 2; }
.page-hero .hero-meta { margin-bottom: 1.5rem; }
.page-hero h1 {
  font-size: clamp(2.2rem, 5vw, 4rem);
  max-width: 1000px;
}

/* ---------- PROBLEMS BAR ---------- */
.problems {
  background: var(--ink); color: var(--paper);
  padding: 5rem 2rem;
  position: relative; overflow: hidden;
}
.problems::before {
  content: ''; position: absolute; inset: 0;
  background-image:
    linear-gradient(to right, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 80px 100%;
}
.problems-inner { max-width: 1400px; margin: 0 auto; position: relative; }
.problems-header {
  display: flex; align-items: baseline; justify-content: space-between;
  margin-bottom: 3rem; flex-wrap: wrap; gap: 1.5rem;
}
.problems-header h2 { font-size: clamp(2rem, 4vw, 3.2rem); max-width: 900px; }
.problems-header h2 .red { color: var(--red); }
.problems-header .small {
  font-family: 'JetBrains Mono', monospace; font-size: 0.75rem;
  text-transform: uppercase; letter-spacing: 0.15em; color: var(--muted);
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1px; background: var(--char);
  border: 1px solid var(--char);
}
.problem {
  background: var(--ink); padding: 2rem 1.75rem;
  transition: background 0.3s ease;
  cursor: default;
  position: relative;
}
.problem:hover { background: #1c1c1c; }
.problem .num {
  font-family: 'JetBrains Mono', monospace;
  color: var(--red); font-size: 0.75rem;
  letter-spacing: 0.1em; margin-bottom: 1rem;
}
.problem h3 { font-size: 1.3rem; margin-bottom: 0.75rem; color: white; }
.problem p { font-size: 0.92rem; color: #B5B5B0; line-height: 1.6; }

/* ---------- SECTION COMMON ---------- */
section { position: relative; z-index: 2; }
.container { max-width: 1400px; margin: 0 auto; padding: 6rem 2rem; }

.section-head {
  display: flex; align-items: baseline; gap: 1.5rem;
  margin-bottom: 4rem; flex-wrap: wrap;
}
.section-num {
  font-family: 'JetBrains Mono', monospace;
  color: var(--red); font-size: 0.85rem;
  letter-spacing: 0.15em;
  border-top: 2px solid var(--red);
  padding-top: 0.5rem; min-width: 80px;
}
.section-head h2 {
  font-size: clamp(2.2rem, 5vw, 4rem);
  flex: 1; max-width: 900px;
}

/* ---------- SERVICES ---------- */
.services {
  background: var(--paper-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.service-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
.service {
  background: var(--paper); padding: 2.5rem;
  border: 1px solid var(--line);
  position: relative; overflow: hidden;
  transition: transform 0.3s, border-color 0.3s;
}
.service::before {
  content: ''; position: absolute;
  top: 0; left: 0; width: 4px; height: 0;
  background: var(--red);
  transition: height 0.4s ease;
}
.service:hover { transform: translateY(-4px); border-color: var(--ink); }
.service:hover::before { height: 100%; }

.service-header {
  display: flex; align-items: center; gap: 1rem;
  margin-bottom: 1.5rem;
}
.service-icon {
  width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center;
  background: var(--ink); color: var(--paper);
  position: relative;
  flex-shrink: 0;
}
.service-icon svg { width: 22px; height: 22px; }
.service:nth-child(odd) .service-icon { background: var(--red); }

.service-cat {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.7rem; letter-spacing: 0.15em;
  color: var(--muted); text-transform: uppercase;
}
.service h3 { font-size: 1.7rem; margin-bottom: 1rem; }
.service p { color: var(--char); }
.service-more {
  display: inline-flex; align-items: center; gap: 0.5rem;
  margin-top: 1.5rem;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.78rem; letter-spacing: 0.15em;
  text-transform: uppercase; text-decoration: none;
  color: var(--ink); font-weight: 600;
  border-bottom: 1px solid var(--ink);
  padding-bottom: 0.25rem;
  transition: color 0.2s, border-color 0.2s, gap 0.2s;
}
.service-more::after { content: '→'; transition: transform 0.2s; }
.service-more:hover { color: var(--red); border-color: var(--red); gap: 0.75rem; }
.service-more:hover::after { transform: translateX(3px); }

/* ---------- PROCESS ---------- */
.process { background: var(--paper); }
.process-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; }
.process-left h2 { font-size: clamp(2.2rem, 5vw, 4rem); margin-bottom: 1.5rem; }
.process-left p { color: var(--char); font-size: 1.1rem; max-width: 480px; }
.process-left .tag {
  display: inline-block; margin-bottom: 1.5rem;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.75rem; letter-spacing: 0.15em;
  color: var(--red); text-transform: uppercase;
  border-bottom: 2px solid var(--red); padding-bottom: 0.5rem;
}
.steps { display: flex; flex-direction: column; gap: 1.25rem; }
.step {
  display: grid; grid-template-columns: 60px 1fr;
  gap: 1.5rem;
  padding: 1.5rem 0;
  border-top: 1px solid var(--line);
  align-items: start;
}
.step:last-child { border-bottom: 1px solid var(--line); }
.step .step-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 1rem; font-weight: 700;
  color: var(--red);
}
.step p { color: var(--char); font-size: 1rem; line-height: 1.6; }

/* ---------- PRICES ---------- */
.prices {
  background: var(--ink); color: var(--paper);
  position: relative; overflow: hidden;
}
.prices::before {
  content: ''; position: absolute;
  top: -100px; right: -100px;
  width: 400px; height: 400px;
  background: var(--red); opacity: 0.06;
  transform: skewX(-20deg) rotate(15deg);
}
.prices .section-num { color: var(--red); border-color: var(--red); }
.prices h2 { color: white; }
.price-list {
  display: flex; flex-direction: column;
  border-top: 1px solid var(--char);
}
.price-row {
  display: grid;
  grid-template-columns: 80px 1fr auto;
  gap: 2rem; align-items: center;
  padding: 2rem 0;
  border-bottom: 1px solid var(--char);
  transition: padding 0.3s;
}
.price-row:hover { padding-left: 1rem; }
.price-row .idx {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.85rem; color: var(--muted);
}
.price-row .desc h4 {
  font-size: 1.35rem; margin-bottom: 0.4rem; color: white;
}
.price-row .desc p {
  color: #B5B5B0; font-size: 0.9rem;
}
.price-row .amount {
  font-family: 'JetBrains Mono', monospace;
  font-size: 1.6rem; font-weight: 700;
  color: white; text-align: right;
  white-space: nowrap;
}
.price-row .amount .unit {
  display: block; font-size: 0.7rem;
  color: var(--muted); margin-top: 0.25rem;
  font-weight: 400;
}
.price-note {
  margin-top: 2.5rem; padding: 1.5rem;
  background: rgba(255,255,255,0.04);
  border-left: 3px solid var(--red);
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.85rem; color: #B5B5B0;
  line-height: 1.7;
}

/* ---------- CONTACT ---------- */
.contact {
  background: var(--paper);
  position: relative;
}
.contact-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem; align-items: start;
}
.contact-left h2 {
  font-size: clamp(2.5rem, 6vw, 5rem);
  margin-bottom: 2rem;
}
.contact-left h2 .red { color: var(--red); }
.contact-left .quote {
  margin: 2rem 0;
  padding: 1.5rem 0;
  border-left: 3px solid var(--red);
  padding-left: 1.5rem;
  font-size: 1.05rem;
  color: var(--char);
  max-width: 480px;
  line-height: 1.65;
}

.info-card {
  background: var(--ink); color: white;
  padding: 2.5rem;
  position: relative; overflow: hidden;
}
.info-card::before {
  content: '';
  position: absolute; top: 0; right: 0;
  width: 100px; height: 100px;
  background: var(--red);
  clip-path: polygon(100% 0, 100% 100%, 0 0);
}
.info-row {
  padding: 1.2rem 0;
  border-bottom: 1px solid var(--char);
}
.info-row:last-child { border: none; padding-bottom: 0; }
.info-row:first-child { padding-top: 0; }
.info-row .info-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.7rem; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--muted);
  margin-bottom: 0.4rem;
}
.info-row .info-val { font-size: 1.05rem; font-weight: 500; }
.info-row .info-val.mono { font-size: 0.95rem; }
.info-row .info-val a { color: white; text-decoration: none; border-bottom: 1px dashed var(--red); padding-bottom: 2px; transition: color 0.2s; }
.info-row .info-val a:hover { color: var(--red); }
.info-row .small-note { font-size: 0.85rem; color: #B5B5B0; margin-top: 0.4rem; line-height: 1.5; }

.notice {
  margin-top: 1.5rem; padding: 1.25rem;
  background: var(--paper-2);
  border-left: 3px solid var(--red);
  font-size: 0.92rem; color: var(--char);
  line-height: 1.6;
}
.notice strong { color: var(--ink); }

/* ---------- ARTICLE (subpages: Impressum, AGB, Datenschutz) ---------- */
.article-wrap {
  background: var(--paper);
}
.article {
  max-width: 880px;
  margin: 0 auto;
  padding: 4rem 2rem 6rem;
}
.article h2 {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  margin-top: 3rem;
  margin-bottom: 1rem;
  padding-bottom: 0.6rem;
  border-bottom: 2px solid var(--red);
}
.article h2:first-of-type { margin-top: 0; }
.article h3 {
  font-size: 1.15rem;
  margin-top: 2rem;
  margin-bottom: 0.75rem;
  color: var(--red);
  font-weight: 700;
}
.article p {
  margin-bottom: 1.25rem;
  color: var(--char);
  font-size: 1rem;
  line-height: 1.75;
}
.article ul {
  margin: 1rem 0 1.5rem 1.5rem;
  color: var(--char);
}
.article ul li {
  margin-bottom: 0.5rem;
  line-height: 1.65;
}
.article a {
  color: var(--ink);
  border-bottom: 1px dashed var(--red);
  text-decoration: none;
  transition: color 0.2s;
}
.article a:hover { color: var(--red); }
.article .lead {
  font-size: 1.15rem;
  color: var(--ink);
  margin-bottom: 2.5rem;
  line-height: 1.6;
}
.article .address-block {
  background: var(--paper-2);
  padding: 1.5rem;
  border-left: 3px solid var(--red);
  margin: 1.5rem 0;
  font-style: normal;
  line-height: 1.7;
}
.btn-prime, .btn-sec {
  display: inline-flex; align-items: center; justify-content: space-between;
  padding: 1.1rem 1.5rem;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.85rem; font-weight: 500;
  text-transform: uppercase; letter-spacing: 0.1em;
  text-decoration: none;
  transition: all 0.25s ease;
  border: 1px solid transparent;
}
.btn-prime {
  color: white; background: var(--red);
  position: relative; overflow: hidden;
}
.btn-prime::before {
  content: ''; position: absolute; inset: 0;
  background: white; transform: translateX(-101%);
  transition: transform 0.3s ease;
}
.btn-prime span { position: relative; z-index: 1; }
.btn-prime:hover::before { transform: translateX(0); }

.btn-sec {
  background: transparent; color: var(--ink);
  border-color: var(--ink);
}
.btn-sec:hover { background: var(--ink); color: white; }


/* ---------- FOOTER ---------- */
footer {
  background: var(--black); color: var(--paper);
  padding: 5rem 2rem 2rem; position: relative;
}
.footer-inner { max-width: 1400px; margin: 0 auto; }
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--char);
}
.footer-brand .logo-text .b { color: white; }
.footer-brand p {
  color: #888884; margin-top: 1.5rem;
  max-width: 320px; line-height: 1.6; font-size: 0.95rem;
}
.footer-col h5 {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.75rem; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--red);
  margin-bottom: 1.25rem;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.6rem; }
.footer-col ul li.muted { color: #888884; font-size: 0.95rem; line-height: 1.55; }
.footer-col a {
  color: #B5B5B0; text-decoration: none;           /* #fcb040 */
  font-size: 0.95rem; transition: color 0.2s;
}
.footer-col a:hover { color: white; }
.footer-bottom {
  padding-top: 2rem;
  display: flex; justify-content: space-between;
  align-items: center; flex-wrap: wrap; gap: 1rem;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.75rem; color: var(--muted);
  letter-spacing: 0.05em;
}

/* ---------- REVEAL ANIMATION ---------- */
.reveal {
  opacity: 0; transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.in { opacity: 1; transform: none; }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 900px) {
  .nav-links { display: none; position: fixed; top: 70px; left: 0; right: 0; background: var(--paper); flex-direction: column; padding: 2rem; gap: 1.5rem; border-bottom: 1px solid var(--line); box-shadow: 0 20px 40px -20px rgba(0,0,0,0.15); }
  .nav-links.open { display: flex; }
  .burger { display: block; }
  .burger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 7px); }
  .burger.open span:nth-child(2) { opacity: 0; }
  .burger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -7px); }

  .hero { padding: 4rem 1.5rem 5rem; }
  .hero-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .status-card { position: static; transform: none; margin-top: 2rem; max-width: 100%; }
  .hero-deco { display: none; }

  .container { padding: 4rem 1.5rem; }
  .service-grid { grid-template-columns: 1fr; }
  .process-inner { grid-template-columns: 1fr; gap: 3rem; }
  .contact-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .price-row { grid-template-columns: 50px 1fr; }
  .price-row .amount { grid-column: 2; text-align: left; margin-top: 0.5rem; font-size: 1.3rem; }
  .problems { padding: 4rem 1.5rem; }
  .problems-header { flex-direction: column; align-items: flex-start; }

  .article { padding: 3rem 1.5rem 4rem; }
  .page-hero { padding: 3rem 1.5rem 2rem; }
}
@media (max-width: 500px) {
  .footer-top { grid-template-columns: 1fr; }
  .hero-meta { flex-wrap: wrap; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

/* ---------- TEAM ---------- */
.team { background: var(--paper); }
.team-photo-wrap {
  margin-bottom: 3.5rem;
  border: 1px solid var(--line);
  overflow: hidden;
}
.team-photo-wrap img { width: 100%; display: block; height: auto; }
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.team-card {
  background: var(--paper-2); padding: 2.25rem;
  border: 1px solid var(--line);
  position: relative; overflow: hidden;
  transition: transform 0.3s, border-color 0.3s;
}
.team-card::before {
  content: ''; position: absolute;
  top: 0; left: 0; width: 4px; height: 0;
  background: var(--red);
  transition: height 0.4s ease;
}
.team-card:hover { transform: translateY(-4px); border-color: var(--ink); }
.team-card:hover::before { height: 100%; }
.team-card .role {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.7rem; letter-spacing: 0.15em;
  color: var(--red); text-transform: uppercase;
  margin-bottom: 0.6rem;
}
.team-card h3 { font-size: 1.4rem; margin-bottom: 0.75rem; }
.team-card p { color: var(--char); font-size: 0.95rem; }

/* ---------- MILESTONES (Projektfortschritt) ---------- */
.milestone-row .desc h4 { display: flex; align-items: center; gap: 0.75rem; }
.trl-badge {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.7rem; font-weight: 700;
  padding: 0.2rem 0.55rem;
  border: 1px solid var(--red);
  color: var(--red);
}
.trl-badge.done { background: var(--red); color: white; border-color: var(--red); }

/* ---------- FOOTER FUNDING ---------- */
.footer-funding {
  margin-top: 2.5rem; padding-top: 2.5rem;
  border-top: 1px solid var(--char);
  display: flex; align-items: center; gap: 1.75rem; flex-wrap: wrap;
}
.footer-funding .push-logo {
  background: white; padding: 0.6rem 1rem;
  display: inline-flex; align-items: center;
}
.footer-funding .push-logo img { height: 42px; display: block; }
.footer-funding p {
  color: #B5B5B0; font-size: 0.85rem; line-height: 1.6;
  max-width: 560px; margin: 0;
}

@media (max-width: 900px) {
  .team-grid { grid-template-columns: 1fr; }
}

/* ---------- LOGO (echtes Ecoturbine-Logo mit Schrift) ---------- */
.logo-full {
  height: 70px;
  width: auto;
  display: block;
}
.logo-full-white {
  height: 80px;
  width: auto;
  display: block;
}

/* ---------- SCHAUBILD (Technologie-Unterseite) ---------- */
.schaubild-wrap {
  margin: 2.5rem 0 3rem;
  padding: 2.5rem;
  background: var(--paper-2);
  border: 1px solid var(--line);
  text-align: center;
}
.schaubild-wrap img {
  max-width: 100%;
  height: auto;
}
.schaubild-caption {
  margin-top: 1.25rem;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  color: var(--muted);
  text-transform: uppercase;
}

/* ---------- TECHNOLOGIE-LINK (Section-Footer-CTA) ---------- */
.section-more {
  margin-top: 2.5rem;
  text-align: center;
}