/* ── Selbst gehostete Fonts (DSGVO: kein Google-Fonts-Request) ── */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url('../assets/fonts/inter-300.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../assets/fonts/inter-400.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('../assets/fonts/inter-500.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('../assets/fonts/inter-600.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('../assets/fonts/inter-700.woff2') format('woff2');
}

:root {
  --bg-light: #E0E4E8;
  --bg-dark: #0A2F50;
  --text-on-light: #0A2F50;
  --text-on-dark: #ffffff;
  --accent: #3BE8E0;
  --accent-deep: #1ECDC8;
  --silver: #E0E4E8;
  --font-display: 'Inter', sans-serif;
  --font-body: 'Inter', sans-serif;
}

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

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

body {
  background: var(--bg-dark);
  color: var(--text-on-dark);
  font-family: var(--font-body);
  overflow-x: hidden;
}

/* ── Tastatur-Fokus & Skip-Link ── */
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 2px;
}
.skip-link {
  position: absolute;
  top: -100px;
  left: 1rem;
  z-index: 10000;
  padding: 0.75rem 1.25rem;
  background: var(--accent);
  color: var(--bg-dark);
  font-weight: 600;
  font-size: 0.85rem;
  border-radius: 0.5rem;
  text-decoration: none;
  transition: top 0.2s;
}
.skip-link:focus {
  top: 1rem;
}

/* ── Loader ── */
#loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: #06203a;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

#loader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-brand-img {
  height: 48px;
  width: auto;
  margin-bottom: 2rem;
}

.loader-track {
  width: 240px;
  height: 3px;
  background: rgba(255,255,255,0.1);
  border-radius: 2px;
  overflow: hidden;
  margin-bottom: 1rem;
}

#loader-bar {
  height: 100%;
  width: 0%;
  background: var(--accent);
  border-radius: 2px;
  transition: width 0.15s ease;
}

#loader-percent {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: rgba(255,255,255,0.4);
  font-variant-numeric: tabular-nums;
}

/* ── Header ── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1.5rem 3vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

@media (min-width: 769px) {
  .site-header {
    mix-blend-mode: difference;
  }
}

.site-header .logo {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}

.site-header .logo-img {
  height: 48px;
  width: auto;
  display: block;
}

.site-header nav {
  display: flex;
  gap: 2rem;
}

.site-header nav a {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 400;
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  transition: color 0.3s;
}

.site-header nav a:hover {
  color: #fff;
}

/* Dropdown (Leistungen → Branchen) */
.nav-dropdown {
  position: relative;
  display: inline-flex;
  align-items: center;
}
.nav-dropdown > a::after {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-left: 0.45rem;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  opacity: 0.55;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.nav-dropdown:hover > a::after,
.nav-dropdown:focus-within > a::after {
  transform: rotate(225deg) translateY(-2px);
  opacity: 1;
}
.nav-dropdown-menu {
  display: none !important;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translate(-50%, 0);
  min-width: 190px;
  padding: 0.65rem;
  background: rgba(10, 47, 80, 0.96);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(59,232,224,0.15);
  border-radius: 0.75rem;
  box-shadow: 0 16px 40px rgba(0,0,0,0.35);
  flex-direction: column;
  gap: 0.15rem;
  z-index: 250;
}
.nav-dropdown-menu::before {
  content: "";
  position: absolute;
  top: -10px;
  left: 0;
  right: 0;
  height: 14px;
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  display: flex !important;
}
.nav-dropdown-menu a {
  display: block;
  padding: 0.6rem 0.9rem;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.75);
  border-radius: 0.5rem;
  white-space: nowrap;
  transition: background 0.2s, color 0.2s;
}
.nav-dropdown-menu a:hover {
  background: rgba(59,232,224,0.1);
  color: #fff;
}

