/* ==========================================================================
   NICO HUA® STUDIO — ANGEBOTE & PREISE (AWARD-WINNING EDITION 2026)
   Design System & Architecture: Dark Luxury / Spatial Glassmorphism
   Strict Compliance: Solaris Master Directive (Zero-Failure & Mobile Shield)
   Performance Target: 120 FPS / Zero Micro-Stutters / Zero Layout Shifts (CLS = 0)
   ========================================================================== */

/* --- 1. DESIGN TOKENS & CUSTOM PROPERTIES --- */
:root {
  /* Color Palette */
  --bg-black: #040507;
  --bg-deep: #07090e;
  --bg-surface: #0d1017;
  --bg-surface-elevated: #131722;
  --bg-card: rgba(16, 21, 31, 0.72);
  --bg-card-hover: rgba(22, 29, 44, 0.92);
  --bg-glass: rgba(255, 255, 255, 0.03);
  
  /* Text & Foreground (WCAG AA/AAA compliant) */
  --fg-main: #f8fafc;
  --fg-soft: #d1d5db;
  --fg-muted: #9ca3af;
  --fg-dim: #6b7280;
  
  /* Accents & Brand Energies */
  --cyan-core: #06b6d4;
  --cyan-glow: rgba(6, 182, 212, 0.35);
  --cyan-subtle: rgba(6, 182, 212, 0.12);
  --gold-core: #f59e0b;
  --gold-glow: rgba(245, 158, 11, 0.35);
  --purple-core: #a855f7;
  --purple-glow: rgba(168, 85, 247, 0.35);
  --emerald-core: #10b981;
  --emerald-glow: rgba(16, 185, 129, 0.35);
  
  /* Borders & Hairlines */
  --border-subtle: rgba(255, 255, 255, 0.08);
  --border-card: rgba(255, 255, 255, 0.12);
  --border-highlight: rgba(255, 255, 255, 0.22);
  --border-accent: rgba(6, 182, 212, 0.4);
  
  /* Spacings & Grid */
  --pad: clamp(18px, 4vw, 56px);
  --max-w: 1360px;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-xl: 30px;
  
  /* Transitions & Ease (GPU accelerated only) */
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --trans-fast: 0.2s var(--ease);
  --trans-normal: 0.35s var(--ease);
  --trans-smooth: 0.5s var(--ease);
  
  /* Header Specifics */
  --nav-height: 76px;
  --nav-blur: 16px;
}

/* --- 2. BASE RESETS & ZERO-WOBBLE ROOT --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--fg-main);
  background-color: var(--bg-black);
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

body {
  position: relative;
  width: 100%;
  min-height: 100vh;
  background: radial-gradient(circle at 50% 0%, #0d121f 0%, #050609 55%, #020305 100%);
  color: var(--fg-soft);
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
}

/* Scroll sentinel for 0% CPU sticky header observation */
#nav-sentinel {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 20px;
  pointer-events: none;
  visibility: hidden;
}

/* Background Ambient Lighting Rig (Hardware Accelerated & Contained) */
.ambient-glow-backdrop {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
  transform: translate3d(0, 0, 0);
  will-change: transform;
  contain: strict;
}
.glow-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.4;
  transform: translateZ(0);
}
.glow-orb-1 {
  top: -10vw;
  left: 15vw;
  width: 50vw;
  height: 50vw;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.18) 0%, transparent 70%);
}
.glow-orb-2 {
  top: 35vh;
  right: -10vw;
  width: 45vw;
  height: 45vw;
  background: radial-gradient(circle, rgba(168, 85, 247, 0.12) 0%, transparent 70%);
}
.glow-orb-3 {
  bottom: 10vh;
  left: 5vw;
  width: 55vw;
  height: 55vw;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.08) 0%, transparent 70%);
}

/* Typo Resilienz (Rule [03]) */
h1, h2, h3, h4, h5, h6 {
  color: var(--fg-main);
  font-weight: 700;
  line-height: 1.18;
  letter-spacing: -0.025em;
  text-wrap: balance;
  text-wrap: pretty;
  hyphens: none;
  -webkit-hyphens: none;
}

p, li, span, blockquote {
  hyphens: none;
  -webkit-hyphens: none;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--trans-fast), transform var(--trans-fast);
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}

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

.hero-backdrop picture,
.yoda-backdrop picture,
.superheroes-backdrop picture,
.persona-media-box picture,
.gallery-media picture {
  display: block;
  width: 100%;
  height: 100%;
}

/* Accessibility Focus Rings */
a:focus-visible, button:focus-visible, input:focus-visible {
  outline: 2px solid var(--cyan-core);
  outline-offset: 4px;
}

/* --- 3. UNIFIED ARCHITECTURAL HEADER (NICO HUA ECOSYSTEM) --- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  max-width: 100vw;
  box-sizing: border-box;
  z-index: 900;
  padding: max(18px, env(safe-area-inset-top, 18px)) max(var(--pad), env(safe-area-inset-right, 0px)) 18px max(var(--pad), env(safe-area-inset-left, 0px));
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(4, 5, 8, 0.4);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(var(--nav-blur));
  -webkit-backdrop-filter: blur(var(--nav-blur));
  transform: translate3d(0, 0, 0);
  backface-visibility: hidden;
  transition: background var(--trans-fast), border-color var(--trans-fast), padding var(--trans-fast), box-shadow var(--trans-fast);
}

.nav.is-scrolled {
  background: rgba(4, 5, 8, 0.88);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.5);
  padding-top: max(14px, env(safe-area-inset-top, 14px));
  padding-bottom: 14px;
}

.nav-brand .brand-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: #ffffff;
  font-weight: 850;
  letter-spacing: 0.18em;
  font-size: 13px;
  min-height: 44px;
}

.logo-emblem {
  width: 28px;
  height: 28px;
  object-fit: contain;
  filter: drop-shadow(0 0 8px rgba(6, 182, 212, 0.4));
  transition: transform var(--trans-fast);
}
.brand-link:hover .logo-emblem {
  transform: rotate(12deg) scale(1.08);
}

.brand-logo-text {
  font-weight: 850;
  letter-spacing: 0.18em;
}

.brand-sub {
  font-size: 9.5px;
  letter-spacing: 0.15em;
  color: var(--cyan-core);
  font-weight: 600;
  text-transform: uppercase;
  background: rgba(6, 182, 212, 0.12);
  padding: 2px 7px;
  border-radius: 4px;
  border: 1px solid rgba(6, 182, 212, 0.3);
}

/* Nav Links Menu */
.nav-links {
  display: flex;
  gap: clamp(14px, 1.6vw, 24px);
  font-size: 11.5px;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  align-items: center;
}

.nav-links a {
  position: relative;
  text-decoration: none;
  color: var(--fg-soft);
  padding: 8px 4px;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  transition: color var(--trans-fast);
}

