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

/* Skip-Link für Tastatur-Nutzer (WCAG 2.4.1) */
.skip-link {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 9999;
  padding: 12px 18px;
  background: #1a0033;
  color: #fff;
  font-family: 'Outfit', system-ui, sans-serif;
  font-weight: 600;
  text-decoration: none;
  border-radius: 0 0 8px 0;
  transform: translateY(-110%);
  transition: transform .2s ease;
}
.skip-link:focus {
  transform: translateY(0);
  outline: 3px solid #ff61f5;
  outline-offset: 2px;
}
:target { scroll-margin-top: 80px; }

/* ===================================================================
   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 (deaktiviert — System-Cursor ist hier besser)
   =================================================================== */

/* Custom-Cursor komplett deaktiviert (System-Cursor ist hier besser fuer UX) */
.cursor {
  display: none !important;
}

@media (pointer: fine) {
  .cursor {
    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: 'Caveat', cursive;
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: none;
  color: var(--color-accent);
  margin-bottom: var(--space-xs);
  transform: rotate(-1.5deg);
}
@media (min-width: 768px) {
  .section-title + .section-label,
  .section-label { font-size: 30px; }
}

.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:
    radial-gradient(ellipse 80% 100% at 20% 0%, rgba(232,115,78,0.08), transparent 70%),
    rgba(19, 19, 26, 0.82);
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  transition: all var(--duration) var(--ease);
  box-shadow:
    0 1px 0 rgba(255,255,255,0.04) inset,
    0 -1px 0 rgba(0,0,0,0.2) inset,
    0 12px 32px rgba(0,0,0,0.18);
}

.nav--scrolled {
  background:
    radial-gradient(ellipse 80% 100% at 20% 0%, rgba(232,115,78,0.1), transparent 70%),
    rgba(19, 19, 26, 0.95);
  box-shadow:
    0 1px 0 rgba(255,255,255,0.05) inset,
    0 12px 36px rgba(0,0,0,0.35),
    0 0 0 1px rgba(232,115,78,0.08);
}

.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;
  transition: transform .35s cubic-bezier(.34,1.56,.64,1);
}
.nav__logo:hover {
  transform: scale(1.04);
}

.nav__logo-img {
  height: 48px;
  width: auto;
  display: block;
  transition: filter .3s ease;
}
.nav__logo:hover .nav__logo-img {
  filter: drop-shadow(0 0 12px rgba(232,115,78,0.5)) drop-shadow(0 0 24px rgba(245,166,35,0.25));
}

.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: 72px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  align-self: flex-start;
  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;
  -webkit-tap-highlight-color: transparent !important;
  background: transparent !important;
  background-color: transparent !important;
}

/* Alle moeglichen Background-States explizit killen
   (Keyboard-Focus bleibt via :focus-visible weiter unten erhalten) */
.nav__link:focus,
.nav__link:focus-visible,
.nav__link:active,
.nav__link:visited,
.nav__link[aria-current],
.nav__link[aria-current="page"] {
  background: transparent !important;
  background-color: transparent !important;
}

.nav__link:focus { outline: none; }

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

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--color-accent) 30%, #F5A623 70%, transparent);
  border-radius: 2px;
  transition: width .35s cubic-bezier(.4,0,.2,1);
}

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

/* ===================================================================
   LAUNCH-MUSIC-PLAYER (Inline im Footer, volle Breite)
   =================================================================== */
.footer__music {
  width: 100%;
  margin-top: var(--space-lg);
  padding: 14px 16px 12px;
  background: rgba(212, 165, 116, 0.06);
  border: 1px solid rgba(212, 165, 116, 0.22);
  border-radius: 14px;
  transition: background .3s ease, border-color .3s ease;
}
.footer__music:hover {
  background: rgba(212, 165, 116, 0.09);
  border-color: rgba(212, 165, 116, 0.35);
}
.footer__music-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
.footer__music-play {
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  background: linear-gradient(135deg, #D4A574 0%, #B8895A 100%);
  border-radius: 50%;
  color: #14141C;
  cursor: pointer;
  box-shadow: 0 3px 10px rgba(212, 165, 116, 0.35);
  transition: transform .35s cubic-bezier(.34, 1.56, .64, 1), box-shadow .3s ease;
}
.footer__music-play:hover {
  transform: scale(1.07);
  box-shadow: 0 4px 14px rgba(212, 165, 116, 0.55);
}
.footer__music-play:active { transform: scale(0.95); }
.footer__music-icon {
  width: 13px;
  height: 13px;
}
.footer__music-icon[hidden] { display: none; }
.footer__music-icon--play { margin-left: 2px; /* visuelle Mitte fuer Dreieck */ }
.footer__music-meta {
  display: flex;
  flex-direction: column;
  line-height: 1.25;
  min-width: 0;
}
.footer__music-title {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  color: #F5E6D3;
  letter-spacing: 0.01em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.footer__music-sub {
  font-size: 10.5px;
  font-weight: 500;
  color: rgba(212, 165, 116, 0.75);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-top: 3px;
}
.footer__music-bar {
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer__music-progress {
  flex: 1;
  height: 4px;
  background: rgba(212, 165, 116, 0.14);
  border-radius: 2px;
  position: relative;
  cursor: pointer;
  overflow: hidden;
}
.footer__music-progress-fill {
  position: absolute;
  inset: 0 auto 0 0;
  width: 0%;
  background: linear-gradient(90deg, #D4A574, #E8C9A0);
  border-radius: 2px;
  transition: width .15s linear;
}
.footer__music-time {
  font-family: var(--font-body);
  font-size: 11px;
  color: rgba(212, 165, 116, 0.75);
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
  min-width: 32px;
  text-align: right;
}
/* Aktiver Zustand: Pulse am Play-Button */
.footer__music.is-playing .footer__music-play {
  animation: footerMusicPulse 1.8s ease-out infinite;
}
@keyframes footerMusicPulse {
  0%   { box-shadow: 0 3px 10px rgba(212, 165, 116, 0.35), 0 0 0 0 rgba(212, 165, 116, 0.55); }
  70%  { box-shadow: 0 3px 10px rgba(212, 165, 116, 0.35), 0 0 0 12px rgba(212, 165, 116, 0); }
  100% { box-shadow: 0 3px 10px rgba(212, 165, 116, 0.35), 0 0 0 0 rgba(212, 165, 116, 0); }
}


.nav__link--cta {
  background:
    linear-gradient(135deg,
      #FFD480 0%,
      #F5A623 28%,
      #E8853A 60%,
      #C46A28 100%
    );
  color: var(--color-white);
  padding: 11px 26px;
  border-radius: var(--radius-full);
  font-weight: 600;
  text-shadow: 0 1px 2px rgba(110, 60, 10, 0.35);
  box-shadow:
    0 4px 16px rgba(196, 106, 40, 0.45),
    0 0 0 1px rgba(255, 200, 100, 0.25) inset,
    0 1px 0 rgba(255, 240, 180, 0.4) inset,
    0 -2px 4px rgba(180, 80, 20, 0.2) inset;
  position: relative;
  transition: transform .35s cubic-bezier(.34, 1.56, .64, 1), box-shadow .3s ease, filter .3s ease;
}

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

.nav__link--cta:hover {
  color: var(--color-white);
  transform: translateY(-2px);
  filter: brightness(1.08);
  box-shadow:
    0 10px 28px rgba(232, 115, 78, 0.55),
    0 0 0 1px rgba(255, 220, 140, 0.4) inset,
    0 1px 0 rgba(255, 245, 200, 0.5) inset,
    0 -2px 4px rgba(180, 80, 20, 0.22) inset;
}
.nav__link--cta:active {
  transform: translateY(0) scale(0.98);
}

/* 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,
.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: stretch;
  justify-content: center;
  gap: 0;
  padding: 16px 8px;
  background: rgba(255, 255, 255, 0.045);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 22px;
  box-shadow:
    0 16px 50px -10px rgba(0, 0, 0, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  width: max-content;
  max-width: 100%;
  margin: 0 auto;
}

.hero__stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 6px var(--space-xl);
  position: relative;
  min-width: 0;
}

/* Dezenter Vertikal-Trenner zwischen den Stats (Gradient an Enden ausgefadet) */
.hero__stat + .hero__stat::before {
  content: '';
  position: absolute;
  left: 0;
  top: 18%;
  bottom: 18%;
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(245, 166, 35, 0.25) 50%, transparent);
  pointer-events: none;
}

.hero__stat-number {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(22px, 3vw, 32px);
  color: var(--color-white);
  line-height: 1.15;
  letter-spacing: -0.01em;
  white-space: nowrap;
}

.hero__stat-label {
  font-size: 11px;
  color: var(--color-text-subtle);
  margin-top: 6px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 500;
  text-align: center;
}

.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(3, 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);
}

/* Erlaeuternder Hint in Features (z.B. "Pailletten, Blumen, Farbe") */
.packages__card-feature-hint {
  display: block;
  margin-left: 24px;
  margin-top: 2px;
  font-size: 12px;
  color: var(--color-text-subtle);
  font-style: italic;
  font-weight: 400;
}

/* "Alles aus Basic/Premium" Hervorhebung als erstes Feature (legacy, falls noch verwendet) */
.packages__card-feature--includes {
  padding-bottom: var(--space-sm);
  margin-bottom: var(--space-sm);
  border-bottom: 1px dashed rgba(232, 115, 78, 0.25);
  color: var(--color-text) !important;
}
.packages__card-feature--includes svg {
  color: var(--color-accent) !important;
}

/* Hervorhebung der Plus-Features pro Stufe (was MEHR ist als das vorige Paket) */
.packages__card-features li.packages__card-feature--plus {
  color: var(--color-text);
}
.packages__card-features li.packages__card-feature--plus svg {
  color: var(--color-accent);
  stroke-width: 2.5;
}

/* === SONDERANFRAGE: kompakter Block unter den 3 Hauptpaketen === */
.packages__special {
  margin-top: var(--space-2xl);
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: var(--space-xl);
  align-items: center;
  padding: 24px 28px;
  background: var(--color-surface);
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
  transition: border-color var(--duration) var(--ease), transform var(--duration) var(--ease);
}
/* Subtile Akzent-Linie oben (Orange-Gradient) — bleibt als Highlight */
.packages__special::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(232,115,78,0.5) 30%, rgba(245,166,35,0.6) 50%, rgba(232,115,78,0.5) 70%, transparent);
}
/* Dezenter Glow im Hintergrund rechts */
.packages__special::after {
  content: '';
  position: absolute;
  top: 0; right: -20%;
  width: 50%; height: 100%;
  background: radial-gradient(ellipse at center, rgba(245,166,35,0.06), transparent 70%);
  pointer-events: none;
}
.packages__special:hover {
  border-color: var(--color-border-light);
  transform: translateY(-2px);
}
.packages__special-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: linear-gradient(135deg, #F5A623, #E8734E);
  display: grid;
  place-items: center;
  color: #fff;
  box-shadow: 0 8px 20px rgba(232,115,78,0.35), inset 0 1px 0 rgba(255,255,255,0.25);
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}
.packages__special-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
  position: relative;
  z-index: 1;
  min-width: 0;
}
.packages__special-label {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-accent);
}
.packages__special-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  color: #fff;
  margin: 0;
  line-height: 1.2;
}
.packages__special-desc {
  font-size: 14px;
  color: var(--color-text-muted);
  line-height: 1.55;
  margin: 0;
  max-width: 560px;
}
.packages__special-link {
  color: var(--color-accent);
  text-decoration: underline;
  text-decoration-color: rgba(232,115,78,0.4);
  text-underline-offset: 2px;
  font-weight: 600;
  transition: text-decoration-color .2s ease;
}
.packages__special-link:hover {
  text-decoration-color: var(--color-accent);
}
.packages__special-action {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
  position: relative;
  z-index: 1;
  flex-shrink: 0;
}
.packages__special-price {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  color: #fff;
}
@media (max-width: 768px) {
  .packages__special {
    grid-template-columns: 1fr;
    text-align: center;
    padding: var(--space-xl);
  }
  .packages__special-icon { justify-self: center; }
  .packages__special-action { align-items: stretch; }
}

