/* ===================================================================
   Partylinse – Design System
   =================================================================== */

/* ===================================================================
   FONTS (lokal gehostet – DSGVO-konform, keine externen Requests)
   Dateien siehe /assets/fonts/ (README dort)
   =================================================================== */

/* Outfit (Body) */
@font-face { font-family:'Outfit'; font-style:normal; font-weight:300; font-display:swap;
  src:url('../assets/fonts/outfit-300.woff2') format('woff2'); }
@font-face { font-family:'Outfit'; font-style:normal; font-weight:400; font-display:swap;
  src:url('../assets/fonts/outfit-400.woff2') format('woff2'); }
@font-face { font-family:'Outfit'; font-style:normal; font-weight:500; font-display:swap;
  src:url('../assets/fonts/outfit-500.woff2') format('woff2'); }
@font-face { font-family:'Outfit'; font-style:normal; font-weight:600; font-display:swap;
  src:url('../assets/fonts/outfit-600.woff2') format('woff2'); }
@font-face { font-family:'Outfit'; font-style:normal; font-weight:700; font-display:swap;
  src:url('../assets/fonts/outfit-700.woff2') format('woff2'); }

/* Caveat (Handwritten Akzent) */
@font-face { font-family:'Caveat'; font-style:normal; font-weight:500; font-display:swap;
  src:url('../assets/fonts/caveat-500.woff2') format('woff2'); }
@font-face { font-family:'Caveat'; font-style:normal; font-weight:700; font-display:swap;
  src:url('../assets/fonts/caveat-700.woff2') format('woff2'); }

/* Clash Display (Display / Überschriften) */
@font-face { font-family:'Clash Display'; font-style:normal; font-weight:200; font-display:swap;
  src:url('../assets/fonts/clash-display-200.woff2') format('woff2'); }
@font-face { font-family:'Clash Display'; font-style:normal; font-weight:300; font-display:swap;
  src:url('../assets/fonts/clash-display-300.woff2') format('woff2'); }
@font-face { font-family:'Clash Display'; font-style:normal; font-weight:400; font-display:swap;
  src:url('../assets/fonts/clash-display-400.woff2') format('woff2'); }
@font-face { font-family:'Clash Display'; font-style:normal; font-weight:500; font-display:swap;
  src:url('../assets/fonts/clash-display-500.woff2') format('woff2'); }
@font-face { font-family:'Clash Display'; font-style:normal; font-weight:600; font-display:swap;
  src:url('../assets/fonts/clash-display-600.woff2') format('woff2'); }
@font-face { font-family:'Clash Display'; font-style:normal; font-weight:700; font-display:swap;
  src:url('../assets/fonts/clash-display-700.woff2') format('woff2'); }

:root {
  /* Colors - Warm Dark */
  --color-bg: #13131A;
  --color-surface: #1B1B25;
  --color-surface-elevated: #242430;
  --color-accent: #E8734E;
  --color-accent-hover: #F08563;
  --color-accent-warm: #F0A050;
  --color-text: #F2EFE9;
  --color-text-muted: #A09BA8;
  --color-text-subtle: #6E6A78;
  --color-border: #2A2A38;
  --color-border-light: #363645;
  --color-white: #FFFFFF;
  --color-overlay: rgba(19, 19, 26, 0.85);

  /* Warm section backgrounds (subtle color tints) */
  --color-section-warm: #181820;
  --color-section-warm-2: #1A1A24;

  /* Typography */
  --font-display: 'Clash Display', 'Arial Black', sans-serif;
  --font-body: 'Outfit', 'Segoe UI', sans-serif;

  /* Spacing */
  --space-xs: 4px;
  --space-sm: 8px;
  --space-md: 16px;
  --space-lg: 24px;
  --space-xl: 32px;
  --space-2xl: 48px;
  --space-3xl: 64px;
  --space-4xl: 96px;
  --space-5xl: 128px;

  /* Radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 999px;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.25);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.35);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.45);
  --shadow-glow: 0 0 30px rgba(232, 115, 78, 0.25);

  /* Animation */
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --duration-fast: 200ms;
  --duration: 300ms;
  --duration-slow: 600ms;

  /* Layout */
  --nav-height: 80px;
  --container-max: 1200px;
  --container-padding: 24px;
}

/* ===================================================================
   CUSTOM CAMERA CURSOR (Desktop only)
   =================================================================== */

@media (pointer: fine) {
  body {
    cursor: none;
  }

  a, button, select, input, textarea, details summary,
  .btn, .nav__link, .events__card, .faq__question {
    cursor: none;
  }
}

.cursor {
  display: none;
}

@media (pointer: fine) {
  .cursor {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 99999;
    pointer-events: none;
  }

  .cursor__ring {
    width: 40px;
    height: 40px;
    border: 1.5px solid var(--color-white);
    border-radius: 50%;
    position: absolute;
    top: -20px;
    left: -20px;
    transition: width 0.2s var(--ease), height 0.2s var(--ease), top 0.2s var(--ease), left 0.2s var(--ease), border-color 0.2s;
  }

  .cursor--hover .cursor__ring {
    width: 60px;
    height: 60px;
    top: -30px;
    left: -30px;
    border-color: var(--color-accent);
  }

  .cursor__dot {
    width: 5px;
    height: 5px;
    background: var(--color-white);
    border-radius: 50%;
    position: absolute;
    top: -2.5px;
    left: -2.5px;
  }

  /* Crosshair lines inside ring */
  .cursor__crosshair {
    position: absolute;
    top: -20px;
    left: -20px;
    width: 40px;
    height: 40px;
    transition: width 0.2s var(--ease), height 0.2s var(--ease), top 0.2s var(--ease), left 0.2s var(--ease);
  }

  .cursor--hover .cursor__crosshair {
    width: 60px;
    height: 60px;
    top: -30px;
    left: -30px;
  }

  .cursor__crosshair::before,
  .cursor__crosshair::after {
    content: '';
    position: absolute;
    background: var(--color-white);
    opacity: 0.4;
  }

  .cursor__crosshair::before {
    width: 1px;
    height: 10px;
    left: 50%;
    top: 4px;
    transform: translateX(-50%);
    box-shadow: 0 calc(100% + 2px) 0 0 var(--color-white);
  }

  .cursor__crosshair::after {
    width: 10px;
    height: 1px;
    top: 50%;
    left: 4px;
    transform: translateY(-50%);
    box-shadow: calc(100% + 2px) 0 0 0 var(--color-white);
  }
}

/* ===================================================================
   RESET & BASE
   =================================================================== */

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-height);
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-text);
  background-color: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul, ol {
  list-style: none;
}

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
}

/* ===================================================================
   UTILITIES
   =================================================================== */

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

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto var(--space-3xl);
}

.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: var(--space-md);
}

.section-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(32px, 5vw, 48px);
  line-height: 1.1;
  color: var(--color-white);
  margin-bottom: var(--space-lg);
}

.section-subtitle {
  font-size: 18px;
  line-height: 1.7;
  color: var(--color-text-muted);
}

/* Reveal Animation */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity var(--duration-slow) var(--ease), transform var(--duration-slow) var(--ease);
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

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

/* ===================================================================
   WARM SECTIONS (abwechselnde subtile Hintergrund-Töne)
   =================================================================== */

.section--warm {
  background: var(--color-section-warm);
}

.section--warm-2 {
  background: var(--color-section-warm-2);
}

/* ===================================================================
   BUTTONS
   =================================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  border: none;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: all var(--duration) var(--ease);
  text-decoration: none;
  white-space: nowrap;
}

.btn--primary {
  background: var(--color-accent);
  color: var(--color-white);
  padding: 14px 32px;
}

.btn--primary:hover {
  background: var(--color-accent-hover);
  box-shadow: var(--shadow-glow);
  transform: translateY(-2px);
}

.btn--outline {
  background: transparent;
  color: var(--color-text);
  padding: 14px 32px;
  border: 1.5px solid var(--color-border-light);
}

.btn--outline:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
  transform: translateY(-2px);
}

.btn--lg {
  padding: 18px 40px;
  font-size: 16px;
}

.btn--full {
  width: 100%;
}

.btn__icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* ===================================================================
   NAVIGATION
   =================================================================== */

.nav {
  position: fixed;
  top: 16px;
  left: 16px;
  right: 16px;
  z-index: 1000;
  background: rgba(19, 19, 26, 0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  transition: all var(--duration) var(--ease);
}

.nav--scrolled {
  background: rgba(19, 19, 26, 0.95);
  box-shadow: var(--shadow-md);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  padding: 0 var(--space-lg);
  max-width: none;
}

.nav__logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.nav__logo-img {
  height: 36px;
  width: auto;
  display: block;
}

.nav__logo-text {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  color: var(--color-white);
  letter-spacing: -0.02em;
}

.nav__logo-accent {
  color: var(--color-accent);
  margin-left: 4px;
}

/* Footer logo */
.footer__brand .nav__logo-img {
  height: 32px;
  margin-bottom: var(--space-sm);
}

.nav__links {
  display: flex;
  align-items: center;
  gap: var(--space-xl);
}

.nav__link {
  font-size: 14px;
  font-weight: 500;
  color: var(--color-text-muted);
  transition: color var(--duration-fast);
  position: relative;
}

.nav__link:hover {
  color: var(--color-text);
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-accent);
  transition: width var(--duration) var(--ease);
}

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