.nav-links a:hover,
.nav-links a.active {
  color: #ffffff;
}

.nav-links a.active::after {
  content: "";
  position: absolute;
  bottom: 4px;
  left: 4px;
  right: 4px;
  height: 2px;
  background: var(--cyan-core);
  box-shadow: 0 0 8px var(--cyan-core);
  border-radius: 2px;
}

/* Dropdowns */
.nav-dropdown {
  position: relative;
}

.nav-dropdown-btn,
.nav-link-has-sub {
  background: transparent;
  border: none;
  color: var(--fg-soft);
  font-family: inherit;
  font-size: 11.5px;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 8px 4px;
  min-height: 44px;
  transition: color var(--trans-fast);
  touch-action: manipulation;
}
.nav-dropdown-btn:hover,
.nav-link-has-sub:hover,
.nav-dropdown.is-open .nav-dropdown-btn,
.nav-dropdown.is-open .nav-link-has-sub {
  color: #ffffff;
}

.nav-arrow {
  font-size: 9px;
  opacity: 0.7;
  padding: 4px;
  margin: -4px;
  transition: transform var(--trans-fast);
}
.nav-dropdown:hover .nav-arrow,
.nav-dropdown:focus-within .nav-arrow,
.nav-dropdown.is-open .nav-arrow {
  transform: rotate(180deg);
}

.nav-subpanel {
  position: absolute;
  top: calc(100% + 4px);
  left: 50%;
  transform: translateX(-50%) translateY(6px);
  min-width: 240px;
  background: rgba(10, 14, 22, 0.96);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-md);
  padding: 10px;
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s var(--ease), transform 0.2s var(--ease), visibility 0.2s var(--ease);
}

/* Invisible pointer bridge that connects trigger to panel across the gap */
.nav-subpanel::before {
  content: "";
  position: absolute;
  top: -16px;
  left: -20px;
  right: -20px;
  height: 24px;
  background: transparent;
  pointer-events: auto;
}

.nav-dropdown:hover .nav-subpanel,
.nav-dropdown:focus-within .nav-subpanel,
.nav-dropdown.is-open .nav-subpanel {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
  transition: opacity 0.2s var(--ease) 0s, transform 0.2s var(--ease) 0s, visibility 0.2s var(--ease) 0s;
}

.nav-subpanel-wide {
  min-width: 620px;
  left: auto;
  right: -60px;
  transform: translateY(6px);
}
.nav-dropdown:hover .nav-subpanel-wide,
.nav-dropdown:focus-within .nav-subpanel-wide,
.nav-dropdown.is-open .nav-subpanel-wide {
  transform: translateY(0);
}

.subpanel-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  padding: 8px;
}

.subpanel-col {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.subpanel-kicker {
  font-size: 9.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--fg-dim);
  margin-bottom: 6px;
  font-weight: 700;
  display: block;
}

.nav-subitem {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 8px 10px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  color: var(--fg-soft);
  font-size: 11px;
  letter-spacing: 0.06em;
  transition: background var(--trans-fast), color var(--trans-fast), transform var(--trans-fast);
  min-height: 40px;
}
.nav-subitem:hover {
  background: rgba(255, 255, 255, 0.06);
  color: #ffffff;
  transform: translateX(2px);
}
.nav-subitem.active {
  background: rgba(6, 182, 212, 0.12);
  color: var(--cyan-core);
  border: 1px solid rgba(6, 182, 212, 0.25);
}

.subitem-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  flex-shrink: 0;
}
.subitem-text {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.subitem-name {
  font-weight: 600;
  font-size: 11px;
}
.subitem-desc {
  font-size: 9px;
  color: var(--fg-muted);
  text-transform: none;
  letter-spacing: normal;
}
.subitem-tag {
  font-size: 8.5px;
  padding: 2px 5px;
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--fg-muted);
}
.subitem-arrow {
  font-size: 11px;
  opacity: 0.6;
}

/* Nav Actions Right */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-mega-trigger {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-card);
  color: var(--fg-main);
  font-family: inherit;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 8px 14px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  min-height: 44px;
  transition: all var(--trans-fast);
  touch-action: manipulation;
}
.nav-mega-trigger:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--border-highlight);
  box-shadow: 0 0 16px rgba(255, 255, 255, 0.1);
}
.nav-mega-trigger:active {
  transform: scale(0.97);
}

.mega-trigger-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--cyan-core);
  box-shadow: 0 0 8px var(--cyan-core);
  animation: pulse-dot 2s infinite;
}

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

.mega-trigger-arrow {
  font-size: 10px;
  opacity: 0.8;
}

/* Mobile Hamburger Toggle */
.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-sm);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  padding: 0;
  position: relative;
  touch-action: manipulation;
}
.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  display: block;
  width: 20px;
  height: 2px;
  background: #ffffff;
  border-radius: 2px;
  transition: all var(--trans-fast);
}
.nav-toggle span::before {
  position: absolute;
  top: 14px;
}
.nav-toggle span::after {
  position: absolute;
  bottom: 14px;
}
.nav-toggle[aria-expanded="true"] span {
  background: transparent;
}
.nav-toggle[aria-expanded="true"] span::before {
  top: 21px;
  transform: rotate(45deg);
}
.nav-toggle[aria-expanded="true"] span::after {
  bottom: 21px;
  transform: rotate(-45deg);
}

/* --- 4. UNIFIED MEGA MENU MODAL --- */
.mega-menu {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  justify-content: flex-end;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity var(--trans-normal), visibility var(--trans-normal);
}

.mega-menu.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.mega-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(3, 4, 7, 0.75);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.mega-panel {
  position: relative;
  width: 100%;
  max-width: 960px;
  height: 100%;
  background: #090c14;
  border-left: 1px solid var(--border-card);
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  transform: translateX(40px);
  transition: transform var(--trans-normal);
  padding: max(24px, env(safe-area-inset-top, 24px)) max(32px, env(safe-area-inset-right, 32px)) 32px max(32px, env(safe-area-inset-left, 32px));
}

.mega-menu.is-open .mega-panel {
  transform: translateX(0);
}

.mega-inner {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.mega-topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border-subtle);
}

.mega-kicker-group {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.mega-badge {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cyan-core);
  font-weight: 700;
}

.mega-kicker-title {
  font-size: 14px;
  color: var(--fg-soft);
  font-weight: 500;
}

.mega-close-btn {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border-card);
  color: var(--fg-main);
  font-family: inherit;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 8px 14px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  min-height: 44px;
  transition: all var(--trans-fast);
  touch-action: manipulation;
}
.mega-close-btn:hover {
  background: rgba(255, 255, 255, 0.14);
}
.mega-close-btn:active {
  transform: scale(0.97);
}

/* Flagship Cards in Mega Menu */
.mega-flagships {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 14px;
}