/* ===================================================================
   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 */
}

/* Full-width Catch-All-Card (unten als Bottom-Banner, symmetrisch zur Featured oben) */
.events__card--wide {
  grid-column: 1 / -1;
  min-height: 320px;
}

@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);
}

/* ===================================================================
   INSTA-CTA (Folgt-uns-Banner, Startseite vor Footer)
   =================================================================== */
.insta-cta {
  padding: var(--space-3xl) 0;
  background:
    radial-gradient(ellipse 60% 80% at 20% 50%, rgba(245,133,41,0.06), transparent 70%),
    radial-gradient(ellipse 60% 80% at 80% 50%, rgba(129,52,175,0.06), transparent 70%);
}
.insta-cta__inner {
  display: flex;
  align-items: center;
  gap: var(--space-xl);
  padding: var(--space-xl) var(--space-2xl);
  background: linear-gradient(135deg, rgba(255,255,255,0.045), rgba(255,255,255,0.012));
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 24px;
  box-shadow:
    0 20px 50px rgba(0,0,0,0.4),
    inset 0 1px 0 rgba(255,255,255,0.06);
  position: relative;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: transform .35s cubic-bezier(.34,1.56,.64,1), box-shadow .35s ease, border-color .3s ease;
}
/* Instagram-Brand-Gradient als Top-Akzentlinie */
.insta-cta__inner::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, #FEDA77 0%, #F58529 25%, #DD2A7B 55%, #8134AF 80%, #515BD4 100%);
}
/* Subtler Background-Gradient bei Hover */
.insta-cta__inner::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(245,133,41,0.04), rgba(221,42,123,0.04), rgba(129,52,175,0.04));
  opacity: 0;
  transition: opacity .35s ease;
  pointer-events: none;
}
.insta-cta__inner:hover {
  transform: translateY(-3px);
  border-color: rgba(221,42,123,0.35);
  box-shadow:
    0 28px 60px rgba(0,0,0,0.5),
    0 0 40px rgba(221,42,123,0.18),
    inset 0 1px 0 rgba(255,255,255,0.08);
}
.insta-cta__inner:hover::after { opacity: 1; }

.insta-cta__icon {
  flex-shrink: 0;
  width: 72px;
  height: 72px;
  border-radius: 20px;
  background: linear-gradient(135deg, #FEDA77 0%, #F58529 25%, #DD2A7B 55%, #8134AF 90%);
  display: grid;
  place-items: center;
  color: #fff;
  box-shadow:
    0 10px 26px rgba(221,42,123,0.4),
    inset 0 1px 0 rgba(255,255,255,0.3),
    inset 0 -1px 0 rgba(0,0,0,0.15);
  transition: transform .35s cubic-bezier(.34,1.56,.64,1);
  position: relative;
  z-index: 1;
}
.insta-cta__icon svg {
  width: 38px;
  height: 38px;
  filter: drop-shadow(0 1px 2px rgba(0,0,0,0.2));
}
.insta-cta__inner:hover .insta-cta__icon {
  transform: scale(1.08) rotate(-5deg);
}

.insta-cta__text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
  position: relative;
  z-index: 1;
}
.insta-cta__label {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 12.5px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  background: linear-gradient(135deg, #F58529, #DD2A7B);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.insta-cta__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 26px;
  color: #fff;
  line-height: 1.2;
  margin: 0;
}
.insta-cta__subtitle {
  color: var(--color-text-muted);
  font-size: 14.5px;
  line-height: 1.55;
  margin: 0;
  max-width: 440px;
}

.insta-cta__btn {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  background: linear-gradient(135deg, #F58529 0%, #DD2A7B 55%, #8134AF 100%);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  border-radius: 100px;
  transition: transform .35s cubic-bezier(.34,1.56,.64,1), box-shadow .3s ease;
  box-shadow:
    0 8px 22px rgba(221,42,123,0.45),
    inset 0 1px 0 rgba(255,255,255,0.3);
  position: relative;
  z-index: 1;
  white-space: nowrap;
}
.insta-cta__btn svg {
  transition: transform .25s ease;
}
.insta-cta__inner:hover .insta-cta__btn {
  transform: scale(1.04);
  box-shadow:
    0 14px 32px rgba(221,42,123,0.55),
    inset 0 1px 0 rgba(255,255,255,0.35);
}
.insta-cta__inner:hover .insta-cta__btn svg {
  transform: translateX(4px);
}

@media (max-width: 768px) {
  .insta-cta__inner {
    flex-direction: column;
    text-align: center;
    padding: var(--space-xl);
    gap: var(--space-md);
  }
  .insta-cta__title { font-size: 22px; }
  .insta-cta__subtitle { font-size: 14px; }
}

/* ===================================================================
   STRIP-PREVIEW (Fotobox-Seite: 3 Beispiel-Fotostrips)
   =================================================================== */
.strip-preview {
  padding: var(--space-3xl) 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(232,115,78,0.05), transparent 70%),
    var(--color-bg);
}

/* Polaroid-Pinnwand-Look: Strips wirken wie an die Wand getapt */
.strip-preview__board {
  margin-top: var(--space-2xl);
  padding: 28px 10px 30px;
  position: relative;
}

.strip-preview__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-2xl);
  justify-items: center;
  align-items: start;
  position: relative;
  z-index: 1;
}

@media (max-width: 900px) {
  .strip-preview__board { padding: 24px 12px 24px; }
  .strip-preview__grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }
}

.strip-preview__card {
  padding: 12px 12px 14px;
  border-radius: 3px;
  width: 100%;
  max-width: 215px;
  /* Mehrschichtige Schatten fuer Tiefe (matched Premium-Print-Optik) */
  box-shadow:
    0 30px 60px -10px rgba(0,0,0,0.65),
    0 18px 36px -8px rgba(0,0,0,0.45),
    0 4px 8px rgba(0,0,0,0.2),
    inset 0 1px 1px rgba(255,255,255,0.6),
    inset 0 0 0 0.5px rgba(0,0,0,0.05);
  transition: transform .4s cubic-bezier(.34,1.56,.64,1), box-shadow .4s ease;
  display: flex;
  flex-direction: column;
  position: relative;
}
.strip-preview__card .strip-preview__photos { flex-shrink: 0; }
.strip-preview__card .strip-preview__footer { flex: 1; min-height: 64px; justify-content: center; }

/* Hover: dezenter Lift mit warmem Akzent-Glow statt grellem Bump */
.strip-preview__card:hover {
  transform: rotate(0) scale(1.05) translateY(-6px);
  z-index: 5;
  box-shadow:
    0 40px 80px -12px rgba(0,0,0,0.75),
    0 20px 40px -8px rgba(0,0,0,0.5),
    0 0 50px -10px rgba(232,115,78,0.25),
    inset 0 1px 1px rgba(255,255,255,0.6);
}

/* Klebestreifen oben mittig (Washi-Tape-Style, semi-transparent mit soften Raendern) */
.strip-preview__card::before {
  content: '';
  position: absolute;
  top: -11px;
  left: 50%;
  width: 78px;
  height: 22px;
  transform: translateX(-50%) rotate(var(--pin-rot, -3deg));
  /* Warmes Tape: links/rechts fade-out fuer authentische Soft-Edges */
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(255, 250, 235, 0.45) 6%,
    rgba(255, 252, 240, 0.6) 50%,
    rgba(255, 250, 235, 0.45) 94%,
    transparent 100%
  );
  /* Sanfter Schatten direkt unter dem Tape (drop-shadow folgt der Form mit Transparenz) */
  filter: drop-shadow(0 2px 3px rgba(0, 0, 0, 0.3));
  z-index: 10;
  pointer-events: none;
}