.nav__link--cta {
  background: var(--color-accent);
  color: var(--color-white);
  padding: 10px 24px;
  border-radius: var(--radius-full);
  font-weight: 600;
}

.nav__link--cta:hover {
  background: var(--color-accent-hover);
  color: var(--color-white);
}

.nav__link--cta::after {
  display: none;
}

/* Burger */
.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav__burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-text);
  transition: all var(--duration) var(--ease);
  border-radius: 2px;
}

.nav__burger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

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

.nav__burger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ===================================================================
   HERO
   =================================================================== */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: var(--space-5xl) 0 var(--space-4xl);
  background: var(--color-bg);
  color: var(--color-text);
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero__bg-image {
  position: absolute;
  inset: -20% 0 0 0;
  width: 100%;
  height: 140%;
  object-fit: cover;
  object-position: center 30%;
  will-change: transform;
  transition: none;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10, 10, 11, 0.55) 0%,
    rgba(10, 10, 11, 0.7) 40%,
    rgba(10, 10, 11, 0.85) 75%,
    rgba(10, 10, 11, 0.95) 100%
  );
  z-index: 1;
}

.hero__gradient {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(var(--accent-rgb, 245, 166, 35), 0.15) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 80% 50%, rgba(255, 140, 50, 0.08) 0%, transparent 50%),
    radial-gradient(ellipse 50% 80% at 20% 80%, rgba(232, 115, 78, 0.06) 0%, transparent 50%);
}

.hero__noise {
  position: absolute;
  inset: 0;
  z-index: 3;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 128px 128px;
}

.hero__content {
  position: relative;
  z-index: 5;
  text-align: center;
  max-width: 800px;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  padding: 8px 20px;
  background: var(--color-surface);
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-full);
  font-size: 13px;
  font-weight: 500;
  color: var(--color-text-muted);
  margin-bottom: var(--space-2xl);
}

.hero__badge-dot {
  width: 8px;
  height: 8px;
  background: #34C759;
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}

.hero__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(44px, 8vw, 88px);
  line-height: 1.05;
  color: var(--color-white);
  margin-bottom: var(--space-lg);
  letter-spacing: -0.03em;
}

.hero__title-accent {
  background: linear-gradient(135deg, #F5A623, #FF6B4A, #F5A623);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientShift 4s ease-in-out infinite;
}

@keyframes gradientShift {
  0%, 100% { background-position: 0% center; }
  50% { background-position: 100% center; }
}

.hero__subtitle {
  font-size: clamp(16px, 2.5vw, 20px);
  line-height: 1.7;
  color: var(--color-text-muted);
  margin-bottom: var(--space-2xl);
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
}

.hero__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-md);
  margin-bottom: var(--space-4xl);
  flex-wrap: wrap;
}

.hero__price-anchor {
  display: inline-flex;
  align-items: baseline;
  gap: 10px;
  padding: 10px 18px;
  margin-bottom: var(--space-lg);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: var(--color-white);
  font-size: 14px;
  line-height: 1;
}

.hero__price-anchor-from {
  color: var(--color-text-subtle);
  font-size: 13px;
}

.hero__price-anchor-amount {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 22px;
  color: var(--color-accent, #E8734E);
}

.hero__price-anchor-meta {
  color: var(--color-text-subtle);
  font-size: 12px;
}

.hero__stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-3xl);
}

.hero__stat {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero__stat-number {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(28px, 4vw, 40px);
  color: var(--color-white);
  line-height: 1.2;
}

.hero__stat-label {
  font-size: 13px;
  color: var(--color-text-subtle);
  margin-top: 4px;
}

.hero__scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  animation: bounce 2s ease-in-out infinite;
}

.hero__scroll-indicator svg {
  width: 24px;
  height: 24px;
  color: var(--color-text-subtle);
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
  40% { transform: translateX(-50%) translateY(-10px); }
  60% { transform: translateX(-50%) translateY(-5px); }
}

/* ===================================================================
   WHY US
   =================================================================== */

.why {
  padding: var(--space-5xl) 0;
}

.why__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-lg);
}

.why__card {
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl);
  transition: all var(--duration) var(--ease);
}

.why__card:hover {
  border-color: rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.07);
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.why__card-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(var(--accent-rgb, 245, 166, 35), 0.15), rgba(255, 140, 50, 0.1));
  border-radius: var(--radius-md);
  margin-bottom: var(--space-lg);
}

.why__card-icon svg,
.why__card-icon i {
  width: 24px;
  height: 24px;
  color: var(--color-accent);
}

.why__card-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 20px;
  color: var(--color-white);
  margin-bottom: var(--space-sm);
}

.why__card-text {
  font-size: 15px;
  line-height: 1.7;
  color: var(--color-text-muted);
}

/* ===================================================================
   PACKAGES
   =================================================================== */

.packages {
  padding: var(--space-5xl) 0;
  background: var(--color-surface);
}

.packages__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
  align-items: stretch;
}

.packages__card {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: var(--space-2xl);
  position: relative;
  transition: all var(--duration) var(--ease);
  display: flex;
  flex-direction: column;
}

.packages__card .btn {
  margin-top: auto;
}

.packages__card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.packages__card--popular {
  border-color: var(--color-accent);
  box-shadow: 0 0 40px rgba(var(--accent-rgb, 245, 166, 35), 0.15);
}

.packages__card--popular:hover {
  box-shadow: 0 0 60px rgba(232, 115, 78, 0.2);
}

.packages__card-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-accent);
  color: var(--color-white);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 6px 20px;
  border-radius: var(--radius-full);
  white-space: nowrap;
}

.packages__card-header {
  text-align: center;
  margin-bottom: var(--space-2xl);
  padding-bottom: var(--space-2xl);
  border-bottom: 1px solid var(--color-border);
}

.packages__card-label {
  font-size: 13px;
  color: var(--color-text-subtle);
  font-weight: 500;
}

.packages__card-name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 32px;
  color: var(--color-white);
  margin: var(--space-sm) 0 var(--space-md);
}

.packages__card-amount {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 36px;
  color: var(--color-accent);
}

.packages__card-period {
  display: block;
  font-size: 14px;
  color: var(--color-text-subtle);
  margin-top: 4px;
}

.packages__card-features {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  margin-bottom: var(--space-2xl);
}

.packages__card-features li {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: 15px;
  color: var(--color-text-muted);
}

.packages__card-features li svg,
.packages__card-features li i {
  width: 18px;
  height: 18px;
  color: var(--color-accent);
  flex-shrink: 0;
}

.packages__card-note {
  font-size: 12px;
  color: var(--color-text-subtle);
  font-style: italic;
  margin-bottom: var(--space-lg);
  padding-top: var(--space-sm);
}

/* ===================================================================
   EVENTS / EINSATZBEREICHE
   =================================================================== */

.events {
  padding: var(--space-5xl) 0;
}

.events__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}

.events__card {
  display: block;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl);
  transition: all var(--duration) var(--ease);
  cursor: pointer;
}

.events__card:hover {
  border-color: var(--color-accent);
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.events__card:hover .events__card-icon {
  background: var(--color-accent);
}

.events__card:hover .events__card-icon svg {
  color: var(--color-white);
}

.events__card-visual {
  margin-bottom: var(--space-lg);
}

.events__card-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-surface-elevated);
  border-radius: var(--radius-md);
  transition: all var(--duration) var(--ease);
}

.events__card-icon svg {
  width: 28px;
  height: 28px;
  color: var(--color-accent);
  transition: color var(--duration) var(--ease);
}

.events__card-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 22px;
  color: var(--color-white);
  margin-bottom: var(--space-sm);
}

.events__card-text {
  font-size: 15px;
  line-height: 1.7;
  color: var(--color-text-muted);
}

/* Event cards WITH images */
.events__grid--visual {
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-lg);
}

.events__card--visual {
  position: relative;
  min-height: 380px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0;
  border: 1px solid var(--color-border);
  background: var(--color-surface);
  cursor: pointer;
}

.events__card--visual:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  border-color: var(--color-accent);
}

.events__card-image {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.events__card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease), filter 0.8s var(--ease);
  filter: brightness(0.7) saturate(0.9);
}

.events__card--visual:hover .events__card-image img {
  transform: scale(1.08);
  filter: brightness(0.55) saturate(1);
}

.events__card-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(10, 10, 11, 0.95) 0%,
    rgba(10, 10, 11, 0.75) 35%,
    rgba(10, 10, 11, 0.2) 70%,
    rgba(10, 10, 11, 0.1) 100%
  );
}

.events__card--visual .events__card-content {
  position: relative;
  z-index: 1;
  padding: var(--space-2xl);
}

.events__card--visual .events__card-tag {
  position: absolute;
  top: var(--space-lg);
  left: var(--space-lg);
  z-index: 2;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-white);
  background: var(--color-accent);
  padding: 6px 16px;
  border-radius: var(--radius-full);
  box-shadow: 0 4px 12px var(--shadow-glow-color, rgba(232, 115, 78, 0.25));
}

