/* ========================================
   PARENTLY — Webfähig, strategisch, Cursor-ready
   Scroll = Dramaturgie | Typografie > Komponenten
   ======================================== */

:root {
  /* Farbpalette — verfeinert, professionell */
  --color-bg: #fafbfc;
  --color-bg-soft: #ffffff;
  --color-text: #0f172a;
  --color-text-muted: #475569;
  --color-text-light: #64748b;
  --color-accent: #2563eb;
  --color-accent-dark: #1e40af;
  --color-accent-light: #3b82f6;
  --color-border: #e2e8f0;
  --color-border-light: #f1f5f9;
  --color-shadow: rgba(15, 23, 42, 0.04);
  --color-shadow-strong: rgba(15, 23, 42, 0.08);
  
  /* Typografie */
  --font-primary: 'Montserrat', system-ui, -apple-system, sans-serif;
  --font-editorial: 'Montserrat', system-ui, -apple-system, sans-serif;
  
  /* Spacing — ausgewogen und professionell */
  --spacing-xs: 0.5rem;
  --spacing-sm: 0.75rem;
  --spacing-md: 1.5rem;
  --spacing-lg: 3.5rem;
  --spacing-xl: 5rem;
  --spacing-xxl: 7rem;
  
  /* Container */
  --container-width: 1280px;
  --container-padding: clamp(1.5rem, 4vw, 2.5rem);
  --content-width: 720px;
  --content-width-wide: 1000px;
  
  /* Animation — verfeinert */
  --transition-smooth: 0.7s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-bounce: 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  --transition-ultra-smooth: 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

html, body {
  overflow-x: hidden;
  scroll-padding-top: 80px;
}

body {
  font-family: var(--font-primary);
  font-size: 17px;
  line-height: 1.7;
  color: var(--color-text);
  background-color: transparent;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  font-feature-settings: "kern" 1, "liga" 1, "calt" 1;
  position: relative;
  letter-spacing: 0.01em;
  font-weight: 500;
  scroll-behavior: smooth;
}

body.preloader-active {
  overflow: hidden;
}

/* ========================================
   Preloader
   ======================================== */

.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000000;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  opacity: 1;
  visibility: visible;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

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

.preloader-content {
  text-align: center;
}

.preloader-text {
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  color: #ffffff;
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 1.5;
  margin: 0;
  font-style: italic;
}



/* ========================================
   Hintergrund SVG
   ======================================== */

.background-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  pointer-events: none;
  overflow: hidden;
  animation: background-shimmer 8s ease-in-out infinite;
}

.background-svg {
  width: 100%;
  height: 100%;
  min-height: 100vh;
  object-fit: cover;
  opacity: 1;
  animation: background-move 20s ease-in-out infinite;
  transform-origin: center center;
}

/* Shimmer-Effekt für Hintergrund */
@keyframes background-shimmer {
  0%, 100% {
    filter: brightness(1) contrast(1) saturate(1);
  }
  25% {
    filter: brightness(1.05) contrast(1.02) saturate(1.01);
  }
  50% {
    filter: brightness(1.08) contrast(1.03) saturate(1.02);
  }
  75% {
    filter: brightness(1.05) contrast(1.02) saturate(1.01);
  }
}

/* Sanfte Bewegung für Hintergrund */
@keyframes background-move {
  0%, 100% {
    transform: scale(1) translate(0, 0) rotate(0deg);
  }
  25% {
    transform: scale(1.02) translate(-5px, -3px) rotate(0.2deg);
  }
  50% {
    transform: scale(1.03) translate(0, -5px) rotate(0deg);
  }
  75% {
    transform: scale(1.02) translate(5px, -3px) rotate(-0.2deg);
  }
}

/* Zusätzlicher Shimmer-Overlay */
.background-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    transparent 0%,
    rgba(255, 255, 255, 0.03) 25%,
    transparent 50%,
    rgba(255, 255, 255, 0.03) 75%,
    transparent 100%
  );
  background-size: 200% 200%;
  animation: shimmer-overlay 12s ease-in-out infinite;
  pointer-events: none;
  z-index: 1;
}

@keyframes shimmer-overlay {
  0% {
    background-position: 0% 0%;
    opacity: 0.5;
  }
  50% {
    background-position: 100% 100%;
    opacity: 0.8;
  }
  100% {
    background-position: 0% 0%;
    opacity: 0.5;
  }
}

/* Subtiler Glow-Effekt */
.background-container::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle at center,
    rgba(255, 255, 255, 0.05) 0%,
    transparent 50%
  );
  animation: glow-pulse 15s ease-in-out infinite;
  pointer-events: none;
  z-index: 1;
}

@keyframes glow-pulse {
  0%, 100% {
    transform: scale(1) translate(0, 0);
    opacity: 0.3;
  }
  50% {
    transform: scale(1.1) translate(20px, 20px);
    opacity: 0.5;
  }
}


/* ========================================
   Fade Animationen
   ======================================== */

.fade-in-anim {
  animation: fade-in-anim 1s forwards;
  opacity: 0;
}