/* Mobile: Dropdown tap-to-expand */
@media (max-width: 768px) {
  /* hover/focus-within deaktivieren auf Mobile */
  .nav-dropdown:hover .nav-dropdown-menu,
  .nav-dropdown:focus-within .nav-dropdown-menu { display: none !important; }
  .site-header nav .nav-dropdown {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    gap: 0;
  }
  .site-header nav .nav-dropdown > a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
  }
  /* Pfeil-Icon für mobile Dropdown */
  .site-header nav .nav-dropdown > a::after {
    display: inline-block !important;
    content: "";
    width: 7px;
    height: 7px;
    border-right: 2px solid rgba(255,255,255,0.5);
    border-bottom: 2px solid rgba(255,255,255,0.5);
    transform: rotate(45deg);
    transition: transform 0.25s;
    margin-left: auto;
  }
  .site-header nav .nav-dropdown.open > a::after {
    transform: rotate(225deg) translateY(-2px);
  }
  /* Subitems standardmäßig versteckt */
  .site-header nav .nav-dropdown-menu {
    display: none !important;
    position: static;
    transform: none;
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 0.5rem 0 0.25rem 1rem;
    min-width: 0;
    flex-direction: column;
    gap: 0.4rem;
    width: 100%;
  }
  /* Subitems sichtbar wenn .open */
  .site-header nav .nav-dropdown.open .nav-dropdown-menu {
    display: flex !important;
  }
  .site-header nav .nav-dropdown-menu::before { display: none; }
  .site-header nav .nav-dropdown-menu a {
    display: block;
    font-size: 0.95rem;
    padding: 0.3rem 0;
    color: rgba(255,255,255,0.6);
    width: 100%;
  }
}

/* Hamburger Toggle (hidden on desktop) */
.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  cursor: pointer;
  width: 36px;
  height: 36px;
  position: relative;
  z-index: 250;
}
.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
  border-radius: 1px;
  transition: transform 0.3s, opacity 0.3s;
}
.nav-toggle span {
  position: relative;
}
.nav-toggle span::before,
.nav-toggle span::after {
  content: '';
  position: absolute;
  left: 0;
}
.nav-toggle span::before { top: -7px; }
.nav-toggle span::after  { top:  7px; }

/* Hamburger open state */
.nav-toggle.active span {
  background: transparent;
}
.nav-toggle.active span::before {
  top: 0;
  transform: rotate(45deg);
}
.nav-toggle.active span::after {
  top: 0;
  transform: rotate(-45deg);
}

/* ── Hero Section ── */
.hero-standalone {
  position: relative;
  width: 100%;
  min-height: 100svh;
  overflow: hidden;
  background-color: #0A2F50;
  display: flex;
  align-items: center;
}

/* ── Video Background ── */
.hero-video-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  z-index: 0;
  opacity: 1;
}

/* ── Gradient Overlay ── */
.hero-standalone::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(10, 47, 80, 0.85) 0%,
    rgba(10, 47, 80, 0.55) 40%,
    rgba(10, 47, 80, 0.20) 100%
  );
  z-index: 1;
  pointer-events: none;
}

/* ── Hero Content über Video ── */
.hero-standalone > div:nth-child(2) {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 120px 96px 80px 96px;
  box-sizing: border-box;
}

.hero-standalone .section-label {
  display: block;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.5rem;
}

.hero-heading {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 7vw, 7rem);
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: -0.04em;
  color: var(--text-on-dark);
  max-width: 70vw;
}

.hero-heading .word {
  display: inline-block;
  margin-right: 0.15em;
}

.hero-tagline {
  font-family: var(--font-body);
  font-size: clamp(1rem, 1.5vw, 1.3rem);
  font-weight: 300;
  color: rgba(255,255,255,0.5);
  margin-top: 2rem;
  max-width: 35vw;
  line-height: 1.6;
}

.scroll-indicator {
  position: absolute;
  bottom: 3rem;
  left: 5vw;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: rgba(255,255,255,0.55);
  font-size: 0.75rem;
  font-family: var(--font-body);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.scroll-indicator .arrow {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.3);
  position: relative;
  overflow: hidden;
}

.scroll-indicator .arrow::after {
  content: '';
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--accent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0% { top: -100%; }
  50% { top: 100%; }
  100% { top: 100%; }
}

/* Hero CTA button spacing */
.hero-cta {
  margin-top: 2rem;
  display: inline-flex;
  width: auto;
  max-width: fit-content;
}

/* ── Marquee ── */
.marquee-wrap {
  position: fixed;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  z-index: 3;
  width: 100vw;
  overflow: visible;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s ease;
}

.marquee-text {
  font-family: var(--font-display);
  font-size: 12vw;
  font-weight: 700;
  color: rgba(255,255,255,0.06);
  white-space: nowrap;
  letter-spacing: -0.03em;
  user-select: none;
}

/* ── Puzzle Video Section ── */
.puzzle-video-section {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  background: #122f4a;
  overflow: hidden;
}

.puzzle-video {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  object-fit: cover;
}

.puzzle-video-text {
  position: relative;
  z-index: 2;
  text-align: center;
}

.puzzle-video-title {
  font-family: 'Inter', sans-serif;
  font-size: clamp(1.2rem, 3vw, 2rem);
  font-weight: 300;
  color: #E0E4E8;
  letter-spacing: 0.05em;
  margin-bottom: 2rem;
}

.puzzle-video-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
}

