﻿/* ══════════════════════════════════════════════════════
   AVERIO MEDIA — PREMIUM CSS
   Dark mode · Glassmorphism · Premium color system
══════════════════════════════════════════════════════ */

/* ── Lokale Webfonts (DSGVO-konform, kein Google CDN) ── */
@font-face { font-family: 'Syne'; font-style: normal; font-weight: 400; font-display: swap; src: url('fonts/syne-400.ttf') format('truetype'); }
@font-face { font-family: 'Syne'; font-style: normal; font-weight: 600; font-display: swap; src: url('fonts/syne-600.ttf') format('truetype'); }
@font-face { font-family: 'Syne'; font-style: normal; font-weight: 700; font-display: swap; src: url('fonts/syne-700.ttf') format('truetype'); }
@font-face { font-family: 'Syne'; font-style: normal; font-weight: 800; font-display: swap; src: url('fonts/syne-800.ttf') format('truetype'); }
@font-face { font-family: 'DM Sans'; font-style: normal; font-weight: 300; font-display: swap; src: url('fonts/dmsans-300.ttf') format('truetype'); }
@font-face { font-family: 'DM Sans'; font-style: normal; font-weight: 400; font-display: swap; src: url('fonts/dmsans-400.ttf') format('truetype'); }
@font-face { font-family: 'DM Sans'; font-style: normal; font-weight: 500; font-display: swap; src: url('fonts/dmsans-500.ttf') format('truetype'); }
@font-face { font-family: 'DM Sans'; font-style: normal; font-weight: 600; font-display: swap; src: url('fonts/dmsans-600.ttf') format('truetype'); }
@font-face { font-family: 'DM Sans'; font-style: italic; font-weight: 300; font-display: swap; src: url('fonts/dmsans-300italic.ttf') format('truetype'); }

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

:root {
  --o:    #FF4D00;
  --o2:   #FF8A00;
  --o3:   #FF2200;
  --glow: rgba(255,77,0,0.25);
  --glow2:rgba(255,77,0,0.08);
  --ice:  #D6EEFF;
  --ice2: #A8D8F0;
  --bg:   #050505;
  --bg2:  #1e1e1e;
  --bg3:  #272727;
  --bg4:  #303030;
  --bdr:  #383838;
  --bdr2: #444444;
  --fh:   'Syne', sans-serif;
  --fb:   'DM Sans', sans-serif;
}

html { scroll-behavior: auto; overflow-x: hidden; }

body {
  background: var(--bg);
  font-family: var(--fb);
  color: #e8e8e8;
  overflow-x: hidden;
  cursor: none;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9990;
  opacity: .018;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ── CURSOR ───────────────────────────────────────────── */
#cursor {
  position: fixed;
  width: 10px; height: 10px;
  background: var(--o);
  border-radius: 50%;
  pointer-events: none;
  z-index: 99999;
  transform: translate(-50%, -50%);
  transition: width .2s cubic-bezier(.4,0,.2,1),
              height .2s cubic-bezier(.4,0,.2,1),
              background .2s;
  will-change: transform;
}
#cursor.hover { width: 48px; height: 48px; background: rgba(255,77,0,.15); }
#cursor.click { transform: translate(-50%,-50%) scale(.8); }

#cursor-follower {
  position: fixed;
  width: 40px; height: 40px;
  border: 1px solid rgba(255,77,0,.35);
  border-radius: 50%;
  pointer-events: none;
  z-index: 99998;
  transform: translate(-50%, -50%);
  transition: width .3s, height .3s, border-color .3s;
  will-change: transform;
}
#cursor-follower.hover { width: 72px; height: 72px; border-color: rgba(255,77,0,.15); }

/* ── PRELOADER ────────────────────────────────────────── */
#preloader {
  position: fixed;
  inset: 0;
  z-index: 99997;
  background: #030303;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
}

.pl-logo {
  opacity: 0;
  transform: translateY(24px);
  font-family: var(--fh);
  font-size: 28px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -.04em;
}
.pl-logo span { color: var(--o); }

.pl-progress {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  width: 220px;
}
.pl-bar-track {
  width: 100%;
  height: 1px;
  background: rgba(255,255,255,.08);
  overflow: hidden;
}
.pl-bar {
  height: 100%;
  width: 100%;
  background: linear-gradient(90deg, var(--o), var(--o2));
  transform-origin: left;
  transform: scaleX(0);
  box-shadow: 0 0 12px var(--glow);
}
.pl-count {
  font-family: var(--fh);
  font-size: 11px;
  letter-spacing: .14em;
  color: rgba(255,77,0,.7);
}
.pl-label {
  font-size: 10px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(255,255,255,.2);
}