.fade-in-delay-1 {
  animation: fade-in-anim 1s 0.3s forwards;
  opacity: 0;
}

.fade-in-delay-2 {
  animation: fade-in-anim 1s 0.6s forwards;
  opacity: 0;
}

.fade-in-delay-3 {
  animation: fade-in-anim 1s 0.9s forwards;
  opacity: 0;
}

.fade-out {
  animation: fade-out-anim 0.6s forwards;
}

/* Scroll-basierte Fade Animationen */
[data-animate="fade-up"] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

[data-animate="fade-left"] {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

[data-animate="fade-right"] {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

[data-animate="fade-in"] {
  opacity: 0;
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

[data-animate].animate {
  opacity: 1;
  transform: translateY(0) translateX(0) scale(1) rotate(0);
}

/* ========================================
   Slide Animationen
   ======================================== */

.slide-left,
.slide-right,
.slide-up {
  opacity: 0;
  transition: 
    opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.slide-left {
  transform: translateX(-60px);
}

.slide-right {
  transform: translateX(60px);
}

.slide-up {
  transform: translateY(60px);
}

.slide-left.show,
.slide-right.show,
.slide-up.show {
  opacity: 1;
  transform: translate(0);
}

.slide-left.delay-1,
.slide-right.delay-1,
.slide-up.delay-1 {
  transition-delay: 0.2s;
}

.slide-left.delay-2,
.slide-right.delay-2,
.slide-up.delay-2 {
  transition-delay: 0.4s;
}

.slide-left.delay-3,
.slide-right.delay-3,
.slide-up.delay-3 {
  transition-delay: 0.6s;
}

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

body {
  position: relative;
}

header {
  position: relative;
  z-index: 10;
}

/* ========================================
   Typografie — verfeinert
   ======================================== */

h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  line-height: 1.2;
  color: var(--color-text);
  margin-bottom: 1.25rem;
  letter-spacing: -0.025em;
  font-feature-settings: "kern" 1;
}

h1 {
  font-size: clamp(2.75rem, 7vw, 5rem);
  font-weight: 900;
  letter-spacing: 0.02em;
  line-height: 1.08;
  color: var(--color-text);
  text-transform: uppercase;
}

h2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  margin-bottom: 2rem;
  font-weight: 800;
  letter-spacing: 0.01em;
  line-height: 1.2;
  color: var(--color-text);
  text-transform: uppercase;
}

h3 {
  font-size: clamp(1.375rem, 3vw, 1.875rem);
  margin-bottom: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 1.3;
  color: var(--color-text);
}

p {
  margin-bottom: 1.5rem;
  line-height: 1.75;
  color: var(--color-text);
  font-weight: 500;
}

p:last-child {
  margin-bottom: 0;
}

a {
  color: var(--color-accent);
  text-decoration: none;
  transition: all var(--transition-fast);
}

a:hover {
  color: var(--color-accent-dark);
}

ul, ol {
  margin-bottom: 1.5rem;
  padding-left: 0;
  list-style: none;
}

li {
  margin-bottom: 0.75rem;
  line-height: 1.8;
}

/* ========================================
   Animation Classes — Scroll-Trigger
   ======================================== */

.fade-in {
  opacity: 0;
  animation: fadeIn 1s ease forwards;
}

.fade-in.delay-1 { animation-delay: 0.2s; }
.fade-in.delay-2 { animation-delay: 0.4s; }
.fade-in.delay-3 { animation-delay: 0.6s; }
.fade-in.delay-4 { animation-delay: 0.8s; }

.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: opacity, transform;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-up.delay-1 { transition-delay: 0.1s; }
.fade-up.delay-2 { transition-delay: 0.2s; }
.fade-up.delay-3 { transition-delay: 0.3s; }
.fade-up.delay-4 { transition-delay: 0.4s; }
.fade-up.delay-5 { transition-delay: 0.5s; }

/* ========================================
   Spannende Section-Übergänge
   ======================================== */

section {
  position: relative;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.6s ease;
  will-change: transform, opacity;
  background: transparent !important;
  margin: 0;
  padding: 0;
  overflow: visible;
}

section::before {
  display: none; /* Gradient-Overlay entfernen, das weiße Striche verursacht */
}

section.entering {
  animation: section-enter 1s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

section.leaving {
  animation: section-leave 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes section-enter {
  0% {
    opacity: 0;
    transform: translateY(60px) scale(0.98);
    filter: blur(10px);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }
}

@keyframes section-leave {
  0% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
  100% {
    opacity: 0.3;
    transform: translateY(-30px) scale(0.99);
  }
}

/* Parallax-Effekt für Sections */
.section-parallax {
  transform-style: preserve-3d;
}

/* Text-Reveal-Animationen */
.text-reveal {
  overflow: hidden;
  position: relative;
}

.text-reveal::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transform: translateX(-100%);
  transition: transform 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.text-reveal.revealed::after {
  transform: translateX(100%);
}

/* Split-Text Animation */
.split-text {
  display: inline-block;
  overflow: hidden;
}

.split-text span {
  display: inline-block;
  transform: translateY(100%);
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.split-text.revealed span {
  transform: translateY(0);
}

/* Glitch-Effekt für Headlines */
@keyframes glitch {
  0%, 100% {
    transform: translate(0);
    text-shadow: 0 0 0 rgba(255, 255, 255, 0);
  }
  20% {
    transform: translate(-2px, 2px);
    text-shadow: 2px -2px 0 rgba(255, 0, 0, 0.3);
  }
  40% {
    transform: translate(-2px, -2px);
    text-shadow: -2px 2px 0 rgba(0, 255, 0, 0.3);
  }
  60% {
    transform: translate(2px, 2px);
    text-shadow: 2px 2px 0 rgba(0, 0, 255, 0.3);
  }
  80% {
    transform: translate(2px, -2px);
    text-shadow: -2px -2px 0 rgba(255, 255, 0, 0.3);
  }
}

.glitch-effect {
  animation: glitch 0.3s ease-in-out;
}

/* 3D-Tilt-Effekt beim Hover */
@keyframes tilt-3d {
  0% {
    transform: perspective(1000px) rotateX(0deg) rotateY(0deg);
  }
  50% {
    transform: perspective(1000px) rotateX(2deg) rotateY(-2deg);
  }
  100% {
    transform: perspective(1000px) rotateX(0deg) rotateY(0deg);
  }
}

.section-parallax:hover {
  animation: tilt-3d 0.6s ease-in-out;
}

/* Shimmer-Effekt für Text */
@keyframes shimmer {
  0% {
    background-position: -1000px 0;
  }
  100% {
    background-position: 1000px 0;
  }
}

.shimmer-text {
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255, 255, 255, 0.1) 50%,
    transparent 100%
  );
  background-size: 200% 100%;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmer 3s ease-in-out infinite;
}

/* Magnetic Scroll-Effekt */
@keyframes magnetic-pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.02);
  }
}