.flagship-card {
  background: rgba(18, 24, 38, 0.6);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-decoration: none;
  transition: transform var(--trans-fast), background var(--trans-fast), border-color var(--trans-fast);
  min-height: 140px;
}
.flagship-card:hover {
  background: rgba(25, 34, 52, 0.9);
  border-color: var(--border-accent);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.4);
}

.flagship-tag {
  font-size: 9px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--cyan-core);
  font-weight: 700;
}

.flagship-title-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.flagship-title {
  font-size: 15px;
  font-weight: 700;
  color: #ffffff;
}

.flagship-arrow {
  font-size: 13px;
  color: var(--fg-muted);
  transition: transform var(--trans-fast);
}
.flagship-card:hover .flagship-arrow {
  color: var(--cyan-core);
  transform: translate(2px, -2px);
}

.flagship-desc {
  font-size: 11.5px;
  line-height: 1.45;
  color: var(--fg-muted);
}

.flagship-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  margin-top: auto;
}

.meta-pill {
  font-size: 9px;
  padding: 2px 6px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--fg-soft);
}

/* Mega Directory Columns */
.mega-directory {
  display: grid;
  grid-template-columns: 1fr 1fr 1.2fr;
  gap: 28px;
  padding-top: 16px;
  border-top: 1px solid var(--border-subtle);
}

.mega-col-label {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fg-dim);
  font-weight: 700;
  margin-bottom: 12px;
  display: block;
}

.mega-navlist {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mega-navitem {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 10px;
  border-radius: var(--radius-sm);
  color: var(--fg-soft);
  font-size: 12.5px;
  transition: background var(--trans-fast), color var(--trans-fast), transform var(--trans-fast);
  min-height: 44px;
}
.mega-navitem:hover {
  background: rgba(255, 255, 255, 0.05);
  color: #ffffff;
  transform: translateX(3px);
}

.item-badge {
  font-size: 9px;
  padding: 2px 6px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.07);
  color: var(--fg-muted);
}

/* Action Card inside Mega Menu */
.mega-action-card {
  background: linear-gradient(135deg, rgba(18, 26, 42, 0.8) 0%, rgba(10, 14, 22, 0.9) 100%);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-md);
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mac-header {
  display: flex;
  align-items: center;
  gap: 8px;
}
.mac-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--emerald-core);
  box-shadow: 0 0 8px var(--emerald-core);
}
.mac-title {
  font-size: 13px;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 0.04em;
}

.mac-desc {
  font-size: 12px;
  line-height: 1.5;
  color: var(--fg-muted);
}

.mac-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mac-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-decoration: none;
  min-height: 44px;
  transition: all var(--trans-fast);
  touch-action: manipulation;
}
.mac-btn-call {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border-card);
  color: #ffffff;
}
.mac-btn-call:hover {
  background: rgba(255, 255, 255, 0.12);
}
.mac-btn-wa {
  background: rgba(16, 185, 129, 0.15);
  border: 1px solid rgba(16, 185, 129, 0.4);
  color: #34d399;
}
.mac-btn-wa:hover {
  background: rgba(16, 185, 129, 0.28);
}
.mac-btn-contact {
  background: var(--cyan-core);
  color: #030712;
  font-weight: 700;
}
.mac-btn-contact:hover {
  filter: brightness(1.15);
  box-shadow: 0 0 16px var(--cyan-glow);
}

.mac-quicklinks {
  font-size: 11px;
  color: var(--fg-dim);
  text-align: center;
}
.mac-quicklinks a {
  color: var(--fg-muted);
}
.mac-quicklinks a:hover {
  color: #ffffff;
}

.mega-footbar {
  padding-top: 18px;
  border-top: 1px solid var(--border-subtle);
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  color: var(--fg-dim);
}

/* --- 5. MAIN CONTENT WRAPPER & CONTAINER --- */
.site-main {
  position: relative;
  z-index: 10;
  width: 100%;
  padding-top: var(--nav-height);
  flex-grow: 1;
}

.content-container {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: var(--max-w);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--pad);
  padding-right: var(--pad);
}

/* --- 6. HERO SECTION: AWARD-WINNING FULL-BLEED CINEMATIC EXPERIENCE --- */
.hero-angebote {
  min-height: 100vh;
  min-height: 100dvh;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: calc(var(--nav-height) + clamp(30px, 5vw, 60px));
  padding-bottom: clamp(70px, 9vw, 110px);
  box-sizing: border-box;
}

.hero-backdrop {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  transform: scale(1.02);
  transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-vignette-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    linear-gradient(135deg, rgba(3, 1, 13, 0.78) 12%, rgba(44, 6, 51, 0.52) 50%, rgba(215, 63, 235, 0.22) 72%, rgba(20, 5, 38, 0.85) 90%),
    radial-gradient(circle at 50% 40%, rgba(4, 5, 7, 0.1) 0%, rgba(4, 5, 7, 0.6) 65%, rgba(4, 5, 7, 0.95) 100%),
    linear-gradient(180deg, rgba(4, 5, 7, 0.7) 0%, transparent 20%, transparent 65%, #1b0f2e 100%);
  pointer-events: none;
}

.hero-ambient-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
  opacity: 0.35;
  mix-blend-mode: screen;
}

.hero-ambient-glow.glow-cyan {
  width: clamp(300px, 40vw, 600px);
  height: clamp(300px, 40vw, 600px);
  top: 25%;
  left: 10%;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.5) 0%, transparent 70%);
}

.hero-ambient-glow.glow-purple {
  width: clamp(350px, 45vw, 700px);
  height: clamp(350px, 45vw, 700px);
  bottom: 10%;
  right: 10%;
  background: radial-gradient(circle, rgba(168, 85, 247, 0.4) 0%, transparent 70%);
}

.hero-container {
  position: relative;
  z-index: 10;
  width: 100%;
  display: flex;
  justify-content: center;
}

.hero-content-center {
  max-width: 960px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: clamp(18px, 2.5vw, 26px);
  margin-left: auto;
  margin-right: auto;
}

/* Interactive Typewriter Pill */
.hero-badge-interactive {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(10, 16, 28, 0.75);
  border: 1px solid rgba(6, 182, 212, 0.35);
  padding: 8px 22px;
  border-radius: 999px;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.45), 0 0 20px rgba(6, 182, 212, 0.2);
  transition: border-color var(--trans-fast), transform var(--trans-fast);
}
.hero-badge-interactive:hover {
  border-color: rgba(6, 182, 212, 0.65);
  transform: translateY(-2px);
}

.badge-dot-live {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--cyan-core);
  box-shadow: 0 0 12px var(--cyan-core);
  animation: badgePulse 2s ease-in-out infinite;
}
@keyframes badgePulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.85); }
}