.events__card--visual .events__card-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 28px;
  color: var(--color-white);
  margin-bottom: var(--space-sm);
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.events__card--visual .events__card-text {
  color: rgba(245, 245, 247, 0.85);
  font-size: 15px;
  line-height: 1.7;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
  max-width: 520px;
}

.events__card--visual .events__card-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: var(--space-lg);
  font-size: 14px;
  font-weight: 600;
  color: var(--color-bg);
  background: var(--color-accent);
  padding: 10px 22px;
  border-radius: var(--radius-full);
  transition: all var(--duration) var(--ease);
}

.events__card--visual:hover .events__card-cta {
  background: var(--color-accent-hover);
  box-shadow: var(--shadow-glow);
  gap: 12px;
}

.events__card--visual .events__card-cta svg {
  width: 16px;
  height: 16px;
}

/* Featured card – full width */
.events__card--featured {
  grid-column: 1 / -1;
  min-height: 440px;
}

.events__card--featured .events__card-title {
  font-size: 36px;
}

/* Three-column row for middle cards */
.events__grid--visual .events__card--third {
  /* Will be used when we have 3 in a row */
}

@media (max-width: 768px) {
  .events__grid--visual {
    grid-template-columns: 1fr;
  }
  .events__card--visual {
    min-height: 320px;
  }
  .events__card--featured {
    min-height: 360px;
  }
  .events__card--featured .events__card-title {
    font-size: 28px;
  }
}

/* ===================================================================
   FEATURES
   =================================================================== */

.features {
  padding: var(--space-5xl) 0;
  background: var(--color-surface);
}

.features__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}

.features__item {
  padding: var(--space-2xl);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  background: var(--color-bg);
  transition: all var(--duration) var(--ease);
}

.features__item:hover {
  border-color: var(--color-border-light);
  transform: translateY(-4px);
}

.features__item-number {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 48px;
  color: var(--color-surface-elevated);
  line-height: 1;
  margin-bottom: var(--space-md);
  transition: color var(--duration) var(--ease);
}

.features__item:hover .features__item-number {
  color: var(--color-accent);
}

.features__item-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 20px;
  color: var(--color-white);
  margin-bottom: var(--space-sm);
}

.features__item-text {
  font-size: 15px;
  line-height: 1.7;
  color: var(--color-text-muted);
}

/* ===================================================================
   PROCESS
   =================================================================== */

.process {
  padding: var(--space-5xl) 0;
}

.process__steps {
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.process__step {
  display: flex;
  align-items: flex-start;
  gap: var(--space-xl);
  width: 100%;
}

.process__step-number {
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 28px;
  color: var(--color-accent);
  background: var(--color-surface);
  border: 2px solid var(--color-accent);
  border-radius: 50%;
}

.process__step-content {
  padding-top: 8px;
}

.process__step-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 24px;
  color: var(--color-white);
  margin-bottom: var(--space-sm);
}

.process__step-text {
  font-size: 16px;
  line-height: 1.7;
  color: var(--color-text-muted);
}

.process__connector {
  width: 2px;
  height: 48px;
  background: linear-gradient(to bottom, var(--color-accent), var(--color-border));
  margin: var(--space-md) 0 var(--space-md) 31px;
}

.process__cta {
  text-align: center;
  margin-top: var(--space-3xl);
  padding: var(--space-lg) var(--space-2xl);
  background: var(--color-surface);
  border: 1px dashed var(--color-border-light);
  border-radius: var(--radius-lg);
}

.process__cta-text {
  font-size: 15px;
  color: var(--color-text-muted);
}

.process__cta-text strong {
  color: var(--color-accent);
}

/* ===================================================================
   TESTIMONIALS
   =================================================================== */

.testimonials {
  padding: var(--space-5xl) 0;
  background: var(--color-surface);
}

.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}

.testimonials__card {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: var(--space-2xl);
  transition: all var(--duration) var(--ease);
}

.testimonials__card:hover {
  border-color: var(--color-border-light);
  transform: translateY(-4px);
}

.testimonials__card-stars {
  display: flex;
  gap: 2px;
  margin-bottom: var(--space-lg);
}

.testimonials__card-stars svg {
  width: 18px;
  height: 18px;
  color: var(--color-accent-warm);
}

.testimonials__card-quote {
  font-size: 16px;
  line-height: 1.7;
  color: var(--color-text);
  margin-bottom: var(--space-xl);
  font-style: normal;
}

.testimonials__card-author {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.testimonials__card-avatar {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--color-accent), var(--color-accent-warm));
  border-radius: 50%;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  color: var(--color-white);
}

.testimonials__card-name {
  font-weight: 600;
  font-size: 15px;
  color: var(--color-white);
}

.testimonials__card-event {
  font-size: 13px;
  color: var(--color-text-subtle);
}

/* ===================================================================
   FAQ
   =================================================================== */

.faq {
  padding: var(--space-5xl) 0;
}

.faq__list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.faq__item {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color var(--duration) var(--ease);
}

.faq__item[open] {
  border-color: var(--color-border-light);
}

.faq__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-lg) var(--space-xl);
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 17px;
  color: var(--color-white);
  cursor: pointer;
  list-style: none;
  transition: color var(--duration-fast);
}

.faq__question::-webkit-details-marker {
  display: none;
}

.faq__question:hover {
  color: var(--color-accent);
}

.faq__chevron {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--color-text-subtle);
  transition: transform var(--duration) var(--ease);
}

.faq__item[open] .faq__chevron {
  transform: rotate(180deg);
  color: var(--color-accent);
}

.faq__answer {
  padding: 0 var(--space-xl) var(--space-lg);
}

.faq__answer p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--color-text-muted);
}

/* ===================================================================
   CONTACT
   =================================================================== */

.contact {
  padding: var(--space-5xl) 0;
  background: var(--color-surface);
}

.contact__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: start;
}

.contact__text {
  font-size: 17px;
  line-height: 1.7;
  color: var(--color-text-muted);
  margin-bottom: var(--space-2xl);
}

.contact__details {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.contact__detail {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  font-size: 15px;
  color: var(--color-text-muted);
  transition: color var(--duration-fast);
}

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

.contact__detail svg {
  width: 20px;
  height: 20px;
  color: var(--color-accent);
  flex-shrink: 0;
}

.contact__form-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 20px;
  color: var(--color-white);
  margin-bottom: var(--space-lg);
}

/* Form */
.contact__form {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: var(--space-2xl);
}

.contact__form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
}

.contact__form-group {
  margin-bottom: var(--space-md);
}

.contact__form-label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--color-text-muted);
  margin-bottom: var(--space-sm);
  letter-spacing: 0.02em;
}

.contact__form-input {
  width: 100%;
  padding: 14px 16px;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  color: var(--color-text);
  font-size: 15px;
  transition: border-color var(--duration-fast);
  outline: none;
}

.contact__form-input::placeholder {
  color: var(--color-text-subtle);
}

.contact__form-input:focus {
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(232, 115, 78, 0.1);
}

.contact__form-textarea {
  resize: vertical;
  min-height: 100px;
}

select.contact__form-input {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%238E8E93' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 44px;
}

/* Contact Channels */
.contact__channels {
  display: flex;
  flex-direction: column;
}

.contact__channels-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 28px;
  color: var(--color-white);
  margin-bottom: var(--space-sm);
}

.contact__channels-sub {
  font-size: 15px;
  color: var(--color-text-muted);
  margin-bottom: var(--space-xl);
}

.contact__channel-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-sm);
}

.contact__channel {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
  padding: var(--space-lg) var(--space-md);
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  transition: all var(--duration) var(--ease);
  text-decoration: none;
}

.contact__channel:hover {
  border-color: var(--color-accent);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.contact__channel h4 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 15px;
  color: var(--color-white);
}

.contact__channel span {
  font-size: 12px;
  color: var(--color-text-muted);
  word-break: break-all;
}

.contact__channel-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-md);
}

.contact__channel-icon--phone {
  background: rgba(232, 115, 78, 0.1);
  color: var(--color-accent);
}

.contact__channel-icon--mail {
  background: rgba(106, 155, 204, 0.1);
  color: #6A9BCC;
}

.contact__channel-icon--wa {
  background: rgba(37, 211, 102, 0.1);
  color: #25D366;
}

.contact__channel-icon--location {
  background: rgba(255, 140, 50, 0.1);
  color: var(--color-accent-warm);
}

.contact__channel--whatsapp:hover {
  border-color: #25D366;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.12);
}

/* Contact Quote */
.contact__quote {
  margin-top: var(--space-xl);
  padding: var(--space-lg);
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  position: relative;
}

.contact__quote::before {
  content: '\201C';
  position: absolute;
  top: -8px;
  left: 16px;
  font-size: 48px;
  font-family: Georgia, serif;
  color: var(--color-accent);
  line-height: 1;
  opacity: 0.4;
}

.contact__quote blockquote {
  font-size: 14px;
  line-height: 1.7;
  color: var(--color-text-muted);
  font-style: italic;
  margin-bottom: var(--space-md);
}

.contact__quote-author {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.contact__quote-avatar {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--color-accent), var(--color-accent-warm));
  border-radius: 50%;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 11px;
  color: var(--color-white);
}

