/* ============================================================
   AHEADOPS – STYLES
   Alle Farben findest du unter :root. Ändere sie hier einmal,
   sie werden überall automatisch angewendet.
   ============================================================ */

:root {
  /* Kern-Farben */
  --bg: #0a0f1c;
  --bg-soft: #101729;
  --bg-card: rgba(255, 255, 255, 0.03);
  --bg-card-hover: rgba(255, 255, 255, 0.06);
  --border: rgba(255, 255, 255, 0.08);
  --border-strong: rgba(255, 255, 255, 0.18);

  /* Text */
  --text: #f4f4f6;
  --text-dim: #a7a7b2;
  --text-mute: #6c6c78;

  /* Pink / Akzent */
  --pink: #2f7dff;
  --pink-2: #3b8bff;
  --purple: #14c8d6;
  --grad: linear-gradient(135deg, #3b8bff 0%, #2f7dff 45%, #14c8d6 100%);
  --grad-soft: linear-gradient(135deg, rgba(59, 139, 255, 0.15), rgba(20, 200, 214, 0.15));

  --radius: 18px;
  --radius-sm: 12px;
  --shadow-glow: 0 10px 40px -10px rgba(47, 125, 255, 0.45);
  --shadow-card: 0 20px 60px -30px rgba(0, 0, 0, 0.8);

  --container: 1180px;
  --maxw: min(var(--container), 92vw);
}

/* ---------- Reset ---------- */
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: "Inter", "Helvetica Neue", system-ui, -apple-system, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img, svg { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; }

/* Selection */
::selection { background: var(--pink); color: #fff; }

/* ---------- Preloader / Intro-Animation ---------- */
.preloader {
  position: fixed; inset: 0; z-index: 9999;
  background: radial-gradient(ellipse at 30% 20%, #1a0a22, #0a0f1c 60%, #000);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}
.preloader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.preloader canvas { position: absolute; inset: 0; width: 100%; height: 100%; }

.preloader-core { position: relative; z-index: 2; text-align: center; }
.intro-logo {
  width: 90px; height: 90px;
  filter: drop-shadow(0 0 24px rgba(59, 139, 255, 0.6));
  margin: 0 auto;
}
.intro-frame {
  stroke-dasharray: 220;
  stroke-dashoffset: 220;
  animation: draw 1s ease-out 0.1s forwards;
}
.intro-bar { transform-origin: 50% 52px; transform: scaleY(0); }
.intro-bar.b1 { animation: rise 0.4s ease-out 0.6s forwards; }
.intro-bar.b2 { animation: rise 0.4s ease-out 0.75s forwards; }
.intro-bar.b3 { animation: rise 0.4s ease-out 0.9s forwards; }
.intro-bar.b4 { animation: rise 0.4s ease-out 1.05s forwards; }
@keyframes draw { to { stroke-dashoffset: 0; } }
@keyframes rise { to { transform: scaleY(1); } }

.intro-name {
  margin-top: 26px;
  font-size: clamp(28px, 4vw, 38px);
  font-weight: 900;
  letter-spacing: -0.02em;
}
.intro-name span {
  display: inline-block; opacity: 0;
  transform: translateY(12px);
  animation: fadeUp 0.4s ease-out forwards;
}
.intro-name span.g {
  background: linear-gradient(135deg, #3b8bff, #14c8d6);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.intro-name span:nth-child(1) { animation-delay: 1.20s; }
.intro-name span:nth-child(2) { animation-delay: 1.26s; }
.intro-name span:nth-child(3) { animation-delay: 1.32s; }
.intro-name span:nth-child(4) { animation-delay: 1.38s; }
.intro-name span:nth-child(5) { animation-delay: 1.44s; }
.intro-name span:nth-child(6) { animation-delay: 1.50s; }
.intro-name span:nth-child(7) { animation-delay: 1.56s; }
.intro-name span:nth-child(8) { animation-delay: 1.62s; }
.intro-name span:nth-child(9) { animation-delay: 1.68s; }
.intro-name span:nth-child(10) { animation-delay: 1.74s; }
@keyframes fadeUp { to { opacity: 1; transform: translateY(0); } }

.intro-sub {
  margin-top: 10px;
  font-size: 13px; letter-spacing: 3px; text-transform: uppercase;
  color: rgba(255,255,255,0.55); font-weight: 600;
  opacity: 0; animation: fadeUp 0.6s ease-out 1.85s forwards;
}
.intro-sub .dot { animation: blink 1.2s infinite; display: inline-block; margin-left: 2px; }
.intro-sub .dot:nth-child(2) { animation-delay: 0.2s; }
.intro-sub .dot:nth-child(3) { animation-delay: 0.4s; }
@keyframes blink { 0%, 80%, 100% { opacity: 0.2; } 40% { opacity: 1; } }

.intro-bar-track {
  width: 180px; height: 2px; background: rgba(255,255,255,0.1);
  border-radius: 999px; margin: 28px auto 0; overflow: hidden;
  opacity: 0; animation: fadeUp 0.6s ease-out 1.5s forwards;
}
.intro-bar-fill {
  height: 100%; width: 0; border-radius: 999px;
  background: linear-gradient(90deg, #3b8bff, #14c8d6);
  animation: fillBar 1.8s ease-out 1.5s forwards;
}
@keyframes fillBar { to { width: 100%; } }

/* ---------- Hero Canvas ---------- */
.hero-canvas {
  position: absolute; top: 0; left: 0; width: 100%; height: 100vh;
  max-height: 900px; pointer-events: none; z-index: 0;
  opacity: 0; transition: opacity 1.2s ease;
}
.hero-canvas.on { opacity: 0.85; }

/* Grid-Lines für futuristisches Gefühl */
.hero::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(59, 139, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(59, 139, 255, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center top, black 30%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at center top, black 30%, transparent 70%);
}
.hero { position: relative; overflow: hidden; }

/* Hero word scramble cursor */
.gradient-text.scramble::after {
  content: "_"; animation: caret 0.8s steps(1) infinite;
  color: #3b8bff; margin-left: 2px;
}
@keyframes caret { 50% { opacity: 0; } }

/* ---------- Background Decoration ---------- */
.bg-decor {
  position: fixed; inset: 0; pointer-events: none; z-index: 0;
  overflow: hidden;
}
.bg-decor::before,
.bg-decor::after {
  content: "";
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.35;
  animation: float 18s ease-in-out infinite;
}
.bg-decor::before {
  background: radial-gradient(circle, #2f7dff 0%, transparent 70%);
  top: -200px; left: -150px;
}
.bg-decor::after {
  background: radial-gradient(circle, #14c8d6 0%, transparent 70%);
  bottom: -200px; right: -150px;
  animation-delay: -9s;
}
@keyframes float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(60px, -40px) scale(1.1); }
}

/* ---------- Layout ---------- */
.container { width: var(--maxw); margin: 0 auto; }
section { position: relative; z-index: 1; padding: clamp(80px, 12vw, 140px) 0; }
.section-head { text-align: center; max-width: 720px; margin: 0 auto clamp(40px, 6vw, 70px); }
.eyebrow {
  display: inline-block;
  padding: 6px 14px;
  border: 1px solid var(--border-strong);
  border-radius: 999px;
  background: var(--grad-soft);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.3px;
  color: var(--text);
  margin-bottom: 18px;
}
h1, h2, h3 { font-weight: 800; letter-spacing: -0.02em; line-height: 1.1; margin: 0; }
h1 { font-size: clamp(40px, 6.5vw, 78px); }
h2 { font-size: clamp(32px, 4.5vw, 52px); }
h3 { font-size: clamp(20px, 2.4vw, 24px); }
p { margin: 0; color: var(--text-dim); }
.section-head h2 { margin-bottom: 14px; }
.section-head p { font-size: 18px; }

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

/* ---------- Navigation ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 14px 0;
  transition: background 0.3s ease, backdrop-filter 0.3s ease, border-color 0.3s ease;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(10, 10, 12, 0.75);
  backdrop-filter: saturate(1.4) blur(16px);
  -webkit-backdrop-filter: saturate(1.4) blur(16px);
  border-bottom-color: var(--border);
}
.nav .container {
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
}
.nav-logo { display: flex; align-items: center; gap: 10px; }
.nav-logo img { height: 38px; }
.nav-links { display: flex; gap: 28px; align-items: center; }
.nav-links a {
  font-size: 15px; font-weight: 500; color: var(--text-dim);
  transition: color 0.2s ease;
}
.nav-links a:hover { color: var(--text); }
.nav-actions { display: flex; gap: 10px; align-items: center; }

.lang-switch {
  display: flex; border: 1px solid var(--border-strong); border-radius: 999px; padding: 3px;
  background: var(--bg-card);
}
.lang-switch button {
  border: 0; background: transparent; color: var(--text-dim);
  padding: 6px 12px; font-size: 12px; font-weight: 700; border-radius: 999px;
  letter-spacing: 0.5px;
}
.lang-switch button.active {
  background: var(--grad); color: #fff;
}

.mobile-toggle {
  display: none; background: transparent; border: 1px solid var(--border-strong);
  border-radius: 10px; padding: 8px; color: var(--text);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 13px 22px; border-radius: 999px; border: 1px solid transparent;
  font-size: 15px; font-weight: 600; letter-spacing: 0.1px;
  transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--grad); color: #fff;
  box-shadow: var(--shadow-glow);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 14px 50px -12px rgba(47, 125, 255, 0.65); }
.btn-ghost {
  background: var(--bg-card); color: var(--text); border-color: var(--border-strong);
}
.btn-ghost:hover { background: var(--bg-card-hover); border-color: var(--pink); }
.btn-sm { padding: 9px 16px; font-size: 14px; }

/* ---------- Hero ---------- */
.hero { padding-top: 150px; padding-bottom: 60px; }
.hero-inner { text-align: center; max-width: 900px; margin: 0 auto; }
.hero h1 { margin: 18px 0 22px; }
.hero p.sub { font-size: clamp(16px, 1.8vw, 20px); max-width: 680px; margin: 0 auto 36px; }
.hero .cta-row { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

.scroll-hint {
  margin-top: 60px; display: flex; justify-content: center; color: var(--text-mute);
  font-size: 13px; letter-spacing: 2px; text-transform: uppercase;
  animation: bob 2.5s ease-in-out infinite;
}
@keyframes bob { 50% { transform: translateY(8px); } }

/* ---------- Stats ---------- */
.stats { padding: 40px 0; }
.stats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
  padding: 28px; border: 1px solid var(--border); border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255,255,255,0.02), transparent);
  backdrop-filter: blur(20px);
}
.stat { text-align: center; }
.stat-v { font-size: clamp(28px, 3.5vw, 40px); font-weight: 800; background: var(--grad); -webkit-background-clip: text; color: transparent; }
.stat-l { font-size: 13px; color: var(--text-dim); text-transform: uppercase; letter-spacing: 1.5px; margin-top: 4px; }

/* ---------- Cards / Services ---------- */
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }

.card {
  position: relative;
  padding: 28px; border: 1px solid var(--border); border-radius: var(--radius);
  background: var(--bg-card);
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
  overflow: hidden;
}
.card::before {
  content: "";
  position: absolute; inset: 0;
  background: var(--grad-soft);
  opacity: 0; transition: opacity 0.3s ease;
  pointer-events: none;
}
.card:hover { transform: translateY(-4px); border-color: var(--border-strong); background: var(--bg-card-hover); }
.card:hover::before { opacity: 1; }
.card > * { position: relative; }

.svc-icon {
  width: 52px; height: 52px; border-radius: 14px;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--grad); color: #fff; margin-bottom: 18px;
  box-shadow: var(--shadow-glow);
}
.svc-icon svg { width: 26px; height: 26px; }
.card h3 { margin-bottom: 10px; }
.card p { font-size: 15px; }

/* ---------- Demos ---------- */
.demo-card { cursor: pointer; padding: 0; }
.demo-preview {
  aspect-ratio: 16 / 10;
  background: linear-gradient(135deg, #1a1a22, #0a0a12);
  display: flex; align-items: center; justify-content: center;
  font-size: clamp(20px, 2.4vw, 28px); font-weight: 800; letter-spacing: 2px;
  color: #fff; position: relative; overflow: hidden;
}
.demo-preview::after {
  content: ""; position: absolute; inset: 0;
  background: var(--grad-soft); pointer-events: none;
}
.demo-preview span { position: relative; z-index: 2; text-shadow: 0 2px 20px rgba(0,0,0,0.4); }

/* Browser Chrome (für Website-Demos) */
.demo-preview.preview-web {
  background: #0a0a12;
  padding: 28px 14px 0;
  flex-direction: column; justify-content: flex-start;
}
.demo-preview.preview-web::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 28px;
  background: #15151c; border-bottom: 1px solid rgba(255,255,255,0.05);
  z-index: 1;
}
.demo-preview.preview-web .dots {
  position: absolute; top: 10px; left: 12px; display: flex; gap: 6px; z-index: 2;
}
.demo-preview.preview-web .dots i {
  width: 9px; height: 9px; border-radius: 50%; background: #444;
}
.demo-preview.preview-web .dots i:nth-child(1) { background: #ff5f57; }
.demo-preview.preview-web .dots i:nth-child(2) { background: #ffbd2e; }
.demo-preview.preview-web .dots i:nth-child(3) { background: #28c840; }
.demo-preview.preview-web .addrbar {
  position: absolute; top: 6px; left: 50%; transform: translateX(-50%);
  z-index: 2; height: 16px; width: 50%; background: rgba(255,255,255,0.06);
  border-radius: 3px; display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.5); font-size: 10px; font-weight: 500; letter-spacing: 0.5px;
}
.demo-preview.preview-web .screen {
  width: 100%; height: 100%; margin-top: 14px; border-radius: 6px 6px 0 0;
  background: linear-gradient(135deg, var(--demo-c1, #2a1020), var(--demo-c2, #0a0a18));
  display: flex; align-items: center; justify-content: center; position: relative;
  overflow: hidden;
}
.demo-preview.preview-web .screen::after {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(circle at 30% 30%, rgba(59, 139, 255, 0.25), transparent 60%);
}
.demo-preview.preview-web .screen span {
  font-size: clamp(16px, 1.8vw, 22px); letter-spacing: 1px; z-index: 2;
}

/* Instagram Phone Frame (für Instagram-Demos) */
.demo-preview.preview-ig {
  background: linear-gradient(135deg, #1a0820, #0a0a14);
  padding: 18px;
  flex-direction: column;
}
.demo-preview.preview-ig::after { background: transparent; }
.demo-preview.preview-ig .phone {
  position: relative; width: min(180px, 55%); height: 90%;
  background: #0e0e10; border-radius: 22px; border: 3px solid rgba(255,255,255,0.12);
  overflow: hidden; display: flex; flex-direction: column;
  box-shadow: 0 20px 40px rgba(0,0,0,0.5), 0 0 0 1px rgba(59, 139, 255,0.2);
  z-index: 2;
}
.demo-preview.preview-ig .phone .top {
  height: 18px; background: #000;
  display: flex; justify-content: center; align-items: center;
}
.demo-preview.preview-ig .phone .top::after {
  content: ""; width: 40px; height: 5px; background: #1a1a1a; border-radius: 10px;
}
.demo-preview.preview-ig .phone .av {
  width: 40px; height: 40px; border-radius: 50%; margin: 10px auto 6px;
  background: linear-gradient(45deg, #feda75, #fa7e1e, #d62976, #962fbf, #4f5bd5);
  padding: 2px;
}
.demo-preview.preview-ig .phone .av .inner {
  width: 100%; height: 100%; border-radius: 50%;
  background: linear-gradient(135deg, #76b4ff, #14c8d6);
  display: flex; align-items: center; justify-content: center; font-size: 18px;
}
.demo-preview.preview-ig .phone .handle {
  text-align: center; font-size: 9px; font-weight: 600; color: #fff;
  letter-spacing: 0.3px; margin-bottom: 2px; text-shadow: none;
}
.demo-preview.preview-ig .phone .grid-mini {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; flex: 1; padding: 6px 4px 4px;
}
.demo-preview.preview-ig .phone .grid-mini i {
  background: linear-gradient(135deg, #3b8bff, #14c8d6); border-radius: 1px;
}
.demo-preview.preview-ig .phone .grid-mini i:nth-child(2) { background: linear-gradient(135deg, #14c8d6, #5b0a8a); }
.demo-preview.preview-ig .phone .grid-mini i:nth-child(3) { background: linear-gradient(135deg, #76b4ff, #3b8bff); }
.demo-preview.preview-ig .phone .grid-mini i:nth-child(4) { background: linear-gradient(135deg, #4a0d66, #3b8bff); }
.demo-preview.preview-ig .phone .grid-mini i:nth-child(5) { background: linear-gradient(135deg, #3b8bff, #76b4ff); }
.demo-preview.preview-ig .phone .grid-mini i:nth-child(6) { background: linear-gradient(135deg, #14c8d6, #3b8bff); }
.demo-preview.preview-ig .badge-text {
  position: absolute; right: 18px; top: 50%; transform: translateY(-50%);
  text-align: right; z-index: 2; max-width: 45%;
}
.demo-preview.preview-ig .badge-text strong {
  display: block; font-size: clamp(14px, 1.5vw, 18px); letter-spacing: 0.5px;
  background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent;
}
.demo-preview.preview-ig .badge-text small {
  color: rgba(255,255,255,0.5); font-size: 11px; letter-spacing: 1px; text-transform: uppercase;
  font-weight: 600;
}
.demo-body { padding: 22px 24px 24px; }
.demo-tag {
  display: inline-block; font-size: 11px; font-weight: 700; letter-spacing: 1.2px;
  text-transform: uppercase; padding: 4px 10px; border-radius: 999px;
  background: var(--grad); color: #fff; margin-bottom: 10px;
}
.demo-body h3 { margin-bottom: 8px; }
.demo-body p { font-size: 14px; }
.demo-open {
  margin-top: 14px; display: inline-flex; align-items: center; gap: 6px;
  font-size: 14px; font-weight: 600; color: var(--pink-2);
}
.demo-open:after { content: "→"; transition: transform 0.2s ease; }
.demo-card:hover .demo-open:after { transform: translateX(4px); }

/* ---------- Modal ---------- */
.modal-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,0.75);
  backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
  display: none; align-items: center; justify-content: center;
  z-index: 200; padding: 20px;
}
.modal-overlay.open { display: flex; animation: fadein 0.2s ease; }
@keyframes fadein { from { opacity: 0; } to { opacity: 1; } }

.modal {
  width: min(680px, 100%); max-height: 90vh; overflow: auto;
  background: var(--bg-soft); border: 1px solid var(--border-strong);
  border-radius: var(--radius); box-shadow: var(--shadow-card);
  animation: pop 0.25s ease;
}
@keyframes pop { from { transform: scale(0.95); opacity: 0; } to { transform: scale(1); opacity: 1; } }
.modal-preview {
  aspect-ratio: 16 / 8;
  display: flex; align-items: center; justify-content: center;
  font-size: clamp(26px, 3vw, 36px); font-weight: 800; letter-spacing: 3px;
  background: linear-gradient(135deg, #1a1a22, #0a0a12); color: #fff;
  border-radius: var(--radius) var(--radius) 0 0; position: relative; overflow: hidden;
}
.modal-preview::after { content: ""; position: absolute; inset: 0; background: var(--grad-soft); }
.modal-preview span { position: relative; z-index: 1; }
.modal-body { padding: 28px 30px 30px; }
.modal-body .demo-tag { margin-bottom: 14px; }
.modal-body h3 { margin-bottom: 10px; font-size: 26px; }
.modal-body p { margin-bottom: 20px; font-size: 16px; color: var(--text-dim); }
.metrics { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 24px; }
.metric {
  padding: 8px 14px; border: 1px solid var(--border-strong);
  border-radius: 999px; font-size: 13px; font-weight: 600; color: var(--text);
  background: var(--bg-card);
}
.modal-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.modal-close {
  position: absolute; top: 14px; right: 14px; z-index: 2;
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(0,0,0,0.5); border: 1px solid var(--border-strong);
  color: #fff; display: flex; align-items: center; justify-content: center;
  font-size: 20px;
}
.modal-close:hover { background: var(--pink); border-color: var(--pink); }

/* ---------- About ---------- */
.about-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.about-item {
  padding: 26px; border: 1px solid var(--border); border-radius: var(--radius);
  background: var(--bg-card);
}
.about-item h3 { font-size: 19px; margin-bottom: 8px; background: var(--grad); -webkit-background-clip: text; color: transparent; }

/* ---------- Pricing ---------- */
.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); gap: 16px; align-items: stretch; }
.plan {
  position: relative; padding: 26px 22px;
  border: 1px solid var(--border); border-radius: var(--radius);
  background: var(--bg-card);
  display: flex; flex-direction: column;
}
.plan.highlight { border-color: transparent; background: linear-gradient(var(--bg-soft), var(--bg-soft)) padding-box, var(--grad) border-box; border: 1.5px solid transparent; }
.plan-badge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--grad); color: #fff; padding: 4px 12px; border-radius: 999px;
  font-size: 12px; font-weight: 700; letter-spacing: 0.5px;
}
.plan h3 { font-size: 22px; margin-bottom: 6px; }
.plan .price { font-size: 34px; font-weight: 800; margin: 10px 0 16px; }
.plan .price small { font-size: 16px; font-weight: 500; color: var(--text-dim); }
.plan ul { list-style: none; padding: 0; margin: 0 0 24px; }
.plan li { padding: 9px 0; color: var(--text-dim); font-size: 15px; border-bottom: 1px dashed var(--border); display: flex; gap: 10px; }
.plan li:before { content: "✓"; color: var(--pink-2); font-weight: 700; }
.plan li:last-child { border-bottom: 0; }
.plan .btn { margin-top: auto; width: 100%; }
.pricing-note { text-align: center; color: var(--text-mute); font-size: 13px; margin-top: 22px; }

/* ---------- Testimonials ---------- */
.quote {
  padding: 30px; border: 1px solid var(--border); border-radius: var(--radius);
  background: var(--bg-card); position: relative;
}
.quote:before {
  content: "“"; font-family: Georgia, serif; font-size: 80px; line-height: 1;
  position: absolute; top: 6px; left: 18px;
  background: var(--grad); -webkit-background-clip: text; color: transparent;
}
.quote blockquote { font-size: 17px; margin: 30px 0 18px; color: var(--text); }
.quote .author { font-weight: 700; }
.quote .role { font-size: 14px; color: var(--text-dim); }

/* ---------- Contact ---------- */
.contact-wrap { display: grid; grid-template-columns: 1fr 1.2fr; gap: 36px; align-items: start; }
.contact-info .info-item { display: flex; gap: 14px; margin-bottom: 22px; align-items: flex-start; }
.contact-info .info-item .i {
  width: 42px; height: 42px; border-radius: 12px;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--grad-soft); border: 1px solid var(--border-strong);
  color: var(--pink-2);
}
.contact-info .info-item b { display: block; margin-bottom: 2px; color: var(--text); }
.contact-info .info-item span { color: var(--text-dim); font-size: 15px; }

form.contact-form {
  padding: 30px; border: 1px solid var(--border); border-radius: var(--radius);
  background: var(--bg-card); display: grid; gap: 14px;
}
form.contact-form .row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
form.contact-form label { font-size: 13px; color: var(--text-dim); font-weight: 600; display: block; margin-bottom: 6px; }
form.contact-form input,
form.contact-form select,
form.contact-form textarea {
  width: 100%; padding: 12px 14px; border-radius: 12px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border-strong);
  color: var(--text); font-size: 15px; font-family: inherit;
  transition: border-color 0.2s ease, background 0.2s ease;
}
form.contact-form input:focus,
form.contact-form select:focus,
form.contact-form textarea:focus {
  outline: none; border-color: var(--pink); background: rgba(255,255,255,0.07);
}
form.contact-form textarea { min-height: 130px; resize: vertical; }
form.contact-form .form-success {
  padding: 14px 18px; border-radius: 12px;
  background: linear-gradient(135deg, rgba(20, 200, 214, 0.2), rgba(47, 125, 255, 0.2));
  border: 1px solid var(--pink); color: var(--text); font-weight: 600;
  display: none;
}
form.contact-form.submitted .form-success { display: block; }

/* ---------- Footer ---------- */
footer {
  border-top: 1px solid var(--border); padding: 50px 0 30px;
  position: relative; z-index: 1; margin-top: 40px;
}
footer .foot { display: flex; justify-content: space-between; gap: 24px; flex-wrap: wrap; align-items: center; }
footer .foot .left { display: flex; gap: 14px; align-items: center; }
footer .foot .left img { height: 36px; }
footer .foot .tag { color: var(--text-dim); font-size: 14px; max-width: 360px; }
footer .legal { display: flex; gap: 18px; flex-wrap: wrap; }
footer .legal a { color: var(--text-dim); font-size: 14px; }
footer .legal a:hover { color: var(--pink-2); }
footer .copy { color: var(--text-mute); font-size: 13px; margin-top: 24px; text-align: center; }

/* ---------- Reveal Animation ---------- */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-2 { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .contact-wrap { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
  .nav-links { display: none; }
  .mobile-toggle { display: inline-flex; }
  .nav.open .nav-links {
    display: flex; position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; padding: 20px 24px; gap: 18px;
    background: rgba(10, 10, 14, 0.96); border-bottom: 1px solid var(--border);
    backdrop-filter: blur(12px);
  }
  .grid-4, .grid-3 { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  form.contact-form .row { grid-template-columns: 1fr; }
  .hero { padding-top: 120px; }
}

/* ---------- Zusätzliche Animationen ---------- */
/* Stats-Counter: verhindert Layout-Shift */
.stat-v { font-variant-numeric: tabular-nums; min-height: 1em; }

/* Smooth Card Transform */
.card, .plan, .about-item {
  transition: transform 0.35s cubic-bezier(.2,.8,.2,1),
              box-shadow 0.35s cubic-bezier(.2,.8,.2,1),
              border-color 0.3s ease,
              background 0.3s ease;
  will-change: transform;
}

/* Glow-on-Hover für Service-Cards */
.card .svc-icon { transition: transform 0.4s cubic-bezier(.2,.8,.2,1), color 0.3s ease; }
.card:hover .svc-icon { transform: scale(1.08) rotate(-4deg); color: var(--pink-2); }

/* Gradient-Border Pulse für Pricing-Highlight */
.plan.highlight { position: relative; }
.plan.highlight::before {
  content: "";
  position: absolute; inset: -1px; border-radius: inherit;
  background: linear-gradient(120deg, var(--pink-2), var(--purple), var(--pink-2));
  background-size: 200% 200%;
  z-index: -1; opacity: .5;
  animation: borderFlow 4s linear infinite;
}
@keyframes borderFlow {
  0% { background-position: 0% 50%; }
  100% { background-position: 200% 50%; }
}

/* Marquee / Laufband – für Stat-Strip dekorativ */
.marquee {
  overflow: hidden; white-space: nowrap;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
  mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
}
.marquee-track { display: inline-flex; gap: 42px; animation: marquee 30s linear infinite; }
.marquee-track span {
  color: var(--text-dim); font-weight: 600; font-size: 14px; letter-spacing: 0.08em; text-transform: uppercase;
  display: inline-flex; align-items: center; gap: 10px;
}
.marquee-track span::after { content: "•"; color: var(--pink-2); }
@keyframes marquee { to { transform: translateX(-50%); } }

/* Testimonials: sanftes Floating */
.quote {
  transition: transform 0.35s cubic-bezier(.2,.8,.2,1), border-color 0.3s;
  animation: floatY 6s ease-in-out infinite;
}
.quote:nth-child(2) { animation-delay: 2s; }
.quote:nth-child(3) { animation-delay: 4s; }
@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

/* Hero Headline: sanftes Glow-Breathing auf Gradient-Wort */
.gradient-text {
  background-size: 200% 200%;
  animation: gradShift 6s ease-in-out infinite;
}
@keyframes gradShift {
  0%, 100% { background-position: 0% 50%; filter: drop-shadow(0 0 24px rgba(47, 125, 255,.35)); }
  50% { background-position: 100% 50%; filter: drop-shadow(0 0 40px rgba(20, 200, 214,.5)); }
}

/* Demo-Cards: sanftes Scale auf Hover */
.demo-card .demo-preview { transition: transform 0.5s cubic-bezier(.2,.8,.2,1); }
.demo-card:hover .demo-preview { transform: scale(1.03); }

/* Scroll-Progress-Bar ganz oben */
#scrollBar {
  position: fixed; top: 0; left: 0; height: 3px; width: 0%;
  background: linear-gradient(90deg, var(--pink-2), var(--purple));
  z-index: 9000; pointer-events: none;
  box-shadow: 0 0 18px rgba(47, 125, 255,.7);
  transition: width 0.1s linear;
}

/* Button Ripple-Effekt */
.btn { position: relative; overflow: hidden; }
.btn::after {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(circle at var(--rx,50%) var(--ry,50%), rgba(255,255,255,0.3) 0%, transparent 40%);
  opacity: 0; transition: opacity 0.4s;
  pointer-events: none;
}
.btn:hover::after { opacity: 1; }

/* Section-Headlines: gradient underline on reveal */
.section-head h2 { position: relative; display: inline-block; }
.section-head h2::after {
  content: ""; position: absolute; left: 0; bottom: -10px;
  height: 3px; width: 0;
  background: linear-gradient(90deg, var(--pink-2), var(--purple));
  border-radius: 2px;
  transition: width 0.8s cubic-bezier(.2,.8,.2,1) 0.2s;
}
.section-head.in h2::after { width: 60px; }

/* Trust / DSGVO band – hebt den Vertrauens-Abschnitt dezent ab */
#trust { background: linear-gradient(180deg, rgba(59, 139, 255, 0.06), transparent 75%); }
#trust .card { background: var(--bg-card-hover); border-color: var(--border-strong); }

/* ---------- 3D-Effekte ---------- */
/* Wandernder Licht-Reflex auf Karten (folgt der Maus, von script.js gesetzt) */
.tilt-glare {
  position: absolute; inset: 0; border-radius: inherit; z-index: 3;
  pointer-events: none; opacity: 0; transition: opacity 0.35s ease;
  background: radial-gradient(240px circle at var(--mx, 50%) var(--my, 50%), rgba(255,255,255,0.16), transparent 60%);
}
.card:hover .tilt-glare, .plan:hover .tilt-glare { opacity: 1; }

/* 3D-Einflug beim Scrollen – Karten klappen aus der Tiefe herein */
.card.reveal, .plan.reveal, .about-item.reveal, .quote.reveal {
  transform: perspective(900px) translateY(34px) rotateX(12deg);
  transform-origin: center bottom;
}
.card.reveal.in, .plan.reveal.in, .about-item.reveal.in, .quote.reveal.in {
  transform: perspective(900px) translateY(0) rotateX(0deg);
}

/* Reduced Motion Respekt */
@media (prefers-reduced-motion: reduce) {
  .quote, .plan.highlight::before, .gradient-text, .marquee-track { animation: none !important; }
  .reveal,
  .card.reveal, .plan.reveal, .about-item.reveal, .quote.reveal,
  .card.reveal.in, .plan.reveal.in, .about-item.reveal.in, .quote.reveal.in {
    transition: opacity 0.3s ease; transform: none !important;
  }
  .tilt-glare { display: none; }
}


/* ============================================================
   TEST-OVERRIDES: Anti-KI-Look (Vorschlag)
   Ziel: futuristisch bleiben, aber die typischen
   "KI-Template"-Signale entfernen:
   - Inter-Font → Space Grotesk (Headlines) + Instrument Sans (Text)
   - Blau→Cyan-Verlauf überall → EIN ruhiger Akzent (Cyan)
   - Gradient-Headline mit Glow-Breathing → solide Akzentfarbe
   - Pill-Buttons mit Glow → solide Buttons, klare Kanten
   - Wabernde Farb-Blobs → stark gedimmt
   ============================================================ */

:root {
  /* Ein einziger Akzent statt Verlauf */
  --pink: #17b3c3;
  --pink-2: #2fd0df;
  --purple: #2fd0df;
  --grad: linear-gradient(135deg, #17b3c3, #17b3c3);
  --grad-soft: rgba(23, 179, 195, 0.10);

  /* Neutralerer, tieferer Grund (weniger "Neon-Nacht") */
  --bg: #0b1017;
  --bg-soft: #101722;

  /* Kanten statt Bubbles */
  --radius: 14px;
  --radius-sm: 10px;
  --shadow-glow: 0 8px 28px -12px rgba(23, 179, 195, 0.35);
}

body {
  font-family: "Instrument Sans", "Helvetica Neue", system-ui, -apple-system, Arial, sans-serif;
}
h1, h2, h3, .plan .price, .stat .value, .nav-logo strong {
  font-family: "Space Grotesk", "Instrument Sans", system-ui, sans-serif;
  font-weight: 700;
}
h1 { letter-spacing: -0.03em; }

/* Headline-Akzentwort: solide Farbe statt animiertem Verlauf */
.gradient-text {
  background: none;
  -webkit-background-clip: initial;
  background-clip: initial;
  color: var(--pink-2);
  animation: none;
}
.gradient-text.scramble::after { color: var(--pink-2); }

/* Buttons: klare Kanten, kein Pill, kein Dauer-Glow */
.btn { border-radius: 10px; }
.btn-primary { background: var(--pink); box-shadow: none; }
.btn-primary:hover {
  transform: translateY(-2px);
  background: var(--pink-2);
  box-shadow: 0 10px 30px -14px rgba(23, 179, 195, 0.5);
}
.lang-switch, .lang-switch button { border-radius: 8px; }
.eyebrow { border-radius: 8px; background: var(--grad-soft); }

/* Hintergrund-Blobs: fast aus (Rest-Tiefe bleibt) */
.bg-decor::before, .bg-decor::after { opacity: 0.22; }

/* (Grid bleibt wie im Original — die Partikel tragen den Tech-Look) */

/* Scrollbar oben: eine Farbe, kein Glow */
#scrollBar { background: var(--pink); box-shadow: none; }

/* Section-Unterstreichung: kurz, solide */
.section-head h2::after { background: var(--pink); height: 2px; }

/* Testimonials: ausgeblendet, solange keine ECHTEN Kundenstimmen
   vorliegen — erfundene Zitate sind das stärkste KI/Fake-Signal. */
#testimonials { display: none; }

/* Karten: Dauer-Schwebe-Animation aus (Quotes wären eh weg,
   gilt auch für evtl. weitere floatY-Nutzung) */
.quote { animation: none; }

/* ============================================================
   TEST-OVERRIDES Teil 2: Neue Sektionen
   (Showcase-Mockup, Verlust-Rechner, Branchen, FAQ, Demo-Vorschauen)
   ============================================================ */

/* --- Showcase: Browser-Mockup mit echter Demo-Seite --- */
.showcase { padding-top: 0; margin-top: -10px; }
.browser-frame {
  max-width: 980px; margin: 0 auto;
  border: 1px solid var(--border-strong); border-radius: var(--radius);
  background: var(--bg-soft); overflow: hidden;
  box-shadow: var(--shadow-card);
}
.browser-bar {
  display: flex; align-items: center; gap: 7px;
  padding: 11px 16px; border-bottom: 1px solid var(--border);
  background: rgba(255,255,255,0.03);
}
.browser-bar .bdot { width: 11px; height: 11px; border-radius: 50%; background: rgba(255,255,255,0.15); }
.browser-bar .burl {
  margin-left: 12px; font-size: 13px; color: var(--text-mute);
  border: 1px solid var(--border); border-radius: 7px; padding: 3px 12px;
  background: rgba(0,0,0,0.25);
}
.browser-view { position: relative; height: 520px; overflow: hidden; }
.browser-view iframe {
  width: 1280px; height: 1665px; border: 0;
  transform: scale(0.766); transform-origin: 0 0;
  pointer-events: none; /* Scroll bleibt auf der Hauptseite */
}
.browser-link {
  display: block; text-align: center; padding: 13px;
  font-size: 14px; font-weight: 600; color: var(--pink-2);
  border-top: 1px solid var(--border);
}
.browser-link:hover { background: var(--bg-card-hover); }

/* --- Verlust-Rechner --- */
.rechner { padding-top: 0; }
.calc-card {
  display: grid; grid-template-columns: 1.2fr 1fr; gap: 40px;
  max-width: 900px; margin: 0 auto;
  border: 1px solid var(--border-strong); border-radius: var(--radius);
  background: var(--bg-card); padding: 34px 38px;
}
.calc-sliders label {
  display: block; font-weight: 600; font-size: 15px; color: var(--text);
  margin-bottom: 22px;
}
.calc-sliders output { float: right; color: var(--pink-2); font-variant-numeric: tabular-nums; }
.calc-sliders input[type="range"] {
  width: 100%; margin-top: 10px; accent-color: var(--pink);
}
.calc-result {
  display: flex; flex-direction: column; justify-content: center; gap: 8px;
  text-align: center; border-left: 1px solid var(--border); padding-left: 38px;
}
.calc-label { font-size: 13px; color: var(--text-dim); line-height: 1.45; }
.calc-sum {
  font-family: "Space Grotesk", sans-serif; font-weight: 700;
  font-size: clamp(34px, 4vw, 48px); color: var(--pink-2);
  font-variant-numeric: tabular-nums;
}
.calc-per { font-size: 13px; color: var(--text-mute); margin-bottom: 10px; }
@media (max-width: 760px) {
  .calc-card { grid-template-columns: 1fr; gap: 24px; }
  .calc-result { border-left: 0; padding-left: 0; border-top: 1px solid var(--border); padding-top: 24px; }
}

/* --- Branchen --- */
.branchen { padding-top: 0; }
.branchen-grid {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px;
}
.branche {
  border: 1px solid var(--border); border-radius: var(--radius-sm);
  background: var(--bg-card); padding: 18px 16px;
  transition: border-color 0.2s ease, background 0.2s ease;
}
.branche:hover { border-color: var(--pink); background: var(--bg-card-hover); }
.branche b { display: block; font-size: 15px; margin-bottom: 6px; }
.branche span { font-size: 13px; color: var(--text-dim); line-height: 1.45; }
@media (max-width: 1000px) { .branchen-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .branchen-grid { grid-template-columns: 1fr; } }

/* --- FAQ --- */
.faq .faq-list { max-width: 760px; margin: 0 auto; }
.faq details {
  border: 1px solid var(--border); border-radius: var(--radius-sm);
  background: var(--bg-card); margin-bottom: 12px; padding: 0 22px;
}
.faq details[open] { border-color: var(--border-strong); background: var(--bg-card-hover); }
.faq summary {
  cursor: pointer; list-style: none; font-weight: 600; font-size: 16px;
  padding: 18px 0; position: relative; padding-right: 34px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+"; position: absolute; right: 4px; top: 50%; transform: translateY(-50%);
  color: var(--pink-2); font-size: 22px; font-weight: 500; transition: transform 0.2s ease;
}
.faq details[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq details p { padding: 0 0 18px; color: var(--text-dim); font-size: 15px; line-height: 1.6; }

/* --- Demo-Karten: echte Mini-Vorschau statt Emoji-Platzhalter --- */
.demo-preview .mini-site { position: absolute; inset: 0; overflow: hidden; }
.demo-preview .mini-site iframe {
  width: 1280px; height: 900px; border: 0;
  transform: scale(0.452); transform-origin: 0 0;
  pointer-events: none;
}

/* ============================================================
   TEST-OVERRIDES Teil 3: Menschlicher Auftritt
   (Team-Sektion, Handschrift-Akzente)
   ============================================================ */

/* Handschrift-Notizen — bewusst nur an ZWEI Stellen (Demos + Signatur) */
.hand-note {
  font-family: "Caveat", cursive; font-weight: 600;
  color: var(--pink-2); font-size: 24px;
  display: inline-block; transform: rotate(-2deg);
}
.hand-note.big { font-size: 40px; }
.hand-note-wrap { text-align: center; margin: -30px 0 10px; position: relative; z-index: 1; }

/* Team */
.team { padding-top: 0; }
.team-grid {
  display: flex; justify-content: center; gap: 26px; flex-wrap: wrap;
}
.person {
  border: 1px solid var(--border); border-radius: var(--radius);
  background: var(--bg-card); padding: 30px 44px; text-align: center;
  min-width: 240px;
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.person:hover { border-color: var(--pink); transform: translateY(-3px); }
.person .avatar {
  width: 84px; height: 84px; border-radius: 50%;
  margin: 0 auto 16px; display: flex; align-items: center; justify-content: center;
  font-family: "Space Grotesk", sans-serif; font-size: 32px; font-weight: 700;
  color: var(--pink-2); background: var(--grad-soft);
  border: 2px solid var(--pink);
}
.person .avatar img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; }
.person b { display: block; font-size: 19px; margin-bottom: 4px; }
.person .prole { font-size: 14px; color: var(--text-dim); }
.team-sig { text-align: center; margin-top: 34px; }
.team-sig .sig-sub { display: block; font-size: 14px; color: var(--text-mute); margin-top: 2px; }

/* ============================================================
   TEST-OVERRIDES Teil 4: Hell & warm statt Dunkel-Neon
   Referenzen: tooltime.de + shore.com (verkaufen an dieselbe
   Zielgruppe — beide hell, warm, EINE kräftige Akzentfarbe).
   Der Hero bleibt als EINZIGES dunkles Element (Partikel =
   Signature-Moment), der Rest wird hell und warm.
   ============================================================ */

:root {
  /* Warmer heller Grund, Tinte statt Weiß-auf-Schwarz */
  --bg: #f7f5f0;
  --bg-soft: #ffffff;
  --bg-card: #ffffff;
  --bg-card-hover: #f1eee7;
  --border: #e6e2d8;
  --border-strong: #d3cdc0;
  --text: #23201a;
  --text-dim: #5d5749;
  --text-mute: #8d8779;

  /* Petrol als einziger Akzent (statt Neon-Cyan) */
  --pink: #0d7a72;
  --pink-2: #0d8c82;
  --purple: #0d8c82;
  --grad: linear-gradient(135deg, #0d7a72, #0d7a72);
  --grad-soft: rgba(13, 122, 114, 0.08);
  --shadow-glow: 0 8px 24px -12px rgba(13, 122, 114, 0.35);
  --shadow-card: 0 18px 44px -28px rgba(35, 32, 26, 0.25);
}
body { background: var(--bg); }
::selection { background: var(--pink); color: #fff; }

/* --- Hero: dunkel-warmes Band mit Partikeln (Signature) --- */
.hero {
  --text: #f5f3ec;
  --text-dim: #c6c1b2;
  --text-mute: #94907f;
  --bg-card: rgba(255, 255, 255, 0.06);
  --bg-card-hover: rgba(255, 255, 255, 0.1);
  --border: rgba(255, 255, 255, 0.1);
  --border-strong: rgba(255, 255, 255, 0.22);
  background: #191d23 radial-gradient(ellipse at 50% -20%, #232b33, #191d23 65%);
  color: var(--text);
}
.hero::before {
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
}
.hero .eyebrow { color: var(--text); background: rgba(13, 140, 130, 0.18); }
.hero .gradient-text { color: #4ec6ba; } /* Akzentwort im Hero: helleres Petrol */

/* --- Navigation: hell über hellem Inhalt, hell-transparent über Hero --- */
.nav { --text: #f5f3ec; --text-dim: #c6c1b2; }
.nav.scrolled {
  background: rgba(250, 248, 243, 0.88);
  border-bottom-color: var(--border);
  --text: #23201a; --text-dim: #5d5749;
}
.nav .lang-switch { background: rgba(255, 255, 255, 0.08); border-color: rgba(255,255,255,0.22); }
.nav.scrolled .lang-switch { background: #fff; border-color: var(--border-strong); }
.nav .mobile-toggle { border-color: rgba(255,255,255,0.22); }
.nav.scrolled .mobile-toggle { border-color: var(--border-strong); color: var(--text); }

/* --- Hintergrund-Blobs: warme, sehr dezente Farbflächen --- */
.bg-decor::before { background: radial-gradient(circle, #0d7a72 0%, transparent 70%); opacity: 0.08; }
.bg-decor::after { background: radial-gradient(circle, #d9a441 0%, transparent 70%); opacity: 0.08; }

/* --- Karten & Sektionen im hellen Look --- */
.stats-grid { background: #fff; backdrop-filter: none; box-shadow: var(--shadow-card); }
.card:hover, .person:hover, .branche:hover { box-shadow: var(--shadow-card); }
.svc-icon { background: var(--grad-soft) !important; color: var(--pink); }
#trust { background: linear-gradient(180deg, rgba(13, 122, 114, 0.05), transparent 75%); }
#trust .card { background: #fff; }
.about-item h3 { background: none; -webkit-background-clip: initial; color: var(--pink); }
form.contact-form input,
form.contact-form select,
form.contact-form textarea { background: #fff; }
form.contact-form input:focus,
form.contact-form select:focus,
form.contact-form textarea:focus { background: #fff; }
form.contact-form .form-success { background: var(--grad-soft); }
.modal-overlay { background: rgba(30, 27, 22, 0.5); }
.metric { background: var(--grad-soft); border-color: transparent; color: var(--pink); }

/* --- Footer: dunkel-warmes Gegenstück zum Hero --- */
footer {
  background: #191d23; border-top: 0; margin-top: 80px; padding: 56px 0 32px;
  --text: #f5f3ec; --text-dim: #c6c1b2; --text-mute: #94907f; --border: rgba(255,255,255,0.1);
  color: var(--text-dim);
}

/* --- Kleinkram --- */
#scrollBar { background: var(--pink); }
.demo-tag { background: var(--pink); }
.marquee-track span::after { color: var(--pink); }
.stat-v { background: none; -webkit-background-clip: initial; color: var(--pink); }
.hand-note { color: #b0812f; } /* Handschrift in warmem Bernstein */
.person .avatar { color: var(--pink); }

/* Scramble-Cursor im Hero: Petrol statt Blau */
.gradient-text.scramble::after { color: #4ec6ba; }

/* Demo-Karten: statischer Screenshot füllt die Vorschau */
.demo-preview .mini-shot {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: top center;
}

/* ============================================================
   TEST-OVERRIDES Teil 5: Hell + lebendig
   Marlons Feedback: helle Version war zu langweilig.
   → Dunkelblaue Partikel über die GANZE Seite (Lücken + Ränder),
     Hero hell statt dunkler Kasten (Partikel dahinter sichtbar),
     blaue Details überall, besonderes erstes Scroll-Erlebnis.
   ============================================================ */

:root {
  /* Blau statt Petrol — passt zum Logo, "viele blaue Details" */
  --pink: #2456c4;
  --pink-2: #2f66db;
  --purple: #2f66db;
  --grad: linear-gradient(135deg, #2456c4, #2456c4);
  --grad-soft: rgba(36, 86, 196, 0.08);
  --shadow-glow: 0 8px 24px -12px rgba(36, 86, 196, 0.35);
}

/* --- Partikel-Netz: fixiert über die ganze Seite, dunkelblau, dezent --- */
.hero-canvas {
  position: fixed; inset: 0; width: 100%; height: 100vh;
  max-height: none; z-index: 0;
}
.hero-canvas.on { opacity: 0.65; }

/* --- Hero: hell wie der Rest, Partikel übernehmen den Hintergrund --- */
.hero {
  background: transparent;
  --text: #23201a;
  --text-dim: #5d5749;
  --text-mute: #8d8779;
  --bg-card: #ffffff;
  --bg-card-hover: #f1eee7;
  --border: #e6e2d8;
  --border-strong: #d3cdc0;
}
.hero::before { display: none; } /* Grid weg — Partikel tragen die Bewegung */
.hero .eyebrow { color: var(--pink); background: var(--grad-soft); border-color: rgba(36,86,196,0.25); }
.hero .gradient-text { color: var(--pink); }
.gradient-text.scramble::after { color: var(--pink); }
.hero .btn-ghost { background: #fff; }

/* Hero-Parallax: sanftes Zurückbleiben + Ausblenden beim ersten Scroll
   (Transform/Opacity setzt das Inline-Skript, hier nur die Basis) */
.hero-inner.in { transition: opacity 0.2s linear; will-change: transform, opacity; }

/* --- Navigation: immer dunkle Schrift auf hellem Grund --- */
.nav { --text: #23201a; --text-dim: #5d5749; }
.nav .lang-switch { background: #fff; border-color: var(--border-strong); }
.nav .mobile-toggle { border-color: var(--border-strong); color: var(--text); }

/* --- Hintergrund-Blobs: blau, kaum sichtbar (Partikel sind der Star) --- */
.bg-decor::before { background: radial-gradient(circle, #2456c4 0%, transparent 70%); opacity: 0.05; }
.bg-decor::after { background: radial-gradient(circle, #24406e 0%, transparent 70%); opacity: 0.05; }

/* --- Footer: dunkles Nachtblau statt Anthrazit --- */
footer { background: #16233a; }

/* --- Blaue Details statt Petrol/Bernstein --- */
#trust { background: linear-gradient(180deg, rgba(36, 86, 196, 0.05), transparent 75%); }
.hand-note { color: #2456c4; }
.hero .scroll-hint { color: var(--text-mute); }

/* ============================================================
   TEST-OVERRIDES Teil 6: Inhalt in den Vordergrund
   Marlons Feedback: alles wirkt zu hell, Schrift/Angebote
   rücken in den Hintergrund. → Deutlich dunklere Schrift,
   Karten mit Präsenz (Kanten + Schatten), Hintergrund ruhiger.
   ============================================================ */

:root {
  /* Neutralerer, schlichterer Grund */
  --bg: #f6f5f2;
  /* Kräftige Tinte — Inhalte dominieren */
  --text: #16130e;
  --text-dim: #423d35;
  --text-mute: #6b665d;
  --border: #ddd8cc;
  --border-strong: #c2bcae;
  --shadow-card: 0 18px 40px -22px rgba(28, 25, 20, 0.3);
}

/* Überschriften: maximale Präsenz */
h1, h2, h3 { color: var(--text); }
.section-head p { color: var(--text-dim); }

/* Karten & wichtige Flächen: immer sichtbar abgesetzt, nicht erst bei Hover */
.card, .stats-grid, .calc-card, .branche, .person, .faq details, .plan, .demo-card {
  box-shadow: 0 8px 26px -16px rgba(28, 25, 20, 0.22);
  border-color: var(--border);
}
.plan.highlight { box-shadow: 0 16px 40px -18px rgba(36, 86, 196, 0.4); }

/* Hintergrund ruhiger: Partikel dezenter, Deko-Blobs ganz aus */
.hero-canvas.on { opacity: 0.32; }
.bg-decor::before, .bg-decor::after { opacity: 0; }

/* Laufband nicht mehr halb verschwunden */
.marquee-track span { color: var(--text-dim); }

/* ============================================================
   TEST-OVERRIDES Teil 7: Karten hellblau + Layout-Abwechslung
   Marlons Feedback: "alles Weiß auf Weiß", Kästen-Reihen immer
   gleich → Karten in hellem Blau, Hintergrund noch leiser,
   Leistungen als saubere Liste untereinander, Problem/Vertrauen
   2×2, Automatisierungen als kompakte Checkliste.
   ============================================================ */

:root {
  /* Helles Blau statt Weiß — Inhalt hebt sich vom Grund ab */
  --bg-card: #edf1fa;
  --bg-card-hover: #e3eaf8;
  --border: #d4dcef;
  --border-strong: #b7c5e6;
}
.stats-grid { background: #edf1fa; }
.faq details[open] { background: #e3eaf8; }

/* Hintergrund: Partikel nur noch als leises Flimmern */
.hero-canvas.on { opacity: 0.22; }

/* --- Leistungen: saubere Liste untereinander statt 4er-Reihe --- */
#services .grid-4 {
  display: flex; flex-direction: column; gap: 14px;
  max-width: 860px; margin: 0 auto;
}
#services .card {
  display: grid; grid-template-columns: 56px 1fr;
  column-gap: 22px; row-gap: 6px; align-items: start;
  padding: 24px 30px;
}
#services .svc-icon { grid-row: 1 / span 2; align-self: center; margin-bottom: 0; }
#services .card h3 { margin: 0; align-self: center; }
#services .card p { grid-column: 2; }

/* --- Problem + Vertrauen: 2×2 statt 4 nebeneinander --- */
#problem .grid-4, #trust .grid-4 {
  grid-template-columns: 1fr 1fr; max-width: 940px; margin: 0 auto;
}

/* --- Automatisierungen: kompakte zweispaltige Checkliste --- */
#automations .grid-3 {
  grid-template-columns: 1fr 1fr; gap: 12px;
  max-width: 940px; margin: 0 auto;
}
#automations .card {
  display: grid; grid-template-columns: 40px 1fr;
  column-gap: 16px; row-gap: 2px; padding: 16px 20px;
}
#automations .svc-icon {
  grid-row: 1 / span 2; width: 38px; height: 38px; border-radius: 10px;
  align-self: center; margin-bottom: 0;
}
#automations .svc-icon svg { width: 20px; height: 20px; }
#automations .card h3 { font-size: 17px; margin: 0; align-self: center; }
#automations .card p { grid-column: 2; font-size: 14px; }

/* Mobil: alles einspaltig */
@media (max-width: 700px) {
  #problem .grid-4, #trust .grid-4, #automations .grid-3 { grid-template-columns: 1fr; }
}

/* ============================================================
   TEST-OVERRIDES Teil 8: Lenis-Look (Referenz: telescope.fyi
   aus dem Lenis-Showcase) — träges weiches Scrollen, Headlines
   steigen Wort für Wort aus einer Maske, sanfte Parallaxe.
   Fortschritts-Balken oben entfernt (Marlons Wunsch).
   ============================================================ */

/* Kein "Weg durch die Seite" mehr */
#scrollBar { display: none; }

/* Lenis übernimmt das Scrollen — natives smooth-scroll aus */
html { scroll-behavior: auto; }
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }

/* Editorial-Headlines: größer, enger */
.section-head h2 { font-size: clamp(34px, 4.6vw, 58px); letter-spacing: -0.025em; }

/* Wort-für-Wort-Reveal aus der Maske (Spans setzt das Inline-Skript) */
.section-head h2 .wline { display: inline-block; overflow: hidden; vertical-align: bottom; padding-bottom: 0.08em; margin-bottom: -0.08em; }
.section-head h2 .w { display: inline-block; transform: translateY(115%); transition: transform 0.9s cubic-bezier(0.16, 1, 0.3, 1); }
.section-head.in h2 .w { transform: translateY(0); }

/* Reveals insgesamt: weicher, mehr Weg, Showcase-Easing */
.reveal {
  transform: translateY(48px);
  transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1), transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}
.card.reveal, .plan.reveal, .about-item.reveal {
  transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1), transform 0.9s cubic-bezier(0.16, 1, 0.3, 1),
              border-color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}
/* Kaskade: nebeneinander stehende Karten kommen nacheinander */
.grid-4 .card:nth-child(2), .grid-3 .card:nth-child(2), .branchen-grid .branche:nth-child(2), .pricing-grid .plan:nth-child(2) { transition-delay: 0.08s; }
.grid-4 .card:nth-child(3), .grid-3 .card:nth-child(3), .branchen-grid .branche:nth-child(3), .pricing-grid .plan:nth-child(3) { transition-delay: 0.16s; }
.grid-4 .card:nth-child(4), .grid-3 .card:nth-child(4), .branchen-grid .branche:nth-child(4), .pricing-grid .plan:nth-child(4) { transition-delay: 0.24s; }
.grid-3 .card:nth-child(5), .branchen-grid .branche:nth-child(5), .pricing-grid .plan:nth-child(5) { transition-delay: 0.32s; }
.grid-3 .card:nth-child(6) { transition-delay: 0.4s; }

/* Demo-Screenshots: minimal überhöht für Parallax-Spielraum */
.demo-preview .mini-shot { height: 112%; top: -6%; will-change: transform; }

/* ============================================================
   TEST-OVERRIDES Teil 9: GSAP-Feinschliff
   Hero-Entrance übernimmt GSAP — CSS-Reveal dort abschalten,
   sonst blitzt der Inhalt doppelt.
   ============================================================ */
.hero-inner.reveal { opacity: 1; transform: none; transition: none; }
.calc-sum { display: inline-block; will-change: transform; }
#demos .demo-card { will-change: transform; }
/* Hero bleibt unsichtbar, bis die GSAP-Entrance ihn übernimmt */
.gsap-on .hero-inner { opacity: 0; }

/* ============================================================
   TEST-OVERRIDES Teil 10: Vanta-Globe-Hintergrund (vantajs.com)
   Fixiert über die ganze Seite, Inhalt klar davor.
   ============================================================ */
#vantaBg {
  position: fixed; inset: 0; z-index: 0;
  pointer-events: none;
  opacity: 0.34;
}
#vantaBg canvas { display: block; }

/* Mobil-Feinschliff: Badge darf umbrechen statt aus dem Bild zu laufen */
.eyebrow { white-space: normal; max-width: min(92vw, 560px); line-height: 1.4; }

/* ============================================================
   TEST-OVERRIDES Teil 11: Kalibriert nach der UI/UX-Datenbank
   (nextlevelbuilder/ui-ux-pro-max-skill, Kategorie "B2B Service":
   Trust & Authority + Minimalism · Professional blue + Neutral grey ·
   Key Effects: Section transitions + Feature reveals).
   Kernidee gegen den KI-Look: Bewegung KLEIN und schnell halten.
   Große Slide-Ins über 40px lesen sich als Template — 8–16px
   und 300–450ms lesen sich wie von Hand abgestimmt.
   ============================================================ */

/* --- Reveals: kurze Wege, kurze Dauer (DB: subtle 300–400ms, y 8–16px) --- */
.reveal {
  transform: translateY(14px);
  transition: opacity 0.45s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}
.card.reveal, .plan.reveal, .about-item.reveal {
  transition: opacity 0.45s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.45s cubic-bezier(0.16, 1, 0.3, 1),
              border-color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}
/* Stagger max 0.06s pro Element (DB: >0.1s wirkt zäh) */
.grid-4 .card:nth-child(2), .grid-3 .card:nth-child(2),
.branchen-grid .branche:nth-child(2), .pricing-grid .plan:nth-child(2) { transition-delay: 0.06s; }
.grid-4 .card:nth-child(3), .grid-3 .card:nth-child(3),
.branchen-grid .branche:nth-child(3), .pricing-grid .plan:nth-child(3) { transition-delay: 0.12s; }
.grid-4 .card:nth-child(4), .grid-3 .card:nth-child(4),
.branchen-grid .branche:nth-child(4), .pricing-grid .plan:nth-child(4) { transition-delay: 0.18s; }
.grid-3 .card:nth-child(5), .branchen-grid .branche:nth-child(5),
.pricing-grid .plan:nth-child(5) { transition-delay: 0.24s; }
.grid-3 .card:nth-child(6) { transition-delay: 0.3s; }

/* Headline-Wörter: schneller, enger gestaffelt */
.section-head h2 .w { transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1); }

/* --- Eine Hover-Sprache für ALLE Karten (DB: y −4px, scale 1.02,
       Schatten 0 12px 24px rgba(0,0,0,.12), 200–300ms power2.out) --- */
.card, .branche, .person, .plan, .demo-card, .faq details {
  transition: transform 0.25s cubic-bezier(0.2, 0.8, 0.2, 1),
              box-shadow 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}
.card:hover, .branche:hover, .person:hover, .plan:hover {
  transform: translateY(-4px) scale(1.01);
  box-shadow: 0 12px 24px rgba(22, 19, 14, 0.12);
}
.person:hover { transform: translateY(-4px) scale(1.01); } /* vereinheitlicht */

/* --- Section-Transitions: die feine Linie zwischen den Abschnitten.
       Wächst beim Reinscrollen aus der Mitte auf (GSAP setzt scaleX). --- */
.sec-linie {
  position: relative; z-index: 1;
  width: min(var(--container), 92vw); margin: 0 auto;
  height: 1px; background: linear-gradient(90deg, transparent, var(--border-strong), transparent);
  transform: scaleX(0); transform-origin: center;
}

/* --- Sektionen atmen abwechselnd: getönte Bänder mit weichen Kanten,
       damit die Seite Rhythmus bekommt statt einer endlosen Fläche. --- */
#rechner, #branchen, #faq {
  background:
    linear-gradient(180deg, transparent, rgba(36, 86, 196, 0.045) 12%,
                    rgba(36, 86, 196, 0.045) 88%, transparent);
}

/* --- Fokus sichtbar (DB/WCAG-AA): Tastatur-Bedienung darf nicht raten --- */
a:focus-visible, button:focus-visible, input:focus-visible,
select:focus-visible, textarea:focus-visible, summary:focus-visible {
  outline: 3px solid var(--pink);
  outline-offset: 3px;
  border-radius: 6px;
}

/* Section-Linie nutzt das BESTEHENDE Reveal-System (eine Mechanik, nicht zwei):
   .reveal setzt normalerweise translateY — für die Linie stattdessen scaleX. */
.sec-linie.reveal { opacity: 1; transform: scaleX(0); transition: transform 0.9s cubic-bezier(0.2, 0.8, 0.2, 1); }
.sec-linie.reveal.in { transform: scaleX(1); }

/* ============================================================
   TEST-OVERRIDES Teil 12: Rhythmus statt Tapete
   Marlon: "die Kugel und das Muster sehen aus wie ein Bild, das
   immer an derselben Stelle steht — langweilig."
   → Fixierter Hintergrund komplett raus. Den Takt geben jetzt die
   Sektionen: dunkle Anker-Bänder (Hero · Rechner · Kontakt) im
   Wechsel mit hellen Abschnitten. Man scrollt durch Räume statt
   über eine Fläche. Das Raster in den dunklen Bändern WANDERT mit
   dem Scrollen (Deko-Layer, nie unter Text — Motion-DB-Regel).
   ============================================================ */

#vantaBg { display: none; }

/* --- Dunkle Anker-Bänder: eigene Farbwelt per Variablen-Override --- */
.sek-dunkel {
  position: relative;
  isolation: isolate;
  background: #10203c;
  --text: #f4f7fd;
  --text-dim: #b3c1da;
  --text-mute: #7f8fac;
  --bg-card: rgba(255, 255, 255, 0.07);
  --bg-card-hover: rgba(255, 255, 255, 0.11);
  --border: rgba(255, 255, 255, 0.14);
  --border-strong: rgba(255, 255, 255, 0.26);
  --pink-2: #7fa8f5;
  color: var(--text);
}
.sek-dunkel h1, .sek-dunkel h2, .sek-dunkel h3 { color: var(--text); }
.sek-dunkel p, .sek-dunkel label { color: var(--text-dim); }
.sek-dunkel .eyebrow { background: rgba(127, 168, 245, 0.16); color: #cfe0ff; border-color: rgba(255,255,255,0.22); }
.sek-dunkel .gradient-text { color: #7fa8f5; }
.sek-dunkel .btn-primary { background: #3f78ea; color: #fff; }
.sek-dunkel .btn-primary:hover { background: #5a8ef5; }
.sek-dunkel .btn-ghost { background: rgba(255,255,255,0.08); color: var(--text); border-color: var(--border-strong); }
.sek-dunkel .calc-card { background: rgba(255,255,255,0.05); box-shadow: none; }
.sek-dunkel .calc-sum { color: #8fb6ff; }
.sek-dunkel .calc-sliders input[type="range"] { accent-color: #5a8ef5; }
.sek-dunkel .section-head h2::after { background: #5a8ef5; }
.sek-dunkel input, .sek-dunkel select, .sek-dunkel textarea {
  background: rgba(255,255,255,0.07); color: var(--text); border-color: var(--border-strong);
}
.sek-dunkel input::placeholder, .sek-dunkel textarea::placeholder { color: #8697b5; }
.sek-dunkel .info-item { border-color: var(--border); }
.sek-dunkel .info-item:hover { background: var(--bg-card-hover); }

/* Weiche Kante nach unten, damit die Bänder nicht abgeschnitten wirken */
.sek-dunkel::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 90px;
  background: linear-gradient(180deg, transparent, rgba(246, 245, 242, 0.12));
  pointer-events: none; z-index: -1;
}

/* --- Wanderndes Raster: das lebendige Element in den dunklen Bändern --- */
.sek-raster {
  position: absolute; inset: -20% 0 -20% 0; z-index: -1;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(127, 168, 245, 0.11) 1px, transparent 1px),
    linear-gradient(90deg, rgba(127, 168, 245, 0.11) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, #000 20%, transparent 78%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, #000 20%, transparent 78%);
  will-change: transform;
}

/* Hero im dunklen Band: Partikel-Grid entfällt, das Raster trägt jetzt */
.hero { padding-top: 170px; padding-bottom: 90px; }
.hero::before { display: none; }
.hero .btn-ghost { background: rgba(255,255,255,0.08); }

/* Rechner + Kontakt bekommen Luft, weil sie jetzt eigene Räume sind */
#rechner, #contact { padding-top: clamp(70px, 9vw, 110px); padding-bottom: clamp(70px, 9vw, 110px); }
#rechner .calc-label { color: var(--text-dim); }

/* Helle Sektionen: getönte Bänder von vorhin zurücknehmen (Rhythmus
   kommt jetzt aus den dunklen Ankern, nicht aus schwachen Tönungen) */
#branchen, #faq { background: none; }
#trust { background: linear-gradient(180deg, rgba(36, 86, 196, 0.05), transparent 70%); }

/* Footer schließt an das letzte dunkle Band an */
footer { margin-top: 0; background: #0c1729; }

/* ID-Selektoren aus Teil 11 schlagen die Klasse .sek-dunkel — hier mit
   gleicher Spezifität dagegenhalten, damit die dunklen Bänder wirklich
   dunkel sind (sonst weiße Schrift auf hellem Grund = unlesbar). */
#hero.sek-dunkel, #rechner.sek-dunkel, #contact.sek-dunkel { background: #10203c; }

/* ============================================================
   TEST-OVERRIDES Teil 13: NEUES LAYOUT-PRINZIP
   Marlon: "sieht ja wieder genauso aus wie davor" — stimmte:
   heller Grund + zentrierte Überschrift + abgerundete Karte mit
   Icon oben ist die Standard-Baukastenform, egal welche Farbe.
   Jetzt nach Datenbank-Stil "Exaggerated Minimalism + Swiss Style":
   ZWEISPALTIG (Sektionstitel links, klebt beim Scrollen · Inhalt
   rechts), Karten werden zu nummerierten Listenzeilen mit
   Trennlinien, Typografie mit hartem Größenkontrast.
   ============================================================ */

/* --- Zweispaltiger Editorial-Aufbau für die Inhalts-Sektionen --- */
#problem .container, #services .container, #automations .container,
#branchen .container, #process .container, #about .container,
#trust .container, #faq .container, #team .container {
  display: grid;
  grid-template-columns: minmax(240px, 340px) 1fr;
  gap: clamp(32px, 5vw, 88px);
  align-items: start;
}
#problem .section-head, #services .section-head, #automations .section-head,
#branchen .section-head, #process .section-head, #about .section-head,
#trust .section-head, #faq .section-head, #team .section-head {
  position: sticky; top: 110px;
  text-align: left; margin: 0; max-width: none;
}
.section-head h2 { text-align: left; }
.section-head h2::after { left: 0; }

/* Sektionstitel: harter Größenkontrast, eng gesetzt (Swiss) */
#problem .section-head h2, #services .section-head h2, #automations .section-head h2,
#branchen .section-head h2, #process .section-head h2, #about .section-head h2,
#trust .section-head h2, #faq .section-head h2, #team .section-head h2 {
  font-size: clamp(30px, 3.2vw, 46px);
  line-height: 1.02;
  letter-spacing: -0.035em;
}
.section-head p { font-size: 15.5px; line-height: 1.6; }
.eyebrow {
  background: none; border: 0; padding: 0 0 12px;
  color: var(--text-mute); font-size: 11.5px; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase; border-radius: 0;
}
.eyebrow::before { content: "— "; }

/* --- Karten → Listenzeilen mit Trennlinien (kein Kasten-Look mehr) --- */
#problem .grid-4, #services .grid-4, #automations .grid-3, #trust .grid-4,
#process .grid-3, #about .about-grid, .branchen-grid {
  display: block !important;
  max-width: none !important;
  margin: 0 !important;
  border-top: 1px solid var(--border-strong);
  counter-reset: zeile;
}
#problem .card, #services .card, #automations .card, #trust .card,
#process .card, #about .about-item, .branchen-grid .branche {
  counter-increment: zeile;
  display: grid !important;
  grid-template-columns: 44px 1fr;
  column-gap: 20px;
  align-items: start;
  padding: 22px 4px 22px 0 !important;
  border: 0 !important;
  border-bottom: 1px solid var(--border) !important;
  border-radius: 0 !important;
  background: none !important;
  box-shadow: none !important;
  transition: background 0.25s ease, padding-left 0.25s ease;
}
#problem .card:hover, #services .card:hover, #automations .card:hover,
#trust .card:hover, #process .card:hover, #about .about-item:hover,
.branchen-grid .branche:hover {
  transform: none;
  box-shadow: none;
  background: rgba(36, 86, 196, 0.045) !important;
  padding-left: 10px !important;
}
/* Laufende Nummer statt Icon-Kachel */
#problem .card::before, #services .card::before, #automations .card::before,
#trust .card::before, #about .about-item::before, .branchen-grid .branche::before {
  content: counter(zeile, decimal-leading-zero);
  grid-row: 1 / span 3;
  font-family: "Space Grotesk", sans-serif;
  font-size: 13px; font-weight: 700; color: var(--pink);
  letter-spacing: 0.06em; padding-top: 4px;
}
/* Icons kleiner und ohne Kachel, direkt vor dem Titel */
#problem .svc-icon, #services .svc-icon, #automations .svc-icon, #trust .svc-icon {
  width: 20px; height: 20px; background: none !important; box-shadow: none;
  color: var(--pink); margin: 0 0 0 auto; grid-column: 2; justify-self: end;
  grid-row: 1;
}
#problem .svc-icon svg, #services .svc-icon svg,
#automations .svc-icon svg, #trust .svc-icon svg { width: 20px; height: 20px; }
#problem .card h3, #services .card h3, #automations .card h3, #trust .card h3,
#process .card h3, #about .about-item h3, .branchen-grid .branche b {
  grid-column: 2; grid-row: 1;
  font-size: 20px; letter-spacing: -0.015em; margin: 0 0 4px;
}
#problem .card p, #services .card p, #automations .card p, #trust .card p,
#process .card p, #about .about-item p, .branchen-grid .branche span {
  grid-column: 2; grid-row: 2;
  font-size: 15px; max-width: 62ch; display: block;
}
/* Prozess-Schritte behalten ihre Ziffer, brauchen keine zweite */
#process .card .svc-icon {
  width: auto; height: auto; background: none !important; color: var(--pink);
  font-size: 13px !important; grid-column: 1; grid-row: 1; justify-self: start;
}

/* FAQ in der rechten Spalte, ohne Kasten */
#faq .faq-list { max-width: none; margin: 0; border-top: 1px solid var(--border-strong); }
#faq details {
  border: 0; border-bottom: 1px solid var(--border);
  border-radius: 0; background: none !important; padding: 0;
}
#faq details[open] { background: none !important; }
#faq summary { padding: 20px 34px 20px 0; font-size: 17px; }
#faq details p { padding: 0 0 20px; max-width: 66ch; }

/* Team rechts, Karten bleiben (Gesichter dürfen Kästen sein) */
#team .team-grid { justify-content: flex-start; }
#team .team-sig { text-align: left; }

/* Mobil: alles wieder untereinander, Titel nicht mehr klebend */
@media (max-width: 900px) {
  #problem .container, #services .container, #automations .container,
  #branchen .container, #process .container, #about .container,
  #trust .container, #faq .container, #team .container { grid-template-columns: 1fr; gap: 26px; }
  #problem .section-head, #services .section-head, #automations .section-head,
  #branchen .section-head, #process .section-head, #about .section-head,
  #trust .section-head, #faq .section-head, #team .section-head { position: static; }
}

/* Die Original-Karte nutzt ::before als absolut positioniertes Glare-Overlay.
   Meine Zeilennummer belegt dasselbe Pseudo-Element — ohne diesen Reset bleibt
   sie absolut positioniert und fällt aus dem Raster. */
#problem .card::before, #services .card::before, #automations .card::before,
#trust .card::before, #about .about-item::before {
  position: static !important;
  inset: auto !important;
  opacity: 1 !important;
  background: none !important;
  width: auto; height: auto;
}
/* Der wandernde Licht-Reflex der Karten entfällt im Listen-Look ebenfalls */
#problem .card::after, #services .card::after, #automations .card::after,
#trust .card::after { display: none !important; }

/* ============================================================
   TEST-OVERRIDES Teil 14: OBERE HÄLFTE NEU
   Referenzen: dylanbrouwer.design (riesige linksbündige Display-
   Headline, vertikale Rasterlinien, Mono-Mikrotext mit Ort+Uhrzeit),
   sav1n.com (Kontur-Schrift im Wechsel mit gefüllter, Ziffern mit
   führenden Nullen), lenis.dev (mutige Fläche, ruhige Typo).
   ============================================================ */

/* --- Hero: aus der Mitte nach links, Headline füllt die Fläche --- */
.hero { padding-top: 190px; padding-bottom: 70px; }
.hero-inner {
  text-align: left; max-width: none;
  width: min(var(--container), 92vw); margin: 0 auto;
}
.hero .eyebrow {
  color: #93b4f2; letter-spacing: 0.2em; font-size: 11px;
  padding: 0 0 26px; background: none; border: 0;
}

/* Zweizeilige Display-Headline: Zeile 1 gefüllt, Zeile 2 als Kontur */
.hero h1 {
  font-size: clamp(46px, 9.2vw, 148px);
  line-height: 0.92;
  letter-spacing: -0.045em;
  margin: 0 0 34px;
  text-transform: none;
}
.hero h1 .zl { display: block; will-change: transform; }
.hero h1 .zl-voll { color: #f4f7fd; }
.hero h1 .zl-kontur {
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(244, 247, 253, 0.85);
  padding-left: 0.06em;
}
.hero h1 .zl-akzent {
  font-style: normal; color: #5a8ef5;
  -webkit-text-stroke: 0; /* Akzentwort bleibt gefüllt */
}

/* Beschreibung als schmale Spalte rechts (Dylan-Split) */
.hero-sub {
  max-width: 46ch; margin: 0 0 34px auto;
  font-size: clamp(15px, 1.15vw, 17px); line-height: 1.55;
  color: var(--text-dim); text-align: left;
}
.hero .cta-row { justify-content: flex-start; }
.hero .scroll-hint { justify-content: flex-start; margin-top: 46px; font-size: 11px; letter-spacing: 0.24em; }

/* --- Statuszeile: Mono-Mikrotext mit echter Uhrzeit aus Rodgau --- */
.hero-status {
  display: flex; flex-wrap: wrap; gap: 12px 34px;
  margin-top: 54px; padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase;
  color: #8ea3c4;
}
.hero-status .hs-teil { display: inline-flex; align-items: center; gap: 9px; }
.hero-status b { font-weight: 500; color: #b8c9e6; }
.hs-punkt {
  width: 7px; height: 7px; border-radius: 50%;
  background: #6b7a95; flex: 0 0 auto;
}
.hs-teil.ist-offen .hs-punkt {
  background: #45d17a;
  box-shadow: 0 0 0 0 rgba(69, 209, 122, 0.55);
  animation: pulsPunkt 2.6s ease-out infinite;
}
.hs-teil.ist-offen b { color: #7ee2a4; }
@keyframes pulsPunkt {
  0% { box-shadow: 0 0 0 0 rgba(69, 209, 122, 0.5); }
  70% { box-shadow: 0 0 0 9px rgba(69, 209, 122, 0); }
  100% { box-shadow: 0 0 0 0 rgba(69, 209, 122, 0); }
}

/* --- Vertikale Rasterlinien über die dunklen Bänder (Dylan) --- */
.sek-raster::after {
  content: ""; position: absolute; inset: 0;
  background-image: repeating-linear-gradient(
    90deg, rgba(255,255,255,0.05) 0 1px, transparent 1px calc(100% / 6)
  );
  background-size: min(var(--container), 92vw) 100%;
  background-position: center top;
  background-repeat: repeat-y;
}

/* --- Stats-Band im Mono-Look mit führenden Nullen (savin) --- */
.stats { padding: 0 0 clamp(50px, 6vw, 80px); margin-top: -1px; }
.stats-grid {
  background: none; box-shadow: none; border: 0;
  border-bottom: 1px solid var(--border);
  border-radius: 0; padding: 0;
  counter-reset: stat;
}
.stat {
  counter-increment: stat;
  text-align: left; position: relative;
  padding: 30px 22px 30px 0;
  border-right: 1px solid var(--border);
}
.stat:last-child { border-right: 0; }
.stat::before {
  content: counter(stat, decimal-leading-zero);
  display: block; margin-bottom: 14px;
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 11px; color: var(--text-mute); letter-spacing: 0.12em;
}
.stat-v { font-size: clamp(26px, 2.8vw, 38px); letter-spacing: -0.03em; }
.stat-l {
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 10.5px; letter-spacing: 0.1em; margin-top: 8px;
}

/* --- Laufband ruhiger: Mono, dünn, nur eine feine Linie darüber --- */
.marquee { border-top: 0; border-bottom: 1px solid var(--border); padding: 16px 0; }
.marquee-track span {
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 11.5px; letter-spacing: 0.14em; font-weight: 400;
}

@media (max-width: 900px) {
  .hero { padding-top: 140px; }
  .hero-sub { margin-left: 0; }
  .hero h1 .zl-kontur { -webkit-text-stroke-width: 1px; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stat { border-right: 0; border-bottom: 1px solid var(--border); padding: 22px 0; }
  .hero-status { gap: 10px 20px; font-size: 10px; }
}

/* Hero straffen: die Display-Headline braucht Luft, aber nicht 1700px.
   Ziel ist, dass CTA und Statuszeile ohne Scrollen sichtbar bleiben. */
.hero { padding-top: clamp(120px, 13vh, 158px); padding-bottom: clamp(40px, 5vh, 60px); }
.hero h1 { font-size: clamp(42px, 7.6vw, 118px); margin-bottom: clamp(20px, 2.4vh, 30px); }
.hero-sub { margin-bottom: clamp(20px, 2.6vh, 30px); }
.hero .scroll-hint { margin-top: clamp(22px, 3vh, 34px); }
.hero-status { margin-top: clamp(26px, 3.4vh, 40px); padding-top: 15px; }
.hero .eyebrow { padding-bottom: clamp(14px, 2vh, 22px); }

/* Sicherheitsnetz: Falls GSAP gar nicht erst startet (Fehler, Blocker),
   darf der Hero nach 2 s NIEMALS unsichtbar bleiben. */
@keyframes heroNotfallSichtbar { to { opacity: 1; } }
.gsap-on .hero-inner { animation: heroNotfallSichtbar 0.01s linear 2.5s forwards; }

/* ============================================================
   Hero-Entrance in reinem CSS (statt GSAP): Zeilen steigen aus
   der Maske, danach folgen Text, Buttons und Statuszeile.
   Kein JS beteiligt → kann nicht steckenbleiben, läuft auch,
   wenn Skripte blockiert sind. Bei prefers-reduced-motion aus.
   ============================================================ */
.gsap-on .hero-inner { animation: none; opacity: 1; }

.hero h1 .zl { overflow: hidden; }
.hero h1 .zl > span, .hero h1 .zl { will-change: transform; }

@media (prefers-reduced-motion: no-preference) {
  /* Nur wenn die Seite wirklich sichtbar ist (Klasse setzt das Skript unten).
     In versteckten Tabs pausiert der Browser CSS-Animationen — ohne diesen
     Schalter blieben die Elemente auf ihrem Startwert (unsichtbar) haengen. */
  .hero-an .hero-inner .eyebrow,
  .hero-an .hero-inner h1 .zl,
  .hero-an .hero-inner .hero-sub,
  .hero-an .hero-inner .cta-row,
  .hero-an .hero-inner .hero-status,
  .hero-an .hero-inner .scroll-hint {
    animation: heroRein 0.95s cubic-bezier(0.16, 1, 0.3, 1) both;
  }
  .hero-an .hero-inner .eyebrow      { animation-delay: 0.05s; }
  .hero-an .hero-inner h1 .zl:nth-of-type(1) { animation-delay: 0.16s; }
  .hero-an .hero-inner h1 .zl:nth-of-type(2) { animation-delay: 0.26s; }
  .hero-an .hero-inner .hero-sub     { animation-delay: 0.44s; }
  .hero-an .hero-inner .cta-row      { animation-delay: 0.54s; }
  .hero-an .hero-inner .hero-status  { animation-delay: 0.66s; }
  .hero-an .hero-inner .scroll-hint  { animation-delay: 0.78s; }
}
@keyframes heroRein {
  from { opacity: 0; transform: translateY(26px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ============================================================
   TEST-OVERRIDES Teil 15: MONOCHROM — das Prinzip der Vorlagen
   Marlon: "das hat nichts mit meinen Links zu tun, das mit dem
   Blauen ist nicht schön." Stimmt. Die drei Referenzen sind im
   Kern MONOCHROM: dylanbrouwer = schwarz/grau/weiß, sav1n =
   weiß + schwarze Typo, lenis = eine Farbfläche + schwarze Typo.
   Farbe ist dort Raum oder Signal — nie Dekoration auf allem.
   Also: Blau raus, Tinte und Papier rein, Kontrast macht die Musik.
   ============================================================ */

:root {
  /* Papier & Tinte statt Firmenblau */
  --bg: #eeece7;
  --bg-soft: #ffffff;
  --bg-card: transparent;
  --bg-card-hover: rgba(17, 17, 18, 0.04);
  --border: rgba(17, 17, 18, 0.14);
  --border-strong: rgba(17, 17, 18, 0.3);
  --text: #111112;
  --text-dim: #4a4a4d;
  --text-mute: #85858a;
  /* Der einzige Akzent — sparsam, nur wo etwas passieren soll */
  --pink: #111112;
  --pink-2: #111112;
  --purple: #111112;
  --grad: none;
  --grad-soft: rgba(17, 17, 18, 0.06);
  --shadow-glow: none;
  --shadow-card: none;
}

body { background: var(--bg); }

/* --- Dunkle Bänder: echtes Schwarz statt Navy --- */
#hero.sek-dunkel, #rechner.sek-dunkel, #contact.sek-dunkel { background: #111112; }
.sek-dunkel {
  --text: #f4f2ee;
  --text-dim: #a8a6a1;
  --text-mute: #767470;
  --bg-card: transparent;
  --bg-card-hover: rgba(255, 255, 255, 0.05);
  --border: rgba(255, 255, 255, 0.15);
  --border-strong: rgba(255, 255, 255, 0.3);
  --pink: #f4f2ee;
  --pink-2: #f4f2ee;
}
.sek-dunkel::after { display: none; }
.sek-dunkel .eyebrow { background: none; color: #85837e; }
.sek-dunkel .gradient-text, .hero h1 .zl-akzent { color: #f4f2ee; }
.hero h1 .zl-kontur { -webkit-text-stroke-color: rgba(244, 242, 238, 0.55); }

/* Raster im Schwarz: nur noch angedeutet */
.sek-raster {
  background-image:
    linear-gradient(rgba(255,255,255,0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.055) 1px, transparent 1px);
}
.sek-raster::after { background-image: repeating-linear-gradient(
  90deg, rgba(255,255,255,0.05) 0 1px, transparent 1px calc(100% / 6)); }

/* --- Buttons: Kontrast statt Farbe (sav1n/dylan-Sprache) --- */
.btn { border-radius: 0; font-weight: 600; letter-spacing: 0.01em; }
.btn-primary { background: #111112; color: #f4f2ee; box-shadow: none; }
.btn-primary:hover { background: #2c2c30; transform: translateY(-2px); box-shadow: none; }
.btn-ghost { background: transparent; color: var(--text); border-color: var(--border-strong); }
.btn-ghost:hover { background: var(--bg-card-hover); border-color: var(--text); }
.sek-dunkel .btn-primary { background: #f4f2ee; color: #111112; }
.sek-dunkel .btn-primary:hover { background: #fff; }
.sek-dunkel .btn-ghost { background: transparent; color: #f4f2ee; border-color: rgba(255,255,255,0.35); }
.sek-dunkel .btn-ghost:hover { background: rgba(255,255,255,0.08); border-color: #f4f2ee; }
.nav .btn-primary { background: #111112; color: #f4f2ee; }

/* --- Karten: keine Flächen mehr, nur Linien --- */
.card, .branche, .person, .faq details, .plan, .calc-card, .stats-grid, .demo-card {
  background: transparent !important;
  box-shadow: none !important;
}
.demo-card { border: 1px solid var(--border) !important; border-radius: 0 !important; }
.person { border: 1px solid var(--border); border-radius: 0; }
.person .avatar {
  background: none; border: 1px solid var(--border-strong); color: var(--text);
  border-radius: 0; font-weight: 600;
}
.plan { border: 1px solid var(--border); border-radius: 0; }
.plan.highlight {
  border: 1px solid var(--text); background: transparent;
  box-shadow: none !important;
}
.plan.highlight .btn-primary { background: #111112; color: #f4f2ee; }
.calc-card { border: 1px solid var(--border-strong); border-radius: 0; }
.sek-dunkel .calc-card { border-color: rgba(255,255,255,0.22); }

/* --- Zahlen, Icons, Details: monochrom --- */
.stat-v, .calc-sum, .hero h1 .zl-akzent { color: inherit; }
.stat-v { color: var(--text); }
.sek-dunkel .calc-sum { color: #f4f2ee; }
.calc-sliders input[type="range"] { accent-color: currentColor; }
.svc-icon, #problem .svc-icon, #services .svc-icon,
#automations .svc-icon, #trust .svc-icon { color: var(--text-mute) !important; }
#problem .card::before, #services .card::before, #automations .card::before,
#trust .card::before, #about .about-item::before, .branchen-grid .branche::before,
.stat::before { color: var(--text-mute); }
.hand-note { color: var(--text); }
.section-head h2::after, .sek-dunkel .section-head h2::after { background: var(--text); }
.sec-linie { background: var(--border-strong); }
.demo-tag {
  background: transparent; color: var(--text); border: 1px solid var(--border-strong);
  border-radius: 0; font-weight: 600;
}
.demo-open, .browser-link, .faq summary::after { color: var(--text); }
.marquee-track span::after { color: var(--text-mute); }
#trust { background: none; }
.lang-switch { border-radius: 0; }
.lang-switch button { border-radius: 0; }
.lang-switch button.active { background: #111112; color: #f4f2ee; }
.eyebrow { color: var(--text-mute); }
footer { background: #111112; }
form.contact-form input, form.contact-form select, form.contact-form textarea {
  border-radius: 0; background: transparent;
}
.sek-dunkel input, .sek-dunkel select, .sek-dunkel textarea {
  background: transparent; border-color: rgba(255,255,255,0.25);
}
form.contact-form .form-success { background: var(--grad-soft); border-radius: 0; }
.info-item, .metric { border-radius: 0; }
a:focus-visible, button:focus-visible, input:focus-visible,
select:focus-visible, textarea:focus-visible, summary:focus-visible {
  outline-color: var(--text); border-radius: 0;
}

/* --- Typografie härter: enger, fetter, größer (dylan/savin) --- */
h1, h2, h3 { letter-spacing: -0.04em; }
.hero h1 { font-size: clamp(44px, 8.4vw, 132px); line-height: 0.88; }
#problem .section-head h2, #services .section-head h2, #automations .section-head h2,
#branchen .section-head h2, #process .section-head h2, #about .section-head h2,
#trust .section-head h2, #faq .section-head h2, #team .section-head h2 {
  font-size: clamp(32px, 3.6vw, 52px);
}

/* ============================================================
   TEST-OVERRIDES Teil 16: DURCHGEHEND DUNKEL & SERIÖS
   Marlon: "kannst das Design auch dunkel machen, soll nur
   trotzdem seriös aussehen." Genau die Sprache von
   dylanbrouwer.design: fast schwarzes Anthrazit, Off-White-Typo,
   Flächen nur durch feine Linien getrennt, KEINE Farbe als
   Dekoration. Seriosität kommt aus Ruhe, Kontrast und Präzision —
   nicht aus Effekten.
   ============================================================ */

:root {
  --bg: #0e0e10;
  --bg-soft: #141416;
  --bg-card: transparent;
  --bg-card-hover: rgba(255, 255, 255, 0.045);
  --border: rgba(255, 255, 255, 0.12);
  --border-strong: rgba(255, 255, 255, 0.26);
  --text: #f0eee9;
  --text-dim: #a3a19c;
  --text-mute: #6e6c68;
  --pink: #f0eee9;
  --pink-2: #f0eee9;
  --purple: #f0eee9;
  --grad: none;
  --grad-soft: rgba(255, 255, 255, 0.06);
}
body { background: var(--bg); color: var(--text); }
::selection { background: #f0eee9; color: #0e0e10; }

/* Die früher hellen Sektionen sind jetzt ebenfalls dunkel —
   den Rhythmus geben minimal unterschiedliche Töne und Linien. */
#hero.sek-dunkel { background: #0e0e10; }
#rechner.sek-dunkel, #contact.sek-dunkel { background: #141416; }
.sek-dunkel {
  --text: #f0eee9; --text-dim: #a3a19c; --text-mute: #6e6c68;
  --border: rgba(255,255,255,0.12); --border-strong: rgba(255,255,255,0.26);
  --pink: #f0eee9; --pink-2: #f0eee9;
}
#rechner.sek-dunkel, #contact.sek-dunkel { border-block: 1px solid var(--border); }

/* Buttons: helle Fläche auf dunklem Grund (klar, ohne Farbe) */
.btn-primary, .nav .btn-primary, .plan.highlight .btn-primary,
.sek-dunkel .btn-primary { background: #f0eee9; color: #0e0e10; }
.btn-primary:hover, .nav .btn-primary:hover, .sek-dunkel .btn-primary:hover { background: #fff; }
.btn-ghost, .sek-dunkel .btn-ghost {
  background: transparent; color: var(--text); border-color: var(--border-strong);
}
.btn-ghost:hover, .sek-dunkel .btn-ghost:hover {
  background: var(--bg-card-hover); border-color: var(--text);
}
.lang-switch { background: transparent; border-color: var(--border-strong); }
.lang-switch button { color: var(--text-dim); }
.lang-switch button.active { background: #f0eee9; color: #0e0e10; }

/* Navigation über dunklem Grund */
.nav { --text: #f0eee9; --text-dim: #a3a19c; }
.nav.scrolled {
  background: rgba(14, 14, 16, 0.86);
  border-bottom-color: var(--border);
  --text: #f0eee9; --text-dim: #a3a19c;
}
.nav.scrolled .lang-switch { background: transparent; }
.nav.scrolled .mobile-toggle { color: var(--text); border-color: var(--border-strong); }

/* Logo: Wortmarke hell */
.nav-logo img, footer .foot .left img { filter: invert(1) brightness(1.6) grayscale(1); }

/* Flächen bleiben leer, Linien tragen die Struktur */
.card, .branche, .person, .plan, .faq details, .calc-card, .stats-grid, .demo-card,
form.contact-form input, form.contact-form select, form.contact-form textarea {
  background: transparent !important;
}
.demo-card, .person, .plan, .calc-card { border-color: var(--border) !important; }
.plan.highlight { border-color: var(--text) !important; }
.person .avatar { border-color: var(--border-strong); color: var(--text); }
.demo-tag { border-color: var(--border-strong); color: var(--text); }
.metric { background: transparent; border-color: var(--border-strong); color: var(--text); }
.modal { background: #141416; border-color: var(--border-strong); }
.modal-overlay { background: rgba(0, 0, 0, 0.72); }
footer { background: #0a0a0c; border-top: 1px solid var(--border); }

/* Vorschau-Bilder in den Demo-Karten leicht zurücknehmen,
   damit die grellen Kundenseiten den ruhigen Rahmen nicht sprengen */
.demo-preview .mini-shot { filter: saturate(0.88) contrast(0.96) brightness(0.92); }
.demo-card:hover .mini-shot { filter: none; }

/* Raster nur noch ein Hauch */
.sek-raster {
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
}
#trust, #branchen, #faq, #rechner { background-image: none; }

/* Die Maske stammt aus der alten GSAP-Animation; mit der CSS-Entrance
   schneidet sie nur noch umbrechende Zeilen ab ("arbeitet." verschwand). */
.hero h1 .zl { overflow: visible; }
/* Akzentwort in der Konturzeile bleibt gefüllt */
.hero h1 .zl-akzent { -webkit-text-stroke: 0 !important; color: var(--text) !important; }

/* ============================================================
   TEST-OVERRIDES Teil 17: Display-Schrift + durchlaufende Ebenen
   Marlon: Hero-Schrift gefällt nicht, beide Zeilen weiß, und es
   soll etwas beim Scrollen von oben bis unten mitlaufen.
   → Anton als Display-Schrift (schmal, sehr fett — die Sprache von
     dylanbrouwer.design), Kontur raus, dazu zwei durchgehende
     Ebenen: feste Spaltenlinien über die ganze Seite und eine
     Fortschritts-Spur am rechten Rand mit Kapitelnamen.
   ============================================================ */

/* --- Display-Schrift: schmal laufend, sehr fett --- */
h1, h2, .hero h1, .stat-v, .calc-sum, .plan .price {
  font-family: "Anton", "Archivo", "Space Grotesk", sans-serif;
  font-weight: 400;            /* Anton hat nur einen Schnitt */
  letter-spacing: -0.012em;
  text-transform: uppercase;
}
h3, .plan .name, .person b { font-family: "Archivo", "Space Grotesk", sans-serif; font-weight: 700; }

.hero h1 {
  font-size: clamp(50px, 10.5vw, 168px);
  line-height: 0.86;
  letter-spacing: -0.005em;
}
.hero h1 .zl { color: #f0eee9; -webkit-text-stroke: 0; }
.hero h1 .zl-letzte { color: #f0eee9; }

/* Sektions-Headlines in derselben Sprache, ruhiger dosiert */
#problem .section-head h2, #services .section-head h2, #automations .section-head h2,
#branchen .section-head h2, #process .section-head h2, #about .section-head h2,
#trust .section-head h2, #faq .section-head h2, #team .section-head h2,
#rechner .section-head h2, #demos .section-head h2, #pricing .section-head h2 {
  font-size: clamp(30px, 3.4vw, 50px);
  line-height: 0.96;
  letter-spacing: 0;
}
.calc-sum { letter-spacing: 0; }

/* --- Ebene 1: Spaltenlinien über die GANZE Seite (fest) --- */
.spalten {
  position: fixed; inset: 0; z-index: 0; pointer-events: none;
  width: min(var(--container), 92vw); margin: 0 auto;
  display: grid; grid-template-columns: repeat(5, 1fr);
}
.spalten i { border-left: 1px solid rgba(255, 255, 255, 0.045); }
.spalten i:first-child { border-left: 0; }
.spalten::after {
  content: ""; position: absolute; inset: 0;
  border-inline: 1px solid rgba(255, 255, 255, 0.045);
}
section, footer, .marquee, .hero, .stats { position: relative; z-index: 1; }

/* --- Ebene 2: Fortschritts-Spur rechts, läuft von oben bis unten mit --- */
.spur {
  position: fixed; right: clamp(12px, 2.2vw, 30px); top: 50%;
  transform: translateY(-50%);
  z-index: 40; pointer-events: none;
  display: flex; flex-direction: column; align-items: center; gap: 16px;
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--text-mute);
}
.spur-kapitel {
  writing-mode: vertical-rl;
  color: var(--text-dim);
}
.spur-kapitel.wechsel { animation: spurRein 0.5s cubic-bezier(0.16, 1, 0.3, 1); }
@keyframes spurRein {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}
.spur-linie {
  position: relative; width: 1px; height: clamp(90px, 16vh, 160px);
  background: rgba(255, 255, 255, 0.16);
  overflow: hidden;
}
.spur-linie i {
  position: absolute; inset: 0;
  background: var(--text);
  transform: scaleY(0); transform-origin: top;
}
.spur-zahl { color: var(--text-mute); }
.spur-zahl b { color: var(--text); font-weight: 500; }

@media (max-width: 1100px) { .spur { display: none; } }
@media (max-width: 700px) { .spalten { grid-template-columns: repeat(2, 1fr); } }

/* Anton läuft sehr eng; deutsche Umlaute (Ä, Ü) brauchen Platz nach oben,
   sonst berühren die Zeilen einander. */
.hero h1 { line-height: 0.95; }
.section-head h2 { line-height: 1.02; }

/* ============================================================
   TEST-OVERRIDES Teil 18: WARM & SCHLICHT
   Marlon: "zu kalt, am Anfang viel zu viel auf einmal und viel zu
   groß — wärmer und schlichter, nur das Wichtige. Dunkel darf
   bleiben, soll sich aber warm anfühlen."
   → Warmes Dunkelbraun statt kaltem Anthrazit, cremefarbener Text,
     Instrument Serif statt Versalien-Grotesk (leise statt laut),
     Hero deutlich kleiner, weniger Elemente.
   ============================================================ */

:root {
  /* Warmes Dunkel: Braunton statt Neutralgrau */
  --bg: #16120f;
  --bg-soft: #1d1815;
  --bg-card: transparent;
  --bg-card-hover: rgba(240, 232, 220, 0.05);
  --border: rgba(240, 232, 220, 0.13);
  --border-strong: rgba(240, 232, 220, 0.27);
  --text: #f2ebe0;
  --text-dim: #b0a595;
  --text-mute: #7d7367;
  --pink: #f2ebe0;
  --pink-2: #f2ebe0;
  --purple: #f2ebe0;
  --grad-soft: rgba(240, 232, 220, 0.06);
}
body { background: var(--bg); color: var(--text); }
::selection { background: #e0b877; color: #16120f; }

#hero.sek-dunkel { background: #16120f; }
#rechner.sek-dunkel, #contact.sek-dunkel { background: #1d1815; }
.sek-dunkel {
  --text: #f2ebe0; --text-dim: #b0a595; --text-mute: #7d7367;
  --border: rgba(240,232,220,0.13); --border-strong: rgba(240,232,220,0.27);
  --pink: #f2ebe0; --pink-2: #f2ebe0;
}
footer { background: #120f0c; }
.modal { background: #1d1815; }

/* Ein einziger warmer Akzent — nur dort, wo etwas passiert */
.hero h1 em, .hand-note, .hs-teil.ist-offen b { color: #e0b877; font-style: normal; }
.hs-teil.ist-offen .hs-punkt { background: #e0b877; }
@keyframes pulsPunkt {
  0% { box-shadow: 0 0 0 0 rgba(224, 184, 119, 0.5); }
  70% { box-shadow: 0 0 0 9px rgba(224, 184, 119, 0); }
  100% { box-shadow: 0 0 0 0 rgba(224, 184, 119, 0); }
}
.btn-primary, .nav .btn-primary, .sek-dunkel .btn-primary,
.plan.highlight .btn-primary { background: #f2ebe0; color: #16120f; }
.btn-primary:hover, .nav .btn-primary:hover { background: #fff; }
.lang-switch button.active { background: #f2ebe0; color: #16120f; }
.nav.scrolled { background: rgba(22, 18, 15, 0.88); }

/* --- Schrift: warme Serif, keine Versalien, ruhiger Ton --- */
h1, h2, .hero h1 {
  font-family: "Instrument Serif", Georgia, serif;
  font-weight: 400;
  text-transform: none;
  letter-spacing: -0.015em;
}
h3, .plan .name, .person b, .branche b {
  font-family: "Archivo", system-ui, sans-serif; font-weight: 600;
  text-transform: none; letter-spacing: -0.01em;
}
.stat-v, .calc-sum, .plan .price {
  font-family: "Instrument Serif", Georgia, serif;
  font-weight: 400; text-transform: none; letter-spacing: -0.01em;
}

/* --- Hero: deutlich ruhiger. Kleiner, weniger, mehr Luft --- */
.hero { padding-top: clamp(120px, 16vh, 170px); padding-bottom: clamp(50px, 7vh, 80px); }
.hero h1 {
  font-size: clamp(38px, 5.6vw, 84px);
  line-height: 1.04;
  letter-spacing: -0.02em;
  margin-bottom: clamp(22px, 3vh, 34px);
  max-width: 16ch;
}
.hero-sub {
  max-width: 44ch; margin: 0 0 clamp(26px, 3.4vh, 38px) 0;
  font-size: clamp(15px, 1.1vw, 17.5px); line-height: 1.6;
}
.hero .eyebrow { padding-bottom: clamp(16px, 2.4vh, 26px); }
.hero .scroll-hint { display: none; }        /* Statuszeile reicht als Fußzeile */
.hero-status { margin-top: clamp(34px, 5vh, 56px); }

/* Sektions-Headlines: ruhiger, lesbarer */
#problem .section-head h2, #services .section-head h2, #automations .section-head h2,
#branchen .section-head h2, #process .section-head h2, #about .section-head h2,
#trust .section-head h2, #faq .section-head h2, #team .section-head h2,
#rechner .section-head h2, #demos .section-head h2, #pricing .section-head h2 {
  font-size: clamp(28px, 2.9vw, 44px);
  line-height: 1.08;
  letter-spacing: -0.02em;
}

/* Raster und Spalten wärmer und noch zurückhaltender */
.spalten i, .spalten::after { border-color: rgba(240, 232, 220, 0.05); }
.sek-raster {
  background-image:
    linear-gradient(rgba(240,232,220,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(240,232,220,0.035) 1px, transparent 1px);
}
.sek-raster::after { background-image: repeating-linear-gradient(
  90deg, rgba(240,232,220,0.04) 0 1px, transparent 1px calc(100% / 6)); }
.spur-linie i { background: #e0b877; }

/* Demo-Screenshots warm einbetten */
.demo-preview .mini-shot { filter: saturate(0.8) contrast(0.94) brightness(0.86) sepia(0.12); }

/* Letzte kühle Reste wärmen */
.hs-punkt { background: #7d7367; }
.hero-status { color: #8d8175; }
.hero-status b { color: #c3b7a6; }
.spur, .spur-zahl { color: #7d7367; }
.spur-kapitel { color: #b0a595; }
.spur-linie { background: rgba(240, 232, 220, 0.16); }

/* Die Schieberegler zogen noch das System-Blau — warm einfärben */
.calc-sliders input[type="range"], input[type="range"] { accent-color: #e0b877; }
.calc-sliders output { color: #e0b877; }

/* ============================================================
   TEST-OVERRIDES Teil 19: RADIKAL SCHLICHT
   Marlon: "viel zu viel auf einmal — ganz schlicht, nur die
   wichtigsten Infos; auf der ersten Seite nur das Angebot in
   einem Spruch."
   Von 17 Blöcken auf 7: Hero · Rechner · Leistungen · Beispiele ·
   Team · Preise · Kontakt. Alles andere war Wiederholung,
   Zierde oder Detail, das im Gespräch besser aufgehoben ist.
   ============================================================ */

/* Hero: ein Satz, ein Weg weiter — sonst nichts */
.hero { padding-top: clamp(150px, 22vh, 230px); padding-bottom: clamp(60px, 9vh, 110px); }
.hero h1 {
  font-size: clamp(34px, 4.8vw, 68px);
  line-height: 1.12;
  max-width: 20ch;
  margin-bottom: clamp(30px, 4vh, 46px);
}
.hero .eyebrow { letter-spacing: 0.22em; }
.hero-status { margin-top: clamp(50px, 8vh, 90px); }

/* Mehr Luft zwischen den verbliebenen Abschnitten */
section { padding: clamp(80px, 11vw, 150px) 0; }
#services, #demos, #pricing, #team { padding-top: clamp(80px, 11vw, 150px); }

/* Preise: fünf Pakete sind eine Auswahlfalle — drei reichen,
   der Rest steht in der Fußnote und wird im Gespräch geklärt. */
.pricing-grid .plan:nth-child(4), .pricing-grid .plan:nth-child(5) { display: none; }
.pricing-grid { grid-template-columns: repeat(3, 1fr); max-width: 900px; margin: 0 auto; }
@media (max-width: 800px) { .pricing-grid { grid-template-columns: 1fr; } }

/* ============================================================
   TEST-OVERRIDES Teil 20: MODERN
   Marlon: "sieht zu altmodisch aus, die Seite muss einen
   modernen Look haben."
   Ursachen waren: klassische Serif als Display-Schrift,
   Sepia-Filter auf den Bildern (Vintage-Signal), scharfe 0px-
   Kanten (Retro-Brutalismus) und ein zu bräunliches Dunkel.
   → Bricolage Grotesque (aktuelle Display-Grotesk mit Charakter),
     weiche Radien, klare Bilder, warmes Neutralgrau statt Braun.
   ============================================================ */

h1, h2, h3, .hero h1, .stat-v, .calc-sum, .plan .price,
.plan .name, .person b, .branche b {
  font-family: "Bricolage Grotesque", "Archivo", system-ui, sans-serif;
  font-weight: 600;
  font-style: normal;
  text-transform: none;
  letter-spacing: -0.025em;
}
.hero h1 { font-weight: 600; letter-spacing: -0.035em; line-height: 1.06; }
.hero h1 em { font-style: normal; font-weight: 600; }
.calc-sum, .stat-v, .plan .price { font-weight: 600; letter-spacing: -0.03em; }

/* Grundton: warmes Neutral statt Braun — wärmer als Grau, moderner als Sepia */
:root {
  --bg: #131211;
  --bg-soft: #1a1918;
  --border: rgba(238, 235, 231, 0.12);
  --border-strong: rgba(238, 235, 231, 0.26);
  --text: #eeebe7;
  --text-dim: #a9a49d;
  --text-mute: #77726b;
  --pink: #eeebe7; --pink-2: #eeebe7; --purple: #eeebe7;
}
#hero.sek-dunkel { background: #131211; }
#rechner.sek-dunkel, #contact.sek-dunkel { background: #1a1918; }
footer { background: #0f0e0d; }
.modal { background: #1a1918; }
.sek-dunkel {
  --text: #eeebe7; --text-dim: #a9a49d; --text-mute: #77726b;
  --border: rgba(238,235,231,0.12); --border-strong: rgba(238,235,231,0.26);
}

/* Akzent moderner: helles Bernstein statt Altgold */
.hero h1 em, .hand-note, .hs-teil.ist-offen b, .calc-sliders output { color: #f2b872; }
.hs-teil.ist-offen .hs-punkt, .spur-linie i { background: #f2b872; }
.calc-sliders input[type="range"], input[type="range"] { accent-color: #f2b872; }
::selection { background: #f2b872; color: #131211; }

/* Weiche Kanten statt Retro-Nullradius */
.btn { border-radius: 10px; }
.card, .branche, .person, .plan, .faq details, .calc-card,
.demo-card, .modal, .metric, .demo-tag, .lang-switch, .lang-switch button,
form.contact-form input, form.contact-form select, form.contact-form textarea,
.info-item, .person .avatar { border-radius: 12px; }
.demo-preview, .demo-preview .mini-shot { border-radius: 12px 12px 0 0; }
.mobile-toggle { border-radius: 10px; }

/* Bilder klar statt vergilbt */
.demo-preview .mini-shot { filter: saturate(0.95) contrast(1.02) brightness(0.94); }
.demo-card:hover .mini-shot { filter: none; }

/* Etwas mehr Tiefe: sanfte Aufhellung auf Karten (modern, nicht flach) */
.demo-card, .plan, .person, .calc-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.035), rgba(255,255,255,0.012)) !important;
}
.demo-card:hover, .plan:hover, .person:hover {
  background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02)) !important;
}
