:root {
  --brand-blue: #0972B6;
  --brand-blue-dark: #075C90;
  --ink: #0b1622;
  --edge-gap: clamp(16px, 4vw, 2cm);
  --edge-gap-scrolled: clamp(12px, 2vw, 0.6cm);
}

.bg-video-wrap {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 0;
  overflow: hidden;
  background: var(--ink);
  transition: opacity 0.4s ease;
}

body.scrolled .bg-video-wrap {
  opacity: 0;
  pointer-events: none;
}

.bg-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(6px) brightness(0.55);
  transform: scale(1.08);
}

* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  font-family: 'Josefin Sans', Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: #ffffff;
}

body.loading {
  overflow: hidden;
}

.loader-overlay {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: #0b1622;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s ease;
}

.loader-overlay.hide {
  opacity: 0;
  pointer-events: none;
}

.wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.stage {
  position: relative;
  width: 520px;
  height: 340px;
  max-width: 92vw;
}

.arrow-logo {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 260.9px;
  height: 260.0px;
  transform: translate(calc(-50% + 71.6px), -50%);
  animation: spin 0.5s linear 1 forwards;
}

.full-logo {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 432.4px;
  height: 260.0px;
  opacity: 0;
  transform: translate(-50%, -50%);
  animation: fadeInLogo 0.5s ease-out 0.525s forwards;
}

.tagline {
  margin-top: 4px;
  font-weight: 300;
  font-size: 19px;
  letter-spacing: 3px;
  color: #ffffff;
  text-transform: uppercase;
  text-align: center;
}

@keyframes spin {
  from { transform: translate(calc(-50% + 71.6px), -50%) rotate(0deg); }
  to   { transform: translate(calc(-50% + 71.6px), -50%) rotate(-360deg); }
}

@keyframes fadeInLogo {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--edge-gap);
  background: transparent;
  transition: padding 0.4s ease, background 0.4s ease;
}