.badge-prefix {
  font-size: clamp(11.5px, 1.2vw, 13px);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #e2e8f0;
}

.badge-divider {
  color: rgba(255, 255, 255, 0.25);
  font-weight: 300;
}

.badge-typewriter {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-mono, monospace);
  font-size: clamp(12.5px, 1.3vw, 14px);
  font-weight: 700;
  color: var(--cyan-core);
  letter-spacing: 0.04em;
  min-width: 90px;
  text-align: left;
}

.typewriter-cursor {
  display: inline-block;
  color: var(--cyan-core);
  font-weight: 900;
  animation: blinkCursor 0.9s infinite;
  margin-left: 2px;
}
@keyframes blinkCursor {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

/* Semantisches <h1> nach Doktrin [04] */
.hero-title-cinematic {
  font-size: clamp(34px, 5.2vw, 68px);
  font-weight: 850;
  line-height: 1.1;
  letter-spacing: -0.035em;
  color: #ffffff;
  text-shadow: 0 4px 24px rgba(0, 0, 0, 0.8);
  text-wrap: balance;
}

.hero-title-cinematic span.highlight-cyan {
  color: var(--cyan-core);
  text-shadow: 0 0 40px rgba(6, 182, 212, 0.55);
}

.hero-lead-cinematic {
  font-size: clamp(16px, 1.6vw, 20px);
  line-height: 1.6;
  color: #cbd5e1;
  max-width: 780px;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.8);
  text-wrap: pretty;
}

.hero-actions-cinematic {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  padding-top: 10px;
}

.btn-solaris {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  min-height: 52px;
  min-width: 170px;
  border-radius: 999px;
  font-size: 13.5px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: transform var(--trans-fast), filter var(--trans-fast), box-shadow var(--trans-fast), background var(--trans-fast), border-color var(--trans-fast);
  white-space: nowrap;
  box-sizing: border-box;
  touch-action: manipulation;
}

.btn-primary {
  background: linear-gradient(135deg, #06b6d4 0%, #0284c7 100%);
  color: #020617;
  border: none;
  box-shadow: 0 8px 24px rgba(6, 182, 212, 0.35);
}
.btn-primary:hover {
  transform: translateY(-2px);
  filter: brightness(1.15);
  box-shadow: 0 12px 32px rgba(6, 182, 212, 0.5);
}
.btn-primary:active {
  transform: translateY(0) scale(0.98);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border-card);
  color: #ffffff;
}
.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--border-highlight);
  transform: translateY(-2px);
}
.btn-secondary:active {
  transform: translateY(0) scale(0.98);
}

.btn-glow {
  box-shadow: 0 10px 30px rgba(6, 182, 212, 0.45);
}
.btn-glow:hover {
  box-shadow: 0 14px 40px rgba(6, 182, 212, 0.65);
}

.btn-blur {
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  background: rgba(15, 23, 42, 0.65);
}

.hero-trust-cinematic {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: clamp(14px, 2.5vw, 24px);
  padding-top: 16px;
  font-size: 12.5px;
  color: #94a3b8;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  width: 100%;
  max-width: 600px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
}
.trust-star {
  color: var(--gold-core);
}

/* Floating Quick-Dock Navigation */
.hero-quick-dock {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 30;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(10, 16, 28, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  padding: 6px 12px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.6), 0 0 24px rgba(6, 182, 212, 0.15);
  transition: transform var(--trans-fast), opacity var(--trans-fast);
}

.dock-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border-radius: 999px;
  text-decoration: none;
  font-size: 12px;
  font-weight: 600;
  color: #cbd5e1;
  transition: all var(--trans-fast);
  white-space: nowrap;
}
.dock-link:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
}
.dock-link.active {
  color: #ffffff;
  background: rgba(6, 182, 212, 0.2);
  border: 1px solid rgba(6, 182, 212, 0.4);
}
.dock-icon {
  font-size: 13px;
}

/* --- CONTINUOUS SVG SHAPE DIVIDERS (AWARD-WINNING UNIFIED CANVAS) --- */
.section-divider {
  position: absolute;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  pointer-events: none;
  z-index: 2;
}

/* 1. Hero Bottom Inverted Chevron Peak into Dusk (#25173a) */
.divider-hero-bottom {
  bottom: -2px;
  left: 0;
  width: 100%;
  transform: rotate(180deg);
  transform-origin: center;
  z-index: 2;
}
.divider-hero-bottom svg {
  display: block;
  width: calc(100% + 1.3px);
  height: clamp(140px, 18vw, 375px);
  position: relative;
  left: 50%;
  transform: translateX(-50%);
}

/* 2. Dusk to Yoda Organic Wave Divider (Top of Yoda, fill #e29754 copper) */
.divider-yoda-top-waves {
  top: -2px;
  right: 0;
  height: clamp(90px, 12vw, 179px);
  z-index: 2;
}
.divider-yoda-top-waves svg {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%) rotate(180deg);
  width: 186%;
  height: 100%;
  display: block;
}

/* 3. Yoda to Sunset Quotes Multi-level Angled Slant (Bottom of Yoda, fill #0f172a navy) */
.divider-yoda-bottom-threelevelsi {
  bottom: -2px;
  right: 0;
  height: clamp(200px, 28vw, 500px);
  z-index: 2;
}
.divider-yoda-bottom-threelevelsi svg {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 171%;
  height: 100%;
  display: block;
}

/* 4. Sunset Quotes to Cuisine Mountain Peaks Top (Top of Cuisine, fill #c20e3c crimson) */
.divider-cuisine-top-mtns {
  top: -2px;
  right: 0;
  height: clamp(90px, 12vw, 180px);
  z-index: 2;
}
.divider-cuisine-top-mtns svg {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%) rotate(180deg);
  width: 100.2%;
  height: 100%;
  display: block;
}

/* 5. Cuisine to Crimson Catwalk Mountain Ridges Bottom (Bottom of Cuisine, fill #c20e3c crimson) */
.divider-cuisine-bottom-mtns {
  bottom: -2px;
  right: 0;
  height: clamp(120px, 16vw, 253px);
  z-index: 2;
}
.divider-cuisine-bottom-mtns svg {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100.2%;
  height: 100%;
  display: block;
}

/* 6. Catwalk to Meister Navy Mountain Ridges Top (Top of Meister, fill #c20e3c crimson) */
.divider-meister-top-mtns {
  top: -2px;
  right: 0;
  height: clamp(90px, 12vw, 180px);
  z-index: 2;
}
.divider-meister-top-mtns svg {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%) rotate(180deg);
  width: 100.2%;
  height: 100%;
  display: block;
}

/* 7. Meister Navy to Superheroes Mountain Ridges Bottom (Bottom of Meister, fill #c20e3c crimson) */
.divider-meister-bottom-mtns {
  bottom: -2px;
  right: 0;
  height: clamp(100px, 14vw, 197px);
  z-index: 2;
}
.divider-meister-bottom-mtns svg {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100.2%;
  height: 100%;
  display: block;
}

