/* ============================================================
   DDA Deutsche Digital Agentur — Design System v2
   style.css — Premium Agency Rewrite
   ============================================================ */

/* ── Google Fonts ─────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

/* ── CSS Custom Properties ────────────────────────────────── */
:root {
  /* Colors */
  --color-bg:           #0D0D0D;
  --color-surface-1:    #141414;
  --color-surface-2:    #1C1C1C;
  --color-surface-3:    #111111;
  --color-gold:         #F5C518;
  --color-gold-light:   #F8D54E;
  --color-gold-dark:    #B8860B;
  --color-white:        #FFFFFF;
  --color-gray:         #888888;
  --color-gray-light:   #BBBBBB;
  --color-border:       #2A2A2A;
  --color-border-light: #1E1E1E;

  /* Typography */
  --font-family:     'Inter', system-ui, -apple-system, sans-serif;
  --font-size-xs:    clamp(0.75rem,  1.5vw, 0.875rem);
  --font-size-sm:    clamp(0.875rem, 1.8vw, 1rem);
  --font-size-base:  clamp(1rem,     2vw,   1.125rem);
  --font-size-lg:    clamp(1.125rem, 2.5vw, 1.25rem);
  --font-size-xl:    clamp(1.25rem,  3vw,   1.5rem);
  --font-size-2xl:   clamp(1.5rem,   4vw,   2rem);
  --font-size-3xl:   clamp(2rem,     5vw,   3rem);
  --font-size-4xl:   clamp(2.5rem,   6vw,   4rem);
  --font-size-hero:  clamp(2.8rem,   7vw,   5.5rem);

  /* Spacing */
  --space-1:  0.25rem;  --space-2:  0.5rem;
  --space-3:  0.75rem;  --space-4:  1rem;
  --space-5:  1.25rem;  --space-6:  1.5rem;
  --space-8:  2rem;     --space-10: 2.5rem;
  --space-12: 3rem;     --space-16: 4rem;
  --space-20: 5rem;     --space-24: 6rem;

  /* Border Radius */
  --radius-sm:   4px;   --radius-md:   8px;
  --radius-lg:   12px;  --radius-xl:   20px;
  --radius-2xl:  32px;  --radius-full: 9999px;

  /* Shadows */
  --shadow-gold-sm: 0 0 20px rgba(245,197,24,0.15);
  --shadow-gold-md: 0 0 40px rgba(245,197,24,0.25);
  --shadow-gold-lg: 0 0 80px rgba(245,197,24,0.35);
  --shadow-card:    0 4px 24px rgba(0,0,0,0.5);
  --shadow-deep:    0 20px 60px rgba(0,0,0,0.6);

  /* Transitions */
  --transition-fast: 0.15s ease;
  --transition-base: 0.3s ease;
  --transition-slow: 0.5s ease;

  /* Layout */
  --container-max: 1280px;
  --nav-height:    80px;
}

/* ── Reset ────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-family);
  background-color: var(--color-bg);
  color: var(--color-white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, video, svg { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; font-size: inherit; }
h1, h2, h3, h4, h5, h6 { line-height: 1.15; font-weight: 700; }

/* ── Layout Utilities ─────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--space-6);
}
.section-padding { padding-block: var(--space-24); }

/* Section label / eyebrow */
.section-label {
  display: inline-block;
  font-size: var(--font-size-xs);
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: var(--space-4);
}
.section-title {
  font-size: var(--font-size-3xl);
  font-weight: 900;
  color: var(--color-white);
  margin-bottom: var(--space-4);
  letter-spacing: -0.03em;
}
.section-subtitle {
  font-size: var(--font-size-base);
  color: var(--color-gray);
  max-width: 560px;
  line-height: 1.8;
}
.section-header { margin-bottom: var(--space-16); }
.section-header.centered { text-align: center; }
.section-header.centered .section-subtitle { margin-inline: auto; }

.gold-line {
  width: 48px; height: 3px;
  background: linear-gradient(to right, var(--color-gold), var(--color-gold-dark));
  border-radius: var(--radius-full);
  margin-block: var(--space-5);
}
.section-header.centered .gold-line { margin-inline: auto; }

/* Section backgrounds */
.section--dark   { background: var(--color-bg); }
.section--mid    { background: var(--color-surface-1); }

/* Dot-grid background */
.section--dot-grid {
  background-color: var(--color-surface-3);
  background-image: radial-gradient(rgba(245,197,24,0.18) 1px, transparent 1px);
  background-size: 30px 30px;
}

/* Gold gradient top-border */
.section--gold-border {
  position: relative;
}
.section--gold-border::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent 0%, var(--color-gold) 50%, transparent 100%);
  pointer-events: none;
}

/* Subtle grid lines (for FAQ etc.) */
.section--grid-lines {
  background-color: #111;
  background-image:
    linear-gradient(var(--color-border-light) 1px, transparent 1px),
    linear-gradient(90deg, var(--color-border-light) 1px, transparent 1px);
  background-size: 40px 40px;
}

/* ── Scroll-to-top ────────────────────────────────────────── */
.scroll-top {
  position: fixed;
  bottom: var(--space-6);
  right: var(--space-6);
  width: 48px; height: 48px;
  background: var(--color-gold);
  color: var(--color-bg);
  border-radius: var(--radius-full);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  z-index: 900;
  opacity: 0;
  pointer-events: none;
  transform: translateY(20px);
  transition: opacity 0.3s ease, transform 0.3s ease,
              background 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 4px 20px rgba(245,197,24,0.4);
  border: none;
}
.scroll-top.visible {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}
.scroll-top:hover {
  background: var(--color-gold-light);
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(245,197,24,0.5);
}
.scroll-top svg { width: 20px; height: 20px; }

/* ── Navigation ───────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  transition: background 0.4s ease, backdrop-filter 0.4s ease,
              border-color 0.4s ease, box-shadow 0.4s ease;
  border-bottom: 1px solid transparent;
}
.nav.scrolled,
body:not(.page-home) .nav {
  background: rgba(13,13,13,0.92);
  backdrop-filter: blur(24px) saturate(1.3);
  -webkit-backdrop-filter: blur(24px) saturate(1.3);
  border-bottom-color: var(--color-border);
  box-shadow: 0 4px 40px rgba(0,0,0,0.6);
}
.nav__inner {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--space-6);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-8);
}

/* Logo */
.nav__logo {
  display: flex; align-items: center; gap: var(--space-3);
  flex-shrink: 0; text-decoration: none;
}
.nav__logo-mark {
  width: 40px; height: 40px;
  background: var(--color-gold);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem; font-weight: 900;
  color: var(--color-bg); letter-spacing: -0.05em; flex-shrink: 0;
}
.nav__logo-text { display: flex; flex-direction: column; line-height: 1; }
.nav__logo-name { font-size: 1rem; font-weight: 800; color: var(--color-white); letter-spacing: -0.02em; }
.nav__logo-sub  { font-size: 0.6rem; font-weight: 500; color: var(--color-gray); letter-spacing: 0.12em; text-transform: uppercase; }

/* Desktop menu */
.nav__menu { display: flex; align-items: center; gap: var(--space-2); }

.nav__link {
  padding: var(--space-2) var(--space-4);
  font-size: 0.875rem; font-weight: 500;
  color: var(--color-gray-light);
  border-radius: var(--radius-md);
  transition: color var(--transition-fast), background var(--transition-fast);
  white-space: nowrap;
  position: relative;
}

/* Gold underline from center */
.nav__link::after {
  content: '';
  position: absolute;
  bottom: 2px; left: 50%;
  width: 0; height: 2px;
  background: var(--color-gold);
  border-radius: var(--radius-full);
  transform: translateX(-50%);
  transition: width 0.3s cubic-bezier(0.4,0,0.2,1);
}
.nav__link:hover { color: var(--color-white); background: rgba(255,255,255,0.05); }
.nav__link:hover::after { width: 70%; }
.nav__link.active { color: var(--color-gold); }
.nav__link.active::after { width: 70%; }

/* CTA button */
.nav__cta {
  margin-left: var(--space-4);
  padding: var(--space-2) var(--space-5);
  background: var(--color-gold);
  color: var(--color-bg);
  font-size: 0.85rem; font-weight: 700;
  border-radius: var(--radius-md);
  white-space: nowrap;
  position: relative; overflow: hidden;
  transition: background var(--transition-fast), transform var(--transition-fast), box-shadow var(--transition-fast);
}
.nav__cta::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 60%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
  transition: none;
}
.nav__cta:hover { background: var(--color-gold-light); transform: translateY(-1px); box-shadow: var(--shadow-gold-sm); }
.nav__cta:hover::after { animation: btnShine 0.55s ease-in-out forwards; }

/* Hamburger */
.nav__hamburger {
  display: none;
  flex-direction: column; justify-content: center; align-items: center;
  width: 44px; height: 44px;
  gap: 5px; cursor: pointer;
  border-radius: 10px;
  background: rgba(245,197,24,0.08);
  border: 1px solid rgba(245,197,24,0.25);
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.2s ease;
}
.nav__hamburger:hover {
  background: rgba(245,197,24,0.15);
  border-color: rgba(245,197,24,0.5);
  transform: scale(1.05);
}
.nav__hamburger.open {
  background: rgba(245,197,24,0.18);
  border-color: rgba(245,197,24,0.6);
}
.nav__hamburger span {
  display: block; height: 2px;
  background: #F5C518; border-radius: var(--radius-full);
  transition: transform 0.35s ease, opacity 0.35s ease, width 0.35s ease;
  transform-origin: center;
}
.nav__hamburger span:nth-child(1) { width: 20px; }
.nav__hamburger span:nth-child(2) { width: 14px; align-self: flex-end; margin-right: 12px; }
.nav__hamburger span:nth-child(3) { width: 20px; }
.nav__hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); width: 20px; }
.nav__hamburger.open span:nth-child(2) { opacity: 0; width: 0; }
.nav__hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); width: 20px; }

