/* ═══════════════════════════════════════════════════════════════
   LEVINA AI – style.css  (Redesign v3 – Everlast Dark Style)
   JetBrains Mono Headlines · Space Grotesk Body · Gold Pill-Buttons
   Dark Cards · Grid Texture · Glow Orbs · Mobile-First
═══════════════════════════════════════════════════════════════ */

/* ───────────────────────────────────────────
   FONT-FACE (self-hosted, DSGVO-konform)
─────────────────────────────────────────── */
@font-face {
  font-family: 'JetBrains Mono';
  src: url('../assets/fonts/JetBrainsMono-Bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Space Grotesk';
  src: url('../assets/fonts/SpaceGrotesk-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Space Grotesk';
  src: url('../assets/fonts/SpaceGrotesk-Medium.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Space Grotesk';
  src: url('../assets/fonts/SpaceGrotesk-Bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* ───────────────────────────────────────────
   CUSTOM PROPERTIES
─────────────────────────────────────────── */
:root {
  /* Everlast-Dark Farbpalette – Levina AI */
  --bg:           #0a0a0f;
  --card:         #111118;
  --surface:      #16161f;
  --border:       #1e1e2a;
  --gold:         #FFD700;
  --gold-light:   #fff3a0;
  --gold-dim:     rgba(255, 215, 0, 0.08);
  --gold-border:  rgba(255, 215, 0, 0.15);
  --gold-glow:    rgba(255, 215, 0, 0.25);
  --text:         #ffffff;
  --text-soft:    #d0d0d8;
  --text-muted:   #9a9aaa;
  --text-dim:     rgba(200, 200, 216, 0.55);
  --text-faint:   rgba(200, 200, 216, 0.3);
  --silver:       #b8b8c8;

  /* Typografie */
  --font-headline: 'JetBrains Mono', 'Courier New', monospace;
  --font-body:     'Space Grotesk', system-ui, sans-serif;

  /* Spacing */
  --space-xs:  0.5rem;
  --space-sm:  1rem;
  --space-md:  2rem;
  --space-lg:  4rem;
  --space-xl:  6rem;
  --space-2xl: 9rem;

  /* Layout */
  --max-w:    1160px;
  --pad-x:    1.25rem;

  /* Transitions */
  --t:        0.3s ease;
  --t-slow:   0.5s cubic-bezier(0.16, 1, 0.3, 1);

  /* Radien */
  --r-sm:   6px;
  --r-md:   16px;
  --r-lg:   20px;
  --r-pill: 50px;
}

/* ───────────────────────────────────────────
   RESET
─────────────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text);
  background-color: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/* ───────────────────────────────────────────
   GRID TEXTURE (Everlast Reference)
─────────────────────────────────────────── */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  z-index: 0;
}

/* ───────────────────────────────────────────
   GLOW ORBS (ambient light, fixed)
─────────────────────────────────────────── */
.glow-orb {
  position: fixed;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  filter: blur(150px);
}
.glow-1 {
  width: 700px;
  height: 700px;
  background: rgba(200, 200, 220, 0.04);
  top: -200px;
  left: -100px;
}
.glow-2 {
  width: 500px;
  height: 500px;
  background: rgba(200, 200, 220, 0.025);
  bottom: 5%;
  right: -150px;
}

img, svg {
  display: block;
  max-width: 100%;
}

ul { list-style: none; }

a {
  color: inherit;
  text-decoration: none;
}

button {
  font-family: var(--font-body);
  cursor: pointer;
  border: none;
  background: none;
}

::selection {
  background: var(--gold);
  color: var(--bg);
}

/* ───────────────────────────────────────────
   Z-INDEX LAYERING
─────────────────────────────────────────── */
.page-main,
.site-header,
.site-footer {
  position: relative;
  z-index: 1;
}

/* ───────────────────────────────────────────
   SECTION EYEBROW
─────────────────────────────────────────── */
.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-headline);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  text-align: center;
  justify-content: center;
  width: 100%;
}

/* ───────────────────────────────────────────
   UTILITIES
─────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--pad-x);
}

.text-gold   { color: var(--gold); }
.logo-accent { color: var(--gold); }

/* Eyebrow / Section-Label */
.eyebrow-label {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-headline);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  background: var(--gold-dim);
  border: 1px solid var(--gold-border);
  padding: 0.4rem 1.1rem;
  border-radius: var(--r-pill);
  margin-bottom: 1.5rem;
}

/* ───────────────────────────────────────────
   BUTTONS (Pill-Shape, Everlast-Stil)
─────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.9375rem;
  letter-spacing: 0.01em;
  border-radius: var(--r-pill);
  white-space: nowrap;
  transition: transform var(--t), box-shadow var(--t), background-color var(--t), border-color var(--t), color var(--t);
  cursor: pointer;
  border: 1px solid transparent;
  text-align: center;
}

.btn:active { transform: scale(0.97); }

/* Gold (primär) – Gradient mit Glow */
.btn--gold {
  background: linear-gradient(135deg, #FFD700 0%, #fff3a0 55%, #FFD700 100%);
  color: #0a0a0f;
  border-color: transparent;
  box-shadow: 0 4px 20px rgba(255, 215, 0, 0.15);
}
.btn--gold:hover {
  transform: translateY(-3px);
  box-shadow:
    0 12px 40px rgba(255, 215, 0, 0.35),
    0 0 60px rgba(255, 215, 0, 0.1);
  background: linear-gradient(135deg, #ffe84d 0%, #fffbd2 55%, #ffe84d 100%);
}

/* Ghost (sekundär) */
.btn--ghost {
  background: transparent;
  color: var(--text-muted);
  border: 1px solid var(--border);
  border-radius: var(--r-pill);
}
.btn--ghost:hover {
  border-color: rgba(255, 215, 0, 0.3);
  color: var(--gold);
  background: var(--gold-dim);
}

/* Größen */
.btn--sm  { padding: 0.55rem 1.25rem; font-size: 0.85rem;   min-height: 40px; }
.btn--lg  { padding: 0.85rem 1.75rem; font-size: 0.9375rem; min-height: 52px; }
.btn--xl  { padding: 1rem 2.25rem;    font-size: 1.0625rem; min-height: 60px; }

/* ───────────────────────────────────────────
   SECTIONS GLOBAL
─────────────────────────────────────────── */
section {
  position: relative;
  z-index: 1;
  padding-block: var(--space-lg);
}

.section-headline {
  font-family: var(--font-headline);
  font-size: clamp(1.75rem, 5vw, 2.75rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.025em;
  margin-bottom: var(--space-lg);
  text-align: center;
}

.section-headline em {
  font-style: normal;
}

.section-cta {
  margin-top: var(--space-md);
  display: flex;
  justify-content: center;
}

/* ───────────────────────────────────────────
   SCROLL-ANIMATION
─────────────────────────────────────────── */
[data-animate] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity var(--t-slow), transform var(--t-slow);
}
[data-animate].is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ───────────────────────────────────────────
   KEYFRAMES
─────────────────────────────────────────── */
@keyframes pulse-ring {
  0%   { transform: scale(1);   opacity: 0.8; }
  100% { transform: scale(1.6); opacity: 0; }
}

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

/* ───────────────────────────────────────────
   1. NAVIGATION
─────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 10, 15, 0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--t), background-color var(--t);
}

.site-header.scrolled {
  background: rgba(10, 10, 15, 0.97);
  box-shadow: 0 1px 0 var(--border), 0 8px 32px rgba(0, 0, 0, 0.6);
}

.nav-inner {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  max-width: var(--max-w);
  margin-inline: auto;
  padding: 0.875rem var(--pad-x);
}

.nav-logo {
  font-family: var(--font-headline);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  flex-shrink: 0;
  color: var(--text);
}

.logo-accent { color: var(--gold); }

.nav-links {
  display: none;
  gap: 2rem;
  margin-inline: auto;
}

.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color var(--t);
  letter-spacing: 0.01em;
}
.nav-links a:hover { color: var(--text); }

/* Hamburger */
.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  margin-left: auto;
  padding: 8px;
  flex-shrink: 0;
}
.hamburger span {
  display: block;
  height: 1.5px;
  background-color: var(--text);
  border-radius: 2px;
  transition: transform var(--t), opacity var(--t);
}
.hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile Nav */
@media (max-width: 767px) {
  #calendly-nav { display: none; }

  .nav-links {
    position: fixed;
    inset: 0;
    top: 62px;
    background: rgba(10, 10, 15, 0.98);
    backdrop-filter: blur(20px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding-top: 3.5rem;
    gap: 2.5rem;
    transform: translateX(100%);
    transition: transform 0.3s cubic-bezier(0.86, 0, 0.07, 1);
    z-index: 99;
  }
  .nav-links.is-open { transform: translateX(0); }
  .nav-links a {
    font-size: 1.4rem;
    color: var(--text);
  }
}

@media (min-width: 768px) {
  .hamburger  { display: none; }
  .nav-links  { display: flex; }
}

/* ───────────────────────────────────────────
   2. HERO – Dramatic Aurora Style
─────────────────────────────────────────── */
.hero {
  position: relative;
  z-index: 1;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding-block: var(--space-2xl);
  overflow: hidden;
  text-align: center;
  background: #050508;
}

/* ── Aurora Background ── */
.hero-aurora {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

.hero-aurora__blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.7;
  will-change: transform;
}

.hero-aurora__blob--1 {
  width: 900px;
  height: 900px;
  background: radial-gradient(circle, rgba(255, 215, 0, 0.18) 0%, rgba(255, 180, 0, 0.05) 40%, transparent 70%);
  top: -35%;
  left: 50%;
  transform: translateX(-50%);
  animation: aurora-drift-1 12s ease-in-out infinite;
}

.hero-aurora__blob--2 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(160, 120, 255, 0.1) 0%, rgba(120, 80, 255, 0.03) 40%, transparent 70%);
  bottom: -15%;
  left: -8%;
  animation: aurora-drift-2 15s ease-in-out infinite;
}

.hero-aurora__blob--3 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(80, 180, 255, 0.08) 0%, rgba(60, 140, 220, 0.02) 40%, transparent 70%);
  top: 15%;
  right: -8%;
  animation: aurora-drift-3 18s ease-in-out infinite;
}