.site-header.scrolled {
  padding-top: 18px;
  padding-bottom: 18px;
  padding-left: var(--edge-gap-scrolled);
  padding-right: var(--edge-gap-scrolled);
  background: var(--brand-blue);
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo {
  display: flex;
  align-items: center;
  position: relative;
  height: 34px;
}

.logo-full {
  height: 34px;
  width: auto;
  object-fit: contain;
  transform-origin: left center;
}

/* Ganz oben: bisheriges Logo gross */
.logo-default {
  transform: scale(2.1);
  opacity: 1;
  transition: opacity 0.2s ease, transform 0.35s ease;
}

/* SW-Logo liegt exakt an derselben Position */
.logo-scrolled {
  position: absolute;
  left: 0;
  top: 0;
  transform: scale(1.15);
  opacity: 0;
  transition: opacity 0.2s ease;
}

/* Sobald der blaue Header erscheint */
.site-header.scrolled .logo-default {
  opacity: 0;
}

.site-header.scrolled .logo-scrolled {
  opacity: 1;
}

/* ===================== SCROLL-BALKEN (ERSCHEINT BEIM HOCHSCROLLEN) =====================
   Eigenständiger Balken, der nur unterhalb des Hero-Bereichs aktiv wird
   (sobald body.scrolled gesetzt ist). Im Hero selbst bleibt der bestehende
   .site-header mit seiner Video-/Logo-Animation unverändert zuständig. */

.float-header {
  background: var(--ink);
  padding: 18px var(--edge-gap);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  transform: translateY(-100%);
  transition: transform 0.35s ease;
}

.float-header.header-visible {
  transform: translateY(0);
}

.float-header-inner {
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.float-header-logo {
  display: inline-block;
  line-height: 0;
}

.float-header-logo img {
  height: 30px;
  width: auto;
  display: block;
}

.menu-toggle {
  width: 32px;
  height: 22px;
  background: none;
  border: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background: #ffffff;
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.menu-toggle.active span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

main {
  position: relative;
  z-index: 1;
}

.hero {
  position: relative;
  padding: 0 var(--edge-gap);
  transition: padding 0.4s ease;
}

body.scrolled .hero {
  padding: 0;
}

.hero-box {
  position: relative;
  z-index: 1;
  min-height: calc(100vh - var(--header-h, 140px));
  display: flex;
  align-items: center;
  background: var(--brand-blue);
}

body.scrolled .hero-box {
  background: var(--brand-blue-dark);
}

.hero-content {
  padding: 0 40px 60px;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.hero-title-wrap,
.hero-subtitle-wrap {
  position: relative;
  display: inline-block;
}

.hero-title {
  position: relative;
  color: transparent;
  font-weight: 700;
  font-size: clamp(34px, 9vw, 150px);
  letter-spacing: 0.01em;
  line-height: 1.05;
  margin: 0;
  text-align: left;
  white-space: nowrap;
  opacity: 1;
  transition: opacity 0.35s ease;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

.hero-title.fade {
  opacity: 0;
}

.hero-title-video,
.hero-subtitle-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
}

body.scrolled .hero-title-video,
body.scrolled .hero-subtitle-video {
  display: none;
}

body.scrolled .hero-title {
  color: #ffffff;
}

.hero-subtitle {
  color: #ffffff;
  opacity: 0.85;
  font-weight: 400;
  font-size: 28px;
  letter-spacing: 0.5px;
  margin: 0;
  text-align: left;
}

.scroll-indicator {
  position: absolute;
  right: 40px;
  bottom: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  opacity: 0.8;
  transition: opacity 0.4s ease;
}

body.scrolled .scroll-indicator {
  opacity: 0;
  pointer-events: none;
}

.scroll-text {
  writing-mode: vertical-rl;
  color: #ffffff;
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.scroll-line {
  width: 1px;
  height: 60px;
  background: rgba(255, 255, 255, 0.4);
  position: relative;
  overflow: hidden;
}

.scroll-line::after {
  content: '';
  position: absolute;
  top: -60px;
  left: 0;
  width: 100%;
  height: 60px;
  background: #ffffff;
  animation: scrollLineMove 1.8s ease-in-out infinite;
}

@keyframes scrollLineMove {
  0%   { top: -60px; }
  100% { top: 60px; }
}

.intro {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 60px;
  padding: 120px var(--edge-gap) 40px;
  max-width: 1300px;
  margin: 0 auto;
}

.intro-left {
  opacity: 0;
  transform: translateX(-160px);
  transition: opacity 1.1s ease, transform 1.1s ease;
}

.intro-right {
  opacity: 0;
  transform: translateX(160px);
  transition: opacity 1.1s ease, transform 1.1s ease;
}

.intro.in-view .intro-left,
.intro.in-view .intro-right {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .intro-left,
  .intro-right {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

.intro-eyebrow {
  display: block;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 13px;
  font-weight: 600;
  color: var(--brand-blue);
  margin-bottom: 16px;
}

.intro-title {
  font-size: clamp(28px, 3.5vw, 46px);
  font-weight: 700;
  color: #000000;
  line-height: 1.25;
  margin: 0;
}

.intro-right {
  border-left: 2px solid var(--brand-blue);
  padding-left: 30px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.intro-text {
  font-size: 17px;
  line-height: 1.8;
  color: #000000;
  opacity: 0.75;
  font-weight: 300;
  margin: 0;
}

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

/* ===================== DIENSTLEISTUNGEN: FADE-KARUSSELL ===================== */

.services-section {
  padding: 0 var(--edge-gap) 90px;
  max-width: 1300px;
  margin: 0 auto;
}

.services-heading {
  text-align: center;
  padding: 20px 0 36px;
}

.services-heading .intro-eyebrow {
  justify-content: center;
}

.services-heading .intro-title {
  text-align: center;
}

.fade-carousel {
  position: relative;
  height: min(560px, 62vh);
  min-height: 420px;
  border-radius: 24px;
  overflow: hidden;
  background-color: var(--ink);
  box-shadow: 0 18px 45px rgba(11,22,34,0.20);
}

.fade-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s ease;
  display: flex;
  align-items: flex-end;
}

.fade-slide-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.fade-slide.active {
  opacity: 1;
  z-index: 1;
}

.fade-slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(11,22,34,0.1) 0%,
    rgba(11,22,34,0.25) 45%,
    rgba(11,22,34,0.88) 100%
  );
}

.fade-slide-content {
  position: relative;
  z-index: 1;
  padding: 42px;
  max-width: 700px;
}

.fade-slide-number {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--brand-blue);
}

.fade-slide-content h3 {
  font-size: clamp(32px, 4.2vw, 52px);
  font-weight: 700;
  color: #ffffff;
  margin: 8px 0 10px;
}

.fade-slide-content p {
  font-size: 17px;
  line-height: 1.6;
  color: rgba(255,255,255,0.92);
  font-weight: 400;
  margin: 0 0 14px;
}

.fade-slide-link {
  color: #ffffff;
  font-weight: 600;
  text-decoration: none;
  font-size: 16px;
  width: fit-content;
  border-bottom: 2px solid rgba(255,255,255,0.55);
}

.fade-dots {
  position: absolute;
  bottom: 22px;
  right: 30px;
  z-index: 2;
  display: flex;
  gap: 9px;
}

.fade-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.fade-arrow:hover {
  background: rgba(255, 255, 255, 0.3);
  border-color: rgba(255, 255, 255, 0.6);
}

.fade-arrow.prev {
  left: 20px;
}

.fade-arrow.next {
  right: 20px;
}

@media (max-width: 700px) {
  .fade-arrow {
    width: 34px;
    height: 34px;
  }
  .fade-arrow.prev { left: 12px; }
  .fade-arrow.next { right: 12px; }
}

.fade-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.fade-dot.active {
  background: #ffffff;
  transform: scale(1.3);
}

@media (max-width: 700px) {

  .fade-carousel {
    height: min(460px, 58vh);
    min-height: 360px;
  }

  .fade-slide-content {
    padding: 28px;
  }

  .fade-slide-content p {
    font-size: 15.5px;
  }

}

/* ===================== REFERENZEN TABELLE ===================== */

.references-table-section {
  position: relative;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 var(--edge-gap) 120px;
  will-change: transform;
}

.references-table-section::before {
  content: '';
  position: absolute;
  top: -140px;
  bottom: 0;
  left: 50%;
  width: 100vw;
  margin-left: -50vw;
  background: var(--brand-blue);
  opacity: 0;
  z-index: -1;
}

.references-table-section.bg-active::before {
  opacity: 1;
}

.references-table-section .references-heading .intro-eyebrow,
.references-table-section .references-heading .intro-title,
.references-table-section .ref-card-name,
.references-table-section .ref-index {
  transition: color 0.01s;
}

.references-table-section.bg-active .references-heading .intro-eyebrow {
  color: rgba(255,255,255,0.75);
}

.references-table-section.bg-active .references-heading .intro-title {
  color: #ffffff;
}

.references-table-section.bg-active .ref-card {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.18);
}

.references-table-section.bg-active .ref-card-name {
  color: #ffffff;
}

.references-table-section.bg-active .ref-index {
  color: rgba(255,255,255,0.55);
}

.references-table-section.bg-active .ref-card:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.35);
}

/* ===================== REFERENZ KARTEN ===================== */

.ref-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.ref-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 28px 26px;
  border: 1px solid rgba(9, 114, 182, 0.18);
  border-radius: 16px;
  background: rgba(9, 114, 182, 0.03);
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.ref-card.pop-in {
  opacity: 0;
  transform: scale(0.75);
  transition: opacity 0.5s ease, transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.ref-card.pop-in.in-view {
  opacity: 1;
  transform: scale(1);
}

.ref-card.pop-in:nth-child(1) { transition-delay: 0s; }
.ref-card.pop-in:nth-child(2) { transition-delay: 0.4s; }
.ref-card.pop-in:nth-child(3) { transition-delay: 0.8s; }
.ref-card.pop-in:nth-child(4) { transition-delay: 1.2s; }
.ref-card.pop-in:nth-child(5) { transition-delay: 1.6s; }
.ref-card.pop-in:nth-child(6) { transition-delay: 2s; }

@media (prefers-reduced-motion: reduce) {
  .ref-card.pop-in {
    opacity: 1;
    transform: scale(1);
    transition: none;
  }
}

.ref-card:hover {
  background: rgba(9, 114, 182, 0.07);
  border-color: rgba(9, 114, 182, 0.35);
  transform: translateY(-3px);
}

.ref-index {
  flex-shrink: 0;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--brand-blue);
  opacity: 0.55;
}

.ref-card-name {
  font-size: 17px;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.35;
}

@media (max-width: 900px) {
  .ref-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .ref-cards {
    grid-template-columns: 1fr;
  }
}

.references-table-section .references-heading {
  text-align: center;
  margin-bottom: 45px;
}

.references-table-section .intro-eyebrow {
  text-align: center;
}

.references-table-section .intro-title {
  text-align: center;
}

.references-table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid rgba(9, 114, 182, 0.20);
  border-radius: 12px;
  overflow: hidden;
}