/* ── NAV ──────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 9000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 2.5rem;
  transition: background .4s, padding .4s, border-color .4s;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(5,5,5,.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 1rem 2.5rem;
  border-color: var(--bdr);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  cursor: none;
}
.nav-logo-mark {
  position: relative;
  width: 34px; height: 34px;
  flex-shrink: 0;
}
.nav-logo-mark svg { width: 34px; height: 34px; }
.nav-logo-mark::after {
  content: '';
  position: absolute;
  inset: -5px;
  border-radius: 50%;
  background: var(--o);
  filter: blur(10px);
  opacity: .4;
  animation: logoGlow 2.5s ease-in-out infinite;
  pointer-events: none;
}
@keyframes logoGlow { 0%,100%{opacity:.3} 50%{opacity:.65} }

.nav-logo-text { display: flex; flex-direction: column; }
.nav-logo-name {
  font-family: var(--fh);
  font-size: 14px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -.02em;
  line-height: 1;
}
.nav-logo-sub {
  font-size: 9px;
  letter-spacing: .16em;
  color: #666;
  text-transform: uppercase;
  margin-top: 2px;
}

.nav-links {
  display: flex;
  gap: 4px;
  list-style: none;
}
.nav-links a {
  font-size: 12px;
  color: rgba(168,216,240,.65);
  text-decoration: none;
  padding: 7px 14px;
  border-radius: 100px;
  transition: all .2s;
  cursor: none;
  letter-spacing: .02em;
}
.nav-links a:hover { color: #fff; background: rgba(255,255,255,.05); }
.nav-links a.active {
  color: var(--o);
  background: rgba(255,77,0,.1);
  border: 1px solid rgba(255,77,0,.2);
}

.nav-cta {
  background: var(--o);
  color: #fff;
  border: none;
  padding: 10px 22px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 700;
  cursor: none;
  font-family: var(--fb);
  transition: all .25s;
  white-space: nowrap;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}
.nav-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,.2), transparent);
  opacity: 0;
  transition: opacity .2s;
}
.nav-cta:hover { background: var(--o2); box-shadow: 0 0 24px var(--glow); }
.nav-cta:hover::before { opacity: 1; }

/* ── NAV DROPDOWN ─────────────────────────────────────── */
.nav-dropdown-wrap {
  position: relative;
}
.nav-dropdown-trigger {
  display: flex; align-items: center; gap: 5px;
}
.nav-dropdown-trigger::after {
  content: '';
  width: 6px; height: 6px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  opacity: .6; flex-shrink: 0;
  transition: transform .2s;
}
.nav-dropdown-wrap:hover .nav-dropdown-trigger::after {
  transform: rotate(-135deg) translateY(-2px);
}
.nav-dropdown {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  position: absolute;
  top: calc(100% + 2px);
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  background: rgba(10,10,10,.97);
  backdrop-filter: blur(24px);
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 14px;
  padding: 8px;
  min-width: 240px;
  z-index: 200;
  list-style: none;
  box-shadow: 0 20px 48px rgba(0,0,0,.7), 0 0 0 1px rgba(255,255,255,.03);
  transition: opacity .2s ease, transform .2s ease, visibility .2s;
}
/* Unsichtbare Brücke: verhindert Hover-Verlust beim Überqueren des Spalts */
.nav-dropdown::after {
  content: '';
  position: absolute;
  top: -14px; left: 0; right: 0;
  height: 14px;
}
.nav-dropdown::before {
  content: ''; position: absolute;
  top: -6px; left: 50%; transform: translateX(-50%);
  width: 10px; height: 10px;
  background: rgba(10,10,10,.97);
  border-left: 1px solid rgba(255,255,255,.09);
  border-top: 1px solid rgba(255,255,255,.09);
  rotate: 45deg;
}
.nav-dropdown-wrap:hover .nav-dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.nav-dropdown li a {
  display: flex; flex-direction: column;
  padding: 10px 14px; border-radius: 10px;
  text-decoration: none; transition: background .15s;
  gap: 2px;
}
.nav-dropdown li a:hover { background: rgba(255,255,255,.05); }
.nav-dropdown li + li { margin-top: 2px; }
.ndd-title {
  font-size: 12px; font-weight: 600;
  color: #e0e0e0; letter-spacing: .01em;
}
.ndd-badge {
  font-size: 10px; color: var(--o);
  font-weight: 600; letter-spacing: .06em;
}
.ndd-sub {
  font-size: 11px; color: rgba(255,255,255,.35);
  line-height: 1.4;
}

/* ── HERO ─────────────────────────────────────────────── */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

#particleCanvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero-parallax-bg {
  position: absolute;
  inset: -20%;
  z-index: 1;
  pointer-events: none;
}
.hero-parallax-bg::before {
  content: '';
  position: absolute;
  top: 20%; left: 60%;
  width: 700px; height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,77,0,.07) 0%, transparent 70%);
}
.hero-parallax-bg::after {
  content: '';
  position: absolute;
  bottom: 10%; left: -5%;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(168,216,240,.04) 0%, transparent 70%);
}

.hero-grid {
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: .025;
  background-image:
    linear-gradient(var(--bdr) 1px, transparent 1px),
    linear-gradient(90deg, var(--bdr) 1px, transparent 1px);
  background-size: 64px 64px;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1400px;
  margin: 0 auto;
  padding: 8rem 2.5rem 6rem;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-left { display: flex; flex-direction: column; }

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 10px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--ice);
  opacity: .75;
  margin-bottom: 2rem;
}
.hero-eyebrow::before {
  content: '';
  width: 28px; height: 1px;
  background: var(--ice);
  display: block;
  opacity: .5;
}
.hero-eyebrow-dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--o);
  box-shadow: 0 0 8px var(--o);
  animation: blink 2s ease-in-out infinite;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:.2} }

.hero-h1 {
  font-family: var(--fh);
  font-size: clamp(52px, 6vw, 88px);
  font-weight: 800;
  line-height: .9;
  color: #fff;
  letter-spacing: -3px;
  margin-bottom: 1.75rem;
  overflow: hidden;
}
.hero-h1 .accent {
  color: var(--o);
  display: block;
  text-shadow: 0 0 60px rgba(255,77,0,.5);
  position: relative;
}

/* Glitch */
.glitch { position: relative; }
.glitch::before, .glitch::after {
  content: attr(data-text);
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  color: inherit;
  opacity: 0;
}
.glitch::before { color: #0ff; clip-path: polygon(0 0,100% 0,100% 38%,0 38%); transform: translateX(-4px); }
.glitch::after  { color: var(--o3); clip-path: polygon(0 62%,100% 62%,100% 100%,0 100%); transform: translateX(4px); }
.glitch.glitching::before,
.glitch.glitching::after  { opacity: .65; animation: glitchAnim .18s steps(2) forwards; }
@keyframes glitchAnim {
  0%   { transform: translateX(-4px) skewX(-3deg); }
  33%  { transform: translateX(4px)  skewX(3deg);  }
  66%  { transform: translateX(-2px) skewX(-1deg); }
  100% { transform: translateX(0);   opacity: 0;   }
}

.hero-sub {
  font-size: 15px;
  color: #777;
  line-height: 1.9;
  max-width: 420px;
  margin-bottom: 2.5rem;
}

.hero-btns {
  display: flex;
  gap: 14px;
  margin-bottom: 3.5rem;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  gap: 3rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--bdr);
}
.hero-stat-num {
  font-family: var(--fh);
  font-size: 42px;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}
.hero-stat-num span { color: var(--o); }
.hero-stat-label {
  font-size: 11px;
  color: var(--ice2);
  margin-top: 4px;
  opacity: .6;
  letter-spacing: .04em;
}

/* Hero right — floating cards */
.hero-right { position: relative; height: 520px; }

