/**
 * KI-Sicherheit.jetzt - Report Landing Page
 * Premium Design System - PayPal/Apple/SaaS Inspired
 * Warm, Modern, Editorial
 */

/* ==================== CSS VARIABLEN ==================== */
:root {
  /* Primary Color Family - Deep Navy */
  --color-primary: #003087;
  --color-primary-dark: #001f5c;
  --color-primary-darker: #00122e;
  --color-primary-light: #0070ba;
  --color-primary-hover: #0052a3;

  /* Warm Accent Palette */
  --color-warm-apricot: #FFD7B3;
  --color-warm-peach: #F8CDA2;
  --color-warm-sand: #EDE4D5;
  /* V8: Gold at 80% intensity for luxurious but subtle feel */
  --color-warm-gold: #F4C47D;
  --color-warm-gold-soft: rgba(244, 196, 125, 0.8);
  --color-warm-amber: #E8A849;
  --color-warm-glow: rgba(244, 196, 125, 0.12);
  --color-warm-offwhite: #FAF4EC;
  --color-warm-offwhite-2: #FFF6EE;

  /* Secondary Accent (Teal) */
  --color-teal: #169bd7;
  --color-teal-light: #4fb8e8;

  /* Text Colors - V8: Enhanced Contrast & Harmony */
  --color-text: #0e1525;
  --color-text-secondary: #151d2e;
  --color-text-muted: #475569;
  --color-text-light: #64748b;
  --color-text-inverse: #ffffff;

  /* Background Colors - Warmer */
  --color-bg: #ffffff;
  --color-bg-soft: #f8fafc;
  --color-bg-warm: #fdfbf8;
  --color-bg-cream: #faf8f5;
  --color-bg-dark: #001F54;
  --color-bg-dark-mid: #002A70;
  --color-bg-darker: #001A48;
  --color-card-bg: #ffffff;

  /* Ambient Background Colors */
  --color-ambient-blue: #F6F9FF;
  --color-ambient-warm: #FAF8F4;
  --color-dot-matrix: #DDE5F4;

  /* Borders */
  --color-border: #e2e8f0;
  --color-border-light: #f1f5f9;
  --color-border-warm: rgba(244, 196, 125, 0.3);

  /* Gradients - Enhanced */
  --gradient-hero: linear-gradient(165deg, #ffffff 0%, var(--color-ambient-blue) 30%, var(--color-ambient-warm) 60%, #ffffff 100%);
  --gradient-hero-warm: radial-gradient(ellipse at 70% 20%, rgba(255, 215, 179, 0.15) 0%, transparent 50%);
  --gradient-ambient-light: linear-gradient(180deg, var(--color-ambient-blue) 0%, var(--color-ambient-warm) 100%);
  --gradient-dark-section: linear-gradient(180deg, #001F54 0%, #002A70 50%, #001A48 100%);
  --gradient-warm-shape: radial-gradient(ellipse, rgba(255, 215, 179, 0.25) 0%, rgba(248, 205, 162, 0.12) 40%, transparent 70%);
  --gradient-primary: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
  --gradient-warm: linear-gradient(135deg, var(--color-warm-peach) 0%, var(--color-warm-gold) 100%);
  --gradient-section-divider: linear-gradient(90deg, var(--color-warm-gold) 0%, transparent 100%);

  /* Shadows - Soft & Warm */
  --shadow-xs: 0 1px 2px rgba(0, 0, 0, 0.03);
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.05);
  --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.07);
  --shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.09);
  --shadow-warm: 0 8px 40px rgba(244, 196, 125, 0.12);
  --shadow-glow-primary: 0 4px 30px rgba(0, 112, 186, 0.18);
  --shadow-glow-warm: 0 4px 30px rgba(244, 196, 125, 0.22);
  --shadow-card-hover: 0 20px 50px rgba(0, 0, 0, 0.08), 0 8px 20px rgba(0, 0, 0, 0.04);
  --shadow-icon-glow: 0 4px 16px rgba(244, 196, 125, 0.2), inset 0 1px 2px rgba(255, 255, 255, 0.3);

  /* Border Radius - Slightly Less Rounded */
  --radius-sm: 0.375rem;
  --radius-md: 0.625rem;
  --radius-lg: 0.875rem;
  --radius-xl: 1rem;
  --radius-2xl: 1.25rem;
  --radius-3xl: 1.5rem;
  --radius-full: 9999px;

  /* Transitions - Smooth */
  --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-base: 250ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: 400ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-slow: 600ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-bg-crossfade: 500ms ease-in-out;

  /* Typography Scale - V8: Micro-Harmonized (-2% Display) */
  --font-display: clamp(3.1rem, 5.4vw, 5.8rem);
  --font-h1: clamp(2.5rem, 6vw, 4rem);
  --font-h2: clamp(2rem, 4.5vw, 3rem);
  --font-h3: clamp(1.375rem, 2.75vw, 1.875rem);
  --font-h4: clamp(1.125rem, 2vw, 1.375rem);
  --font-body-lg: 1.1875rem;
  --font-body: 1rem;
  --font-small: 0.875rem;
  --font-xs: 0.8125rem;

  /* V8: Typography Fine-Tuning */
  --line-height-hero: 1.03;
  --line-height-section: 1.10;
  --line-height-body-long: 1.75;
  --max-width-prose: 72ch;
  --letter-spacing-serif: 0.025em;

  /* V8: 8-Point Spacing System - Refined */
  --space-2: 16px;
  --space-3: 24px;
  --space-4: 32px;
  --space-6: 48px;
  --space-8: 64px;
  --space-10: 80px;
  --space-12: 96px;
  --space-15: 120px;

  /* V8: Section Spacing - Harmonized */
  --section-gap-hero: 120px;
  --section-gap-main: 96px;
  --section-padding-y: clamp(5rem, 10vw, 8rem);
  --section-padding-y-sm: clamp(3rem, 6vw, 5rem);

  /* V8: Dot Matrix Variables - Refined Opacity */
  --dot-size: 3px;
  --dot-spacing: 28px;
  --dot-opacity: 0.08;
  --dot-opacity-warm: 0.05;
  --dot-opacity-dark: 0.12;
  --dot-blur: 4px;

  /* V8: Organic Blob Colors - Warmer */
  --blob-color-1: #F7F1EB;
  --blob-color-2: #F3E7DA;
  --blob-blur: 110px;

  /* V8: Card Polish */
  --radius-card: 14px;
  --shadow-card: 0 4px 20px rgba(0, 0, 0, 0.07);
}

/* ==================== DARK MODE - Navy Premium ==================== */
.dark-mode {
  --color-primary: #4da6ff;
  --color-primary-dark: #e8f1f8;
  --color-primary-light: #70b8ff;
  --color-primary-hover: #85c4ff;

  --color-warm-apricot: #FFE4C9;
  --color-warm-peach: #FFD4A8;
  --color-warm-gold: #F5D08A;
  --color-warm-glow: rgba(245, 208, 138, 0.12);

  --color-text: #f5f7fa;
  --color-text-secondary: #e8edf2;
  --color-text-muted: #a8b5c4;
  --color-text-light: #8795a5;

  --color-bg: #0a1628;
  --color-bg-soft: #0f1e32;
  --color-bg-warm: #12243a;
  --color-bg-cream: #142840;
  --color-bg-dark: #060d18;
  --color-bg-darker: #030812;
  --color-card-bg: #0f1e32;

  --color-border: #1e3a5f;
  --color-border-light: #162d4a;
  --color-border-warm: rgba(245, 208, 138, 0.2);

  --gradient-hero: linear-gradient(165deg, #0a1628 0%, #0f1e32 40%, #12243a 70%, #0a1628 100%);
  --gradient-hero-warm: radial-gradient(ellipse at 70% 20%, rgba(245, 208, 138, 0.08) 0%, transparent 50%);
  --gradient-dark-section: linear-gradient(180deg, #060d18 0%, #030812 100%);

  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.4);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.5);
  --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.6);
  --shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.7);
  --shadow-warm: 0 8px 40px rgba(245, 208, 138, 0.1);
  --shadow-glow-primary: 0 4px 30px rgba(77, 166, 255, 0.25);
  --shadow-glow-warm: 0 4px 30px rgba(245, 208, 138, 0.2);
}

/* ==================== BASE STYLES ==================== */
*, *::before, *::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 2rem;
}

body {
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  background-color: var(--color-bg);
  color: var(--color-text);
  line-height: 1.6;
  transition: background-color var(--transition-slow), color var(--transition-smooth);
}

::selection {
  background: var(--color-primary-light);
  color: #ffffff;
}

/* ==================== GLOBAL BACKGROUND ENGINE ==================== */

/* Ambient Dot Matrix - Large Scale */
.ambient-bg {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.dot-matrix {
  position: absolute;
  inset: -50%;
  width: 200%;
  height: 200%;
  background-image:
    radial-gradient(circle at center, var(--color-dot-matrix) var(--dot-size), transparent var(--dot-size)),
    radial-gradient(circle at center, rgba(244, 196, 125, 0.08) calc(var(--dot-size) * 0.8), transparent calc(var(--dot-size) * 0.8));
  background-size:
    var(--dot-spacing) var(--dot-spacing),
    calc(var(--dot-spacing) * 1.5) calc(var(--dot-spacing) * 1.5);
  background-position:
    0 0,
    calc(var(--dot-spacing) * 0.75) calc(var(--dot-spacing) * 0.75);
  opacity: var(--dot-opacity);
  filter: blur(var(--dot-blur));
  transform: rotate(6deg);
  will-change: transform;
  transition: transform 0.1s linear;
}

/* Dot Matrix Variants per Section */
.dot-matrix-tight {
  --dot-spacing: 22px;
}

.dot-matrix-wide {
  --dot-spacing: 36px;
}

.dot-matrix-rotated {
  transform: rotate(12deg);
}

/* V8: Section-specific dot opacity */
.section-light .dot-matrix,
.dot-matrix-light {
  opacity: var(--dot-opacity);
}

.section-warm .dot-matrix,
.dot-matrix-warm {
  opacity: var(--dot-opacity-warm);
}

.section-dark .dot-matrix,
.dot-matrix-dark {
  opacity: var(--dot-opacity-dark);
}

/* Organic Glass Shapes - Ambient Layer */
.ambient-shape {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  mix-blend-mode: soft-light;
  will-change: transform, opacity;
}

.ambient-shape-warm {
  background: radial-gradient(ellipse at 30% 30%,
    rgba(255, 215, 179, 0.25) 0%,
    rgba(248, 205, 162, 0.15) 40%,
    transparent 70%);
  filter: blur(100px);
}

.ambient-shape-blue {
  background: radial-gradient(ellipse at 30% 30%,
    rgba(0, 112, 186, 0.12) 0%,
    rgba(221, 229, 244, 0.08) 40%,
    transparent 70%);
  filter: blur(120px);
}

.ambient-shape-1 {
  width: 800px;
  height: 800px;
  top: -200px;
  right: -200px;
}

.ambient-shape-2 {
  width: 600px;
  height: 600px;
  bottom: 20%;
  left: -150px;
}

.ambient-shape-3 {
  width: 500px;
  height: 500px;
  top: 40%;
  right: 10%;
}

/* Section Dividers - Soft Lines */
.section-divider {
  position: absolute;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--gradient-section-divider);
  opacity: 0.1;
  pointer-events: none;
}

.section-divider-top {
  top: 0;
}

.section-divider-bottom {
  bottom: 0;
  transform: scaleX(-1);
}

.section-divider-warm {
  background: linear-gradient(90deg, var(--color-warm-gold) 0%, var(--color-warm-apricot) 50%, transparent 100%);
}

.section-divider-navy {
  background: linear-gradient(90deg, var(--color-primary-light) 0%, transparent 100%);
}

/* Ambient Gradient Layer for Light Sections */
.ambient-gradient {
  position: absolute;
  inset: 0;
  background: var(--gradient-ambient-light);
  opacity: 0.04;
  pointer-events: none;
  z-index: 0;
}