@keyframes aurora-drift-1 {
  0%, 100% { transform: translateX(-50%) translateY(0) scale(1); }
  33%      { transform: translateX(-45%) translateY(30px) scale(1.1); }
  66%      { transform: translateX(-55%) translateY(-20px) scale(0.95); }
}

@keyframes aurora-drift-2 {
  0%, 100% { transform: translateY(0) scale(1); }
  50%      { transform: translateY(-40px) scale(1.15); }
}

@keyframes aurora-drift-3 {
  0%, 100% { transform: translateY(0) scale(1) rotate(0deg); }
  50%      { transform: translateY(30px) scale(1.1) rotate(10deg); }
}

/* ── Radial Spotlight (center focus) ── */
.hero-spotlight {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 1400px;
  height: 100%;
  background:
    radial-gradient(ellipse 50% 40% at 50% 30%, rgba(255, 215, 0, 0.03) 0%, transparent 70%),
    radial-gradient(ellipse 80% 60% at 50% 40%, rgba(255, 255, 255, 0.02) 0%, transparent 70%);
  pointer-events: none;
  z-index: 1;
}

/* ── Noise Texture ── */
.hero-noise {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 256px 256px;
  pointer-events: none;
  z-index: 2;
  opacity: 0.4;
}

/* ── Hero Content ── */
.hero-content {
  position: relative;
  z-index: 3;
}