/* Mobile menu */
.nav__mobile {
  display: flex;
  flex-direction: column; align-items: stretch; justify-content: flex-start;
  position: fixed; top: var(--nav-height); left: 0; right: 0; bottom: 0;
  background: rgba(10,10,10,0.97);
  backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
  padding: 32px 28px 40px;
  gap: 0; z-index: 999;
  opacity: 0; visibility: hidden; pointer-events: none;
  transform: translateY(-8px);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
  overflow-y: auto;
  border-top: 1px solid rgba(245,197,24,0.15);
}
.nav__mobile.open {
  opacity: 1; visibility: visible; pointer-events: all;
  transform: translateY(0);
}

/* Main links */
.nav__mobile .nav__link {
  font-size: 1.35rem; font-weight: 700;
  color: #fff;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  border-radius: 0;
  white-space: normal;
  transition: color 0.2s ease;
}
.nav__mobile .nav__link::after { display: none; }
.nav__mobile .nav__link:hover { color: #F5C518; background: transparent; }

/* Sub-links (Leistungen) */
.nav__mobile .nav__link[style*="opacity"] {
  font-size: 0.95rem !important;
  font-weight: 500;
  color: rgba(255,255,255,0.55) !important;
  padding: 9px 0 9px 20px !important;
  border-bottom: none;
  opacity: 1 !important;
  position: relative;
}
.nav__mobile .nav__link[style*="opacity"]::before {
  content: '';
  position: absolute; left: 0; top: 50%;
  transform: translateY(-50%);
  width: 8px; height: 1px;
  background: rgba(245,197,24,0.5);
}
.nav__mobile .nav__link[style*="opacity"]:hover { color: #F5C518 !important; }

/* CTA button in mobile menu */
.nav__mobile .nav__cta {
  margin: 28px 0 0;
  text-align: center;
  padding: 18px 0;
  font-size: 1rem; font-weight: 700;
  border-radius: 10px;
  box-shadow: 0 0 24px rgba(245,197,24,0.3);
}

/* Gold separator before CTA */
.nav__mobile .nav__cta::before {
  display: none;
}

/* ── Nav Dropdown ─────────────────────────────────────────── */
.nav__item { position: relative; list-style: none; }
.nav__item--dropdown { position: relative; }
.nav__dropdown-toggle {
  display: flex; align-items: center; gap: 4px; cursor: pointer;
}
.nav__dropdown-toggle .nav__chevron {
  font-size: 10px; transition: transform 0.2s ease;
  display: inline-block; line-height: 1;
}
.nav__item--dropdown:hover .nav__chevron { transform: rotate(180deg); }
.nav__dropdown-menu {
  position: absolute;
  top: calc(100% + 4px);
  left: 50%;
  transform: translateX(-50%);
  background: rgba(18,18,18,0.97);
  border: 1px solid rgba(245,197,24,0.18);
  border-radius: 12px;
  padding: 8px;
  min-width: 230px;
  opacity: 0;
  pointer-events: none;
  transform: translateX(-50%) translateY(-6px);
  transition: opacity 0.2s ease, transform 0.2s ease;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.5);
  z-index: 1100;
}
/* Unsichtbare Brücke: schliesst den Spalt zwischen Toggle und Dropdown */
.nav__dropdown-menu::before {
  content: '';
  position: absolute;
  top: -12px;
  left: 0; right: 0;
  height: 12px;
}
.nav__item--dropdown:hover .nav__dropdown-menu,
.nav__item--dropdown:focus-within .nav__dropdown-menu {
  opacity: 1;
  pointer-events: all;
  transform: translateX(-50%) translateY(0);
}
.nav__dropdown-link {
  display: block;
  padding: 9px 14px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 500;
  color: #bbb;
  text-decoration: none;
  transition: background 0.15s, color 0.15s;
  white-space: nowrap;
}
.nav__dropdown-link:hover { background: rgba(245,197,24,0.1); color: #F5C518; }

/* ── Buttons ──────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: var(--space-2);
  padding: var(--space-4) var(--space-8);
  font-size: var(--font-size-sm); font-weight: 700;
  border-radius: var(--radius-md);
  transition: transform var(--transition-base), box-shadow var(--transition-base),
              background var(--transition-fast), border-color var(--transition-fast),
              color var(--transition-fast);
  white-space: nowrap; letter-spacing: 0.01em;
  position: relative; overflow: hidden;
}
/* Shine pseudo-element */
.btn::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 60%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.22), transparent);
}
.btn:hover::after { animation: btnShine 0.55s ease-in-out forwards; }

@keyframes btnShine {
  0%   { left: -60%; }
  100% { left: 120%; }
}

.btn--primary {
  background: var(--color-gold); color: var(--color-bg);
  border: 2px solid var(--color-gold);
}
.btn--primary:hover {
  background: var(--color-gold-light); border-color: var(--color-gold-light);
  transform: translateY(-3px); box-shadow: 0 10px 30px rgba(245,197,24,0.35);
}
.btn--secondary {
  background: transparent; color: var(--color-white);
  border: 2px solid var(--color-gold);
}
.btn--secondary:hover {
  background: rgba(245,197,24,0.08);
  transform: translateY(-3px); box-shadow: var(--shadow-gold-sm);
}
.btn--ghost {
  background: rgba(255,255,255,0.05); color: var(--color-white);
  border: 2px solid var(--color-border);
}
.btn--ghost:hover {
  border-color: var(--color-gold); color: var(--color-gold);
  background: rgba(245,197,24,0.06); transform: translateY(-2px);
}
.btn--lg { padding: var(--space-5) var(--space-10); font-size: var(--font-size-base); }
.btn--sm { padding: var(--space-2) var(--space-5); font-size: var(--font-size-xs); }
.btn svg { width: 18px; height: 18px; flex-shrink: 0; transition: transform var(--transition-base); }
.btn:hover svg { transform: translateX(4px); }

/* CTA section button overrides */
.btn--cta-primary {
  background: var(--color-bg); color: var(--color-white);
  border: 2px solid var(--color-bg);
}
.btn--cta-primary:hover {
  background: var(--color-surface-2); border-color: var(--color-surface-2);
  transform: translateY(-3px); box-shadow: 0 12px 40px rgba(0,0,0,0.4);
}
.btn--cta-secondary {
  background: transparent; color: var(--color-bg);
  border: 2px solid rgba(0,0,0,0.3);
}
.btn--cta-secondary:hover {
  border-color: var(--color-bg); background: rgba(0,0,0,0.08);
  transform: translateY(-3px);
}

/* ══════════════════════════════════════════════════════════════
   HERO — Ground-up rewrite
   z-index layers:
     1  blobs (ambient light)
     2  cursor glow overlay
     3  background floating cards (decorative)
     4  hero-content + bento grid
     9999  cursor dot (fixed)
   ══════════════════════════════════════════════════════════════ */

/* ── Base ─────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #0D0D0D;
  padding-top: 120px;
  padding-bottom: 80px;
}
/* Schwarzer Overlay über Prism, unter allem anderen */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.82);
  z-index: 0;
  pointer-events: none;
}

/* ── 1. Blobs ─────────────────────────────────────────────── */
.hero-blob {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
  will-change: transform;
}
.hero-blob--1 {
  width: 900px; height: 900px;
  background: radial-gradient(circle, rgba(245,197,24,0.13) 0%, transparent 70%);
  filter: blur(80px);
  top: -25%; left: -15%;
  animation: blobMove1 28s ease-in-out infinite;
}
.hero-blob--2 {
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(180,140,10,0.10) 0%, transparent 70%);
  filter: blur(80px);
  bottom: -20%; right: -10%;
  animation: blobMove2 34s ease-in-out infinite;
}
.hero-blob--3 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(245,197,24,0.07) 0%, transparent 70%);
  filter: blur(80px);
  top: 35%; right: 8%;
  animation: blobMove3 22s linear infinite;
}

@keyframes blobMove1 {
  0%   { transform: translate(0, 0) scale(1); }
  25%  { transform: translate(70px, 50px) scale(1.05); }
  50%  { transform: translate(30px, 110px) scale(0.97); }
  75%  { transform: translate(-50px, 50px) scale(1.03); }
  100% { transform: translate(0, 0) scale(1); }
}
@keyframes blobMove2 {
  0%   { transform: translate(0, 0); }
  33%  { transform: translate(-70px, -50px); }
  66%  { transform: translate(-30px, -110px); }
  100% { transform: translate(0, 0); }
}
@keyframes blobMove3 {
  0%   { transform: rotate(0deg) translateX(70px) rotate(0deg); }
  100% { transform: rotate(360deg) translateX(70px) rotate(-360deg); }
}

/* ── 2. Cursor glow overlay ───────────────────────────────── */
.hero-cursor-glow {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: radial-gradient(circle 380px at var(--cx, 50%) var(--cy, 50%),
    rgba(245,197,24,0.06) 0%, transparent 70%);
  transition: background 0.1s ease;
}

/* Fixed dot that follows cursor */
.cursor-dot-glow {
  position: fixed;
  width: 250px; height: 250px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  background: radial-gradient(circle, rgba(245,197,24,0.12) 0%, transparent 65%);
  transform: translate(-50%, -50%);
  left: -999px; top: -999px;
  transition: left 0.06s linear, top 0.06s linear;
  mix-blend-mode: screen;
}

