/* ===== Design Tokens ===== */
:root {
  --bg: #06070d;
  --bg-soft: #0c0e1a;
  --surface: rgba(255, 255, 255, 0.04);
  --surface-hover: rgba(255, 255, 255, 0.07);
  --border: rgba(255, 255, 255, 0.09);
  --text: #f2f4fb;
  --text-dim: #a2a7bd;
  --accent: #4f7bff;
  --accent-2: #38bdf8;
  --accent-3: #8ea2ff;
  --gradient: linear-gradient(120deg, #4f7bff 0%, #38bdf8 60%, #8ea2ff 100%);
  --radius: 20px;
  --radius-sm: 12px;
  --shadow: 0 30px 80px -20px rgba(79, 123, 255, 0.35);
  --font-display: 'Sora', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;
}

/* ===== Reset ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img, svg { display: block; }
section { position: relative; z-index: 1; }

/* ===== Animierter Hintergrund ===== */
.bg-aurora {
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.4;
  animation: drift 22s ease-in-out infinite;
}
.orb-1 { width: 46vw; height: 46vw; background: #46567c; top: -12%; left: -8%; }
.orb-2 { width: 40vw; height: 40vw; background: #2f3850; bottom: -18%; right: -10%; animation-delay: -7s; }
.orb-3 { width: 30vw; height: 30vw; background: #565d73; top: 35%; left: 45%; animation-delay: -14s; opacity: 0.28; }
@keyframes drift {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(6%, 8%) scale(1.12); }
  66% { transform: translate(-5%, -6%) scale(0.94); }
}
.grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 30%, #000 40%, transparent 100%);
}

/* ===== Navigation ===== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px max(clamp(20px, 5vw, 64px), calc(50% - 576px));
  transition: background 0.4s ease, backdrop-filter 0.4s ease, padding 0.3s ease;
}
.nav.scrolled {
  background: rgba(6, 7, 13, 0.72);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border);
  padding-top: 12px;
  padding-bottom: 12px;
}
.brand {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.25rem;
  letter-spacing: -0.02em;
  display: flex;
  align-items: center;
  gap: 10px;
}
.brand-accent { background: linear-gradient(120deg, #3f6ae6, #4a82f5 55%, #5b93ff); -webkit-background-clip: text; background-clip: text; color: transparent; }
.brand-logo { width: 30px; height: 30px; flex-shrink: 0; }
.brand-lockup { height: 42px; width: auto; display: block; flex-shrink: 0; }
@media (max-width: 600px) { .brand-lockup { height: 34px; } }
.brand-mark {
  display: inline-flex;
  align-items: flex-end;
  gap: 3px;
  height: 20px;
}
.brand-mark .wave {
  width: 3px;
  background: var(--gradient);
  border-radius: 3px;
  animation: barPulse 1.1s ease-in-out infinite;
}
.brand-mark .wave:nth-child(1) { height: 40%; animation-delay: 0s; }
.brand-mark .wave:nth-child(2) { height: 100%; animation-delay: 0.15s; }
.brand-mark .wave:nth-child(3) { height: 60%; animation-delay: 0.3s; }
.brand-mark .wave:nth-child(4) { height: 85%; animation-delay: 0.45s; }
@keyframes barPulse { 0%, 100% { transform: scaleY(0.4); } 50% { transform: scaleY(1); } }

.nav-links { display: flex; align-items: center; gap: 34px; }
.nav-links a { color: var(--text-dim); font-weight: 500; font-size: 0.95rem; transition: color 0.25s; }
.nav-links a:hover { color: var(--text); }
.nav-cta {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 9px 20px;
  border-radius: 999px;
  color: var(--text) !important;
  transition: border-color 0.25s, background 0.25s, transform 0.25s;
}
.nav-cta:hover { border-color: var(--accent); background: var(--surface-hover); transform: translateY(-1px); }

.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 6px; }
.nav-toggle span { width: 24px; height: 2px; background: var(--text); border-radius: 2px; transition: 0.3s; }

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.98rem;
  padding: 14px 26px;
  border-radius: 999px;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform 0.25s ease, box-shadow 0.3s ease, background 0.3s ease;
}
.btn svg { transition: transform 0.3s ease; }
.btn-primary {
  background: var(--gradient);
  color: #0a0a12;
  box-shadow: var(--shadow);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 34px 90px -18px rgba(79,123,255,0.55); }
.btn-primary:hover svg { transform: translateX(4px); }
.btn-ghost { background: var(--surface); border-color: var(--border); color: var(--text); }
.btn-ghost:hover { background: var(--surface-hover); transform: translateY(-2px); }
.btn-block { width: 100%; justify-content: center; }

/* ===== Hero ===== */
.hero {
  min-height: auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 40px;
  padding: 120px clamp(20px, 5vw, 64px) 40px;
  max-width: 1280px;
  margin: 0 auto;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-dim);
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 7px 16px;
  border-radius: 999px;
  margin-bottom: 26px;
}
.pulse-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--accent-2); box-shadow: 0 0 0 0 rgba(56,189,248,0.6); animation: pulse 2s infinite; }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(56,189,248,0.6);} 70% { box-shadow: 0 0 0 10px rgba(56,189,248,0);} 100% { box-shadow: 0 0 0 0 rgba(56,189,248,0);} }

.hero-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.6rem, 6vw, 4.6rem);
  line-height: 1.03;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}
.gradient-text {
  background: var(--gradient);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: shine 6s linear infinite;
}
@keyframes shine { to { background-position: 200% center; } }

.hero-sub { font-size: clamp(1rem, 1.4vw, 1.18rem); color: var(--text-dim); max-width: 560px; margin-bottom: 36px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 54px; }