.contact__quote-author strong {
  display: block;
  font-size: 13px;
  color: var(--color-text);
}

.contact__quote-author span {
  font-size: 11px;
  color: var(--color-text-subtle);
}

/* Compact process steps */
.contact__process {
  margin-top: var(--space-xl);
  padding: var(--space-lg);
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
}

.contact__process-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 16px;
  color: var(--color-white);
  margin-bottom: var(--space-md);
}

.contact__process-steps {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.contact__process-step {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  font-size: 13px;
  color: var(--color-text-muted);
  line-height: 1.4;
}

.contact__process-step strong {
  color: var(--color-text);
}

.contact__process-num {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  color: var(--color-accent);
  border: 1.5px solid var(--color-accent);
  border-radius: 50%;
  flex-shrink: 0;
}

/* Trust badges */
.contact__trust {
  display: flex;
  gap: var(--space-lg);
  margin-top: var(--space-xl);
  padding-top: var(--space-xl);
  border-top: 1px solid var(--color-border);
}

.contact__trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
}

.contact__trust-number {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 24px;
  color: var(--color-accent);
  line-height: 1.2;
}

.contact__trust-label {
  font-size: 11px;
  color: var(--color-text-subtle);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
}

/* Season Hint */
.contact__season {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  padding: 14px 16px;
  background: rgba(255, 140, 50, 0.08);
  border: 1px solid rgba(255, 140, 50, 0.25);
  border-radius: var(--radius-md);
  font-size: 13px;
  line-height: 1.5;
  color: var(--color-accent-warm);
  margin-top: var(--space-md);
}

.contact__season svg {
  flex-shrink: 0;
  margin-top: 1px;
}

/* Config transfer banner */
.config-banner {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding: 14px var(--space-md);
  background: rgba(52, 199, 89, 0.1);
  border: 1px solid rgba(52, 199, 89, 0.3);
  border-radius: var(--radius-sm);
  margin-bottom: var(--space-lg);
  font-size: 14px;
  color: var(--color-text);
}

.config-banner svg {
  color: #34C759;
  flex-shrink: 0;
}

.config-banner strong {
  color: var(--color-accent);
}

.contact__form-hint {
  font-size: 13px;
  color: var(--color-text-subtle);
  text-align: center;
  margin-top: var(--space-md);
}

.contact__form-consent {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 16px;
  margin-bottom: var(--space-md);
  background: rgba(255,255,255,0.02);
  border: 1px dashed var(--color-border-light);
  border-radius: var(--radius-md);
  cursor: pointer;
  user-select: none;
  transition: border-color 0.2s, background 0.2s;
}

.contact__form-consent:hover {
  border-color: var(--color-accent);
}

.contact__form-consent input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.contact__form-consent-box {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border: 2px solid var(--color-border-light);
  border-radius: 5px;
  background: var(--color-surface);
  position: relative;
  margin-top: 1px;
  transition: border-color 0.2s, background 0.2s;
}

.contact__form-consent-box::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 1px;
  width: 6px;
  height: 11px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg) scale(0);
  transition: transform 0.2s;
}

.contact__form-consent input:checked ~ .contact__form-consent-box {
  border-color: var(--color-accent);
  background: var(--color-accent);
}

.contact__form-consent input:checked ~ .contact__form-consent-box::after {
  transform: rotate(45deg) scale(1);
}

.contact__form-consent input:focus-visible ~ .contact__form-consent-box {
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
}

.contact__form-consent:has(input:checked) {
  border-style: solid;
  border-color: var(--color-accent);
  background: rgba(232,115,78,0.06);
}

.contact__form-consent-text {
  flex: 1;
  font-size: 12.5px;
  line-height: 1.5;
  color: var(--color-text-muted);
}

.contact__form-consent-text a {
  color: var(--color-accent);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.contact__form-consent-text a:hover {
  color: var(--color-accent-hover);
}

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

.footer {
  padding: var(--space-3xl) 0 var(--space-xl);
  background: var(--color-bg);
  border-top: 1px solid var(--color-border);
}

.footer__inner {
  display: flex;
  justify-content: space-between;
  gap: var(--space-2xl);
  padding-bottom: var(--space-2xl);
  border-bottom: 1px solid var(--color-border);
  margin-bottom: var(--space-xl);
}

.footer__tagline {
  font-size: 14px;
  color: var(--color-text-subtle);
  margin-top: var(--space-sm);
}

.footer__links {
  display: flex;
  gap: var(--space-3xl);
}

.footer__col {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.footer__col-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14px;
  color: var(--color-text);
  margin-bottom: var(--space-sm);
}

.footer__col a,
.footer__col span {
  font-size: 14px;
  color: var(--color-text-muted);
  transition: color var(--duration-fast);
}

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

/* Social Links */
.footer__social {
  display: flex;
  gap: var(--space-sm);
  margin-top: var(--space-md);
}

.footer__social-link {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: var(--color-text-muted);
  transition: all var(--duration-fast);
}

.footer__social-link svg {
  width: 18px;
  height: 18px;
}

.footer__social-link:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--color-accent);
  color: var(--color-accent);
  transform: translateY(-2px);
}

/* Kundenbereich */
.footer__kunden {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: var(--space-sm);
}

.footer__brand .footer__kunden-btn {
  margin-top: var(--space-md);
}

.footer__kunden-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-full);
  font-size: 13px;
  font-weight: 600;
  color: var(--color-text-muted);
  transition: all var(--duration) var(--ease);
  text-decoration: none;
}

.footer__kunden-btn:hover {
  background: var(--color-accent);
  border-color: var(--color-accent);
  color: var(--color-white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow);
}

.footer__kunden-hint {
  font-size: 12px;
  color: var(--color-text-subtle);
  text-align: right;
}

.footer__bottom-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-md);
}

.footer__bottom-copy {
  font-size: 13px;
  color: var(--color-text-subtle);
}

.footer__bottom-legal {
  display: flex;
  gap: var(--space-lg);
}

.footer__bottom-legal a {
  font-size: 13px;
  color: var(--color-text-subtle);
  transition: color var(--duration-fast);
}

.footer__bottom-legal a:hover {
  color: var(--color-accent);
}

.footer__bottom-credit {
  font-size: 11px;
  color: var(--color-text-subtle);
  text-align: center;
  margin-top: var(--space-lg);
  padding-top: var(--space-md);
  border-top: 1px solid var(--color-border);
  opacity: 0.6;
}

.footer__bottom-credit a {
  color: var(--color-text-muted);
  font-weight: 600;
  transition: color var(--duration-fast);
}

.footer__bottom-credit a:hover {
  color: var(--color-accent);
  opacity: 1;
}

/* ===================================================================
   EVERSPICE CREDIT MODAL (Easter Egg)
   =================================================================== */

.credit-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: var(--space-lg);
}

.credit-modal.active {
  display: flex;
}

.credit-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 11, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  animation: fadeIn 0.3s ease;
  cursor: pointer;
}

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

.credit-modal__content {
  position: relative;
  background: var(--color-surface);
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-xl);
  max-width: 520px;
  width: 100%;
  padding: var(--space-3xl) var(--space-2xl);
  text-align: center;
  animation: modalPop 0.4s var(--ease);
  overflow: hidden;
}

.credit-modal__content::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(232, 115, 78, 0.08) 0%, transparent 60%);
  pointer-events: none;
}

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

.credit-modal__close {
  position: absolute;
  top: var(--space-md);
  right: var(--space-md);
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: 1px solid var(--color-border);
  border-radius: 50%;
  cursor: pointer;
  color: var(--color-text-muted);
  transition: all var(--duration-fast);
  z-index: 1;
}

.credit-modal__close:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
}

.credit-modal__emoji {
  font-size: 64px;
  line-height: 1;
  margin-bottom: var(--space-lg);
  position: relative;
  animation: cameraShake 0.6s ease 0.3s;
}

@keyframes cameraShake {
  0%, 100% { transform: rotate(0deg); }
  15% { transform: rotate(-12deg); }
  30% { transform: rotate(8deg); }
  45% { transform: rotate(-5deg); }
  60% { transform: rotate(3deg); }
}

.credit-modal__flash {
  position: absolute;
  inset: 0;
  background: white;
  border-radius: var(--radius-xl);
  opacity: 0;
  pointer-events: none;
  animation: modalFlash 0.4s ease 0.5s;
}

@keyframes modalFlash {
  0% { opacity: 0.7; }
  100% { opacity: 0; }
}

.credit-modal__tagline {
  font-family: 'Caveat', cursive;
  font-size: 22px;
  color: var(--color-accent);
  margin-bottom: var(--space-sm);
  position: relative;
}

.credit-modal__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 28px;
  color: var(--color-white);
  margin-bottom: var(--space-md);
  position: relative;
}

.credit-modal__text {
  font-size: 15px;
  line-height: 1.8;
  color: var(--color-text-muted);
  margin-bottom: var(--space-xl);
  position: relative;
}

.credit-modal__text strong {
  color: var(--color-text);
}

.credit-modal__slogan {
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-text-subtle);
  margin-bottom: var(--space-xl);
  position: relative;
}