.references-table td {
  padding: 22px 24px;
  font-size: 18px;
  font-weight: 600;
  color: var(--ink);
  opacity: 0.55;
  text-align: center;
  border-bottom: 1px solid rgba(9, 114, 182, 0.20);
  transition: opacity 0.3s ease, color 0.3s ease, transform 0.3s ease, background 0.3s ease;
}

.references-table tr:last-child td {
  border-bottom: none;
}

.references-table tr:hover td {
  opacity: 1;
  color: var(--brand-blue);
  background: rgba(9, 114, 182, 0.06);
  transform: translateY(-2px);
}

/* ===================== VIDEO + INFO ===================== */

.video-info-section {
  position: relative;
  max-width: 1300px;
  margin: 0 auto;
  padding: 2cm var(--edge-gap) 0;
  will-change: transform;
}

.video-info-heading {
  text-align: center;
  margin-bottom: 45px;
}

.video-info-heading .intro-eyebrow {
  text-align: center;
}

.video-info-heading .intro-title {
  text-align: center;
}

.video-info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.video-info-video-wrap {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 18px 45px rgba(11,22,34,0.20);
}

.video-info-video {
  width: 100%;
  height: 100%;
  display: block;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  background: var(--ink);
}

.video-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 76px;
  height: 76px;
  border-radius: 50%;
  border: none;
  background: rgba(9, 114, 182, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.25s ease, transform 0.25s ease;
}