/* Hochzeit: helles Champagner-Beige, elegant + Roségold-Pin */
.strip-preview__card--wedding {
  background: #F8F1E3;
  transform: rotate(-3deg);
  box-shadow:
    0 16px 40px rgba(0,0,0,0.45),
    0 4px 12px rgba(0,0,0,0.25),
    inset 0 1px 1px rgba(255,255,255,.7);
  position: relative;
  --pin-rot: 3deg;
}
/* Doppelter Goldlinien-Rand um Photos */
.strip-preview__card--wedding .strip-preview__photos {
  padding: 4px;
  background:
    linear-gradient(#F8F1E3, #F8F1E3) padding-box,
    linear-gradient(135deg, #C9A961 0%, #8B6F3D 50%, #C9A961 100%) border-box;
  border: 1.5px solid transparent;
  border-radius: 2px;
  position: relative;
}
.strip-preview__card--wedding .strip-preview__photos::after {
  content: '';
  position: absolute;
  inset: 2px;
  border: 0.5px solid rgba(201,169,97,.4);
  pointer-events: none;
  border-radius: 1px;
}

/* Geburtstag: warmes Pfirsich, lebendig + Coral-Pin */
.strip-preview__card--birthday {
  background: #FFE9D9;
  transform: rotate(2deg);
  box-shadow:
    0 16px 40px rgba(0,0,0,0.45),
    0 4px 12px rgba(0,0,0,0.25),
    inset 0 1px 1px rgba(255,255,255,.6);
  position: relative;
  --pin-rot: -5deg;
}
/* Coral-Frame um die Photos (Konsistenz mit den anderen Strips) */
.strip-preview__card--birthday .strip-preview__photos {
  padding: 4px;
  background:
    linear-gradient(#FFE9D9, #FFE9D9) padding-box,
    linear-gradient(135deg, #E8734E 0%, #F5A623 50%, #E8734E 100%) border-box;
  border: 1.5px solid transparent;
  border-radius: 2px;
}

/* Konfetti im Footer-Bereich (kein eigener Stripe-Raum mehr, Karte bleibt gleich hoch) */
.strip-preview__card--birthday .strip-preview__footer {
  position: relative;
  overflow: hidden;
}
.strip-preview__card--birthday .strip-preview__footer::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 70'%3E%3Ccircle cx='18' cy='14' r='1.8' fill='%23E8734E' opacity='0.5'/%3E%3Ccircle cx='34' cy='52' r='1.5' fill='%23F5A623' opacity='0.5'/%3E%3Ccircle cx='52' cy='20' r='1.2' fill='%23E8734E' opacity='0.45'/%3E%3Ccircle cx='168' cy='18' r='1.8' fill='%23F5A623' opacity='0.5'/%3E%3Ccircle cx='180' cy='48' r='1.5' fill='%23E8734E' opacity='0.5'/%3E%3Ccircle cx='150' cy='54' r='1.2' fill='%23F5A623' opacity='0.45'/%3E%3C/svg%3E");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  pointer-events: none;
  z-index: 0;
}
.strip-preview__card--birthday .strip-preview__brand,
.strip-preview__card--birthday .strip-preview__date {
  position: relative;
  z-index: 1;
}

/* Firmenevent: schlichtes Anthrazit mit Gold-Akzent (Premium-Business-Look) */
.strip-preview__card--company {
  background: #1C1C1E;
  transform: rotate(-1deg);
  box-shadow:
    0 16px 40px rgba(0,0,0,0.55),
    0 4px 12px rgba(0,0,0,0.3),
    inset 0 1px 1px rgba(245,166,35,.18),
    inset 0 0 0 1px rgba(245,166,35,.15);
  position: relative;
  --pin-rot: 4deg;
}
/* Goldener Gradient-Frame um Photos */
.strip-preview__card--company .strip-preview__photos {
  padding: 4px;
  background:
    linear-gradient(#1C1C1E, #1C1C1E) padding-box,
    linear-gradient(135deg, #F5A623 0%, #FFD480 30%, #C46A28 70%, #F5A623 100%) border-box;
  border: 1.5px solid transparent;
  border-radius: 2px;
}

.strip-preview__photos {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 10px;
  position: relative;
}

.strip-preview__photos img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
  border-radius: 1px;
  /* Print-Filter: weniger grell, Profi-Print-Look */
  filter: saturate(0.78) contrast(1.06) brightness(0.96);
  transition: filter var(--duration) var(--ease);
}
/* Subtile Vignette pro Foto: leichte Tiefe an den Ecken (klassischer Print-Look) */
.strip-preview__photos::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at center, transparent 55%, rgba(0,0,0,0.18) 100%);
  pointer-events: none;
  mix-blend-mode: multiply;
}
/* Beim Hover Bilder leicht aufleben lassen (subtiler Sättigungs-Bump) */
.strip-preview__card:hover .strip-preview__photos img {
  filter: saturate(0.92) contrast(1.08) brightness(0.98);
}

.strip-preview__footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  padding: 8px 4px 2px;
  text-align: center;
}

/* Hochzeit-Footer: cremig-elegant, Caveat-Handschrift in Bordeaux + Floral-Ornament */
.strip-preview__footer--wedding {
  border-top: 1px solid rgba(139, 36, 53, 0.18);
  padding-top: 28px;
  position: relative;
}
.strip-preview__footer--wedding::before {
  content: '';
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 18px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 18' fill='none' stroke='%23C9A961' stroke-width='0.9' stroke-linecap='round'%3E%3Cpath d='M5 14 Q15 6, 28 10 Q40 14, 50 5 Q60 14, 72 10 Q85 6, 95 14'/%3E%3Ccircle cx='50' cy='5' r='2' fill='%23C9A961' stroke='none'/%3E%3Ccircle cx='28' cy='10' r='1.5' fill='%23C9A961' stroke='none'/%3E%3Ccircle cx='72' cy='10' r='1.5' fill='%23C9A961' stroke='none'/%3E%3Ccircle cx='14' cy='13' r='1' fill='%23C9A961' stroke='none'/%3E%3Ccircle cx='86' cy='13' r='1' fill='%23C9A961' stroke='none'/%3E%3C/svg%3E");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  opacity: 0.85;
}
.strip-preview__footer--wedding .strip-preview__brand {
  font-family: 'Caveat', cursive;
  font-weight: 700;
  font-size: 24px;
  color: #8B2435;
  line-height: 1;
}
.strip-preview__footer--wedding .strip-preview__date {
  font-family: Georgia, serif;
  font-size: 11px;
  font-style: italic;
  color: #9A7B5C;
  letter-spacing: 0.5px;
  margin-top: 2px;
}

/* Geburtstag-Footer: lebendiges Coral-Orange, bold */
.strip-preview__footer--birthday {
  border-top: 1px solid rgba(232, 115, 78, 0.25);
}
.strip-preview__footer--birthday .strip-preview__brand {
  font-family: 'Arial Black', sans-serif;
  font-weight: 900;
  font-size: 19px;
  color: #C44520;
  letter-spacing: -0.5px;
  line-height: 1;
}
.strip-preview__footer--birthday .strip-preview__date {
  font-size: 11px;
  font-weight: 700;
  color: #1C1C1E;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-top: 4px;
}

/* Firmenevent-Footer: dunkler Polaroid, Gold-Akzent + dezente Linien-Ornamente (Business-Look) */
.strip-preview__footer--company {
  border-top: 1px solid rgba(245, 166, 35, 0.3);
  padding: 14px 4px 6px;
  position: relative;
}
/* Dezente Gold-Linien links und rechts neben dem Text (statt Lorbeer, schlichter Business-Look) */
.strip-preview__footer--company::before,
.strip-preview__footer--company::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 18px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(245,166,35,0.5));
  transform: translateY(-50%);
  pointer-events: none;
}
.strip-preview__footer--company::before { left: 8px; }
.strip-preview__footer--company::after {
  right: 8px;
  background: linear-gradient(90deg, rgba(245,166,35,0.5), transparent);
}
.strip-preview__footer--company .strip-preview__brand,
.strip-preview__footer--company .strip-preview__date {
  position: relative;
  z-index: 1;
  text-shadow: 0 1px 3px rgba(0,0,0,0.6);
}
.strip-preview__footer--company .strip-preview__brand {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  background: linear-gradient(135deg, #F5A623, #FFD480);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  line-height: 1.1;
}
.strip-preview__footer--company .strip-preview__date {
  font-family: var(--font-display);
  font-size: 10.5px;
  font-weight: 500;
  color: rgba(255,255,255,0.65);
  letter-spacing: 0.5px;
  margin-top: 5px;
}

.strip-preview__hint {
  text-align: center;
  margin-top: var(--space-2xl);
  font-size: 15px;
  color: var(--color-text-muted);
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.65;
  font-style: italic;
}
.strip-preview__hint-badge {
  display: inline-block;
  margin-right: 10px;
  padding: 4px 11px;
  background: rgba(245, 166, 35, 0.10);
  color: var(--color-accent);
  border: 1px solid rgba(245, 166, 35, 0.28);
  font-family: var(--font-display);
  font-size: 10.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  border-radius: 12px;
  font-style: normal;
  vertical-align: 2px;
  box-shadow: 0 3px 10px rgba(232,115,78,0.3);
}

/* ===================================================================
   FOTO-TRENNER mit Parallax + dezentem Ken-Burns
   2-Layer-Struktur:
   - Outer (.photo-divider__bg): JS-Parallax (translateY beim Scrollen)
   - Inner (.photo-divider__bg-inner): CSS Ken-Burns (subtiler Zoom)
   Beide Effekte ueberlagern sich konfliktfrei.
   =================================================================== */
.photo-divider {
  position: relative;
  width: 100%;
  height: clamp(280px, 50vh, 480px);
  overflow: hidden;
  margin: 0;
  background: var(--color-bg);
}
.photo-divider__bg {
  position: absolute;
  /* Vertikaler Spielraum fuer Parallax-Drift (±140px) + Buffer */
  top: -160px; bottom: -160px;
  left: 0; right: 0;
  will-change: transform;
  /* transform: translate3d() wird via JS gesetzt */
}
.photo-divider__bg-inner {
  position: absolute;
  inset: -5%; /* Spielraum fuer dezenten Ken-Burns-Zoom */
  background-image: url('/assets/images/partylinse.de_trenner_birthday01.png');
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  will-change: transform;
  animation: kenBurnsSubtle 32s ease-in-out infinite alternate;
  transform-origin: center center;
}
/* Modifier fuer andere Trenner-Bilder */
.photo-divider__bg-inner--fotobox {
  background-image: url('/assets/images/partylinse.de_trenner_fotobox03.png');
  background-position: center 30%;
  /* Weniger Initial-Zoom, damit volle Bildbreite (Lichterketten links) sichtbar bleibt */
  inset: 0;
  animation: kenBurnsGentle 36s ease-in-out infinite alternate;
}
.photo-divider__bg-inner--partypeople {
  background-image: url('/assets/images/partylinse.de_trenner_partypeaople01.png');
}

/* Video-Variante: Scroll-Driven Playback (Apple-Style) */
.photo-divider--video {
  height: clamp(320px, 56vh, 540px);
}
.photo-divider__video-wrap {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.photo-divider__video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
  display: block;
  pointer-events: none;
  background: var(--color-bg);
}
/* Sanftere Ken-Burns-Variante: weniger Zoom-Range fuer "rausgezoomten" Look */
@keyframes kenBurnsGentle {
  0%   { transform: scale(1.0); }
  100% { transform: scale(1.05); }
}
.photo-divider__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, var(--color-bg) 0%, transparent 14%, transparent 86%, var(--color-bg) 100%),
    linear-gradient(180deg, rgba(8,4,2,0.25), rgba(8,4,2,0.35)),
    radial-gradient(ellipse at 80% 50%, rgba(245,166,35,0.08), transparent 60%);
  pointer-events: none;
}
@keyframes kenBurnsSubtle {
  0%   { transform: scale(1.04); }
  100% { transform: scale(1.12); }
}
@media (prefers-reduced-motion: reduce) {
  .photo-divider__bg { transform: none !important; }
  .photo-divider__bg-inner { animation: none; transform: scale(1.05); }
}
/* Mobile: Bild-Fokuspunkt nach oben, damit Gesichter (oberes Drittel)
   trotz Parallax-Drift in der sichtbaren Box bleiben */
