/* ============================================================
   MU-Content-Agentur – Stylesheet
   Farben & Schriften nach Style.css (Referenz-Datei)
   Layout nach MU-Website-Spezifikation
   ============================================================ */

/* === CSS Variables (aus Referenz-CSS übernommen) === */
:root {
  --color-bg-dark:      #0a0a0a;
  --color-bg-secondary: #1a1a2e;
  --color-bg-tertiary:  #0f0f1e;
  --color-text-primary: #ffffff;
  --color-text-secondary:#f0f0f0;
  --color-text-light:   #cccccc;
  --color-cyan:         #00d9ff;
  --color-orange:       #bf5fff;
  --color-pink:         #ff00aa;
  --color-border:       #2a2a3e;
  --font-heading:       'Montserrat', 'Space Grotesk', 'Inter', sans-serif;
  --font-body:          'Inter', 'Segoe UI', 'Roboto', sans-serif;
  --glow-cyan:          0 0 20px rgba(0,217,255,0.5);
  --glow-pink:          0 0 20px rgba(255,0,170,0.5);
  --glow-orange:        0 0 20px rgba(191,95,255,0.5);
  --glow-cyan-lg:       0 0 40px rgba(0,217,255,0.8);

  /* Layout */
  --max-w:    1600px;
  --header-h: 72px;
  --t-fast:   200ms ease;
  --t-normal: 300ms ease;
  --t-cubic:  300ms cubic-bezier(0.4,0,0.2,1);
}

/* === Reset === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background-color: var(--color-bg-dark);
  background-image:
    linear-gradient(rgba(0,217,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,217,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  color: var(--color-text-secondary);
  line-height: 1.6;
  overflow-x: hidden;
}
a { color: var(--color-cyan); text-decoration: none; transition: all 0.3s ease; }
a:hover { color: var(--color-pink); text-shadow: var(--glow-pink); }
ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }

/* === Typografie (aus Referenz-CSS) === */
h1,h2,h3,h4,h5,h6 {
  font-family: var(--font-heading);
  color: var(--color-text-primary);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}
h1 { font-size: 48px; letter-spacing: -1px; }
h2 { font-size: 36px; letter-spacing: -0.5px; }
h3 { font-size: 28px; }
h4 { font-size: 24px; }
p  { font-size: 18px; color: var(--color-text-secondary); margin-bottom: 1rem; }

@media (max-width: 1024px) {
  h1 { font-size: 40px; }
  h2 { font-size: 32px; }
  p  { font-size: 16px; }
}
@media (max-width: 768px) {
  h1 { font-size: 32px; }
  h2 { font-size: 28px; }
  h3 { font-size: 24px; }
  p  { font-size: 15px; }
}
@media (max-width: 480px) {
  h1 { font-size: 24px; }
  h2 { font-size: 22px; }
  h3 { font-size: 18px; }
  p  { font-size: 14px; }
}

/* === Layout === */
.container { width: 95%; max-width: var(--max-w); margin: 0 auto; padding: 0 20px; }
.section { padding: 80px 40px; }

/* Section-Überschriften mit Cyan-Unterstrich (aus Referenz-CSS) */
/* === 3D Metallic Section Headlines === */
.section-headline {
  font-size: 36px;
  text-align: center;
  margin-bottom: 50px;
  position: relative;
  display: block;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  letter-spacing: 3px;
  text-transform: uppercase;

  background: linear-gradient(90deg, #00d9ff 0%, #aa44ff 55%, #ff55bb 100%);
  background-size: 100% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;

  filter:
    drop-shadow(1px 1px 0 rgba(100,0,180,1))
    drop-shadow(2px 2px 0 rgba(80,0,150,1))
    drop-shadow(3px 3px 0 rgba(60,0,120,1))
    drop-shadow(4px 4px 0 rgba(40,0,90,1))
    drop-shadow(5px 5px 0 rgba(20,0,60,1))
    drop-shadow(6px 6px 0 rgba(10,0,30,1))
    drop-shadow(7px 7px 0 rgba(0,0,0,0.9))
    drop-shadow(10px 14px 20px rgba(0,0,0,0.85))
    drop-shadow(0 0 25px rgba(0,217,255,0.55))
    drop-shadow(0 0 55px rgba(191,95,255,0.35));

  transition: transform 0.3s ease;
  z-index: 1;
}

.section-headline::before { display: none; }

.section-headline:hover {
  transform: scale(1.02) translateY(-3px);
  filter:
    drop-shadow(1px 1px 0 rgba(100,0,180,1))
    drop-shadow(2px 2px 0 rgba(80,0,150,1))
    drop-shadow(3px 3px 0 rgba(60,0,120,1))
    drop-shadow(4px 4px 0 rgba(40,0,90,1))
    drop-shadow(5px 5px 0 rgba(20,0,60,1))
    drop-shadow(6px 6px 0 rgba(0,0,0,0.9))
    drop-shadow(10px 14px 20px rgba(0,0,0,0.85))
    drop-shadow(0 0 35px rgba(0,217,255,0.8))
    drop-shadow(0 0 70px rgba(191,95,255,0.6));
}

@keyframes headlineMetalShine {
  0%   { background-position: 0%   0%; }
  50%  { background-position: 0% 100%; }
  100% { background-position: 0%   0%; }
}
.section-headline::after {
  content: '';
  position: absolute;
  bottom: -15px; left: 50%;
  transform: translateX(-50%);
  width: 60px; height: 3px;
  background: linear-gradient(90deg, var(--color-cyan), var(--color-pink));
}
.section-sub {
  font-size: 18px;
  color: var(--color-text-secondary);
  text-align: center;
  margin-bottom: 40px;
}

/* === Buttons (aus Referenz-CSS) === */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 40px;
  background-color: var(--color-cyan);
  color: #000000;
  font-weight: bold;
  font-size: 16px;
  border: none; border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  box-shadow: var(--glow-cyan);
  font-family: var(--font-body);
  letter-spacing: 0.3px;
}
.btn:hover {
  background-color: var(--color-pink);
  color: var(--color-text-primary);
  box-shadow: var(--glow-pink);
  transform: translateY(-2px);
}
.btn:active { transform: translateY(0); }
.btn-outline {
  background-color: transparent;
  color: var(--color-cyan);
  border: 2px solid var(--color-cyan);
}
.btn-outline:hover {
  background-color: var(--color-cyan);
  color: #000;
}
@media (max-width: 768px) {
  .btn { padding: 12px 30px; font-size: 14px; width: 100%; justify-content: center; }
}

/* ============================================================
   HEADER (aus Referenz-CSS + unser Layout)
   ============================================================ */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--header-h);
  z-index: 1000;
  background-color: rgba(10,10,10,0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--color-border);
  box-shadow: 0 0 30px rgba(0,217,255,0.1);
}
.header-inner {
  max-width: var(--max-w); margin: 0 auto; height: 100%;
  padding: 0 20px;
  display: flex; align-items: center; justify-content: space-between;
}
.logo {
  display: flex;
  align-items: center;
  transition: all 0.3s ease;
}
.logo img {
  height: 90px !important;
  width: auto !important;
  max-width: 260px !important;
  display: block;
  transition: all 0.3s ease;
  filter: drop-shadow(0 0 10px rgba(0,217,255,0.5));
}
.logo:hover img {
  filter: drop-shadow(0 0 20px rgba(0,217,255,1));
  transform: scale(1.05);
}