/* 8. Superheroes Top Three-Levels (Top of Superheroes, fill #c20e3c crimson) */
.divider-heroes-top-threelevels {
  top: -2px;
  right: 0;
  height: clamp(140px, 18vw, 281px);
  z-index: 2;
}
.divider-heroes-top-threelevels svg {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%) rotate(180deg);
  width: 100.2%;
  height: 100%;
  display: block;
}

/* 9. Superheroes to Pricing Three-Levels Inverted (Bottom of Superheroes, fill #0f172a navy) */
.divider-heroes-bottom-threelevelsi {
  bottom: -2px;
  right: 0;
  height: clamp(220px, 28vw, 450px);
  z-index: 2;
}
.divider-heroes-bottom-threelevelsi svg {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 235%;
  height: 100%;
  display: block;
}

.text-rose-glow {
  color: #ff2a85;
  font-style: italic;
  font-weight: 850;
  text-shadow: 0 0 24px rgba(255, 42, 133, 0.6);
}

/* --- 7. DIE 5 STORY-AKTE MIT GROSSEN BILD- & FARBÜBERGÄNGEN --- */

/* AKT 1: DÄMMERUNG & KUPFER */
.section-story-dusk {
  padding-top: clamp(80px, 10vw, 140px);
  padding-bottom: clamp(100px, 12vw, 160px);
  position: relative;
  background: linear-gradient(180deg, #25173a 0%, #3d1c47 30%, #a14c24 70%, #e29754 100%);
  overflow: hidden;
  content-visibility: auto;
  contain-intrinsic-size: 1px 900px;
}

.kicker-copper {
  color: #f59e0b;
}

.dusk-card {
  background: rgba(26, 18, 42, 0.65);
  border-color: rgba(226, 151, 84, 0.25);
}
.dusk-card:hover {
  border-color: rgba(226, 151, 84, 0.55);
  box-shadow: 0 20px 48px rgba(226, 151, 84, 0.15);
}

.tag-copper { color: #f59e0b; }
.tag-rose { color: #ec4899; }
.tag-cyan { color: #06b6d4; }
.tag-crimson { color: #f43f5e; }
.tag-amber { color: #fbbf24; }

.section-header-center {
  text-align: center;
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: clamp(40px, 6vw, 72px);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.section-kicker {
  font-size: 11.5px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cyan-core);
  font-weight: 700;
}

.section-h2 {
  font-size: clamp(28px, 3.4vw, 44px);
  font-weight: 800;
  line-height: 1.15;
  text-wrap: balance;
}

.section-lead {
  font-size: clamp(15px, 1.3vw, 18px);
  color: var(--fg-muted);
  line-height: 1.6;
}

/* 3-Column Story Persona Grid */
.persona-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 2.5vw, 32px);
}

.persona-card {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-xl);
  padding: clamp(20px, 2.5vw, 28px);
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: transform var(--trans-normal), background var(--trans-normal), border-color var(--trans-normal), box-shadow var(--trans-normal);
  position: relative;
  overflow: hidden;
}
.persona-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-accent);
  transform: translateY(-4px);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.5);
}

.persona-media-box {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: #080b12;
  position: relative;
}
.persona-media-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform var(--trans-smooth);
}
.persona-card:hover .persona-media-box img {
  transform: scale(1.05);
}

.persona-tag {
  font-size: 9.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--cyan-core);
  font-weight: 700;
  display: inline-block;
}

.persona-heading {
  font-size: clamp(18px, 1.8vw, 22px);
  font-weight: 750;
  color: #ffffff;
  line-height: 1.25;
}

.persona-text {
  font-size: 14px;
  line-height: 1.6;
  color: var(--fg-soft);
}

/* AKT 2: DIE YODA-VISION (MONUMENTALE GROSSBILD-BÜHNE MIT GOLDFISCH-SPHÄRE) */
.section-story-yoda {
  position: relative;
  min-height: clamp(800px, 95vh, 1200px);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  padding-top: clamp(220px, 24vw, 380px);
  padding-bottom: clamp(240px, 25vw, 380px);
  content-visibility: auto;
  contain-intrinsic-size: 1px 1200px;
}

@media (min-width: 992px) {
  .section-story-yoda {
    min-height: clamp(1750px, 160vh, 2000px);
    padding-top: clamp(180px, 14vw, 260px);
    padding-bottom: clamp(420px, 29vw, 540px);
    contain-intrinsic-size: 1px 1800px;
  }
}

.yoda-backdrop {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

.yoda-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 25%;
}

@media (min-width: 992px) {
  .yoda-bg-img {
    object-position: 52% 10%;
  }
}

.yoda-gradient-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    linear-gradient(180deg, rgba(11, 19, 32, 0.4) 0%, rgba(15, 23, 42, 0.15) 25%, rgba(13, 37, 48, 0.5) 65%, rgba(15, 23, 42, 0.95) 100%),
    radial-gradient(circle at 18% 45%, rgba(245, 158, 11, 0.35) 0%, transparent 45%);
  pointer-events: none;
}

@media (min-width: 992px) {
  .yoda-gradient-overlay {
    background: 
      linear-gradient(180deg, 
        rgba(11, 19, 32, 0.45) 0%, 
        rgba(15, 23, 42, 0.04) 15%, 
        rgba(15, 23, 42, 0.02) 55%, 
        rgba(15, 23, 42, 0.15) 85%, 
        rgba(15, 23, 42, 0.4) 100%
      ),
      radial-gradient(circle at 25% 38%, rgba(245, 158, 11, 0.22) 0%, transparent 45%);
  }
}

.yoda-container {
  position: relative;
  z-index: 10;
  width: 100%;
}

.yoda-editorial-box {
  max-width: 900px;
  background: rgba(10, 16, 26, 0.72);
  border: 1px solid rgba(27, 156, 133, 0.4);
  border-radius: var(--radius-2xl);
  padding: clamp(28px, 4vw, 48px);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.75), 0 0 32px rgba(27, 156, 133, 0.2);
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.kicker-glow {
  color: #10b981;
  text-shadow: 0 0 16px rgba(16, 185, 129, 0.4);
}

.yoda-h2 {
  font-size: clamp(30px, 3.8vw, 48px);
  font-weight: 850;
  color: #ffffff;
  line-height: 1.15;
  text-wrap: balance;
}

.yoda-lead {
  font-size: clamp(16px, 1.4vw, 19px);
  line-height: 1.65;
  color: #cbd5e1;
}

.yoda-lead strong {
  color: #ffffff;
}