.section-parallax.scrolling {
  animation: magnetic-pulse 2s ease-in-out infinite;
}

/* Nahtlose Section-Übergänge ohne weiße Striche */
.section-divider {
  display: none; /* Divider komplett entfernen */
}

section {
  position: relative;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.6s ease;
  will-change: transform, opacity;
  background: transparent; /* Sicherstellen, dass kein weißer Hintergrund da ist */
  margin: 0;
  padding: 0;
  overflow: visible; /* Keine Überläufe abschneiden */
}

section::before {
  display: none; /* Gradient-Overlay entfernen */
}

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

/* ========================================
   Keyframe Animationen
   ======================================== */

@keyframes fade-in-anim {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fade-out-anim {
  0% {
    opacity: 1;
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateY(-40px);
  }
}

@keyframes cardTitleFadeIn {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ========================================
   Header & Navigation
   ======================================== */

header {
  background-color: #000000;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  transition: all var(--transition-fast);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
  --scroll-progress: 0%;
  background-color: rgba(0, 0, 0, 0.98);
}

/* Header Scroll Animation */
header::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: var(--scroll-progress);
  height: 2px;
  background: #ffffff;
  transition: width 0.1s ease-out;
  z-index: 1;
}

header.scrolled {
  background-color: rgba(0, 0, 0, 0.99);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
  border-bottom-color: rgba(255, 255, 255, 0.15);
}

header.scrolled nav {
  padding: 1.25rem var(--container-padding);
}

nav {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 1.75rem var(--container-padding);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo-icon {
  display: flex;
  align-items: center;
  color: #ffffff;
  transition: transform var(--transition-fast);
}

.logo-icon:hover {
  transform: scale(1.05);
}

.brand-name {
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #ffffff;
}

.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
  flex-wrap: wrap;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9375rem;
  font-weight: 500;
  padding: 0.625rem 0;
  border-bottom: 2px solid transparent;
  transition: all var(--transition-fast);
  letter-spacing: -0.01em;
}

.nav-links a:hover {
  color: #ffffff;
  border-bottom-color: #ffffff;
  transform: translateY(-1px);
}

/* ========================================
   Container
   ======================================== */

.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

/* ========================================
   SECTION 1 — Hero / Positionierung
   ======================================== */

.section-hero {
  padding: var(--spacing-xxl) 0 var(--spacing-xl);
  min-height: 80vh;
  display: flex;
  align-items: center;
  background: transparent;
  border-bottom: none;
  position: relative;
}

.section-hero .container {
  max-width: var(--content-width);
  text-align: center;
  border: 3px solid #000000;
  padding: 4rem clamp(2rem, 5vw, 4rem);
  margin: 0 auto;
  background: transparent;
}

.hero-title {
  margin-bottom: 2.5rem;
  color: var(--color-text);
  font-weight: 800;
  letter-spacing: -0.04em;
}

.hero-subtitle {
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  color: var(--color-text);
  margin-bottom: 1.5rem;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: -0.015em;
}

.hero-reveal {
  margin: 4rem 0 3.5rem;
  font-size: clamp(1.25rem, 3vw, 1.625rem);
  color: var(--color-text-muted);
  line-height: 1.8;
  font-weight: 400;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}

.hero-reveal p {
  margin-bottom: 1rem;
}

.hero-link {
  margin-top: 3rem;
}

.hero-link a {
  font-size: 1.0625rem;
  color: var(--color-text-muted);
  border-bottom: 1.5px solid var(--color-border);
  padding-bottom: 0.375rem;
  transition: all var(--transition-fast);
  font-weight: 500;
  letter-spacing: -0.01em;
}

.hero-link a:hover {
  color: var(--color-accent);
  border-bottom-color: var(--color-accent);
  text-decoration: none;
  transform: translateY(-1px);
}

/* ========================================
   CAROUSEL / SLIDER
   ======================================== */

.section-carousel {
  padding: var(--spacing-xxl) 0;
  min-height: 80vh;
  display: flex;
  align-items: center;
  position: relative;
}

.carousel-container {
  position: relative;
  width: 100%;
  max-width: 1560px;
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

.carousel-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
}

.carousel-track {
  display: flex;
  transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

.carousel-slide {
  min-width: 100%;
  flex-shrink: 0;
  padding: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.carousel-slide > div {
  width: 100%;
  max-width: 1144px;
  transform: scale(1);
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.6s ease, box-shadow 0.4s ease;
  opacity: 0;
  animation: slideInScale 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
  will-change: transform, opacity;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

.carousel-slide.active > div {
  opacity: 1;
  animation: slideInScale 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

@keyframes slideInScale {
  0% {
    opacity: 0;
    transform: scale(0.96) translateY(15px);
  }
  60% {
    opacity: 0.8;
  }
  100% {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

@keyframes cardFloat {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
}

.carousel-slide.active > div:hover {
  transform: scale(1.02);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 50%;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
  color: var(--color-text);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.carousel-btn:hover {
  background: rgba(255, 255, 255, 1);
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.carousel-btn:active {
  transform: translateY(-50%) scale(0.95);
}

.carousel-btn-prev {
  left: -28px;
}

.carousel-btn-next {
  right: -28px;
}

.carousel-btn svg {
  width: 24px;
  height: 24px;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 3rem;
  flex-wrap: wrap;
}

.carousel-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.2);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}

.carousel-dot:hover {
  background: rgba(0, 0, 0, 0.4);
  transform: scale(1.2);
}

.carousel-dot.active {
  background: var(--color-accent);
  width: 32px;
  border-radius: 6px;
}

@media (max-width: 768px) {
  .carousel-btn {
    width: 48px;
    height: 48px;
  }

  .carousel-btn-prev {
    left: 10px;
  }

  .carousel-btn-next {
    right: 10px;
  }

  .carousel-slide {
    padding: 1rem;
  }
}

/* ========================================
   SECTION 2 — Split-Screen Problem
   ======================================== */

.section-split {
  padding: var(--spacing-xl) 0;
  border-bottom: none;
}

.problem-card {
  max-width: 1144px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 18px;
  padding: 4.4rem clamp(2.2rem, 5.5vw, 4.4rem);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
  text-align: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.problem-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.03) 0%, rgba(0, 0, 0, 0.01) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.problem-card:hover::before {
  opacity: 1;
}

.problem-content {
  margin-top: 2rem;
}

.problem-card h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.25rem);
  margin-bottom: 0;
  color: var(--color-text);
  text-align: center;
  font-weight: 800;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(20px);
}

.carousel-slide.active .problem-card h2 {
  animation: cardTitleFadeIn 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.problem-content p {
  font-size: clamp(1.125rem, 2.5vw, 1.5rem);
  color: var(--color-text);
  line-height: 1.8;
  margin-bottom: 2rem;
  font-weight: 400;
  text-align: center;
}

.split-container {
  display: grid;
  grid-template-columns: 1fr 0.25fr;
  gap: 5rem;
  max-width: var(--content-width-wide);
  margin: 0 auto;
  align-items: start;
}

.split-left h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.25rem);
  margin-bottom: 2.5rem;
  color: var(--color-text);
}

.split-left p {
  font-size: clamp(1.125rem, 2.5vw, 1.5rem);
  color: var(--color-text);
  line-height: 1.8;
  margin-bottom: 2rem;
  font-weight: 400;
}

.problem-content .problem-emphasis {
  font-weight: 600;
  color: var(--color-text);
  font-size: clamp(1.375rem, 3vw, 1.75rem);
  line-height: 1.6;
  margin-top: 2rem;
  margin-bottom: 0;
}

.systemversagen {
  position: relative;
  cursor: help;
  border-bottom: 2px solid rgba(37, 99, 235, 0.3);
  transition: border-color 0.3s ease;
}

.systemversagen:hover {
  border-bottom-color: var(--color-accent);
}

.systemversagen::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 2.5px;
  background: linear-gradient(90deg, var(--color-accent), var(--color-accent-light));
  transition: width var(--transition-fast);
  border-radius: 2px;
}

.systemversagen:hover::after {
  width: 100%;
}

.split-right {
  /* Ruhiger Margin für Betonung */
}

/* ========================================
   SECTION 3 — Editorial (Lücke)
   ======================================== */

.section-editorial {
  padding: var(--spacing-xl) 0;
  border-bottom: none;
}

.section-editorial .container {
  max-width: var(--content-width);
}

.editorial-content p {
  font-size: clamp(0.9375rem, 1.75vw, 1.125rem);
  color: var(--color-text-muted);
  line-height: 1.6;
  margin-bottom: 1rem;
  font-weight: 400;
}

.gap-list {
  list-style: none;
  padding-left: 0;
  margin: 1.5rem 0;
}

.gap-list li {
  padding-left: 0;
  margin-bottom: 1rem;
  color: var(--color-text-muted);
  font-size: clamp(0.9375rem, 1.75vw, 1.125rem);
  line-height: 1.65;
  font-weight: 400;
  padding-left: 1.5rem;
  position: relative;
}

.gap-list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--color-text-light);
  font-weight: 300;
}

.parallax-text {
  font-weight: 600;
  color: var(--color-text);
  font-size: clamp(1.25rem, 2.75vw, 1.5rem);
  line-height: 1.75;
  margin-top: 2rem;
}

/* ========================================
   SECTION 4 — Two Columns (Was ist)
   ======================================== */

.section-two-columns {
  padding: var(--spacing-xl) 0;
  border-bottom: none;
}

.parently-card {
  max-width: 1144px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 18px;
  padding: 4.4rem clamp(2.2rem, 5.5vw, 4.4rem);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
  text-align: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.parently-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.03) 0%, rgba(0, 0, 0, 0.01) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.parently-card:hover::before {
  opacity: 1;
}

.parently-content {
  margin-top: 2rem;
}

.parently-card h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.25rem);
  margin-bottom: 0;
  color: var(--color-text);
  text-align: center;
  font-weight: 800;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(20px);
}