/* ── Hero Eyebrow Badge ── */
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-headline);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(255, 215, 0, 0.06);
  border: 1px solid rgba(255, 215, 0, 0.2);
  padding: 0.5rem 1.4rem;
  border-radius: var(--r-pill);
  margin-bottom: 2.5rem;
  animation: fadeIn 0.8s ease-out both;
}

.hero-eyebrow__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  display: inline-block;
  animation: dot-pulse 2s ease-in-out infinite;
  box-shadow: 0 0 8px rgba(255, 215, 0, 0.6);
}

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

/* ── H1 – Dramatic Mixed Typography ── */
.hero-headline {
  font-family: var(--font-body);
  font-size: clamp(2.25rem, 6vw, 4rem);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.015em;
  margin-bottom: 1.75rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 18em;
  margin-inline: auto;
  animation: fadeIn 1s ease-out 0.2s both;
}

.hero-headline strong {
  font-weight: 700;
  color: #ffffff;
}

.hero-headline em {
  font-style: italic;
  font-weight: 700;
  color: #ffffff;
  background: linear-gradient(135deg, #FFD700 0%, #fff3a0 50%, #FFD700 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ── Subline ── */
.hero-sub {
  font-size: clamp(0.9rem, 1.8vw, 1.1rem);
  color: var(--text-muted);
  max-width: 50ch;
  margin-inline: auto;
  margin-bottom: var(--space-lg);
  line-height: 1.7;
  animation: fadeIn 1s ease-out 0.4s both;
}

/* ── Hero CTAs ── */
.hero-ctas {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  animation: fadeIn 1s ease-out 0.6s both;
}

@media (min-width: 480px) {
  .hero-ctas {
    flex-direction: row;
    justify-content: center;
    gap: 1rem;
  }
}

/* ── Trust Signals ── */
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.6rem;
  margin-top: 3.5rem;
  animation: fadeIn 1s ease-out 0.8s both;
}

.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.78rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--r-pill);
  padding: 0.4rem 0.9rem;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: border-color var(--t), color var(--t), background var(--t);
}