/* SUNSET QUOTES SECTION (KADENCE SECTION 3 REPRODUCTION) */
.section-story-quotes {
  position: relative;
  padding-top: clamp(90px, 11vw, 150px);
  padding-bottom: clamp(140px, 16vw, 230px);
  background: linear-gradient(180deg, #0f172a 0%, #4a1e28 35%, #a63f15 65%, rgb(214, 109, 14) 80%, rgb(194, 14, 60) 100%);
  overflow: hidden;
  content-visibility: auto;
  contain-intrinsic-size: 1px 700px;
}

.sunset-trio {
  margin-top: 10px;
}

/* AKT 3: HAUTE CUISINE & PRÄZISION (PLUM SECTION) */
.section-story-cuisine {
  padding-top: clamp(140px, 16vw, 220px);
  padding-bottom: clamp(160px, 18vw, 250px);
  background: #241424;
  position: relative;
  content-visibility: auto;
  contain-intrinsic-size: 1px 750px;
}

.cuisine-container {
  position: relative;
  z-index: 10;
  max-width: 900px;
  margin: 0 auto;
}

/* AKT 4: CRIMSON CATWALK & FREEDOM (KADENCE SECTION 5 REPRODUCTION) */
.section-story-catwalk {
  position: relative;
  margin-top: -2px;
  padding-top: clamp(80px, 10vw, 130px);
  padding-bottom: clamp(80px, 10vw, 130px);
  background: #c20e3c;
  content-visibility: auto;
  contain-intrinsic-size: 1px 700px;
}

.gallery-trio {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 3vw, 36px);
  max-width: 1300px;
  margin: 0 auto;
}

.gallery-card {
  position: relative;
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
  transition: transform var(--trans-fast);
}
.gallery-card:hover {
  transform: translateY(-4px);
}
.gallery-media {
  width: clamp(180px, 20vw, 280px);
  height: clamp(180px, 20vw, 280px);
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  overflow: hidden;
  background: #070a10;
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.5);
}
.gallery-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 15%;
}
.gallery-media img[src*="haute-cuisine"],
.gallery-media img[src*="chameleon-catwalk"],
.gallery-media img[src*="chameleon-freiheit"] {
  object-position: center 0%;
}
.gallery-caption {
  font-size: clamp(15px, 1.2vw, 18px);
  line-height: 1.5;
  color: #ffffff;
  font-weight: 600;
  max-width: 340px;
  text-align: center;
  margin: 0 auto;
}

/* AKT 5: DIGITALE SCHÖNHEIT & SUBSTANZ (KADENCE SECTION 6 GRADIENT) */
.section-story-meister {
  position: relative;
  padding-top: clamp(130px, 15vw, 210px);
  padding-bottom: clamp(140px, 16vw, 230px);
  background: linear-gradient(0deg, rgb(184, 45, 81) 2%, #241424 88%);
  overflow: hidden;
  content-visibility: auto;
  contain-intrinsic-size: 1px 750px;
}

.kicker-teal {
  color: #14b8a6;
}

.meister-container {
  position: relative;
  z-index: 10;
}

.statement-editorial-center {
  position: relative;
  z-index: 10;
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* AKT 6: DAS SUPERHELDEN-TRIO (MONUMENTALE KINOBÜHNE) */
.section-story-superheroes {
  position: relative;
  min-height: clamp(800px, 92vh, 1200px);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  padding-top: clamp(260px, 28vw, 440px);
  padding-bottom: clamp(60px, 8vw, 120px);
  content-visibility: auto;
  contain-intrinsic-size: 1px 1200px;
}

.superheroes-backdrop {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

.superheroes-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
}

.superheroes-gradient-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    linear-gradient(0deg, rgba(27, 156, 133, 0.45) 0%, rgba(15, 23, 42, 0.75) 26%, rgba(15, 23, 42, 0.15) 60%, rgba(15, 23, 42, 0.5) 100%);
  pointer-events: none;
}

.superheroes-container {
  position: relative;
  z-index: 10;
  width: 100%;
}

.superheroes-editorial-box {
  max-width: 750px;
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 0 0 clamp(20px, 4vw, 50px) 0;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.kicker-cyan {
  color: var(--cyan-core);
  text-shadow: 0 0 16px var(--cyan-glow);
}

.superheroes-h2 {
  font-size: clamp(30px, 3.8vw, 48px);
  font-weight: 850;
  color: #ffffff;
  line-height: 1.15;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.85);
  text-wrap: balance;
}

.superheroes-lead {
  font-size: clamp(16px, 1.4vw, 19px);
  line-height: 1.65;
  color: #e2e8f0;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.9);
}

/* --- 8. PREISE & PAKETE (HIGH-END STUDIO LEVEL) --- */
.section-preise {
  padding-top: clamp(60px, 9vw, 120px);
  padding-bottom: clamp(60px, 9vw, 120px);
  background: #0f172a;
  border-top: none;
  position: relative;
  content-visibility: auto;
  contain-intrinsic-size: 1px 1400px;
  scroll-margin-top: calc(var(--nav-height) + 24px);
}

.section-storytelling,
.configurator-section,
.section-trust {
  scroll-margin-top: calc(var(--nav-height) + 24px);
}

/* Filter / Tabs Switcher */
.pricing-tabs-nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: clamp(36px, 5vw, 60px);
}

.tab-btn {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-card);
  color: var(--fg-soft);
  font-family: inherit;
  font-size: clamp(11.5px, 1.1vw, 13px);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 12px 24px;
  border-radius: 999px;
  cursor: pointer;
  min-height: 48px;
  transition: background var(--trans-fast), color var(--trans-fast), border-color var(--trans-fast), box-shadow var(--trans-fast);
  touch-action: manipulation;
}
.tab-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
}
.tab-btn:active {
  transform: scale(0.97);
}
.tab-btn.active {
  background: var(--cyan-core);
  color: #030712;
  border-color: var(--cyan-core);
  box-shadow: 0 4px 20px var(--cyan-glow);
}

.pricing-panel {
  display: none;
}
.pricing-panel.is-active {
  display: block;
  animation: fadeInPanel 0.35s var(--ease) forwards;
}

@keyframes fadeInPanel {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* TAB 1: 4-Column Webdesign Packages */
.packages-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(16px, 2vw, 24px);
  align-items: stretch;
}

.package-card {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-xl);
  padding: clamp(24px, 2.5vw, 32px);
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: transform var(--trans-normal), background var(--trans-normal), border-color var(--trans-normal), box-shadow var(--trans-normal);
  position: relative;
}
.package-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-highlight);
  transform: translateY(-6px);
  box-shadow: 0 24px 56px rgba(0, 0, 0, 0.6);
}

.package-card.is-featured {
  background: linear-gradient(165deg, rgba(16, 28, 48, 0.85) 0%, rgba(10, 16, 26, 0.95) 100%);
  border: 1px solid rgba(6, 182, 212, 0.45);
  box-shadow: 0 16px 48px rgba(6, 182, 212, 0.15);
}