/* NAV */
.nav { display: flex; align-items: center; gap: 8px; }
.nav-item { position: relative; }
.nav-link {
  display: inline-block;
  padding: 8px 14px;
  font-size: 14px; font-weight: 700;
  font-family: var(--font-heading);
  letter-spacing: 1px;
  border-radius: 4px;
  transition: filter 0.3s ease, transform 0.3s ease;
  white-space: nowrap;
  position: relative;

  background: linear-gradient(90deg, #00d9ff 0%, #aa44ff 55%, #ff55bb 100%);
  background-size: 100% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;

  filter:
    drop-shadow(1px 1px 0 rgba(100,0,180,1))
    drop-shadow(2px 2px 0 rgba(80,0,150,1))
    drop-shadow(3px 3px 0 rgba(60,0,120,1))
    drop-shadow(4px 4px 0 rgba(40,0,90,1))
    drop-shadow(5px 5px 0 rgba(20,0,60,1))
    drop-shadow(6px 6px 0 rgba(10,0,30,1))
    drop-shadow(7px 7px 0 rgba(0,0,0,0.9))
    drop-shadow(0 0 10px rgba(0,217,255,0.4))
    drop-shadow(0 0 25px rgba(191,95,255,0.25));
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 2px; left: 14px;
  width: 0; height: 2px;
  background: linear-gradient(90deg, #00d9ff, #ff55bb);
  transition: width 0.3s ease;
}
.nav-link:hover {
  transform: translateY(-1px);
  filter:
    drop-shadow(1px 1px 0 rgba(100,0,180,1))
    drop-shadow(2px 2px 0 rgba(80,0,150,1))
    drop-shadow(3px 3px 0 rgba(60,0,120,1))
    drop-shadow(4px 4px 0 rgba(40,0,90,1))
    drop-shadow(5px 5px 0 rgba(20,0,60,1))
    drop-shadow(6px 6px 0 rgba(10,0,30,1))
    drop-shadow(7px 7px 0 rgba(0,0,0,0.9))
    drop-shadow(0 0 20px rgba(0,217,255,0.7))
    drop-shadow(0 0 40px rgba(191,95,255,0.5));
}
.nav-link:hover::after { width: calc(100% - 28px); }
.nav-link.active::after { width: calc(100% - 28px); }

/* DROPDOWN */
.dropdown-toggle { cursor: pointer; user-select: none; }
.dropdown-toggle::before { content: '▾'; float: right; margin-left: 4px; font-size: 10px; }
.dropdown-menu {
  position: absolute;
  top: calc(100% + 8px); left: 0;
  background: var(--color-bg-secondary);
  border: 1px solid var(--color-border);
  border-radius: 6px;
  min-width: 200px; padding: 8px 0;
  opacity: 0; visibility: hidden;
  transform: translateY(-8px);
  transition: var(--t-normal);
  box-shadow: 0 8px 32px rgba(0,0,0,0.4), var(--glow-cyan);
  z-index: 200;
}
.nav-item:hover .dropdown-menu,
.nav-item:focus-within .dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown-menu a {
  display: block; padding: 10px 20px;
  font-size: 14px; font-weight: 700;
  font-family: var(--font-heading);
  letter-spacing: 0.5px;
  transition: filter 0.3s ease, padding-left 0.3s ease, background 0.3s ease;

  background: linear-gradient(90deg, #00d9ff 0%, #aa44ff 55%, #ff55bb 100%);
  background-size: 100% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;

  filter:
    drop-shadow(1px 1px 0 rgba(100,0,180,1))
    drop-shadow(2px 2px 0 rgba(80,0,150,1))
    drop-shadow(3px 3px 0 rgba(60,0,120,1))
    drop-shadow(4px 4px 0 rgba(40,0,90,1))
    drop-shadow(5px 5px 0 rgba(20,0,60,1))
    drop-shadow(6px 6px 0 rgba(10,0,30,1))
    drop-shadow(7px 7px 0 rgba(0,0,0,0.9))
    drop-shadow(0 0 8px rgba(0,217,255,0.35));
}
.dropdown-menu a:hover {
  background-color: rgba(0,217,255,0.05);
  padding-left: 24px;
  filter:
    drop-shadow(1px 1px 0 rgba(100,0,180,1))
    drop-shadow(2px 2px 0 rgba(80,0,150,1))
    drop-shadow(3px 3px 0 rgba(60,0,120,1))
    drop-shadow(4px 4px 0 rgba(40,0,90,1))
    drop-shadow(5px 5px 0 rgba(20,0,60,1))
    drop-shadow(6px 6px 0 rgba(10,0,30,1))
    drop-shadow(7px 7px 0 rgba(0,0,0,0.9))
    drop-shadow(0 0 18px rgba(0,217,255,0.65))
    drop-shadow(0 0 35px rgba(191,95,255,0.45));
}

/* HAMBURGER */
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 8px; border: none; background: none;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--color-cyan); border-radius: 2px;
  transition: var(--t-cubic);
  box-shadow: 0 0 6px rgba(0,217,255,0.5);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* MOBILE NAV */
.mobile-nav {
  display: none;
  position: fixed; top: var(--header-h); left: 0; right: 0;
  background: var(--color-bg-secondary);
  border-bottom: 1px solid var(--color-border);
  padding: 16px 0 24px; z-index: 999;
  transform: translateY(-100%);
  transition: transform var(--t-cubic);
}
.mobile-nav.open { transform: translateY(0); }
.mobile-nav a {
  display: block; padding: 14px 24px;
  font-size: 16px; font-weight: 700;
  font-family: var(--font-heading);
  letter-spacing: 1px;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  transition: filter 0.3s ease, background 0.3s ease;

  background: linear-gradient(90deg, #00d9ff 0%, #aa44ff 55%, #ff55bb 100%);
  background-size: 100% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;

  filter:
    drop-shadow(1px 1px 0 rgba(100,0,180,1))
    drop-shadow(2px 2px 0 rgba(80,0,150,1))
    drop-shadow(3px 3px 0 rgba(60,0,120,1))
    drop-shadow(4px 4px 0 rgba(40,0,90,1))
    drop-shadow(5px 5px 0 rgba(20,0,60,1))
    drop-shadow(6px 6px 0 rgba(10,0,30,1))
    drop-shadow(7px 7px 0 rgba(0,0,0,0.9))
    drop-shadow(0 0 10px rgba(0,217,255,0.4));
}
.mobile-nav a:hover {
  background-color: rgba(0,217,255,0.04);
  filter:
    drop-shadow(1px 1px 0 rgba(100,0,180,1))
    drop-shadow(2px 2px 0 rgba(80,0,150,1))
    drop-shadow(3px 3px 0 rgba(60,0,120,1))
    drop-shadow(4px 4px 0 rgba(40,0,90,1))
    drop-shadow(5px 5px 0 rgba(20,0,60,1))
    drop-shadow(6px 6px 0 rgba(10,0,30,1))
    drop-shadow(7px 7px 0 rgba(0,0,0,0.9))
    drop-shadow(0 0 20px rgba(0,217,255,0.7))
    drop-shadow(0 0 40px rgba(191,95,255,0.5));
}
.mobile-nav .branch-group { padding-left: 40px; }
.mobile-nav .branch-group a { font-size: 14px; }

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.hero-inner {
  position: relative; z-index: 10;
  width: 95%; max-width: 900px; margin: 0 auto;
  display: flex; flex-direction: column;
  align-items: center; text-align: center;
}
.hero-visual { display: none; }

/* Hintergrundbild */
.hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center 40%;
  z-index: 0;
}

/* Overlay (aus Referenz-CSS) */
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(135deg, rgba(26,26,46,0.85) 0%, rgba(15,15,30,0.92) 100%);
}

/* CSS-Fallback Hintergrund */
.hero-bg-fallback {
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(ellipse 70% 60% at 50% 0%, rgba(0,217,255,0.1) 0%, transparent 60%),
    radial-gradient(ellipse 50% 50% at 10% 80%, rgba(255,107,53,0.07) 0%, transparent 55%),
    radial-gradient(ellipse 60% 40% at 90% 30%, rgba(255,0,110,0.06) 0%, transparent 50%),
    linear-gradient(160deg, #0f0f1e 0%, #0a0a0a 60%, #0f0f1e 100%);
}

/* Grid-Overlay */
.hero-grid {
  position: absolute; inset: 0; z-index: 2;
  background-image:
    linear-gradient(rgba(0,217,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,217,255,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 100% 100% at 50% 50%, black 30%, transparent 80%);
}

/* Schwebende holografische Karten */
.hero-cards {
  position: absolute; inset: 0; z-index: 2;
  pointer-events: none; overflow: hidden;
}
.holo-card {
  position: absolute; border-radius: 10px;
  background: rgba(0,217,255,0.04);
  border: 1px solid rgba(0,217,255,0.18);
  backdrop-filter: blur(4px);
  box-shadow: 0 4px 24px rgba(0,217,255,0.08), inset 0 1px 0 rgba(255,255,255,0.05);
  animation: floatCard linear infinite;
}
.holo-card::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(0,217,255,0.08) 0%, transparent 60%);
  border-radius: inherit;
}
.holo-card-1 { width: 140px; height: 95px;  top: 15%; right: 18%; animation-duration: 14s; animation-delay: 0s; }
.holo-card-2 { width: 110px; height: 75px;  top: 25%; right: 8%;  animation-duration: 17s; animation-delay: -5s; }
.holo-card-3 { width: 160px; height: 105px; top: 10%; right: 30%; animation-duration: 11s; animation-delay: -3s; }
.holo-card-4 { width: 90px;  height: 65px;  top: 40%; right: 12%; animation-duration: 19s; animation-delay: -8s; }
@keyframes floatCard {
  0%   { transform: translateY(0px) rotate(-2deg) scale(1);    opacity: 0.5; }
  25%  { transform: translateY(-20px) rotate(1deg) scale(1.02); opacity: 0.75; }
  50%  { transform: translateY(-8px) rotate(-1deg) scale(1);   opacity: 0.6; }
  75%  { transform: translateY(-28px) rotate(2deg) scale(1.03); opacity: 0.8; }
  100% { transform: translateY(0px) rotate(-2deg) scale(1);    opacity: 0.5; }
}

/* Cyan-Partikel */
.hero-sparks { position: absolute; inset: 0; z-index: 15; pointer-events: none; }
.spark {
  position: absolute; width: 4px; height: 4px;
  background: #ffffff; border-radius: 50%;
  box-shadow:
    0 0 6px 2px var(--color-cyan),
    0 0 18px 4px rgba(0,217,255,0.8),
    0 0 40px 8px rgba(0,217,255,0.4),
    0 0 80px 12px rgba(191,95,255,0.3);
  animation: sparkFloat linear infinite;
}
.spark:nth-child(1)  { left: 30%; top: 75%; animation-duration: 6s;  animation-delay: 0s;  --rx: 0.2; }
.spark:nth-child(2)  { left: 45%; top: 70%; animation-duration: 8s;  animation-delay: -2s; --rx: 0.8; box-shadow: 0 0 6px 2px var(--color-pink), 0 0 18px 4px rgba(255,0,170,0.9), 0 0 50px 10px rgba(255,0,170,0.5); }
.spark:nth-child(3)  { left: 60%; top: 72%; animation-duration: 7s;  animation-delay: -4s; --rx: 0.4; }
.spark:nth-child(4)  { left: 72%; top: 68%; animation-duration: 9s;  animation-delay: -1s; --rx: 0.9; box-shadow: 0 0 6px 2px var(--color-orange), 0 0 18px 4px rgba(191,95,255,0.9), 0 0 50px 10px rgba(191,95,255,0.5); }
.spark:nth-child(5)  { left: 20%; top: 80%; animation-duration: 5s;  animation-delay: -3s; --rx: 0.1; }
.spark:nth-child(6)  { left: 55%; top: 65%; animation-duration: 10s; animation-delay: -6s; --rx: 0.6; box-shadow: 0 0 6px 2px var(--color-pink), 0 0 18px 4px rgba(255,0,170,0.9), 0 0 50px 10px rgba(255,0,170,0.5); }
.spark:nth-child(7)  { left: 38%; top: 78%; animation-duration: 7s;  animation-delay: -1s; --rx: 0.3; }
.spark:nth-child(8)  { left: 65%; top: 60%; animation-duration: 9s;  animation-delay: -5s; --rx: 0.7; box-shadow: 0 0 6px 2px var(--color-orange), 0 0 18px 4px rgba(191,95,255,0.9), 0 0 50px 10px rgba(191,95,255,0.5); }
.spark:nth-child(9)  { left: 80%; top: 73%; animation-duration: 6s;  animation-delay: -2s; --rx: 0.5; }
.spark:nth-child(10) { left: 25%; top: 68%; animation-duration: 8s;  animation-delay: -7s; --rx: 0.2; box-shadow: 0 0 6px 2px var(--color-pink), 0 0 18px 4px rgba(255,0,170,0.9), 0 0 50px 10px rgba(255,0,170,0.5); }
.spark:nth-child(11) { left: 50%; top: 80%; animation-duration: 5s;  animation-delay: -4s; --rx: 0.8; }
.spark:nth-child(12) { left: 85%; top: 65%; animation-duration: 11s; animation-delay: -3s; --rx: 0.4; box-shadow: 0 0 6px 2px var(--color-orange), 0 0 18px 4px rgba(191,95,255,0.9), 0 0 50px 10px rgba(191,95,255,0.5); }
@keyframes sparkFloat {
  0%   { transform: translate(0,0) scale(1.2); opacity: 0; }
  10%  { opacity: 1; }
  90%  { opacity: 0.8; }
  100% { transform: translate(calc(-20px + 40px * var(--rx,0.5)), -150px) scale(0); opacity: 0; }
}

/* Glow Orbs */
.hero-orb {
  position: absolute; border-radius: 50%; filter: blur(100px);
  pointer-events: none; animation: orbPulse ease-in-out infinite;
}
.hero-orb-1 {
  width: 500px; height: 400px;
  background: radial-gradient(circle, rgba(0,217,255,0.15) 0%, transparent 70%);
  bottom: -100px; right: 0; animation-duration: 10s;
}
.hero-orb-2 {
  width: 350px; height: 350px;
  background: radial-gradient(circle, rgba(255,0,110,0.1) 0%, transparent 70%);
  top: 10%; left: -50px; animation-duration: 13s; animation-delay: -4s;
}
@keyframes orbPulse {
  0%,100% { opacity: 0.6; transform: scale(1); }
  50%      { opacity: 1;   transform: scale(1.1); }
}

/* HERO CONTENT */
.hero-content {
  text-align: center; padding: 0; width: 100%;
}
.hero-eyebrow {
  display: inline-block; margin-bottom: 20px;
  padding: 6px 20px;
  border: 1px solid rgba(0,217,255,0.3); border-radius: 100px;
  font-size: 11px; font-weight: 700;
  letter-spacing: 3px; text-transform: uppercase;
  color: var(--color-cyan);
  background: rgba(0,217,255,0.05);
  box-shadow: var(--glow-cyan);
}
.hero-title {
  font-size: 48px; font-weight: 900;
  color: var(--color-text-primary);
  letter-spacing: 3px; margin-bottom: 8px;
}
.hero-title .gradient-text {
  position: relative; display: inline-block; width: auto;
  background: linear-gradient(90deg, #00d9ff 0%, #aa44ff 55%, #ff55bb 100%);
  background-size: 100% 100%;
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  filter:
    drop-shadow(1px 1px 0 rgba(100,0,180,1))
    drop-shadow(2px 2px 0 rgba(80,0,150,1))
    drop-shadow(3px 3px 0 rgba(60,0,120,1))
    drop-shadow(4px 4px 0 rgba(40,0,90,1))
    drop-shadow(5px 5px 0 rgba(20,0,60,1))
    drop-shadow(6px 6px 0 rgba(10,0,30,1))
    drop-shadow(7px 7px 0 rgba(0,0,0,0.9))
    drop-shadow(10px 14px 20px rgba(0,0,0,0.85))
    drop-shadow(0 0 25px rgba(0,217,255,0.55))
    drop-shadow(0 0 55px rgba(191,95,255,0.35));
  z-index: 1;
}
.hero-subtitle {
  font-size: 24px; color: #ffffff;
  font-weight: 500; margin-top: 24px; margin-bottom: 16px; line-height: 1.6;
  text-shadow: 0 1px 8px rgba(0,0,0,0.6);
}
.hero-desc {
  font-size: 18px; color: var(--color-text-secondary);
  margin-bottom: 40px; line-height: 1.8;
}
.hero-desc strong { color: var(--color-cyan); font-weight: 600; }
.hero-cta-group { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* Pulsierende CTA (aus Referenz-CSS) */
.hero-cta-group .btn:first-child { animation: pulse 2s infinite; }
@keyframes pulse {
  0%,100% { box-shadow: var(--glow-cyan); }
  50%      { box-shadow: var(--glow-cyan-lg); }
}

/* Trust Badges */
.hero-badges {
  display: flex; gap: 24px; justify-content: center;
  margin-top: 48px; flex-wrap: wrap;
}
.hero-badge {
  display: flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 600;
  letter-spacing: 1px; text-transform: uppercase;
  color: var(--color-text-light);
}
.hero-badge-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--color-cyan);
  box-shadow: var(--glow-cyan);
  animation: dotPulse 2s ease-in-out infinite;
}
@keyframes dotPulse {
  0%,100% { transform: scale(1); opacity: 1; }
  50%      { transform: scale(1.5); opacity: 0.7; }
}

.hero-scroll {
  position: absolute; bottom: 32px; left: 50%;
  transform: translateX(-50%); z-index: 10;
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  color: var(--color-cyan); font-size: 10px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  animation: scrollBounce 2s ease-in-out infinite;
}
.hero-scroll::before {
  content: ''; display: block; width: 1px; height: 40px;
  background: linear-gradient(to bottom, transparent, var(--color-cyan));
}
@keyframes scrollBounce {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50%      { transform: translateX(-50%) translateY(8px); }
}

@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .hero-content { text-align: center; }
  .hero-cta-group { justify-content: center; }
  .hero-badges { justify-content: center; }
}
@media (max-width: 768px) {
  .hero { min-height: 80vh; }
  .hero-title { font-size: 32px; }
  .hero-subtitle { font-size: 18px; }
  .hero-desc { font-size: 16px; }
  .hero-cta-group { flex-direction: column; align-items: center; }
  .holo-card { display: none; }
}