.trust-badge:hover {
  border-color: rgba(255, 215, 0, 0.2);
  color: rgba(255, 255, 255, 0.8);
  background: rgba(255, 215, 0, 0.04);
}

.trust-badge__icon {
  color: var(--gold);
  font-weight: 700;
  font-size: 0.7rem;
}

/* ── Hero Rule (bottom glow line) ── */
.hero-rule {
  width: 200px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 3rem auto 0;
  opacity: 0.3;
}

/* ── Divider-Linie unter Hero ── */
.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.15), transparent);
}

/* ── Hero bottom gradient fade ── */
.hero::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 200px;
  background: linear-gradient(to top, var(--bg), transparent);
  z-index: 2;
  pointer-events: none;
}

/* ───────────────────────────────────────────
   DARK CARD – Basisstil (Everlast)
─────────────────────────────────────────── */
.dark-card {
  background: linear-gradient(145deg, #111118, #16161f);
  border: 1px solid #1e1e2a;
  border-radius: var(--r-lg);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
  position: relative;
  overflow: hidden;
  transition: transform var(--t-slow), box-shadow var(--t-slow), border-color var(--t);
}

/* Top-Border Gold-Flash */
.dark-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, #FFD700, transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}

/* Inner Radial Glow */
.dark-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(255, 215, 0, 0.05), transparent 60%);
  opacity: 0;
  transition: opacity 0.5s ease;
}

.dark-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 40px rgba(255, 215, 0, 0.06);
  border-color: rgba(255, 215, 0, 0.15);
}
.dark-card:hover::before { opacity: 1; }
.dark-card:hover::after  { opacity: 1; }

/* ───────────────────────────────────────────
   3. PROBLEM-AGITATION – Dramatic
─────────────────────────────────────────── */
.problem {
  background-color: #060609;
  padding-block: var(--space-2xl);
  position: relative;
  overflow: hidden;
}

.problem-aurora {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.problem-aurora__blob {
  position: absolute;
  width: 800px;
  height: 600px;
  background: radial-gradient(ellipse, rgba(255, 60, 60, 0.06) 0%, transparent 70%);
  top: -20%;
  left: 50%;
  transform: translateX(-50%);
  filter: blur(100px);
  animation: aurora-drift-2 20s ease-in-out infinite;
}

.problem-intro {
  text-align: center;
  margin-bottom: var(--space-lg);
  position: relative;
  z-index: 1;
}

.section-sub {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 48ch;
  margin: 0 auto;
  line-height: 1.7;
}

.text-gradient-red {
  font-style: normal;
  background: linear-gradient(135deg, #ff6b6b 0%, #ff4444 50%, #cc3333 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Eyebrow dot (reusable) */
.eyebrow-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  display: inline-block;
  margin-right: 0.5rem;
  vertical-align: middle;
  box-shadow: 0 0 8px rgba(255, 215, 0, 0.6);
  animation: dot-pulse 2s ease-in-out infinite;
}

.problem-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  position: relative;
  z-index: 1;
}

@media (min-width: 640px) {
  .problem-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
  }
}

/* Problem-Card: Dark Gradient + Red Glow on Hover */
.problem-card {
  background: linear-gradient(160deg, rgba(20, 20, 30, 0.8) 0%, rgba(15, 15, 22, 0.9) 100%);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 20px;
  padding: 0;
  position: relative;
  overflow: hidden;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.5s, border-color 0.3s;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
  display: flex;
  flex-direction: column;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

/* Shimmer-Linie oben */
.problem-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 10%, rgba(255, 100, 100, 0.15) 50%, transparent 90%);
}

/* Inner Glow von oben */
.problem-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 120px;
  background: radial-gradient(ellipse at 50% 0%, rgba(255, 80, 80, 0.04) 0%, transparent 70%);
  pointer-events: none;
}

/* Red inner glow element */
.problem-card__glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(255, 60, 60, 0.06) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}

.problem-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6), 0 0 50px rgba(255, 60, 60, 0.06);
  border-color: rgba(255, 80, 80, 0.15);
}
.problem-card:hover .problem-card__glow { opacity: 1; }

/* Nummerierung */
.problem-num {
  font-family: var(--font-headline);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 100, 100, 0.4);
  padding: 2rem 2rem 0;
  position: relative;
  z-index: 1;
}

