/* ═══════════════════════════════════════════
   HAMBURGKI — Design System
   ═══════════════════════════════════════════ */

:root {
  /* Backgrounds */
  --bg: #050505;
  --surface: #111111;
  --surface-2: #1a1a1a;
  --border: rgba(255, 255, 255, 0.08);
  --border-hover: rgba(255, 255, 255, 0.18);

  /* Text */
  --text-primary: #f8f7f4;
  --text-primary-hover: #e8e7e4;
  --text-secondary: rgba(248, 247, 244, 0.65);
  --text-muted: rgba(248, 247, 244, 0.35);

  /* Accent */
  --accent-blue: #2b5ce6;
  --accent-light: #93c5fd;
  --accent-gold: #f5a623;
  --accent-gold-2: #92400e;

  /* Typography */
  --font-body: "Inter", system-ui, -apple-system, sans-serif;
  --font-serif: "DM Serif Display", Georgia, serif;

  /* Layout */
  --container: 1160px;
  --section-v: 128px;
  --section-v-mob: 80px;

  /* Radii */
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.3), 0 1px 8px rgba(0, 0, 0, 0.2);
  --shadow-md: 0 2px 8px rgba(0, 0, 0, 0.4), 0 8px 24px rgba(0, 0, 0, 0.3);
  --shadow-lg: 0 4px 16px rgba(0, 0, 0, 0.5), 0 16px 48px rgba(0, 0, 0, 0.4);
}

/* ─── Reset & Base ─── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.7;
  color: var(--text-primary);
  background: var(--bg);
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}
a {
  color: inherit;
  text-decoration: none;
}
ul {
  list-style: none;
}
button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}
input,
textarea,
select {
  font-family: inherit;
  font-size: inherit;
}

/* ─── Container ─── */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
}

/* ─── Typography ─── */
h1,
h2,
h3,
h4 {
  font-family: var(--font-body);
  color: var(--text-primary);
  letter-spacing: -0.03em;
  line-height: 1.05;
}
h1 {
  font-size: clamp(40px, 5.5vw, 72px);
  font-weight: 800;
}
h2 {
  font-size: clamp(30px, 3.8vw, 48px);
  font-weight: 800;
}
h3 {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.02em;
}
h4 {
  font-size: 15px;
  font-weight: 600;
}

h1 em,
h2 em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  color: var(--accent-light);
  letter-spacing: -0.01em;
}

/* ─── Section Utilities ─── */
.section-kicker {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.section-header {
  max-width: 640px;
  margin-bottom: 72px;
}
.section-header h2 {
  margin-bottom: 16px;
}
.section-sub {
  font-size: 18px;
  color: var(--text-secondary);
  line-height: 1.65;
  max-width: 520px;
}

/* ─── Blob Base ─── */
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.55;
  pointer-events: none;
  will-change: transform;
  transform: translateZ(0);
  backface-visibility: hidden;
}

/* ─── Buttons ─── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 26px;
  font-size: 15px;
  font-weight: 600;
  border-radius: var(--radius-md);
  transition:
    background-color 0.2s ease,
    color 0.2s ease,
    border-color 0.2s ease,
    transform 0.2s ease,
    box-shadow 0.2s ease;
  white-space: nowrap;
  cursor: pointer;
}
.btn-primary {
  background: var(--text-primary);
  color: var(--bg);
  border: 1.5px solid var(--text-primary);
}
.btn-primary:hover {
  background: var(--text-primary-hover);
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(248, 247, 244, 0.15);
}
.btn-ghost {
  background: transparent;
  color: var(--text-secondary);
  border: 1.5px solid var(--border-hover);
}
.btn-ghost:hover {
  border-color: rgba(255, 255, 255, 0.35);
  color: var(--text-primary);
}

/* ─── Reveal class (GSAP initial state) ─── */
.reveal {
  opacity: 0;
}

/* ═══════════════════════════════════════════
   NAVIGATION
   ═══════════════════════════════════════════ */