/* ============================================================
   ABOUT SECTION
   ============================================================ */
.about { background-color: var(--color-bg-secondary); }
.about-inner { text-align: center; max-width: 960px; margin: 0 auto; }
.about-text { font-size: 18px; line-height: 1.8; color: var(--color-text-secondary); }
.about-text em { font-style: normal; color: var(--color-cyan); font-weight: 700; }
.about-badge {
  display: inline-block; margin-bottom: 24px;
  padding: 6px 18px; border: 1px solid rgba(0,217,255,0.3); border-radius: 100px;
  font-size: 11px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase;
  color: var(--color-cyan); box-shadow: var(--glow-cyan);
}

/* ============================================================
   BRANCHES SECTION
   ============================================================ */
.branches { background-color: var(--color-bg-dark); }
.branches-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.branch-item {
  display: flex; align-items: center; gap: 15px;
  padding: 20px;
  background-color: var(--color-bg-tertiary);
  border: 1px solid var(--color-border); border-radius: 8px;
  font-size: 16px; color: var(--color-text-secondary);
  transition: all 0.3s ease; cursor: default;
}
.branch-item:hover {
  border-color: var(--color-cyan);
  box-shadow: var(--glow-cyan);
  transform: translateY(-5px);
  color: var(--color-text-primary);
}
.branch-item.clickable { cursor: pointer; }
.branch-check { color: var(--color-cyan); font-size: 20px; flex-shrink: 0; font-weight: bold; }

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