/* Stat / Headline */
.problem-stat {
  font-family: var(--font-headline);
  font-size: clamp(1.3rem, 3vw, 1.75rem);
  font-weight: 700;
  color: var(--text);
  line-height: 1.2;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
  position: relative;
  z-index: 1;
  padding: 0.75rem 2rem 0;
}

.stat-accent {
  color: rgba(255, 100, 100, 0.7);
}

/* Beschreibung */
.problem-desc {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.7;
  position: relative;
  z-index: 1;
  padding: 0 2rem 2rem;
  flex: 1;
}
.problem-desc em {
  color: rgba(255, 100, 100, 0.6);
  font-style: italic;
}

/* ───────────────────────────────────────────
   4. DEMO-SECTION – Dramatic
─────────────────────────────────────────── */
.demo {
  padding-block: var(--space-2xl);
  background: #060609;
  position: relative;
  overflow: hidden;
}

.demo::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.1), transparent);
}

.demo-aurora {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.demo-aurora__blob {
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(ellipse, rgba(255, 215, 0, 0.06) 0%, transparent 70%);
  top: 10%;
  left: 50%;
  transform: translateX(-50%);
  filter: blur(100px);
  animation: aurora-drift-1 16s ease-in-out infinite;
}

.demo .container { position: relative; z-index: 1; }

.text-gradient-gold {
  font-style: normal;
  background: linear-gradient(135deg, #FFD700 0%, #fff3a0 50%, #FFD700 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Audio Player – Dramatic Glow Card */
.audio-player {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  background: linear-gradient(145deg, rgba(17, 17, 24, 0.95), rgba(22, 22, 31, 0.95));
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: var(--r-lg);
  padding: 2rem;
  margin-bottom: var(--space-lg);
  max-width: 560px;
  margin-inline: auto;
  box-shadow:
    0 4px 30px rgba(0, 0, 0, 0.5),
    0 0 60px rgba(255, 215, 0, 0.05),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  transition: box-shadow 0.5s, border-color 0.3s, transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  position: relative;
}
.audio-player::after {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: var(--r-lg);
  background: radial-gradient(circle at 50% 0%, rgba(255, 215, 0, 0.08), transparent 50%);
  pointer-events: none;
  z-index: 0;
}
.audio-player > * { position: relative; z-index: 1; }
.audio-player:hover {
  border-color: rgba(255, 215, 0, 0.35);
  box-shadow:
    0 25px 60px rgba(0, 0, 0, 0.6),
    0 0 80px rgba(255, 215, 0, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  transform: translateY(-4px);
}

/* Play-Button */
.audio-play-btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  min-width: 60px;
  background: linear-gradient(135deg, #FFD700 0%, #fff3a0 55%, #FFD700 100%);
  border-radius: 50%;
  transition: transform var(--t), box-shadow var(--t);
  flex-shrink: 0;
}
.audio-play-btn:hover {
  transform: scale(1.06);
  box-shadow: 0 0 30px rgba(255, 215, 0, 0.35);
}
.audio-play-btn:active { transform: scale(0.96); }

.play-svg {
  width: 20px;
  height: 20px;
  fill: #0a0a0f;
  position: relative;
  z-index: 1;
  margin-left: 3px;
}

/* Pulse-Ring */
.audio-ring {
  position: absolute;
  inset: -5px;
  border-radius: 50%;
  border: 2px solid rgba(255, 215, 0, 0.5);
  opacity: 0;
}
.audio-play-btn.is-playing .audio-ring {
  animation: pulse-ring 1.8s ease-out infinite;
}

.audio-info { flex: 1; min-width: 0; }

.audio-label {
  display: block;
  font-size: 0.775rem;
  font-weight: 500;
  color: var(--text-muted);
  margin-bottom: 0.6rem;
  letter-spacing: 0.02em;
}

.audio-progress-wrap {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.audio-progress-bar {
  flex: 1;
  height: 3px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 2px;
  cursor: pointer;
  overflow: hidden;
}

.audio-progress-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #FFD700, #fff3a0);
  border-radius: 2px;
  transition: width 0.1s linear;
}

.audio-time {
  font-family: var(--font-headline);
  font-size: 0.75rem;
  color: var(--text-muted);
  flex-shrink: 0;
}

/* Demo Bullets */
.demo-bullets {
  max-width: 560px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.demo-bullets li {
  display: flex;
  gap: 0.875rem;
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--text-muted);
}

.bullet-icon {
  color: var(--silver);
  font-family: var(--font-headline);
  font-size: 0.85rem;
  flex-shrink: 0;
  margin-top: 0.2em;
  font-weight: 700;
}

.play-icon {
  font-size: 0.85rem;
  margin-right: 0.15em;
}

/* Audio-Player: schmale Viewports */
@media (max-width: 400px) {
  .audio-player {
    flex-direction: column;
    text-align: center;
  }
}

/* ───────────────────────────────────────────
   5. KONKRETER NUTZEN – Dramatic
─────────────────────────────────────────── */
.nutzen {
  background: var(--bg);
  padding-block: var(--space-2xl);
  position: relative;
  overflow: hidden;
}

.nutzen::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.1), transparent);
}

.nutzen-aurora {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.nutzen-aurora__blob {
  position: absolute;
  width: 700px;
  height: 500px;
  background: radial-gradient(ellipse, rgba(100, 200, 255, 0.05) 0%, transparent 70%);
  bottom: -20%;
  right: -10%;
  filter: blur(100px);
  animation: aurora-drift-3 20s ease-in-out infinite;
}

.nutzen .container { position: relative; z-index: 1; }

.nutzen-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

@media (min-width: 640px) {
  .nutzen-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.nutzen-card {
  background: linear-gradient(160deg, rgba(17, 17, 24, 0.8) 0%, rgba(22, 22, 31, 0.9) 100%);
  border: 1px solid rgba(255, 215, 0, 0.06);
  border-radius: 24px;
  padding: 2.5rem 2rem;
  position: relative;
  overflow: hidden;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s, box-shadow 0.5s;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

/* Gold shimmer top */
.nutzen-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 10%, rgba(255, 215, 0, 0.15) 50%, transparent 90%);
  opacity: 0;
  transition: opacity 0.4s;
}

/* Inner glow */
.nutzen-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(255, 215, 0, 0.04) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.5s;
  pointer-events: none;
}

.nutzen-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 215, 0, 0.15);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5), 0 0 40px rgba(255, 215, 0, 0.05);
}
.nutzen-card:hover::before,
.nutzen-card:hover::after { opacity: 1; }