.nav-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  border-bottom: 1px solid transparent;
  transition:
    background 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}
.nav-wrapper.scrolled {
  background: rgba(5, 5, 5, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom-color: var(--border);
  box-shadow: var(--shadow-sm);
}
.nav-inner {
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -0.02em;
  flex-shrink: 0;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}
.nav-links li a {
  font-size: 14.5px;
  font-weight: 500;
  color: var(--text-secondary);
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  transition:
    color 0.15s ease,
    background 0.15s ease;
}
.nav-links li a:hover {
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.05);
}
.nav-links .nav-cta {
  background: var(--text-primary) !important;
  color: var(--bg) !important;
  padding: 9px 18px;
  border-radius: var(--radius-md);
  font-weight: 600;
  margin-left: 8px;
}
.nav-links .nav-cta:hover {
  background: var(--text-primary-hover) !important;
  transform: translateY(-1px);
}
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  border-radius: var(--radius-sm);
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition:
    transform 0.22s ease,
    opacity 0.22s ease;
}
.nav-toggle.is-open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.nav-toggle.is-open span:nth-child(2) {
  opacity: 0;
  transform: translateX(-6px);
}
.nav-toggle.is-open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ═══════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 32px 80px;
  overflow: hidden;
}

/* Ada Zielinska Blobs */
.hero-blobs {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.hero-blob-1 {
  width: 480px;
  height: 480px;
  background: #1a3a8f;
  bottom: -160px;
  right: -100px;
  opacity: 0; /* GSAP animates in */
}
.hero-blob-2 {
  width: 320px;
  height: 320px;
  background: #2b5ce6;
  top: -80px;
  right: 80px;
  opacity: 0;
}
.hero-blob-3 {
  width: 200px;
  height: 200px;
  background: #f5a623;
  bottom: -80px;
  left: -40px;
  opacity: 0;
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 800px;
}

.hero-label {
  margin-bottom: 24px;
  opacity: 0; /* GSAP */
}

.hero-headline {
  margin-bottom: 24px;
  opacity: 0; /* GSAP */
}

.hero-sub {
  font-size: 19px;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 40px;
  max-width: 520px;
  opacity: 0; /* GSAP */
}

.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
  opacity: 0; /* GSAP */
}

.scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--text-muted);
  opacity: 0; /* GSAP */
  animation: bounce 2s ease-in-out infinite;
}
@keyframes bounce {
  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(6px);
  }
}

/* ═══════════════════════════════════════════
   FACTS STRIP
   ═══════════════════════════════════════════ */
.facts {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 56px 0;
}
.facts-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
.fact-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 16px 48px;
  flex: 1;
  min-width: 180px;
}
.fact-value {
  display: inline-flex;
  align-items: baseline;
  gap: 4px;
}
.fact-num {
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--text-primary);
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.fact-unit {
  font-size: clamp(22px, 2.6vw, 34px);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--accent-light);
  line-height: 1;
}
.fact-label {
  font-size: 15px;
  color: var(--text-secondary);
  margin-top: 14px;
  line-height: 1.5;
  max-width: 220px;
}
.fact-label strong {
  color: var(--text-secondary);
}
.fact-divider {
  width: 1px;
  height: 48px;
  background: var(--border);
  flex-shrink: 0;
}

/* ═══════════════════════════════════════════
   LEISTUNGEN (FEATURE GRID)
   ═══════════════════════════════════════════ */
.leistungen {
  padding: var(--section-v) 0;
}

.leistungen-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.leistung-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition:
    border-color 0.2s ease,
    transform 0.2s ease;
}
.leistung-card:hover {
  border-color: rgba(147, 197, 253, 0.3);
  transform: translateY(-2px);
}
.leistung-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: rgba(43, 92, 230, 0.15);
  color: var(--accent-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.leistung-card h3 {
  font-size: 17px;
  margin-bottom: 10px;
}
.leistung-card p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 18px;
}
.leistung-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent-light);
  background: rgba(147, 197, 253, 0.1);
  border: 1px solid rgba(147, 197, 253, 0.2);
  border-radius: 100px;
  padding: 4px 12px;
}