/* ============================================================
   WHY SECTION
   ============================================================ */
.why { background-color: var(--color-bg-secondary); }
.why-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 30px; max-width: var(--max-w); margin: 0 auto;
}
.why-card {
  background-color: var(--color-bg-dark);
  border: 1px solid var(--color-border); border-radius: 8px;
  padding: 30px; text-align: center;
  transition: all 0.3s ease; position: relative; overflow: hidden;
}
.why-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--color-cyan), var(--color-pink));
  transform: scaleX(0); transition: var(--t-cubic);
}
.why-card:hover::before { transform: scaleX(1); }
.why-card:hover {
  border-color: var(--color-cyan);
  box-shadow: var(--glow-cyan);
  transform: translateY(-10px);
}
.why-icon {
  font-size: 48px; margin-bottom: 15px;
  display: inline-block;
}
.why-card h3 {
  margin-bottom: 15px; font-size: 20px;
  display: inline-block; width: auto;
  background: linear-gradient(90deg, #00d9ff 0%, #aa44ff 55%, #ff55bb 100%);
  background-size: 100% 100%;
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  filter:
    drop-shadow(1px 1px 0 rgba(100,0,180,1))
    drop-shadow(2px 2px 0 rgba(80,0,150,1))
    drop-shadow(3px 3px 0 rgba(60,0,120,1))
    drop-shadow(4px 4px 0 rgba(40,0,90,1))
    drop-shadow(0 0 10px rgba(0,217,255,0.5));
}
.why-card p  { font-size: 15px; color: var(--color-text-secondary); margin: 0; }

@media (max-width: 1024px) { .why-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 768px)  { .why-grid { grid-template-columns: 1fr; } .why-card { padding: 20px; } }

/* ============================================================
   FAQ SECTION
   ============================================================ */
.faq { background-color: var(--color-bg-dark); }
.faq-list { max-width: 1000px; margin: 0 auto; display: flex; flex-direction: column; gap: 0; }
.faq-item {
  border-bottom: 1px solid var(--color-border);
  margin-bottom: 0; padding-bottom: 0;
}
.faq-question {
  width: 100%; background: none; border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between;
  padding: 15px 0;
  font-family: var(--font-heading); font-size: 16px; font-weight: bold;
  color: var(--color-cyan); text-align: left; gap: 16px;
  transition: all 0.3s ease; user-select: none;
}
.faq-question:hover { color: var(--color-pink); }
.faq-icon {
  flex-shrink: 0; width: 24px; height: 24px;
  border: 2px solid currentColor; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; transition: var(--t-cubic);
}
.faq-item.open .faq-icon { transform: rotate(45deg); background: var(--color-cyan); color: #000; border-color: var(--color-cyan); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.faq-answer-inner {
  padding: 0 0 20px;
  font-size: 15px; color: var(--color-text-secondary); line-height: 1.8;
}
.faq-item.open .faq-answer { max-height: 500px; }

/* ============================================================
   CONTACT SECTION
   ============================================================ */
.contact {
  background: linear-gradient(135deg, var(--color-bg-secondary) 0%, var(--color-bg-tertiary) 100%);
}
.contact-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: start;
  max-width: var(--max-w); margin: 0 auto;
}
.contact-info h2 {
  font-size: 36px; margin-bottom: 8px;
  display: block; width: fit-content;
  background: linear-gradient(90deg, #00d9ff 0%, #aa44ff 55%, #ff55bb 100%);
  background-size: 100% 100%;
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  filter: drop-shadow(1px 1px 0 rgba(100,0,180,1)) drop-shadow(2px 2px 0 rgba(80,0,150,1))
    drop-shadow(3px 3px 0 rgba(60,0,120,1)) drop-shadow(4px 4px 0 rgba(40,0,90,1))
    drop-shadow(5px 5px 0 rgba(20,0,60,1)) drop-shadow(6px 6px 0 rgba(0,0,0,0.9))
    drop-shadow(10px 14px 20px rgba(0,0,0,0.85)) drop-shadow(0 0 25px rgba(0,217,255,0.55));
}
.contact-info .contact-sub {
  font-size: 20px; color: var(--color-cyan); font-weight: bold;
  margin-bottom: 30px; text-shadow: var(--glow-cyan);
}
.process-list { margin: 30px 0; }
.process-item {
  display: flex; align-items: center; gap: 16px;
  padding: 12px 0; border-bottom: 1px solid var(--color-border);
  font-size: 16px; color: var(--color-text-secondary); transition: all 0.3s ease;
}
.process-item:hover { color: var(--color-text-primary); }
.process-num {
  width: 32px; height: 32px;
  background: var(--color-cyan); color: #000; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 900; font-size: 13px; flex-shrink: 0;
  box-shadow: var(--glow-cyan);
}
.contact-details { display: flex; flex-direction: column; gap: 12px; }
.contact-detail { display: flex; align-items: center; gap: 12px; font-size: 16px; color: var(--color-text-secondary); }
.contact-detail a:hover { color: var(--color-cyan); text-shadow: none; }

/* FORM (aus Referenz-CSS) */
.contact-form { display: flex; flex-direction: column; gap: 20px; }
.form-group { display: flex; flex-direction: column; }
.form-group label { margin-bottom: 8px; color: var(--color-text-primary); font-weight: 500; font-size: 14px; }
.form-group input,
.form-group textarea {
  padding: 12px;
  background-color: var(--color-bg-dark);
  border: 1px solid var(--color-border);
  color: var(--color-text-primary);
  border-radius: 4px;
  font-family: var(--font-body); font-size: 14px;
  transition: all 0.3s ease; outline: none; resize: vertical;
}
.form-group textarea { min-height: 120px; }
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--color-text-light); }
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--color-cyan);
  box-shadow: var(--glow-cyan);
  background-color: rgba(0,217,255,0.05);
}
.form-group.error input,
.form-group.error textarea { border-color: var(--color-pink); box-shadow: var(--glow-pink); }
.form-group.valid input,
.form-group.valid textarea { border-color: #22c55e; }
.form-error { color: var(--color-pink); font-size: 12px; margin-top: 5px; display: none; }
.form-group.error .form-error { display: block; }
.form-success {
  display: none; text-align: center; padding: 32px;
  background: rgba(0,217,255,0.05);
  border: 1px solid rgba(0,217,255,0.3); border-radius: 8px;
  color: var(--color-cyan); font-size: 18px; font-weight: 700;
}
.form-success .success-icon { font-size: 48px; margin-bottom: 12px; }

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

/* ============================================================
   SCHNELLNAVIGATION
   ============================================================ */
.quicknav {
  background: rgba(8,5,3,0.92);
  border-bottom: 1px solid rgba(0,217,255,0.35);
  border-top: 1px solid rgba(0,217,255,0.15);
  backdrop-filter: blur(12px);
  position: sticky;
  top: 72px;
  z-index: 90;
  overflow-x: auto;
  scrollbar-width: none;
}
.quicknav::-webkit-scrollbar { display: none; }
.quicknav-inner {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 0 24px;
  max-width: 1400px;
  margin: 0 auto;
  white-space: nowrap;
}
.quicknav-label {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  padding: 11px 14px 11px 0;
  border-right: 1px solid rgba(255,255,255,0.2);
  margin-right: 10px;
  flex-shrink: 0;
}
.quicknav-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 16px;
  border-radius: 6px;
  font-size: 0.88rem;
  font-weight: 700;
  color: rgba(255,255,255,0.88);
  text-decoration: none;
  transition: all 0.2s ease;
  flex-shrink: 0;
  letter-spacing: 0.3px;
}
.quicknav-link:hover { color: #fff; background: rgba(0,217,255,0.12); color: var(--color-cyan); }
.quicknav-link.active { color: var(--color-cyan); background: rgba(0,217,255,0.12); }
.quicknav-link--b2b {
  color: #bf5fff;
  border: 1px solid rgba(191,95,255,0.45);
  background: rgba(191,95,255,0.08);
  margin-left: 10px;
}
.quicknav-link--b2b:hover {
  color: #d088ff;
  background: rgba(191,95,255,0.18);
  border-color: rgba(191,95,255,0.7);
}
.quicknav-divider { width:1px; height:18px; background:rgba(255,255,255,0.2); flex-shrink:0; }
.quicknav-link--value {
  color: #00d9ff;
  border: 1px solid rgba(0,217,255,0.35);
  background: rgba(0,217,255,0.06);
  margin-left: 0;
}
.quicknav-link--value:hover {
  color: #67e8f9;
  background: rgba(0,217,255,0.15);
  border-color: rgba(0,217,255,0.6);
}
/* Segment banner dividers for b2b.html */
.segment-banner {
  display: flex;
  align-items: center;
  gap: 20px;
  margin: 72px 24px 0;
}
.segment-banner::before, .segment-banner::after {
  content: '';
  flex: 1;
  height: 1px;
}
.segment-banner--premium::before,
.segment-banner--premium::after { background: linear-gradient(90deg, transparent, rgba(191,95,255,0.35), transparent); }
.segment-banner--value::before,
.segment-banner--value::after { background: linear-gradient(90deg, transparent, rgba(0,217,255,0.3), transparent); }
.segment-banner-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 24px;
  border-radius: 40px;
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 3px;
  text-transform: uppercase;
  white-space: nowrap;
  flex-shrink: 0;
}
.segment-banner--premium .segment-banner-label {
  background: rgba(191,95,255,0.1);
  border: 1px solid rgba(191,95,255,0.4);
  color: #bf5fff;
}
.segment-banner--value .segment-banner-label {
  background: rgba(0,217,255,0.07);
  border: 1px solid rgba(0,217,255,0.3);
  color: #00d9ff;
}
@media (max-width: 600px) { .quicknav-label { display: none; } .segment-banner { margin: 48px 12px 0; } }