.nutzen-icon {
  width: 42px;
  height: 42px;
  color: var(--gold);
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
  opacity: 0.7;
}
.nutzen-icon svg {
  width: 100%;
  height: 100%;
}

.nutzen-card h3 {
  font-family: var(--font-headline);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  letter-spacing: -0.01em;
  line-height: 1.3;
  position: relative;
  z-index: 1;
}

.nutzen-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
  position: relative;
  z-index: 1;
}

/* ───────────────────────────────────────────
   6. TRUST-SECTION – Dramatic
─────────────────────────────────────────── */
.trust {
  padding-block: var(--space-2xl);
  background: #060609;
  position: relative;
  overflow: hidden;
}

.trust::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.1), transparent);
}

.trust-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  max-width: 680px;
  margin-inline: auto;
}

.trust-list li {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text-soft);
  padding: 1.5rem 2rem;
  background: linear-gradient(160deg, rgba(17, 17, 24, 0.7) 0%, rgba(22, 22, 31, 0.8) 100%);
  border: 1px solid rgba(255, 215, 0, 0.06);
  border-radius: 16px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: border-color 0.3s, transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.5s;
  position: relative;
  overflow: hidden;
}

/* Shimmer top */
.trust-list li::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 10%, rgba(255, 215, 0, 0.1) 50%, transparent 90%);
  opacity: 0;
  transition: opacity 0.4s;
}

.trust-list li:hover {
  border-color: rgba(255, 215, 0, 0.15);
  transform: translateY(-4px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4), 0 0 30px rgba(255, 215, 0, 0.04);
}
.trust-list li:hover::before { opacity: 1; }

.trust-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  min-width: 24px;
  border-radius: 50%;
  background: rgba(255, 215, 0, 0.1);
  border: 1px solid rgba(255, 215, 0, 0.3);
  color: var(--gold);
  font-family: var(--font-headline);
  font-size: 0.7rem;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 0.15em;
}

/* ───────────────────────────────────────────
   7. GRÜNDER-SECTION – Dramatic
─────────────────────────────────────────── */
.founder {
  background: var(--bg);
  padding-block: var(--space-2xl);
  position: relative;
  overflow: hidden;
}

.founder::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.1), transparent);
}

.founder-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  align-items: start;
}

@media (min-width: 800px) {
  .founder-inner {
    grid-template-columns: 340px 1fr;
    align-items: center;
    gap: var(--space-xl);
  }
}