@media (max-width: 768px) {
  .photo-divider__bg-inner {
    background-position: center 28%;
  }
  .photo-divider__bg-inner--fotobox {
    background-position: center 18%;
  }
  /* Parallax-Buffer auf Mobile reduzieren -> weniger Drift, mehr Bild-Stabilitaet */
  .photo-divider__bg {
    top: -60px;
    bottom: -60px;
  }
}
@media (max-width: 768px) {
  .photo-divider { height: clamp(220px, 38vh, 340px); }
}

/* Coming-Soon-Strip unterhalb der 6 Features */
.features__coming {
  margin-top: var(--space-xl);
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 20px 24px;
  background: var(--color-surface);
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
  transition: border-color var(--duration) var(--ease), transform var(--duration) var(--ease);
}
/* Subtile Akzent-Linie oben (Orange-Gradient), signalisiert "etwas Besonderes" */
.features__coming::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(232,115,78,0.5) 30%, rgba(245,166,35,0.6) 50%, rgba(232,115,78,0.5) 70%, transparent);
}
/* Dezenter Glow rechts */
.features__coming::after {
  content: '';
  position: absolute;
  top: 0; right: -20%;
  width: 50%; height: 100%;
  background: radial-gradient(ellipse at center, rgba(245,166,35,0.06), transparent 70%);
  pointer-events: none;
}
.features__coming:hover {
  border-color: var(--color-border-light);
  transform: translateY(-2px);
}
.features__coming-label {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  padding: 5px 12px;
  background: rgba(245, 166, 35, 0.10);
  color: var(--color-accent);
  border: 1px solid rgba(245, 166, 35, 0.28);
  font-family: var(--font-display);
  font-size: 10.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  border-radius: 20px;
  position: relative;
  z-index: 1;
}
.features__coming-text {
  display: flex;
  flex-direction: column;
  gap: 3px;
  position: relative;
  z-index: 1;
}
.features__coming-text strong {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 17px;
  color: #fff;
  line-height: 1.2;
}
.features__coming-text small {
  font-family: var(--font-body);
  font-size: 13.5px;
  color: rgba(255,255,255,0.7);
  line-height: 1.4;
}
@media (max-width: 600px) {
  .features__coming { flex-direction: column; align-items: flex-start; padding: 16px 18px; }
}

/* ===================================================================
   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);
  display: flex;
  flex-direction: column;
}
/* Quote nimmt verfuegbaren Platz, Author rutscht an den unteren Rand: alle Avatare auf einer Linie */
.testimonials__card-quote { flex: 1; }
.testimonials__card-author { margin-top: auto; }

.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: flex;
  flex-direction: column;
  gap: var(--space-xl);
  max-width: 820px;
  margin: 0 auto;
}

/* ===================================================================
   FORM-WRAP — Card mit Glow-Border für Pepp
   =================================================================== */
/* Outer Wrap: nur Spacing-Container, KEINE eigene Card-Optik mehr (vermeidet Doppel-Card-Look) */
.contact__form-wrap {
  width: 100%;
  position: relative;
}

/* Mode-Switcher Pulse-Indikator ist in der Haupt-Definition (siehe oben) */

/* Submit-Button mit Pfeil-Slide-Animation */
.contact__form button[type="submit"] {
  position: relative;
  overflow: hidden;
  transition: transform .2s ease, box-shadow .3s ease;
}
.contact__form button[type="submit"]:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(232,115,78,0.45), 0 0 0 1px rgba(232,115,78,0.3);
}
.contact__form button[type="submit"]:active { transform: translateY(0); }
.contact__form button[type="submit"] .btn__icon {
  transition: transform .25s ease;
}
.contact__form button[type="submit"]:hover .btn__icon {
  transform: translateX(6px);
}

/* Input-Focus: feiner Akzent-Glow */
.contact__form-input:focus {
  outline: none;
  border-color: var(--color-accent) !important;
  box-shadow: 0 0 0 3px rgba(232,115,78,0.15), inset 0 1px 0 rgba(255,255,255,0.03);
}

/* Form-Group leichter Lift bei Fokus innen */
.contact__form-group:focus-within .contact__form-label {
  color: var(--color-accent);
  transition: color .2s ease;
}

/* ===================================================================
   CONTACT INFO unter dem Formular (Promises, Channels, Saison)
   =================================================================== */

.contact__info {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
  margin-top: var(--space-xl);
  padding-top: var(--space-xl);
  border-top: 1px dashed rgba(255,255,255,0.08);
}

/* Promise-Strip: 3 Versprechen mit Icons */
.contact__promises {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}
.contact__promise {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px;
  background: var(--color-surface);
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-lg);
  transition: all .3s cubic-bezier(.2,.8,.2,1);
  position: relative;
  overflow: hidden;
}
/* Shine-Sweep beim Hover (subtiler Premium-Touch) */
.contact__promise::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.05), transparent);
  transition: left .6s ease;
  pointer-events: none;
}
.contact__promise:hover {
  border-color: rgba(245, 166, 35, 0.45);
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.3), 0 0 24px -6px rgba(232,115,78,0.18);
}
.contact__promise:hover::before { left: 100%; }
.contact__promise:hover .contact__promise-icon {
  transform: scale(1.08) rotate(-3deg);
  background: linear-gradient(135deg, #F5A623, #E8734E);
  color: #fff;
  box-shadow: 0 6px 14px rgba(232,115,78,0.35);
}
.contact__promise-icon {
  flex-shrink: 0;
  width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(245, 166, 35, 0.10);
  border-radius: 14px;
  color: var(--color-accent);
  transition: all .3s cubic-bezier(.2,.8,.2,1);
}
.contact__promise-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}
.contact__promise-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  color: #fff;
  line-height: 1.25;
}
.contact__promise-sub {
  font-family: var(--font-body);
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  line-height: 1.35;
}

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

/* Direkte Kanäle als Cards */
.contact__direct {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
}
.contact__direct-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 22px;
  background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.02));
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  color: #fff;
  text-decoration: none;
  transition: all .3s cubic-bezier(.2,.8,.2,1);
  position: relative;
  overflow: hidden;
}
.contact__direct-card::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(232,115,78,0.08), transparent);
  transition: left .6s ease;
}
.contact__direct-card[href]:hover {
  background: linear-gradient(180deg, rgba(232,115,78,0.12), rgba(232,115,78,0.04));
  border-color: var(--color-accent);
  transform: translateY(-3px);
  box-shadow: 0 14px 32px rgba(232,115,78,0.28), 0 0 0 1px rgba(232,115,78,0.5);
}
.contact__direct-card[href]:hover::before { left: 100%; }
.contact__direct-card[href]:hover .contact__direct-arrow { transform: translateX(6px); color: var(--color-accent); }
.contact__direct-icon {
  width: 44px; height: 44px;
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.05);
  border-radius: 12px;
  color: rgba(255,255,255,0.85);
}
.contact__direct-card[href]:hover .contact__direct-icon {
  background: linear-gradient(135deg, #F5A623, #FF6B4A);
  color: #fff;
}
.contact__direct-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1;
  min-width: 0;
}
.contact__direct-label {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.5);
}
.contact__direct-value {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 17px;
  color: #fff;
}
.contact__direct-arrow {
  color: rgba(255,255,255,0.4);
  transition: all .25s ease;
  flex-shrink: 0;
}
.contact__direct-card--info { cursor: default; }

@media (max-width: 600px) {
  .contact__direct { grid-template-columns: 1fr; }
  .contact__direct-value { font-size: 15px; }
}

/* Saison-Hint als Pro-Tipp-Card */
/* Pro-Tipp-Box: dezent, matched Brand-Card-Pattern mit subtilem Orange-Akzent (wie Sonderanfrage-Card) */
.contact__season {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  align-items: center;
  padding: 20px 24px;
  margin-top: var(--space-md);
  background: var(--color-surface);
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
  transition: border-color var(--duration) var(--ease);
}
/* Subtile Orange-Akzentlinie oben (matched Sonderanfrage/Greenscreen-Card) */
.contact__season::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(232,115,78,0.5) 30%, rgba(245,166,35,0.6) 50%, rgba(232,115,78,0.5) 70%, transparent);
  pointer-events: none;
}
/* Dezenter Glow rechts (sehr subtil, kein Reizueberflutung) */
.contact__season::after {
  content: '';
  position: absolute;
  top: 0; right: -20%;
  width: 50%; height: 100%;
  background: radial-gradient(ellipse at center, rgba(245,166,35,0.06), transparent 70%);
  pointer-events: none;
}
.contact__season:hover { border-color: var(--color-border-light); }
.contact__season-icon {
  width: 46px; height: 46px;
  display: grid; place-items: center;
  background: linear-gradient(135deg, #F5A623, #E8734E);
  border-radius: 14px;
  color: #fff;
  flex-shrink: 0;
  box-shadow:
    0 4px 12px rgba(232,115,78,0.25),
    inset 0 1px 0 rgba(255,255,255,0.2);
}
.contact__season-body {
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-width: 0;
}
.contact__season-label {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-accent);
}
.contact__season-text {
  font-family: var(--font-body);
  font-size: 14.5px;
  line-height: 1.5;
  color: rgba(255,255,255,0.92);
}
@media (max-width: 520px) {
  .contact__season { padding: 16px 18px; gap: 14px; }
  .contact__season-icon { width: 40px; height: 40px; }
  .contact__season-text { font-size: 13.5px; }
}

/* Subtle breath-Animation für Promise-Icons (gestaffelt) */
@keyframes promiseBreath {
  0%, 100% { transform: scale(1); }
  50%      { transform: scale(1.06); }
}
.contact__promise:nth-child(1) .contact__promise-icon { animation: promiseBreath 4s ease-in-out infinite; }
.contact__promise:nth-child(2) .contact__promise-icon { animation: promiseBreath 4s ease-in-out infinite; animation-delay: 1.3s; }
.contact__promise:nth-child(3) .contact__promise-icon { animation: promiseBreath 4s ease-in-out infinite; animation-delay: 2.6s; }
.contact__promise:hover .contact__promise-icon { animation: none; }