.hero-stats { display: flex; flex-wrap: wrap; gap: 28px; margin-bottom: 20px; }
.stat { display: flex; flex-direction: column; gap: 6px; max-width: 190px; position: relative; padding-right: 28px; }
.stat:not(:last-child)::after { content: ""; position: absolute; right: 14px; top: 4px; bottom: 4px; width: 1px; background: var(--border); }
.stat-value { display: flex; align-items: baseline; gap: 2px; }
.stat-num, .stat-suffix { font-family: var(--font-display); font-weight: 800; font-size: 2.1rem; letter-spacing: -0.02em; line-height: 1; }
.stat-word { font-size: 1.6rem; }
.stat-label { font-family: var(--font-body); font-size: 0.8rem; font-weight: 500; color: var(--text-dim); line-height: 1.4; }

/* Hero-Visual */
.hero-visual { display: flex; flex-direction: column; align-items: center; gap: 16px; }
.visual-head { display: flex; flex-direction: column; align-items: center; gap: 10px; }
.visual-tag { display: inline-flex; align-items: center; gap: 8px; font-size: 0.8rem; font-weight: 500; color: var(--text-dim); background: var(--surface); border: 1px solid var(--border); padding: 6px 14px; border-radius: 999px; }
.visual-label { font-family: var(--font-display); font-weight: 800; font-size: clamp(1.5rem, 3vw, 2.1rem); letter-spacing: -0.02em; text-align: center; background: var(--gradient); -webkit-background-clip: text; background-clip: text; color: transparent; }

/* ===== Live-Demo-Szenen pro Leistung ===== */
.voice-card .scene { position: relative; height: 236px; }
.scene-cap { margin-top: 16px; font-size: 0.82rem; color: var(--text-dim); text-align: center; }
.scene-cap b { color: var(--text); font-weight: 600; }