.carousel-slide.active .parently-card h2 {
  animation: cardTitleFadeIn 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.parently-content > p {
  font-size: clamp(1.125rem, 2.5vw, 1.5rem);
  color: var(--color-text);
  line-height: 1.8;
  margin-bottom: 2rem;
  font-weight: 400;
  text-align: center;
}

.parently-content .negative-definition {
  margin: 2.5rem 0;
}

.parently-content .negative-definition p {
  font-size: clamp(1.125rem, 2.5vw, 1.5rem);
  color: var(--color-text-muted);
  line-height: 1.8;
  margin-bottom: 1rem;
  font-weight: 400;
  font-style: italic;
  text-align: center;
}

.parently-content .negative-definition p:last-child {
  margin-bottom: 0;
}

.parently-end {
  font-size: clamp(1.25rem, 2.75vw, 1.625rem);
  color: var(--color-text);
  font-weight: 600;
  line-height: 1.7;
  margin-top: 2.5rem;
  margin-bottom: 0;
  text-align: center;
}

.two-columns-container {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 5rem;
  max-width: var(--content-width-wide);
  margin: 0 auto 4rem;
  align-items: start;
}

.column-left h2,
.column-right h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.25rem);
  margin-bottom: 2.5rem;
  color: var(--color-text);
}

