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

:root {
  --black:   #0b0d10;
  --dark:    #13161c;
  --steel:   #1c2130;
  --blue:    #000000;
  --blue-lt: #989797;
  --blue-bg: #0f1e3d;
  --white:   #f0f2f5;
  --muted:   #7a8394;
  --border:  rgba(255,255,255,0.07);
  --border-b: rgba(125, 123, 124, 0.533);
}

html { scroll-behavior: smooth; scrollbar-gutter: stable; }

body {
  font-family: 'Barlow', sans-serif;
  background: var(--dark);
  color: var(--white);
  overflow-x: hidden;
  line-height: 1.65;
}

/* ── NAVBAR ── */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 5vw; height: 68px;
  background: rgba(11,13,16,0.96);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  width: 100%; box-sizing: border-box;
}
.logo {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800; font-size: 21px;
  letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--white); text-decoration: none;
  flex-shrink: 0;
}

.logo img {
  height: 50px;   /* anpassen */
  width: auto;
  display: block;
}

.nav-links { display: flex; gap: 32px; list-style: none; }
.nav-links a {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--muted); text-decoration: none;
  transition: color 0.2s;
  display: inline-block;
}
.nav-links a:hover { color: var(--white); }
.nav-links a.active { color: var(--blue-lt); }

/* Hamburger */
.hamburger {
  display: none; flex-direction: column; justify-content: center;
  gap: 5px; cursor: pointer; background: none; border: none;
  padding: 8px; margin-right: -8px; flex-shrink: 0;
  -webkit-tap-highlight-color: transparent;
}
.hamburger span { display: block; width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: all 0.3s; pointer-events: none; }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── PAGE HERO (subpages) ── */
.page-hero {
  padding: 130px 5vw 72px;
  background: var(--black);
  border-bottom: 1px solid var(--border);
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(26,86,219,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.page-hero-inner { max-width: 1100px; margin: 0 auto; position: relative; }
.page-eyebrow {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--blue-lt); margin-bottom: 14px;
  display: flex; align-items: center; gap: 10px;
}
.page-eyebrow::before { content: ''; display: block; width: 32px; height: 2px; background: var(--blue-lt); }
.page-hero h1 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(44px, 7vw, 88px);
  font-weight: 800; text-transform: uppercase;
  line-height: 0.92; letter-spacing: -0.01em;
}
.page-hero h1 em { color: var(--blue-lt); font-style: normal; }

/* ── SECTIONS ── */
.section { padding: 88px 5vw; }
.section-alt { padding: 88px 5vw; background: var(--black); }
.section-inner { max-width: 1100px; margin: 0 auto; }

.section-eyebrow {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--blue-lt); margin-bottom: 12px;
  display: flex; align-items: center; gap: 10px;
}
.section-eyebrow::before { content: ''; display: block; width: 28px; height: 2px; background: var(--blue-lt); }

h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 800; text-transform: uppercase;
  line-height: 1.0; letter-spacing: -0.01em;
  margin-bottom: 40px;
}
h2 em { color: var(--blue-lt); font-style: normal; }
h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 22px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.03em;
  margin-bottom: 10px;
}

/* ── BUTTONS ── */
.btn-primary {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  text-decoration: none; display: inline-block;
  padding: 13px 32px;
  background: var(--blue); color: #fff;
  border: none; cursor: pointer;
  border-radius: 2px;
  transition: background 0.2s, transform 0.15s;
}
.btn-primary:hover { background: var(--blue-lt); transform: translateY(-2px); }

.btn-ghost {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  text-decoration: none; display: inline-block;
  padding: 12px 32px;
  background: transparent; color: var(--white);
  border: 1px solid rgba(255,255,255,0.2);
  cursor: pointer; border-radius: 2px;
  transition: border-color 0.2s, transform 0.15s;
}
.btn-ghost:hover { border-color: rgba(255,255,255,0.6); transform: translateY(-2px); }