/* --- Rechnung/Vertrag -> Tabelle (Buchhaltung, Dokumenten-KI) --- */
.scene-invoice { display: flex; align-items: center; gap: 12px; }
.inv-doc { position: relative; width: 132px; flex-shrink: 0; background: #f4f5fa; border-radius: 10px; padding: 12px 12px 26px; overflow: hidden; box-shadow: 0 14px 30px -12px rgba(0,0,0,.55); }
.inv-dt { display: block; font-size: 0.58rem; font-weight: 700; color: #14151f; margin-bottom: 9px; }
.inv-dl { display: block; height: 5px; border-radius: 3px; background: #c9ccd8; margin-bottom: 6px; }
.inv-dl.s { width: 55%; }
.inv-da { position: absolute; left: 12px; bottom: 9px; font-size: 0.78rem; font-weight: 800; color: #14151f; }
.inv-scan { position: absolute; left: 0; right: 0; height: 26px; top: -26px; background: linear-gradient(180deg, rgba(56,189,248,.55), rgba(56,189,248,0)); box-shadow: 0 0 16px rgba(56,189,248,.6); animation: invScan 4.5s ease-in-out infinite; }
@keyframes invScan { 0%,100% { top: -26px; } 35%,55% { top: 100%; } }
.inv-flow { color: var(--accent-2); opacity: .7; flex-shrink: 0; }
.inv-sheet { flex: 1; display: flex; flex-direction: column; gap: 7px; }
.inv-row { display: flex; justify-content: space-between; gap: 8px; font-size: 0.72rem; color: var(--text-dim); padding: 8px 10px; border-radius: 8px; background: rgba(79,123,255,.12); border: 1px solid rgba(79,123,255,.25); opacity: 0; transform: translateX(16px); animation: invRow 4.5s ease-in-out infinite; }
.inv-row span:last-child { color: var(--accent-2); font-weight: 700; }
.inv-row:nth-child(1) { animation-delay: 2.0s; }
.inv-row:nth-child(2) { animation-delay: 2.3s; }
.inv-row:nth-child(3) { animation-delay: 2.6s; }
@keyframes invRow { 0% { opacity: 0; transform: translateX(16px); } 8%,86% { opacity: 1; transform: translateX(0); } 100% { opacity: 0; transform: translateX(16px); } }

/* --- Aufgaben-Checkliste (KI-Agenten) --- */
.scene-tasks { display: flex; flex-direction: column; gap: 12px; padding-top: 8px; }
.task { display: flex; align-items: center; gap: 11px; font-size: 0.84rem; color: var(--text-dim); }
.task .tk { width: 20px; height: 20px; border-radius: 6px; border: 1px solid var(--border); background: var(--bg-soft); position: relative; flex-shrink: 0; animation: taskTick 5s ease-in-out infinite; }
.task .tk::after { content: ""; position: absolute; left: 6px; top: 2px; width: 5px; height: 10px; border: solid #0a0a12; border-width: 0 2px 2px 0; transform: rotate(45deg) scale(0); animation: taskCheck 5s ease-in-out infinite; }
.task:nth-child(1) .tk, .task:nth-child(1) .tk::after { animation-delay: 0.4s; }
.task:nth-child(2) .tk, .task:nth-child(2) .tk::after { animation-delay: 1.1s; }
.task:nth-child(3) .tk, .task:nth-child(3) .tk::after { animation-delay: 1.8s; }
.task:nth-child(4) .tk, .task:nth-child(4) .tk::after { animation-delay: 2.5s; }
@keyframes taskTick { 0%,6% { background: var(--bg-soft); border-color: var(--border); } 12%,92% { background: linear-gradient(135deg,#4f7bff,#38bdf8); border-color: transparent; } 100% { background: var(--bg-soft); border-color: var(--border); } }
@keyframes taskCheck { 0%,6% { transform: rotate(45deg) scale(0); } 14%,92% { transform: rotate(45deg) scale(1); } 100% { transform: rotate(45deg) scale(0); } }
.tbar { height: 6px; border-radius: 4px; background: var(--bg-soft); border: 1px solid var(--border); overflow: hidden; margin-top: 6px; }
.tbar span { display: block; height: 100%; width: 0; background: var(--gradient); animation: tbarFill 5s ease-in-out infinite; }
@keyframes tbarFill { 0%,6% { width: 0; } 14% { width: 25%; } 26% { width: 50%; } 40% { width: 75%; } 56%,92% { width: 100%; } 100% { width: 0; } }

/* --- Chat (KI-Assistenten) --- */
.scene-chat { display: flex; flex-direction: column; gap: 12px; justify-content: center; height: 236px; }
.cb { max-width: 84%; padding: 11px 14px; border-radius: 14px; font-size: 0.84rem; line-height: 1.4; }
.cb-user { align-self: flex-end; background: var(--surface); border: 1px solid var(--border); opacity: 0; transform: translateY(8px); animation: cbUser 5s ease-in-out infinite; }
.cb-ai { align-self: flex-start; background: rgba(79,123,255,.14); border: 1px solid rgba(79,123,255,.28); opacity: 0; transform: translateY(8px); animation: cbAi 5s ease-in-out infinite; }
@keyframes cbUser { 0%,4% { opacity: 0; transform: translateY(8px); } 12%,94% { opacity: 1; transform: translateY(0); } 100% { opacity: 0; } }
@keyframes cbAi { 0%,24% { opacity: 0; transform: translateY(8px); } 32%,94% { opacity: 1; transform: translateY(0); } 100% { opacity: 0; } }
.cb-ai .dots { display: inline-flex; gap: 4px; animation: dotsHide 5s ease-in-out infinite; }
.cb-ai .dots i { width: 6px; height: 6px; border-radius: 50%; background: var(--accent-2); animation: dotBlink 1s infinite; }
.cb-ai .dots i:nth-child(2) { animation-delay: .15s; }
.cb-ai .dots i:nth-child(3) { animation-delay: .3s; }
@keyframes dotBlink { 0%,100% { opacity: .3; } 50% { opacity: 1; } }
@keyframes dotsHide { 0%,40% { opacity: 1; } 44%,100% { opacity: 0; height: 0; } }
.cb-ai .ai-msg, .cb-ai .src { opacity: 0; animation: aiMsg 5s ease-in-out infinite; }
.cb-ai .src { display: block; margin-top: 6px; font-size: 0.7rem; color: var(--accent-2); }
@keyframes aiMsg { 0%,44% { opacity: 0; } 52%,94% { opacity: 1; } 100% { opacity: 0; } }

/* --- Ticket-Warteschlange (KI-Kundenservice) --- */
.scene-tickets { display: flex; flex-direction: column; gap: 11px; padding-top: 10px; }
.tk-item { display: flex; align-items: center; justify-content: space-between; gap: 10px; font-size: 0.8rem; color: var(--text-dim); padding: 11px 12px; border-radius: 10px; background: var(--surface); border: 1px solid var(--border); animation: tkResolve 5s ease-in-out infinite; }
.tk-b { font-size: 0.66rem; font-weight: 700; color: #34d399; background: rgba(52,211,153,.14); border: 1px solid rgba(52,211,153,.3); padding: 3px 9px; border-radius: 999px; white-space: nowrap; opacity: 0; transform: scale(.7); animation: tkBadge 5s ease-in-out infinite; }
.tk-item:nth-child(1), .tk-item:nth-child(1) .tk-b { animation-delay: 0.5s; }
.tk-item:nth-child(2), .tk-item:nth-child(2) .tk-b { animation-delay: 1.3s; }
.tk-item:nth-child(3), .tk-item:nth-child(3) .tk-b { animation-delay: 2.1s; }
@keyframes tkResolve { 0%,8% { border-color: var(--border); background: var(--surface); } 16%,92% { border-color: rgba(52,211,153,.35); background: rgba(52,211,153,.06); } 100% { border-color: var(--border); background: var(--surface); } }
@keyframes tkBadge { 0%,8% { opacity: 0; transform: scale(.7); } 16%,92% { opacity: 1; transform: scale(1); } 100% { opacity: 0; transform: scale(.7); } }

/* --- Flow (Prozessautomatisierung) --- */
.scene-flow { display: flex; flex-direction: column; align-items: center; gap: 6px; padding-top: 8px; }
.fn { width: 100%; text-align: center; font-size: 0.8rem; color: var(--text-dim); padding: 11px; border-radius: 10px; background: var(--surface); border: 1px solid var(--border); animation: fnGlow 4.5s ease-in-out infinite; }
.fn-ai { color: var(--text); font-weight: 600; }
.fn:nth-child(1) { animation-delay: 0.2s; }
.fn:nth-child(3) { animation-delay: 1.2s; }
.fn:nth-child(5) { animation-delay: 2.2s; }
@keyframes fnGlow { 0%,4% { border-color: var(--border); box-shadow: none; } 10%,28% { border-color: rgba(79,123,255,.6); box-shadow: 0 0 20px -6px rgba(79,123,255,.5); } 40%,100% { border-color: var(--border); box-shadow: none; } }
.fp { width: 2px; height: 18px; background: var(--border); position: relative; overflow: hidden; }
.fp .fdot { position: absolute; left: -2px; width: 6px; height: 6px; border-radius: 50%; background: var(--accent-2); top: -6px; animation: fdot 4.5s ease-in-out infinite; }
.fp:nth-child(2) .fdot { animation-delay: 0.6s; }
.fp:nth-child(4) .fdot { animation-delay: 1.6s; }
@keyframes fdot { 0%,10% { top: -6px; opacity: 0; } 14% { opacity: 1; } 24% { top: 18px; opacity: 1; } 28%,100% { opacity: 0; } }

/* --- Content-Erstellung (KI-Marketing) --- */
.scene-content { display: flex; flex-direction: column; gap: 12px; padding-top: 12px; }
.mc-topic { display: inline-flex; align-items: center; gap: 8px; align-self: flex-start; font-size: 0.8rem; color: var(--text); background: var(--surface); border: 1px solid var(--border); padding: 8px 14px; border-radius: 999px; }
.mc-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--accent-2); }
.mc-cards { display: flex; flex-direction: column; gap: 8px; }
.mc-card { position: relative; overflow: hidden; font-size: 0.8rem; color: var(--text-dim); padding: 11px 14px; border-radius: 10px; background: rgba(79,123,255,.1); border: 1px solid rgba(79,123,255,.24); opacity: 0; transform: translateY(10px); animation: mcCard 4.8s ease-in-out infinite; }
.mc-card:nth-child(1) { animation-delay: 0.8s; }
.mc-card:nth-child(2) { animation-delay: 1.3s; }
.mc-card:nth-child(3) { animation-delay: 1.8s; }
@keyframes mcCard { 0% { opacity: 0; transform: translateY(10px); } 12%,90% { opacity: 1; transform: translateY(0); } 100% { opacity: 0; transform: translateY(10px); } }
.mc-card::after { content: ""; position: absolute; top: 0; left: -60%; width: 45%; height: 100%; background: linear-gradient(90deg, transparent, rgba(255,255,255,.14), transparent); animation: mcShine 4.8s ease-in-out infinite; }
.mc-card:nth-child(1)::after { animation-delay: 0.8s; }
.mc-card:nth-child(2)::after { animation-delay: 1.3s; }
.mc-card:nth-child(3)::after { animation-delay: 1.8s; }
@keyframes mcShine { 0%,14% { left: -60%; } 34% { left: 130%; } 100% { left: 130%; } }

/* --- Roadmap (Beratung & Schulung) --- */
.scene-road { position: relative; display: flex; flex-direction: column; gap: 22px; padding: 16px 0 0 6px; }
.scene-road::before { content: ""; position: absolute; left: 13px; top: 24px; bottom: 24px; width: 2px; background: var(--border); }
.ms { display: flex; align-items: center; gap: 14px; font-size: 0.88rem; color: var(--text-dim); position: relative; z-index: 1; }
.ms-d { width: 16px; height: 16px; border-radius: 50%; border: 2px solid var(--border); background: var(--bg-soft); flex-shrink: 0; animation: msDot 5s ease-in-out infinite; }
.ms:nth-child(1) .ms-d { animation-delay: 0.6s; }
.ms:nth-child(2) .ms-d { animation-delay: 1.6s; }
.ms:nth-child(3) .ms-d { animation-delay: 2.6s; }
@keyframes msDot { 0%,6% { background: var(--bg-soft); border-color: var(--border); box-shadow: none; } 14%,92% { background: linear-gradient(135deg,#4f7bff,#38bdf8); border-color: transparent; box-shadow: 0 0 14px -2px rgba(79,123,255,.7); } 100% { background: var(--bg-soft); border-color: var(--border); } }

/* ===== TÜV-Zertifikat-Seite ===== */
.seal-card { display: block; background: #f4f5fa; border: 1px solid var(--border); border-radius: 20px; padding: 24px; box-shadow: var(--shadow); max-width: 420px; width: 100%; transition: transform 0.25s ease; }
.seal-card:hover { transform: translateY(-3px); }
.seal-card img { width: 100%; height: auto; display: block; border-radius: 8px; }
.cert-facts { list-style: none; display: flex; flex-wrap: wrap; gap: 12px 28px; margin: 0 0 30px; }
.cert-facts li { font-size: 0.92rem; color: var(--text); }
.cert-facts strong { display: block; font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--text-dim); font-weight: 600; margin-bottom: 3px; }

/* ===== Rechtliche Seiten (Impressum, Datenschutz) ===== */
.legal { max-width: 820px; margin: 0 auto; padding: 140px clamp(20px, 5vw, 64px) 70px; }
.legal h1 { font-family: var(--font-display); font-weight: 800; font-size: clamp(2rem, 4vw, 2.8rem); letter-spacing: -0.02em; margin-bottom: 8px; }
.legal .updated { color: var(--text-dim); font-size: 0.85rem; margin-bottom: 26px; }
.legal h2 { font-family: var(--font-display); font-weight: 700; font-size: 1.25rem; margin: 34px 0 12px; }
.legal p, .legal li { color: var(--text-dim); line-height: 1.7; }
.legal p { margin-bottom: 10px; }
.legal ul { padding-left: 20px; margin-bottom: 12px; }
.legal a { color: var(--accent-2); }
.legal-note { background: rgba(255, 84, 112, 0.08); border: 1px solid rgba(255, 84, 112, 0.3); border-radius: var(--radius-sm); padding: 16px 18px; margin-bottom: 30px; color: var(--text); font-size: 0.92rem; line-height: 1.6; }
.ph { color: var(--accent-2); background: rgba(56, 189, 248, 0.1); padding: 1px 7px; border-radius: 5px; }
.voice-card {
  width: 100%;
  max-width: 380px;
  background: linear-gradient(160deg, rgba(255,255,255,0.07), rgba(255,255,255,0.02));
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 24px;
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow);
  animation: float 6s ease-in-out infinite;
}
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-14px); } }
.voice-card-top { display: flex; align-items: center; gap: 9px; font-size: 0.85rem; color: var(--text-dim); font-weight: 500; margin-bottom: 18px; }
.live-dot { width: 8px; height: 8px; border-radius: 50%; background: #ff5470; animation: pulse 1.6s infinite; box-shadow: 0 0 0 0 rgba(255,84,112,0.6); }

.waveform { display: flex; align-items: center; justify-content: center; gap: 4px; height: 70px; margin-bottom: 22px; }
.waveform span {
  width: 4px;
  border-radius: 4px;
  background: var(--gradient);
  animation: wf 1.2s ease-in-out infinite;
}
@keyframes wf { 0%, 100% { height: 12%; opacity: 0.6; } 50% { height: 100%; opacity: 1; } }

.voice-transcript { display: flex; flex-direction: column; gap: 10px; }
.line {
  font-size: 0.88rem;
  padding: 10px 14px;
  border-radius: 14px;
  opacity: 0;
  transform: translateY(8px);
  animation: lineIn 0.6s ease forwards;
}
.line strong { display: block; font-size: 0.68rem; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 2px; opacity: 0.6; }
.line-agent { background: rgba(79,123,255,0.14); border: 1px solid rgba(79,123,255,0.25); }
.line-caller { background: var(--surface); border: 1px solid var(--border); align-self: flex-end; }
.line:nth-child(1) { animation-delay: 0.5s; }
.line:nth-child(2) { animation-delay: 1.4s; }
.line:nth-child(3) { animation-delay: 2.3s; }
@keyframes lineIn { to { opacity: 1; transform: translateY(0); } }

/* ===== Section-Head ===== */
.section-head { max-width: 640px; margin: 0 auto 40px; text-align: center; }
.section-tag {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-2);
  margin-bottom: 16px;
}
.section-head h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.9rem, 4vw, 2.9rem);
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 16px;
}
.section-head p { color: var(--text-dim); font-size: 1.05rem; }

/* ===== Leistungen ===== */
.services, .process, .cta { padding: 56px clamp(20px, 5vw, 64px); max-width: 1200px; margin: 0 auto; }
.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 22px;
}
.service-card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(.2,.7,.2,1), border-color 0.4s, background 0.4s;
}
.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(400px circle at var(--mx, 50%) var(--my, 0%), rgba(79,123,255,0.16), transparent 60%);
  opacity: 0;
  transition: opacity 0.4s;
}
.service-card:hover { transform: translateY(-6px); border-color: rgba(79,123,255,0.4); background: var(--surface-hover); }
.service-card:hover::before { opacity: 1; }
.service-card > * { position: relative; z-index: 1; }
.service-icon {
  width: 52px; height: 52px;
  display: grid; place-items: center;
  border-radius: 14px;
  background: linear-gradient(160deg, rgba(79,123,255,0.25), rgba(56,189,248,0.12));
  border: 1px solid var(--border);
  margin-bottom: 20px;
  color: var(--text);
}
.service-icon svg { width: 26px; height: 26px; }
.service-card h3 { font-family: var(--font-display); font-weight: 600; font-size: 1.2rem; margin-bottom: 10px; }
.service-card p { color: var(--text-dim); font-size: 0.96rem; }

/* ===== Ablauf ===== */
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 22px; }
.step {
  position: relative;
  padding: 34px 28px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: linear-gradient(160deg, rgba(255,255,255,0.05), rgba(255,255,255,0.015));
  transition: transform 0.4s, border-color 0.4s;
}
.step:hover { transform: translateY(-6px); border-color: rgba(56,189,248,0.4); }
.step-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 2.4rem;
  background: var(--gradient);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  display: block; margin-bottom: 12px;
}
.step h3 { font-family: var(--font-display); font-weight: 600; font-size: 1.25rem; margin-bottom: 8px; }
.step p { color: var(--text-dim); }