/* ═══════════════════════════════════════════
   SCROLL JOURNEY
   ═══════════════════════════════════════════ */
.journey-wrapper {
  min-height: 300vh;
  position: relative;
}
.journey-pin {
  /* GSAP pins this element */
}
.journey-inner {
  display: grid;
  grid-template-columns: 45% 55%;
  align-items: center;
  min-height: 100vh;
  padding: 80px 32px;
  gap: 60px;
}

/* Left: step text */
.journey-left {
  position: relative;
}
.journey-step {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0;
  pointer-events: none;
  width: 100%;
}
.journey-step[data-step="0"] {
  position: relative;
  transform: none;
  top: auto;
  opacity: 1;
  pointer-events: auto;
}
.journey-num {
  font-size: 88px;
  font-weight: 800;
  letter-spacing: -0.05em;
  color: rgba(147, 197, 253, 0.1);
  line-height: 1;
  margin-bottom: -16px;
}
.journey-step h2 {
  font-size: clamp(28px, 3.5vw, 44px);
  margin-bottom: 20px;
}
.journey-step p {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 380px;
}
.journey-dots {
  display: flex;
  gap: 8px;
  margin-top: 40px;
}
.journey-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  transition:
    background-color 0.3s ease,
    transform 0.3s ease;
}
.journey-dot.active {
  background: var(--accent-light);
  transform: scale(1.3);
}

/* Right: panels */
.journey-right {
  position: relative;
  height: 420px;
}
.journey-panel {
  position: absolute;
  inset: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  background: var(--surface);
}
.journey-panel[data-panel="0"] {
  opacity: 1;
}
.journey-blob-1 {
  width: 280px;
  height: 280px;
  background: #1a3a8f;
  bottom: -100px;
  right: -60px;
}
.journey-blob-2 {
  width: 160px;
  height: 160px;
  background: #f5a623;
  top: -60px;
  left: -30px;
  opacity: 0.35;
}
.journey-checklist {
  position: relative;
  z-index: 2;
  list-style: none;
  padding: 32px;
  width: 100%;
}
.journey-checklist li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
  color: var(--text-secondary);
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
}
.journey-checklist li:last-child {
  border-bottom: none;
}
.check {
  color: var(--accent-light);
  font-weight: 700;
  flex-shrink: 0;
}

/* ═══════════════════════════════════════════
   EINSATZFELDER
   ═══════════════════════════════════════════ */
.einsatzfelder {
  padding: var(--section-v) 0;
}
.einsatz-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.einsatz-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  position: relative;
  overflow: hidden;
  transition:
    border-color 0.2s ease,
    transform 0.2s ease;
}
.einsatz-card:hover {
  border-color: rgba(147, 197, 253, 0.25);
  transform: translateY(-2px);
}
.einsatz-glow {
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(43, 92, 230, 0.25) 0%,
    transparent 70%
  );
  bottom: -80px;
  right: -60px;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}
.einsatz-card:hover .einsatz-glow {
  opacity: 1;
}
.einsatz-icon {
  font-size: 32px;
  margin-bottom: 16px;
}
.einsatz-card h3 {
  font-size: 17px;
  margin-bottom: 14px;
}
.einsatz-list {
  list-style: none;
}
.einsatz-list li {
  font-size: 14px;
  color: var(--text-secondary);
  padding: 6px 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 8px;
  line-height: 1.4;
}
.einsatz-list li::before {
  content: "→";
  color: var(--accent-light);
  font-size: 12px;
  flex-shrink: 0;
}
.einsatz-list li:last-child {
  border-bottom: none;
}

/* ═══════════════════════════════════════════
   FAQ
   ═══════════════════════════════════════════ */