/* Warm Card Backgrounds */
.warm-card-bg {
  background: linear-gradient(135deg, var(--color-warm-offwhite) 0%, var(--color-warm-offwhite-2) 100%);
  box-shadow:
    0 8px 32px rgba(244, 196, 125, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

/* ==================== TYPOGRAPHY SYSTEM - V8: Micro-Harmonized ==================== */
.text-display {
  font-size: var(--font-display);
  font-weight: 800;
  line-height: var(--line-height-hero);
  letter-spacing: -0.035em;
  color: var(--color-text);
}

.text-h1 {
  font-size: var(--font-h1);
  font-weight: 700;
  line-height: var(--line-height-section);
  letter-spacing: -0.03em;
}

.text-h2 {
  font-size: var(--font-h2);
  font-weight: 700;
  line-height: var(--line-height-section);
  letter-spacing: -0.025em;
}

.text-h3 {
  font-size: var(--font-h3);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.018em;
}

.text-h4 {
  font-size: var(--font-h4);
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: -0.01em;
}

.text-body-lg {
  font-size: var(--font-body-lg);
  line-height: 1.7;
  max-width: var(--max-width-prose);
}

.text-body {
  font-size: var(--font-body);
  line-height: 1.7;
}

/* V8: Longer paragraphs need more line-height */
.text-body-long {
  font-size: var(--font-body);
  line-height: var(--line-height-body-long);
  max-width: var(--max-width-prose);
}

.text-small {
  font-size: var(--font-small);
  line-height: 1.6;
}

/* V8: Serif Accent - Editorial Touch, Micro-Harmonized */
/* Serif nur bei: Section-Lead-Headlines, Testimonials-Zitaten, Final CTA */
.text-serif {
  font-family: 'Georgia', 'Times New Roman', serif;
  font-style: italic;
  font-weight: 400;
  letter-spacing: var(--letter-spacing-serif);
}

/* V8: Serif Headlines - Premium Feel with tighter letter-spacing */
.text-serif-headline {
  font-family: 'Georgia', 'Times New Roman', serif;
  font-weight: 400;
  font-style: normal;
  letter-spacing: 0.015em;
}

/* Section Label - V3: Prominenter im PayPal-Stil */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  font-size: var(--font-small);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: 1.5rem;
}

.section-label::before {
  content: '';
  width: 2rem;
  height: 3px;
  background: var(--gradient-warm);
  border-radius: var(--radius-full);
}

/* Warm Underline Accent */
.warm-underline {
  position: relative;
  display: inline;
}

.warm-underline::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 3px;
  background: var(--gradient-warm);
  border-radius: var(--radius-full);
  opacity: 0.7;
}

/* ==================== ORGANIC WARM SHAPES - V8: Warmer, more flow ==================== */
.shape-warm {
  position: absolute;
  border-radius: 60% 40% 50% 50%;
  background: radial-gradient(ellipse, var(--blob-color-1) 0%, var(--blob-color-2) 40%, transparent 70%);
  filter: blur(var(--blob-blur));
  opacity: 0.5;
  pointer-events: none;
  z-index: 0;
}

.shape-warm-1 {
  width: 650px;
  height: 550px;
  top: -200px;
  right: -150px;
  border-radius: 60% 40% 55% 45%;
}

.shape-warm-2 {
  width: 450px;
  height: 380px;
  bottom: -100px;
  left: -100px;
  border-radius: 45% 55% 50% 50%;
}

.shape-warm-3 {
  width: 520px;
  height: 480px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50% 50% 45% 55%;
}

@keyframes floatShape {
  0%, 100% {
    transform: translate(0, 0) scale(1);
    opacity: 0.5;
  }
  50% {
    transform: translate(20px, -15px) scale(1.05);
    opacity: 0.7;
  }
}

/* Data Shapes - Abstract Tech Elements - ENLARGED */
.data-shape {
  position: absolute;
  pointer-events: none;
  z-index: 1;
}

.data-dots {
  width: 280px;
  height: 180px;
  background-image:
    radial-gradient(circle, var(--color-primary) 3px, transparent 3px),
    radial-gradient(circle, var(--color-primary) 2px, transparent 2px);
  background-size: 24px 24px, 36px 36px;
  background-position: 0 0, 12px 12px;
  opacity: 0.12;
  filter: blur(3px);
  /* V3: Animation entfernt für statischen Hero */
}

.data-dots-warm {
  background-image:
    radial-gradient(circle, var(--color-warm-gold) 3px, transparent 3px),
    radial-gradient(circle, var(--color-warm-apricot) 2px, transparent 2px);
  opacity: 0.18;
}

.data-dots-large {
  width: 400px;
  height: 300px;
  opacity: 0.14;
}

@keyframes floatDots {
  0%, 100% {
    transform: translateY(0) translateX(0);
    opacity: 0.12;
  }
  50% {
    transform: translateY(-12px) translateX(5px);
    opacity: 0.16;
  }
}

.data-line {
  width: 120px;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, var(--color-warm-gold) 30%, var(--color-warm-gold) 70%, transparent 100%);
  opacity: 0.35;
  animation: pulseLine 8s ease-in-out infinite; /* V3: Verlangsamt */
}

.data-line-long {
  width: 200px;
}

/* V3: Verlangsamte Animation */
@keyframes pulseLine {
  0%, 100% { opacity: 0.2; transform: scaleX(0.9); }
  50% { opacity: 0.4; transform: scaleX(1); }
}

/* Connection Lines - V3: Dezenter */
.data-connection {
  position: absolute;
  width: 150px;
  height: 1px;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(0, 112, 186, 0.15) 20%,
    rgba(244, 196, 125, 0.2) 50%,
    rgba(0, 112, 186, 0.15) 80%,
    transparent 100%);
  animation: connectionPulse 12s ease-in-out infinite;
}

@keyframes connectionPulse {
  0%, 100% { opacity: 0.25; }
  50% { opacity: 0.5; }
}

/* ==================== DARK MODE TOGGLE ==================== */
.dark-mode-toggle {
  position: fixed;
  top: 1.5rem;
  right: 1.5rem;
  z-index: 100;
  width: 3rem;
  height: 3rem;
  border-radius: var(--radius-full);
  background: var(--color-card-bg);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-md);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-smooth);
}

.dark-mode-toggle:hover {
  transform: scale(1.08);
  box-shadow: var(--shadow-lg);
  border-color: var(--color-warm-gold);
}

.dark-mode-toggle svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--color-text);
  transition: color var(--transition-base);
}

.dark-mode-toggle .icon-sun { display: none; }
.dark-mode .dark-mode-toggle .icon-moon { display: none; }
.dark-mode .dark-mode-toggle .icon-sun {
  display: block;
  color: var(--color-warm-gold);
}

/* ==================== SECTION STYLES - V3: Stärkere Kontraste ==================== */
/* Light Section - With Ambient Layer */
.section-light {
  background: var(--color-bg);
  color: var(--color-text);
  position: relative;
  overflow: hidden;
}

.section-light::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, var(--color-ambient-blue) 0%, var(--color-ambient-warm) 100%);
  opacity: 0.05;
  pointer-events: none;
}

/* Soft/Warm Section - V3: Verdichtet */
.section-warm {
  background: linear-gradient(180deg, var(--color-bg-warm) 0%, #fcf6ef 100%);
  color: var(--color-text);
  position: relative;
  overflow: hidden;
}

.section-warm::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(255, 215, 179, 0.18) 0%, transparent 60%);
  pointer-events: none;
}

/* Dark Section - Enhanced Navy Gradient */
.section-dark {
  background: linear-gradient(180deg,
    #001F54 0%,
    #002A70 45%,
    #001A48 100%);
  color: var(--color-text-inverse);
  position: relative;
  overflow: hidden;
}

/* Dark Section Particles - V3: Langsame, dezente Animation */
.section-dark::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.015) 1px, transparent 1px),
    radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.012) 0.5px, transparent 0.5px),
    radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.01) 1px, transparent 1px);
  background-size: 80px 80px, 120px 120px, 60px 60px;
  animation: particleDrift 30s linear infinite;
  pointer-events: none;
}

@keyframes particleDrift {
  0% { transform: translateX(0) translateY(0); }
  100% { transform: translateX(15px) translateY(-8px); }
}

/* Blinking Particles - V3: Noch dezenter */
.section-dark::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 100px 100px;
  animation: particleBlink 8s ease-in-out infinite;
  pointer-events: none;
}

@keyframes particleBlink {
  0%, 100% { opacity: 0.03; }
  50% { opacity: 0.06; }
}

.section-dark .section-label {
  color: var(--color-warm-gold);
}

.section-dark .section-label::before {
  background: var(--color-warm-gold);
}

.section-dark .text-muted {
  color: rgba(255, 255, 255, 0.75);
}

/* Cream Section */
.section-cream {
  background: linear-gradient(180deg, var(--color-bg-cream) 0%, #f8f5f0 100%);
  position: relative;
  overflow: hidden;
}

.section-cream::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(244, 196, 125, 0.04) 0%, transparent 50%);
  pointer-events: none;
}

/* ==================== HERO SECTION ==================== */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  /* V6: Warmer, edlerer Hintergrund */
  background: linear-gradient(180deg, #F9FAFB 0%, #F7F3EE 60%, #FAF6F0 100%);
}

/* Hero Ambient Gradient */
.hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 70% 20%, rgba(255, 215, 179, 0.18) 0%, transparent 45%),
    radial-gradient(ellipse at 30% 80%, rgba(0, 112, 186, 0.08) 0%, transparent 40%);
  pointer-events: none;
}

/* Hero Large Dot Matrix */
.hero-dot-matrix {
  position: absolute;
  width: 600px;
  height: 600px;
  top: 50%;
  right: 5%;
  transform: translate(0, -50%) rotate(8deg);
  background-image:
    radial-gradient(circle, var(--color-dot-matrix) 4px, transparent 4px),
    radial-gradient(circle, rgba(244, 196, 125, 0.1) 3px, transparent 3px);
  background-size: 32px 32px, 48px 48px;
  background-position: 0 0, 16px 16px;
  opacity: 0.16;
  filter: blur(5px);
  pointer-events: none;
  z-index: 1;
}

/* Hero Dual-Color Glow */
.hero-glow {
  position: absolute;
  pointer-events: none;
  z-index: 0;
}

.hero-glow-blue {
  width: 500px;
  height: 500px;
  top: 20%;
  right: 15%;
  background: radial-gradient(circle, rgba(0, 112, 186, 0.15) 0%, transparent 60%);
  filter: blur(80px);
  mix-blend-mode: multiply;
}

.hero-glow-warm {
  width: 450px;
  height: 450px;
  top: 30%;
  right: 10%;
  background: radial-gradient(circle, rgba(255, 215, 179, 0.2) 0%, transparent 60%);
  filter: blur(60px);
  mix-blend-mode: overlay;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: var(--color-bg);
  border: 1px solid var(--color-border-warm);
  border-radius: var(--radius-full);
  font-size: var(--font-small);
  font-weight: 500;
  color: var(--color-text-muted);
  box-shadow: var(--shadow-sm), var(--shadow-warm);
  margin-bottom: 2rem;
}

.hero-badge .badge-dot {
  width: 8px;
  height: 8px;
  background: var(--color-warm-gold);
  border-radius: var(--radius-full);
  animation: pulseDot 2s ease-in-out infinite;
}

/* V3: Dezentere Puls-Animation */
@keyframes pulseDot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.7; transform: scale(0.9); }
}

.hero-headline {
  margin-bottom: 1.5rem;
}

.hero-headline span {
  display: block;
}

.hero-headline .highlight {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subheadline {
  font-size: var(--font-body-lg);
  color: var(--color-text-muted);
  max-width: 540px;
  margin-bottom: 2.5rem;
  line-height: 1.8;
}

/* Hero Visual Card */
.hero-visual {
  position: relative;
}

.hero-card {
  background: var(--color-bg-dark);
  color: var(--color-text-inverse);
  border-radius: var(--radius-3xl);
  padding: 2.5rem;
  box-shadow: var(--shadow-xl);
  position: relative;
  overflow: hidden;
}

.hero-card::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, var(--color-warm-glow) 0%, transparent 70%);
  pointer-events: none;
}

.hero-card-badge {
  position: absolute;
  top: -12px;
  right: 24px;
  /* V6: Kräftigere Warmtone-Farbe mit Outline */
  background: linear-gradient(135deg, #E8B769 0%, #F4C47D 100%);
  color: var(--color-text);
  padding: 0.5rem 1.125rem;
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  box-shadow:
    var(--shadow-glow-warm),
    0 0 0 1px rgba(0, 0, 0, 0.05),
    0 2px 8px rgba(0, 0, 0, 0.12);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-stat {
  text-align: center;
}

.hero-stat-value {
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 0.25rem;
}

.hero-stat-value.warm { color: var(--color-warm-gold); }
.hero-stat-value.teal { color: var(--color-teal-light); }

.hero-stat-label {
  font-size: var(--font-small);
  color: rgba(255, 255, 255, 0.6);
}

/* Hero Decorative Elements */
.hero-shape-1 {
  position: absolute;
  bottom: -40px;
  left: -40px;
  width: 120px;
  height: 120px;
  background: rgba(255, 215, 179, 0.1);
  border-radius: var(--radius-2xl);
  transform: rotate(15deg);
  z-index: -1;
}

.hero-shape-2 {
  position: absolute;
  top: -30px;
  right: -30px;
  width: 80px;
  height: 80px;
  background: rgba(0, 112, 186, 0.1);
  border-radius: 50%;
  z-index: -1;
}

/* ==================== BUTTONS - PayPal Style ==================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  font-weight: 600;
  border-radius: var(--radius-lg);
  cursor: pointer;
  transition: all var(--transition-smooth);
  position: relative;
  overflow: hidden;
  border: none;
}

/* Primary Button - V8: Inner glow, darker hover */
.btn-primary {
  background: var(--color-primary-dark);
  color: #ffffff;
  padding: 1rem 2rem;
  font-size: var(--font-body);
  font-weight: 600;
  box-shadow:
    var(--shadow-md),
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    inset 0 -1px 0 rgba(0, 0, 0, 0.1);
}

.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,0.1) 0%, transparent 50%);
  pointer-events: none;
}