.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: Standard-Brand-Card (matched Sonderanfrage/Greenscreen-Style) */
.contact__form {
  position: relative;
  background: var(--color-surface);
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl);
  overflow: hidden;
}
/* Subtile Orange-Akzentlinie oben fuer Charakter (matched Sonderanfrage-Card auf Pakete-Seite) */
.contact__form::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(232,115,78,0.5) 30%, rgba(245,166,35,0.6) 50%, rgba(232,115,78,0.5) 70%, transparent);
  pointer-events: none;
}

.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;
}

/* 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: grid;
  grid-template-columns: minmax(280px, 1.4fr) repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--space-2xl) var(--space-3xl);
  align-items: start;
  padding-bottom: var(--space-2xl);
  border-bottom: 1px solid var(--color-border);
  margin-bottom: var(--space-xl);
}

.footer__brand {
  display: flex;
  flex-direction: column;
}

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

/* Die einzelnen Cols werden direkte Grid-Items des footer__inner */
.footer__links {
  display: contents;
}

@media (max-width: 768px) {
  .footer__inner {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }
  .footer__links {
    display: contents;
  }
}

.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);
}

/* === KONTAKT-BEREICH: Mail als Text-Link (kein Button) + Info-Zeilen === */
.footer__col a.footer__mail,
.footer__mail {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0;
  background: none;
  border: none;
  text-decoration: none;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14.5px;
  color: rgba(255, 255, 255, 0.92);
  transition: color .25s ease;
  cursor: pointer;
  align-self: flex-start;
  line-height: 1.3;
  margin-bottom: 6px;
}
.footer__mail svg {
  width: 18px;
  height: 18px;
  /* Logo-Gold-Ton (warmer Honig) statt orange CTA-Color, matched das Logo */
  color: #D4A574;
  flex-shrink: 0;
  transition: transform .3s cubic-bezier(.34,1.56,.64,1);
}
.footer__col a.footer__mail:hover,
.footer__mail:hover {
  color: #E8C088;
}
.footer__mail:hover svg { transform: scale(1.1) rotate(-4deg); color: #E8C088; }

.footer__mail-value {
  transition: color .25s ease;
  border-bottom: 1px dashed rgba(212, 165, 116, 0.5);
}

/* Info-Zeilen unter der Mail (Region + Antwortzeit) */
.footer__contact-info {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.4;
  margin-top: 8px;
}
.footer__contact-info svg {
  width: 16px;
  height: 16px;
  /* Logo-Gold (matched zum Logo-Icon im Footer-Brand-Block) */
  color: #D4A574;
  flex-shrink: 0;
}

/* === Folgt-uns-Spalte mit Social-Pills (einheitlich wie Login-Btn) === */
.footer__col--social {
  gap: 10px;
}
.footer__social-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  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-family: var(--font-display);
  font-size: 13.5px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.92);
  text-decoration: none;
  transition: all var(--duration) var(--ease);
  align-self: flex-start;
  white-space: nowrap;
}
.footer__social-pill svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: rgba(255, 255, 255, 0.92);
  transition: transform .3s cubic-bezier(.34,1.56,.64,1);
}
.footer__col a.footer__social-pill:hover,
.footer__social-pill:hover {
  transform: translateY(-2px);
  color: #fff;
  border-color: transparent;
}
.footer__social-pill:hover svg { transform: scale(1.1); }

/* Instagram-Hover (Brand-Gradient) */
.footer__social-pill--insta:hover {
  background: linear-gradient(135deg, #FEDA77 0%, #F58529 25%, #DD2A7B 55%, #8134AF 90%);
  box-shadow: 0 8px 22px rgba(221,42,123,0.4), inset 0 1px 0 rgba(255,255,255,0.25);
}

/* Facebook-Hover (Brand-Blau) */
.footer__social-pill--fb:hover {
  background: linear-gradient(135deg, #4267B2 0%, #1877F2 50%, #166FE5 100%);
  box-shadow: 0 8px 22px rgba(24,119,242,0.4), inset 0 1px 0 rgba(255,255,255,0.25);
}

/* === Kundenbereich aufgewertet mit Bullets === */
.footer__kunden-bullets {
  list-style: none;
  padding: 0;
  margin: 10px 0 0;
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.footer__kunden-bullets li {
  font-size: 13px;
  color: var(--color-text-muted);
  padding-left: 16px;
  position: relative;
  line-height: 1.4;
}
.footer__kunden-bullets li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  /* Logo-Gold-Gradient (warmer Honig statt orange CTA) */
  background: linear-gradient(135deg, #E8C088, #D4A574);
  box-shadow: 0 0 8px rgba(212, 165, 116, 0.45);
}

/* 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__col a.footer__kunden-btn:hover,
.footer__kunden-btn:hover {
  background:
    linear-gradient(135deg,
      #FFD480 0%,
      #F5A623 28%,
      #E8853A 60%,
      #C46A28 100%
    );
  border-color: transparent;
  color: #3a1f08;
  text-shadow: 0 1px 0 rgba(255, 240, 200, 0.5);
  transform: translateY(-2px);
  box-shadow:
    0 8px 22px rgba(196, 106, 40, 0.45),
    0 0 0 1px rgba(255, 200, 100, 0.25) inset,
    0 1px 0 rgba(255, 240, 180, 0.4) inset;
}

.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__logo {
  display: block;
  max-width: 240px;
  width: 70%;
  height: auto;
  margin: var(--space-md) auto var(--space-lg);
  filter: drop-shadow(0 4px 16px rgba(232,115,78,0.25));
}

/* ===================================================================
   TRUST STRIP (Anlass-LPs unter Hero)
   =================================================================== */
.trust-strip { padding: var(--space-2xl) 0; }
.trust-strip__inner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--space-md);
  padding: var(--space-lg) var(--space-xl);
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 16px;
}
.trust-strip__item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255,255,255,0.85);
}
.trust-strip__item svg { color: var(--color-accent); flex-shrink: 0; }
.trust-strip__item div { display: flex; flex-direction: column; gap: 1px; min-width: 0; }
.trust-strip__item strong {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  color: #fff;
  line-height: 1.2;
}
.trust-strip__item span {
  font-size: 12px;
  color: rgba(255,255,255,0.55);
  line-height: 1.3;
}

/* ===================================================================
   LOCATIONS GRID (Anlass-LPs)
   =================================================================== */
.locations { padding: var(--space-5xl) 0; }
.locations__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  margin-bottom: var(--space-xl);
}
@media (max-width: 720px) { .locations__grid { grid-template-columns: 1fr; } }

.locations__group {
  padding: var(--space-lg);
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 14px;
}
.locations__group-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  color: #fff;
  margin-bottom: var(--space-md);
  padding-bottom: var(--space-sm);
  border-bottom: 1px dashed rgba(232,115,78,0.3);
}
.locations__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px 16px;
}
.locations__list li {
  font-size: 14px;
  color: rgba(255,255,255,0.75);
  padding-left: 16px;
  position: relative;
}
.locations__list li::before {
  content: '';
  position: absolute;
  left: 0; top: 9px;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--color-accent);
  opacity: 0.7;
}
.locations__hint {
  text-align: center;
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  font-style: italic;
  max-width: 720px;
  margin: 0 auto;
}

/* ===================================================================
   CROSS OCCASIONS (Anlass-LPs Cross-Linking)
   =================================================================== */
.cross-occasions { padding: var(--space-4xl) 0; }
.cross-occasions__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--space-md);
}
.cross-occasions__card {
  display: block;
  padding: var(--space-lg);
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  color: #fff;
  text-decoration: none;
  transition: all .25s ease;
}
.cross-occasions__card:hover {
  transform: translateY(-4px);
  background: rgba(232,115,78,0.06);
  border-color: var(--color-accent);
  box-shadow: 0 12px 30px rgba(232,115,78,0.18);
}
.cross-occasions__icon { font-size: 30px; display: block; margin-bottom: 8px; }
.cross-occasions__card h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 18px;
  margin: 0 0 4px;
}
.cross-occasions__card p {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  margin: 0 0 12px;
  line-height: 1.4;
}
.cross-occasions__link {
  font-size: 13px;
  font-weight: 600;
  color: var(--color-accent);
  transition: transform .2s ease;
  display: inline-block;
}
.cross-occasions__card:hover .cross-occasions__link { transform: translateX(4px); }

/* Hidden-Track Player */
.credit-modal__player {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 14px;
  margin: 0 0 var(--space-lg);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(232,115,78,0.25);
  border-radius: 14px;
  text-align: left;
}
.credit-modal__play {
  flex-shrink: 0;
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, #F5A623, #FF6B4A);
  border: none;
  border-radius: 50%;
  color: #fff;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease;
  box-shadow: 0 6px 14px rgba(232,115,78,0.35);
}
.credit-modal__play:hover { transform: scale(1.06); box-shadow: 0 8px 20px rgba(232,115,78,0.5); }
.credit-modal__play:active { transform: scale(0.96); }
.credit-modal__play-icon--play { margin-left: 2px; } /* optisch zentrieren */
.credit-modal__play-icon[hidden] { display: none !important; }

.credit-modal__track {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.credit-modal__track-meta {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 8px;
}
.credit-modal__track-title {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 13px;
  color: #fff;
  letter-spacing: 0.02em;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.credit-modal__track-time {
  font-family: var(--font-body);
  font-size: 11px;
  font-variant-numeric: tabular-nums;
  color: rgba(255,255,255,0.5);
  flex-shrink: 0;
}
.credit-modal__progress {
  position: relative;
  height: 6px;
  background: rgba(255,255,255,0.08);
  border-radius: 3px;
  overflow: hidden;
  cursor: pointer;
}
.credit-modal__progress:hover { background: rgba(255,255,255,0.12); }
.credit-modal__progress-fill {
  position: absolute;
  inset: 0 auto 0 0;
  width: 0%;
  background: linear-gradient(90deg, #F5A623, #FF6B4A);
  border-radius: 3px;
  transition: width .1s linear;
}

.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;
  padding: 8px 3px 4px;
  border-top: 1px solid #eee;
  margin-top: 6px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.demo__result-branding__tag {
  font-family: Georgia, serif;
  font-style: italic;
  font-weight: 400;
  font-size: 8px;
  color: #8E8E93;
  line-height: 1.2;
}
.demo__result-branding__url {
  font-family: 'Arial Black', sans-serif;
  font-weight: 900;
  font-size: 11px;
  color: #1C1C1E;
  line-height: 1.1;
  letter-spacing: -0.2px;
}
.demo__result-branding__sub {
  font-size: 7px;
  color: #E8734E;
  font-weight: 600;
  letter-spacing: 0.2px;
  text-transform: uppercase;
}
.demo__result-branding__logo {
  display: block;
  max-width: 170px;
  height: auto;
  max-height: 40px;
  margin: 7px auto 0;
  /* Helles Original-Logo wird komplett schwarz dargestellt (subtil 70% Opacity) */
  filter: brightness(0) opacity(0.7);
}
/* Mobile: Logo etwas kleiner damit der Polaroid-Footer nicht zu hoch wird */
@media (max-width: 520px) {
  .demo__result-branding__logo {
    max-width: 130px;
    max-height: 30px;
  }
}

.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, #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;
}

.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);
}