.faq {
  padding: var(--section-v) 0;
  background: var(--surface);
  border-top: 1px solid var(--border);
}
.faq-list {
  max-width: 760px;
}
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 0;
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary);
  text-align: left;
  cursor: pointer;
  background: none;
  border: none;
  font-family: var(--font-body);
  transition: color 0.15s ease;
}
.faq-q:hover {
  color: var(--accent-light);
}
.faq-arrow {
  flex-shrink: 0;
  color: var(--text-muted);
  transition: transform 0.25s ease;
}
.faq-item.is-open .faq-arrow {
  transform: rotate(180deg);
}
.faq-item.is-open .faq-q {
  color: var(--accent-light);
}
.faq-a {
  overflow: hidden;
  height: 0;
}
.faq-a p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.75;
  padding-bottom: 22px;
}

/* ═══════════════════════════════════════════
   CTA DARK
   ═══════════════════════════════════════════ */
.cta-dark {
  background: #000;
  padding: var(--section-v) 0;
  position: relative;
  overflow: hidden;
  text-align: center;
  border-top: 1px solid var(--border);
}
.cta-blob-1 {
  width: 400px;
  height: 400px;
  background: #f5a623;
  bottom: -200px;
  right: -100px;
  opacity: 0.18;
}
.cta-blob-2 {
  width: 260px;
  height: 260px;
  background: #1a3a8f;
  top: -80px;
  left: -60px;
  opacity: 0.4;
}
.cta-dark-inner {
  position: relative;
  z-index: 2;
  max-width: 600px;
  margin: 0 auto;
}
.cta-dark-inner .section-kicker {
  margin-bottom: 20px;
}
.cta-dark-inner h2 {
  margin-bottom: 20px;
}
.cta-sub {
  font-size: 17px;
  color: var(--text-secondary);
  margin-bottom: 36px;
}

/* ═══════════════════════════════════════════
   KONTAKT
   ═══════════════════════════════════════════ */
.kontakt {
  padding: var(--section-v) 0;
}
.kontakt-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}
.kontakt-info h2 {
  margin-bottom: 16px;
}
.kontakt-sub {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 28px;
  max-width: 380px;
}
.kontakt-email {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  font-weight: 600;
  color: var(--accent-light);
  border-bottom: 1px solid rgba(147, 197, 253, 0.3);
  padding-bottom: 2px;
  transition: border-color 0.2s ease;
}
.kontakt-email:hover {
  border-color: var(--accent-light);
}