.btn-primary:hover {
  background: var(--color-primary-darker);
  transform: translateY(-2px) scale(1.02);
  box-shadow: var(--shadow-lg), var(--shadow-glow-primary);
}

.btn-primary:active {
  transform: translateY(0) scale(1);
}

.dark-mode .btn-primary {
  background: var(--color-primary);
}

.dark-mode .btn-primary:hover {
  background: var(--color-primary-hover);
}

/* Secondary Button - V8: Softer border, darker text */
.btn-secondary {
  background: transparent;
  color: var(--color-text-secondary);
  padding: 0.875rem 1.75rem;
  font-size: var(--font-body);
  font-weight: 500;
  border: 2px solid rgba(0, 0, 0, 0.12);
}

.btn-secondary:hover {
  border-color: rgba(0, 0, 0, 0.25);
  color: var(--color-text);
  background: rgba(0, 0, 0, 0.02);
  transform: translateY(-2px);
}

.dark-mode .btn-secondary {
  color: var(--color-text-inverse);
  border-color: rgba(255, 255, 255, 0.2);
}

.dark-mode .btn-secondary:hover {
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.05);
}

/* Warm Accent Button */
.btn-warm {
  background: var(--gradient-warm);
  color: var(--color-text);
  padding: 1rem 2rem;
  font-size: var(--font-body);
  box-shadow: var(--shadow-md), var(--shadow-glow-warm);
}

.btn-warm:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: var(--shadow-lg), 0 8px 40px rgba(244, 196, 125, 0.35);
  filter: brightness(1.05);
}

/* Ghost Button with Warm Dot */
.btn-ghost {
  background: transparent;
  color: var(--color-text);
  padding: 0.75rem 1.25rem;
  font-size: var(--font-small);
  gap: 0.5rem;
}

.btn-ghost::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--color-warm-gold);
  border-radius: var(--radius-full);
  transition: transform var(--transition-base);
}

.btn-ghost:hover {
  color: var(--color-primary);
}

.btn-ghost:hover::before {
  transform: scale(1.3);
}

/* Button in Dark Section */
.section-dark .btn-primary {
  background: #ffffff;
  color: var(--color-primary-dark);
}

.section-dark .btn-primary:hover {
  background: var(--color-bg-soft);
  box-shadow: var(--shadow-xl);
}

/* ==================== CARDS - V8: Unified Polish ==================== */
.card {
  background: var(--color-card-bg);
  border-radius: var(--radius-card);
  border: 1px solid var(--color-border-light);
  box-shadow: var(--shadow-card);
  transition: all var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.card:hover {
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-3px) scale(1.01);
  border-color: transparent;
}

/* Card with Warm Accent */
.card-warm-accent {
  border-left: 4px solid var(--color-warm-gold);
}

.card-warm-accent::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--color-warm-glow) 0%, transparent 50%);
  pointer-events: none;
}

/* Feature Card - V8: Enhanced with unified radius */
.feature-card {
  background: linear-gradient(180deg, #ffffff 0%, var(--color-bg-soft) 100%);
  border-radius: var(--radius-card);
  padding: 2rem;
  border: 1px solid var(--color-border-light);
  box-shadow: var(--shadow-card);
  transition: all var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

/* Subtle warm background gradient */
.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(244, 196, 125, 0.03) 0%, transparent 50%);
  pointer-events: none;
  opacity: 0;
  transition: opacity var(--transition-smooth);
}

.feature-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gradient-warm);
  opacity: 0;
  transition: opacity var(--transition-smooth);
}

.feature-card:hover {
  box-shadow: var(--shadow-lg), 0 0 30px rgba(244, 196, 125, 0.06);
  transform: translateY(-5px);
  border-color: transparent;
}

.feature-card:hover::before {
  opacity: 1;
}

.feature-card:hover::after {
  opacity: 1;
}

/* Icon containers with warm glow */
.feature-card .w-14,
.feature-card .w-16,
.icon-container {
  box-shadow: var(--shadow-icon-glow);
  transition: all var(--transition-smooth);
}

.feature-card:hover .w-14,
.feature-card:hover .w-16,
.feature-card:hover .icon-container {
  box-shadow: 0 6px 20px rgba(244, 196, 125, 0.25), inset 0 1px 3px rgba(255, 255, 255, 0.4);
  transform: scale(1.05);
}

/* Dark Card */
.card-dark {
  background: var(--color-bg-dark);
  color: var(--color-text-inverse);
  border: none;
}

.card-dark .text-muted {
  color: rgba(255, 255, 255, 0.7);
}

/* ==================== CHECK ICON ==================== */
.check-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: var(--radius-full);
  background: var(--gradient-primary);
  color: #ffffff;
  font-size: 0.75rem;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(0, 48, 135, 0.25);
}

.check-icon-warm {
  background: var(--gradient-warm);
  color: var(--color-text);
  box-shadow: var(--shadow-glow-warm);
}

/* ==================== TRUST PILLS ==================== */
.trust-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  padding: 0.75rem 1.25rem;
  background: var(--color-card-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-full);
  font-size: var(--font-small);
  font-weight: 500;
  color: var(--color-text);
  transition: all var(--transition-smooth);
  box-shadow: var(--shadow-xs);
}

.trust-pill:hover {
  border-color: var(--color-warm-gold);
  box-shadow: var(--shadow-sm), var(--shadow-warm);
  transform: translateY(-2px);
}

.trust-pill svg {
  width: 1.125rem;
  height: 1.125rem;
  color: var(--color-primary);
}

/* ==================== TIMELINE ==================== */
.timeline-horizontal {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  position: relative;
  padding: 2rem 0;
}

.timeline-horizontal::before {
  content: '';
  position: absolute;
  top: 2rem;
  left: 2rem;
  right: 2rem;
  height: 2px;
  background: linear-gradient(90deg, var(--color-primary) 0%, var(--color-teal) 50%, var(--color-warm-gold) 100%);
  opacity: 0.3;
}

.timeline-step {
  flex: 1;
  text-align: center;
  position: relative;
}

.timeline-marker {
  width: 3.5rem;
  height: 3.5rem;
  margin: 0 auto 1rem;
  background: var(--color-card-bg);
  border: 3px solid var(--color-primary);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--color-primary);
  position: relative;
  z-index: 1;
  box-shadow: var(--shadow-md), 0 0 20px var(--color-warm-glow);
  transition: all var(--transition-smooth);
}

.timeline-step:hover .timeline-marker {
  background: var(--color-primary);
  color: #ffffff;
  transform: scale(1.1);
}

.timeline-step:nth-child(2) .timeline-marker {
  border-color: var(--color-teal);
  color: var(--color-teal);
}

.timeline-step:nth-child(2):hover .timeline-marker {
  background: var(--color-teal);
  color: #ffffff;
}

.timeline-step:nth-child(3) .timeline-marker {
  border-color: var(--color-warm-gold);
  color: var(--color-warm-amber);
}

.timeline-step:nth-child(3):hover .timeline-marker {
  background: var(--color-warm-gold);
  color: var(--color-text);
}

.timeline-content h4 {
  font-size: var(--font-h4);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.timeline-content p {
  font-size: var(--font-small);
  color: var(--color-text-muted);
}

/* Vertical Timeline */
.timeline-vertical {
  position: relative;
  padding-left: 4rem;
}

.timeline-vertical::before {
  content: '';
  position: absolute;
  left: 1.625rem;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--color-primary) 0%, var(--color-teal) 50%, var(--color-warm-gold) 100%);
  border-radius: var(--radius-full);
  opacity: 0.3;
}

.timeline-vertical-item {
  position: relative;
  padding-bottom: 2.5rem;
}

.timeline-vertical-item:last-child {
  padding-bottom: 0;
}

.timeline-vertical-marker {
  position: absolute;
  left: -4rem;
  width: 3.25rem;
  height: 3.25rem;
  background: var(--color-card-bg);
  border: 3px solid var(--color-primary);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: var(--font-body);
  color: var(--color-primary);
  box-shadow: var(--shadow-sm), 0 0 15px var(--color-warm-glow);
}

/* ==================== TESTIMONIALS - Enhanced ==================== */
.testimonial-card {
  background: linear-gradient(135deg, var(--color-warm-offwhite) 0%, #ffffff 100%);
  border-radius: var(--radius-xl);
  padding: 2rem;
  border: 1px solid var(--color-border-light);
  position: relative;
  transition: all var(--transition-smooth);
  overflow: hidden;
}

/* Warm Backplate Glow */
.testimonial-card::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(ellipse at center, rgba(244, 196, 125, 0.06) 0%, transparent 50%);
  pointer-events: none;
  transition: opacity var(--transition-smooth);
}

/* Gold Accent Stripe at Top */
.testimonial-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-warm-gold) 0%, var(--color-warm-apricot) 50%, transparent 100%);
  opacity: 0.8;
}

.testimonial-card:hover {
  box-shadow:
    0 20px 50px rgba(0, 0, 0, 0.06),
    0 8px 25px rgba(244, 196, 125, 0.1);
  transform: translateY(-4px);
}

.testimonial-card:hover::before {
  opacity: 1.5;
}

.testimonial-quote {
  position: absolute;
  top: 0.75rem;
  left: 1.25rem;
  font-size: 3.5rem;
  font-family: Georgia, serif;
  color: var(--color-warm-gold);
  opacity: 0.25;
  line-height: 1;
}

.testimonial-text {
  position: relative;
  z-index: 1;
  font-size: var(--font-body);
  font-family: Georgia, serif;
  font-style: italic;
  color: var(--color-text-secondary);
  line-height: 1.85;
  margin-bottom: 1.5rem;
  padding-top: 0.5rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(244, 196, 125, 0.2);
}

.testimonial-avatar {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: var(--radius-full);
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-weight: 600;
  font-size: var(--font-small);
  box-shadow: 0 2px 8px rgba(0, 48, 135, 0.2);
}

.testimonial-avatar.warm {
  background: var(--gradient-warm);
  color: var(--color-text);
  box-shadow: var(--shadow-glow-warm);
}

.testimonial-name {
  font-weight: 600;
  color: var(--color-text);
  font-size: var(--font-small);
}

.testimonial-role {
  font-size: var(--font-xs);
  color: var(--color-text-light);
}

/* ==================== CALLOUT BOX ==================== */
.callout-box {
  background: linear-gradient(135deg, var(--color-bg-cream) 0%, var(--color-bg-warm) 100%);
  border-radius: var(--radius-2xl);
  padding: 2rem 2.5rem;
  border-left: 4px solid var(--color-warm-gold);
  position: relative;
  overflow: hidden;
}

.callout-box::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, var(--color-warm-glow) 0%, transparent 70%);
  pointer-events: none;
}

.callout-icon {
  width: 3rem;
  height: 3rem;
  background: var(--gradient-warm);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text);
  margin-bottom: 1rem;
  box-shadow: var(--shadow-glow-warm);
}

.dark-mode .callout-box {
  background: linear-gradient(135deg, var(--color-bg-warm) 0%, var(--color-bg-soft) 100%);
}

/* ==================== FAQ ACCORDION ==================== */
.faq-container {
  background: var(--color-card-bg);
  border-radius: var(--radius-2xl);
  border: 1px solid var(--color-border-light);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.faq-item {
  border-bottom: 1px solid var(--color-border);
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-question {
  width: 100%;
  padding: 1.5rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  font-size: var(--font-body);
  color: var(--color-text);
  cursor: pointer;
  transition: all var(--transition-base);
  background: transparent;
  border: none;
  text-align: left;
}

.faq-question:hover {
  background: var(--color-bg-soft);
  color: var(--color-primary);
}

.faq-icon {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--color-text-light);
  transition: all var(--transition-smooth);
  flex-shrink: 0;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
  color: var(--color-primary);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: all var(--transition-smooth);
  color: var(--color-text-muted);
  line-height: 1.8;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 0 2rem 1.5rem;
}

/* ==================== REPORT MOCKUP ==================== */
.report-mockup {
  position: relative;
  perspective: 1200px;
}

.report-cover {
  background: linear-gradient(145deg, var(--color-card-bg) 0%, var(--color-bg-soft) 100%);
  border-radius: var(--radius-2xl);
  padding: 2rem;
  box-shadow:
    0 30px 60px -15px rgba(0, 0, 0, 0.12),
    0 0 0 1px var(--color-border),
    -12px 12px 0 -6px rgba(0, 0, 0, 0.03),
    -24px 24px 0 -12px rgba(0, 0, 0, 0.02);
  /* V3: Statisch - kein Tilt mehr, nur leichte Perspektive */
  transform: rotateY(-4deg) rotateX(2deg);
  transform-style: preserve-3d;
  transition: box-shadow 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
}

.report-mockup::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -30%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, var(--color-warm-glow) 0%, transparent 70%);
  filter: blur(40px);
  opacity: 0.6;
  pointer-events: none;
}