.column-left p {
  font-size: clamp(1.125rem, 2.5vw, 1.5rem);
  color: var(--color-text);
  line-height: 1.8;
  margin-bottom: 2rem;
  font-weight: 400;
}

.negative-definition p {
  font-size: clamp(1.125rem, 2.5vw, 1.5rem);
  color: var(--color-text-muted);
  line-height: 1.8;
  margin-bottom: 1.5rem;
  font-weight: 400;
  font-style: italic;
}

.centered-text {
  text-align: center;
  font-size: clamp(1.375rem, 3vw, 1.75rem);
  color: var(--color-text);
  font-weight: 600;
  max-width: 680px;
  margin: 4rem auto 0;
  line-height: 1.7;
  letter-spacing: -0.01em;
}

/* ========================================
   SECTION 5 — Narrative (Wie es funktioniert)
   ======================================== */

.section-narrative {
  padding: var(--spacing-xl) 0;
  border-bottom: none;
  background-color: transparent;
}

.section-narrative .container {
  max-width: var(--content-width);
}

.funktioniert-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.funktioniert-card {
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 16px;
  padding: 3rem clamp(2rem, 4vw, 3rem);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
  text-align: center;
}

.funktioniert-card h3 {
  font-size: clamp(1.75rem, 3.5vw, 2.25rem);
  margin-bottom: 1.75rem;
  color: var(--color-text);
  font-weight: 800;
  text-align: center;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(20px);
}

.carousel-slide.active .funktioniert-card h3 {
  animation: cardTitleFadeIn 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.funktioniert-card p {
  font-size: clamp(1.125rem, 2.5vw, 1.5rem);
  color: var(--color-text);
  line-height: 1.8;
  margin-bottom: 1.5rem;
  font-weight: 400;
  text-align: center;
}

.funktioniert-card p:last-child {
  margin-bottom: 0;
}

.funktioniert-list {
  list-style: none;
  padding-left: 0;
  margin: 2rem 0;
  text-align: center;
}

.funktioniert-list li {
  padding-left: 0;
  margin-bottom: 1.5rem;
  color: var(--color-text);
  font-size: clamp(1.125rem, 2.5vw, 1.5rem);
  line-height: 1.8;
  font-weight: 400;
  text-align: center;
}

.narrative-subsection {
  margin-bottom: 4rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.narrative-subsection:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.narrative-subsection h3 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: 1.75rem;
  color: var(--color-text);
  font-weight: 700;
}

.narrative-subsection p {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--color-text);
  line-height: 1.75;
  margin-bottom: 1.5rem;
  font-weight: 400;
}