/* ===== CTA / Kontakt ===== */
.cta { max-width: 900px; }
.cta-card {
  text-align: center;
  padding: clamp(40px, 6vw, 70px);
  border-radius: 28px;
  border: 1px solid var(--border);
  background:
    radial-gradient(600px circle at 50% 0%, rgba(79,123,255,0.18), transparent 60%),
    linear-gradient(160deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02));
  box-shadow: var(--shadow);
}
.cta-card h2 { font-family: var(--font-display); font-weight: 800; font-size: clamp(1.7rem, 4vw, 2.6rem); letter-spacing: -0.02em; margin-bottom: 14px; }
.cta-card p { color: var(--text-dim); font-size: 1.05rem; max-width: 520px; margin: 0 auto 34px; }
.cta-form { max-width: 460px; margin: 0 auto; display: flex; flex-direction: column; gap: 11px; }
.field { position: relative; }
.field input {
  width: 100%;
  padding: 11px 15px;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 0.96rem;
  transition: border-color 0.3s;
}
.field input:focus { outline: none; border-color: var(--accent); }
.field label {
  position: absolute;
  left: 15px; top: 11px;
  color: var(--text-dim);
  pointer-events: none;
  transition: 0.2s ease;
  font-size: 0.96rem;
}
.field input:focus + label,
.field input:not(:placeholder-shown) + label {
  top: -9px; left: 12px;
  font-size: 0.75rem;
  background: var(--bg-soft);
  padding: 0 6px;
  color: var(--accent-2);
}
.form-note { font-size: 0.9rem; min-height: 1.2em; }
.form-note.ok { color: #34d399; }
.form-note.err { color: #ff5470; }
.form-microcopy { font-size: 0.85rem; color: var(--text-dim); text-align: center; margin-top: -2px; }
.form-guarantee { display: flex; gap: 10px; align-items: flex-start; font-size: 0.88rem; line-height: 1.55; color: var(--text-dim); border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 14px 16px; background: rgba(56, 189, 248, 0.04); }
.form-guarantee svg { color: var(--accent-2); flex-shrink: 0; margin-top: 1px; }
.form-guarantee strong { color: var(--text); font-weight: 600; }

/* ===== Footer ===== */
.footer {
  position: relative; z-index: 1;
  border-top: 1px solid var(--border);
  padding: 40px clamp(20px, 5vw, 64px);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: var(--text-dim);
  font-size: 0.9rem;
}
.footer-brand { font-family: var(--font-display); font-weight: 800; font-size: 1.1rem; color: var(--text); }
.footer-links { display: flex; gap: 24px; }
.footer-links a:hover { color: var(--text); }

/* ===== Reveal-Animation ===== */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s cubic-bezier(.2,.7,.2,1); }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ===== Responsive ===== */
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; padding-top: 120px; }
  .hero-visual { margin-top: 10px; }
  .voice-card { max-width: 340px; }
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: rgba(6,7,13,0.96);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid var(--border);
    padding: 24px;
    gap: 20px;
  }
}
@media (max-width: 520px) {
  .hero-stats { gap: 24px; }
  .stat-num, .stat-suffix { font-size: 1.7rem; }
  .hero-actions .btn { flex: 1; justify-content: center; }
}