.report-mockup:hover .report-cover {
  /* V3: Nur Schatten verstärken, keine Transform-Animation */
  box-shadow:
    0 45px 90px -20px rgba(0, 0, 0, 0.18),
    0 0 0 1px var(--color-border),
    -16px 16px 0 -8px rgba(0, 0, 0, 0.05),
    -32px 32px 0 -16px rgba(0, 0, 0, 0.03),
    0 0 60px -10px rgba(244, 196, 125, 0.15);
}

.report-badge {
  position: absolute;
  top: -14px;
  right: 24px;
  background: var(--gradient-warm);
  color: var(--color-text);
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius-full);
  font-size: var(--font-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  box-shadow: var(--shadow-glow-warm);
  z-index: 10;
}

.dark-mode .report-cover {
  box-shadow:
    0 30px 60px -15px rgba(0, 0, 0, 0.4),
    0 0 0 1px var(--color-border),
    -12px 12px 0 -6px rgba(0, 0, 0, 0.2),
    -24px 24px 0 -12px rgba(0, 0, 0, 0.15);
}

/* ==================== KONTAKT CARDS ==================== */
.kontakt-card {
  background: var(--color-card-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-2xl);
  padding: 2.5rem;
  text-align: center;
  transition: all var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.kontakt-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-primary);
  opacity: 0;
  transition: opacity var(--transition-smooth);
}

.kontakt-card.warm::before {
  background: var(--gradient-warm);
}

.kontakt-card:hover {
  box-shadow: var(--shadow-xl);
  transform: translateY(-8px);
  border-color: transparent;
}

.kontakt-card:hover::before {
  opacity: 1;
}

.kontakt-icon {
  width: 4rem;
  height: 4rem;
  margin: 0 auto 1.5rem;
  background: linear-gradient(135deg, rgba(0, 48, 135, 0.1) 0%, rgba(0, 112, 186, 0.1) 100%);
  border-radius: var(--radius-xl);
  display: flex;
  align-items: center;
  justify-content: center;
}

.kontakt-icon.warm {
  background: linear-gradient(135deg, rgba(255, 215, 179, 0.3) 0%, rgba(244, 196, 125, 0.2) 100%);
}

.kontakt-icon svg {
  width: 2rem;
  height: 2rem;
  color: var(--color-primary);
}

.kontakt-icon.warm svg {
  color: var(--color-warm-amber);
}

/* ==================== CTA SECTION ==================== */
.cta-section {
  background: var(--gradient-dark-section);
  color: var(--color-text-inverse);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(0, 112, 186, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.cta-section::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, var(--color-warm-glow) 0%, transparent 70%);
  pointer-events: none;
}

.dark-mode .cta-section {
  background: linear-gradient(180deg, var(--color-bg-warm) 0%, var(--color-bg-soft) 100%);
}

/* ==================== LEGAL FAB ==================== */
.legal-fab {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 1000;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: var(--radius-full);
  background: var(--gradient-primary);
  box-shadow: var(--shadow-lg), var(--shadow-glow-primary);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-smooth);
  border: none;
}

.legal-fab:hover {
  transform: scale(1.1) translateY(-4px);
  box-shadow: var(--shadow-xl), 0 12px 40px rgba(0, 112, 186, 0.4);
}

.legal-fab svg {
  width: 1.5rem;
  height: 1.5rem;
  color: #ffffff;
}

/* ==================== PRIVACY MODAL ==================== */
.privacy-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-smooth);
}

.privacy-modal.show {
  opacity: 1;
  visibility: visible;
}

.privacy-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 15, 40, 0.85);
  backdrop-filter: blur(12px);
}

.privacy-modal-content {
  position: relative;
  background: var(--color-card-bg);
  color: var(--color-text);
  max-width: 48rem;
  width: calc(100% - 2rem);
  max-height: calc(100vh - 4rem);
  overflow-y: auto;
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-xl);
  padding: 2.5rem;
  transform: translateY(24px) scale(0.98);
  transition: transform var(--transition-smooth);
}

.privacy-modal.show .privacy-modal-content {
  transform: translateY(0) scale(1);
}

.privacy-modal-close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: var(--radius-full);
  background: var(--color-bg-soft);
  border: 1px solid var(--color-border);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--color-text-muted);
  transition: all var(--transition-base);
}

.privacy-modal-close:hover {
  background: var(--color-border);
  color: var(--color-text);
  transform: rotate(90deg);
}

.privacy-modal h1 {
  font-size: var(--font-h3);
  font-weight: 700;
  margin-bottom: 1.5rem;
  padding-right: 3rem;
}

.privacy-modal h2 {
  font-size: var(--font-h4);
  font-weight: 600;
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}