.legal__content em {
  color: var(--color-text-subtle);
  font-style: italic;
}

/* Stand-Hinweis am Ende einer Rechtsseite (dezent abgesetzt) */
.legal__stand {
  margin-top: var(--space-2xl);
  padding-top: var(--space-md);
  border-top: 1px solid var(--color-border);
  color: var(--color-text-subtle);
}

/* ===================================================================
   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__channel-grid {
    grid-template-columns: 1fr 1fr;
  }

  .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 {
    padding: 14px 4px;
  }
  .hero__stat {
    padding: 4px var(--space-lg);
  }

  .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: 700px) {
  .hero__stats {
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 8px 28px;
    width: 100%;
    max-width: 340px;
  }
  .hero__stat {
    padding: 16px 0;
    width: 100%;
  }
  /* Vertikalen Trenner durch horizontalen ersetzen */
  .hero__stat + .hero__stat::before {
    top: 0;
    bottom: auto;
    left: 15%;
    right: 15%;
    width: auto;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(245, 166, 35, 0.22) 50%, transparent);
  }
  .hero__stat-number {
    font-size: 26px;
    white-space: normal; /* erlaubt Umbruch bei sehr schmalen Displays */
  }
  .hero__stat-label {
    font-size: 12px;
    margin-top: 7px;
  }
}

/* ===================================================================
   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; }
}

/* ===================================================================
   GALERIE (Polaroid-Grid mit Filter + Lightbox)
   =================================================================== */

.gallery { padding: var(--space-4xl) 0; }

.gallery__filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-bottom: var(--space-2xl);
  padding: 6px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 999px;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}
.gallery__filter {
  padding: 8px 16px;
  background: transparent;
  border: none;
  border-radius: 999px;
  color: rgba(255,255,255,0.65);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all .15s ease;
}
.gallery__filter:hover { color: #fff; background: rgba(255,255,255,0.04); }
.gallery__filter--active {
  background: linear-gradient(135deg, #F5A623, #FF6B4A);
  color: #fff;
  box-shadow: 0 4px 12px rgba(232,115,78,0.3);
}

.gallery__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: var(--space-xl);
  margin-bottom: var(--space-2xl);
}
@media (max-width: 600px) {
  .gallery__grid { grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: var(--space-md); }
}

.gallery__item {
  position: relative;
  margin: 0;
  padding: 12px 12px 48px;
  background: #fafaf4;
  border-radius: 4px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.35), 0 1px 3px rgba(0,0,0,0.5);
  transform: rotate(var(--rotate, 0deg));
  transition: transform .25s ease, box-shadow .25s ease, z-index 0s linear .25s;
  cursor: zoom-in;
}
.gallery__item:hover {
  transform: rotate(0deg) scale(1.04);
  box-shadow: 0 16px 32px rgba(0,0,0,0.5), 0 4px 10px rgba(0,0,0,0.4);
  z-index: 10;
  transition: transform .25s ease, box-shadow .25s ease, z-index 0s linear 0s;
}
.gallery__item img {
  display: block;
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 2px;
  background: #1a1228;
}
.gallery__item figcaption {
  position: absolute;
  bottom: 12px;
  left: 12px;
  right: 12px;
  text-align: center;
  font-family: 'Caveat', cursive;
  font-weight: 700;
  font-size: 20px;
  color: #1a1228;
  line-height: 1.2;
}

.gallery__hint {
  text-align: center;
  font-size: 15px;
  color: rgba(255,255,255,0.65);
  max-width: 560px;
  margin: var(--space-xl) auto 0;
}
.gallery__hint a {
  color: var(--color-accent);
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: rgba(232,115,78,0.4);
  text-underline-offset: 3px;
}
.gallery__hint a:hover { text-decoration-color: var(--color-accent); }

/* === LIGHTBOX === */
.lightbox[hidden] { display: none !important; }
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(10,5,15,0.94);
  backdrop-filter: blur(10px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-md);
  animation: lightboxFadeIn .2s ease;
}
@keyframes lightboxFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
.lightbox__content {
  margin: 0;
  max-width: 90vw;
  max-height: 85vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.lightbox__content img {
  max-width: 100%;
  max-height: 78vh;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.6);
}
.lightbox__content figcaption {
  font-family: 'Caveat', cursive;
  font-weight: 700;
  font-size: 22px;
  color: #fff;
  text-shadow: 0 2px 8px rgba(0,0,0,0.6);
}
.lightbox__close {
  position: absolute;
  top: 20px;
  right: 24px;
  width: 44px; height: 44px;
  background: rgba(255,255,255,0.1);
  border: none;
  border-radius: 50%;
  color: #fff;
  font-size: 32px;
  line-height: 1;
  cursor: pointer;
  transition: background .15s ease, transform .15s ease;
}
.lightbox__close:hover { background: rgba(255,255,255,0.2); transform: scale(1.06); }
.lightbox__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 56px; height: 56px;
  background: rgba(255,255,255,0.1);
  border: none;
  border-radius: 50%;
  color: #fff;
  font-size: 36px;
  line-height: 1;
  cursor: pointer;
  transition: background .15s ease;
}
.lightbox__nav:hover { background: rgba(232,115,78,0.4); }
.lightbox__nav--prev { left: 24px; }
.lightbox__nav--next { right: 24px; }
@media (max-width: 600px) {
  .lightbox__nav { width: 44px; height: 44px; font-size: 28px; }
  .lightbox__nav--prev { left: 8px; }
  .lightbox__nav--next { right: 8px; }
}

/* ===================================================================
   SHINING – Body-Level warmes Licht-Layer
   Statt section-bezogener Glows: durchgehende Atmosphaere ueber alle
   Sections hinweg. Keine harten Kanten.
   =================================================================== */

body { position: relative; }

body::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 100%;
  background:
    radial-gradient(ellipse 1200px 900px at 15% 200px, rgba(232,115,78,0.30), transparent 55%),
    radial-gradient(ellipse 1100px 1300px at 95% 35%, rgba(245,166,35,0.22), transparent 55%),
    radial-gradient(ellipse 1000px 900px at 20% 65%, rgba(232,115,78,0.20), transparent 55%),
    radial-gradient(ellipse 900px 800px at 85% 90%, rgba(245,166,35,0.18), transparent 55%);
  pointer-events: none;
  z-index: -1;
}

/* Section-Backgrounds leicht durchscheinen lassen damit Body-Glow wirkt */
.packages,
.testimonials,
.contact,
.configurator,
.polaroid-cta,
.why,
.events,
.features,
.faq-list,
.process,
.strip,
.cta-banner,
.legal {
  background: rgba(19, 19, 26, 0.92) !important;
}
.section--warm { background: rgba(24, 24, 32, 0.85) !important; }
.section--warm-2 { background: rgba(26, 26, 36, 0.85) !important; }

/* Section-Glow Klassen: alte Glows wirkungslos machen
   (HTML kann die Klassen behalten, brauchen aber nichts mehr) */
.section--glow::before,
.section--glow-top::before,
.section--glow-bottom::before,
.section--glow-left::before,
.section--glow-right::before,
.section--glow-warm::after { display: none; }

/* CARD-SHINING: leicht hellere Cards mit warmem Hover-Glow */
.packages__card,
.features__item,
.why__card,
.events__card {
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease, background .25s ease;
}
.packages__card:hover,
.features__item:hover,
.why__card:hover,
.events__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(232,115,78,0.18), 0 0 0 1px rgba(232,115,78,0.25);
}

/* Subtle inner shine an wichtigen Karten (oben heller Lichtreflex) */
.packages__card,
.why__card {
  position: relative;
}
.packages__card::before,
.why__card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.15) 50%, transparent 100%);
  pointer-events: none;
  z-index: 1;
}


/* ===================================================================
   CALENDAR (Custom Date-Picker fuer Kontakt-Formular)
   =================================================================== */

.calendar { position: relative; }

.calendar__display {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 14px 18px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  color: rgba(255,255,255,0.7);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  transition: all .2s ease;
  text-align: left;
}
.calendar__display:hover,
.calendar__display:focus-visible {
  border-color: var(--color-accent);
  background: rgba(232,115,78,0.05);
  color: #fff;
}
.calendar__display--selected { color: #fff; }
.calendar__display-icon { color: var(--color-accent); flex-shrink: 0; }

.calendar__popup {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  z-index: 50;
  background: #1a1228;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.5);
  animation: calendarFadeIn .2s ease;
}

@keyframes calendarFadeIn {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: translateY(0); }
}

.calendar__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.calendar__nav {
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  color: #fff;
  cursor: pointer;
  font-size: 20px;
  line-height: 1;
  transition: all .15s ease;
}
.calendar__nav:hover { background: var(--color-accent); border-color: var(--color-accent); }
.calendar__nav:disabled { opacity: 0.3; cursor: not-allowed; }

.calendar__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 17px;
  color: #fff;
  text-transform: capitalize;
}

.calendar__weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
  margin-bottom: 8px;
  font-size: 11px;
  font-weight: 600;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-align: center;
}
.calendar__weekdays span:nth-child(6),
.calendar__weekdays span:nth-child(7) { color: var(--color-accent); opacity: 0.7; }

.calendar__grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
}