.hero-float-card {
  position: absolute;
  background: rgba(15,15,15,.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 20px;
  padding: 1.5rem;
  transition: transform .3s, border-color .3s;
}
.hero-float-card:hover { border-color: rgba(255,77,0,.3); }
.hero-float-card.card-1 { top: 8%; right: 5%; width: 240px; animation: float1 5s ease-in-out infinite; }
.hero-float-card.card-2 { top: 38%; right: 12%; width: 210px; animation: float2 6s ease-in-out infinite; }
.hero-float-card.card-3 { bottom: 8%; right: 3%; width: 230px; animation: float1 7s ease-in-out infinite .5s; }

@keyframes float1 { 0%,100%{transform:translateY(0)}  50%{transform:translateY(-12px)} }
@keyframes float2 { 0%,100%{transform:translateY(-6px)} 50%{transform:translateY(6px)}  }

.hfc-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: rgba(255,77,0,.1);
  border: 1px solid rgba(255,77,0,.2);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1rem;
}
.hfc-label {
  font-size: 10px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--o);
  opacity: .7;
  margin-bottom: .3rem;
}
.hfc-name {
  font-family: var(--fh);
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  margin-bottom: .25rem;
}
.hfc-desc { font-size: 12px; color: #666; }

.hero-float-card.card-2 .hfc-icon { background: rgba(168,216,240,.08); border-color: rgba(168,216,240,.15); }
.hero-float-card.card-2 .hfc-label { color: var(--ice2); }

.hfc-metric {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-top: .75rem;
}
.hfc-metric-val {
  font-family: var(--fh);
  font-size: 28px;
  font-weight: 800;
  color: var(--o);
}
.hfc-metric-unit { font-size: 12px; color: #666; }
.hfc-trend { font-size: 11px; color: #00cc66; }

/* ── TICKER ───────────────────────────────────────────── */
.ticker {
  background: var(--o);
  padding: .65rem 0;
  overflow: hidden;
  position: relative;
  z-index: 10;
}
.ticker::before, .ticker::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 60px;
  z-index: 1;
}
.ticker::before { left: 0; background: linear-gradient(90deg, var(--o), transparent); }
.ticker::after  { right: 0; background: linear-gradient(-90deg, var(--o), transparent); }
.ticker-track {
  display: flex;
  animation: tickMove 28s linear infinite;
  width: max-content;
}
.ticker-track:hover { animation-play-state: paused; }
.tick-item {
  font-size: 11px;
  font-weight: 700;
  color: #fff;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 0 2.5rem;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.tick-item::after { content: '▸'; font-size: 8px; opacity: .5; }
@keyframes tickMove { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }

/* ── SECTIONS ─────────────────────────────────────────── */
.section {
  padding: 7rem 2.5rem;
  border-top: 1px solid var(--bdr);
  position: relative;
  overflow: hidden;
}
.section-alt { background: var(--bg2); }
.section-dark { background: var(--bg3); }

.max-w {
  max-width: 1400px;
  margin: 0 auto;
}

.sec-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 10px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--ice);
  opacity: .7;
  margin-bottom: 1.25rem;
  font-weight: 600;
}
.sec-eyebrow::before {
  content: '';
  width: 18px; height: 1px;
  background: var(--ice);
  display: block;
  opacity: .5;
}

.sec-title {
  font-family: var(--fh);
  font-size: clamp(28px, 3.5vw, 46px);
  font-weight: 800;
  color: #fff;
  letter-spacing: -1px;
  line-height: 1;
  margin-bottom: 1.5rem;
}
.sec-title em { color: var(--o); font-style: normal; }

.sec-body {
  font-size: 15px;
  color: #666;
  line-height: 1.9;
  max-width: 620px;
}

/* ── PAIN SECTION ─────────────────────────────────────── */
.pain-section .section-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: end;
  margin-bottom: 4rem;
}
.pain-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--bdr);
}
.pain-card {
  background: var(--bg);
  padding: 2.5rem 2rem;
  position: relative;
  overflow: hidden;
  transition: background .3s;
}
.pain-card:hover { background: var(--bg2); }
.pain-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--ice2), transparent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s;
}
.pain-card:hover::before { transform: scaleX(1); }

.pain-num {
  font-family: var(--fh);
  font-size: 10px;
  font-weight: 700;
  color: var(--ice2);
  opacity: .4;
  letter-spacing: .16em;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 8px;
}
.pain-num::before {
  content: '';
  width: 18px; height: 1px;
  background: currentColor;
  display: block;
}
.pain-title {
  font-family: var(--fh);
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  margin-bottom: .75rem;
  line-height: 1.2;
}
.pain-text { font-size: 13px; color: #777; line-height: 1.8; }

/* ── SERVICES SECTION ─────────────────────────────────── */
.services-section .section-head {
  text-align: center;
  margin-bottom: 4rem;
}
.services-section .sec-eyebrow { justify-content: center; }
.services-section .sec-body { margin: 0 auto; text-align: center; }

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

/* Glassmorphism card */
.service-card {
  position: relative;
  background: rgba(255,255,255,.06);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 24px;
  padding: 2.5rem;
  overflow: hidden;
  transition: transform .35s cubic-bezier(.4,0,.2,1),
              border-color .35s,
              box-shadow .35s;
  cursor: none;
}
.service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255,77,0,.25);
  box-shadow: 0 40px 80px rgba(0,0,0,.4), 0 0 0 1px rgba(255,77,0,.08);
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,77,0,.5), transparent);
  opacity: 0;
  transition: opacity .35s;
}
.service-card:hover::before { opacity: 1; }

/* Shine effect */
.service-card::after {
  content: '';
  position: absolute;
  top: -100%;
  left: -100%;
  width: 60%;
  height: 200%;
  background: linear-gradient(105deg, transparent 40%, rgba(255,255,255,.04) 50%, transparent 60%);
  transform: rotate(-30deg);
  transition: left .6s ease;
}
.service-card:hover::after { left: 200%; }

.service-card.featured { border-color: rgba(255,77,0,.2); background: rgba(255,77,0,.03); }

.sc-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 1.5rem;
}
.sc-badge.orange { background: rgba(255,77,0,.12); color: var(--o); border: 1px solid rgba(255,77,0,.25); }
.sc-badge.ice { background: rgba(168,216,240,.08); color: var(--ice2); border: 1px solid rgba(168,216,240,.18); }
.sc-badge-dot { width: 5px; height: 5px; border-radius: 50%; background: currentColor; box-shadow: 0 0 5px currentColor; animation: blink 2s ease-in-out infinite; }

.sc-icon {
  width: 52px; height: 52px;
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(255,77,0,.2);
  background: rgba(255,77,0,.07);
}
.sc-icon.ice { border-color: rgba(168,216,240,.18); background: rgba(168,216,240,.06); }

.sc-title {
  font-family: var(--fh);
  font-size: 20px;
  font-weight: 800;
  color: #fff;
  margin-bottom: .6rem;
  letter-spacing: -.3px;
  line-height: 1.1;
}
.sc-sub { font-size: 13px; color: #666; line-height: 1.7; margin-bottom: 1.75rem; }

.sc-features { display: flex; flex-direction: column; gap: 8px; margin-bottom: 2rem; }
.sc-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: #888;
}
.sc-feature-dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--o);
  box-shadow: 0 0 6px var(--o);
  flex-shrink: 0;
}