/* ── CARDS ── */
.card {
  background: var(--steel);
  border: 1px solid var(--border);
  border-top: 3px solid var(--blue);
  border-radius: 3px;
  padding: 36px 32px;
  transition: border-top-color 0.2s, transform 0.2s;
  /* Fix: kein sticky hover auf Touch-Geräten */
  -webkit-tap-highlight-color: transparent;
}
@media (hover: hover) {
  .card:hover { border-top-color: var(--blue-lt); transform: translateY(-4px); }
}
.card p { font-size: 15px; color: rgba(240,242,245,0.6); line-height: 1.7; }

/* ── STATS BAR ── */
.stats-bar { background: var(); border-top: 1px solid var(--border-b); border-bottom: 1px solid var(--border-b); padding: 0 5vw; }
.stats-inner { display: grid; grid-template-columns: repeat(4, 1fr); max-width: 1100px; margin: 0 auto; }
.stat { padding: 30px 24px; border-right: 1px solid var(--border-b); }
.stat:first-child { padding-left: 0; }
.stat:last-child { border-right: none; }
.stat-num { font-family: 'Barlow Condensed', sans-serif; font-size: 40px; font-weight: 800; color: #fff; line-height: 1; margin-bottom: 4px; }
.stat-label { font-size: 12px; color: rgba(255,255,255,0.5); letter-spacing: 0.06em; text-transform: uppercase; }

/* ── CONTACT STRIP ── */
.contact-strip { background: var(--blue); padding: 64px 5vw; }
.contact-inner { max-width: 1100px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap; }
.contact-strip h2 { color: #fff; margin-bottom: 6px; }
.contact-strip p { color: rgba(255,255,255,0.7); font-size: 15px; margin-bottom: 0; }
.btn-white {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  text-decoration: none; display: inline-block;
  padding: 13px 36px;
  background: #fff; color: var(--blue);
  border-radius: 2px; white-space: nowrap;
  transition: background 0.2s, transform 0.15s;
}
.btn-white:hover { background: var(--white); transform: translateY(-2px); }

/* ── FOOTER ── */
footer {
  background: var(--black);
  border-top: 1px solid var(--border);
  padding: 48px 5vw 28px;
}
.footer-top { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 48px; margin-bottom: 40px; }
.footer-logo { font-family: 'Barlow Condensed', sans-serif; font-weight: 800; font-size: 19px; letter-spacing: 0.06em; text-transform: uppercase; text-decoration: none; color: var(--white); display: inline-block; margin-bottom: 12px; }
.footer-logo span { color: var(--blue-lt); }
.footer-tagline { font-size: 14px; color: var(--muted); line-height: 1.6; }
.footer-col h4 { font-family: 'Barlow Condensed', sans-serif; font-size: 13px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted); margin-bottom: 16px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a { font-size: 14px; color: rgba(240,242,245,0.55); text-decoration: none; transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--white); }
.footer-col address { font-style: normal; font-size: 14px; color: rgba(240,242,245,0.55); line-height: 1.8; }
.footer-col address a { color: var(--blue-lt); text-decoration: none; }
.footer-bottom { max-width: 1100px; margin: 0 auto; border-top: 1px solid var(--border); padding-top: 24px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-copy { font-size: 13px; color: var(--muted); }

/* ── ANIMATIONS ── */
@keyframes fadeUp { from { opacity: 0; transform: translateY(22px); } to { opacity: 1; transform: translateY(0); } }

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .nav-links {
    display: none; flex-direction: column;
    position: fixed; top: 68px; left: 0; right: 0;
    background: rgba(11,13,16,0.99);
    padding: 28px 5vw 32px; gap: 22px;
    border-bottom: 1px solid var(--border);
    z-index: 99;
  }
  .nav-links.open { display: flex; }
  .nav-links a { font-size: 16px; padding: 4px 0; }
  .hamburger { display: flex; }
  .stats-inner { grid-template-columns: 1fr 1fr; }
  .stat { border-right: none; border-bottom: 1px solid var(--border-b); }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}