.video-play-btn:hover {
  background: var(--brand-blue);
  transform: translate(-50%, -50%) scale(1.06);
}

.video-play-btn.is-playing {
  opacity: 0;
  pointer-events: none;
}

.video-info-list {
  display: flex;
  flex-direction: column;
  gap: 34px;
}

.video-info-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  opacity: 0;
  transform: translateX(70px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.video-info-item.in-view {
  opacity: 1;
  transform: none;
}

.video-info-item:nth-child(1).in-view { transition-delay: 0s; }
.video-info-item:nth-child(2).in-view { transition-delay: 0.15s; }
.video-info-item:nth-child(3).in-view { transition-delay: 0.3s; }
.video-info-item:nth-child(4).in-view { transition-delay: 0.45s; }

@media (prefers-reduced-motion: reduce) {
  .video-info-item {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

.video-info-icon {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--brand-blue);
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-info-text h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--brand-blue);
  margin: 0 0 8px;
}

.video-info-text p {
  font-size: 16px;
  line-height: 1.6;
  color: #4a4a4a;
  margin: 0;
}

@media (max-width: 800px) {
  .video-info-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
}

/* ===================== FOOTER ===================== */

.site-footer {
  background: var(--ink);
  margin-top: 0;
  position: relative;
  z-index: 30;
}

.footer-inner {
  max-width: 1300px;
  margin: 0 auto;
  padding: 50px var(--edge-gap) 50px;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 50px;
}

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

.footer-col-right {
  align-items: flex-start;
}

.footer-eyebrow {
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 12px;
  font-weight: 600;
  color: var(--brand-blue);
  margin-bottom: 8px;
}

.footer-line {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.6;
  color: rgba(255,255,255,0.85);
  text-decoration: none;
}

.footer-link {
  transition: color 0.2s ease;
}

.footer-link:hover {
  color: var(--brand-blue);
}

.footer-days {
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 4px;
}

.footer-hours {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.footer-hours-block {
  display: inline-block;
  width: fit-content;
  padding: 6px 14px;
  border: 1px solid rgba(9, 114, 182, 0.5);
  border-radius: 20px;
  font-size: 14px;
  color: rgba(255,255,255,0.85);
}

.footer-socials {
  display: flex;
  gap: 12px;
  margin-top: 14px;
}

.footer-social-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--brand-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, transform 0.2s ease;
}

.footer-social-btn:hover {
  background: var(--brand-blue-dark);
  transform: translateY(-2px);
}

.footer-bottom {
  max-width: 1300px;
  margin: 0 auto;
  padding: 24px var(--edge-gap) 30px;
  border-top: 1px solid rgba(255,255,255,0.12);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 13px;
  color: rgba(255,255,255,0.5);
}

.footer-tagline {
  text-transform: uppercase;
  letter-spacing: 2px;
}

.footer-credit {
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  font-size: 13px;
  transition: color 0.2s ease;
}

.footer-credit:hover {
  color: var(--brand-blue);
}

@media (max-width: 800px) {
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ===================== CTA KONTAKT ===================== */

.cta-section {
  max-width: 1300px;
  margin: 0 auto;
  padding: 2cm var(--edge-gap) 2cm;
  will-change: transform;
}

.cta-heading,
.cta-inner {
  opacity: 0;
  transform: translateY(90px);
  transition: opacity 1s ease, transform 1s ease;
}

.cta-inner {
  transition-delay: 0.15s;
}

.cta-section.in-view .cta-heading,
.cta-section.in-view .cta-inner {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .cta-heading,
  .cta-inner {
    opacity: 1;
    transform: none;
    transition: none;
    transition-delay: 0s;
  }
}

.cta-inner {
  background: var(--brand-blue);
  border-radius: 28px;
  padding: 70px 50px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}

.cta-heading {
  text-align: center;
  margin-bottom: 45px;
}

.cta-heading .intro-eyebrow {
  text-align: center;
}

.cta-heading .intro-title {
  text-align: center;
}

.cta-subtitle {
  font-size: 17px;
  font-weight: 300;
  line-height: 1.7;
  color: rgba(255,255,255,0.8);
  margin: 0;
  max-width: 560px;
}

.cta-button {
  margin-top: 14px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 30px;
  background: #ffffff;
  color: var(--brand-blue);
  font-weight: 700;
  font-size: 16px;
  text-decoration: none;
  border-radius: 30px;
  transition: background 0.25s ease, transform 0.25s ease;
}

.cta-button svg {
  stroke: var(--brand-blue);
  transition: transform 0.25s ease;
}

.cta-button:hover {
  transform: translateY(-2px);
  background: #f2f2f2;
}

.cta-button:hover svg {
  transform: translateX(3px);
}

@media (max-width: 700px) {
  .cta-inner {
    padding: 50px 28px;
  }
}

/* ===================== NAV OVERLAY ===================== */

.nav-overlay {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.nav-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.nav-overlay nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

.nav-overlay a {
  font-size: clamp(28px, 5vw, 48px);
  font-weight: 700;
  color: #ffffff;
  text-decoration: none;
  letter-spacing: 0.3px;
  transition: color 0.2s ease;
}

.nav-overlay a:hover,
.nav-overlay a.active {
  color: var(--brand-blue);
}

.nav-overlay-close {
  position: absolute;
  top: var(--edge-gap);
  right: var(--edge-gap);
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-overlay-close span {
  position: absolute;
  width: 24px;
  height: 2px;
  background: #ffffff;
  border-radius: 2px;
}

.nav-overlay-close span:first-child { transform: rotate(45deg); }
.nav-overlay-close span:last-child { transform: rotate(-45deg); }

/* ===================== HERO TITEL: MOBILE ===================== */

@media (max-width: 700px) {
  .hero-title {
    font-size: clamp(75px, 22vw, 130px);
    white-space: normal;
    line-height: 1.08;
  }

  .hero-title .htw {
    display: block;
    overflow-wrap: break-word;
    word-break: break-word;
    hyphens: auto;
  }
}

/* ===================== LOGO OBEN: MOBILE KLEINER ===================== */

@media (max-width: 700px) {
  .site-header .logo-default {
    transform: scale(1.26);
  }
}

/* ===================== LADEBILDSCHIRM: MOBILE KLEINER ===================== */

@media (max-width: 700px) {
  .stage {
    height: 170px;
  }

  .arrow-logo {
    width: 130.45px;
    height: 130px;
    animation-name: spinMobile;
  }

  .full-logo {
    width: 216.2px;
    height: 130px;
  }

  .tagline {
    margin-top: 1px;
    font-size: 11.4px;
    letter-spacing: 1.8px;
  }
}

@keyframes spinMobile {
  from { transform: translate(calc(-50% + 35.8px), -50%) rotate(0deg); }
  to   { transform: translate(calc(-50% + 35.8px), -50%) rotate(-360deg); }
}