.spaced-list {
  list-style: none;
  padding-left: 0;
  margin: 2.5rem 0;
}

.spaced-list li {
  padding-left: 0;
  margin-bottom: 1.75rem;
  color: var(--color-text);
  font-size: clamp(1rem, 2vw, 1.25rem);
  line-height: 1.8;
  font-weight: 400;
}

/* ========================================
   SECTION 6 — Full-Width (Integration)
   ======================================== */

.section-full-width {
  padding: var(--spacing-xl) 0;
  border-bottom: none;
}

.section-full-width .container {
  max-width: var(--content-width);
}

.integration-card {
  max-width: 1144px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 18px;
  padding: 4.4rem clamp(2.2rem, 5.5vw, 4.4rem);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
  text-align: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.integration-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.03) 0%, rgba(0, 0, 0, 0.01) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.integration-card:hover::before {
  opacity: 1;
}

.integration-content {
  margin-top: 2rem;
}

.integration-card h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.25rem);
  margin-bottom: 0;
  color: var(--color-text);
  text-align: center;
  font-weight: 800;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(20px);
}

.carousel-slide.active .integration-card h2 {
  animation: cardTitleFadeIn 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.integration-content p {
  font-size: clamp(1.125rem, 2.5vw, 1.5rem);
  color: var(--color-text);
  line-height: 1.8;
  margin-bottom: 1.5rem;
  font-weight: 400;
  text-align: center;
}

.integration-content p:last-child {
  margin-bottom: 0;
}

.inline-link {
  color: var(--color-accent);
  border-bottom: 1.5px solid var(--color-border);
  padding-bottom: 0.375rem;
  transition: all var(--transition-fast);
  font-weight: 500;
}

.inline-link:hover {
  color: var(--color-accent-dark);
  border-bottom-color: var(--color-accent);
  text-decoration: none;
  transform: translateY(-1px);
}

/* ========================================
   SECTION 7 — Portrait (Medizinische Verankerung)
   ======================================== */

.section-portrait {
  padding: var(--spacing-xl) 0;
  border-bottom: none;
  background-color: transparent;
}

.section-portrait .container {
  max-width: var(--content-width);
  text-align: center;
}

.portrait-content {
  max-width: 700px;
  margin: 0 auto;
}

.name-emphasis {
  font-size: clamp(1.375rem, 3.5vw, 1.75rem);
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
}

.portrait-content p {
  font-size: clamp(1.125rem, 2.25vw, 1.375rem);
  color: var(--color-text-muted);
  line-height: 1.85;
  margin-bottom: 2.5rem;
  font-weight: 400;
}

.key-line {
  font-size: clamp(1.375rem, 3.5vw, 1.75rem);
  font-weight: 600;
  color: var(--color-text);
  margin-top: 4rem;
  line-height: 1.7;
  letter-spacing: -0.01em;
  padding-top: 3rem;
  border-top: 1px solid var(--color-border-light);
}

/* ========================================
   SECTION 8 — Policy (Philanthropie)
   ======================================== */

.section-policy {
  padding: var(--spacing-xl) 0;
  border-bottom: none;
}

.section-policy .container {
  max-width: var(--content-width);
}

.philanthropie-card {
  max-width: 1144px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 18px;
  padding: 4.4rem clamp(2.2rem, 5.5vw, 4.4rem);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
  text-align: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.philanthropie-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.03) 0%, rgba(0, 0, 0, 0.01) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.philanthropie-card:hover::before {
  opacity: 1;
}

.philanthropie-content {
  margin-top: 2rem;
}

.philanthropie-card h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.25rem);
  margin-bottom: 0;
  color: var(--color-text);
  text-align: center;
  font-weight: 800;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(20px);
}