/* Reduzierte Bewegung respektieren */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition-duration: 0.01ms !important; }
  .reveal { opacity: 1; transform: none; }
}

/* ===== Marken-Icon (Dot-Grid) ===== */
.brand-mark { display: inline-grid; grid-template-columns: repeat(2, 8px); grid-auto-rows: 8px; gap: 3px; }
.brand-mark i { background: var(--gradient); border-radius: 3px; display: block; animation: dotPulse 1.7s ease-in-out infinite; }
.brand-mark i:nth-child(2) { animation-delay: 0.2s; }
.brand-mark i:nth-child(3) { animation-delay: 0.4s; }
.brand-mark i:nth-child(4) { animation-delay: 0.6s; }
@keyframes dotPulse { 0%, 100% { opacity: 0.35; transform: scale(0.75); } 50% { opacity: 1; transform: scale(1); } }

/* ===== Hub: Lösungs-Karten als klickbare Links ===== */
a.service-card { text-decoration: none; color: inherit; display: flex; flex-direction: column; cursor: pointer; }
/* Gradient-Leiste am oberen Rand kennzeichnet klickbare Karten */
a.service-card::after {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--gradient); opacity: 0.6;
  border-radius: var(--radius) var(--radius) 0 0;
  transition: opacity 0.3s; z-index: 1;
}
a.service-card:hover::after { opacity: 1; }
a.service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(79, 123, 255, 0.55);
  box-shadow: 0 26px 60px -24px rgba(79, 123, 255, 0.5);
}
.service-card .card-tag { font-size: 0.76rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--accent-2); margin-bottom: 10px; }
/* „Mehr erfahren" als sichtbarer Button — klares Klick-Signal */
.card-arrow {
  margin-top: auto; align-self: flex-start;
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 18px; border-radius: 999px;
  background: rgba(56, 189, 248, 0.10);
  border: 1px solid rgba(56, 189, 248, 0.32);
  color: var(--accent-2); font-weight: 600; font-size: 0.9rem;
  transition: background 0.3s, border-color 0.3s, color 0.3s;
}
.card-arrow svg { transition: transform 0.3s; }
a.service-card:hover .card-arrow { background: var(--gradient); border-color: transparent; color: #0a0a12; }
a.service-card:hover .card-arrow svg { transform: translateX(4px); }

/* ===== Subpage-Hero + Breadcrumb ===== */
.subhero {
  max-width: 1280px; margin: 0 auto;
  padding: 140px clamp(20px, 5vw, 64px) 30px;
  display: grid; grid-template-columns: 1.05fr 0.95fr;
  gap: 48px; align-items: center;
}
.subhero-text { min-width: 0; }
@media (max-width: 900px) { .subhero { grid-template-columns: 1fr; gap: 36px; } }
.breadcrumb { display: inline-flex; align-items: center; gap: 9px; font-size: 0.85rem; color: var(--text-dim); margin-bottom: 22px; }
.breadcrumb a:hover { color: var(--text); }
.breadcrumb .sep { opacity: 0.45; }
.breadcrumb .current { color: var(--text); }
.subhero .hero-title { font-size: clamp(2.1rem, 5vw, 3.5rem); margin-bottom: 20px; }
.subhero .hero-sub { margin-bottom: 30px; max-width: 640px; }

/* ===== Vertrauen / TÜV-Siegel ===== */
.trust { max-width: 900px; margin: 0 auto; padding: 8px clamp(20px, 5vw, 64px) 48px; }
.trust-inner {
  display: flex; align-items: center; gap: 26px; justify-content: center; flex-wrap: wrap;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 22px 30px;
}
.trust-seal { display: block; transition: transform 0.25s ease; }
.trust-seal:hover { transform: translateY(-2px); }
.trust-seal img { height: 84px; width: auto; display: block; border-radius: 8px; }
.trust-text { display: flex; flex-direction: column; gap: 4px; max-width: 320px; }
.trust-text strong { font-family: var(--font-display); font-weight: 600; font-size: 1.05rem; }
.trust-text span { color: var(--text-dim); font-size: 0.88rem; line-height: 1.5; }
@media (max-width: 520px) { .trust-inner { flex-direction: column; text-align: center; } .trust-text { align-items: center; } }

/* ===== Zurück-Band unten ===== */
.back-band { text-align: center; padding: 0 20px 60px; }
.back-band a { color: var(--text-dim); font-weight: 500; display: inline-flex; align-items: center; gap: 8px; transition: color 0.25s; }
.back-band a:hover { color: var(--text); }
.back-band svg { transition: transform 0.3s; }
.back-band a:hover svg { transform: translateX(-4px); }

/* ===== Trust-Band unter Hero ===== */
.trust-band { max-width: 1100px; margin: 0 auto; padding: 6px clamp(20px, 5vw, 64px) 4px; display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 18px 28px; }
.trust-band-seal { display: block; flex-shrink: 0; transition: transform 0.25s ease; }
.trust-band-seal:hover { transform: translateY(-2px); }
.trust-band-seal img { height: 56px; width: auto; border-radius: 6px; }
.trust-band-list { list-style: none; display: flex; flex-wrap: wrap; align-items: center; gap: 10px 22px; }
.trust-band-list li { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-display); font-weight: 600; font-size: 0.92rem; color: var(--text); }
.trust-band-list li svg { color: var(--accent-2); flex-shrink: 0; }
@media (max-width: 520px) { .trust-band { flex-direction: column; } .trust-band-list { justify-content: center; } }