.privacy-modal p {
  color: var(--color-text-muted);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.privacy-modal a {
  color: var(--color-primary);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.legal-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem 1.25rem;
  background: var(--color-primary);
  color: #ffffff;
  border-radius: var(--radius-full);
  font-size: var(--font-small);
  font-weight: 500;
  border: none;
  cursor: pointer;
  margin-top: 0.5rem;
  transition: all var(--transition-smooth);
}

.legal-btn:hover {
  background: var(--color-primary-hover);
  transform: translateY(-2px);
}

/* ==================== SCROLL REVEAL ANIMATIONS ==================== */
.reveal-section {
  opacity: 0;
  transform: translateY(30px) scale(0.98);
  transition: opacity 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal-section.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.reveal-item {
  opacity: 0;
  transform: translateY(20px) scale(0.98);
}

.reveal-section.is-visible .reveal-item {
  animation: revealScale 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

.reveal-section.is-visible .reveal-item:nth-child(1) { animation-delay: 0.1s; }
.reveal-section.is-visible .reveal-item:nth-child(2) { animation-delay: 0.18s; }
.reveal-section.is-visible .reveal-item:nth-child(3) { animation-delay: 0.26s; }
.reveal-section.is-visible .reveal-item:nth-child(4) { animation-delay: 0.34s; }
.reveal-section.is-visible .reveal-item:nth-child(5) { animation-delay: 0.42s; }
.reveal-section.is-visible .reveal-item:nth-child(6) { animation-delay: 0.5s; }

@keyframes revealScale {
  from {
    opacity: 0;
    transform: translateY(20px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* Float animation for shapes */
@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-12px) rotate(2deg); }
}

.animate-float {
  animation: float 8s ease-in-out infinite;
}

.animate-float-slow {
  animation: float 12s ease-in-out infinite;
}

.animate-float-reverse {
  animation: float 10s ease-in-out infinite reverse;
}

/* ==================== SPLIT LAYOUT SECTIONS ==================== */
.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.split-section.reverse {
  direction: rtl;
}

.split-section.reverse > * {
  direction: ltr;
}

@media (max-width: 1024px) {
  .split-section {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .split-section.reverse {
    direction: ltr;
  }
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 1024px) {
  :root {
    --section-padding-y: clamp(4rem, 8vw, 6rem);
  }

  .report-cover {
    transform: rotateY(-3deg) rotateX(1deg);
  }

  .report-mockup:hover .report-cover {
    transform: rotateY(-1deg) translateY(-6px);
  }

  .timeline-horizontal {
    flex-direction: column;
    gap: 2rem;
  }

  .timeline-horizontal::before {
    display: none;
  }
}

@media (max-width: 768px) {
  .btn-primary, .btn-secondary, .btn-warm {
    width: 100%;
    justify-content: center;
  }

  .dark-mode-toggle {
    top: 1rem;
    right: 1rem;
    width: 2.75rem;
    height: 2.75rem;
  }

  .legal-fab {
    bottom: 1.25rem;
    right: 1.25rem;
    width: 3rem;
    height: 3rem;
  }

  .hero-card {
    padding: 2rem;
  }

  .hero-stats {
    gap: 1rem;
  }

  .hero-stat-value {
    font-size: 2rem;
  }

  .feature-card,
  .testimonial-card,
  .kontakt-card {
    padding: 1.5rem;
  }

  .callout-box {
    padding: 1.5rem;
  }

  .faq-question {
    padding: 1.25rem 1.5rem;
  }

  .faq-item.active .faq-answer {
    padding: 0 1.5rem 1.25rem;
  }

  .report-cover {
    transform: none;
    padding: 1.5rem;
  }

  .report-mockup:hover .report-cover {
    transform: translateY(-4px);
  }

  .privacy-modal-content {
    padding: 1.75rem;
    border-radius: var(--radius-2xl) var(--radius-2xl) 0 0;
    position: absolute;
    bottom: 0;
    max-height: 90vh;
    transform: translateY(100%);
  }

  .privacy-modal.show .privacy-modal-content {
    transform: translateY(0);
  }

  .shape-warm {
    display: none;
  }
}

@media (max-width: 640px) {
  .hero-badge {
    font-size: var(--font-xs);
    padding: 0.375rem 0.75rem;
  }

  .timeline-vertical {
    padding-left: 3rem;
  }

  .timeline-vertical::before {
    left: 1.125rem;
  }

  .timeline-vertical-marker {
    left: -3rem;
    width: 2.5rem;
    height: 2.5rem;
    font-size: var(--font-small);
  }
}

/* ==================== FOCUS STATES ==================== */
.btn:focus,
.faq-question:focus,
.legal-fab:focus,
.dark-mode-toggle:focus,
.privacy-modal-close:focus {
  outline: 3px solid var(--color-primary);
  outline-offset: 3px;
}

/* ==================== DARK MODE OVERRIDES ==================== */
.dark-mode .bg-white {
  background-color: var(--color-bg-soft) !important;
}

.dark-mode .section-light {
  background: var(--color-bg);
}

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

.dark-mode .section-cream {
  background: var(--color-bg-cream);
}

.dark-mode .border-slate-100,
.dark-mode .border-slate-200 {
  border-color: var(--color-border) !important;
}

.dark-mode .text-slate-900 {
  color: var(--color-text) !important;
}

.dark-mode .text-slate-700,
.dark-mode .text-slate-600 {
  color: var(--color-text-muted) !important;
}

.dark-mode .text-slate-500 {
  color: var(--color-text-light) !important;
}

/* Dark Mode Premium Enhancements - Warm Glow */
.dark-mode .btn-primary {
  background: linear-gradient(135deg, var(--color-primary) 0%, #3d8ed9 100%);
  box-shadow: 0 4px 20px rgba(77, 166, 255, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.dark-mode .btn-primary:hover {
  background: linear-gradient(135deg, #5ab0ff 0%, var(--color-primary) 100%);
  box-shadow: 0 8px 30px rgba(77, 166, 255, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.dark-mode .btn-warm {
  background: linear-gradient(135deg, var(--color-warm-gold) 0%, var(--color-warm-amber) 100%);
  color: #1a1a1a;
  box-shadow: 0 4px 20px rgba(245, 208, 138, 0.2);
}

.dark-mode .btn-warm:hover {
  box-shadow: 0 8px 30px rgba(245, 208, 138, 0.35);
}

.dark-mode .feature-card:hover,
.dark-mode .card:hover,
.dark-mode .testimonial-card:hover {
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4), 0 0 30px rgba(245, 208, 138, 0.08);
}

.dark-mode .timeline-icon,
.dark-mode .timeline-h-icon {
  box-shadow: 0 4px 15px rgba(245, 208, 138, 0.15);
}

.dark-mode .shape-warm {
  opacity: 0.4;
}

.dark-mode .badge {
  background: rgba(245, 208, 138, 0.15);
  border-color: rgba(245, 208, 138, 0.3);
  color: var(--color-warm-gold);
}

.dark-mode .report-mockup {
  box-shadow:
    0 50px 100px -30px rgba(0, 0, 0, 0.5),
    0 30px 60px -20px rgba(0, 0, 0, 0.4),
    0 0 50px -10px rgba(245, 208, 138, 0.1);
}

.dark-mode .report-cover::after {
  background: linear-gradient(
    135deg,
    rgba(245, 208, 138, 0.1) 0%,
    transparent 50%
  );
}

.dark-mode .text-serif {
  color: var(--color-warm-gold);
}

.dark-mode .underline-warm::after {
  background: linear-gradient(90deg, var(--color-warm-gold) 0%, rgba(245, 208, 138, 0.3) 100%);
}

.dark-mode .kontakt-card {
  background: linear-gradient(135deg, var(--color-bg-soft) 0%, var(--color-bg-warm) 100%);
  border-color: var(--color-border-warm);
}

/* ==================== UTILITIES ==================== */
.text-gradient {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.text-gradient-warm {
  background: var(--gradient-warm);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

.border-warm {
  border-color: var(--color-border-warm);
}

/* Container */
.container {
  width: 100%;
  max-width: 80rem;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

@media (min-width: 640px) {
  .container {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .container {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

/* ==================== V4: MESSAGING & VISUAL CLARITY ==================== */

/* V4: Risk Icon Glow (Amber) */
.icon-risk-glow {
  position: relative;
  box-shadow: 0 0 20px rgba(197, 138, 50, 0.15), 0 0 40px rgba(232, 168, 73, 0.08);
}

.icon-risk-glow::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: inherit;
  background: radial-gradient(circle, rgba(197, 138, 50, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

/* V4: Risk Feature Cards */
.feature-card-risk {
  background: linear-gradient(135deg, var(--color-card-bg) 0%, #fdfaf7 100%);
  border: 1px solid rgba(197, 138, 50, 0.15);
}

.feature-card-risk:hover {
  border-color: rgba(197, 138, 50, 0.25);
  box-shadow: var(--shadow-md), 0 0 30px rgba(197, 138, 50, 0.08);
}

/* V4: Serious Callout Box */
.callout-box-serious {
  background: linear-gradient(135deg, #F5E4D3 0%, #F7EBDD 100%);
  border-left: 5px solid #C58A32;
  padding: 2rem 2.5rem;
  position: relative;
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.callout-box-serious:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md), 0 0 30px rgba(197, 138, 50, 0.12);
}

.callout-icon-serious {
  background: linear-gradient(135deg, rgba(197, 138, 50, 0.15) 0%, rgba(197, 138, 50, 0.25) 100%);
  color: #C58A32;
}

.callout-box-serious:hover .callout-icon-serious {
  box-shadow: 0 0 20px rgba(197, 138, 50, 0.25);
}

/* V4: Unified Checkmark Colors (No Traffic Light) */
.check-icon-navy {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
  color: #ffffff;
}

.check-icon-gold {
  background: linear-gradient(135deg, var(--color-warm-gold) 0%, var(--color-warm-amber) 100%);
  color: var(--color-text);
}

/* V4: Micro Benefit Cards */
.benefit-micro-card {
  padding: 0.875rem 1rem;
  background: var(--color-bg-soft);
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-lg);
  font-size: var(--font-small);
  color: var(--color-text-secondary);
  transition: all var(--transition-base);
}

.benefit-micro-card:hover {
  background: var(--color-bg-warm);
  border-color: var(--color-border-warm);
  transform: translateY(-1px);
}

/* V4: Report Mockup Container with Snippet Overlays */
.report-mockup-container {
  position: relative;
  perspective: 1200px;
}

/* V4: Floating Report Snippets */
.report-snippet {
  position: absolute;
  background: var(--color-card-bg);
  border-radius: var(--radius-lg);
  padding: 0.75rem 1rem;
  box-shadow: var(--shadow-md), 0 0 0 1px var(--color-border);
  z-index: 10;
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.report-snippet:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: var(--shadow-lg);
}

.report-snippet-1 {
  top: 20%;
  right: -30px;
}

.report-snippet-2 {
  bottom: 35%;
  left: -25px;
}

.report-snippet-3 {
  bottom: 10%;
  right: -20px;
}

@media (max-width: 1023px) {
  .report-snippet {
    display: none;
  }
}

/* V4: Timeline Step Interactive */
.timeline-step-interactive {
  cursor: pointer;
  position: relative;
}

.timeline-step-interactive:hover {
  transform: translateY(-3px);
}

.timeline-step-interactive:hover .timeline-marker {
  background: var(--color-warm-gold);
  border-color: var(--color-warm-gold);
  color: var(--color-text);
}

.timeline-step-interactive::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 60%;
  height: 3px;
  background: var(--color-warm-gold);
  border-radius: var(--radius-full);
  transition: transform var(--transition-base);
}

.timeline-step-interactive:hover::after {
  transform: translateX(-50%) scaleX(1);
}

/* V4: Timeline Tooltip */
.timeline-tooltip {
  position: absolute;
  bottom: calc(100% + 20px);
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  width: 280px;
  padding: 1rem 1.25rem;
  background: var(--color-card-bg);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg), 0 0 0 1px var(--color-border);
  font-size: var(--font-small);
  color: var(--color-text-secondary);
  line-height: 1.5;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-base);
  z-index: 100;
}

.timeline-tooltip::before {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  border-width: 8px 8px 0 8px;
  border-style: solid;
  border-color: var(--color-card-bg) transparent transparent transparent;
}

.timeline-step-interactive:hover .timeline-tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

@media (max-width: 767px) {
  .timeline-tooltip {
    width: 220px;
    left: 0;
    transform: translateX(0) translateY(10px);
  }

  .timeline-step-interactive:hover .timeline-tooltip {
    transform: translateX(0) translateY(0);
  }

  .timeline-tooltip::before {
    left: 24px;
    transform: none;
  }
}

/* V4: Hero Tax Badge */
.hero-tax-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
  padding: 0.625rem 1rem;
  background: linear-gradient(135deg, rgba(244, 196, 125, 0.12) 0%, rgba(244, 196, 125, 0.06) 100%);
  border: 1px solid var(--color-border-warm);
  border-radius: var(--radius-full);
  font-size: var(--font-small);
  color: var(--color-warm-amber);
  width: fit-content;
}

.hero-tax-badge svg {
  flex-shrink: 0;
}

/* V4: Hero Card - Completely Static */
.hero-card {
  /* Remove animate-float class - card is now static */
  animation: none !important;
  transition: box-shadow var(--transition-smooth);
}

.hero-card:hover {
  /* V4: Only shadow enhancement, no transform */
  box-shadow:
    0 30px 80px -15px rgba(0, 0, 0, 0.25),
    0 0 60px -10px rgba(244, 196, 125, 0.15);
}

/* V4: Remove all floating animations from Hero elements */
.animate-float {
  animation: none !important;
}

/* V4: Dark Mode Adjustments */
.dark-mode .callout-box-serious {
  background: linear-gradient(135deg, rgba(197, 138, 50, 0.08) 0%, rgba(197, 138, 50, 0.04) 100%);
  border-left-color: var(--color-warm-gold);
}

.dark-mode .feature-card-risk {
  background: linear-gradient(135deg, var(--color-card-bg) 0%, rgba(197, 138, 50, 0.05) 100%);
}

.dark-mode .benefit-micro-card {
  background: var(--color-bg-soft);
  border-color: var(--color-border);
}

.dark-mode .report-snippet {
  background: var(--color-card-bg);
  border-color: var(--color-border);
}

.dark-mode .timeline-tooltip {
  background: var(--color-card-bg);
  border-color: var(--color-border);
}

.dark-mode .timeline-tooltip::before {
  border-color: var(--color-card-bg) transparent transparent transparent;
}

.dark-mode .hero-tax-badge {
  background: linear-gradient(135deg, rgba(245, 208, 138, 0.1) 0%, rgba(245, 208, 138, 0.05) 100%);
  border-color: rgba(245, 208, 138, 0.2);
  color: var(--color-warm-gold);
}

/* ==================== V5: DEEP UNDERSTANDING SECTION ==================== */

.section-deep-understanding {
  background: linear-gradient(180deg, var(--color-bg) 0%, var(--color-bg-warm) 50%, var(--color-bg) 100%);
  position: relative;
  overflow: hidden;
}

.section-deep-understanding::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 30%, rgba(0, 112, 186, 0.04) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 70%, rgba(244, 196, 125, 0.06) 0%, transparent 50%);
  pointer-events: none;
}

/* Deep Card Styling */
.deep-card {
  background: var(--color-card-bg);
  border-radius: var(--radius-2xl);
  padding: 2rem;
  border: 1px solid var(--color-border-light);
  position: relative;
  transition: all var(--transition-smooth);
  overflow: hidden;
}

.deep-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-primary) 0%, var(--color-teal) 50%, var(--color-warm-gold) 100%);
  opacity: 0;
  transition: opacity var(--transition-smooth);
}

.deep-card:hover {
  box-shadow: var(--shadow-lg), 0 0 40px rgba(0, 112, 186, 0.06);
  transform: translateY(-6px);
  border-color: transparent;
}

.deep-card:hover::before {
  opacity: 1;
}

/* Deep Card Icon Variants */
.deep-card-icon {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: var(--radius-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: all var(--transition-smooth);
}

.deep-card-icon-navy {
  background: linear-gradient(135deg, rgba(0, 48, 135, 0.1) 0%, rgba(0, 112, 186, 0.15) 100%);
  color: var(--color-primary);
}

.deep-card-icon-teal {
  background: linear-gradient(135deg, rgba(22, 155, 215, 0.1) 0%, rgba(79, 184, 232, 0.15) 100%);
  color: var(--color-teal);
}

.deep-card-icon-gold {
  background: linear-gradient(135deg, rgba(244, 196, 125, 0.15) 0%, rgba(232, 168, 73, 0.2) 100%);
  color: var(--color-warm-amber);
}

.deep-card:hover .deep-card-icon {
  transform: scale(1.08);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.deep-card:hover .deep-card-icon-navy {
  box-shadow: 0 6px 20px rgba(0, 48, 135, 0.2);
}

.deep-card:hover .deep-card-icon-teal {
  box-shadow: 0 6px 20px rgba(22, 155, 215, 0.2);
}

.deep-card:hover .deep-card-icon-gold {
  box-shadow: 0 6px 20px rgba(244, 196, 125, 0.3);
}

/* Deep Card Tag */
.deep-card-tag {
  display: inline-block;
  margin-top: 1.25rem;
  padding: 0.375rem 0.875rem;
  background: var(--color-bg-soft);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-full);
  font-size: var(--font-xs);
  font-weight: 600;
  color: var(--color-text-light);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: all var(--transition-base);
}

.deep-card:hover .deep-card-tag {
  background: var(--color-primary);
  color: #ffffff;
  border-color: var(--color-primary);
}

/* Dark Mode */
.dark-mode .section-deep-understanding {
  background: linear-gradient(180deg, var(--color-bg) 0%, var(--color-bg-warm) 50%, var(--color-bg) 100%);
}

.dark-mode .deep-card {
  background: var(--color-card-bg);
  border-color: var(--color-border);
}

.dark-mode .deep-card:hover {
  box-shadow: var(--shadow-lg), 0 0 40px rgba(77, 166, 255, 0.1);
}

.dark-mode .deep-card-tag {
  background: var(--color-bg-soft);
  border-color: var(--color-border);
}

/* ==================== V5: MINI-REPORT-VIEWER ==================== */

.report-viewer-section {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

/* Tab Navigation */
.report-viewer-tabs {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  padding: 0.375rem;
  background: var(--color-bg-soft);
  border-radius: var(--radius-full);
  border: 1px solid var(--color-border-light);
}

.report-viewer-tab {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.25rem;
  background: transparent;
  border: none;
  border-radius: var(--radius-full);
  font-size: var(--font-small);
  font-weight: 600;
  color: var(--color-text-muted);
  cursor: pointer;
  transition: all var(--transition-base);
}

.report-viewer-tab:hover {
  color: var(--color-text);
  background: rgba(0, 0, 0, 0.03);
}

.report-viewer-tab.active {
  background: var(--color-card-bg);
  color: var(--color-primary);
  box-shadow: var(--shadow-sm);
}

.report-viewer-tab svg {
  flex-shrink: 0;
}

/* Tab Content */
.report-viewer-content {
  position: relative;
  min-height: 320px;
}

.report-viewer-panel {
  display: none;
  animation: fadeInPanel 0.3s ease-out;
}

.report-viewer-panel.active {
  display: block;
}

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

/* Report Viewer Card */
.report-viewer-card {
  background: var(--color-card-bg);
  border-radius: var(--radius-2xl);
  border: 1px solid var(--color-border-light);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.report-viewer-header {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 1rem;
  padding: 1.25rem 1.5rem;
  background: linear-gradient(135deg, rgba(0, 48, 135, 0.03) 0%, rgba(0, 112, 186, 0.02) 100%);
  border-bottom: 1px solid var(--color-border-light);
}

.report-viewer-desc {
  width: 100%;
  margin: 0.5rem 0 0 0;
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.5;
}

.report-viewer-badge {
  padding: 0.25rem 0.75rem;
  background: var(--color-primary);
  color: #ffffff;
  border-radius: var(--radius-full);
  font-size: var(--font-xs);
  font-weight: 600;
}

.report-viewer-badge.teal {
  background: var(--color-teal);
}

.report-viewer-badge.gold {
  background: var(--color-warm-gold);
  color: var(--color-text);
}

.report-viewer-body {
  padding: 1.5rem;
}

/* Reifegrad Visual */
.reifegrad-visual {
  margin-bottom: 1.5rem;
}

.reifegrad-bar {
  height: 2.5rem;
  background: linear-gradient(90deg,
    rgba(0, 48, 135, 0.08) 0%,
    rgba(22, 155, 215, 0.08) 50%,
    rgba(244, 196, 125, 0.12) 100%);
  border-radius: var(--radius-full);
  position: relative;
  overflow: hidden;
}

.reifegrad-progress {
  height: 100%;
  background: linear-gradient(90deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 1rem;
  transition: width 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reifegrad-level {
  color: #ffffff;
  font-size: var(--font-small);
  font-weight: 600;
  white-space: nowrap;
}

.reifegrad-labels {
  display: flex;
  justify-content: space-between;
  margin-top: 0.75rem;
  font-size: var(--font-xs);
  color: var(--color-text-light);
}

.reifegrad-insights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.reifegrad-insight {
  padding: 1rem;
  background: var(--color-bg-soft);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border-light);
}

.insight-label {
  display: block;
  font-size: var(--font-xs);
  color: var(--color-text-light);
  margin-bottom: 0.25rem;
}

.insight-value {
  font-weight: 600;
  color: var(--color-text);
}

.insight-value.navy {
  color: var(--color-primary);
}

.insight-value.gold {
  color: var(--color-warm-amber);
}

/* ROI Grid */
.roi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.roi-metric {
  text-align: center;
  padding: 1.25rem 1rem;
  background: var(--color-bg-soft);
  border-radius: var(--radius-xl);
  border: 1px solid var(--color-border-light);
}

.roi-metric-value {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.roi-metric-value.teal {
  color: var(--color-teal);
}

.roi-metric-value.gold {
  color: var(--color-warm-amber);
}

.roi-metric-label {
  font-size: var(--font-small);
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 0.25rem;
}

.roi-metric-note {
  font-size: var(--font-xs);
  color: var(--color-text-light);
}

/* Förderprogramme List */
.foerder-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.foerder-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
  background: var(--color-bg-soft);
  border-radius: var(--radius-xl);
  border: 1px solid var(--color-border-light);
  transition: all var(--transition-base);
}

.foerder-item:hover {
  background: var(--color-bg-warm);
  border-color: var(--color-border-warm);
  transform: translateX(4px);
}

.foerder-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(0, 48, 135, 0.1) 0%, rgba(0, 112, 186, 0.15) 100%);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.foerder-icon.teal {
  background: linear-gradient(135deg, rgba(22, 155, 215, 0.1) 0%, rgba(79, 184, 232, 0.15) 100%);
  color: var(--color-teal);
}

.foerder-icon.gold {
  background: linear-gradient(135deg, rgba(244, 196, 125, 0.15) 0%, rgba(232, 168, 73, 0.2) 100%);
  color: var(--color-warm-amber);
}

.foerder-content {
  flex: 1;
}

.foerder-name {
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 0.125rem;
}

.foerder-desc {
  font-size: var(--font-small);
  color: var(--color-text-muted);
}

.foerder-match {
  padding: 0.25rem 0.75rem;
  background: var(--color-primary);
  color: #ffffff;
  border-radius: var(--radius-full);
  font-size: var(--font-xs);
  font-weight: 600;
  flex-shrink: 0;
}

.foerder-match.teal {
  background: var(--color-teal);
}

.foerder-match.gold {
  background: var(--color-warm-gold);
  color: var(--color-text);
}

/* Responsive */
@media (max-width: 768px) {
  .report-viewer-tabs {
    flex-direction: column;
    border-radius: var(--radius-xl);
  }

  .report-viewer-tab {
    justify-content: center;
  }

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

  .reifegrad-insights {
    grid-template-columns: 1fr;
  }

  .reifegrad-labels {
    font-size: 0.625rem;
  }

  .foerder-item {
    flex-wrap: wrap;
  }

  .foerder-match {
    margin-left: 3.5rem;
    margin-top: 0.5rem;
  }
}

/* Dark Mode */
.dark-mode .report-viewer-tabs {
  background: var(--color-bg-soft);
  border-color: var(--color-border);
}

.dark-mode .report-viewer-tab.active {
  background: var(--color-card-bg);
  box-shadow: var(--shadow-md);
}

.dark-mode .report-viewer-card {
  background: var(--color-card-bg);
  border-color: var(--color-border);
}

.dark-mode .report-viewer-header {
  background: linear-gradient(135deg, rgba(77, 166, 255, 0.05) 0%, transparent 100%);
  border-color: var(--color-border);
}

.dark-mode .reifegrad-insight,
.dark-mode .roi-metric,
.dark-mode .foerder-item {
  background: var(--color-bg-soft);
  border-color: var(--color-border);
}

/* ==================== V5: TESTIMONIALS DELUXE ==================== */

.section-testimonials-deluxe {
  background: linear-gradient(180deg, var(--color-bg-warm) 0%, #fcf6ef 50%, var(--color-bg) 100%);
  position: relative;
  overflow: hidden;
}

.section-testimonials-deluxe::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(255, 215, 179, 0.2) 0%, transparent 60%);
  pointer-events: none;
}

/* Testimonial Card Deluxe */
.testimonial-card-deluxe {
  background: linear-gradient(135deg, var(--color-warm-offwhite) 0%, #ffffff 100%);
  border-radius: var(--radius-2xl);
  padding: 2rem;
  border: 1px solid var(--color-border-light);
  position: relative;
  transition: all var(--transition-smooth);
  overflow: hidden;
}

/* 3px Gold Top Line */
.testimonial-card-deluxe::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-warm-gold) 0%, var(--color-warm-apricot) 50%, var(--color-warm-gold) 100%);
}

/* Warm Backplate Glow */
.testimonial-card-deluxe::after {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(ellipse at center, rgba(244, 196, 125, 0.06) 0%, transparent 50%);
  pointer-events: none;
  transition: opacity var(--transition-smooth);
}

.testimonial-card-deluxe:hover {
  box-shadow:
    0 20px 50px rgba(0, 0, 0, 0.08),
    0 8px 25px rgba(244, 196, 125, 0.12);
  transform: translateY(-6px);
  border-color: var(--color-border-warm);
}

.testimonial-card-deluxe:hover::after {
  opacity: 1.5;
}

/* Featured Card Variant */
.testimonial-card-featured {
  background: linear-gradient(135deg, #FFF9F3 0%, #ffffff 100%);
  border-color: var(--color-border-warm);
}

.testimonial-card-featured::before {
  height: 4px;
  background: linear-gradient(90deg, var(--color-primary) 0%, var(--color-warm-gold) 100%);
}

/* Testimonial Badge */
.testimonial-badge {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background: var(--color-primary);
  color: #ffffff;
  border-radius: var(--radius-full);
  font-size: var(--font-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin-bottom: 1.25rem;
}

.testimonial-badge.warm {
  background: var(--gradient-warm);
  color: var(--color-text);
}

.testimonial-badge.teal {
  background: var(--color-teal);
}

/* Deluxe Quote Mark */
.testimonial-quote-deluxe {
  position: absolute;
  top: 0.5rem;
  left: 1.25rem;
  font-size: 4rem;
  font-family: Georgia, serif;
  color: var(--color-warm-gold);
  opacity: 0.2;
  line-height: 1;
}

/* Deluxe Text - Serif Style */
.testimonial-text-deluxe {
  position: relative;
  z-index: 1;
  font-size: var(--font-body);
  font-family: Georgia, serif;
  font-style: italic;
  color: var(--color-text-secondary);
  line-height: 1.8;
  margin-bottom: 1.5rem;
  padding-top: 0.5rem;
}

/* Testimonial Stats */
.testimonial-stats {
  margin-bottom: 1.25rem;
}

.testimonial-stat {
  display: inline-flex;
  flex-direction: column;
  padding: 0.625rem 1rem;
  background: linear-gradient(135deg, rgba(0, 48, 135, 0.05) 0%, rgba(0, 112, 186, 0.08) 100%);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(0, 48, 135, 0.1);
}

.testimonial-stat strong {
  font-size: var(--font-body);
  font-weight: 700;
  color: var(--color-primary);
  font-family: 'Inter', sans-serif;
  font-style: normal;
}

.testimonial-stat small {
  font-size: var(--font-xs);
  color: var(--color-text-light);
  font-family: 'Inter', sans-serif;
  font-style: normal;
}

/* Deluxe Author */
.testimonial-author-deluxe {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(244, 196, 125, 0.25);
}

.testimonial-avatar-deluxe {
  width: 3rem;
  height: 3rem;
  border-radius: var(--radius-full);
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-weight: 600;
  font-size: var(--font-small);
  box-shadow: 0 4px 12px rgba(0, 48, 135, 0.2);
}

.testimonial-avatar-deluxe.warm {
  background: var(--gradient-warm);
  color: var(--color-text);
  box-shadow: 0 4px 12px rgba(244, 196, 125, 0.3);
}

.testimonial-name-deluxe {
  font-weight: 600;
  color: var(--color-text);
  font-size: var(--font-body);
}

.testimonial-role-deluxe {
  font-size: var(--font-small);
  color: var(--color-text-light);
}

/* Trust Indicators */
.trust-indicator {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.trust-indicator-value {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1;
  margin-bottom: 0.25rem;
}

.trust-indicator-label {
  font-size: var(--font-small);
  color: var(--color-text-muted);
}

.trust-indicator-divider {
  width: 1px;
  height: 2.5rem;
  background: var(--color-border-warm);
}

/* Responsive */
@media (max-width: 768px) {
  .testimonial-card-deluxe {
    padding: 1.5rem;
  }

  .trust-indicator-divider {
    display: none;
  }

  .testimonials-trust .flex {
    gap: 2rem;
  }
}

/* Dark Mode */
.dark-mode .section-testimonials-deluxe {
  background: linear-gradient(180deg, var(--color-bg-warm) 0%, var(--color-bg) 100%);
}

.dark-mode .testimonial-card-deluxe {
  background: linear-gradient(135deg, var(--color-card-bg) 0%, var(--color-bg-soft) 100%);
  border-color: var(--color-border);
}

.dark-mode .testimonial-card-deluxe:hover {
  box-shadow:
    0 20px 50px rgba(0, 0, 0, 0.4),
    0 8px 25px rgba(245, 208, 138, 0.1);
}

.dark-mode .testimonial-stat {
  background: linear-gradient(135deg, rgba(77, 166, 255, 0.08) 0%, rgba(77, 166, 255, 0.12) 100%);
  border-color: rgba(77, 166, 255, 0.15);
}

/* ==================== V6: WARUM WIR SECTION ==================== */

.section-why-us {
  background: linear-gradient(180deg, #F9FAFB 0%, var(--color-warm-offwhite) 50%, #FAF6F0 100%);
  position: relative;
  overflow: hidden;
}

.section-why-us::before {
  content: '';
  position: absolute;
  inset: 0;
  /* V6: Subtil erhöhte Dot-Matrix-Dichte */
  background-image:
    radial-gradient(circle, var(--color-dot-matrix) 3px, transparent 3px);
  background-size: 24px 24px;
  opacity: 0.12;
  pointer-events: none;
}

/* Why-Us Grid: 3 + 3 Cards */
.why-us-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
}

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

@media (max-width: 640px) {
  .why-us-grid {
    grid-template-columns: 1fr;
  }
}

/* Why-Us Card */
.why-us-card {
  background: linear-gradient(135deg, var(--color-warm-offwhite) 0%, #ffffff 100%);
  border-radius: var(--radius-2xl);
  padding: 1.75rem;
  border: 1px solid var(--color-border-light);
  position: relative;
  transition: all var(--transition-smooth);
  overflow: hidden;
}

.why-us-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at top right, rgba(244, 196, 125, 0.08) 0%, transparent 60%);
  pointer-events: none;
  opacity: 0;
  transition: opacity var(--transition-smooth);
}

.why-us-card:hover {
  transform: translateY(-3px);
  box-shadow:
    0 12px 30px rgba(0, 0, 0, 0.06),
    0 4px 12px rgba(244, 196, 125, 0.1);
  border-color: var(--color-border-warm);
}

.why-us-card:hover::before {
  opacity: 1;
}

/* Why-Us Icon */
.why-us-icon {
  width: 3rem;
  height: 3rem;
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, rgba(0, 48, 135, 0.08) 0%, rgba(0, 112, 186, 0.12) 100%);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  transition: all var(--transition-smooth);
}

.why-us-icon-gold {
  background: linear-gradient(135deg, rgba(244, 196, 125, 0.15) 0%, rgba(232, 168, 73, 0.2) 100%);
  color: var(--color-warm-amber);
}

.why-us-card:hover .why-us-icon {
  transform: scale(1.05);
  box-shadow: 0 4px 16px rgba(0, 48, 135, 0.15);
}

.why-us-card:hover .why-us-icon-gold {
  box-shadow: 0 4px 16px rgba(244, 196, 125, 0.25);
}

/* Why-Us Typography */
.why-us-title {
  font-size: var(--font-h4);
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 0.5rem;
}

.why-us-text {
  font-size: var(--font-small);
  color: var(--color-text-muted);
  line-height: 1.6;
}

/* Dark Mode */
.dark-mode .section-why-us {
  background: linear-gradient(180deg, var(--color-bg) 0%, var(--color-bg-warm) 50%, var(--color-bg) 100%);
}

.dark-mode .section-why-us::before {
  opacity: 0.06;
}

.dark-mode .why-us-card {
  background: linear-gradient(135deg, var(--color-card-bg) 0%, var(--color-bg-soft) 100%);
  border-color: var(--color-border);
}

.dark-mode .why-us-card:hover {
  box-shadow:
    0 12px 30px rgba(0, 0, 0, 0.3),
    0 4px 12px rgba(245, 208, 138, 0.08);
}

/* ==================== V6: FINALE CTA SECTION ==================== */

.final-cta-section {
  background: linear-gradient(180deg, #FDFBF8 0%, #FAF6F0 40%, #F7F3EE 100%);
  position: relative;
  overflow: hidden;
}

/* Organic Shape */
.final-cta-shape {
  position: absolute;
  top: -100px;
  left: -150px;
  width: 400px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(244, 196, 125, 0.15) 0%, transparent 60%);
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
}

/* Subtle Dot Matrix with Opacity Pulse */
.final-cta-dots {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle, var(--color-dot-matrix) 2px, transparent 2px);
  background-size: 32px 32px;
  opacity: 0.1;
  pointer-events: none;
  animation: dotPulse 6s ease-in-out infinite;
}

@keyframes dotPulse {
  0%, 100% { opacity: 0.08; }
  50% { opacity: 0.14; }
}

.final-cta-content {
  position: relative;
  z-index: 2;
}

/* Benefit List */
.final-cta-benefits {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.final-cta-benefit {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.875rem 1.25rem;
  background: rgba(255, 255, 255, 0.8);
  border-radius: var(--radius-xl);
  border: 1px solid var(--color-border-light);
  transition: all var(--transition-base);
}

.final-cta-benefit:hover {
  background: rgba(255, 255, 255, 1);
  border-color: var(--color-border-warm);
  transform: translateX(4px);
}

/* V8: Unified Navy icons in benefit list */
.final-cta-benefit svg {
  color: var(--color-primary);
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  stroke-width: 2;
}

.final-cta-benefit span {
  font-size: var(--font-body);
  color: var(--color-text-secondary);
  font-weight: 500;
  line-height: 1.55;
}

/* V8: Benefits list spacing */
.final-cta-benefits {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

/* V8: Final CTA Button - Premium Finish */
.btn-final-cta {
  position: relative;
  padding: 1rem 2.5rem;
  font-size: 1.0625rem;
  font-weight: 600;
}

.btn-final-cta::before {
  content: '';
  position: absolute;
  inset: -4px;
  background: linear-gradient(135deg, rgba(244, 196, 125, 0.35) 0%, rgba(232, 168, 73, 0.15) 100%);
  border-radius: calc(var(--radius-full) + 4px);
  z-index: -1;
  opacity: 0;
  transition: opacity var(--transition-smooth);
}

.btn-final-cta:hover {
  transform: translateY(-2px) scale(1.03);
}

.btn-final-cta:hover::before {
  opacity: 1;
}

/* Gold Glow Dots Line */
.btn-final-cta::after {
  content: '';
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background:
    radial-gradient(circle at 0% 50%, var(--color-warm-gold) 4px, transparent 4px),
    radial-gradient(circle at 25% 50%, var(--color-warm-gold) 3px, transparent 3px),
    radial-gradient(circle at 50% 50%, var(--color-warm-gold) 4px, transparent 4px),
    radial-gradient(circle at 75% 50%, var(--color-warm-gold) 3px, transparent 3px),
    radial-gradient(circle at 100% 50%, var(--color-warm-gold) 4px, transparent 4px);
  opacity: 0.6;
}

/* Dark Mode */
.dark-mode .final-cta-section {
  background: linear-gradient(180deg, var(--color-bg) 0%, var(--color-bg-warm) 40%, var(--color-bg-soft) 100%);
}

.dark-mode .final-cta-shape {
  background: radial-gradient(ellipse, rgba(245, 208, 138, 0.08) 0%, transparent 60%);
}

.dark-mode .final-cta-dots {
  opacity: 0.04;
}

.dark-mode .final-cta-benefit {
  background: rgba(15, 30, 50, 0.6);
  border-color: var(--color-border);
}

.dark-mode .final-cta-benefit:hover {
  background: rgba(15, 30, 50, 0.8);
}

/* ==================== V6: OPTIONALE FEATURES (VORBEREITET, NICHT AKTIVIERT) ==================== */
/*
 * Die folgenden Utility-Klassen sind vorbereitet, aber NICHT automatisch aktiviert.
 * Sie können bei Bedarf manuell eingesetzt werden.
 *
 * 5.1 Narrative Scroll Story - Modularer Section-Aufbau
 * 5.2 Micro-Walkthrough - Report Wizard Impression
 * 5.3 Micro-SaaS Identity Layer - Design System Utilities
 * 5.4 Haptik Utilities - Card-Stacking, tiefere Schatten
 */

/* ==================== V7: NARRATIVE SCROLL STORY (AKTIVIERT) ==================== */
/* Stripe/Linear-Style Progress Spine mit Chapter-Labels */

.narrative-section {
  position: relative;
  overflow: hidden;
}

/* Progress Spine - Vertikale Fortschrittslinie */
.narrative-progress-spine {
  position: fixed;
  left: 32px;
  top: 50%;
  transform: translateY(-50%);
  width: 3px;
  height: 240px;
  background: var(--color-border);
  border-radius: var(--radius-full);
  z-index: 100;
  opacity: 0;
  transition: opacity var(--transition-smooth);
}

.narrative-progress-spine.is-visible {
  opacity: 1;
}

.narrative-progress-fill {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(180deg, var(--color-primary) 0%, var(--color-warm-gold) 100%);
  border-radius: var(--radius-full);
  transition: height 0.3s ease-out;
}

/* Progress Markers */
.narrative-progress-markers {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.narrative-progress-marker {
  width: 11px;
  height: 11px;
  background: var(--color-bg);
  border: 2px solid var(--color-border);
  border-radius: var(--radius-full);
  transition: all var(--transition-base);
}

.narrative-progress-marker.active {
  background: var(--color-primary);
  border-color: var(--color-primary);
  box-shadow: 0 0 0 4px rgba(0, 48, 135, 0.15);
}

.narrative-progress-marker.completed {
  background: var(--color-warm-gold);
  border-color: var(--color-warm-gold);
}

/* Chapter Label - Sticky beim Scrollen */
.narrative-chapter {
  padding: var(--section-padding-y) 0;
  position: relative;
}

.narrative-chapter::before {
  content: attr(data-chapter);
  position: absolute;
  top: var(--space-4);
  left: var(--space-4);
  font-size: var(--font-xs);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-primary);
  opacity: 0.6;
  background: var(--color-bg);
  padding: 0.5rem 0.75rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border-light);
}

.narrative-chapter[data-chapter]::after {
  content: '';
  position: absolute;
  top: var(--space-4);
  left: 0;
  width: 4px;
  height: calc(100% - var(--space-8));
  background: linear-gradient(180deg, var(--color-primary) 0%, transparent 100%);
  border-radius: var(--radius-full);
  opacity: 0.15;
}

/* Hide on Mobile */
@media (max-width: 1024px) {
  .narrative-progress-spine {
    display: none;
  }

  .narrative-chapter::before {
    left: 1rem;
    top: 1.5rem;
  }
}

/* ==================== V9: NARRATIVE CHAPTER TYPES ==================== */
/* 9 Chapter Story Arc: Problem → Erkenntnis → Lösung → Ablauf → Report → Vertrauen → Warum Wir → Wirkung → CTA */

/* Base Chapter States */
.narrative-chapter {
  opacity: 1;
  transition: opacity var(--transition-smooth);
}

.narrative-chapter.chapter-active {
  opacity: 1;
}

.narrative-chapter.chapter-completed {
  opacity: 1;
}

/* Chapter Type: Dark (Problem / Impact) */
.chapter-dark {
  background: var(--gradient-dark-section);
  color: var(--color-text-inverse);
}

.chapter-dark .section-label {
  color: var(--color-warm-gold);
}

.chapter-dark .text-h2,
.chapter-dark .text-h3 {
  color: #ffffff;
}

.chapter-dark::before {
  color: var(--color-warm-gold) !important;
  background: rgba(0, 31, 84, 0.9) !important;
  border-color: rgba(244, 196, 125, 0.3) !important;
}

/* Chapter Type: Light (Erkenntnis / Trust / Zielgruppen) */
.chapter-light {
  background: var(--color-bg);
}

.chapter-light::before {
  color: var(--color-primary) !important;
}

/* Chapter Type: Warm (Lösung / Testimonials) */
.chapter-warm {
  background: var(--color-bg-warm);
}

.chapter-warm::before {
  color: var(--color-warm-amber) !important;
  border-color: var(--color-border-warm) !important;
}

/* Chapter Type: Split (Ablauf - Two Column) */
.chapter-split {
  background: var(--color-bg-cream);
}

.chapter-split::before {
  color: var(--color-teal) !important;
}

/* Chapter Type: Product (Report Section) */
.chapter-product {
  background: linear-gradient(180deg, var(--color-bg) 0%, var(--color-bg-soft) 50%, var(--color-bg) 100%);
}

.chapter-product::before {
  color: var(--color-primary) !important;
  background: linear-gradient(135deg, rgba(0, 48, 135, 0.08) 0%, rgba(244, 196, 125, 0.08) 100%) !important;
  border-color: rgba(0, 48, 135, 0.2) !important;
}

/* Chapter Type: Trust */
.chapter-trust {
  background: var(--color-bg-soft);
}

.chapter-trust::before {
  color: var(--color-primary) !important;
}

/* Chapter Type: Why Us */
.chapter-whyus {
  background: var(--color-bg);
  border-top: 1px solid var(--color-border-light);
}

.chapter-whyus::before {
  color: var(--color-warm-gold) !important;
}

/* Chapter Type: Impact (Timeline) */
.chapter-impact {
  background: var(--gradient-dark-section);
  color: var(--color-text-inverse);
}

.chapter-impact::before {
  color: var(--color-warm-gold) !important;
  background: rgba(0, 31, 84, 0.9) !important;
  border-color: rgba(244, 196, 125, 0.3) !important;
}

/* Chapter Type: Final CTA */
.chapter-finalcta {
  background: var(--color-bg-warm);
}

.chapter-finalcta::before {
  color: var(--color-warm-amber) !important;
  border-color: var(--color-border-warm) !important;
}

/* V9: Enhanced Progress Spine with 9 Markers */
.narrative-progress-spine {
  height: 320px; /* Taller for 9 markers */
}

.narrative-progress-marker {
  position: relative;
  cursor: pointer;
}

.narrative-progress-marker::after {
  content: attr(data-num);
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 10px;
  font-weight: 700;
  color: var(--color-text-muted);
  opacity: 0;
  transition: opacity var(--transition-base);
  white-space: nowrap;
}

.narrative-progress-spine.is-visible .narrative-progress-marker::after {
  opacity: 0.7;
}

.narrative-progress-marker.active::after {
  color: var(--color-primary);
  opacity: 1;
}

.narrative-progress-marker.completed::after {
  color: var(--color-warm-gold);
  opacity: 1;
}

/* V9: Chapter Headline Styling */
.chapter-headline {
  font-family: Georgia, 'Times New Roman', serif;
  letter-spacing: var(--letter-spacing-serif);
  line-height: var(--line-height-section);
}

.chapter-subhead {
  font-size: var(--font-body-lg);
  color: var(--color-text-muted);
  max-width: var(--max-width-prose);
  line-height: var(--line-height-body-long);
}

/* Dark chapters override */
.chapter-dark .chapter-subhead,
.chapter-impact .chapter-subhead {
  color: rgba(255, 255, 255, 0.7);
}

/* V9: Chapter Number Badge (Enhanced) */
.narrative-chapter[data-chapter]::before {
  font-family: 'Inter', system-ui, sans-serif;
  font-variant-numeric: tabular-nums;
}

/* V9: Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  .narrative-chapter,
  .narrative-progress-marker,
  .narrative-progress-fill {
    transition: none;
  }
}

/* ==================== V7: CRO LAYER ==================== */

/* Sticky Mobile CTA Bar */
.sticky-cta-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--color-bg);
  border-top: 1px solid var(--color-border);
  padding: 0.875rem 1rem;
  z-index: 99;
  transform: translateY(100%);
  transition: transform var(--transition-smooth);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.08);
  display: none;
}

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

@media (max-width: 768px) {
  .sticky-cta-bar {
    display: block;
  }
}

.sticky-cta-bar .btn {
  width: 100%;
  padding: 0.875rem 1.5rem;
}

.sticky-cta-bar-text {
  font-size: var(--font-xs);
  color: var(--color-text-muted);
  text-align: center;
  margin-bottom: 0.5rem;
}

/* Micro-FAQ (Kompakt, nach Hero) */
.micro-faq {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-top: var(--space-4);
}

.micro-faq-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.875rem;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-full);
  font-size: var(--font-xs);
  color: var(--color-text-muted);
  transition: all var(--transition-base);
}

.micro-faq-item:hover {
  background: rgba(255, 255, 255, 1);
  border-color: var(--color-border-warm);
  color: var(--color-text);
}

.micro-faq-item svg {
  width: 14px;
  height: 14px;
  color: var(--color-primary);
  flex-shrink: 0;
}

/* Reassurance Text */
.reassurance-text {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: var(--font-xs);
  color: var(--color-text-light);
  margin-top: var(--space-3);
}

.reassurance-text svg {
  width: 14px;
  height: 14px;
  color: var(--color-warm-gold);
}

/* Mini-Trust Bar (unter CTAs) */
.mini-trust-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-top: var(--space-3);
  padding-top: var(--space-3);
  border-top: 1px solid var(--color-border-light);
}

.mini-trust-item {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  font-size: var(--font-xs);
  color: var(--color-text-muted);
}

.mini-trust-item svg {
  width: 14px;
  height: 14px;
  color: var(--color-primary);
}

.mini-trust-item.gold svg {
  color: var(--color-warm-gold);
}

/* ==================== V7: TRUST LAYER ==================== */

/* Affirmations Row (nach Why-Us) */
.affirmations-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  padding: var(--space-4) 0;
  margin-top: var(--space-6);
  border-top: 1px solid var(--color-border-light);
}

.affirmation-item {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-size: var(--font-small);
  color: var(--color-text-muted);
}

.affirmation-item svg {
  width: 18px;
  height: 18px;
  color: var(--color-primary);
  flex-shrink: 0;
}

.affirmation-item.gold svg {
  color: var(--color-warm-gold);
}

/* Badge Cluster (unter Hero-Card) */
.badge-cluster {
  display: flex;
  flex-wrap: wrap;
  gap: 0.625rem;
  margin-top: var(--space-3);
}

.badge-cluster-item {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.375rem 0.75rem;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-full);
  font-size: var(--font-xs);
  font-weight: 500;
  color: var(--color-text-muted);
  box-shadow: var(--shadow-xs);
}

.badge-cluster-item svg {
  width: 12px;
  height: 12px;
}

.badge-cluster-item.navy {
  background: rgba(0, 48, 135, 0.05);
  border-color: rgba(0, 48, 135, 0.15);
  color: var(--color-primary);
}

.badge-cluster-item.navy svg {
  color: var(--color-primary);
}

.badge-cluster-item.gold {
  background: rgba(244, 196, 125, 0.1);
  border-color: rgba(244, 196, 125, 0.3);
  color: var(--color-warm-amber);
}

.badge-cluster-item.gold svg {
  color: var(--color-warm-gold);
}

/* Dark Mode CRO/Trust */
.dark-mode .sticky-cta-bar {
  background: var(--color-bg-dark);
  border-color: var(--color-border);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.4);
}