/* ── 3. Background floating cards ─────────────────────────── */
.hero-bg-card {
  position: absolute;
  z-index: 3;
  background: rgba(18,18,18,0.80);
  border: 1px solid rgba(245,197,24,0.18);
  border-radius: 14px;
  padding: 14px 18px;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  pointer-events: none;
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s ease, transform 0.7s ease;
  box-shadow: 0 8px 32px rgba(0,0,0,0.45);
}
.hero-bg-card.card-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Positions + float animations */
.hero-bg-card--a {
  top: 14%; left: 2%;
  width: 160px;
  animation: hbcFloat1 5.5s ease-in-out infinite;
  transition-delay: 0.2s;
}
.hero-bg-card--b {
  top: 52%; left: 1.5%;
  width: 190px;
  animation: hbcFloat2 6.5s ease-in-out infinite;
  transition-delay: 0.5s;
}
.hero-bg-card--c {
  bottom: 14%; left: 2%;
  width: 200px;
  animation: hbcFloat3 7s ease-in-out infinite;
  transition-delay: 0.8s;
}
.hero-bg-card--d {
  top: 16%; right: 2%;
  width: 155px;
  animation: hbcFloat4 6s ease-in-out infinite;
  transition-delay: 0.35s;
}
.hero-bg-card--e {
  bottom: 18%; right: 2%;
  width: 170px;
  animation: hbcFloat5 5s ease-in-out infinite;
  transition-delay: 0.65s;
}

@keyframes hbcFloat1 { 0%,100%{transform:translateY(0)}  50%{transform:translateY(-10px)} }
@keyframes hbcFloat2 { 0%,100%{transform:translateY(8px)} 50%{transform:translateY(-8px)} }
@keyframes hbcFloat3 { 0%,100%{transform:translateY(0)}  50%{transform:translateY(-14px)} }
@keyframes hbcFloat4 { 0%,100%{transform:translateY(-6px)} 50%{transform:translateY(10px)} }
@keyframes hbcFloat5 { 0%,100%{transform:translateY(0)}  50%{transform:translateY(-12px)} }

/* BG card inner typography */
.hbcard__value {
  font-size: 20px; font-weight: 800; color: #fff; line-height: 1.1;
}
.hbcard__text {
  font-size: 10px; color: #777; margin-top: 3px; line-height: 1.4;
}
.hbcard__stars {
  font-size: 13px; color: #F5C518; margin-bottom: 2px;
}
.hbcard__name {
  font-size: 11px; font-weight: 700; color: #fff; line-height: 1.3;
}
.hbcard__verified {
  font-size: 9px; color: #555; margin-top: 2px;
}
.hbcard__sub {
  font-size: 10px; color: #777; margin-bottom: 3px; text-transform: uppercase; letter-spacing: 0.5px;
}
.hbcard__gauge {
  display: block; width: 80px; height: 46px; margin: 6px auto 0;
}
.hbcard__sparkline {
  display: block; width: 100%; margin-top: 6px;
}

/* ── 4. Hero content ──────────────────────────────────────── */
.hero-content {
  position: relative;
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 860px;
  width: 100%;
  padding-inline: 24px;
}

/* Label */
.hero-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 1.25rem;
  opacity: 0;
  animation: heroFadeIn 0.5s ease both 0.1s;
}

/* H1 */
.hero-h1 {
  display: flex;
  flex-direction: column;
  font-size: clamp(38px, 5.8vw, 80px);
  font-weight: 900;
  line-height: 1.06;
  letter-spacing: -0.04em;
  color: #fff;
  margin-bottom: 1.25rem;
}
.hero-h1-line {
  opacity: 0;
  display: block;
}
.hero-h1-line:nth-child(1) { animation: heroSlideUp 0.55s ease both 0.3s; }
.hero-h1-line:nth-child(2) { animation: heroSlideUp 0.55s ease both 0.48s; }
.hero-h1-line:nth-child(3) { animation: heroSlideUp 0.55s ease both 0.66s; }

/* Shimmering price line */
.hero-price {
  background: linear-gradient(90deg,
    #F5C518 0%, #FFF3A0 30%, #F5C518 55%, #FFF3A0 80%, #F5C518 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: heroSlideUp 0.55s ease both 0.66s, shimmerText 3s linear 1.5s infinite;
}

/* Subline */
.hero-sub {
  font-size: clamp(15px, 1.8vw, 18px);
  color: #888;
  margin-bottom: 2rem;
  font-weight: 400;
  opacity: 0;
  animation: heroFadeIn 0.5s ease both 0.85s;
}

/* CTA button */
.hero-btn {
  display: inline-block;
  background: #F5C518;
  color: #0D0D0D;
  font-size: 17px;
  font-weight: 700;
  padding: 17px 46px;
  border-radius: 4px;
  text-decoration: none;
  margin-bottom: 1.25rem;
  position: relative;
  overflow: hidden;
  opacity: 0;
  animation: heroFadeIn 0.5s ease both 1.0s, glowPulse 2.5s ease-in-out 2s infinite;
  box-shadow: 0 4px 24px rgba(245,197,24,0.25);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.hero-btn::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 60%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.22), transparent);
}
.hero-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 36px rgba(245,197,24,0.45);
}
.hero-btn:hover::after {
  animation: heroCtaShine 0.55s ease-in-out forwards;
}
@keyframes heroCtaShine {
  0%   { left: -60%; }
  100% { left: 120%; }
}

/* Trust bar */
.hero-trust {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.25rem;
  font-size: 12px;
  color: #555;
  font-weight: 500;
  opacity: 0;
  animation: heroFadeIn 0.5s ease both 1.15s;
}
.hero-trust span { display: flex; align-items: center; gap: 0.4rem; }

/* ── Shared entry keyframes ───────────────────────────────── */
@keyframes heroFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes heroSlideUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes shimmerText {
  0%   { background-position: 0% center; }
  100% { background-position: 200% center; }
}
@keyframes glowPulse {
  0%,100% { box-shadow: 0 4px 24px rgba(245,197,24,0.25); }
  50%     { box-shadow: 0 4px 40px rgba(245,197,24,0.55), 0 0 0 6px rgba(245,197,24,0.08); }
}

/* ── 4b. Bento grid ───────────────────────────────────────── */
.hero-bento {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 10px;
  width: 100%;
  max-width: 860px;
  margin-top: 2.5rem;
  opacity: 0;
  animation: heroFadeIn 0.6s ease both 1.35s;
}