.calendar__day {
  aspect-ratio: 1;
  display: flex; align-items: center; justify-content: center;
  background: transparent;
  border: 1px solid transparent;
  border-radius: 10px;
  color: rgba(255,255,255,0.85);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all .15s ease;
  position: relative;
}
.calendar__day:hover:not(:disabled) {
  background: rgba(232,115,78,0.15);
  border-color: var(--color-accent);
  color: #fff;
}
.calendar__day--other { color: rgba(255,255,255,0.15); pointer-events: none; }
.calendar__day--locked {
  color: rgba(255,255,255,0.25);
  cursor: not-allowed;
  text-decoration: line-through;
  text-decoration-color: rgba(255,255,255,0.2);
}
.calendar__day--locked:hover { background: transparent; border-color: transparent; }
.calendar__day--weekend { color: var(--color-accent); font-weight: 600; }
.calendar__day--season {
  background: rgba(245,166,35,0.08);
  border-color: rgba(245,166,35,0.15);
}
.calendar__day--today {
  border-color: rgba(255,255,255,0.4);
  font-weight: 700;
}
.calendar__day--selected,
.calendar__day--selected:hover {
  background: linear-gradient(135deg, #F5A623, #FF6B4A);
  border-color: transparent;
  color: #fff;
  font-weight: 700;
  box-shadow: 0 4px 12px rgba(232,115,78,0.4);
}

.calendar__legend {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,0.06);
  font-size: 11px;
  color: rgba(255,255,255,0.55);
}
.calendar__legend-item { display: inline-flex; align-items: center; gap: 5px; }
.calendar__dot {
  width: 10px; height: 10px; border-radius: 3px;
  display: inline-block;
}
.calendar__dot--weekend { background: var(--color-accent); }
.calendar__dot--season { background: rgba(245,166,35,0.35); border: 1px solid rgba(245,166,35,0.6); }
.calendar__dot--locked { background: rgba(255,255,255,0.15); }

.calendar__footnote {
  margin-top: 10px;
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  text-align: center;
  font-style: italic;
}

@media (max-width: 520px) {
  .calendar__popup { padding: 14px; }
  .calendar__day { font-size: 13px; }
  .calendar__legend { font-size: 10px; gap: 8px; }
}


/* Step-Badges in den Config-Groups */
.config__step-badge {
  display: inline-block;
  padding: 4px 10px;
  background: linear-gradient(135deg, rgba(245,166,35,0.12), rgba(255,107,74,0.12));
  color: var(--color-accent);
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 999px;
  margin-bottom: 8px;
  margin-right: auto;
}
.config__step-badge--summary {
  background: rgba(255,255,255,0.12);
  color: #fff;
}
.config__group--step { scroll-margin-top: 100px; }
.config__group--step .config__group-header {
  flex-wrap: wrap;
  gap: 8px;
}
.config__step-hint {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  margin: -4px 0 12px;
  font-style: italic;
}

/* Eventzeit-Felder (Step 2) */
.config__time-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 8px;
}
.config__time-field { display: flex; flex-direction: column; gap: 6px; }
.config__time-field label {
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,0.55);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
/* === TIMEPICKER (Custom Dropdown fuer Zeit-Auswahl) === */
.timepicker { position: relative; }

.timepicker__btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 14px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  color: rgba(255,255,255,0.55);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  transition: all .15s ease;
  font-variant-numeric: tabular-nums;
}
.timepicker__btn:hover,
.timepicker__btn:focus-visible {
  border-color: var(--color-accent);
  background: rgba(232,115,78,0.06);
  color: #fff;
  outline: none;
}
.timepicker__btn--selected { color: #fff; font-weight: 600; }
.timepicker__btn-icon { color: var(--color-accent); flex-shrink: 0; }

.timepicker__popup {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  right: 0;
  z-index: 60;
  max-height: 240px;
  overflow-y: auto;
  background: #1a1228;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  box-shadow: 0 16px 40px rgba(0,0,0,0.5);
  padding: 6px;
  animation: timepickerIn .15s ease;
  /* Smooth scroll + overscroll containment */
  scroll-behavior: smooth;
  overscroll-behavior: contain;
  /* Scrollbar */
  scrollbar-width: thin;
  scrollbar-color: rgba(232,115,78,0.5) transparent;
}
.timepicker__popup::-webkit-scrollbar { width: 6px; }
.timepicker__popup::-webkit-scrollbar-track { background: transparent; }
.timepicker__popup::-webkit-scrollbar-thumb { background: rgba(232,115,78,0.4); border-radius: 3px; }
.timepicker__popup::-webkit-scrollbar-thumb:hover { background: rgba(232,115,78,0.7); }

@keyframes timepickerIn {
  from { opacity: 0; transform: translateY(-6px); }
  to { opacity: 1; transform: translateY(0); }
}

.timepicker__slot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 9px 12px;
  background: transparent;
  border: none;
  border-radius: 8px;
  color: rgba(255,255,255,0.85);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  font-variant-numeric: tabular-nums;
  cursor: pointer;
  text-align: left;
  transition: all .12s ease;
}
.timepicker__slot:hover { background: rgba(232,115,78,0.12); color: #fff; }
.timepicker__slot--selected {
  background: linear-gradient(135deg, #F5A623, #FF6B4A);
  color: #fff;
  font-weight: 700;
}
.timepicker__slot-hint {
  font-size: 11px;
  color: rgba(255,255,255,0.4);
  font-weight: 400;
}
.timepicker__slot--selected .timepicker__slot-hint { color: rgba(255,255,255,0.85); }

/* Zeit-Slot Gruppentitel (Nachmittag, Abend, Nacht) */
.timepicker__group {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  padding: 10px 12px 4px;
}

/* Quick-Preset Chips */
.config__time-presets {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  align-items: center;
  margin-top: 12px;
}
.config__time-presets-label {
  font-size: 12px;
  color: rgba(255,255,255,0.45);
  margin-right: 4px;
}
.time-preset {
  padding: 6px 12px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 999px;
  color: rgba(255,255,255,0.7);
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  cursor: pointer;
  transition: all .15s ease;
  white-space: nowrap;
}
.time-preset:hover,
.time-preset:focus-visible {
  background: rgba(232,115,78,0.15);
  border-color: var(--color-accent);
  color: #fff;
  outline: none;
}
.time-preset--active {
  background: linear-gradient(135deg, rgba(245,166,35,0.25), rgba(255,107,74,0.25));
  border-color: var(--color-accent);
  color: #fff;
}
.config__time-result {
  margin-top: 10px;
  font-size: 13px;
  color: var(--color-accent);
  font-weight: 600;
  min-height: 18px;
}
.config__label-optional {
  font-size: 12px;
  font-weight: 500;
  color: rgba(255,255,255,0.45);
  font-style: italic;
  margin-left: 6px;
}

/* ===================================================================
   CONTACT MODE SWITCHER (Angebot vs. nur Frage)
   =================================================================== */

.contact__mode {
  display: flex;
  gap: 6px;
  padding: 6px;
  background: rgba(255,255,255,0.025);
  border: 1px solid var(--color-border);
  border-radius: 14px;
  margin-bottom: 24px;
}
.contact__mode-btn {
  flex: 1;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 18px;
  background: transparent;
  border: none;
  border-radius: 12px;
  color: rgba(255,255,255,0.55);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all .3s cubic-bezier(.2,.8,.2,1);
  overflow: hidden;
}
.contact__mode-btn svg {
  transition: transform .3s cubic-bezier(.2,.8,.2,1);
}
.contact__mode-btn:hover:not(.contact__mode-btn--active) {
  color: #fff;
  background: rgba(255,255,255,0.05);
  transform: translateY(-1px);
}
.contact__mode-btn:hover:not(.contact__mode-btn--active) svg {
  transform: scale(1.1) rotate(-5deg);
  color: var(--color-accent);
}
.contact__mode-btn--active {
  background: rgba(245, 166, 35, 0.10);
  color: #fff;
  box-shadow: inset 0 0 0 1px rgba(245, 166, 35, 0.28);
}
.contact__mode-btn--active svg { color: var(--color-accent); }
/* Dezenter animierter Akzent oben (subtiler Lebenseffekt, kein Reizueberflutung) */
.contact__mode-btn--active::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 40%;
  height: 1.5px;
  background: linear-gradient(90deg, transparent, rgba(245,166,35,0.6), rgba(232,115,78,0.6), transparent);
  border-radius: 0 0 2px 2px;
  animation: modeIndicator 2.4s ease-in-out infinite;
  opacity: 0.85;
}
@keyframes modeIndicator {
  0%, 100% { opacity: 0.5; width: 38%; }
  50% { opacity: 0.9; width: 55%; }
}
@media (max-width: 520px) {
  .contact__mode-btn { font-size: 12px; padding: 10px 12px; gap: 6px; }
  .contact__mode-btn svg { width: 14px; height: 14px; }
}

/* Frage-Modus: Event-Felder + Adress-Section verstecken */
.contact__form[data-mode="frage"] .contact__form-group--event,
.contact__form[data-mode="frage"] .contact__form-row--event,
.contact__form[data-mode="frage"] .contact__form-section-title--event,
.contact__form[data-mode="frage"] .contact__event-address {
  display: none;
}

/* PLZ-Feld schmaler */
.contact__form-row .contact__form-group--plz { flex: 0 0 120px; }
@media (max-width: 520px) {
  .contact__form-row .contact__form-group--plz { flex: 1 1 100%; }
}

/* Mini-Section-Titles im Formular */
.contact__form-section-title {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-accent);
  margin: 28px 0 14px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.contact__form-section-title::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, rgba(232,115,78,0.35), transparent 80%);
}
.contact__form-section-title:first-child { margin-top: 0; }