.sc-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--bdr);
}
.sc-price-num {
  font-family: var(--fh);
  font-size: 36px;
  font-weight: 800;
  color: #fff;
}
.sc-price-num span { color: var(--o); }
.sc-price-unit { font-size: 12px; color: #555; }

/* ── PROCESS SECTION ──────────────────────────────────── */
.process-section .max-w {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 6rem;
  align-items: start;
}
.process-left { position: sticky; top: 8rem; }

.process-steps { display: flex; flex-direction: column; gap: 0; }
.process-step {
  display: flex;
  gap: 1.5rem;
  padding: 2rem 0;
  border-top: 1px solid var(--bdr);
  position: relative;
}
.process-step:last-child { border-bottom: 1px solid var(--bdr); }

.ps-circle {
  width: 48px; height: 48px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,77,0,.3);
  background: var(--bg);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--fh);
  font-size: 14px;
  font-weight: 800;
  color: var(--o);
  flex-shrink: 0;
  transition: all .3s;
}
.process-step:hover .ps-circle {
  background: var(--o);
  color: #fff;
  border-color: var(--o);
  box-shadow: 0 0 20px var(--glow);
}
.ps-content {}
.ps-label {
  font-size: 10px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ice2);
  opacity: .5;
  margin-bottom: .5rem;
}
.ps-title {
  font-family: var(--fh);
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  margin-bottom: .5rem;
}
.ps-text { font-size: 13px; color: #777; line-height: 1.75; }
.ps-tag {
  display: inline-block;
  margin-top: .75rem;
  background: var(--o);
  color: #fff;
  font-size: 9px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 100px;
  letter-spacing: .08em;
}

/* ── TESTIMONIALS ─────────────────────────────────────── */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.testi-card {
  background: rgba(255,255,255,.06);
  border: 1px solid var(--bdr);
  border-radius: 20px;
  padding: 2rem;
  transition: transform .35s, border-color .35s;
  position: relative;
  overflow: hidden;
}
.testi-card:hover { transform: translateY(-6px); border-color: rgba(255,77,0,.2); }

.testi-quote-mark {
  font-family: var(--fh);
  font-size: 80px;
  font-weight: 800;
  color: var(--o);
  line-height: .7;
  opacity: .2;
  margin-bottom: .5rem;
  user-select: none;
}
.testi-text { font-size: 13px; color: #888; line-height: 1.85; font-style: italic; margin-bottom: 1.75rem; }

.testi-stars { display: flex; gap: 3px; margin-bottom: 1.25rem; }
.testi-star { color: var(--o2); font-size: 14px; }

.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--bg4);
  border: 1.5px solid rgba(255,77,0,.3);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--fh);
  font-size: 16px;
  font-weight: 800;
  color: var(--o);
  flex-shrink: 0;
}
.testi-name { font-size: 13px; font-weight: 700; color: #fff; font-family: var(--fh); }
.testi-role { font-size: 11px; color: var(--ice2); opacity: .55; margin-top: 2px; }

/* ── ABOUT SECTION ────────────────────────────────────── */
.about-section .max-w {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.about-img-wrap {
  position: relative;
}
.about-img-card {
  background: var(--bg3);
  border: 1px solid var(--bdr);
  border-radius: 24px;
  overflow: hidden;
  height: 520px;
  position: relative;
}
.about-img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--bg3), var(--bg4));
}
.about-img-card::after {
  content: '';
  position: absolute;
  right: 0; top: 15%; bottom: 15%;
  width: 2px;
  background: linear-gradient(180deg, transparent, var(--o) 40%, var(--o2) 60%, transparent);
  box-shadow: 0 0 20px var(--o);
}

.about-badge {
  position: absolute;
  bottom: -16px; left: 24px;
  background: rgba(5,5,5,.92);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255,77,0,.25);
  border-radius: 100px;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 2;
}
.about-badge-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--o); box-shadow: 0 0 8px var(--o); animation: blink 2s ease-in-out infinite; }
.about-badge-text { font-size: 12px; font-weight: 600; color: #fff; }

.about-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,77,0,.08);
  border: 1px solid rgba(255,77,0,.18);
  color: var(--o);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 1.5rem;
}
.about-name { font-family: var(--fh); font-size: 36px; font-weight: 800; color: #fff; letter-spacing: -1px; margin-bottom: .25rem; }
.about-role { font-size: 13px; color: var(--ice2); opacity: .6; letter-spacing: .04em; margin-bottom: 2rem; }
.about-bio { font-size: 14px; color: #777; line-height: 1.9; margin-bottom: 1.5rem; }
.about-bio strong { color: #aaa; font-weight: 600; }

.about-facts { display: flex; flex-direction: column; gap: 10px; margin-bottom: 2.5rem; }
.about-fact { display: flex; align-items: flex-start; gap: 12px; font-size: 13px; color: #888; }
.about-fact-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--o); box-shadow: 0 0 6px var(--o); flex-shrink: 0; margin-top: 5px; }

/* ── CTA SECTION ──────────────────────────────────────── */
.cta-section {
  padding: 0;
  border-top: 1px solid var(--bdr);
  position: relative;
  overflow: hidden;
  min-height: 480px;
  display: flex;
  align-items: center;
}
.cta-parallax-bg {
  position: absolute;
  inset: -30%;
  pointer-events: none;
  z-index: 0;
}
.cta-parallax-bg::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 800px; height: 800px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,77,0,.08) 0%, transparent 70%);
}
.cta-parallax-bg::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,77,0,.4), transparent);
}