.credit-modal__btn {
  position: relative;
}

.credit-modal__strip {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-bottom: var(--space-lg);
  position: relative;
}

.credit-modal__strip-photo {
  width: 48px;
  height: 48px;
  background: var(--color-surface-elevated);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  animation: stripReveal 0.3s ease backwards;
}

.credit-modal__strip-photo:nth-child(1) { animation-delay: 0.6s; }
.credit-modal__strip-photo:nth-child(2) { animation-delay: 0.8s; }
.credit-modal__strip-photo:nth-child(3) { animation-delay: 1.0s; }
.credit-modal__strip-photo:nth-child(4) { animation-delay: 1.2s; }

@keyframes stripReveal {
  from { transform: scale(0) rotate(-10deg); opacity: 0; }
  to { transform: scale(1) rotate(0deg); opacity: 1; }
}

@media (max-width: 768px) {
  .footer__bottom-row {
    flex-direction: column;
    text-align: center;
  }

  .footer__bottom-legal {
    justify-content: center;
  }
}

/* ===================================================================
   STICKY MOBILE CTA
   =================================================================== */

.sticky-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  padding: var(--space-md);
  background: linear-gradient(to top, var(--color-bg) 60%, transparent);
  z-index: 900;
  transform: translateY(100%);
  transition: transform var(--duration) var(--ease);
}

.sticky-cta.visible {
  transform: translateY(0);
}

/* ===================================================================
   HANDWRITTEN ACCENTS (Anti-AI)
   =================================================================== */

/* Caveat wird oben via @font-face lokal geladen */

.handwritten {
  font-family: 'Caveat', cursive;
  font-weight: 700;
  font-size: 1.15em;
  color: var(--color-accent);
  display: inline-block;
  position: relative;
}

.handwritten::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: -4px;
  right: -4px;
  height: 8px;
  background: var(--color-accent);
  opacity: 0.15;
  border-radius: 4px;
  transform: rotate(-1deg);
}

/* ===================================================================
   FOTOSTRIP SHOWCASE
   =================================================================== */

.strip {
  padding: var(--space-5xl) 0;
  overflow: hidden;
}

.strip__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
}

.strip__text .section-title {
  text-align: left;
}

.strip__text .section-subtitle {
  text-align: left;
}

.strip__visual {
  display: flex;
  justify-content: center;
}

.strip__printer {
  position: relative;
  width: 240px;
}

.strip__printer-slot {
  width: 240px;
  height: 16px;
  background: var(--color-surface-elevated);
  border-radius: 0 0 8px 8px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
}

.strip__printer-slot::before {
  content: '';
  position: absolute;
  top: 0;
  left: 20px;
  right: 20px;
  height: 3px;
  background: var(--color-border);
  border-radius: 0 0 2px 2px;
}

.strip__photo-strip {
  width: 220px;
  margin: 0 auto;
  background: var(--color-white);
  border-radius: 4px;
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  box-shadow: var(--shadow-lg);
  transform: translateY(-30px);
  opacity: 0;
  transition: none;
}

.strip__photo-strip.strip--animate {
  animation: stripSlide 1.5s var(--ease) forwards;
}

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

.strip__frame {
  position: relative;
  aspect-ratio: 4/3;
  border-radius: 2px;
  overflow: hidden;
}

.strip__frame-img {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.strip__frame-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.1);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.strip__frame-img img.visible {
  opacity: 1;
  transform: scale(1);
}

.strip__frame-flash {
  position: absolute;
  inset: 0;
  background: white;
  opacity: 0;
  pointer-events: none;
}

.strip__frame-flash.flash {
  animation: flashBurst 0.4s ease-out;
}

@keyframes flashBurst {
  0% { opacity: 0.9; }
  100% { opacity: 0; }
}

/* Strip format cards */
.strip__formats {
  display: flex;
  gap: var(--space-md);
  margin-top: var(--space-xl);
}

.strip__format-card {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  padding: 14px 18px;
  background: var(--color-surface);
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-lg);
  transition: all var(--duration) var(--ease);
  flex: 1;
}

.strip__format-card:hover {
  border-color: var(--color-accent);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

/* Mini strip preview illustration */
.strip__format-preview {
  flex-shrink: 0;
  display: flex;
  gap: 3px;
  padding: 6px;
  background: var(--color-white);
  border-radius: 4px;
  box-shadow: var(--shadow-sm);
}

.strip__format-preview--strip {
  flex-direction: column;
  width: 36px;
}

.strip__format-preview--strip span {
  display: block;
  height: 10px;
  background: linear-gradient(135deg, var(--shadow-glow-color, rgba(232, 115, 78, 0.25)), rgba(255, 140, 50, 0.2));
  border-radius: 2px;
}

.strip__format-preview--single {
  width: 48px;
  height: 36px;
}

.strip__format-preview--single span {
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--shadow-glow-color, rgba(232, 115, 78, 0.25)), rgba(255, 140, 50, 0.2));
  border-radius: 2px;
}

.strip__format-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.strip__format-info strong {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-text);
}

.strip__format-info small {
  font-size: 12px;
  color: var(--color-text-subtle);
  line-height: 1.4;
}

.strip__format-card--active {
  border-color: var(--color-accent);
  background: rgba(232, 115, 78, 0.05);
}

.strip__format-card--active .strip__format-preview {
  box-shadow: 0 0 0 2px var(--color-accent);
}

@media (max-width: 768px) {
  .strip__formats {
    flex-direction: column;
  }
}

/* Einzelfoto variant */
.strip__single-wrap {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.strip__photo-strip--single {
  width: 280px;
  margin: 0 auto;
  padding: 12px;
  opacity: 1;
  transform: translateY(0);
  animation: none;
}

.strip__photo-strip--single .strip__frame {
  aspect-ratio: 4/3;
}

.strip__photo-strip--single .strip__branding {
  margin-top: 4px;
}

.strip__branding {
  text-align: center;
  padding: 8px 0 4px;
  border-top: 1px solid #eee;
}

.strip__branding-logo {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 11px;
  color: #1C1C1E;
  letter-spacing: 0.02em;
}

.strip__branding-logo span {
  color: var(--color-accent);
  margin-left: 3px;
}

.strip__branding-date {
  display: block;
  font-size: 9px;
  color: #8E8E93;
  margin-top: 2px;
  font-family: var(--font-body);
}

/* ===================================================================
   WEBCAM FOTOBOX DEMO
   =================================================================== */

.demo {
  padding: var(--space-5xl) 0;
  background: var(--color-surface);
}

.demo__booth {
  max-width: 640px;
  margin: 0 auto;
  position: relative;
}

.demo__screen {
  position: relative;
  background: var(--color-bg);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 2px solid var(--color-border);
  aspect-ratio: 4/3;
}

.demo__screen--result {
  aspect-ratio: unset;
}

.demo__booth-frame {
  position: absolute;
  inset: -3px;
  border-radius: calc(var(--radius-lg) + 3px);
  pointer-events: none;
  z-index: 1;
}

.demo__booth-frame span {
  position: absolute;
  width: 40px;
  height: 40px;
  border: 2px solid var(--color-accent);
}

.demo__booth-frame span:nth-child(1) {
  top: 0; left: 0;
  border-right: none; border-bottom: none;
  border-radius: var(--radius-md) 0 0 0;
}

.demo__booth-frame span:nth-child(2) {
  top: 0; right: 0;
  border-left: none; border-bottom: none;
  border-radius: 0 var(--radius-md) 0 0;
}

.demo__booth-frame span:nth-child(3) {
  bottom: 0; left: 0;
  border-right: none; border-top: none;
  border-radius: 0 0 0 var(--radius-md);
}

.demo__booth-frame span:nth-child(4) {
  bottom: 0; right: 0;
  border-left: none; border-top: none;
  border-radius: 0 0 var(--radius-md) 0;
}

/* Idle */
.demo__idle {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding: var(--space-2xl);
  text-align: center;
}

.demo__idle-icon {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-surface);
  border-radius: 50%;
  margin-bottom: var(--space-lg);
}

.demo__idle-icon svg {
  width: 40px;
  height: 40px;
  color: var(--color-accent);
}

.demo__idle-text {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 600;
  color: var(--color-white);
  margin-bottom: var(--space-lg);
}

.demo__idle-hint {
  font-size: 12px;
  color: var(--color-text-subtle);
  margin-top: var(--space-md);
}

/* Camera */
.demo__camera {
  position: absolute;
  inset: 0;
}

.demo__camera video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scaleX(-1);
}

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

/* Effect Toolbar */
.demo__toolbar {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: var(--space-md);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-top: none;
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
}

.demo__effects {
  display: flex;
  gap: 6px;
  background: rgba(10, 10, 11, 0.75);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 8px 12px;
  border-radius: var(--radius-full);
  border: 1px solid var(--color-border);
}

.demo__shutter {
  animation: pulseShutter 2s ease-in-out infinite;
}

@keyframes pulseShutter {
  0%, 100% { box-shadow: 0 0 0 0 rgba(232, 115, 78, 0.4); }
  50% { box-shadow: 0 0 0 10px rgba(232, 115, 78, 0); }
}

.demo__shutter:hover {
  animation: none;
}