.carousel-slide.active .philanthropie-card h2 {
  animation: cardTitleFadeIn 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.philanthropie-content p {
  font-size: clamp(1.125rem, 2.5vw, 1.5rem);
  color: var(--color-text);
  line-height: 1.8;
  margin-bottom: 1.5rem;
  font-weight: 400;
  text-align: center;
}

.philanthropie-list {
  list-style: none;
  padding-left: 0;
  margin: 2rem 0;
  text-align: center;
}

.philanthropie-list li {
  padding-left: 0;
  margin-bottom: 1rem;
  color: var(--color-text);
  font-size: clamp(1.125rem, 2.5vw, 1.5rem);
  line-height: 1.8;
  font-weight: 400;
  text-align: center;
}

.section-policy h2 {
  font-size: clamp(1.875rem, 4.5vw, 2.75rem);
  margin-bottom: 3rem;
  color: var(--color-text);
  text-align: center;
}

.policy-content {
  max-width: 720px;
  margin: 0 auto;
}

.policy-content p {
  font-size: clamp(1.125rem, 2.5vw, 1.5rem);
  color: var(--color-text);
  line-height: 1.8;
  margin-bottom: 2rem;
  font-weight: 400;
}

.policy-content .spaced-list {
  margin: 2rem 0;
}

.policy-content .spaced-list li {
  margin-bottom: 1.5rem;
}

/* ========================================
   SECTION 9 — Progression (Aufbauen)
   ======================================== */

.section-progression {
  padding: var(--spacing-xl) 0;
  border-bottom: none;
  background-color: transparent;
}

.section-progression .container {
  max-width: var(--content-width);
}

.aufbauen-card {
  max-width: 1144px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 18px;
  padding: 4.4rem clamp(2.2rem, 5.5vw, 4.4rem);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
  text-align: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.aufbauen-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.03) 0%, rgba(0, 0, 0, 0.01) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.aufbauen-card:hover::before {
  opacity: 1;
}

.aufbauen-content {
  margin-top: 2rem;
}

.aufbauen-card h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.25rem);
  margin-bottom: 0;
  color: var(--color-text);
  text-align: center;
  font-weight: 800;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(20px);
}