/* "Adresse identisch"-Checkbox */
.contact__form-same {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  cursor: pointer;
  font-size: 13.5px;
  color: rgba(255,255,255,0.78);
  user-select: none;
  transition: all .2s ease;
  margin-bottom: 14px;
  position: relative;
}
.contact__form-same:hover {
  background: rgba(255,255,255,0.05);
  border-color: rgba(232,115,78,0.35);
  color: #fff;
}
.contact__form-same input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.contact__form-same-box {
  width: 18px; height: 18px;
  border: 2px solid rgba(255,255,255,0.25);
  border-radius: 5px;
  flex-shrink: 0;
  display: grid; place-items: center;
  transition: all .18s ease;
  background: rgba(0,0,0,0.2);
}
.contact__form-same-box::after {
  content: '';
  width: 9px; height: 5px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(-45deg) scale(0);
  transform-origin: center;
  transition: transform .18s cubic-bezier(.4,1.6,.6,1);
  margin-top: -2px;
}
.contact__form-same input:checked ~ .contact__form-same-box {
  background: linear-gradient(135deg, #F5A623, #FF6B4A);
  border-color: transparent;
  box-shadow: 0 4px 12px rgba(232,115,78,0.4);
}
.contact__form-same input:checked ~ .contact__form-same-box::after {
  transform: rotate(-45deg) scale(1);
}
.contact__form-same input:checked ~ .contact__form-same-text {
  color: #fff;
  font-weight: 500;
}
.contact__form-same input:focus-visible ~ .contact__form-same-box {
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
}

/* Wenn "identisch" gecheckt: Event-Adress-Block ausblenden */
.contact__form[data-same-address="true"] .contact__event-address {
  display: none;
}

/* Label-Hint (optional) */
.contact__form-label-hint {
  font-size: 12px;
  font-weight: 500;
  color: rgba(255,255,255,0.4);
  font-style: italic;
  margin-left: 4px;
}

/* Radio-Karten (Indoor/Outdoor) */
.contact__radio-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 10px;
  margin-top: 4px;
}
.contact__radio {
  position: relative;
  cursor: pointer;
}
.contact__radio input[type="radio"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.contact__radio-box {
  display: none; /* nur Radio-Mechanik, visuell via content gestaltet */
}
.contact__radio-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 14px 10px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  transition: all .15s ease;
  text-align: center;
}
.contact__radio:hover .contact__radio-content {
  background: rgba(232,115,78,0.06);
  border-color: rgba(232,115,78,0.3);
}
.contact__radio input[type="radio"]:checked + .contact__radio-box + .contact__radio-content,
.contact__radio input[type="radio"]:checked ~ .contact__radio-content {
  background: rgba(232,115,78,0.12);
  border-color: var(--color-accent);
  box-shadow: inset 0 0 0 1px rgba(232,115,78,0.5);
}
.contact__radio input[type="radio"]:focus-visible ~ .contact__radio-content {
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
}
.contact__radio-icon {
  color: rgba(255,255,255,0.6);
  transition: color .15s ease;
}
.contact__radio:hover .contact__radio-icon,
.contact__radio input[type="radio"]:checked ~ .contact__radio-content .contact__radio-icon {
  color: var(--color-accent);
}
.contact__radio-label {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  line-height: 1.3;
}
.config__summary-hint {
  font-size: 13px;
  color: rgba(255,255,255,0.7);
  margin-top: 10px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.config__summary-hint::before { content: '📅'; }

.config__summary-altpath {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px dashed rgba(255,255,255,0.12);
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  text-align: center;
  line-height: 1.5;
}
.config__summary-altpath-link {
  color: var(--color-accent);
  text-decoration: underline;
  text-decoration-color: rgba(232,115,78,0.4);
  text-underline-offset: 2px;
  font-weight: 600;
  transition: text-decoration-color .2s ease;
}
.config__summary-altpath-link:hover {
  text-decoration-color: var(--color-accent);
}

/* ===================================================================
   WIZARD — Empfehlungs-Hilfe oberhalb der Extras
   =================================================================== */
.config__wizard-block {
  margin-bottom: var(--space-xl);
}

.config__wizard-toggle {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  background:
    linear-gradient(135deg, rgba(245,166,35,0.08), rgba(232,115,78,0.04) 60%, rgba(255,255,255,0.012)),
    rgba(255,255,255,0.018);
  border: 1px dashed rgba(232,115,78,0.35);
  border-radius: 14px;
  color: var(--color-text);
  font-family: var(--font-body);
  text-align: left;
  cursor: pointer;
  transition: all .3s ease;
}
.config__wizard-toggle:hover {
  border-color: rgba(232,115,78,0.6);
  background:
    linear-gradient(135deg, rgba(245,166,35,0.12), rgba(232,115,78,0.06) 60%, rgba(255,255,255,0.02)),
    rgba(255,255,255,0.025);
  transform: translateY(-1px);
}
.config__wizard-toggle-icon {
  font-size: 24px;
  flex-shrink: 0;
}
.config__wizard-toggle-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-width: 0;
}
.config__wizard-toggle-text strong {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  color: #fff;
}
.config__wizard-toggle-text small {
  font-size: 13px;
  color: var(--color-text-muted);
  line-height: 1.4;
}
.config__wizard-toggle-arrow {
  color: var(--color-accent);
  transition: transform .3s ease;
  flex-shrink: 0;
}
.config__wizard-toggle[aria-expanded="true"] .config__wizard-toggle-arrow {
  transform: rotate(180deg);
}

/* Wizard-Body */
.config__wizard {
  margin-top: 10px;
  padding: 22px 22px 18px;
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  animation: cfgWizardSlide .35s cubic-bezier(.4,0,.2,1);
}
@keyframes cfgWizardSlide {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}

.config__wizard-step {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.config__wizard-step-label {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-accent);
}
.config__wizard-q {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  color: #fff;
  margin: 0;
  line-height: 1.3;
}

.config__wizard-options {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.config__wizard-options--grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 10px;
}

.config__wizard-opt {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 18px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 12px;
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all .25s ease;
  text-align: center;
  flex-direction: column;
  min-height: 60px;
}
.config__wizard-options:not(.config__wizard-options--grid) .config__wizard-opt {
  flex-direction: row;
  min-height: auto;
  padding: 10px 18px;
  flex: 1 1 auto;
}
.config__wizard-opt-icon {
  font-size: 22px;
  line-height: 1;
}
.config__wizard-opt:hover {
  background: linear-gradient(135deg, rgba(245,166,35,0.12), rgba(232,115,78,0.06));
  border-color: rgba(232,115,78,0.5);
  transform: translateY(-2px);
}
/* Visuelles Feedback: gewaehlte Option (kurz sichtbar bevor naechster Step kommt) */
.config__wizard-opt.is-selected {
  background: linear-gradient(135deg, #F5A623 0%, #E8734E 100%);
  border-color: transparent;
  color: #fff;
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 6px 16px rgba(232,115,78,0.45), inset 0 1px 0 rgba(255,255,255,0.25);
}

/* ===================================================================
   KONFIGURATOR — Mobile Tuning (verhindert horizontales Ueberlaufen)
   =================================================================== */
@media (max-width: 600px) {
  /* Wizard-Optionen: minmax 150px bricht bei <320px Innenbreite -> 110px */
  .config__wizard-options--grid {
    grid-template-columns: repeat(auto-fit, minmax(110px, 1fr));
    gap: 8px;
  }
  .config__wizard-opt {
    padding: 10px 12px;
    font-size: 13px;
    min-height: 56px;
    word-break: break-word;
  }
  .config__wizard-options:not(.config__wizard-options--grid) .config__wizard-opt {
    padding: 9px 14px;
    font-size: 13px;
  }
  .config__wizard {
    padding: 18px 16px 14px;
  }
  .config__wizard-toggle {
    padding: 14px 14px;
    gap: 10px;
  }
  .config__wizard-toggle-text strong { font-size: 14px; }
  .config__wizard-toggle-text small { font-size: 12.5px; }
  .config__wizard-q { font-size: 16px; }
  /* Step-Cards: weniger Innen-Padding damit mehr Platz fuer Content bleibt */
  .config__group { padding: var(--space-lg); }
  .config__group-header {
    flex-wrap: wrap;
    gap: 8px;
  }
  .config__label { font-size: 16px; }
  /* Toggles: lange Namen brechen, Preis bleibt rechts */
  .config__toggle { padding: 10px 12px; gap: 10px; }
  .config__toggle-info { flex-wrap: wrap; gap: 4px 10px; }
  .config__toggle-name { font-size: 14px; flex: 1 1 auto; min-width: 0; }
  .config__toggle-price { font-size: 13px; white-space: nowrap; }
  /* Summary-Preis: 56px -> 44px damit nichts ueberlaeuft */
  .config__summary-amount { font-size: 44px; }
  .config__summary-currency { font-size: 20px; }
  .config__summary-inner { padding: var(--space-xl); }
  /* Kalender Padding reduzieren */
  .calendar__popup { padding: 14px; }
  .calendar__day { font-size: 13px; }
}
@media (max-width: 380px) {
  /* Extreme Mobile: noch dichter packen */
  .config__wizard-options--grid {
    grid-template-columns: 1fr 1fr;
  }
  .config__wizard-opt { font-size: 12.5px; padding: 9px 10px; }
  .config__group { padding: var(--space-md); }
  .config__summary-amount { font-size: 38px; }
}

/* Spar-Hinweis unter den Extras-Toggles (erscheint wenn Konfig ein Paket uebersteigt) */
.config__savings {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  margin-top: 18px;
  background: linear-gradient(135deg, rgba(245,166,35,0.12), rgba(232,115,78,0.06));
  border: 1px dashed rgba(232,115,78,0.45);
  border-radius: 14px;
  animation: cfgSavingsFade .35s ease;
}
/* Fix: display:flex ueberschreibt sonst das HTML-hidden-Attribut */
.config__savings[hidden] { display: none; }
@keyframes cfgSavingsFade {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}
.config__savings-icon {
  font-size: 24px;
  flex-shrink: 0;
  line-height: 1;
}
.config__savings-text {
  flex: 1;
  min-width: 0;
}
.config__savings-text strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  color: #fff;
  line-height: 1.3;
}
.config__savings-text p {
  margin: 4px 0 0;
  font-size: 13.5px;
  color: var(--color-text-muted);
  line-height: 1.5;
}
.config__savings-text p strong {
  display: inline;
  font-size: 13.5px;
  color: var(--color-accent);
}
.config__savings-btn {
  flex-shrink: 0;
  white-space: nowrap;
}
@media (max-width: 600px) {
  .config__savings { flex-direction: column; align-items: stretch; text-align: left; }
}

/* Ergebnis */
.config__wizard-result {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.config__wizard-result-label {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  background: linear-gradient(135deg, #F5A623, #FF6B4A);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.config__wizard-result-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  color: #fff;
  margin: 0;
  line-height: 1.3;
}
.config__wizard-result-desc {
  font-size: 14px;
  color: var(--color-text-muted);
  line-height: 1.5;
  margin: 0;
}
.config__wizard-result-list {
  list-style: none;
  padding: 0;
  margin: 8px 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.config__wizard-result-list li {
  font-size: 13.5px;
  color: var(--color-text);
  padding-left: 18px;
  position: relative;
  line-height: 1.4;
}
.config__wizard-result-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: linear-gradient(135deg, #F5A623, #E8734E);
}
.config__wizard-result-price {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 16px;
  background: rgba(245,166,35,0.08);
  border: 1px solid rgba(245,166,35,0.2);
  border-radius: 10px;
}
.config__wizard-result-price-label {
  font-size: 13px;
  color: var(--color-text-muted);
}
.config__wizard-result-price-amount {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  background: linear-gradient(135deg, #F5A623, #FF6B4A);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.config__wizard-result-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 8px;
}
.config__wizard-result-actions .btn { flex: 1 1 auto; }