.demo__effect {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  background: none;
  border: 2px solid transparent;
  border-radius: var(--radius-sm);
  padding: 6px 10px;
  cursor: pointer;
  transition: all var(--duration-fast);
  color: var(--color-text-muted);
}

.demo__effect svg {
  width: 22px;
  height: 22px;
}

.demo__effect span {
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.demo__effect:hover {
  color: var(--color-white);
}

.demo__effect--active {
  border-color: var(--color-accent);
  color: var(--color-accent);
  background: rgba(232, 115, 78, 0.1);
}

.demo__effect-preview {
  display: block;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.demo__effect--active .demo__effect-preview {
  border-color: var(--color-accent);
}

/* Mode Switch */
.demo__mode-switch {
  display: flex;
  gap: 4px;
  background: rgba(10, 10, 11, 0.75);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 4px;
  border-radius: var(--radius-full);
  border: 1px solid var(--color-border);
}

.demo__mode {
  display: flex;
  align-items: center;
  gap: 6px;
  background: none;
  border: none;
  padding: 8px 16px;
  border-radius: var(--radius-full);
  cursor: pointer;
  color: var(--color-text-muted);
  font-size: 13px;
  font-weight: 600;
  transition: all var(--duration-fast);
}

.demo__mode svg {
  width: 18px;
  height: 18px;
}

.demo__mode--active {
  background: var(--color-accent);
  color: var(--color-white);
}

.demo__mode:hover:not(.demo__mode--active) {
  color: var(--color-white);
}

.demo__viewfinder {
  position: absolute;
  inset: 10%;
  pointer-events: none;
}

.demo__viewfinder-corner {
  position: absolute;
  width: 24px;
  height: 24px;
  border: 2px solid rgba(255, 255, 255, 0.6);
}

.demo__viewfinder-corner--tl { top: 0; left: 0; border-right: none; border-bottom: none; }
.demo__viewfinder-corner--tr { top: 0; right: 0; border-left: none; border-bottom: none; }
.demo__viewfinder-corner--bl { bottom: 0; left: 0; border-right: none; border-top: none; }
.demo__viewfinder-corner--br { bottom: 0; right: 0; border-left: none; border-top: none; }

.demo__countdown {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
}

.demo__countdown span {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 120px;
  color: var(--color-white);
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
  animation: countPulse 1s ease-in-out;
}

@keyframes countPulse {
  0% { transform: scale(0.5); opacity: 0; }
  50% { transform: scale(1.1); opacity: 1; }
  100% { transform: scale(1); opacity: 1; }
}

.demo__flash {
  position: absolute;
  inset: 0;
  background: white;
  opacity: 0;
  pointer-events: none;
  z-index: 10;
}

.demo__flash.flash-active {
  animation: flashScreen 0.5s ease-out;
}

@keyframes flashScreen {
  0% { opacity: 0.95; }
  100% { opacity: 0; }
}

/* Result */
.demo__result {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: var(--space-xl) var(--space-lg);
  gap: var(--space-lg);
  overflow-y: auto;
  max-height: 100%;
}

.demo__result canvas {
  display: none;
}

.demo__result-strip {
  background: white;
  padding: 10px;
  border-radius: 4px;
  box-shadow: var(--shadow-md);
  transform: rotate(-2deg);
  max-width: 180px;
  flex-shrink: 0;
}

.demo__result-photos--single + .demo__result-branding {
  margin-top: 6px;
}

.demo__result:has(.demo__result-photos--single) .demo__result-strip {
  max-width: 300px;
  transform: rotate(-1deg);
}

.demo__result-photos {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.demo__result-photos img {
  width: 100%;
  border-radius: 2px;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.demo__result-photos--single {
  max-width: 320px;
}

.demo__result-photos--single img {
  aspect-ratio: auto;
  max-width: 100%;
}

.demo__result-branding {
  text-align: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 10px;
  color: #1C1C1E;
  padding: 8px 0 4px;
  border-top: 1px solid #eee;
  margin-top: 6px;
}

.demo__result-branding span {
  color: var(--color-accent);
  margin-left: 3px;
}

.demo__result-actions {
  display: flex;
  gap: var(--space-sm);
  justify-content: center;
}

/* Share */
.demo__share {
  width: 100%;
  padding-top: var(--space-md);
  border-top: 1px solid var(--color-border);
}

.demo__share-hint {
  font-size: 12px;
  color: var(--color-text-subtle);
  text-align: center;
  margin-top: var(--space-sm);
}

.demo__result-book {
  margin-top: var(--space-sm);
}

/* Confetti */
.confetti-container {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9998;
  overflow: hidden;
}

.confetti {
  position: absolute;
  top: -20px;
  width: 10px;
  height: 10px;
  border-radius: 2px;
  animation: confettiFall linear forwards;
}

@keyframes confettiFall {
  0% {
    transform: translateY(0) translateX(0) rotate(0deg) scale(1);
    opacity: 1;
  }
  80% {
    opacity: 1;
  }
  100% {
    transform: translateY(100vh) translateX(var(--drift, 0px)) rotate(720deg) scale(0.3);
    opacity: 0;
  }
}

/* ===================================================================
   PAKET-KONFIGURATOR
   =================================================================== */

.configurator {
  padding: var(--space-5xl) 0;
}

.config {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: var(--space-2xl);
  align-items: start;
}

.config__options {
  display: flex;
  flex-direction: column;
  gap: var(--space-2xl);
}

.config__group {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
}

.config__group-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--space-md);
}

.config__label {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 18px;
  color: var(--color-white);
}

.config__value {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 18px;
  color: var(--color-accent);
}

/* Range Slider */
.config__slider {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 6px;
  background: var(--color-border-light);
  border-radius: 3px;
  outline: none;
}

.config__slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 24px;
  height: 24px;
  background: var(--color-accent);
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 0 10px rgba(232, 115, 78, 0.4);
  transition: transform 0.2s, box-shadow 0.2s;
}

.config__slider::-webkit-slider-thumb:hover {
  transform: scale(1.15);
  box-shadow: 0 0 20px rgba(232, 115, 78, 0.5);
}

.config__slider::-moz-range-thumb {
  width: 24px;
  height: 24px;
  background: var(--color-accent);
  border: none;
  border-radius: 50%;
  cursor: pointer;
}

.config__range-labels {
  display: flex;
  justify-content: space-between;
  margin-top: var(--space-sm);
  font-size: 12px;
  color: var(--color-text-subtle);
}

/* Toggles */
.config__toggles {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.config__toggle {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  padding: 12px 16px;
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: border-color var(--duration-fast);
}

.config__toggle:hover {
  border-color: var(--color-border-light);
}

.config__toggle input {
  display: none;
}

.config__toggle-track {
  width: 44px;
  height: 24px;
  background: var(--color-surface-elevated);
  border-radius: 12px;
  position: relative;
  flex-shrink: 0;
  transition: background var(--duration-fast);
}

.config__toggle-track::after {
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  width: 18px;
  height: 18px;
  background: var(--color-text-subtle);
  border-radius: 50%;
  transition: all var(--duration-fast) var(--ease);
}

.config__toggle input:checked + .config__toggle-track {
  background: var(--color-accent);
}

.config__toggle input:checked + .config__toggle-track::after {
  transform: translateX(20px);
  background: var(--color-white);
}

.config__toggle-info {
  display: flex;
  justify-content: space-between;
  flex: 1;
}

.config__toggle-name {
  font-size: 15px;
  color: var(--color-text);
  font-weight: 500;
}

.config__toggle-price {
  font-size: 14px;
  color: var(--color-text-muted);
  font-weight: 500;
}

/* Price Summary */
.config__summary {
  position: sticky;
  top: 120px;
}

.config__summary-inner {
  background: var(--color-surface);
  border: 2px solid var(--color-accent);
  border-radius: var(--radius-xl);
  padding: var(--space-2xl);
  text-align: center;
  box-shadow: 0 0 40px rgba(232, 115, 78, 0.1);
}

.config__summary-label {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: var(--space-md);
}

.config__summary-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 4px;
  margin-bottom: var(--space-sm);
}

.config__summary-ab {
  font-size: 16px;
  color: var(--color-text-muted);
}

.config__summary-amount {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 56px;
  color: var(--color-accent);
  line-height: 1;
  transition: all 0.3s var(--ease);
}

.config__summary-currency {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 24px;
  color: var(--color-accent);
}

.config__summary-note {
  font-size: 13px;
  color: var(--color-text-subtle);
  margin-bottom: var(--space-xl);
}

.config__summary-list {
  text-align: left;
  margin-bottom: var(--space-xl);
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.config__summary-list li {
  font-size: 14px;
  color: var(--color-text-muted);
  display: flex;
  align-items: center;
  gap: 8px;
}

.config__summary-list li::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--color-accent);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ===================================================================
   PAGE HEADER (Unterseiten)
   =================================================================== */

.page-header {
  padding: calc(var(--nav-height) + var(--space-4xl)) 0 var(--space-3xl);
  text-align: center;
  position: relative;
}

.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 0%, rgba(232, 115, 78, 0.08) 0%, transparent 60%);
  pointer-events: none;
}

.page-header .container {
  position: relative;
}