.kontakt-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.form-group label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.04em;
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  font-size: 15px;
  color: var(--text-primary);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  outline: none;
  font-family: var(--font-body);
  transition:
    border-color 0.15s ease,
    box-shadow 0.15s ease;
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-muted);
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: rgba(147, 197, 253, 0.5);
  box-shadow: 0 0 0 3px rgba(147, 197, 253, 0.08);
}
.form-group textarea {
  resize: vertical;
  min-height: 110px;
}
.btn-full {
  width: 100%;
}
.form-note {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.55;
  text-align: center;
}
.form-note a {
  color: var(--accent-light);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* ═══════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════ */
.footer {
  background: #000;
  border-top: 1px solid var(--border);
  padding: 28px 0;
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-logo span {
  font-size: 13px;
  color: var(--text-muted);
}
.footer-logo svg {
  opacity: 0.7;
}
.footer-copy {
  font-size: 13px;
  color: var(--text-muted);
}
.footer-links {
  display: flex;
  gap: 20px;
}
.footer-links a {
  font-size: 13px;
  color: var(--text-muted);
  transition: color 0.15s ease;
}
.footer-links a:hover {
  color: var(--text-primary);
}

/* ═══════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════ */

/* Tablet → 1024px */
@media (max-width: 1024px) {
  :root {
    --section-v: 96px;
  }

  .leistungen-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .einsatz-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .journey-wrapper {
    min-height: 0;
  }
  .journey-inner {
    display: flex;
    flex-direction: column;
    gap: 24px;
    min-height: auto;
    padding: 60px 32px;
  }
  .journey-left,
  .journey-right {
    display: contents;
  }
  .journey-step {
    position: relative;
    top: auto;
    transform: none;
    opacity: 1;
    pointer-events: auto;
    width: 100%;
  }
  .journey-step[data-step="0"] {
    order: 0;
  }
  .journey-panel[data-panel="0"] {
    order: 1;
  }
  .journey-step[data-step="1"] {
    order: 2;
  }
  .journey-panel[data-panel="1"] {
    order: 3;
  }
  .journey-step[data-step="2"] {
    order: 4;
  }
  .journey-panel[data-panel="2"] {
    order: 5;
  }
  .journey-panel {
    position: relative;
    inset: auto;
    opacity: 1;
    height: 280px;
    margin-bottom: 16px;
  }
  .journey-dots {
    display: none;
  }
  .journey-num {
    font-size: 64px;
    margin-bottom: -8px;
  }

  .kontakt-inner {
    grid-template-columns: 1fr;
    gap: 52px;
  }
}

/* Mobile → 768px */
@media (max-width: 768px) {
  :root {
    --section-v: var(--section-v-mob);
  }
  .container {
    padding: 0 20px;
  }

  /* Mobile Nav */
  .nav-links {
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    background: rgba(5, 5, 5, 0.97);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    padding: 16px 20px 28px;
    gap: 4px;
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition:
      transform 0.22s ease,
      opacity 0.22s ease;
  }
  .nav-links.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }
  .nav-links li {
    width: 100%;
  }
  .nav-links li a {
    display: block;
    width: 100%;
    padding: 12px 14px;
  }
  .nav-links .nav-cta {
    margin-left: 0;
    text-align: center;
  }
  .nav-toggle {
    display: flex;
  }

  .hero {
    padding-top: 100px;
  }
  .hero-ctas {
    flex-direction: column;
    width: 100%;
    max-width: 320px;
  }
  .hero-ctas .btn {
    width: 100%;
    justify-content: center;
  }

  .facts-inner {
    flex-direction: column;
    gap: 0;
  }
  .fact-item {
    padding: 20px 28px;
    min-width: auto;
  }
  .fact-divider {
    width: 100%;
    height: 1px;
  }

  .leistungen-grid {
    grid-template-columns: 1fr;
  }
  .einsatz-grid {
    grid-template-columns: 1fr;
  }

  .journey-panel {
    height: 240px;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
}

/* Small Mobile → 480px */
@media (max-width: 480px) {
  h1 {
    font-size: clamp(34px, 10vw, 44px);
  }
  h2 {
    font-size: clamp(26px, 8vw, 36px);
  }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .reveal {
    opacity: 1 !important;
    transform: none !important;
  }
  .hero-label,
  .hero-headline,
  .hero-sub,
  .hero-ctas,
  .scroll-indicator,
  .hero-blob-1,
  .hero-blob-2,
  .hero-blob-3 {
    opacity: 1 !important;
  }
}

/* Focus styles */
:focus-visible {
  outline: 2px solid var(--accent-light);
  outline-offset: 3px;
  border-radius: 4px;
}

/* Legal pages (Impressum / Datenschutz) */
.legal-page {
  padding: 140px 0 96px;
  background: var(--bg);
}
.legal-content {
  max-width: 760px;
}
.legal-content h1 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  margin: 12px 0 40px;
  line-height: 1.1;
}
.legal-content h2 {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-primary);
  margin: 40px 0 12px;
  letter-spacing: -0.01em;
}
.legal-content p {
  color: var(--text-secondary);
  font-size: 0.975rem;
  line-height: 1.7;
  margin-bottom: 14px;
}
.legal-content a {
  color: var(--accent-light);
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color 0.15s ease;
}
.legal-content a:hover {
  color: var(--text-primary);
}
.legal-list {
  list-style: disc;
  padding-left: 22px;
  margin: 6px 0 18px;
  color: var(--text-secondary);
  font-size: 0.975rem;
  line-height: 1.7;
}
.legal-list li {
  margin-bottom: 6px;
}
@media (max-width: 640px) {
  .legal-page {
    padding: 110px 0 72px;
  }
}