.founder-image-wrap {
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(255, 215, 0, 0.2);
  max-width: 340px;
  margin-inline: auto;
  box-shadow:
    0 0 80px rgba(255, 215, 0, 0.08),
    0 25px 60px rgba(0, 0, 0, 0.5);
  position: relative;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.5s;
}
.founder-image-wrap:hover {
  transform: translateY(-6px);
  box-shadow:
    0 0 100px rgba(255, 215, 0, 0.12),
    0 30px 70px rgba(0, 0, 0, 0.6);
}
.founder-image-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(10, 10, 15, 0.4) 100%);
  pointer-events: none;
}

.founder-photo {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  filter: contrast(1.05) brightness(0.95);
}

.founder-role {
  font-family: var(--font-headline);
  font-size: 0.85rem;
  color: var(--silver);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}

.founder-bio {
  font-size: 0.9375rem;
  line-height: 1.75;
  color: var(--text-muted);
  margin-bottom: 1rem;
}
.founder-bio:last-of-type {
  color: var(--text);
  font-weight: 700;
  font-style: italic;
  font-size: 1.05rem;
  background: linear-gradient(135deg, #FFD700 0%, #fff3a0 50%, #FFD700 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.founder-linkedin {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 0.75rem;
  transition: color var(--t);
}
.founder-linkedin:hover { color: var(--gold); }

.linkedin-icon {
  width: 17px;
  height: 17px;
  fill: currentColor;
  flex-shrink: 0;
}

/* ───────────────────────────────────────────
   9. CTA-SECTION – Maximum Impact
─────────────────────────────────────────── */
.cta-section {
  position: relative;
  z-index: 1;
  text-align: center;
  padding-block: var(--space-2xl) calc(var(--space-2xl) + 2rem);
  background: #050508;
  overflow: hidden;
}

.cta-aurora {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.cta-aurora__blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
}
.cta-aurora__blob--1 {
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(255, 215, 0, 0.14) 0%, transparent 60%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: aurora-drift-1 14s ease-in-out infinite;
}
.cta-aurora__blob--2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(160, 120, 255, 0.06) 0%, transparent 70%);
  bottom: -10%;
  left: 10%;
  animation: aurora-drift-2 18s ease-in-out infinite;
}

.cta-section .container { position: relative; z-index: 1; }

.cta-headline {
  font-family: var(--font-headline);
  font-size: clamp(2rem, 6vw, 3.5rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin-bottom: 1.25rem;
}

.cta-sub {
  font-size: 1rem;
  color: var(--text-muted);
  margin-bottom: var(--space-lg);
  max-width: 50ch;
  margin-inline: auto;
  line-height: 1.7;
}

.cta-meta {
  margin-top: 1.5rem;
  font-size: 0.78rem;
  color: rgba(200, 200, 216, 0.35);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ───────────────────────────────────────────
   10. FOOTER – Premium
─────────────────────────────────────────── */
.site-footer {
  position: relative;
  z-index: 1;
  background: #040407;
  border-top: 1px solid rgba(255, 215, 0, 0.08);
  padding-block: var(--space-xl) var(--space-md);
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
  .footer-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.footer-brand { }

.footer-logo {
  font-family: var(--font-headline);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  margin-bottom: 0.3rem;
}

.footer-slogan {
  font-size: 0.82rem;
  color: var(--text-muted);
  letter-spacing: 0.01em;
}

.footer-nav {
  display: flex;
  gap: 1.5rem;
}

.footer-nav a {
  font-size: 0.85rem;
  color: var(--text-muted);
  transition: color var(--t);
}
.footer-nav a:hover { color: var(--gold); }

.footer-copy {
  font-size: 0.75rem;
  color: rgba(200, 200, 216, 0.2);
  letter-spacing: 0.02em;
}

.calendly-placeholder {
  display: inline-flex;
}

/* ───────────────────────────────────────────
   CALENDLY INLINE (nach Klick)
─────────────────────────────────────────── */
.calendly-inline-widget {
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid rgba(255, 215, 0, 0.15);
  box-shadow: 0 0 40px rgba(255, 215, 0, 0.05);
  margin-top: var(--space-sm);
}

/* ───────────────────────────────────────────
   FOCUS-VISIBLE
─────────────────────────────────────────── */
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: var(--r-sm);
}

/* ───────────────────────────────────────────
   H1, H2, H3 – alle Überschriften Mono
─────────────────────────────────────────── */
h1, h2, h3 {
  font-family: var(--font-headline);
  font-weight: 700;
}

h1 {
  font-size: clamp(2.25rem, 7.5vw, 4.5rem);
  letter-spacing: -0.03em;
  line-height: 1.1;
}

h2 {
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  letter-spacing: -0.02em;
  line-height: 1.2;
}

h3 {
  font-size: clamp(1rem, 2vw, 1.25rem);
  letter-spacing: -0.01em;
  line-height: 1.3;
}

/* ───────────────────────────────────────────
   3b. PROCESS-SECTION – Dramatic Steps
─────────────────────────────────────────── */
.process {
  background: var(--bg);
  padding-block: var(--space-2xl);
  position: relative;
  overflow: hidden;
}

.process::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.12), transparent);
}