.puzzle-video-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(16px);
  border: 1px solid var(--accent);
  border-radius: 12px;
  padding: 1.5rem 2.5rem;
  box-shadow: 0 0 20px rgba(63, 232, 220, 0.25), 0 4px 24px rgba(0, 0, 0, 0.5);
}

.puzzle-video-stat strong {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--accent);
  font-weight: 700;
}

.puzzle-video-stat em {
  font-style: normal;
  font-size: 0.9rem;
  color: #fff;
  font-weight: 400;
}

.puzzle-video-divider {
  display: none;
}


/* ── Facts Section ── */
.facts-section {
  position: relative;
  z-index: 10;
  background: #0c2640;
  padding: 5rem 5vw;
}

.facts-section::before {
  content: '';
  position: absolute;
  bottom: 100%;
  left: 0;
  right: 0;
  height: 80vh;
  background: linear-gradient(to bottom, transparent, #0c2640);
  pointer-events: none;
  z-index: 10;
}

.facts-inner {
  max-width: 900px;
  margin: 0 auto;
}

.facts-title {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 2rem;
}

.facts-kpi-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-bottom: 2rem;
}

.facts-kpi {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.facts-kpi-value {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 700;
  color: #3FE8DC;
  line-height: 1.1;
}

.facts-kpi-sub {
  font-size: 0.8rem;
  font-weight: 500;
  color: rgba(255,255,255,0.6);
}

.facts-kpi-source {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.55);
}

.facts-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(63, 232, 220, 0.2), transparent);
  margin: 2.5rem 0;
}

.facts-subtitle {
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 1.5rem;
}

.facts-bars {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.facts-bar-row {
  display: grid;
  grid-template-columns: 220px 1fr 50px;
  align-items: center;
  gap: 1rem;
}

.facts-bar-label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.7);
  text-align: right;
}

.facts-bar-track {
  height: 26px;
  background: rgba(255,255,255,0.06);
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid rgba(63, 232, 220, 0.1);
}

.facts-bar-fill {
  height: 100%;
  border-radius: 6px;
  width: 0;
  background: linear-gradient(90deg, #1CDCB6, #3FE8DC);
  box-shadow: 0 0 12px rgba(63, 232, 220, 0.35), inset 0 1px 0 rgba(255,255,255,0.15);
  transition: width 1.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
}

.facts-bar-fill::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 50%;
  background: linear-gradient(180deg, rgba(255,255,255,0.2), transparent);
  border-radius: 6px 6px 0 0;
}

.facts-bar-value {
  font-size: 0.85rem;
  font-weight: 700;
  color: #3FE8DC;
}

.facts-growth-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-bottom: 1.5rem;
}

.facts-growth {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.2rem;
}

.facts-growth-label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
}

.facts-growth-value {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 700;
  color: #3FE8DC;
  line-height: 1.1;
}

.facts-growth-sub {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.55);
}

.facts-source {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.5);
  text-align: center;
}

.facts-fazit {
  background: rgba(255,255,255,0.04);
  border-left: 3px solid var(--accent);
  padding: 1.5rem 2rem;
  border-radius: 0 0.5rem 0.5rem 0;
}

.facts-fazit p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.75);
}

.facts-fazit strong {
  color: var(--accent);
  font-weight: 600;
}

/* ── Contact Section ── */
.contact-section {
  position: relative;
  z-index: 10;
  background: #0c2640;
  padding: 6rem 5vw;
  border-top: 1px solid rgba(59, 232, 224, 0.1);
}

.contact-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 8rem;
  background: linear-gradient(180deg, #0A2F50 0%, #0c2640 100%);
}

.contact-inner {
  max-width: 900px;
  margin: 0 auto;
}

.contact-profile {
  display: flex;
  gap: 3rem;
  align-items: flex-start;
}

.contact-photo-wrap {
  flex-shrink: 0;
  width: 220px;
  height: 220px;
  border-radius: 16px;
  overflow: hidden;
  border: 2px solid rgba(59, 232, 224, 0.2);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3), 0 0 24px rgba(59, 232, 224, 0.1);
}

.contact-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.contact-info {
  flex: 1;
}

.contact-name {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 0.3rem;
}

.contact-role {
  font-size: 1rem;
  font-weight: 500;
  color: var(--accent);
  margin-bottom: 1.25rem;
}

.contact-bio {
  font-size: 0.9rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 1.5rem;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-bottom: 1.5rem;
}

.contact-detail {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
}

.contact-detail svg {
  color: var(--accent);
  flex-shrink: 0;
}

.contact-detail a {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  transition: color 0.2s;
}

.contact-detail a:hover {
  color: var(--accent);
}