.popular-badge {
  position: absolute;
  top: -12px;
  right: 24px;
  background: var(--cyan-core);
  color: #020617;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 999px;
  box-shadow: 0 4px 12px var(--cyan-glow);
}

.package-tier-label {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--fg-dim);
  font-weight: 700;
}

.package-title {
  font-size: clamp(20px, 1.8vw, 24px);
  font-weight: 800;
  color: #ffffff;
}

.package-price-wrap {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border-subtle);
}

.price-prefix {
  font-size: 12px;
  color: var(--fg-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.price-amount {
  font-size: clamp(32px, 3vw, 42px);
  font-weight: 850;
  color: #ffffff;
  letter-spacing: -0.03em;
  line-height: 1;
}

.price-sub {
  font-size: 11px;
  color: var(--fg-dim);
}

.package-desc {
  font-size: 13.5px;
  line-height: 1.5;
  color: var(--fg-soft);
}

.package-features-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: auto;
  padding-top: 12px;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: var(--fg-soft);
  line-height: 1.45;
}
.feature-check {
  color: var(--cyan-core);
  font-size: 14px;
  line-height: 1.2;
  flex-shrink: 0;
}

.package-cta-btn {
  margin-top: 14px;
  width: 100%;
}

/* TAB 2: Einzelleistungen & Modular Add-ons */
.addons-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: clamp(16px, 2vw, 24px);
}

.addon-card {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: transform var(--trans-fast), background var(--trans-fast), border-color var(--trans-fast);
}
.addon-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-accent);
  transform: translateY(-2px);
}

.addon-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.addon-name {
  font-size: 15px;
  font-weight: 700;
  color: #ffffff;
}
.addon-detail {
  font-size: 12px;
  color: var(--fg-muted);
}
.addon-price {
  font-size: 18px;
  font-weight: 800;
  color: var(--cyan-core);
  white-space: nowrap;
  letter-spacing: -0.02em;
}

/* TAB 3: Editorial, Layout & Lektorat */
.editorial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: clamp(18px, 2vw, 24px);
}

.editorial-card {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-xl);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: transform var(--trans-fast), background var(--trans-fast), border-color var(--trans-fast);
}
.editorial-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-highlight);
  transform: translateY(-3px);
}
.editorial-badge {
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-core);
  font-weight: 700;
}
.editorial-title {
  font-size: 19px;
  font-weight: 800;
  color: #ffffff;
}
.editorial-rate {
  font-size: 22px;
  font-weight: 850;
  color: var(--gold-core);
  letter-spacing: -0.02em;
}
.editorial-desc {
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--fg-soft);
}

/* --- 9. INTERAKTIVER SCHNELL-KONFIGURATOR --- */
.configurator-section {
  margin-top: clamp(48px, 7vw, 90px);
  background: linear-gradient(145deg, rgba(14, 20, 32, 0.8) 0%, rgba(8, 11, 18, 0.95) 100%);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-xl);
  padding: clamp(28px, 4vw, 48px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.configurator-header {
  margin-bottom: 28px;
}
.configurator-title {
  font-size: clamp(22px, 2.5vw, 32px);
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 6px;
}
.configurator-sub {
  font-size: 14px;
  color: var(--fg-muted);
}

.configurator-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: clamp(24px, 4vw, 44px);
  align-items: start;
}

.config-options {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.config-group-label {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--fg-dim);
  font-weight: 700;
  margin-bottom: 8px;
  display: block;
}

.config-radios,
.config-checkboxes {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.config-choice {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all var(--trans-fast);
  min-height: 48px;
  touch-action: manipulation;
}
.config-choice:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: var(--border-highlight);
}
.config-choice.is-checked {
  background: rgba(6, 182, 212, 0.12);
  border-color: var(--cyan-core);
}

.choice-left {
  display: flex;
  align-items: center;
  gap: 12px;
}
.choice-title {
  font-size: 13.5px;
  font-weight: 600;
  color: #ffffff;
}
.choice-price {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--cyan-core);
}

/* Custom Check/Radio indicators */
.choice-radio-dot,
.choice-check-box {
  width: 18px;
  height: 18px;
  border: 2px solid var(--border-highlight);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all var(--trans-fast);
}
.choice-check-box {
  border-radius: 4px;
}
.config-choice.is-checked .choice-radio-dot,
.config-choice.is-checked .choice-check-box {
  border-color: var(--cyan-core);
  background: var(--cyan-core);
}
.config-choice.is-checked .choice-radio-dot::after {
  content: "";
  width: 6px;
  height: 6px;
  background: #020617;
  border-radius: 50%;
}
.config-choice.is-checked .choice-check-box::after {
  content: "✓";
  font-size: 11px;
  font-weight: 900;
  color: #020617;
}

/* Configurator Summary Box */
.config-summary-box {
  background: rgba(8, 12, 20, 0.85);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: sticky;
  top: calc(var(--nav-height) + 20px);
}

.summary-title {
  font-size: 15px;
  font-weight: 750;
  color: #ffffff;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border-subtle);
}

.summary-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 12.5px;
  color: var(--fg-soft);
  min-height: 60px;
}

.summary-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.summary-total-row {
  padding-top: 14px;
  border-top: 1px solid var(--border-subtle);
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}
.total-label {
  font-size: 13px;
  font-weight: 700;
  color: #ffffff;
  text-transform: uppercase;
}
.total-value {
  font-size: 28px;
  font-weight: 850;
  color: var(--cyan-core);
  letter-spacing: -0.03em;
}

.summary-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* --- 10. 4 SÄULEN DES VERTRAUENS (TRUST GRID) --- */
.section-trust {
  padding-top: clamp(48px, 6vw, 80px);
  padding-bottom: clamp(60px, 8vw, 100px);
  border-top: 1px solid var(--border-subtle);
  content-visibility: auto;
  contain-intrinsic-size: 1px 500px;
}

.trust-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(16px, 2vw, 28px);
}

.trust-card {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-xl);
  padding: 28px 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: center;
  align-items: center;
  transition: transform var(--trans-fast), background var(--trans-fast), border-color var(--trans-fast);
}
.trust-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-highlight);
  transform: translateY(-3px);
}

.trust-icon-badge {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-card);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--cyan-core);
}

.trust-card-h3 {
  font-size: 18px;
  font-weight: 800;
  color: #ffffff;
}

.trust-card-p {
  font-size: 13px;
  line-height: 1.5;
  color: var(--fg-muted);
}

/* --- 11. CTA BANNER FINALE --- */
.section-cta-final {
  padding-bottom: clamp(60px, 10vw, 120px);
  content-visibility: auto;
  contain-intrinsic-size: 1px 400px;
}