.process-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  position: relative;
}

@media (min-width: 640px) {
  .process-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
}

/* Connecting arrow between cards (desktop only, via HTML spans) */
.process-connector {
  display: none;
}
@media (min-width: 640px) {
  .process-connector {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 3rem;
    right: -0.75rem;
    z-index: 5;
    width: 1.5rem;
    pointer-events: none;
  }
  .process-connector::before {
    content: '›';
    font-family: var(--font-headline);
    font-size: 1.25rem;
    color: var(--gold);
    opacity: 0.5;
    text-shadow: 0 0 8px rgba(255, 215, 0, 0.3);
  }
}

.process-card {
  position: relative;
  background: linear-gradient(160deg, rgba(17, 17, 24, 0.9) 0%, rgba(22, 22, 31, 0.9) 100%);
  border: 1px solid rgba(255, 215, 0, 0.06);
  border-radius: 24px;
  padding: 2.5rem 2rem 2.5rem;
  overflow: hidden;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.5s, border-color 0.3s;
  text-align: center;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

/* Gold shimmer top */
.process-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}

/* Inner radial glow */
.process-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 150px;
  background: radial-gradient(ellipse at 50% 0%, rgba(255, 215, 0, 0.04) 0%, transparent 70%);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.process-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5), 0 0 40px rgba(255, 215, 0, 0.06);
  border-color: rgba(255, 215, 0, 0.15);
}
.process-card:hover::before,
.process-card:hover::after { opacity: 1; }

.process-step {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255, 215, 0, 0.3);
  background: rgba(255, 215, 0, 0.06);
  font-family: var(--font-headline);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--gold);
  margin: 0 auto 1.5rem;
  position: relative;
  z-index: 3;
}

.process-icon {
  width: 44px;
  height: 44px;
  color: var(--gold);
  margin: 0 auto 1.25rem;
  position: relative;
  z-index: 1;
  opacity: 0.7;
}
.process-icon svg {
  width: 100%;
  height: 100%;
}

.process-card h3 {
  font-family: var(--font-headline);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  letter-spacing: -0.01em;
  line-height: 1.3;
  position: relative;
  z-index: 1;
}

.process-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
  position: relative;
  z-index: 1;
}

/* ───────────────────────────────────────────
   STATS-BANNER – Dramatic
─────────────────────────────────────────── */
.stats-banner {
  position: relative;
  z-index: 1;
  padding-block: var(--space-xl);
  background: #050508;
  overflow: hidden;
}

/* Gold line top + bottom */
.stats-banner::before,
.stats-banner::after {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.2), transparent);
}
.stats-banner::before { top: 0; }
.stats-banner::after { bottom: 0; }

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  text-align: center;
}

@media (min-width: 640px) {
  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
  }

  /* Vertical dividers between stats */
  .stat-item + .stat-item {
    border-left: 1px solid rgba(255, 215, 0, 0.08);
  }
}

.stat-item {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 1rem;
}

.stat-value {
  font-family: var(--font-headline);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1;
  background: linear-gradient(135deg, #FFD700 0%, #fff3a0 50%, #FFD700 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 20px rgba(255, 215, 0, 0.15));
}

.stat-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
}

/* ───────────────────────────────────────────
   FOOTER EXTENDED (Multi-Column)
─────────────────────────────────────────── */
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 215, 0, 0.06);
  margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr 1fr;
  }
}

.footer-col__title {
  font-family: var(--font-headline);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-soft);
  margin-bottom: 0.75rem;
}

.footer-col nav {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-col nav a {
  font-size: 0.85rem;
  color: var(--text-muted);
  transition: color var(--t);
}
.footer-col nav a:hover { color: var(--gold); }

.footer-bottom {
  text-align: center;
}

/* Section-Trennlinien (Global) */
.nutzen::before,
.trust::before,
.founder::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.06), transparent);
}