.contact-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.contact-tag {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--accent);
  background: rgba(59, 232, 224, 0.08);
  border: 1px solid rgba(59, 232, 224, 0.15);
  padding: 0.35rem 0.85rem;
  border-radius: 50px;
}

@media (max-width: 768px) {
  .contact-profile {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 2rem;
  }

  .contact-photo-wrap {
    width: 160px;
    height: 160px;
  }

  .contact-details {
    align-items: center;
  }

  .contact-tags {
    justify-content: center;
  }
}

/* ── Footer ── */
.site-footer {
  position: relative;
  z-index: 10;
  background: #06203a;
  color: #fff;
  border-top: 1px solid rgba(59,232,224,0.1);
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding: 4rem 5vw 3rem;
}

.footer-logo {
  height: 36px;
  width: auto;
  margin-bottom: 1rem;
}

.footer-tagline {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
  line-height: 1.5;
}

.footer-nav-title {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}

.footer-nav,
.footer-legal,
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-nav a,
.footer-legal a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-nav a:hover,
.footer-legal a:hover {
  color: var(--accent);
}

.footer-contact p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.5;
}

.footer-bottom {
  padding: 1.5rem 5vw;
  border-top: 1px solid rgba(255,255,255,0.06);
  font-size: 0.72rem;
  color: rgba(255,255,255,0.5);
}

.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-top: 2rem;
  padding: 0.85rem 1.8rem;
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 600;
  color: #0A2F50;
  background: var(--accent);
  border: none;
  border-radius: 60px;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  pointer-events: auto;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(59,232,224,0.3);
}

.cta-button .arrow-icon {
  transition: transform 0.3s ease;
}

.cta-button:hover .arrow-icon {
  transform: translateX(4px);
}

/* ── Mobile ── */
@media (max-width: 768px) {
  .hero-standalone {
    flex-direction: column;
    min-height: auto;
  }

  /* Hero ist auf Mobile nicht bildschirmfüllend — Indikator würde den CTA überlappen */
  .scroll-indicator {
    display: none;
  }

  /* Video oben sichtbar */
  .hero-video-bg {
    position: relative;
    width: 100%;
    height: 55vw;             /* 16:9 Verhältnis passend zur Breite */
    object-fit: cover;
    object-position: center center;
    background-color: #0A2F50;
    flex-shrink: 0;
  }

  /* Overlay nur über den Text-Bereich, nicht über das Video */
  .hero-standalone::before {
    display: none;
  }

  /* Text unter dem Video */
  .hero-standalone > div:nth-child(2) {
    padding: 2rem 24px 60px 24px;
    background: linear-gradient(180deg, #0A2F50 0%, #061828 100%);
  }

  .hero-heading {
    max-width: 90vw;
  }

  .hero-tagline {
    max-width: 100%;
  }

  .puzzle-video-section {
    min-height: 0;
    height: 45vh;
    padding: 0;
  }

  .puzzle-video {
    object-fit: cover;
    object-position: center 30%;
  }

  .facts-section::before {
    height: 0;
    display: none;
  }

  .puzzle-video-stats {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
  }

  .puzzle-video-stat {
    padding: 0.8rem 1.2rem;
  }

  .puzzle-video-stat strong {
    font-size: 1.1rem;
  }

  .puzzle-video-stat em {
    font-size: 0.75rem;
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

  /* Mobile Header */
  .site-header {
    padding: 0.5rem 1rem;
  }

  .site-header .logo-img {
    height: 36px;
  }

  /* Mobile Nav Toggle */
  .nav-toggle {
    display: flex !important;
  }

  .site-header nav {
    position: fixed;
    top: 0;
    right: 0;
    width: 70vw;
    max-width: 280px;
    height: 100vh;
    background: rgba(6, 32, 58, 0.97);
    backdrop-filter: blur(12px);
    flex-direction: column;
    padding: 5rem 2rem 2rem;
    gap: 1.5rem;
    transform: translateX(100%);
    transition: transform 0.35s ease;
    z-index: 200;
    mix-blend-mode: normal;
  }

  .site-header nav.open {
    transform: translateX(0);
  }

  .site-header nav a {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.8);
  }

  .nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 150;
  }

  .nav-overlay.visible {
    display: block;
  }

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

  .facts-bar-row {
    grid-template-columns: 1fr;
    gap: 0.3rem;
  }

  .facts-bar-label {
    text-align: left;
  }

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

/* ── Sehr kleine Screens ── */
@media (max-width: 480px) {
  .hero-standalone > div:nth-child(2) {
    padding: 1.5rem 20px 50px 20px;
  }
}