/* ============================================================
   FOOTER (aus Referenz-CSS)
   ============================================================ */
.footer {
  background-color: #000000;
  border-top: 1px solid var(--color-border);
  padding: 30px 20px; text-align: center;
  color: var(--color-text-light); font-size: 14px;
}
.footer p { font-size: 14px; color: var(--color-text-light); margin: 0; line-height: 2; }
.footer a { color: var(--color-cyan); }
.footer a:hover { color: var(--color-pink); text-shadow: none; }

/* ============================================================
   BRANCH PAGES
   ============================================================ */
.page-hero {
  min-height: 70vh; display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
  padding: calc(var(--header-h) + 80px) 24px 80px;
  background: linear-gradient(135deg, rgba(26,26,46,0.95) 0%, rgba(15,15,30,0.95) 100%);
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 50% 0%, rgba(0,217,255,0.08) 0%, transparent 60%),
    radial-gradient(ellipse 50% 50% at 90% 100%, rgba(255,0,110,0.06) 0%, transparent 60%),
    linear-gradient(180deg, #0f0f1e 0%, #0a0a0a 100%);
}
.page-hero::after {
  content: ''; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(0,217,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,217,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
}
.page-hero-content { position: relative; z-index: 1; max-width: 900px; text-align: center; margin: 0 auto; }
.page-hero h1 { font-size: 48px; font-weight: 900; margin-bottom: 40px; }
.page-hero h1 span {
  position: relative;
  display: inline-block;
  background: linear-gradient(90deg, #00d9ff 0%, #aa44ff 55%, #ff55bb 100%);
  background-size: 100% 100%;
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  letter-spacing: 3px; text-transform: uppercase;
  filter:
    drop-shadow(1px 1px 0 rgba(100,0,180,1))
    drop-shadow(2px 2px 0 rgba(80,0,150,1))
    drop-shadow(3px 3px 0 rgba(60,0,120,1))
    drop-shadow(4px 4px 0 rgba(40,0,90,1))
    drop-shadow(5px 5px 0 rgba(20,0,60,1))
    drop-shadow(6px 6px 0 rgba(10,0,30,1))
    drop-shadow(7px 7px 0 rgba(0,0,0,0.9))
    drop-shadow(10px 14px 20px rgba(0,0,0,0.85))
    drop-shadow(0 0 25px rgba(0,217,255,0.55))
    drop-shadow(0 0 55px rgba(191,95,255,0.35));
}
.page-hero h1 span::before { display: none; }
.page-hero h1 span::before {
  content: attr(data-text);
  position: absolute; top: 0; left: 0; width: 100%; text-align: center;
  color: #00ccdd; -webkit-text-fill-color: #00ccdd; z-index: -1; pointer-events: none;
  text-shadow: 1px 1px 0 #009aaa, 2px 2px 0 #008090, 3px 3px 0 #006678,
    4px 4px 0 #004d60, 5px 5px 0 #003348, 6px 6px 0 #001a30,
    7px 7px 0 #000d1f, 8px 8px 0 #00060e, 9px 9px 0 #000000,
    12px 16px 25px rgba(0,0,0,0.80);
}

.problem-block, .solution-block {
  text-align: left; max-width: 720px; margin: 0 auto 24px;
  padding: 28px 32px; border-radius: 8px;
}
.problem-block { background: rgba(255,0,110,0.05); border-left: 4px solid var(--color-pink); }
.solution-block { background: rgba(255,107,53,0.05); border-left: 4px solid var(--color-orange); }
.problem-block h2 { font-size: 24px; color: var(--color-cyan); margin-bottom: 10px; }
.solution-block h2 { font-size: 24px; color: var(--color-orange); margin-bottom: 10px; }
.problem-block p, .solution-block p { font-size: 18px; color: var(--color-text-secondary); line-height: 1.8; margin: 0; }

.placeholder-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; max-width: 900px; margin: 60px auto; }
.placeholder-img {
  aspect-ratio: 16/9;
  background-color: var(--color-bg-tertiary);
  border: 2px dashed var(--color-border); border-radius: 8px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 8px; color: var(--color-text-light); font-size: 14px;
  transition: all 0.3s ease;
}
.placeholder-img:hover { border-color: var(--color-cyan); color: var(--color-cyan); box-shadow: var(--glow-cyan); }
.placeholder-img .ph-icon { font-size: 40px; opacity: 0.4; }

@media (max-width: 768px) {
  .page-hero h1 { font-size: 32px; }
  .placeholder-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) { .placeholder-grid { grid-template-columns: 1fr; } }

/* ============================================================
   WEBSEITEN SECTION
   ============================================================ */
.websection { background: var(--color-bg-tertiary); }

.web-alert {
  display: flex; align-items: flex-start; gap: 14px;
  background: rgba(255,0,170,0.08);
  border: 1px solid rgba(255,0,170,0.3);
  border-radius: 10px; padding: 16px 20px;
  margin-bottom: 50px; font-size: 15px;
  color: var(--color-text-secondary); line-height: 1.6;
}
.web-alert-icon { font-size: 22px; flex-shrink: 0; }
.web-alert strong { color: var(--color-pink); }

.web-grid {
  display: grid; grid-template-columns: 1fr auto 1fr;
  gap: 0; align-items: center; margin: 50px 0;
}
.web-card {
  border-radius: 14px; padding: 32px 28px;
}
.web-card--bad {
  background: rgba(255,0,0,0.05);
  border: 1px solid rgba(255,0,0,0.2);
}
.web-card--good {
  background: rgba(0,217,255,0.05);
  border: 1px solid rgba(0,217,255,0.3);
  box-shadow: 0 0 30px rgba(0,217,255,0.1);
}
.web-card-label {
  font-family: var(--font-heading); font-size: 13px;
  font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  margin-bottom: 20px;
}
.web-card--bad .web-card-label { color: #ff4444; }
.web-card--good .web-card-label { color: var(--color-cyan); }
.web-list { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.web-list li { font-size: 15px; color: var(--color-text-secondary); padding-left: 4px; }
.web-card--bad .web-list li { color: #b0b0b0; }
.web-card--good .web-list li { color: #e0e0e0; }

.web-card-divider { display: flex; justify-content: center; padding: 0 24px; }
.web-vs {
  font-family: var(--font-heading); font-size: 22px; font-weight: 900;
  background: linear-gradient(135deg, var(--color-cyan), var(--color-pink));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}

.web-packages {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px; margin: 50px 0 30px;
}
.web-package {
  background: var(--color-bg-secondary);
  border: 1px solid var(--color-border);
  border-radius: 14px; padding: 30px 24px;
  text-align: center; position: relative;
  transition: transform 0.3s ease;
  display: flex; flex-direction: column; gap: 12px;
}
.web-package:hover { transform: translateY(-6px); border-color: var(--color-cyan); }
.web-package--highlight {
  border-color: var(--color-cyan);
  box-shadow: 0 0 40px rgba(0,217,255,0.15);
}
.web-package-badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(135deg, var(--color-cyan), var(--color-orange));
  color: #000; font-size: 10px; font-weight: 900;
  padding: 4px 16px; border-radius: 20px; white-space: nowrap;
}
.web-package-icon { font-size: 36px; }
.web-package h3 {
  font-family: var(--font-heading); font-size: 18px; font-weight: 700;
  display: inline-block; width: auto;
  background: linear-gradient(90deg, #00d9ff 0%, #aa44ff 55%, #ff55bb 100%);
  background-size: 100% 100%;
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  filter:
    drop-shadow(1px 1px 0 rgba(100,0,180,1))
    drop-shadow(2px 2px 0 rgba(80,0,150,1))
    drop-shadow(3px 3px 0 rgba(60,0,120,1))
    drop-shadow(4px 4px 0 rgba(40,0,90,1))
    drop-shadow(0 0 10px rgba(0,217,255,0.5));
}
.web-package p { font-size: 14px; color: var(--color-text-secondary); line-height: 1.6; flex: 1; }
.web-package-price {
  font-family: var(--font-heading); font-size: 26px; font-weight: 900;
  background: linear-gradient(135deg, var(--color-cyan), var(--color-pink));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}

.web-cta {
  text-align: center; padding: 30px;
  background: rgba(0,217,255,0.04);
  border: 1px solid rgba(0,217,255,0.2);
  border-radius: 14px;
}
.web-cta p { color: var(--color-text-secondary); margin-bottom: 20px; font-size: 15px; }
.web-cta strong { color: var(--color-cyan); }
.btn-lg { padding: 18px 40px; font-size: 17px; }

@media (max-width: 900px) {
  .web-grid { grid-template-columns: 1fr; }
  .web-card-divider { padding: 16px 0; }
  .web-packages { grid-template-columns: 1fr; }
}

/* Process Section */
.process-section { margin: 60px auto; max-width: 900px; text-align: center; }
.process-section h2 {
  font-size: 28px; margin-bottom: 40px; font-family: var(--font-heading);
  position: relative; display: block; width: fit-content; margin: 0 auto 40px;
  letter-spacing: 2px; text-transform: uppercase;
  background: linear-gradient(90deg, #00d9ff 0%, #aa44ff 55%, #ff55bb 100%);
  background-size: 100% 100%;
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  filter:
    drop-shadow(1px 1px 0 rgba(100,0,180,1))
    drop-shadow(2px 2px 0 rgba(80,0,150,1))
    drop-shadow(3px 3px 0 rgba(60,0,120,1))
    drop-shadow(4px 4px 0 rgba(40,0,90,1))
    drop-shadow(5px 5px 0 rgba(20,0,60,1))
    drop-shadow(6px 6px 0 rgba(10,0,30,1))
    drop-shadow(7px 7px 0 rgba(0,0,0,0.9))
    drop-shadow(10px 14px 20px rgba(0,0,0,0.85))
    drop-shadow(0 0 25px rgba(0,217,255,0.55))
    drop-shadow(0 0 55px rgba(191,95,255,0.35));
}
.process-section h2::before {
  content: attr(data-text); position: absolute; top: 0; left: 0; width: 100%; text-align: center;
  display: none;
}
.process-steps { display: flex; flex-direction: column; gap: 0; text-align: left; }
.process-step {
  display: flex; gap: 28px; align-items: flex-start;
  padding: 28px 0;
  border-bottom: 1px solid var(--color-border);
  position: relative;
}
.process-step:last-child { border-bottom: none; }
.step-number {
  font-family: var(--font-heading); font-size: 42px; font-weight: 900;
  background: linear-gradient(135deg, var(--color-cyan), var(--color-orange));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  line-height: 1; flex-shrink: 0; width: 60px;
}
.step-content h3 {
  font-size: 18px; font-weight: 700; margin-bottom: 8px; font-family: var(--font-heading);
  display: inline-block; width: auto;
  background: linear-gradient(90deg, #00d9ff 0%, #aa44ff 55%, #ff55bb 100%);
  background-size: 100% 100%;
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  filter:
    drop-shadow(1px 1px 0 rgba(100,0,180,1))
    drop-shadow(2px 2px 0 rgba(80,0,150,1))
    drop-shadow(3px 3px 0 rgba(60,0,120,1))
    drop-shadow(4px 4px 0 rgba(40,0,90,1))
    drop-shadow(0 0 10px rgba(0,217,255,0.5));
}
.step-content p { font-size: 15px; color: var(--color-text-secondary); line-height: 1.7; }
@media (max-width: 600px) { .step-number { font-size: 30px; width: 44px; } .step-content h3 { font-size: 16px; } }

/* Price Section */
.price-section { margin: 60px auto; max-width: 1100px; text-align: center; }
.price-section h2 {
  font-size: 28px; margin-bottom: 36px; font-family: var(--font-heading);
  position: relative; display: block; width: fit-content; margin: 0 auto 36px;
  letter-spacing: 2px; text-transform: uppercase;
  background: linear-gradient(90deg, #00d9ff 0%, #aa44ff 55%, #ff55bb 100%);
  background-size: 100% 100%;
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  filter:
    drop-shadow(1px 1px 0 rgba(100,0,180,1))
    drop-shadow(2px 2px 0 rgba(80,0,150,1))
    drop-shadow(3px 3px 0 rgba(60,0,120,1))
    drop-shadow(4px 4px 0 rgba(40,0,90,1))
    drop-shadow(5px 5px 0 rgba(20,0,60,1))
    drop-shadow(6px 6px 0 rgba(10,0,30,1))
    drop-shadow(7px 7px 0 rgba(0,0,0,0.9))
    drop-shadow(10px 14px 20px rgba(0,0,0,0.85))
    drop-shadow(0 0 25px rgba(0,217,255,0.55))
    drop-shadow(0 0 55px rgba(191,95,255,0.35));
}
.price-section h2::before {
  content: attr(data-text); position: absolute; top: 0; left: 0; width: 100%; text-align: center;
  display: none;
}
.price-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 20px;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}
.price-card {
  background: var(--color-bg-secondary);
  border: 1px solid var(--color-border);
  border-radius: 16px; padding: 32px 24px;
  text-align: left; position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.price-card:hover { transform: translateY(-6px); box-shadow: var(--glow-cyan); }
.price-card--highlight { border-color: var(--color-cyan); box-shadow: 0 0 30px rgba(0,217,255,0.15); }
.price-badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(135deg, var(--color-cyan), var(--color-orange));
  color: #000; font-size: 10px; font-weight: 900;
  padding: 4px 16px; border-radius: 20px; letter-spacing: 1px; white-space: nowrap;
}
.price-label { font-size: 11px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: var(--color-cyan); margin-bottom: 14px; }
.price-amount { font-family: var(--font-heading); font-size: 48px; font-weight: 900; color: #fff; line-height: 1; margin-bottom: 4px; }
.price-amount span { font-size: 20px; font-weight: 400; color: var(--color-text-light); }
.price-note { font-size: 12px; color: var(--color-text-light); margin-bottom: 24px; }
.price-features { list-style: none; border-top: 1px solid var(--color-border); padding-top: 20px; }
.price-features li { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; color: var(--color-text-secondary); padding: 7px 0; border-bottom: 1px solid rgba(255,255,255,0.04); }
.price-features li:last-child { border-bottom: none; }
.pcheck { color: var(--color-cyan); font-weight: 900; flex-shrink: 0; }
.price-hint { font-size: 13px; color: var(--color-text-light); text-align: center; }
.price-hint a { color: var(--color-cyan); }
@media (max-width: 900px) {
  .price-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
  }
}

/* Video Section */
.video-section { margin: 60px auto; max-width: 1100px; text-align: center; }
.video-section h2 {
  font-size: 24px; margin-bottom: 24px; font-family: var(--font-heading);
  position: relative; display: block; width: fit-content; margin: 0 auto 24px;
  letter-spacing: 2px; text-transform: uppercase;
  background: linear-gradient(90deg, #00d9ff 0%, #aa44ff 55%, #ff55bb 100%);
  background-size: 100% 100%;
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  filter:
    drop-shadow(1px 1px 0 rgba(100,0,180,1))
    drop-shadow(2px 2px 0 rgba(80,0,150,1))
    drop-shadow(3px 3px 0 rgba(60,0,120,1))
    drop-shadow(4px 4px 0 rgba(40,0,90,1))
    drop-shadow(5px 5px 0 rgba(20,0,60,1))
    drop-shadow(6px 6px 0 rgba(10,0,30,1))
    drop-shadow(7px 7px 0 rgba(0,0,0,0.9))
    drop-shadow(10px 14px 20px rgba(0,0,0,0.85))
    drop-shadow(0 0 25px rgba(0,217,255,0.55))
    drop-shadow(0 0 55px rgba(191,95,255,0.35));
}
.video-section h2::before {
  content: attr(data-text); position: absolute; top: 0; left: 0; width: 100%; text-align: center;
  display: none;
}
.video-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.video-grid-3col { grid-template-columns: 1fr 1fr 1fr; }
@media (max-width: 900px) { .video-grid-3col { grid-template-columns: 1fr; } }
.video-wrapper {
  position: relative; border-radius: 12px; overflow: hidden;
  border: 1px solid rgba(0,217,255,0.3);
  box-shadow: 0 0 40px rgba(0,217,255,0.15), 0 20px 60px rgba(0,0,0,0.5);
  background: linear-gradient(135deg, #0f0f1e 0%, #1a1a2e 100%);
  min-height: 200px;
  display: flex; align-items: center; justify-content: center;
}
.video-wrapper video { width: 100%; display: block; background: transparent; position: relative; z-index: 1; }
@media (max-width: 768px) { .video-section { margin: 40px auto; } .video-grid { grid-template-columns: 1fr; } }

/* Ads Section */
.ads-section { margin: 60px auto; max-width: 1100px; text-align: center; }
.ads-section h2 {
  font-size: 24px; margin-bottom: 24px; font-family: var(--font-heading);
  position: relative; display: block; width: fit-content; margin: 0 auto 24px;
  letter-spacing: 2px; text-transform: uppercase;
  background: linear-gradient(90deg, #00d9ff 0%, #aa44ff 55%, #ff55bb 100%);
  background-size: 100% 100%;
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  filter:
    drop-shadow(1px 1px 0 rgba(100,0,180,1))
    drop-shadow(2px 2px 0 rgba(80,0,150,1))
    drop-shadow(3px 3px 0 rgba(60,0,120,1))
    drop-shadow(4px 4px 0 rgba(40,0,90,1))
    drop-shadow(5px 5px 0 rgba(20,0,60,1))
    drop-shadow(6px 6px 0 rgba(10,0,30,1))
    drop-shadow(7px 7px 0 rgba(0,0,0,0.9))
    drop-shadow(10px 14px 20px rgba(0,0,0,0.85))
    drop-shadow(0 0 25px rgba(0,217,255,0.55))
    drop-shadow(0 0 55px rgba(191,95,255,0.35));
}
.ads-section h2::before {
  content: attr(data-text); position: absolute; top: 0; left: 0; width: 100%; text-align: center;
  display: none;
}
/* WEICHE */
.weiche-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; margin-top: 48px; }
.weiche-card {
  display: flex; flex-direction: column; gap: 16px;
  padding: 40px 36px; border-radius: 20px; text-decoration: none;
  border: 1px solid rgba(255,255,255,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative; overflow: hidden;
}
.weiche-card--local {
  background: linear-gradient(135deg, rgba(0,217,255,0.08) 0%, rgba(0,217,255,0.03) 100%);
  border-color: rgba(0,217,255,0.3);
  box-shadow: 0 0 40px rgba(0,217,255,0.1), 0 20px 60px rgba(0,0,0,0.4);
}
.weiche-card--b2b {
  background: linear-gradient(135deg, rgba(191,95,255,0.1) 0%, rgba(191,95,255,0.03) 100%);
  border-color: rgba(191,95,255,0.35);
  box-shadow: 0 0 40px rgba(191,95,255,0.1), 0 20px 60px rgba(0,0,0,0.4);
}
.weiche-card:hover { transform: translateY(-6px); }
.weiche-card--local:hover { box-shadow: 0 0 60px rgba(0,217,255,0.25), 0 30px 80px rgba(0,0,0,0.5); }
.weiche-card--b2b:hover { box-shadow: 0 0 60px rgba(191,95,255,0.25), 0 30px 80px rgba(0,0,0,0.5); }
.weiche-icon { font-size: 48px; }
.weiche-card h3 { font-size: 1.6rem; font-weight: 800; color: #fff; margin: 0; }
.weiche-card--local h3 { color: var(--color-cyan); }
.weiche-card--b2b h3 { color: var(--color-orange); }
.weiche-card p { color: rgba(255,255,255,0.65); font-size: 1rem; margin: 0; line-height: 1.6; }
.weiche-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 8px; }
.weiche-list li { color: rgba(255,255,255,0.75); font-size: 0.95rem; }
.weiche-btn {
  margin-top: auto; padding: 14px 24px; border-radius: 10px;
  font-weight: 700; font-size: 1rem; text-align: center;
  transition: opacity 0.2s;
}
.weiche-card--local .weiche-btn { background: rgba(0,217,255,0.15); color: var(--color-cyan); border: 1px solid rgba(0,217,255,0.4); }
.weiche-card--b2b .weiche-btn { background: rgba(191,95,255,0.15); color: #bf5fff; border: 1px solid rgba(191,95,255,0.4); }
.weiche-card:hover .weiche-btn { opacity: 0.85; }
@media (max-width: 768px) { .weiche-grid { grid-template-columns: 1fr; } .weiche-card { padding: 28px 24px; } }

.ads-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.ads-grid-4col { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 900px) { .ads-grid-4col { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .ads-grid-4col { grid-template-columns: 1fr; } }
.ad-item {
  border-radius: 12px; overflow: hidden;
  border: 1px solid rgba(0,217,255,0.2);
  box-shadow: 0 0 30px rgba(0,217,255,0.1), 0 10px 40px rgba(0,0,0,0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.ad-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 0 40px rgba(0,217,255,0.3), 0 20px 60px rgba(0,0,0,0.5);
}
.ad-item { cursor: pointer; position: relative; }
.ad-item img { width: 100%; display: block; }
.ad-zoom {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.75));
  color: #fff; font-size: 13px; font-weight: 600;
  padding: 20px 12px 10px;
  opacity: 0; transition: opacity 0.3s ease;
  text-align: center; letter-spacing: 1px;
}
.ad-item:hover .ad-zoom { opacity: 1; }

/* === Korrekturschleife Info-Tooltip === */
.korrektur-info {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: help;
  color: var(--color-cyan);
  font-size: 10px;
  font-weight: 700;
  vertical-align: middle;
  margin-left: 6px;
  position: relative;
  border: 1px solid rgba(0,217,255,0.5);
  border-radius: 50%;
  width: 15px;
  height: 15px;
  line-height: 1;
  flex-shrink: 0;
  opacity: 0.75;
  transition: opacity 0.2s, box-shadow 0.2s;
  top: -1px;
}
.korrektur-info:hover,
.korrektur-info:focus { opacity: 1; box-shadow: 0 0 8px rgba(0,217,255,0.5); outline: none; }
.korrektur-info::after {
  content: attr(data-tip);
  position: absolute;
  bottom: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%);
  background: #1a1a2e;
  border: 1px solid rgba(0,217,255,0.35);
  color: #e0e0e0;
  font-size: 12px;
  font-weight: 400;
  font-family: var(--font-body);
  line-height: 1.65;
  padding: 12px 16px;
  border-radius: 8px;
  width: 280px;
  text-align: left;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
  z-index: 600;
  box-shadow: 0 8px 30px rgba(0,0,0,0.7), 0 0 0 1px rgba(0,217,255,0.08);
  pointer-events: none;
  white-space: normal;
}
.korrektur-info:hover::after,
.korrektur-info:focus::after { opacity: 1; visibility: visible; }
@media (max-width: 600px) {
  .korrektur-info::after { left: auto; right: 0; transform: none; width: 240px; }
}

/* === Korrekturschleife Info-Box (unter Preisen) === */
.korrektur-infobox {
  margin-top: 24px;
  padding: 16px 20px;
  background: rgba(0,217,255,0.04);
  border: 1px solid rgba(0,217,255,0.2);
  border-radius: 10px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
  text-align: left;
}
.korrektur-infobox-icon { font-size: 22px; flex-shrink: 0; margin-top: 1px; }
.korrektur-infobox h4 {
  font-size: 13px; font-weight: 700;
  color: var(--color-cyan);
  margin-bottom: 6px;
  font-family: var(--font-heading);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.korrektur-infobox p {
  font-size: 13px;
  color: var(--color-text-light);
  line-height: 1.7;
  margin: 0;
}
.korrektur-infobox p + p { margin-top: 6px; }
.korrektur-infobox strong { color: var(--color-text-secondary); font-weight: 600; }

/* Lightbox */
#lightbox {
  display: none; position: fixed; inset: 0; z-index: 9999;
  background: rgba(0,0,0,0.92);
  flex-direction: column; align-items: center; justify-content: center;
}
#lightbox.active { display: flex; animation: fadeIn 0.25s ease; }
#lightbox-stage {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; cursor: grab;
}
#lightbox-img {
  max-width: 88vw; max-height: 88vh;
  border-radius: 10px;
  box-shadow: 0 0 60px rgba(0,217,255,0.3);
  transform-origin: center center;
  transition: transform 0.15s ease;
  user-select: none; pointer-events: none;
}
.lightbox-close {
  position: fixed; top: 20px; right: 28px;
  background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.3);
  color: #fff; font-size: 22px; width: 44px; height: 44px;
  border-radius: 50%; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.2s ease; z-index: 10000;
}
.lightbox-close:hover { background: var(--color-cyan); color: #000; border-color: var(--color-cyan); }
.lightbox-zoom-btn {
  position: fixed; bottom: 28px;
  background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.3);
  color: #fff; font-size: 20px; width: 44px; height: 44px;
  border-radius: 50%; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.2s ease; z-index: 10000;
}
.lightbox-zoom-btn:hover { background: var(--color-cyan); color: #000; border-color: var(--color-cyan); }
#zoomIn    { right: 28px; }
#zoomOut   { right: 82px; }
#zoomReset { right: 136px; }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@media (max-width: 768px) { .ads-grid { grid-template-columns: 1fr; } .ads-section { margin: 40px auto; } }

/* ============================================================
   SIMPLE PAGES (Impressum, Datenschutz) aus Referenz-CSS
   ============================================================ */
.simple-page {
  max-width: 900px; margin: 0 auto;
  padding: calc(var(--header-h) + 60px) 20px 80px;
}
.simple-page h1 { font-size: 36px; margin-bottom: 40px; }
.simple-page h2 { font-size: 20px; color: var(--color-cyan); margin: 30px 0 15px; }
.simple-page p, .simple-page li { font-size: 15px; line-height: 1.8; color: var(--color-text-secondary); margin-bottom: 12px; }
.simple-page ul { padding-left: 24px; list-style: disc; }
.simple-page a { color: var(--color-cyan); }
.simple-page a:hover { color: var(--color-pink); text-shadow: none; }

/* ============================================================
   SCROLL ANIMATIONS
   ============================================================ */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 100ms; }
.reveal-delay-2 { transition-delay: 200ms; }
.reveal-delay-3 { transition-delay: 300ms; }
.reveal-delay-4 { transition-delay: 400ms; }

/* ============================================================
   RESPONSIVE (aus Referenz-CSS)
   ============================================================ */
@media (max-width: 768px) {
  :root { --header-h: 60px; }
  .nav { display: none; }
  .hamburger { display: flex; }
  .mobile-nav { display: block; }
  .section { padding: 40px 20px; }
  .container { padding: 0 16px; }
}
@media (max-width: 480px) {
  .section { padding: 30px 16px; }
}