.carousel-slide.active .aufbauen-card h2 {
  animation: cardTitleFadeIn 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.aufbauen-list {
  list-style: decimal;
  padding-left: 2.5rem;
  margin: 2.5rem 0;
  counter-reset: item;
  text-align: left;
  display: inline-block;
}

.aufbauen-list li {
  font-size: clamp(1.125rem, 2.5vw, 1.5rem);
  color: var(--color-text);
  line-height: 1.8;
  margin-bottom: 1.5rem;
  font-weight: 400;
  position: relative;
}

.aufbauen-list li::marker {
  color: var(--color-accent);
  font-weight: 600;
}

.aufbauen-end {
  text-align: center;
  font-size: clamp(1.375rem, 3vw, 1.75rem);
  font-weight: 600;
  color: var(--color-text);
  margin-top: 3rem;
  line-height: 1.7;
  letter-spacing: -0.01em;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.section-progression h2 {
  font-size: clamp(1.875rem, 4.5vw, 2.75rem);
  margin-bottom: 3rem;
  color: var(--color-text);
  text-align: center;
}

.progression-content {
  max-width: 720px;
  margin: 0 auto;
}

.progression-list {
  list-style: decimal;
  padding-left: 2.5rem;
  margin: 3rem 0;
  counter-reset: item;
}

.progression-list li {
  font-size: clamp(1.125rem, 2.5vw, 1.5rem);
  color: var(--color-text);
  line-height: 1.8;
  margin-bottom: 2.5rem;
  font-weight: 400;
  position: relative;
}

.progression-list li::marker {
  color: var(--color-accent);
  font-weight: 600;
}

.progression-end {
  text-align: center;
  font-size: clamp(1.375rem, 3vw, 1.75rem);
  font-weight: 600;
  color: var(--color-text);
  margin-top: 4rem;
  line-height: 1.7;
  letter-spacing: -0.01em;
  padding-top: 3rem;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.progression-end {
  font-size: clamp(1.375rem, 3vw, 1.75rem);
  font-weight: 600;
  color: var(--color-text);
  text-align: center;
  line-height: 1.7;
  letter-spacing: -0.01em;
  margin-top: 4rem;
  padding-top: 3rem;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

/* ========================================
   Footer
   ======================================== */

footer {
  padding: var(--spacing-lg) 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background-color: rgba(0, 0, 0, 0.98);
  margin-top: var(--spacing-xl);
  box-shadow: 0 -1px 3px rgba(0, 0, 0, 0.3);
  position: relative;
  z-index: 1;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2.5rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.footer-brand .logo-icon {
  color: #ffffff;
}

.footer-brand .brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.footer-brand .brand-name {
  font-size: 1.25rem;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.02em;
}

.footer-brand .brand-tagline {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 0.25rem;
}

.footer-grid strong {
  color: #ffffff;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 1rem;
  display: block;
}

.footer-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-list li {
  margin-bottom: 0.75rem;
}

.footer-list a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9375rem;
  transition: color var(--transition-fast);
}

.footer-list a:hover {
  color: #ffffff;
  text-decoration: underline;
}

footer .tagline {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9375rem;
  margin-top: 1rem;
  line-height: 1.6;
}

/* ========================================
   Cookie Banner
   ======================================== */

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.98);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.5rem var(--container-padding);
  z-index: 1000;
  transform: translateY(100%);
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.5);
}

.cookie-banner.show {
  transform: translateY(0);
}

.cookie-banner.hide {
  transform: translateY(100%);
}

.cookie-banner-content {
  max-width: var(--container-width);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.cookie-banner-text {
  flex: 1;
  min-width: 300px;
}

.cookie-banner-text strong {
  display: block;
  color: #ffffff;
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.cookie-banner-text p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9375rem;
  line-height: 1.6;
  margin: 0;
}

.cookie-banner-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.cookie-btn {
  padding: 0.75rem 1.5rem;
  border-radius: 6px;
  font-size: 0.9375rem;
  font-weight: 500;
  cursor: pointer;
  transition: all var(--transition-fast);
  border: none;
  font-family: var(--font-primary);
}

.cookie-btn-primary {
  background-color: #ffffff;
  color: #000000;
}

.cookie-btn-primary:hover {
  background-color: rgba(255, 255, 255, 0.9);
  transform: translateY(-1px);
}

.cookie-btn-secondary {
  background-color: transparent;
  color: #ffffff;
  border: 1.5px solid rgba(255, 255, 255, 0.3);
}

.cookie-btn-secondary:hover {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
}

.cookie-btn-link {
  background-color: transparent;
  color: rgba(255, 255, 255, 0.8);
  border: none;
  text-decoration: underline;
  padding: 0.75rem 1rem;
}

.cookie-btn-link:hover {
  color: #ffffff;
}

@media (max-width: 768px) {
  .cookie-banner-content {
    flex-direction: column;
    align-items: stretch;
  }
  
  .cookie-banner-buttons {
    flex-direction: column;
  }
  
  .cookie-btn {
    width: 100%;
  }
}

/* ========================================
   Responsive Design
   ======================================== */

@media (max-width: 768px) {
  :root {
    --container-padding: 1.5rem;
    --spacing-lg: 2.5rem;
    --spacing-xl: 3.5rem;
    --spacing-xxl: 4.5rem;
  }

  body {
    font-size: 16px;
    line-height: 1.65;
  }

  nav {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .nav-links {
    gap: 1rem;
    width: 100%;
    overflow-x: auto;
    padding-bottom: 0.5rem;
  }

  .split-container,
  .two-columns-container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .hero-reveal {
    margin: 3rem 0 2.5rem;
  }
  
  .narrative-subsection {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
  }
  
  .section-full-width h2,
  .section-policy h2,
  .section-progression h2 {
    text-align: left;
  }
  
  .section-full-width p {
    text-align: left;
  }

  .split-container,
  .two-columns-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .section-hero {
    min-height: auto;
    padding: var(--spacing-xl) 0;
  }

  .footer-content {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ========================================
   Legal Pages (Rechtliche Unterseiten)
   ======================================== */

.section-legal {
  padding: var(--spacing-xxl) 0;
  min-height: 80vh;
  display: flex;
  align-items: center;
}

.legal-card {
  max-width: 1144px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 18px;
  padding: 4.4rem clamp(2.2rem, 5.5vw, 4.4rem);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
  text-align: left;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.legal-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.03) 0%, rgba(0, 0, 0, 0.01) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.legal-card:hover::before {
  opacity: 1;
}

.legal-card h1 {
  font-size: clamp(2rem, 4.5vw, 3rem);
  margin-bottom: 1rem;
  text-align: center;
  color: var(--color-text);
  font-weight: 900;
  text-transform: uppercase;
}

.legal-card .subtitle {
  text-align: center;
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--color-text-muted);
  margin-bottom: 2rem;
  font-weight: 500;
}

.legal-content {
  margin-top: 2rem;
}

.legal-content h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  color: var(--color-text);
  font-weight: 800;
  text-transform: uppercase;
}

.legal-content h2:first-of-type {
  margin-top: 0;
}

.legal-content h3 {
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
  margin-top: 2rem;
  margin-bottom: 0.75rem;
  color: var(--color-text);
  font-weight: 700;
}

.legal-content p {
  font-size: clamp(1rem, 2vw, 1.125rem);
  color: var(--color-text);
  line-height: 1.8;
  margin-bottom: 1rem;
  font-weight: 500;
}

.legal-content ul {
  list-style: none;
  padding-left: 0;
  margin: 1rem 0;
}

.legal-content ul li {
  padding-left: 1.5rem;
  margin-bottom: 0.75rem;
  position: relative;
  font-size: clamp(1rem, 2vw, 1.125rem);
  line-height: 1.8;
  color: var(--color-text);
  font-weight: 500;
}

.legal-content ul li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--color-accent);
  font-weight: 700;
}

.legal-content strong {
  font-weight: 700;
  color: var(--color-text);
}

.legal-content a {
  color: var(--color-accent);
  border-bottom: 1px solid rgba(37, 99, 235, 0.3);
  transition: all 0.3s ease;
}

.legal-content a:hover {
  color: var(--color-accent-dark);
  border-bottom-color: var(--color-accent);
}

@media (max-width: 480px) {
  body {
    font-size: 16px;
  }

  :root {
    --container-padding: 1rem;
    --spacing-xxl: 4rem;
  }

  .section-hero,
  .section-split,
  .section-editorial,
  .section-two-columns,
  .section-narrative,
  .section-full-width,
  .section-portrait,
  .section-policy,
  .section-progression {
    padding: var(--spacing-lg) 0;
  }
  
  .legal-card {
    padding: 2.5rem 1.5rem;
  }
  
  .legal-content h2 {
    margin-top: 2rem;
  }
}