.cta-section .max-w {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  padding: 6rem 2.5rem;
  width: 100%;
}
.cta-h {
  font-family: var(--fh);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 800;
  color: #fff;
  letter-spacing: -1.5px;
  line-height: .95;
}
.cta-h em { color: var(--o); font-style: normal; }
.cta-sub { font-size: 15px; color: #666; line-height: 1.8; margin-bottom: 2rem; }
.cta-note { font-size: 11px; color: rgba(168,216,240,.25); margin-top: 1rem; }

/* ── FAQ SECTION ──────────────────────────────────────── */
.faq-section .max-w {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 6rem;
  align-items: start;
}
.faq-left { position: sticky; top: 8rem; }
.faq-list { display: flex; flex-direction: column; }
.faq-item { border-top: 1px solid var(--bdr); }
.faq-item:last-child { border-bottom: 1px solid var(--bdr); }

.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.5rem 0;
  cursor: none;
  font-size: 14px;
  font-weight: 600;
  color: #888;
  transition: color .2s;
}
.faq-q:hover { color: #fff; }
.faq-item.open .faq-q { color: #fff; }

.faq-icon {
  width: 30px; height: 30px;
  border-radius: 50%;
  border: 1px solid var(--bdr2);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: all .3s;
  position: relative;
}
.faq-icon::before, .faq-icon::after {
  content: '';
  position: absolute;
  background: #555;
  border-radius: 1px;
  transition: all .3s;
}
.faq-icon::before { width: 10px; height: 1.5px; }
.faq-icon::after  { width: 1.5px; height: 10px; }
.faq-item.open .faq-icon { background: var(--o); border-color: var(--o); box-shadow: 0 0 14px var(--glow); }
.faq-item.open .faq-icon::before,
.faq-item.open .faq-icon::after { background: #fff; }
.faq-item.open .faq-icon::after { transform: rotate(90deg); opacity: 0; }

.faq-a {
  max-height: 0;
  overflow: hidden;
  font-size: 13px;
  color: #888;
  line-height: 1.9;
  transition: max-height .4s cubic-bezier(.4,0,.2,1);
}
.faq-item.open .faq-a { max-height: 400px; }
.faq-a-inner { padding: 0 0 1.5rem; }

/* ── FOOTER ───────────────────────────────────────────── */
.footer {
  background: #000;
  border-top: 1px solid var(--bdr);
  padding: 2.5rem 2.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.footer-logo { display: flex; align-items: center; gap: 10px; }
.footer-logo-name { font-family: var(--fh); font-size: 13px; font-weight: 800; color: #555; }
.footer-copy { font-size: 11px; color: #444; }
.footer-links { display: flex; gap: 20px; flex-wrap: wrap; }
.footer-links a { font-size: 11px; color: #444; text-decoration: none; cursor: none; transition: color .2s; }
.footer-links a:hover { color: #888; }

/* ── BUTTONS ──────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 700;
  cursor: none;
  font-family: var(--fb);
  text-decoration: none;
  transition: all .3s cubic-bezier(.4,0,.2,1);
  position: relative;
  overflow: hidden;
  border: none;
}
.btn-primary {
  background: var(--o);
  color: #fff;
  box-shadow: 0 4px 24px rgba(255,77,0,.35);
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(255,77,0,.55);
  background: var(--o2);
}
.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,.2), transparent);
  opacity: 0;
  transition: opacity .2s;
}
.btn-primary:hover::before { opacity: 1; }

.btn-ghost {
  background: transparent;
  color: #777;
  border: 1px solid var(--bdr2);
}
.btn-ghost:hover { border-color: #777; color: #fff; }

.btn-arrow::after {
  content: '→';
  transition: transform .2s;
}
.btn-arrow:hover::after { transform: translateX(4px); }

/* ── REVEAL ───────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .8s cubic-bezier(.4,0,.2,1), transform .8s cubic-bezier(.4,0,.2,1);
}
.reveal.in-view { opacity: 1; transform: translateY(0); }
.reveal-d1 { transition-delay: .1s; }
.reveal-d2 { transition-delay: .2s; }
.reveal-d3 { transition-delay: .3s; }
.reveal-d4 { transition-delay: .4s; }

/* Split text */
.split-unit { display: inline-block; overflow: hidden; }
.split-inner { display: inline-block; }

/* ── HAMBURGER BUTTON ─────────────────────────────────── */
.nav-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 9px;
  cursor: pointer;
  padding: 9px 10px;
  z-index: 9002;
  flex-shrink: 0;
  transition: border-color .2s;
}
.nav-burger:hover { border-color: rgba(255,77,0,.5); }
.nav-burger span {
  display: block;
  width: 20px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform .3s ease, opacity .3s ease, width .3s ease;
}
.nav-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; width: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── MOBILE MENU ──────────────────────────────────────── */
.nav-mobile {
  position: fixed;
  inset: 0;
  z-index: 9001;
  background: rgba(5,5,5,.97);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 5rem 2rem 4rem;
  gap: 0;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-10px);
  transition: opacity .3s ease, transform .3s ease;
}
.nav-mobile.open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.nav-mobile-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  width: 100%;
  margin-bottom: 2rem;
}
.nav-mobile-links li a {
  display: block;
  font-family: var(--fh);
  font-size: 1.75rem;
  font-weight: 700;
  color: rgba(255,255,255,.65);
  text-decoration: none;
  text-align: center;
  padding: .5rem 1rem;
  border-radius: 12px;
  letter-spacing: -.02em;
  transition: color .2s, background .2s;
}
.nav-mobile-links li a:hover { color: #fff; background: rgba(255,255,255,.04); }
.nav-mobile-links li a.accent { color: var(--o); }
.nav-mobile-divider {
  width: 48px; height: 1px;
  background: rgba(255,255,255,.07);
  margin: 1.25rem 0;
}
.nav-mobile-cta {
  display: block;
  width: 100%;
  max-width: 280px;
  text-align: center;
  padding: 15px 28px;
  background: var(--o);
  color: #fff;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 700;
  font-family: var(--fb);
  text-decoration: none;
  box-shadow: 0 6px 24px rgba(255,77,0,.35);
  transition: background .25s, box-shadow .25s, transform .2s;
}
.nav-mobile-cta:hover {
  background: var(--o2);
  box-shadow: 0 10px 32px rgba(255,77,0,.5);
  transform: translateY(-2px);
}

/* ── RESPONSIVE: TABLET ───────────────────────────────── */
@media (max-width: 1024px) {
  .hero-content { grid-template-columns: 1fr; gap: 0; }
  .hero-right { display: none; }
  .hero-left { max-width: 680px; margin: 0 auto; text-align: left; }
  .pain-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .process-section .max-w { grid-template-columns: 1fr; }
  .process-left { position: static; }
  .testi-grid { grid-template-columns: 1fr; }
  .about-section .max-w { grid-template-columns: 1fr; }
  .cta-section .max-w { grid-template-columns: 1fr; }
  .faq-section .max-w { grid-template-columns: 1fr; }
  .faq-left { position: static; }
  .v1-stats { gap: 2rem; }
}

/* ── RESPONSIVE: MOBILE ───────────────────────────────── */
@media (max-width: 768px) {
  /* Cursor off */
  body { cursor: auto; }
  #cursor, #cursor-follower { display: none; }

  /* Nav */
  .nav { padding: .85rem 1.25rem; gap: 0; }
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .nav-burger { display: flex; }

  /* Sections */
  .section { padding: 4.5rem 1.25rem; }
  .section-tag { font-size: 9px; }

  /* Hero */
  .hero-content { padding: 6rem 1.25rem 3.5rem; }
  .hero-left { max-width: 100%; }

  /* Grids → single column */
  .pain-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }

  /* V1 Hero stats */
  .v1-stats { flex-wrap: wrap; gap: 1.5rem; padding-top: 1.75rem; }
  .v1-stats > div { flex: 1 1 calc(50% - 1rem); }

  /* V1 service rows */
  .v1-svc { grid-template-columns: 48px 1fr; gap: 1rem; padding: 1.25rem 1.25rem; }
  .v1-svc-price { display: none; }

  /* V1 CTA group */
  .v1-cta-group { flex-direction: column; align-items: stretch; gap: 10px; }
  .v1-cta-group .btn { text-align: center; justify-content: center; width: 100%; }

  /* Footer */
  .footer { flex-direction: column; gap: 1rem; text-align: center; padding: 2.5rem 1.25rem; }
  .footer-links { justify-content: center; flex-wrap: wrap; gap: 8px 16px; }

  /* Ticker */
  .ticker-section { padding: 2rem 0; }
}

/* ── RESPONSIVE: SMALL MOBILE ─────────────────────────── */
@media (max-width: 480px) {
  .nav { padding: .8rem 1rem; }
  .hero-content { padding: 5.5rem 1rem 3rem; }
  .section { padding: 3.5rem 1rem; }

  /* Typography */
  .v1-h1 { font-size: clamp(2.4rem, 11vw, 3.2rem); letter-spacing: -.02em; }
  .v1-sub { font-size: .92rem; }
  .v1-stat-num { font-size: 2rem; }

  /* Stats → full width */
  .v1-stats > div { flex: 1 1 100%; }

  /* Cards */
  .pain-card { padding: 1.25rem; }
  .v1-svc { padding: 1rem; }
  .v1-phase { padding: 1.5rem; }

  /* Ticker logos */
  .tick-logo img { height: 20px; }

  /* Footer links */
  .footer-links { flex-direction: column; align-items: center; gap: 6px; }
}

/* ── SCROLLBAR ────────────────────────────────────────── */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: rgba(255,77,0,.4); border-radius: 2px; }
::-webkit-scrollbar-thumb:hover { background: var(--o); }

/* ── SELECTION ────────────────────────────────────────── */
::selection { background: rgba(255,77,0,.3); color: #fff; }

/* ══════════════════════════════════════════════════════
   THEME TOGGLE BUTTON
══════════════════════════════════════════════════════ */
.theme-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.06);
  cursor: pointer;
  transition: all .25s;
  flex-shrink: 0;
  color: rgba(255,255,255,.65);
  margin-right: 4px;
}
.theme-toggle:hover {
  border-color: rgba(255,77,0,.45);
  background: rgba(255,77,0,.1);
  color: var(--o);
  transform: rotate(20deg);
}
.theme-toggle svg { width: 15px; height: 15px; flex-shrink: 0; pointer-events: none; }
.icon-sun  { display: block; }
.icon-moon { display: none; }

/* ══════════════════════════════════════════════════════
   LIGHT MODE  —  html[data-theme="light"]
   Design: Clean Professional White — Orange Accent
   Kontrast: 4.5:1+ (WCAG AA konform)
══════════════════════════════════════════════════════ */

/* ── 1. CSS VARIABLEN ─────────────────────────────────── */
html[data-theme="light"] {
  --bg:   #FFFFFF;
  --bg2:  #F8F9FA;
  --bg3:  #F1F3F5;
  --bg4:  #E9ECEF;
  --bdr:  #DEE2E6;
  --bdr2: #CED4DA;
  --ice:  #1864AB;
  --ice2: #1971C2;
  --glow: rgba(255,77,0,.15);
  --glow2: rgba(255,77,0,.04);
}

/* ── 2. BASE ──────────────────────────────────────────── */
html[data-theme="light"] body {
  color: #0D1117;
  background: #FFFFFF;
}
/* Grain-Overlay ausblenden */
html[data-theme="light"] body::before { opacity: 0; }

/* Toggle-Icon wechseln */
html[data-theme="light"] .icon-sun  { display: none; }
html[data-theme="light"] .icon-moon { display: block; }
html[data-theme="light"] .theme-toggle {
  border-color: #DEE2E6;
  background: #F8F9FA;
  color: #495057;
}
html[data-theme="light"] .theme-toggle:hover {
  border-color: var(--o);
  background: rgba(255,77,0,.06);
  color: var(--o);
}

/* ── 3. PRELOADER ─────────────────────────────────────── */
html[data-theme="light"] #preloader { background: #FFFFFF; }
html[data-theme="light"] .pl-logo { color: #0D1117; }
html[data-theme="light"] .pl-bar-track { background: #DEE2E6; }
html[data-theme="light"] .pl-label { color: #868E96; }
html[data-theme="light"] .pl-count { color: var(--o); }

/* ── 4. NAV ───────────────────────────────────────────── */
html[data-theme="light"] .nav.scrolled {
  background: rgba(255,255,255,.97);
  border-color: #DEE2E6;
  box-shadow: 0 1px 16px rgba(0,0,0,.07);
}
html[data-theme="light"] .nav-logo-name  { color: #0D1117; }
html[data-theme="light"] .nav-logo-sub   { color: #868E96; }
html[data-theme="light"] .nav-links a    { color: #495057; }
html[data-theme="light"] .nav-links a:hover { color: #0D1117; background: #F1F3F5; }
html[data-theme="light"] .nav-links a.active {
  color: var(--o);
  background: rgba(255,77,0,.07);
  border-color: rgba(255,77,0,.18);
}
/* Dropdown */
html[data-theme="light"] .nav-dropdown {
  background: #FFFFFF;
  border-color: #DEE2E6;
  box-shadow: 0 16px 48px rgba(0,0,0,.1), 0 2px 8px rgba(0,0,0,.06);
}
html[data-theme="light"] .nav-dropdown::before {
  background: #FFFFFF;
  border-left-color: #DEE2E6;
  border-top-color: #DEE2E6;
}
html[data-theme="light"] .nav-dropdown li a:hover { background: #F8F9FA; }
html[data-theme="light"] .ndd-title { color: #0D1117; }
html[data-theme="light"] .ndd-sub   { color: #868E96; }

/* ── 5. HERO ──────────────────────────────────────────── */
/* Partikel-Canvas ausblenden — auf Weiß nicht sichtbar */
html[data-theme="light"] #particleCanvas { display: none; }
html[data-theme="light"] .hero-parallax-bg::before {
  background: radial-gradient(ellipse 900px 600px at 70% 30%, rgba(255,77,0,.08), transparent);
}
html[data-theme="light"] .hero-parallax-bg::after {
  background: radial-gradient(ellipse 600px 500px at 5% 80%, rgba(24,100,171,.05), transparent);
}
html[data-theme="light"] .hero-grid {
  filter: invert(1);
  opacity: .03;
}
html[data-theme="light"] .hero-eyebrow { color: var(--ice); opacity: .85; }
html[data-theme="light"] .hero-h1      { color: #0D1117; }
html[data-theme="light"] .hero-sub     { color: #495057; }
html[data-theme="light"] .hero-stats   { border-top-color: #DEE2E6; }
html[data-theme="light"] .hero-stat-num   { color: #0D1117; }
html[data-theme="light"] .hero-stat-label { color: #868E96; opacity: 1; }

/* Floating Cards — weiß mit Schatten */
html[data-theme="light"] .hero-float-card {
  background: #FFFFFF !important;
  border-color: #E9ECEF !important;
  box-shadow: 0 8px 32px rgba(0,0,0,.1), 0 2px 8px rgba(0,0,0,.06) !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}
html[data-theme="light"] .hero-float-card:hover { border-color: rgba(255,77,0,.25) !important; }
html[data-theme="light"] .hfc-name        { color: #0D1117 !important; }
html[data-theme="light"] .hfc-desc        { color: #868E96 !important; }
html[data-theme="light"] .hfc-metric-unit { color: #868E96 !important; }

/* ── 6. BUTTONS ───────────────────────────────────────── */
html[data-theme="light"] .btn-ghost {
  border-color: #DEE2E6 !important;
  color: #495057 !important;
}
html[data-theme="light"] .btn-ghost:hover {
  border-color: var(--o) !important;
  background: rgba(255,77,0,.05) !important;
  color: var(--o) !important;
}

/* ── 7. SECTIONS & LAYOUT ─────────────────────────────── */
html[data-theme="light"] .section      { border-top-color: #DEE2E6; }
html[data-theme="light"] .section-alt  { background: #F8F9FA; }
html[data-theme="light"] .section-dark { background: #F1F3F5; }
html[data-theme="light"] .sec-eyebrow  { color: var(--ice) !important; opacity: .9; }
html[data-theme="light"] .sec-title    { color: #0D1117 !important; }
html[data-theme="light"] .sec-body     { color: #495057 !important; }

/* ── 8. PAIN CARDS ────────────────────────────────────── */
html[data-theme="light"] .pain-grid  { background: #DEE2E6; }
html[data-theme="light"] .pain-card  { background: #FFFFFF !important; }
html[data-theme="light"] .pain-card:hover { background: #F8F9FA !important; }
html[data-theme="light"] .pain-title { color: #0D1117 !important; }
html[data-theme="light"] .pain-text  { color: #495057 !important; }

/* ── 9. SERVICE CARDS (Glassmorphism → solide Karten) ─── */
html[data-theme="light"] .service-card {
  background: #FFFFFF !important;
  border-color: #E9ECEF !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  box-shadow: 0 4px 20px rgba(0,0,0,.06), 0 1px 4px rgba(0,0,0,.04) !important;
}
html[data-theme="light"] .service-card:hover {
  border-color: rgba(255,77,0,.22) !important;
  box-shadow: 0 16px 48px rgba(0,0,0,.1), 0 0 0 1px rgba(255,77,0,.06) !important;
}
html[data-theme="light"] .service-card::after {
  background: linear-gradient(105deg, transparent 40%, rgba(0,0,0,.015) 50%, transparent 60%) !important;
}
html[data-theme="light"] .sc-title      { color: #0D1117 !important; }
html[data-theme="light"] .sc-sub        { color: #495057 !important; }
html[data-theme="light"] .sc-feature    { color: #495057 !important; }
html[data-theme="light"] .sc-price      { border-top-color: #DEE2E6 !important; }
html[data-theme="light"] .sc-price-num  { color: #0D1117 !important; }
html[data-theme="light"] .sc-price-unit { color: #868E96 !important; }

/* ── 10. PROCESS ──────────────────────────────────────── */
html[data-theme="light"] .process-step { border-top-color: #DEE2E6 !important; }
html[data-theme="light"] .process-step:last-child { border-bottom-color: #DEE2E6 !important; }
html[data-theme="light"] .ps-circle { background: #FFFFFF !important; }
html[data-theme="light"] .ps-title  { color: #0D1117 !important; }
html[data-theme="light"] .ps-text   { color: #495057 !important; }

/* ── 11. TESTIMONIALS ─────────────────────────────────── */
html[data-theme="light"] .testi-card {
  background: #FFFFFF !important;
  border-color: #E9ECEF !important;
  box-shadow: 0 4px 20px rgba(0,0,0,.05) !important;
}
html[data-theme="light"] .testi-card:hover { border-color: rgba(255,77,0,.18) !important; }
html[data-theme="light"] .testi-text    { color: #495057 !important; }
html[data-theme="light"] .testi-name    { color: #0D1117 !important; }
html[data-theme="light"] .testi-avatar  { background: #F1F3F5 !important; }

/* ── 12. ABOUT ────────────────────────────────────────── */
html[data-theme="light"] .about-name  { color: #0D1117 !important; }
html[data-theme="light"] .about-role  { color: var(--ice2) !important; opacity: .85; }
html[data-theme="light"] .about-bio   { color: #495057 !important; }
html[data-theme="light"] .about-bio strong { color: #212529 !important; }
html[data-theme="light"] .about-fact  { color: #495057 !important; }
html[data-theme="light"] .about-badge {
  background: rgba(255,255,255,.97) !important;
  border-color: rgba(255,77,0,.2) !important;
  box-shadow: 0 4px 16px rgba(0,0,0,.08) !important;
}
html[data-theme="light"] .about-badge-text { color: #0D1117 !important; }
html[data-theme="light"] .about-img-card {
  background: #F1F3F5 !important;
  border-color: #DEE2E6 !important;
}

/* ── 13. FAQ / CTA / WEITERE SEKTIONEN ───────────────── */
html[data-theme="light"] .faq-q     { color: #0D1117 !important; }
html[data-theme="light"] .faq-a     { color: #495057 !important; }
html[data-theme="light"] .faq-item  { border-color: #DEE2E6 !important; }

/* V1-spezifische Elemente */
html[data-theme="light"] .v1-h1       { color: #0D1117 !important; }
html[data-theme="light"] .v1-sub      { color: #495057 !important; }
html[data-theme="light"] .v1-stat-num { color: #0D1117 !important; }
html[data-theme="light"] .v1-stat-label { color: #868E96 !important; }
html[data-theme="light"] .v1-svc {
  background: #FFFFFF !important;
  border-color: #E9ECEF !important;
  box-shadow: 0 2px 12px rgba(0,0,0,.05) !important;
}
html[data-theme="light"] .v1-svc:hover {
  background: #F8F9FA !important;
  border-color: rgba(255,77,0,.2) !important;
}
html[data-theme="light"] .v1-svc-name  { color: #0D1117 !important; }
html[data-theme="light"] .v1-svc-desc  { color: #495057 !important; }
html[data-theme="light"] .v1-svc-price { color: var(--o) !important; }
html[data-theme="light"] .v1-phase {
  background: #FFFFFF !important;
  border-color: #E9ECEF !important;
  box-shadow: 0 2px 12px rgba(0,0,0,.05) !important;
}
html[data-theme="light"] .v1-phase-num   { color: #0D1117 !important; opacity: .15; }
html[data-theme="light"] .v1-phase-title { color: #0D1117 !important; }
html[data-theme="light"] .v1-phase-text  { color: #495057 !important; }
html[data-theme="light"] .pain-card-title { color: #0D1117 !important; }
html[data-theme="light"] .pain-card-body  { color: #495057 !important; }

/* ── 14. FOOTER ───────────────────────────────────────── */
html[data-theme="light"] .footer {
  background: #F8F9FA !important;
  border-top-color: #DEE2E6 !important;
}
html[data-theme="light"] .footer-logo-name { color: #0D1117 !important; }
html[data-theme="light"] .footer-copy      { color: #868E96 !important; }
html[data-theme="light"] .footer-links a   { color: #868E96 !important; }
html[data-theme="light"] .footer-links a:hover { color: var(--o) !important; }

/* ── 15. SCROLLBAR ────────────────────────────────────── */
html[data-theme="light"] ::-webkit-scrollbar-track { background: #F1F3F5; }
html[data-theme="light"] ::-webkit-scrollbar-thumb { background: rgba(255,77,0,.35); }
html[data-theme="light"] ::selection { background: rgba(255,77,0,.15); color: #0D1117; }

/* ── 16. ERGÄNZTE OVERRIDES — fehlende weiße Textelemente ── */

/* FAQ: hover & open-Zustand (dunkel: #fff, auf Weiß unsichtbar) */
html[data-theme="light"] .faq-q               { color: #495057 !important; }
html[data-theme="light"] .faq-q:hover         { color: #0D1117 !important; }
html[data-theme="light"] .faq-item.open .faq-q { color: #0D1117 !important; }
html[data-theme="light"] .faq-icon            { border-color: #CED4DA !important; }

/* CTA-Abschnitt (weißer Text auf jetzt weißem Hintergrund) */
html[data-theme="light"] .cta-h   { color: #0D1117 !important; }
html[data-theme="light"] .cta-sub { color: #495057 !important; }
html[data-theme="light"] .cta-note { color: #868E96 !important; }

/* Ghost-Button Hover (weißer Text auf transparentem Hintergrund) */
html[data-theme="light"] .btn-ghost:hover {
  border-color: #0D1117 !important;
  color: #0D1117 !important;
  background: rgba(0,0,0,.04) !important;
}

/* Hamburger-Menü (weiße Linien auf hellem Hintergrund unsichtbar) */
html[data-theme="light"] .nav-burger { border-color: #DEE2E6; }
html[data-theme="light"] .nav-burger:hover { border-color: rgba(255,77,0,.5); }
html[data-theme="light"] .nav-burger span { background: #0D1117; }

/* Mobiles Menü (Overlay bleibt dunkel — weißer Text auf dunklem Overlay = korrekt) */

/* Testimonial-Rolle (opacity zu niedrig in hell → kaum lesbar) */
html[data-theme="light"] .testi-role {
  color: #868E96 !important;
  opacity: 1 !important;
}

/* Prozess-Label (opacity zu niedrig in hell → kaum lesbar) */
html[data-theme="light"] .ps-label {
  color: var(--ice) !important;
  opacity: 0.85 !important;
}

/* Hfc-desc war #666 — explizit setzen für Sicherheit */
html[data-theme="light"] .hfc-desc { color: #868E96 !important; }

/* Sec-body base color auf #666 — explizit sichern */
html[data-theme="light"] .sec-body { color: #495057 !important; }

/* ── 17. V1-AUFGEFÄCHERT: Fehlende Klassen-Overrides ─── */

/* Service-Zeilen: Klasse heißt v1-svc-title (nicht v1-svc-name) */
html[data-theme="light"] .v1-svc-title { color: #0D1117 !important; }
html[data-theme="light"] .v1-svc-desc  { color: #495057 !important; }
html[data-theme="light"] .v1-svc-unit  { color: #868E96 !important; }

/* Testimonial-Karten (v1) */
html[data-theme="light"] .v1-testi-card {
  background: #FFFFFF !important;
  border-color: #E9ECEF !important;
  box-shadow: 0 4px 20px rgba(0,0,0,.06) !important;
}
html[data-theme="light"] .v1-testi-name { color: #0D1117 !important; }
html[data-theme="light"] .v1-testi-text { color: #495057 !important; }
html[data-theme="light"] .v1-testi-role { color: #868E96 !important; }

/* CTA-Hinweis (v1) */
html[data-theme="light"] .v1-cta-note { color: #868E96 !important; }

/* ── 18. PREISLISTE- & GUIDES-KARTEN (averio-premium.html) */

/* Karten-Hintergrund: Glassmorphism → solide weiße Karten */
html[data-theme="light"] #preisliste .reveal-d1 > div,
html[data-theme="light"] #guides    .reveal-d1 > div {
  background: #FFFFFF !important;
  border-color: #E9ECEF !important;
  box-shadow: 0 4px 16px rgba(0,0,0,.06) !important;
}

/* Weißer Inline-Text in Preisliste- und Guides-Karten */
html[data-theme="light"] #preisliste [style*="color:#fff"],
html[data-theme="light"] #guides    [style*="color:#fff"] {
  color: #0D1117 !important;
}

/* Starke Elemente mit #aaa (zu wenig Kontrast auf Weiß) */
html[data-theme="light"] strong[style*="color:#aaa"] { color: #212529 !important; }