/* ===== Technologien-Leiste ===== */
.tech { max-width: 1100px; margin: 0 auto; padding: 30px clamp(20px, 5vw, 64px) 10px; text-align: center; }
.tech p { color: var(--text-dim); font-size: 0.82rem; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 20px; }
.tech-pills { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; }
.tech-pills span { padding: 10px 20px; border: 1px solid var(--border); border-radius: 999px; background: var(--surface); font-family: var(--font-display); font-weight: 600; font-size: 0.95rem; color: var(--text); transition: border-color 0.25s, transform 0.25s; }
.tech-pills span:hover { border-color: rgba(79, 123, 255, 0.5); transform: translateY(-2px); }

/* ===== Testimonials / Ergebnisse (bis Aktivierung ungenutzt) ===== */
.testimonial-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 18px; max-width: 1100px; margin: 0 auto; }
.testimonial-card { border: 1px solid var(--border); border-radius: var(--radius); padding: 28px 26px; background: var(--surface); display: flex; flex-direction: column; gap: 16px; }
.testimonial-card blockquote { font-size: 1.02rem; line-height: 1.6; color: var(--text); }
.testimonial-card figcaption { color: var(--text-dim); font-size: 0.9rem; font-weight: 500; }
.case-highlight { max-width: 1100px; margin: 22px auto 0; border: 1px solid rgba(79, 123, 255, 0.45); border-radius: var(--radius); padding: 26px 28px; background: linear-gradient(160deg, rgba(79, 123, 255, 0.09), rgba(56, 189, 248, 0.04)); }
.case-rows { display: flex; flex-direction: column; gap: 12px; margin-top: 16px; }
.case-row { display: grid; grid-template-columns: 130px 1fr; gap: 14px; align-items: start; }
.case-row strong { font-family: var(--font-display); font-weight: 600; color: var(--accent-2); font-size: 0.9rem; }
.case-row span { color: var(--text-dim); font-size: 0.95rem; }
@media (max-width: 520px) { .case-row { grid-template-columns: 1fr; gap: 2px; } }