/* Card base */
.bento-card {
  background: rgba(18,18,18,0.82);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 14px;
  padding: 16px 18px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 4px 20px rgba(0,0,0,0.35);
  overflow: hidden;
  position: relative;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.bento-card:hover {
  border-color: rgba(245,197,24,0.25);
  box-shadow: 0 8px 32px rgba(245,197,24,0.12);
}

/* Grid spans */
.bento-card--1 { grid-column: span 5; }
.bento-card--2 { grid-column: span 3; }
.bento-card--3 { grid-column: span 4; }
.bento-card--4 { grid-column: span 7; min-height: 130px; }
.bento-card--5 { grid-column: span 5; }

/* Card typography */
.bento-card__label {
  font-size: 9px; font-weight: 700; letter-spacing: 1.5px;
  text-transform: uppercase; color: #555; margin-bottom: 5px;
}
.bento-card__top {
  display: flex; align-items: baseline; gap: 8px; margin-bottom: 6px;
}
.bento-card__value {
  font-size: clamp(20px, 2.2vw, 26px); font-weight: 900; color: #fff; line-height: 1;
}
.bento-card__value--gold { color: #F5C518; }
.bento-card__badge {
  font-size: 10px; color: #4ade80;
  background: rgba(74,222,128,0.1); border-radius: 4px; padding: 2px 6px;
}
.bento-card__sub { font-size: 10px; color: #555; margin-top: 3px; }
.bento-card__sub--gold { color: rgba(245,197,24,0.75); }
.bento-card__foot { font-size: 10px; color: #444; margin-top: 5px; }

/* ── Bar chart (Card 1) ───────────────────────────────────── */
.bento-bars {
  display: flex;
  align-items: flex-end;
  height: 48px;
  gap: 4px;
  margin-top: 8px;
}
.bento-bar {
  flex: 1;
  height: var(--bh, 40%);
  background: rgba(245,197,24,0.55);
  border-radius: 3px 3px 0 0;
  transform-origin: bottom center;
  transform: scaleY(0);
  animation: bentoBarUp 0.7s ease-out both;
  animation-play-state: paused;
}
.bento-bar--peak { background: #F5C518; }
.bento-bar:nth-child(1) { animation-delay: 0.0s; }
.bento-bar:nth-child(2) { animation-delay: 0.08s; }
.bento-bar:nth-child(3) { animation-delay: 0.16s; }
.bento-bar:nth-child(4) { animation-delay: 0.24s; }
.bento-bar:nth-child(5) { animation-delay: 0.32s; }
.bento-bar:nth-child(6) { animation-delay: 0.40s; }
.bento-bar:nth-child(7) { animation-delay: 0.48s; }
@keyframes bentoBarUp {
  from { transform: scaleY(0); }
  to   { transform: scaleY(1); }
}

/* ── Flat line (Card 2) ───────────────────────────────────── */
.bento-flatline {
  height: 2px;
  background: linear-gradient(90deg, #F5C518, #F8D54E);
  border-radius: 2px;
  margin-top: 10px;
  width: 0%;
  animation: lineGrow 1.2s ease-out both;
  animation-play-state: paused;
}
@keyframes lineGrow {
  from { width: 0%; }
  to   { width: 100%; }
}

/* ── Step dots (Card 3) ───────────────────────────────────── */
.bento-steps {
  margin-top: 10px;
}
.bento-steps__track {
  display: flex;
  align-items: center;
}
.bento-step-dot {
  width: 9px; height: 9px;
  border-radius: 50%;
  background: #F5C518;
  flex-shrink: 0;
  opacity: 0;
  animation: dotAppear 0.4s ease both;
  animation-play-state: paused;
}
.bento-step-line {
  flex: 1;
  height: 1px;
  background: rgba(245,197,24,0.25);
  opacity: 0;
  animation: dotAppear 0.4s ease both;
  animation-play-state: paused;
}
.bento-step-dot:nth-child(1) { animation-delay: 0.0s; }
.bento-step-line:nth-child(2) { animation-delay: 0.15s; }
.bento-step-dot:nth-child(3) { animation-delay: 0.30s; }
.bento-step-line:nth-child(4) { animation-delay: 0.45s; }
.bento-step-dot:nth-child(5) { animation-delay: 0.60s; }
.bento-step-line:nth-child(6) { animation-delay: 0.75s; }
.bento-step-dot:nth-child(7) { animation-delay: 0.90s; }
@keyframes dotAppear {
  from { opacity: 0; transform: scale(0.5); }
  to   { opacity: 1; transform: scale(1); }
}
.bento-steps__labels {
  display: flex;
  justify-content: space-between;
  margin-top: 5px;
  font-size: 8px;
  color: #555;
}

/* ── Area SVG (Card 4) ────────────────────────────────────── */
.bento-area {
  position: absolute;
  right: 0; bottom: 0;
  width: 55%; height: 80%;
  overflow: visible;
  pointer-events: none;
}
.bento-pulse {
  transform-box: fill-box;
  transform-origin: center;
  animation: bentoRing 2s ease-out 2.5s infinite;
}
@keyframes bentoRing {
  0%   { opacity: 0.8; transform: scale(1); }
  100% { opacity: 0;   transform: scale(3.5); }
}

/* ── Stair bars (Card 5) ──────────────────────────────────── */
.bento-stairs {
  display: flex;
  align-items: flex-end;
  height: 50px;
  gap: 5px;
  margin-top: 10px;
}
.bento-stair {
  flex: 1;
  height: var(--sh, 40%);
  background: var(--sc, #333);
  border-radius: 4px 4px 0 0;
  transform-origin: bottom center;
  transform: scaleY(0);
  animation: bentoBarUp 0.7s ease-out both;
  animation-play-state: paused;
}
.bento-stair--top { box-shadow: 0 0 12px rgba(245,197,24,0.4); }
.bento-stair:nth-child(1) { animation-delay: 0.05s; }
.bento-stair:nth-child(2) { animation-delay: 0.15s; }
.bento-stair:nth-child(3) { animation-delay: 0.25s; }
.bento-stair:nth-child(4) { animation-delay: 0.35s; }
.bento-stair:nth-child(5) { animation-delay: 0.45s; }

/* ── Scroll indicator ─────────────────────────────────────── */
.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  font-size: 18px;
  color: #444;
  animation: arrowBounce 2s ease-in-out infinite;
}
@keyframes arrowBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(8px); }
}

/* ── Stats Section ────────────────────────────────────────── */
.stats {
  padding-block: var(--space-20);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  background: var(--color-surface-1);
}
.stats__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: var(--space-8);
  text-align: center;
}
.stats__item { display: flex; flex-direction: column; align-items: center; gap: var(--space-2); }
.stats__number {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900; color: var(--color-gold);
  letter-spacing: -0.05em; line-height: 1;
}
.stats__suffix { font-size: clamp(1.4rem, 3vw, 2.2rem); color: var(--color-gold); }
.stats__label  { font-size: var(--font-size-sm); font-weight: 500; color: var(--color-gray); letter-spacing: 0.05em; }
.stats__divider { width: 1px; background: var(--color-border); align-self: stretch; }

/* ── Marquee — Logo Band ──────────────────────────────────── */
.marquee-section {
  padding-block: var(--space-8);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  background: var(--color-surface-1);
  overflow: hidden;
}
.marquee-label {
  text-align: center;
  font-size: var(--font-size-xs); font-weight: 600;
  color: var(--color-gray); letter-spacing: 0.1em;
  text-transform: uppercase; margin-bottom: var(--space-6);
}
.marquee-track {
  overflow: hidden; position: relative;
  mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
}
.marquee-inner {
  display: flex; align-items: center; gap: 56px;
  width: max-content;
  animation: marqueeLeft 40s linear infinite;
}
.marquee-inner:hover { animation-play-state: paused; }

@keyframes marqueeLeft {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .marquee-inner { animation: none; }
}

/* Logo items */
.marquee-logo {
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  height: 48px;
}
.marquee-logo img {
  height: 100%;
  width: auto;
  max-width: 160px;
  object-fit: contain;
  opacity: 0.55;
  filter: brightness(0) invert(1);
  transition: opacity 0.25s ease, filter 0.25s ease;
}
.marquee-logo img:hover {
  opacity: 1;
  filter: none;
}

/* ── Problem Section ──────────────────────────────────────── */
.problem { background: var(--color-surface-1); }
.problem__grid { display: grid; grid-template-columns: repeat(3,1fr); gap: var(--space-5); margin-top: var(--space-10); }
.problem-card {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  display: flex; flex-direction: column; gap: var(--space-3);
  position: relative; overflow: hidden;
}
.problem-card__icon {
  width: 40px; height: 40px;
  background: rgba(239,68,68,0.1);
  border: 1px solid rgba(239,68,68,0.25);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  color: #ef4444; font-size: 1.1rem; font-weight: 800;
}
.problem-card__text { font-size: var(--font-size-base); font-weight: 600; color: var(--color-white); line-height: 1.4; }
.problem__transition {
  margin-top: var(--space-12);
  text-align: center;
  font-size: var(--font-size-base); font-weight: 600; color: var(--color-gold);
  display: flex; align-items: center; justify-content: center; gap: var(--space-3);
}
.problem__transition::before,
.problem__transition::after {
  content: ''; flex: 1; max-width: 120px; height: 1px;
  background: linear-gradient(to right, transparent, rgba(245,197,24,0.4));
}
.problem__transition::after { background: linear-gradient(to left, transparent, rgba(245,197,24,0.4)); }

/* ── Paket Card (dot-grid section) ───────────────────────── */
.paket { background: var(--color-surface-3); }
.paket__card {
  max-width: 720px; margin-inline: auto;
  background: rgba(20,20,20,0.85);
  border: 2px solid var(--color-gold);
  border-radius: var(--radius-2xl);
  overflow: hidden;
  box-shadow: var(--shadow-gold-md), var(--shadow-deep);
  backdrop-filter: blur(10px);
}
.paket__card-header {
  background: rgba(245,197,24,0.06);
  border-bottom: 1px solid rgba(245,197,24,0.2);
  padding: var(--space-8) var(--space-10);
  display: flex; align-items: center;
  justify-content: space-between; flex-wrap: wrap; gap: var(--space-4);
}
.paket__price { display: flex; align-items: baseline; gap: var(--space-2); }
.paket__price-amount {
  font-size: clamp(2.5rem, 6vw, 3.5rem);
  font-weight: 900; color: var(--color-gold);
  letter-spacing: -0.04em; line-height: 1;
}
.paket__price-unit { font-size: var(--font-size-base); font-weight: 500; color: var(--color-gray); }
.paket__badge {
  display: inline-flex; align-items: center; gap: var(--space-2);
  padding: var(--space-2) var(--space-4);
  background: rgba(34,197,94,0.1);
  border: 1px solid rgba(34,197,94,0.3);
  border-radius: var(--radius-full);
  font-size: var(--font-size-xs); font-weight: 700; color: #4ade80;
}
.paket__card-body { padding: var(--space-8) var(--space-10); display: flex; flex-direction: column; gap: var(--space-5); }
.paket__item {
  display: flex; align-items: flex-start; gap: var(--space-4);
  padding-bottom: var(--space-5); border-bottom: 1px solid var(--color-border);
}
.paket__item:last-of-type { border-bottom: none; padding-bottom: 0; }
.paket__check {
  width: 28px; height: 28px;
  background: rgba(245,197,24,0.12); border: 1px solid rgba(245,197,24,0.3);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  color: var(--color-gold); font-size: 0.85rem; font-weight: 800;
  flex-shrink: 0; margin-top: 2px;
}
.paket__item-title { font-size: var(--font-size-base); font-weight: 700; color: var(--color-white); margin-bottom: var(--space-1); }
.paket__item-text  { font-size: var(--font-size-sm); color: var(--color-gray); line-height: 1.65; }
.paket__card-footer {
  padding: var(--space-6) var(--space-10) var(--space-8);
  border-top: 1px solid var(--color-border); text-align: center;
}
.paket__card-footer .btn { width: 100%; justify-content: center; }

/* ── Vorteile ─────────────────────────────────────────────── */
.vorteile { background: var(--color-surface-1); }
.vorteile__grid { display: grid; grid-template-columns: repeat(5,1fr); gap: var(--space-5); }
.vorteil-card {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  display: flex; flex-direction: column; gap: var(--space-3);
  position: relative; overflow: hidden;
  transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  transform-style: preserve-3d;
}
.vorteil-card:hover {
  border-color: rgba(245,197,24,0.5);
  box-shadow: var(--shadow-gold-sm), var(--shadow-card);
}
.vorteil-card__icon  { font-size: 1.8rem; line-height: 1; }
.vorteil-card__title { font-size: var(--font-size-base); font-weight: 700; color: var(--color-white); }
.vorteil-card__text  { font-size: var(--font-size-xs); color: var(--color-gray); line-height: 1.7; }

/* ── Prozess ──────────────────────────────────────────────── */
.prozess { background: var(--color-bg); }
.prozess__steps {
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 0; position: relative; margin-top: var(--space-12);
}
.prozess__steps::before {
  content: '';
  position: absolute;
  top: 27px; left: calc(12.5% + 16px); right: calc(12.5% + 16px);
  height: 2px;
  background: linear-gradient(to right, var(--color-gold) 0%, rgba(245,197,24,0.15) 100%);
  z-index: 0;
}
.prozess__step {
  display: flex; flex-direction: column; align-items: center;
  text-align: center; padding: 0 var(--space-4);
  position: relative; z-index: 1;
}
.prozess__step-num {
  width: 56px; height: 56px;
  background: var(--color-bg);
  border: 2px solid var(--color-gold); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: var(--font-size-base); font-weight: 900; color: var(--color-gold);
  margin-bottom: var(--space-6);
  box-shadow: 0 0 0 6px var(--color-bg), var(--shadow-gold-sm);
}
.prozess__step-title { font-size: var(--font-size-base); font-weight: 700; color: var(--color-white); margin-bottom: var(--space-3); }
.prozess__step-text  { font-size: var(--font-size-xs); color: var(--color-gray); line-height: 1.7; margin-bottom: var(--space-3); }
.prozess__step-time  {
  display: inline-flex; align-items: center; gap: var(--space-1);
  padding: var(--space-1) var(--space-3);
  background: rgba(245,197,24,0.08); border: 1px solid rgba(245,197,24,0.2);
  border-radius: var(--radius-full);
  font-size: 0.7rem; font-weight: 600; color: var(--color-gold);
}

/* ── Vergleich ────────────────────────────────────────────── */
.vergleich { background: var(--color-surface-1); }
.vergleich__table {
  display: grid; grid-template-columns: 1fr 1fr;
  border-radius: var(--radius-xl); overflow: hidden;
  border: 1px solid var(--color-border);
  margin-bottom: var(--space-8);
}
.vergleich__col { display: flex; flex-direction: column; }
.vergleich__col--left { border-right: 1px solid var(--color-border); }

/* Column headers */
.vergleich__col-header {
  padding: var(--space-6) var(--space-8);
  background: var(--color-surface-2);
  border-bottom: 1px solid var(--color-border);
  display: flex; flex-direction: column; gap: var(--space-2);
}
.vergleich__col-header--bad  { border-top: 3px solid #ef4444; }
.vergleich__col-header--good { background: rgba(245,197,24,0.08); border-top: 3px solid var(--color-gold); border-bottom: 2px solid var(--color-gold); }
.vergleich__col-title { font-size: var(--font-size-base); font-weight: 700; color: var(--color-white); }
.vergleich__col-subtitle { font-size: 12px; font-weight: 500; }
.vergleich__col-subtitle--bad  { color: #f87171; opacity: 0.85; }
.vergleich__col-subtitle--good { color: var(--color-gold); opacity: 0.85; }

.vergleich__popular {
  display: inline-flex;
  padding: var(--space-1) var(--space-3);
  background: var(--color-gold); color: var(--color-bg);
  border-radius: var(--radius-full);
  font-size: 0.62rem; font-weight: 800; letter-spacing: 0.08em;
  text-transform: uppercase; width: fit-content;
}

/* Rows */
.vergleich__row {
  display: flex; align-items: flex-start; gap: var(--space-3);
  padding: var(--space-4) var(--space-8);
  border-bottom: 1px solid var(--color-border);
  font-size: var(--font-size-sm);
}
.vergleich__row:last-child { border-bottom: none; }
.vergleich__row--bad  { background: transparent; }
.vergleich__row--good { background: rgba(74,222,128,0.02); }
.vergleich__icon--no  { color: #ef4444; font-weight: 800; flex-shrink: 0; margin-top: 1px; }
.vergleich__icon--yes { color: #4ade80; font-weight: 800; flex-shrink: 0; margin-top: 1px; }

.vergleich__row-content { display: flex; flex-direction: column; gap: 3px; }
.vergleich__row-main    { font-size: var(--font-size-sm); color: var(--color-white); line-height: 1.45; }
.vergleich__row--bad .vergleich__row-main { color: var(--color-gray); }
.vergleich__row-sub     { font-size: 12px; opacity: 0.7; line-height: 1.3; }
.vergleich__row-sub--bad  { color: #f87171; }
.vergleich__row-sub--good { color: #a8824c; }

/* Actions + stats */
.vergleich__actions { display: flex; justify-content: center; gap: var(--space-4); flex-wrap: wrap; }
.vergleich__stats   { display: grid; grid-template-columns: repeat(3,1fr); gap: var(--space-5); margin-top: var(--space-10); text-align: center; }
.vergleich__stat {
  background: var(--color-bg); border: 1px solid var(--color-border);
  border-radius: var(--radius-lg); padding: var(--space-6);
}
.vergleich__stat-value {
  font-size: clamp(1.6rem,3.5vw,2.4rem); font-weight: 900; color: var(--color-gold);
  letter-spacing: -0.04em; line-height: 1; margin-bottom: var(--space-2);
  display: flex; align-items: baseline; justify-content: center; gap: 4px; flex-wrap: wrap;
}
.vergleich__stat-prefix { font-size: 0.55em; font-weight: 600; color: var(--color-gray); letter-spacing: 0; }
.vergleich__stat-label  { font-size: var(--font-size-xs); color: var(--color-gray); font-weight: 500; }

/* ── Referenzen Preview ───────────────────────────────────── */
.referenzen-preview { background: var(--color-bg); }
.ref-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: var(--space-5); }
.ref-card {
  background: var(--color-surface-1);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  text-decoration: none;
  position: relative;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  transform-style: preserve-3d;
}
.ref-card:hover { border-color: rgba(245,197,24,0.5); box-shadow: var(--shadow-gold-sm), var(--shadow-card); }
.ref-card__thumb {
  aspect-ratio: 16/9;
  background: var(--color-surface-2);
  display: flex; align-items: center; justify-content: center;
  font-size: 2.5rem; font-weight: 900;
  color: rgba(245,197,24,0.12);
  border-bottom: 1px solid var(--color-border);
  position: relative; overflow: hidden;
}
.ref-card__thumb img { width: 100%; height: 100%; object-fit: contain; object-position: top center; position: absolute; inset: 0; background: var(--color-surface-2); }
.ref-card__thumb-text { position: relative; z-index: 1; }
.ref-card__body   { padding: var(--space-5) var(--space-6) var(--space-6); }
.ref-card__tag    { font-size: var(--font-size-xs); font-weight: 600; color: var(--color-gold); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: var(--space-2); }
.ref-card__title  { font-size: var(--font-size-base); font-weight: 700; color: var(--color-white); margin-bottom: var(--space-2); line-height: 1.35; }
.ref-card__text   { font-size: var(--font-size-xs); color: var(--color-gray); line-height: 1.65; }
.ref-cta          { text-align: center; margin-top: var(--space-10); }

/* ── Erweiterungen — Bento Grid ───────────────────────────── */
.erweiterungen { background: var(--color-bg); }

.erw-section-sub {
  font-size: 13px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  color: #F5C518; margin-top: 12px; margin-bottom: 0;
}

.erw-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 16px;
  max-width: 1200px;
  margin-inline: auto;
}

/* Card base */
.erw-card {
  text-decoration: none;
  display: block;
  border: 1px solid #1E1E1E;
  border-radius: 16px;
  overflow: hidden;
  cursor: default;
  position: relative;
  min-height: 320px;
  transition: border-color 0.3s ease, transform 0.3s ease;
}
.erw-card::after {
  content: '';
  position: absolute; inset: 0;
  border-radius: 16px;
  background: radial-gradient(circle at 50% 50%, rgba(245,197,24,0.08) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
  z-index: 3;
}
.erw-card:hover { border-color: rgba(245,197,24,0.4); transform: translateY(-4px); }
.erw-card:hover::after { opacity: 1; }
.erw-card:hover .erw-card__img { transform: scale(1.06); }

/* Grid column spans */
.erw-card--wide   { grid-column: span 7; }
.erw-card--narrow { grid-column: span 5; }
.erw-card--full   { grid-column: span 12; min-height: 300px; }

/* Image area — fills entire card as background */
.erw-card__img-wrap {
  position: absolute; inset: 0;
  overflow: hidden;
  z-index: 0;
}

.erw-card__img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center; display: block;
  transition: transform 0.6s ease;
}

/* Gradient overlay: transparent top → near-black bottom */
.erw-card__img-fade {
  position: absolute; inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.08)  0%,
    rgba(0,0,0,0.22) 35%,
    rgba(0,0,0,0.72) 65%,
    rgba(0,0,0,0.94) 100%
  );
  pointer-events: none;
  z-index: 1;
}

/* Card 5 (full-width KI card): gradient left→right */
.erw-card--full .erw-card__img-fade {
  background: linear-gradient(
    to right,
    rgba(0,0,0,0.10)  0%,
    rgba(0,0,0,0.25) 35%,
    rgba(0,0,0,0.80) 65%,
    rgba(0,0,0,0.96) 100%
  );
}

/* Content area — pinned to bottom (or right for full card) */
.erw-card__body {
  position: absolute; bottom: 0; left: 0; right: 0;
  z-index: 2;
  padding: 28px;
  display: flex; flex-direction: column; gap: 8px;
}

/* Full card: body on right half */
.erw-card--full .erw-card__body {
  top: 0; left: auto;
  width: 50%;
  justify-content: center;
  padding: 40px 40px 40px 32px;
}

.erw-card__badge {
  font-size: 11px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  color: #F5C518;
}
.erw-card__title {
  font-size: 20px; font-weight: 700;
  color: #fff; line-height: 1.3;
}
.erw-card--wide .erw-card__title { font-size: 24px; }
.erw-card__desc {
  font-size: 14px; color: rgba(255,255,255,0.75); line-height: 1.6; margin: 0;
}
.erw-card__link {
  display: inline-block;
  margin-top: 8px;
  font-size: 14px; font-weight: 600;
  color: #F5C518; text-decoration: none;
  transition: opacity 0.2s ease;
}
.erw-card__link:hover { opacity: 0.7; }

/* ── Testimonials — Snap Scroll ───────────────────────────── */
.testimonials { background: var(--color-bg); }

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

/* On mobile: horizontal snap scroll */
@media (max-width: 768px) {
  .testimonials__grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: var(--space-4);
    padding-bottom: var(--space-4);
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  .testimonials__grid::-webkit-scrollbar { display: none; }
  .testimonial-card {
    min-width: 85vw;
    scroll-snap-align: center;
  }
}

.testimonial-card {
  background: var(--color-surface-1);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  position: relative;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
  transform-style: preserve-3d;
}
.testimonial-card::before {
  content: '\201C';
  position: absolute; top: var(--space-5); right: var(--space-6);
  font-size: 6rem; font-weight: 900;
  color: rgba(245,197,24,0.1); line-height: 1;
  font-family: Georgia, serif; pointer-events: none;
}
.testimonial-card:hover {
  border-color: rgba(245,197,24,0.35);
  box-shadow: var(--shadow-gold-sm);
}
.testimonial-card__stars { display: flex; gap: var(--space-1); margin-bottom: var(--space-4); }
.testimonial-card__star  { color: var(--color-gold); font-size: 1rem; }
.testimonial-card__text  {
  font-size: var(--font-size-sm); color: var(--color-gray-light);
  line-height: 1.8; margin-bottom: var(--space-6);
  font-style: italic; position: relative; z-index: 1;
}
.testimonial-card__author { display: flex; align-items: center; gap: var(--space-3); }
.testimonial-card__avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--color-surface-2);
  border: 2px solid var(--color-gold);
  overflow: hidden; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; font-weight: 700; color: var(--color-gold);
}
.testimonial-card__name { font-size: var(--font-size-sm); font-weight: 600; color: var(--color-white); }
.testimonial-card__role { font-size: var(--font-size-xs); color: var(--color-gray); }

/* Card glare overlay (JS-driven) */
.card-glare {
  position: absolute; inset: 0;
  border-radius: inherit;
  pointer-events: none;
  z-index: 10;
  transition: opacity 0.3s ease;
}

/* ── CTA Section — Dark Dramatic ─────────────────────────── */
.cta {
  background: #0D0D0D;
  padding-block: var(--space-24);
  position: relative;
}

/* Top / bottom gold gradient rules */
.cta__rule {
  position: absolute; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent 0%, #F5C518 50%, transparent 100%);
}
.cta__rule--top    { top: 0; }
.cta__rule--bottom { bottom: 0; }

/* Glowing bordered card */
.cta__inner {
  position: relative; z-index: 1;
  max-width: 1140px;
  margin-inline: auto;
  border: 1px solid rgba(245,197,24,0.3);
  border-radius: 16px;
  box-shadow: 0 0 60px rgba(245,197,24,0.15), 0 0 120px rgba(245,197,24,0.05);
  animation: ctaGlowPulse 3s ease-in-out infinite;
  padding: 72px 80px;
  display: grid;
  grid-template-columns: 55fr 45fr;
  gap: 64px;
  align-items: stretch;
}
@keyframes ctaGlowPulse {
  0%,100% { box-shadow: 0 0 60px rgba(245,197,24,0.15), 0 0 120px rgba(245,197,24,0.05); }
  50%      { box-shadow: 0 0 80px rgba(245,197,24,0.35), 0 0 160px rgba(245,197,24,0.12); }
}

/* LEFT: text content */
.cta__content { display: flex; flex-direction: column; align-items: flex-start; }
.cta__label {
  font-size: 12px; font-weight: 700; letter-spacing: 0.18em;
  text-transform: uppercase; color: #F5C518; margin-bottom: 20px;
}
.cta__title {
  font-size: clamp(36px, 5vw, 64px); font-weight: 900; line-height: 1.1;
  letter-spacing: -0.03em; color: #fff; margin-bottom: 0;
}
.cta__title-gold { color: #F5C518; }
.cta__sub {
  font-size: 16px; color: #888; margin-top: 16px; line-height: 1.65;
}
.cta__checks {
  list-style: none; padding: 0; margin: 24px 0 0;
  display: flex; flex-direction: column; gap: 8px;
}
.cta__checks li { font-size: 14px; color: #aaa; display: flex; align-items: center; gap: 8px; }
.cta__check { color: #F5C518; font-weight: 700; flex-shrink: 0; }

/* CTA button with pulsing glow */
.cta__btn {
  display: inline-block;
  margin-top: 32px;
  background: #F5C518;
  color: #000;
  font-size: 18px; font-weight: 800;
  padding: 20px 52px;
  border-radius: 6px;
  text-decoration: none;
  box-shadow: 0 0 30px rgba(245,197,24,0.5), 0 0 60px rgba(245,197,24,0.2);
  animation: ctaBtnGlow 2s ease-in-out infinite;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.cta__btn:hover {
  transform: scale(1.04);
  box-shadow: 0 0 50px rgba(245,197,24,0.75), 0 0 100px rgba(245,197,24,0.35);
  animation: none;
}
@keyframes ctaBtnGlow {
  0%,100% { box-shadow: 0 0 30px rgba(245,197,24,0.5), 0 0 60px rgba(245,197,24,0.2); }
  50%      { box-shadow: 0 0 50px rgba(245,197,24,0.8), 0 0 100px rgba(245,197,24,0.35); }
}
.cta__footnote { margin-top: 14px; font-size: 13px; color: #555; }

/* RIGHT: photo */
.cta__photo-wrap {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  line-height: 0;
  min-height: 460px;
}
.cta__photo {
  width: 100%; height: 100%;
  object-fit: cover; object-position: top center;
  border-radius: 12px;
  display: block;
  position: absolute; inset: 0;
}
.cta__photo-fade {
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 50%;
  background: linear-gradient(to bottom, transparent, #0D0D0D);
  pointer-events: none;
}

/* ── FAQ — grid lines background ─────────────────────────── */
.faq { }
.faq__list { max-width: 760px; margin-inline: auto; display: flex; flex-direction: column; gap: var(--space-3); }
.faq__item {
  background: rgba(20,20,20,0.9);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg); overflow: hidden;
  transition: border-color var(--transition-base);
}
.faq__item.open { border-color: rgba(245,197,24,0.35); }
.faq__trigger {
  width: 100%; padding: var(--space-5) var(--space-6);
  display: flex; align-items: center;
  justify-content: space-between; gap: var(--space-4);
  cursor: pointer; background: none; border: none;
  text-align: left; color: var(--color-white);
}
.faq__q { font-size: var(--font-size-base); font-weight: 600; color: var(--color-white); transition: color var(--transition-fast); line-height: 1.4; }
.faq__item.open .faq__q { color: var(--color-gold); }
.faq__trigger:hover .faq__q { color: var(--color-gold); }
.faq__icon {
  width: 28px; height: 28px;
  background: rgba(255,255,255,0.05); border: 1px solid var(--color-border);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--color-gray); font-size: 1rem; flex-shrink: 0;
  transition: transform var(--transition-base), background var(--transition-base),
              color var(--transition-fast), border-color var(--transition-fast);
}
.faq__item.open .faq__icon {
  transform: rotate(45deg);
  background: rgba(245,197,24,0.1); border-color: rgba(245,197,24,0.3); color: var(--color-gold);
}
.faq__body { max-height: 0; overflow: hidden; transition: max-height 0.42s cubic-bezier(0.4,0,0.2,1); }
.faq__body-inner {
  padding: 0 var(--space-6) var(--space-5);
  font-size: var(--font-size-sm); color: var(--color-gray);
  line-height: 1.75;
  border-top: 1px solid var(--color-border); padding-top: var(--space-4);
}

/* ── Contact form ─────────────────────────────────────────── */
.contact { background: var(--color-surface-1); }
.contact__grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: var(--space-16); align-items: start; }
.contact__info { display: flex; flex-direction: column; gap: var(--space-8); }
.contact__detail { display: flex; align-items: flex-start; gap: var(--space-4); }
.contact__detail-icon {
  width: 44px; height: 44px;
  background: rgba(245,197,24,0.1); border: 1px solid rgba(245,197,24,0.2);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  color: var(--color-gold); font-size: 1.1rem; flex-shrink: 0;
}
.contact__detail-label { font-size: var(--font-size-xs); font-weight: 600; color: var(--color-gray); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: var(--space-1); }
.contact__detail-value { font-size: var(--font-size-sm); font-weight: 500; color: var(--color-white); }

/* Form elements */
.contact-form { display: flex; flex-direction: column; gap: var(--space-5); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-4); }
.form-group { display: flex; flex-direction: column; gap: var(--space-2); }
.form-label { font-size: var(--font-size-xs); font-weight: 600; color: var(--color-gray-light); letter-spacing: 0.05em; }
.form-label .required { color: var(--color-gold); margin-left: 2px; }
.form-input,
.form-textarea,
.form-select {
  width: 100%; padding: var(--space-4) var(--space-5);
  background: var(--color-surface-2); border: 1px solid var(--color-border);
  border-radius: var(--radius-md); color: var(--color-white);
  font-size: var(--font-size-sm);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast), background var(--transition-fast);
  outline: none; appearance: none;
}
.form-input::placeholder, .form-textarea::placeholder { color: var(--color-gray); }
.form-input:focus, .form-textarea:focus, .form-select:focus {
  border-color: var(--color-gold);
  box-shadow: 0 0 0 3px rgba(245,197,24,0.12);
  background: var(--color-surface-1);
}
.form-input.error, .form-textarea.error { border-color: #ef4444; box-shadow: 0 0 0 3px rgba(239,68,68,0.12); }
.form-error { font-size: var(--font-size-xs); color: #ef4444; display: none; }
.form-error.visible { display: block; }
.form-textarea { min-height: 140px; resize: vertical; }
.form-success { display: none; padding: var(--space-4) var(--space-5); background: rgba(34,197,94,0.1); border: 1px solid rgba(34,197,94,0.3); border-radius: var(--radius-md); color: #4ade80; font-size: var(--font-size-sm); font-weight: 500; }
.form-success.visible { display: block; }

/* ── Footer ───────────────────────────────────────────────── */
.footer { background: var(--color-surface-1); border-top: 1px solid var(--color-border); padding-top: var(--space-16); }
.footer__main { display: grid; grid-template-columns: 1.5fr repeat(3,1fr); gap: var(--space-10); padding-bottom: var(--space-16); border-bottom: 1px solid var(--color-border); }
.footer__brand { display: flex; flex-direction: column; gap: var(--space-4); }
.footer__brand-desc { font-size: var(--font-size-sm); color: var(--color-gray); line-height: 1.7; max-width: 280px; }
.footer__socials { display: flex; gap: var(--space-3); margin-top: var(--space-2); }
.footer__social {
  width: 38px; height: 38px;
  background: var(--color-surface-2); border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  color: var(--color-gray); text-decoration: none;
  transition: background var(--transition-fast), border-color var(--transition-fast),
              color var(--transition-fast), transform var(--transition-fast);
  overflow: hidden;
}
.footer__social:hover {
  background: rgba(245,197,24,0.1); border-color: rgba(245,197,24,0.4);
  color: var(--color-gold); transform: translateY(-2px);
}
/* Icon 360° rotation on hover */
.footer__social svg { transition: transform 0.5s cubic-bezier(0.4,0,0.2,1); }
.footer__social:hover svg { transform: rotate(360deg); }

.footer__col-title { font-size: var(--font-size-sm); font-weight: 700; color: var(--color-white); margin-bottom: var(--space-5); }
.footer__links { display: flex; flex-direction: column; gap: var(--space-3); }
.footer__link {
  font-size: var(--font-size-sm); color: var(--color-gray); text-decoration: none;
  transition: color var(--transition-fast), padding-left var(--transition-fast);
}
.footer__link:hover { color: var(--color-gold); padding-left: var(--space-2); }
.footer__bottom { padding-block: var(--space-6); display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: var(--space-4); }
.footer__copy { font-size: var(--font-size-xs); color: var(--color-gray); }
.footer__legal { display: flex; gap: var(--space-6); }
.footer__legal-link { font-size: var(--font-size-xs); color: var(--color-gray); text-decoration: none; transition: color var(--transition-fast); }
.footer__legal-link:hover { color: var(--color-gold); }

/* ── Cookie Banner ────────────────────────────────────────── */
.cookie-banner {
  position: fixed; bottom: var(--space-6); left: var(--space-6); right: var(--space-6);
  max-width: 520px;
  background: var(--color-surface-2); border: 1px solid var(--color-border);
  border-radius: var(--radius-xl); padding: var(--space-6);
  box-shadow: var(--shadow-deep); z-index: 2000;
  display: flex; flex-direction: column; gap: var(--space-4);
  transform: translateY(120%);
  transition: transform var(--transition-slow);
}
.cookie-banner.visible { transform: translateY(0); }
.cookie-banner__title { font-size: var(--font-size-base); font-weight: 700; color: var(--color-white); display: flex; align-items: center; gap: var(--space-2); }
.cookie-banner__text  { font-size: var(--font-size-xs); color: var(--color-gray); line-height: 1.7; }
.cookie-banner__text a { color: var(--color-gold); text-decoration: underline; text-underline-offset: 3px; }
.cookie-banner__actions { display: flex; gap: var(--space-3); flex-wrap: wrap; }
.cookie-banner__actions .btn { flex: 1; justify-content: center; min-width: 100px; }

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 1200px) {
  :root { --container-max: 100%; }
  .footer__main { grid-template-columns: 1fr repeat(3,1fr); gap: var(--space-8); }
}

@media (max-width: 1100px) {
  .vorteile__grid { grid-template-columns: repeat(3,1fr); }
  .erw-card--wide, .erw-card--narrow { grid-column: span 6; }
}

@media (max-width: 992px) {
  /* Hero responsive — 992px (tablet) */
  .hero-bg-card--b, .hero-bg-card--e { display: none; }
  .hero-bg-card--a { left: 1%; }
  .hero-bg-card--c { left: 1%; }
  .hero-bg-card--d { right: 1%; }
  .hero-bento { grid-template-columns: repeat(6, 1fr); }
  .bento-card--1 { grid-column: span 3; }
  .bento-card--2 { grid-column: span 3; }
  .bento-card--3 { grid-column: span 6; }
  .bento-card--4 { grid-column: span 4; }
  .bento-card--5 { grid-column: span 2; }
  .problem__grid   { grid-template-columns: 1fr; }
  .prozess__steps  { grid-template-columns: repeat(2,1fr); gap: var(--space-8); }
  .prozess__steps::before { display: none; }
  .vergleich__table { grid-template-columns: 1fr; }
  .vergleich__col--left { border-right: none; border-bottom: 1px solid var(--color-border); }
  .vergleich__stats { grid-template-columns: repeat(3,1fr); }
  .ref-grid { grid-template-columns: 1fr; }
  .contact__grid { grid-template-columns: 1fr; gap: var(--space-10); }
  .footer__main { grid-template-columns: 1fr 1fr; gap: var(--space-8); }
  .stats__grid  { grid-template-columns: repeat(2,1fr); }
  .stats__divider { display: none; }
}

@media (max-width: 768px) {
  :root { --space-24: 5rem; --space-20: 4rem; --space-16: 3rem; }
  .nav__menu, .nav__cta { display: none; }
  .nav__hamburger { display: flex; }
  /* Hero responsive — 768px (mobile) */
  .hero-bg-card { display: none; }
  .cursor-dot-glow { display: none; }
  .hero-bento { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .bento-card--1 { grid-column: span 1; }
  .bento-card--2 { grid-column: span 1; }
  .bento-card--3 { grid-column: span 2; }
  .bento-card--4 { grid-column: span 2; }
  .bento-card--5 { grid-column: span 2; }
  .cta__inner {
    grid-template-columns: 1fr;
    padding: 40px 28px;
    gap: 0;
  }
  .cta__photo-wrap { order: -1; height: 250px; margin-bottom: 36px; }
  .cta__photo { height: 250px; }
  .cta__content { align-items: flex-start; }
  .cta__btn { width: 100%; text-align: center; padding: 18px 28px; font-size: 16px; }
  .vorteile__grid { grid-template-columns: 1fr 1fr; }
  .erw-card--wide, .erw-card--narrow { grid-column: span 6; }
  .erw-card--full { min-height: 280px; }
  .erw-card--full .erw-card__body { top: auto; left: 0; right: 0; width: 100%; padding: 28px; }
  .erw-card--full .erw-card__img-fade {
    background: linear-gradient(to bottom, rgba(0,0,0,0.08) 0%, rgba(0,0,0,0.22) 35%, rgba(0,0,0,0.72) 65%, rgba(0,0,0,0.94) 100%);
  }
  .prozess__steps { grid-template-columns: 1fr; }
  .vergleich__stats { grid-template-columns: 1fr; }
  .footer__main   { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; text-align: center; }
  .footer__legal  { justify-content: center; }
  .form-row       { grid-template-columns: 1fr; }
  .paket__card-header { flex-direction: column; align-items: flex-start; }
  .paket__card-body, .paket__card-header, .paket__card-footer { padding-inline: var(--space-6); }
  .testimonials__grid { grid-template-columns: repeat(3,1fr); }
  .scroll-top { bottom: var(--space-4); right: var(--space-4); }
  .cookie-banner { bottom: var(--space-3); left: var(--space-3); right: var(--space-3); }
}

@media (max-width: 500px) {
  .vorteile__grid { grid-template-columns: 1fr; }
  .erw-card--wide, .erw-card--narrow, .erw-card--full { grid-column: span 12; }
  .erw-card--full .erw-card__body { top: auto; left: 0; right: 0; width: 100%; padding: 24px; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
}

/* ── Scroll Reveal — CSS-First (kein Flash) ───────────────── */
.problem-card,
.paket__card,
.vorteil-card,
.prozess__step,
.ref-card,
.erw-card,
.testimonial-card,
.faq__item {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.55s ease, transform 0.55s ease;
  transition-delay: var(--stagger-delay, 0ms);
}
.vergleich__col--left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.vergleich__col--right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.scroll-in {
  opacity: 1 !important;
  transform: none;
}

/* ── Page Loader ──────────────────────────────────────────── */
#page-loader {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: #080808;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  overflow: hidden;
}

/* Dot-Grid Hintergrund */
.loader-bg {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(245,197,24,0.09) 1px, transparent 1px);
  background-size: 36px 36px;
  animation: loaderBgBreath 3s ease-in-out infinite;
  pointer-events: none;
}
@keyframes loaderBgBreath {
  0%, 100% { opacity: 0.25; transform: scale(1); }
  50%       { opacity: 0.6;  transform: scale(1.04); }
}

/* Radar-Ringe */
.loader-rings {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.loader-ring {
  position: absolute;
  border-radius: 50%;
  border: 1.5px solid rgba(245,197,24,0.55);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%) scale(0);
  opacity: 0;
  animation: loaderRingOut 2.6s cubic-bezier(0.2, 0.6, 0.4, 1) infinite;
}
.loader-ring:nth-child(1) { width: 130px; height: 130px; animation-delay: 0.4s; }
.loader-ring:nth-child(2) { width: 220px; height: 220px; animation-delay: 1.0s; }
.loader-ring:nth-child(3) { width: 320px; height: 320px; animation-delay: 1.6s; }
@keyframes loaderRingOut {
  0%   { transform: translate(-50%,-50%) scale(0.2); opacity: 0.9; }
  100% { transform: translate(-50%,-50%) scale(1);   opacity: 0; }
}

/* Logo-Mark + Scan-Linie */
.loader-center {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.1rem;
}
.loader-mark {
  width: 110px; height: 110px;
  background: #fff;
  border-radius: 24px;
  display: flex; align-items: center; justify-content: center;
  padding: 18px;
  position: relative; overflow: hidden;
  animation: loaderMarkIn 0.8s cubic-bezier(0.34,1.56,0.64,1) 0.15s both;
}
.loader-mark__img {
  width: 100%; height: auto;
  display: block;
}
@keyframes loaderMarkIn {
  from { transform: scale(0.25) rotate(-15deg); opacity: 0; }
  to   { transform: scale(1)    rotate(0deg);   opacity: 1; }
}
/* Goldener Glow-Puls auf dem Logo-Bild */
.loader-mark__img {
  animation: loaderImgGlow 2s ease-out 1s infinite;
}
@keyframes loaderImgGlow {
  0%   { filter: drop-shadow(0 0 8px  rgba(245,197,24,0.4)); }
  50%  { filter: drop-shadow(0 0 28px rgba(245,197,24,0.75)); }
  100% { filter: drop-shadow(0 0 8px  rgba(245,197,24,0.4)); }
}
/* Scan-Linie */
.loader-mark__scan {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 40%;
  background: linear-gradient(180deg, rgba(255,255,255,0.4) 0%, transparent 100%);
  animation: loaderScan 1.8s ease-in-out 1s infinite;
}
@keyframes loaderScan {
  0%   { transform: translateY(-100%); opacity: 0; }
  15%  { opacity: 1; }
  85%  { opacity: 1; }
  100% { transform: translateY(250%);  opacity: 0; }
}

/* Brand-Text — ausgeblendet wenn Logo-Bild vorhanden */
.loader-brand {
  display: none;
}
@keyframes loaderFadeUp {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Springende Punkte */
.loader-dots {
  display: flex; gap: 7px; z-index: 2;
  animation: loaderFadeUp 0.5s ease 1.5s both;
}
.loader-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: rgba(245,197,24,0.4);
  animation: loaderDotBounce 1.1s ease-in-out infinite;
}
.loader-dot:nth-child(2) { animation-delay: 0.18s; }
.loader-dot:nth-child(3) { animation-delay: 0.36s; }
@keyframes loaderDotBounce {
  0%, 100% { transform: translateY(0);   background: rgba(245,197,24,0.3); }
  50%       { transform: translateY(-8px); background: #F5C518; }
}

/* Exit-Animation: Logo explodiert + Screen klappt zu */
#page-loader.loader-exit {
  animation: loaderExitAnim 0.8s cubic-bezier(0.76,0,0.24,1) forwards;
}
@keyframes loaderExitAnim {
  0%   { clip-path: inset(0 0 0 0); opacity: 1; }
  40%  { clip-path: inset(0 0 0 0); opacity: 1; }
  100% { clip-path: inset(50% 0 50% 0); opacity: 0; }
}
#page-loader.loader-exit .loader-mark {
  animation: loaderMarkExit 0.4s ease forwards;
}
@keyframes loaderMarkExit {
  0%   { transform: scale(1);   box-shadow: 0 0 0 0   rgba(245,197,24,0); }
  50%  { transform: scale(1.35); box-shadow: 0 0 60px 20px rgba(245,197,24,0.5); }
  100% { transform: scale(0);   box-shadow: 0 0 0 0   rgba(245,197,24,0); }
}

/* ══════════════════════════════════════════════════════════════
   DDA GRADIENT BACKGROUNDS — Dunkel mit Gold-Akzenten
   ══════════════════════════════════════════════════════════════ */

/* ── Body base ───────────────────────────────────────────────── */
body {
  background: #090909;
}

/* ── Gold separator line (reusable ::before) ─────────────────── */
.problem,
.vorteile,
.vergleich,
.referenzen-preview,
.erweiterungen,
.testimonials {
  position: relative;
}
.problem::before,
.vorteile::before,
.vergleich::before,
.referenzen-preview::before,
.erweiterungen::before,
.testimonials::before {
  content: '';
  position: absolute;
  top: 0; left: 15%; right: 15%;
  height: 1px;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(245,197,24,0.2) 30%,
    rgba(245,197,24,0.45) 50%,
    rgba(245,197,24,0.2) 70%,
    transparent 100%);
  pointer-events: none;
  z-index: 0;
}

/* ── Problem (Schmerzpunkte) — Radial links oben ────────────── */
.problem {
  background:
    radial-gradient(ellipse 55% 70% at 2% 20%,  rgba(245,197,24,0.065) 0%, transparent 60%),
    radial-gradient(ellipse 40% 50% at 98% 80%,  rgba(184,134,11,0.04)  0%, transparent 55%),
    linear-gradient(180deg, #141414 0%, #0D0D0D 100%);
}

/* ── Paket (Pricing) — Crown-Glow von oben ───────────────────── */
.paket {
  background:
    radial-gradient(ellipse 90% 55% at 50% -5%,  rgba(245,197,24,0.08) 0%, transparent 65%),
    radial-gradient(ellipse 50% 40% at 50% 110%, rgba(245,197,24,0.04) 0%, transparent 55%),
    #0F0F0F;
}

/* ── Vorteile — Radial rechts unten ──────────────────────────── */
.vorteile {
  background:
    radial-gradient(ellipse 65% 60% at 100% 100%, rgba(245,197,24,0.07)  0%, transparent 60%),
    radial-gradient(ellipse 45% 50% at 5%   20%,  rgba(184,134,11,0.045) 0%, transparent 55%),
    linear-gradient(170deg, #0D0D0D 0%, #141414 50%, #0D0D0D 100%);
}

/* ── Prozess — Glow entlang Verbindungslinie ─────────────────── */
.prozess {
  background:
    radial-gradient(ellipse 80% 35% at 50% 30%,  rgba(245,197,24,0.055) 0%, transparent 65%),
    #0D0D0D;
}

/* ── Marquee Logo-Band ───────────────────────────────────────── */
.marquee-section {
  background:
    linear-gradient(90deg,
      rgba(245,197,24,0.04) 0%,
      transparent 30%,
      transparent 70%,
      rgba(245,197,24,0.04) 100%),
    #0E0E0E;
  border-color: rgba(245,197,24,0.12);
}

/* ── Vergleich — Dual-Glow links+rechts ──────────────────────── */
.vergleich {
  background:
    radial-gradient(ellipse 50% 80% at 0%   40%, rgba(245,197,24,0.06) 0%, transparent 55%),
    radial-gradient(ellipse 50% 80% at 100% 60%, rgba(245,197,24,0.05) 0%, transparent 55%),
    linear-gradient(135deg, #141414 0%, #0D0D0D 60%, #111111 100%);
}

/* ── Referenzen Preview — Glow von oben zentriert ───────────── */
.referenzen-preview {
  background:
    radial-gradient(ellipse 75% 50% at 50% 0%,   rgba(245,197,24,0.07) 0%, transparent 60%),
    radial-gradient(ellipse 40% 30% at 80% 100%,  rgba(184,134,11,0.04) 0%, transparent 50%),
    linear-gradient(180deg, #0D0D0D 0%, #111111 100%);
}

/* ── Erweiterungen — Radial rechts, Hauch links ─────────────── */
.erweiterungen {
  background:
    radial-gradient(ellipse 70% 65% at 98% 50%,  rgba(245,197,24,0.07) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 0%  80%,   rgba(184,134,11,0.04) 0%, transparent 55%),
    linear-gradient(180deg, #0D0D0D 0%, #141414 50%, #0D0D0D 100%);
}

/* ── Testimonials — Warm links ───────────────────────────────── */
.testimonials {
  background:
    radial-gradient(ellipse 60% 70% at 8%  50%,  rgba(245,197,24,0.06) 0%, transparent 58%),
    radial-gradient(ellipse 40% 40% at 92% 20%,  rgba(184,134,11,0.04) 0%, transparent 50%),
    #0D0D0D;
}

/* ── FAQ — subtiler Boden-Glow ───────────────────────────────── */
.faq {
  background:
    radial-gradient(ellipse 65% 45% at 50% 110%, rgba(245,197,24,0.055) 0%, transparent 60%),
    radial-gradient(ellipse 45% 35% at 15% 20%,  rgba(184,134,11,0.04)  0%, transparent 55%),
    linear-gradient(180deg, #0D0D0D 0%, #111111 60%, #0D0D0D 100%);
}

/* ── Footer ──────────────────────────────────────────────────── */
.footer {
  background:
    radial-gradient(ellipse 100% 55% at 50% 0%,  rgba(245,197,24,0.06) 0%, transparent 55%),
    linear-gradient(180deg, #090909 0%, #060606 100%);
  border-top: 1px solid rgba(245,197,24,0.1);
}

/* ── Card gradient upgrades ──────────────────────────────────── */
.problem-card {
  background:
    linear-gradient(145deg,
      rgba(24,24,24,0.95) 0%,
      rgba(13,13,13,1)    100%);
  border-color: rgba(245,197,24,0.08);
}
.problem-card:hover {
  border-color: rgba(245,197,24,0.28);
  background:
    linear-gradient(145deg,
      rgba(28,24,14,0.98) 0%,
      rgba(13,13,13,1)    100%);
}

.vorteil-card {
  background:
    linear-gradient(160deg,
      rgba(22,22,22,0.95) 0%,
      rgba(13,13,13,1)    100%);
  box-shadow: 0 1px 0 0 rgba(245,197,24,0.06) inset;
}
.vorteil-card:hover {
  background:
    linear-gradient(160deg,
      rgba(28,26,16,0.98) 0%,
      rgba(13,13,13,1)    100%);
}

.testimonial-card {
  background:
    linear-gradient(145deg,
      rgba(22,22,22,0.9) 0%,
      rgba(13,13,13,1)   100%);
}

.erw-card {
  background:
    linear-gradient(145deg,
      rgba(22,22,22,0.9) 0%,
      rgba(10,10,10,1)   100%);
}

.ref-card {
  background:
    linear-gradient(145deg,
      rgba(22,22,22,0.95) 0%,
      rgba(13,13,13,1)    100%);
}

/* ── Stats bar — leichter Gradient ──────────────────────────── */
.stats {
  background:
    radial-gradient(ellipse 80% 100% at 50% 50%, rgba(245,197,24,0.04) 0%, transparent 70%),
    linear-gradient(180deg, #141414 0%, #111111 100%);
}

/* ── Dot-grid section (Paket backdrop) ───────────────────────── */
.section--dot-grid {
  background-color: #0F0F0F;
  background-image:
    radial-gradient(rgba(245,197,24,0.16) 1px, transparent 1px),
    radial-gradient(ellipse 80% 50% at 50% -10%, rgba(245,197,24,0.06) 0%, transparent 60%);
  background-size: 30px 30px, 100% 100%;
}