.page-header__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(36px, 6vw, 64px);
  line-height: 1.1;
  color: var(--color-white);
  margin-bottom: var(--space-md);
  letter-spacing: -0.02em;
}

.page-header__title-accent {
  background: linear-gradient(135deg, var(--color-accent), var(--color-accent-warm));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.page-header__subtitle {
  font-size: 18px;
  line-height: 1.7;
  color: var(--color-text-muted);
  max-width: 600px;
  margin: 0 auto;
}

.page-header .section-label {
  margin-bottom: var(--space-md);
}

.page-header .section-title {
  margin-bottom: var(--space-md);
}

.page-header .section-subtitle {
  max-width: 600px;
  margin: 0 auto;
}

/* ===================================================================
   CTA BANNER
   =================================================================== */

.cta-banner {
  padding: var(--space-5xl) 0;
}

.cta-banner__inner {
  text-align: center;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: var(--space-4xl) var(--space-2xl);
  position: relative;
  overflow: hidden;
}

.cta-banner__inner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 0%, rgba(232, 115, 78, 0.08) 0%, transparent 60%);
  pointer-events: none;
}

.cta-banner__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(28px, 4vw, 40px);
  color: var(--color-white);
  margin-bottom: var(--space-md);
  position: relative;
}

.cta-banner__text {
  font-size: 17px;
  color: var(--color-text-muted);
  margin-bottom: var(--space-xl);
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.cta-banner__actions {
  display: flex;
  justify-content: center;
  gap: var(--space-md);
  flex-wrap: wrap;
  position: relative;
}

/* Fancy CTA variant */
.cta-banner__inner--fancy {
  border: 1px solid var(--color-accent);
  box-shadow: 0 0 60px rgba(232, 115, 78, 0.1), inset 0 0 60px rgba(232, 115, 78, 0.03);
}

.cta-banner__inner--fancy::before {
  background:
    radial-gradient(ellipse 50% 70% at 50% 0%, rgba(232, 115, 78, 0.12) 0%, transparent 60%),
    radial-gradient(ellipse 40% 50% at 80% 100%, rgba(255, 140, 50, 0.06) 0%, transparent 50%);
}

.cta-banner__emoji {
  font-size: 48px;
  margin-bottom: var(--space-md);
  animation: floatEmoji 3s ease-in-out infinite;
  position: relative;
}

@keyframes floatEmoji {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  25% { transform: translateY(-6px) rotate(5deg); }
  75% { transform: translateY(-3px) rotate(-3deg); }
}

.cta-banner__features {
  display: flex;
  justify-content: center;
  gap: var(--space-xl);
  flex-wrap: wrap;
  margin-bottom: var(--space-xl);
  position: relative;
}

.cta-banner__feature {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 500;
  color: var(--color-text-muted);
}

.cta-banner__feature svg {
  color: var(--color-accent);
  flex-shrink: 0;
}

/* ===================================================================
   POLAROID CTA
   =================================================================== */

.polaroid-cta {
  padding: var(--space-5xl) 0;
}

.polaroid-cta__inner {
  text-align: center;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-xl);
  padding: var(--space-3xl) var(--space-2xl) var(--space-2xl);
  position: relative;
  overflow: hidden;
}

.polaroid-cta__inner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 0%, rgba(232, 115, 78, 0.06) 0%, transparent 60%);
  pointer-events: none;
}

/* Polaroid Wall */
.polaroid-cta__wall {
  display: flex;
  justify-content: center;
  gap: var(--space-md);
  margin-bottom: var(--space-2xl);
  position: relative;
  padding: 0 var(--space-lg);
}

.polaroid-cta__photo {
  background: var(--color-white);
  padding: 6px 6px 28px;
  border-radius: 3px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
  transform: rotate(var(--rotate, 0deg));
  transition: all 0.4s var(--ease);
  flex-shrink: 0;
  width: 110px;
  position: relative;
  animation: polaroidFloat 3s ease-in-out infinite;
  animation-delay: var(--delay, 0s);
}

@keyframes polaroidFloat {
  0%, 100% { transform: rotate(var(--rotate, 0deg)) translateY(0); }
  50% { transform: rotate(var(--rotate, 0deg)) translateY(-6px); }
}

.polaroid-cta__photo:hover {
  transform: rotate(0deg) translateY(-12px) scale(1.1);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4);
  z-index: 2;
  animation: none;
}

.polaroid-cta__photo img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 1px;
  display: block;
}

.polaroid-cta__photo span {
  display: block;
  text-align: center;
  font-family: 'Caveat', cursive;
  font-size: 13px;
  font-weight: 700;
  color: #1C1C1E;
  margin-top: 6px;
  position: absolute;
  bottom: 6px;
  left: 0;
  right: 0;
}

/* Text */
.polaroid-cta__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(26px, 4vw, 38px);
  color: var(--color-text);
  margin-bottom: var(--space-md);
  position: relative;
}

.polaroid-cta__text {
  font-size: 17px;
  color: var(--color-text-muted);
  margin-bottom: var(--space-xl);
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.polaroid-cta__actions {
  display: flex;
  justify-content: center;
  gap: var(--space-md);
  flex-wrap: wrap;
  position: relative;
}

@media (max-width: 768px) {
  .polaroid-cta__wall {
    gap: var(--space-sm);
    overflow-x: auto;
    justify-content: flex-start;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: var(--space-sm);
  }

  .polaroid-cta__wall::-webkit-scrollbar {
    display: none;
  }

  .polaroid-cta__photo {
    width: 85px;
    padding: 4px 4px 24px;
    min-width: 85px;
  }

  .polaroid-cta__photo span {
    font-size: 11px;
  }
}

/* ===================================================================
   LEGAL PAGES (Impressum, Datenschutz)
   =================================================================== */

.legal {
  padding: calc(var(--nav-height) + var(--space-4xl)) 0 var(--space-4xl);
  min-height: 80vh;
}

.legal__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(36px, 5vw, 56px);
  color: var(--color-white);
  margin-bottom: var(--space-3xl);
}

.legal__content {
  max-width: 760px;
}

.legal__content h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 22px;
  color: var(--color-white);
  margin-top: var(--space-2xl);
  margin-bottom: var(--space-md);
}

.legal__content h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 18px;
  color: var(--color-text);
  margin-top: var(--space-xl);
  margin-bottom: var(--space-sm);
}

.legal__content p {
  font-size: 15px;
  line-height: 1.8;
  color: var(--color-text-muted);
  margin-bottom: var(--space-md);
}

.legal__content a {
  color: var(--color-accent);
  text-decoration: underline;
  text-underline-offset: 3px;
}

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

.legal__content ul {
  margin-bottom: var(--space-md);
  padding-left: var(--space-xl);
}

.legal__content li {
  font-size: 15px;
  line-height: 1.8;
  color: var(--color-text-muted);
  list-style: disc;
  margin-bottom: var(--space-xs);
}

.legal__content strong {
  color: var(--color-text);
}

/* ===================================================================
   RESPONSIVE
   =================================================================== */

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

  .packages__grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }

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

  .testimonials__grid {
    grid-template-columns: 1fr;
    max-width: 560px;
    margin: 0 auto;
  }

  .contact__inner {
    grid-template-columns: 1fr;
  }

  .contact__channel-grid {
    grid-template-columns: 1fr 1fr;
  }

  .contact__trust {
    justify-content: center;
  }

  .strip__layout {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .strip__text .section-title,
  .strip__text .section-subtitle {
    text-align: center;
  }

  .config {
    grid-template-columns: 1fr;
  }

  .config__summary {
    position: static;
  }
}

@media (max-width: 768px) {
  :root {
    --container-padding: 20px;
    --nav-height: 64px;
  }

  /* Nav Mobile */
  .nav__burger {
    display: flex;
  }

  .nav__links {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    flex-direction: column;
    gap: var(--space-md);
  }

  .nav__links.active {
    display: flex;
  }

  .nav__link--cta {
    width: 100%;
    text-align: center;
  }

  /* Hero */
  .hero {
    padding: var(--space-4xl) 0 var(--space-3xl);
  }

  .hero__stats {
    gap: var(--space-xl);
  }

  .hero__actions {
    flex-direction: column;
    gap: var(--space-sm);
  }

  .hero__actions .btn {
    width: 100%;
  }

  /* Grids */
  .why__grid {
    grid-template-columns: 1fr;
  }

  .events__grid {
    grid-template-columns: 1fr;
  }

  .features__grid {
    grid-template-columns: 1fr;
  }

  .contact__form-row {
    grid-template-columns: 1fr;
  }

  /* Footer */
  .footer__inner {
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
  }

  .footer__links {
    flex-direction: column;
    gap: var(--space-xl);

  }

  .footer__kunden {
    align-items: flex-start;
  }

  /* Sticky CTA */
  .sticky-cta {
    display: block;
  }

  /* Section spacing */
  .why,
  .packages,
  .events,
  .features,
  .process,
  .testimonials,
  .faq,
  .contact {
    padding: var(--space-4xl) 0;
  }

  .section-header {
    margin-bottom: var(--space-2xl);
  }

  /* Process */
  .process__step {
    gap: var(--space-md);
  }

  .process__step-number {
    width: 48px;
    height: 48px;
    font-size: 22px;
  }

  .process__connector {
    margin-left: 23px;
  }
}