.cta-banner {
  background: radial-gradient(circle at 50% 30%, rgba(6, 182, 212, 0.16) 0%, rgba(10, 16, 26, 0.95) 70%);
  border: 1px solid rgba(6, 182, 212, 0.35);
  border-radius: var(--radius-xl);
  padding: clamp(36px, 6vw, 72px) clamp(24px, 4vw, 56px);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  box-shadow: 0 24px 72px rgba(6, 182, 212, 0.12);
}

.cta-banner-h2 {
  font-size: clamp(28px, 3.6vw, 48px);
  font-weight: 850;
  color: #ffffff;
  max-width: 780px;
  text-wrap: balance;
}

.cta-banner-p {
  font-size: clamp(15px, 1.4vw, 18px);
  color: var(--fg-soft);
  max-width: 620px;
  line-height: 1.6;
}

.cta-banner-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  padding-top: 10px;
}

/* --- 12. FOOTER --- */
.site-footer {
  background: #040508;
  border-top: 1px solid var(--border-subtle);
  padding-top: clamp(48px, 6vw, 80px);
  padding-bottom: clamp(32px, 4vw, 56px);
  font-size: 13px;
  color: var(--fg-muted);
  content-visibility: auto;
  contain-intrinsic-size: 1px 400px;
}

.footer-top-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: clamp(28px, 4vw, 48px);
  margin-bottom: clamp(36px, 5vw, 60px);
}

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

.footer-brand-link {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  gap: 8px;
  color: #ffffff;
  font-weight: 850;
  letter-spacing: 0.15em;
  font-size: 14px;
}

.footer-tagline {
  font-size: 13px;
  line-height: 1.6;
  color: var(--fg-muted);
  max-width: 320px;
}

.footer-col-title {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #ffffff;
  font-weight: 700;
  margin-bottom: 14px;
  display: block;
}

.footer-navlist {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.footer-navlist a {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 2px 0;
  color: var(--fg-muted);
  transition: color var(--trans-fast);
}
.footer-navlist a:hover {
  color: #ffffff;
}

.footer-bottom-bar {
  padding-top: 24px;
  border-top: 1px solid var(--border-subtle);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 12px;
}

.footer-links-inline {
  display: flex;
  align-items: center;
  gap: 14px;
}
.footer-links-inline a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 4px;
  color: var(--fg-muted);
  transition: color var(--trans-fast);
}
.footer-links-inline a:hover {
  color: #ffffff;
}

/* --- 13. RESPONSIVE BREAKPOINTS (MOBILE FIRST SHIELD) --- */
@media (max-width: 1200px) {
  .packages-grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
  .trust-grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-top-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 991px) {
  .nav {
    padding: 12px var(--pad);
  }
  .nav-links {
    display: none;
  }
  .nav-actions .nav-mega-trigger {
    display: none;
  }
  .nav-toggle {
    display: flex;
  }
  .hero-content-center {
    width: 100%;
  }
  .hero-actions-cinematic {
    width: 100%;
  }
  .hero-trust-cinematic {
    width: 100%;
  }
  .persona-grid-3 {
    grid-template-columns: 1fr;
  }
  .showcase-dual-row {
    grid-template-columns: 1fr;
  }
  .feature-editorial-card {
    grid-template-columns: 1fr;
  }
  .gallery-trio {
    grid-template-columns: 1fr;
  }
  .yoda-quote-grid {
    grid-template-columns: 1fr;
  }
  .story-bridge-card {
    flex-direction: column;
    align-items: flex-start;
  }
  .configurator-grid {
    grid-template-columns: 1fr;
  }
  .mega-directory {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .mega-flagships {
    grid-template-columns: 1fr;
  }
}

/* --- ZERO-COLLISION MOBILE SHIELD: SVG DIVIDERS & SECTION BREATHING ROOM --- */
@media (max-width: 768px) {
  /* 1. Hero: expanded bottom clearance so trust items never touch bottom divider */
  .hero-angebote {
    padding-bottom: clamp(140px, 20vw, 180px);
  }
  .divider-hero-bottom svg {
    height: clamp(65px, 12vw, 95px);
  }

  /* 2. Yoda Section: scaled slant, lower top wave & optimized artwork alignment */
  .divider-yoda-top-waves {
    height: clamp(50px, 9vw, 65px);
  }
  .yoda-bg-img {
    object-position: 50% 12%;
  }
  .section-story-yoda {
    min-height: 950px;
    padding-top: 100px;
    padding-bottom: clamp(160px, 22vw, 220px);
  }
  .divider-yoda-bottom-threelevelsi {
    height: clamp(80px, 15vw, 130px);
  }

  /* 3. Quotes Section */
  .section-story-quotes {
    padding-bottom: clamp(120px, 18vw, 180px);
  }

  /* 4. Haute Cuisine Section: generous clearance for mountain peaks */
  .section-story-cuisine {
    padding-bottom: clamp(140px, 18vw, 220px);
  }
  .divider-cuisine-bottom-mtns {
    height: clamp(60px, 12vw, 100px);
  }

  /* 5. Meister Section: generous clearance for mountain peaks */
  .section-story-meister {
    padding-bottom: clamp(140px, 18vw, 220px);
  }
  .divider-meister-bottom-mtns {
    height: clamp(60px, 12vw, 100px);
  }

  /* 6. Superheroes Section: scaled top divider, headroom & optimized artwork alignment */
  .divider-heroes-top-threelevels {
    height: clamp(50px, 10vw, 70px);
  }
  .superheroes-bg-img {
    object-position: center 8%;
  }
  .section-story-superheroes {
    min-height: 950px;
    padding-top: 80px;
    padding-bottom: clamp(160px, 24vw, 230px);
  }
  .divider-heroes-bottom-threelevelsi {
    height: clamp(90px, 16vw, 140px);
  }
}

@media (max-width: 640px) {
  .packages-grid-4 {
    grid-template-columns: 1fr;
  }
  .trust-grid-4 {
    grid-template-columns: 1fr;
  }
  .footer-top-grid {
    grid-template-columns: 1fr;
  }
  .addons-grid {
    grid-template-columns: 1fr;
  }
  .editorial-grid {
    grid-template-columns: 1fr;
  }
  .btn-solaris {
    width: 100%;
  }
  .hero-actions-cinematic {
    width: 100%;
    flex-direction: column;
  }
  .hero-badge-interactive {
    padding: 6px 14px;
    gap: 8px;
  }
  .hero-quick-dock {
    bottom: 12px;
    gap: 4px;
    padding: 4px 6px;
    max-width: 96vw;
  }
  .dock-link {
    min-width: 44px;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 10px;
    font-size: 14px;
  }
  .dock-label {
    display: none;
  }
  .cta-banner-actions {
    width: 100%;
    flex-direction: column;
  }
  .footer-bottom-bar {
    flex-direction: column;
    align-items: flex-start;
  }
}