.dark-mode .micro-faq-item {
  background: rgba(15, 30, 50, 0.8);
  border-color: var(--color-border);
}

.dark-mode .badge-cluster-item {
  background: rgba(15, 30, 50, 0.6);
  border-color: var(--color-border);
}

/* --- 5.2 Micro-Walkthrough (Report Wizard) --- */
.walkthrough-steps {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  padding: 2rem;
  background: var(--color-bg-soft);
  border-radius: var(--radius-2xl);
}

.walkthrough-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  text-align: center;
}

.walkthrough-step-icon {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: var(--radius-full);
  background: var(--gradient-primary);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.walkthrough-step-label {
  font-size: var(--font-small);
  font-weight: 600;
  color: var(--color-text);
}

.walkthrough-connector {
  width: 40px;
  height: 2px;
  background: var(--color-border);
  position: relative;
}

.walkthrough-connector::after {
  content: '';
  position: absolute;
  right: -4px;
  top: 50%;
  transform: translateY(-50%);
  border: 4px solid transparent;
  border-left-color: var(--color-border);
}

/* --- 5.3 Micro-SaaS Identity Layer --- */
/* Liniennetz Utilities */
.line-grid {
  background-image:
    linear-gradient(to right, var(--color-border-light) 1px, transparent 1px),
    linear-gradient(to bottom, var(--color-border-light) 1px, transparent 1px);
  background-size: 40px 40px;
}

.line-grid-dense {
  background-size: 20px 20px;
}

.line-grid-sparse {
  background-size: 60px 60px;
}

/* Modulare Kreise */
.circle-pattern {
  background-image: radial-gradient(circle, var(--color-border) 1px, transparent 1px);
  background-size: 30px 30px;
}

.circle-pattern-lg {
  background-size: 50px 50px;
}

/* Variable Dot-Matrix-Dichten */
.dot-matrix-dense {
  --dot-spacing: 20px;
}

.dot-matrix-medium {
  --dot-spacing: 28px;
}

.dot-matrix-sparse {
  --dot-spacing: 40px;
}

/* Abstrakte Shapes Repository */
.abstract-blob {
  border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
}

.abstract-blob-alt {
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
}

.abstract-wave {
  clip-path: polygon(
    0% 0%,
    100% 0%,
    100% 75%,
    75% 85%,
    50% 75%,
    25% 85%,
    0% 75%
  );
}

/* --- 5.4 Haptik Utilities --- */
/* Card-Stapellogik */
.card-stack {
  position: relative;
}

.card-stack-item {
  position: relative;
}

.card-stack-item:nth-child(1) { z-index: 3; }
.card-stack-item:nth-child(2) {
  z-index: 2;
  transform: translateY(8px) scale(0.98);
  opacity: 0.9;
}
.card-stack-item:nth-child(3) {
  z-index: 1;
  transform: translateY(16px) scale(0.96);
  opacity: 0.8;
}

/* Tiefere Schatten */
.shadow-deep {
  box-shadow:
    0 4px 6px rgba(0, 0, 0, 0.03),
    0 12px 24px rgba(0, 0, 0, 0.06),
    0 24px 48px rgba(0, 0, 0, 0.09);
}

.shadow-ultra-deep {
  box-shadow:
    0 8px 16px rgba(0, 0, 0, 0.04),
    0 24px 48px rgba(0, 0, 0, 0.08),
    0 48px 96px rgba(0, 0, 0, 0.12);
}

/* Layered UI */
.layered-card {
  position: relative;
}

.layered-card::before {
  content: '';
  position: absolute;
  inset: -4px;
  background: var(--color-border-light);
  border-radius: calc(var(--radius-2xl) + 4px);
  z-index: -1;
}

.layered-card::after {
  content: '';
  position: absolute;
  inset: -8px;
  background: var(--color-border);
  border-radius: calc(var(--radius-2xl) + 8px);
  z-index: -2;
  opacity: 0.5;
}

/* Glass Morphism Enhanced */
.glass-card {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.dark-mode .glass-card {
  background: rgba(15, 30, 50, 0.7);
  border-color: rgba(255, 255, 255, 0.1);
}

/* ==================== V7: MOBILE EXPERIENCE UPGRADE ==================== */

/* Mobile Hero Optimizations */
@media (max-width: 768px) {
  .hero-section {
    min-height: auto;
    padding-top: var(--space-10);
    padding-bottom: var(--space-8);
  }

  .hero-headline {
    font-size: clamp(2.25rem, 8vw, 3.5rem);
    line-height: 1.1;
  }

  .hero-subheadline {
    font-size: 1rem;
    margin-bottom: var(--space-4);
  }

  .hero-visual {
    margin-top: var(--space-6);
  }

  .hero-card {
    padding: 1.5rem;
  }

  .hero-stats {
    gap: 1rem;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
  }

  .hero-stat-value {
    font-size: 2rem;
  }

  /* Mobile Grid Collapse */
  .split-section {
    grid-template-columns: 1fr;
    gap: var(--space-6);
  }

  .split-section.reverse > *:first-child {
    order: 0;
  }

  /* Mobile Section Spacing */
  .py-20 {
    padding-top: var(--space-8);
    padding-bottom: var(--space-8);
  }

  .py-24 {
    padding-top: var(--space-8);
    padding-bottom: var(--space-8);
  }

  .py-28 {
    padding-top: var(--space-10);
    padding-bottom: var(--space-10);
  }

  /* Mobile Card Grids */
  .why-us-grid,
  .grid.md\:grid-cols-3,
  .grid.md\:grid-cols-2 {
    gap: var(--space-3);
  }

  /* Mobile Tab Viewer */
  .report-viewer-tabs {
    flex-direction: column;
    gap: 0.5rem;
  }

  .report-viewer-tab {
    width: 100%;
    justify-content: flex-start;
  }

  .report-viewer-card {
    padding: 1.25rem;
  }

  /* Mobile Timeline */
  .timeline-horizontal {
    flex-direction: column;
    gap: var(--space-4);
  }

  .timeline-step {
    flex-direction: row;
    text-align: left;
  }

  /* Mobile Final CTA */
  .final-cta-benefits {
    max-width: 100%;
  }

  .final-cta-benefit {
    padding: 0.75rem 1rem;
  }

  /* Mobile FAQ */
  .faq-question {
    padding: 1rem;
    font-size: var(--font-body);
  }

  .faq-answer {
    padding: 0 1rem 1rem;
  }
}

/* Tablet Breakpoint */
@media (max-width: 1024px) and (min-width: 769px) {
  .hero-headline {
    font-size: clamp(2.75rem, 6vw, 4.5rem);
  }

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

/* ==================== V7: FINAL POLISH ==================== */

/* Edge-to-Edge Layouts */
.full-bleed {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
}

/* Section Decorations - Subtle Accent Lines */
.section-accent-line {
  position: absolute;
  height: 3px;
  background: linear-gradient(90deg, var(--color-warm-gold), transparent);
  border-radius: var(--radius-full);
  opacity: 0.4;
}

.section-accent-line-left {
  left: 0;
  width: 120px;
}

.section-accent-line-right {
  right: 0;
  width: 120px;
  background: linear-gradient(270deg, var(--color-primary), transparent);
}

/* V7: Footer Upgrade */
footer {
  position: relative;
  overflow: hidden;
}

footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-warm-gold), transparent);
  opacity: 0.3;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.footer-brand-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(0, 112, 186, 0.15) 0%, rgba(0, 112, 186, 0.25) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary-light);
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