/* ===== Gründer-Block ===== */
.founder { max-width: 1000px; margin: 0 auto; padding: 40px clamp(20px, 5vw, 64px); }
.founder-inner { display: grid; grid-template-columns: 300px 1fr; gap: 40px; align-items: center; border: 1px solid var(--border); border-radius: var(--radius); padding: clamp(24px, 4vw, 40px); background: var(--surface); }
.founder-photo { aspect-ratio: 4 / 5; border-radius: var(--radius-sm); overflow: hidden; background: linear-gradient(160deg, rgba(79, 123, 255, 0.14), rgba(56, 189, 248, 0.06)); border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; }
.founder-photo img { width: 100%; height: 100%; object-fit: cover; }
.founder-photo-ph { color: var(--text-dim); font-size: 0.85rem; text-align: center; padding: 0 16px; }
.founder-text h2 { font-family: var(--font-display); font-weight: 800; font-size: clamp(1.5rem, 3vw, 2rem); letter-spacing: -0.02em; margin-bottom: 16px; }
.founder-text p { color: var(--text-dim); margin-bottom: 14px; }
.founder-text p:last-child { margin-bottom: 0; }
@media (max-width: 640px) { .founder-inner { grid-template-columns: 1fr; gap: 24px; } .founder-photo { max-width: 260px; margin: 0 auto; width: 100%; } }

/* ===== Kennzahlen / Marktkontext ===== */
.metric-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 18px; }
.metric-card { padding: 30px 24px; border: 1px solid var(--border); border-radius: var(--radius); background: var(--surface); text-align: center; }
.metric-num { font-family: var(--font-display); font-weight: 800; font-size: 2.6rem; letter-spacing: -0.02em; background: var(--gradient); -webkit-background-clip: text; background-clip: text; color: transparent; display: block; margin-bottom: 8px; }
.metric-card p { color: var(--text-dim); font-size: 0.95rem; }
.source-note { text-align: center; color: var(--text-dim); font-size: 0.8rem; margin-top: 22px; }
.source-note a { color: var(--accent-2); }