@media (max-width: 375px) {
  .hero__stats {
    flex-direction: column;
    gap: var(--space-lg);
  }

  .hero__stat-number {
    font-size: 28px;
  }
}

/* ===================================================================
   404 – Dieses Bild haben wir nicht entwickelt
   =================================================================== */

.error404 {
  position: relative;
  min-height: calc(100vh - var(--nav-height));
  padding: calc(var(--nav-height) + var(--space-2xl)) 0 var(--space-4xl);
  display: flex;
  align-items: center;
  overflow: hidden;
}

.error404__glow {
  position: absolute;
  top: 20%;
  left: 50%;
  width: 800px;
  height: 800px;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(232, 115, 78, 0.14), transparent 65%);
  filter: blur(40px);
  pointer-events: none;
  z-index: 0;
}

.error404__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: var(--space-4xl);
  align-items: center;
}

/* --- Polaroid --- */
.error404__polaroid {
  position: relative;
  width: 320px;
  max-width: 100%;
  background: #F2EFE9;
  padding: 14px 14px 56px;
  border-radius: 4px;
  margin: 0 auto;
  box-shadow:
    0 30px 60px rgba(0, 0, 0, 0.55),
    0 10px 20px rgba(0, 0, 0, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.6);
  transform: rotate(-3.5deg);
  cursor: pointer;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease;
  animation: error404-float 6s ease-in-out infinite;
}

.error404__polaroid:hover {
  transform: rotate(-1deg) translateY(-6px);
  box-shadow:
    0 40px 80px rgba(0, 0, 0, 0.6),
    0 14px 28px rgba(0, 0, 0, 0.4),
    0 0 40px rgba(232, 115, 78, 0.2);
}

@keyframes error404-float {
  0%, 100% { transform: rotate(-3.5deg) translateY(0); }
  50% { transform: rotate(-3.5deg) translateY(-6px); }
}

/* Klebeband oben */
.error404__polaroid-tape {
  position: absolute;
  top: -18px;
  left: 50%;
  transform: translateX(-50%) rotate(-4deg);
  width: 90px;
  height: 30px;
  background: linear-gradient(180deg,
    rgba(255, 220, 130, 0.55),
    rgba(240, 200, 110, 0.65)
  );
  border-left: 1px dashed rgba(0, 0, 0, 0.12);
  border-right: 1px dashed rgba(0, 0, 0, 0.12);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  pointer-events: none;
}

/* Foto-Bereich */
.error404__polaroid-photo {
  position: relative;
  aspect-ratio: 1 / 1;
  background: #0B0B12;
  border-radius: 2px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* TV-Static Effekt */
.error404__polaroid-static {
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(0deg,
      rgba(255, 255, 255, 0.08) 0px,
      rgba(255, 255, 255, 0.08) 1px,
      transparent 1px,
      transparent 3px),
    repeating-linear-gradient(90deg,
      rgba(255, 255, 255, 0.04) 0px,
      rgba(255, 255, 255, 0.04) 1px,
      transparent 1px,
      transparent 4px);
  opacity: 0.85;
  animation: error404-static 0.18s steps(2) infinite;
  mix-blend-mode: screen;
}

@keyframes error404-static {
  0% { transform: translate(0, 0); }
  25% { transform: translate(-1px, 1px); }
  50% { transform: translate(1px, -1px); }
  75% { transform: translate(-1px, -1px); }
  100% { transform: translate(1px, 1px); }
}

/* Scanline die durchläuft */
.error404__polaroid-scan {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
    transparent 0%,
    rgba(232, 115, 78, 0.12) 48%,
    rgba(232, 115, 78, 0.4) 50%,
    rgba(232, 115, 78, 0.12) 52%,
    transparent 100%);
  animation: error404-scan 3.5s linear infinite;
  pointer-events: none;
}

@keyframes error404-scan {
  0% { transform: translateY(-100%); }
  100% { transform: translateY(100%); }
}

/* Die grosse 404 */
.error404__polaroid-404 {
  position: relative;
  z-index: 2;
  font-family: 'Caveat', cursive;
  font-weight: 700;
  font-size: 160px;
  line-height: 1;
  color: var(--color-accent);
  transform: rotate(-4deg);
  text-shadow:
    2px 2px 0 rgba(0, 0, 0, 0.6),
    -2px -2px 0 rgba(240, 160, 80, 0.4);
  letter-spacing: -0.05em;
  animation: error404-glitch 4s infinite;
}

@keyframes error404-glitch {
  0%, 96%, 100% {
    transform: rotate(-4deg) translate(0, 0);
    text-shadow:
      2px 2px 0 rgba(0, 0, 0, 0.6),
      -2px -2px 0 rgba(240, 160, 80, 0.4);
  }
  97% {
    transform: rotate(-4deg) translate(-2px, 1px);
    text-shadow:
      3px 0 0 rgba(232, 115, 78, 0.8),
      -3px 0 0 rgba(100, 200, 255, 0.4);
  }
  98% {
    transform: rotate(-4deg) translate(2px, -1px);
    text-shadow:
      -3px 0 0 rgba(232, 115, 78, 0.8),
      3px 0 0 rgba(100, 200, 255, 0.4);
  }
  99% {
    transform: rotate(-4deg) translate(0, 1px);
  }
}

/* Polaroid Caption – handwritten */
.error404__polaroid-caption {
  position: absolute;
  bottom: 16px;
  left: 0;
  right: 0;
  padding: 0 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #444;
  font-family: 'Caveat', cursive;
}

.error404__polaroid-caption-text {
  font-size: 20px;
  font-weight: 500;
  color: #555;
}

.error404__polaroid-date {
  font-size: 14px;
  color: #888;
  letter-spacing: 0.5px;
}

/* --- Content --- */
.error404__content {
  max-width: 540px;
}

.error404__eyebrow {
  font-family: 'Caveat', cursive;
  font-size: 38px;
  font-weight: 700;
  color: var(--color-accent);
  line-height: 1;
  display: inline-block;
  transform: rotate(-2deg);
  margin-bottom: var(--space-md);
}

.error404__title {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 600;
  line-height: 1.1;
  color: var(--color-text);
  margin-bottom: var(--space-lg);
  letter-spacing: -0.02em;
}

.error404__text {
  font-size: 17px;
  line-height: 1.6;
  color: var(--color-text-muted);
  margin-bottom: var(--space-2xl);
  max-width: 480px;
}

.error404__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
  margin-bottom: var(--space-2xl);
}

.error404__shortcuts {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--space-md);
  padding-top: var(--space-lg);
  border-top: 1px dashed var(--color-border);
  font-size: 14px;
}

.error404__shortcuts-label {
  color: var(--color-text-muted);
}

.error404__shortcuts a {
  color: var(--color-text);
  text-decoration: none;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  border: 1px solid var(--color-border-light);
  transition: all 0.2s;
  font-weight: 500;
}

.error404__shortcuts a:hover {
  background: var(--color-accent);
  border-color: var(--color-accent);
  color: #fff;
  transform: translateY(-1px);
}

/* Minimal Footer für 404 */
.footer--minimal {
  border-top: 1px solid var(--color-border);
  padding: var(--space-xl) 0;
  background: var(--color-bg);
}
.footer--minimal .footer__bottom {
  padding: 0;
  border-top: none;
}

/* Responsive */
@media (max-width: 900px) {
  .error404__inner {
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
    text-align: center;
  }

  .error404__content {
    margin: 0 auto;
  }

  .error404__text {
    margin-left: auto;
    margin-right: auto;
  }

  .error404__actions {
    justify-content: center;
  }

  .error404__shortcuts {
    justify-content: center;
  }

  .error404__polaroid {
    width: 280px;
  }

  .error404__polaroid-404 {
    font-size: 140px;
  }
}

@media (max-width: 480px) {
  .error404__polaroid {
    width: 240px;
  }

  .error404__polaroid-404 {
    font-size: 120px;
  }

  .error404__eyebrow {
    font-size: 32px;
  }

  .error404__glow {
    width: 500px;
    height: 500px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .error404__polaroid,
  .error404__polaroid-static,
  .error404__polaroid-scan,
  .error404__polaroid-404 {
    animation: none;
  }
}

/* ============================================
   ACCESSIBILITY — Focus States (Keyboard-Navigation)
   Mausnutzer sehen weiterhin nichts (dank :focus-visible),
   Keyboard-Nutzer bekommen einen klaren Indikator.
   ============================================ */
:where(a, button, .btn, .nav__link, .nav__burger, .footer__social-link,
       .strip__format-card, .packages__card a, .plchat-quick__btn,
       input, textarea, select, [tabindex]):focus-visible {
  outline: 2px solid var(--color-accent, #E8734E);
  outline-offset: 3px;
  border-radius: 4px;
}

.btn:focus-visible,
.packages__card a:focus-visible {
  outline-offset: 4px;
}

/* Touch-Geraete: Custom Cursor bringt nichts und wird sogar zur Last */
@media (hover: none), (pointer: coarse) {
  .cursor { display: none !important; }
}