/* V8: Footer text size reduced by 1px */
.footer-link {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  transition: color var(--transition-base);
  position: relative;
}

.footer-link:hover {
  color: rgba(255, 255, 255, 0.9);
}

.footer-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--color-warm-gold);
  transition: width var(--transition-base);
}

.footer-link:hover::after {
  width: 100%;
}

/* V8: Footer padding bottom increased */
footer {
  padding-bottom: var(--space-4);
}

/* V8: Thinner gold accent line in footer */
footer::before {
  height: 1px;
  opacity: 0.25;
}

/* V7: Hero Tax Badge Animation */
.hero-tax-badge {
  animation: subtlePulse 3s ease-in-out infinite;
}

@keyframes subtlePulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.85; }
}

/* V7: Gold Accent Reduction - Softer Glow */
.check-icon-gold,
.why-us-icon-gold {
  --glow-intensity: 0.15;
}

/* V7: Reduced Motion Fallback */
@media (prefers-reduced-motion: reduce) {
  .hero-tax-badge,
  .narrative-progress-fill,
  .sticky-cta-bar {
    animation: none;
    transition: none;
  }
}

/* ==================== V8: PERFORMANCE NOTES ==================== */
/*
 * Pixel Perfect Mastering Pass - V8 Optimierungen:
 *
 * 1. Typografie: Display -2%, line-height 1.03 Hero / 1.10 Sections
 * 2. Textfarbe dunkler: #0e1525 statt #1e293b
 * 3. Gold-Intensität 80%, Glow 0.12 statt 0.15
 * 4. Dot-Matrix: 0.08 light, 0.05 warm, 0.12 dark
 * 5. Cards: einheitlich 14px Radius, shadow rgba(0,0,0,0.07)
 * 6. Buttons: Primary darker hover, inner glow, font-weight 600
 * 7. Organic Blobs: wärmer (#F7F1EB, #F3E7DA), blur 110px
 * 8. Final CTA: Benefits gap 12px, Button scale(1.03) hover
 * 9. Footer: Gold-Linie 1px, Text 1px kleiner, padding-bottom 32px
 * 10. max-width 72ch für Body-Text
 */