/* ===== Problem-Karten ===== */
.problem-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; }
.num-badge { font-family: var(--font-display); font-weight: 800; font-size: 1.5rem; color: var(--accent-2); }
.severity { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; padding: 4px 11px; border-radius: 999px; }
.sev-hoch { background: rgba(255, 84, 112, 0.14); color: #ff7a90; border: 1px solid rgba(255, 84, 112, 0.3); }
.sev-mittel { background: rgba(79, 123, 255, 0.16); color: #b0a1ff; border: 1px solid rgba(79, 123, 255, 0.3); }

/* ===== Vergleich Ohne / Mit ===== */
.compare { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; max-width: 900px; margin: 0 auto; }
.compare-col { border: 1px solid var(--border); border-radius: var(--radius); padding: 30px 28px; }
.compare-col.good { border-color: rgba(79, 123, 255, 0.45); background: linear-gradient(160deg, rgba(79, 123, 255, 0.09), rgba(56, 189, 248, 0.04)); }
.compare-col h3 { font-family: var(--font-display); font-size: 1.15rem; margin-bottom: 20px; }
.compare-col ul { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.compare-col li { display: flex; gap: 11px; color: var(--text-dim); font-size: 0.95rem; align-items: flex-start; }
.compare-col.good li { color: var(--text); }
.compare-col li svg { flex-shrink: 0; margin-top: 2px; }
.ic-bad { color: #ff7a90; }
.ic-good { color: var(--accent-2); }
@media (max-width: 640px) { .compare { grid-template-columns: 1fr; } }

/* ===== FAQ ===== */
.faq-list { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item { border: 1px solid var(--border); border-radius: var(--radius-sm); background: var(--surface); overflow: hidden; }
.faq-item summary { list-style: none; cursor: pointer; padding: 20px 22px; font-family: var(--font-display); font-weight: 600; font-size: 1.02rem; display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; font-size: 1.5rem; line-height: 1; color: var(--accent-2); transition: transform 0.3s; flex-shrink: 0; }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p { padding: 0 22px 20px; color: var(--text-dim); }

/* ===== CTA-Banner (Seitenmitte) ===== */
.cta-banner { max-width: 1000px; margin: 0 auto; padding: 20px clamp(20px, 5vw, 64px); }
.cta-banner-inner { border: 1px solid var(--border); border-radius: 24px; padding: clamp(32px, 5vw, 52px); text-align: center; background: radial-gradient(600px circle at 50% 0%, rgba(56, 189, 248, 0.14), transparent 60%), linear-gradient(160deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02)); }
.cta-banner-inner h2 { font-family: var(--font-display); font-weight: 800; font-size: clamp(1.5rem, 3.5vw, 2.2rem); letter-spacing: -0.02em; margin-bottom: 12px; }
.cta-banner-inner p { color: var(--text-dim); margin: 0 auto 26px; max-width: 520px; }

/* ===== Navigations-Dropdown (Lösungen) ===== */
.nav-dropdown { position: relative; }
.nav-dropdown-trigger { display: inline-flex; align-items: center; gap: 6px; cursor: pointer; }
.nav-dropdown-trigger svg { transition: transform 0.25s ease; }
.nav-dropdown:hover .nav-dropdown-trigger svg { transform: rotate(180deg); }
.nav-dropdown-menu {
  position: absolute; top: 100%; left: 50%;
  transform: translateX(-50%) translateY(6px);
  min-width: 250px; padding: 10px;
  background: rgba(10, 12, 22, 0.97); backdrop-filter: blur(20px);
  border: 1px solid var(--border); border-radius: 16px;
  display: grid; gap: 2px;
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
  box-shadow: 0 30px 70px -22px rgba(0, 0, 0, 0.7); z-index: 60;
}
.nav-dropdown-menu::before { content: ""; position: absolute; top: -12px; left: 0; right: 0; height: 12px; }
.nav-dropdown:hover .nav-dropdown-menu { opacity: 1; visibility: visible; pointer-events: auto; transform: translateX(-50%) translateY(2px); }
.nav-dropdown-menu a { display: flex; align-items: center; gap: 10px; padding: 11px 14px; border-radius: 10px; font-size: 0.92rem; font-weight: 500; color: var(--text-dim); white-space: nowrap; transition: background 0.2s, color 0.2s; }
.nav-dropdown-menu a:hover { background: var(--surface-hover); color: var(--text); }
.nav-dropdown-menu a svg { width: 17px; height: 17px; color: var(--accent-2); flex-shrink: 0; }

@media (max-width: 900px) {
  .nav-dropdown-menu {
    position: static; transform: none; opacity: 1; visibility: visible; pointer-events: auto;
    min-width: 0; padding: 4px 0 4px 14px; background: transparent;
    border: none; box-shadow: none; backdrop-filter: none; gap: 0;
  }
  .nav-dropdown-menu::before { display: none; }
  .nav-dropdown-trigger svg { display: none; }
}

/* ===== Kontaktformular: erweiterte Felder ===== */
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 11px; }
@media (max-width: 480px) { .field-row { grid-template-columns: 1fr; } }

.field textarea {
  width: 100%; padding: 11px 15px;
  background: var(--bg-soft); border: 1px solid var(--border); border-radius: var(--radius-sm);
  color: var(--text); font-family: var(--font-body); font-size: 0.96rem;
  resize: vertical; min-height: 80px; transition: border-color 0.3s;
}
.field textarea:focus { outline: none; border-color: var(--accent); }
.field textarea:focus + label,
.field textarea:not(:placeholder-shown) + label {
  top: -9px; left: 12px; font-size: 0.75rem; background: var(--bg-soft); padding: 0 6px; color: var(--accent-2);
}

.field-select { position: relative; }
.field-select select {
  width: 100%; padding: 11px 42px 11px 15px;
  background: var(--bg-soft); border: 1px solid var(--border); border-radius: var(--radius-sm);
  color: var(--text); font-family: var(--font-body); font-size: 0.96rem;
  appearance: none; -webkit-appearance: none; cursor: pointer; transition: border-color 0.3s;
}
.field-select select:focus { outline: none; border-color: var(--accent); }
.field-select select:invalid { color: var(--text-dim); }
.field-select select option { color: var(--text); background: var(--bg-soft); }
.field-select .select-arrow { position: absolute; right: 16px; top: 50%; transform: translateY(-50%); pointer-events: none; color: var(--text-dim); }
