/* ============================================================
   SILCROW 2026 · Kanzlei-Cloud Landing Page
   Navy-blau Hauptbrand · perfekt für SEO & Marketing
   ============================================================ */

:root {
  /* Light scheme */
  --bg: #ffffff;
  --bg-soft: #f6f7fa;
  --bg-sunken: #ecedf2;
  --ink: #0c1929;
  --ink-2: #3f4654;
  --ink-3: #6b7280;
  --line: rgba(12,25,41,0.08);
  --line-2: rgba(12,25,41,0.16);

  /* Brand navy (echtes SILCROW-Logo) */
  --navy-50: #f0f4fa;
  --navy-100: #d8e0ee;
  --navy-200: #b1c1dd;
  --navy-300: #7c95bd;
  --navy-400: #4a6798;
  --navy-500: #2b4677;
  --navy-600: #1e3a5f;
  --navy-700: #163050;
  --navy-800: #0c1929;
  --navy-900: #050b16;

  /* Silver accent (für Logo-Anlehnung) */
  --silver-1: #e8edf5;
  --silver-2: #c9d2e1;
  --silver-3: #94a3bd;

  /* Functional colors */
  --emerald: #10b981;
  --emerald-2: #34d399;
  --amber: #f59e0b;
  --rose: #ef4444;
  --violet: #8b5cf6;
  --violet-2: #a78bfa;
  --pink: #ec4899;
  --blue: #3b82f6;

  /* KI-Gradient (echte UI: pink → violet) */
  --ki-grad: linear-gradient(135deg, #ec4899 0%, #8b5cf6 100%);
  --navy-grad: linear-gradient(135deg, #0c1929 0%, #1e3a5f 60%, #2b4677 100%);

  --r-sm: 8px;
  --r: 14px;
  --r-lg: 24px;
  --r-xl: 32px;

  --shadow-1: 0 1px 2px rgba(12,25,41,0.04), 0 4px 8px rgba(12,25,41,0.04);
  --shadow-2: 0 8px 24px rgba(12,25,41,0.08), 0 24px 60px rgba(12,25,41,0.08);
  --shadow-3: 0 32px 80px rgba(12,25,41,0.16);
  --shadow-navy: 0 24px 60px rgba(12,25,41,0.32);
}

/* ─── Reset ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; scroll-padding-top: 88px; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
}
img, svg, picture { max-width: 100%; display: block; }
img { height: auto; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
em { font-style: normal; }
ul, ol { list-style: none; }

::selection { background: rgba(43,70,119,0.2); color: var(--navy-900); }

.container { max-width: 1240px; margin: 0 auto; padding: 0 28px; }
.mono { font-family: 'JetBrains Mono', ui-monospace, monospace; }
.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); border: 0;
}

.skip-link {
  position: absolute; top: -40px; left: 16px;
  background: var(--navy-800); color: #fff;
  padding: 8px 14px; border-radius: 8px;
  z-index: 9999; transition: top 0.2s;
}
.skip-link:focus { top: 16px; }

:focus-visible {
  outline: 2px solid var(--navy-500);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 12px 0;
  background: rgba(255,255,255,0.72);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  border-bottom: 1px solid rgba(12,25,41,0.06);
  transition: background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}
.nav.scrolled {
  background: rgba(255,255,255,0.92);
  box-shadow: 0 1px 0 rgba(12,25,41,0.05), 0 8px 24px rgba(12,25,41,0.05);
}
.nav-inner {
  max-width: 1240px; margin: 0 auto; padding: 0 28px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px;
}
.brand {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700; font-size: 18px; letter-spacing: -0.02em;
  color: var(--navy-800);
}
.brand img {
  width: 36px; height: 36px;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 4px 12px rgba(12,25,41,0.15);
}
.brand-name { font-weight: 700; }
.brand-tag {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px; font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-3);
  padding-left: 10px;
  margin-left: 2px;
  border-left: 1px solid var(--line);
}

.nav-links {
  display: flex; align-items: center; gap: 2px;
  font-size: 14px; font-weight: 500;
}
.nav-links > a,
.nav-trigger {
  padding: 8px 12px;
  color: var(--ink-2);
  border-radius: 8px;
  transition: color 0.15s, background 0.15s;
  display: inline-flex; align-items: center; gap: 6px;
}
.nav-links > a:hover, .nav-trigger:hover {
  color: var(--navy-800);
  background: rgba(12,25,41,0.04);
}

/* Mega menu */
.nav-item { position: relative; }
.mega {
  position: absolute;
  top: calc(100% + 12px); left: 50%;
  transform: translateX(-50%) translateY(6px);
  width: 780px;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(24px) saturate(180%);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 24px;
  box-shadow: var(--shadow-3);
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
  opacity: 0; visibility: hidden;
  transition: opacity 0.2s, transform 0.2s, visibility 0.2s;
  z-index: 200;
}
.mega::before { content:''; position:absolute; top:-12px; left:0; right:0; height:24px; }
.nav-item.has-mega:hover .mega,
.nav-item.has-mega:focus-within .mega {
  opacity: 1; visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.mega-head {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px; text-transform: uppercase; letter-spacing: 0.08em;
  color: var(--ink-3);
  margin-bottom: 10px;
}
.mega-link {
  display: flex; gap: 12px; padding: 10px;
  border-radius: 10px;
  transition: background 0.15s;
}
.mega-link:hover { background: var(--bg-soft); }
.mega-ico {
  width: 34px; height: 34px; flex-shrink: 0;
  border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 14px;
  color: #fff;
}
.mega-link strong { display: block; font-size: 14px; font-weight: 600; color: var(--navy-800); }
.mega-link em { display: block; font-size: 12px; color: var(--ink-3); margin-top: 2px; line-height: 1.4; }

.ico-aktenfuehrung { background: var(--navy-grad); }
.ico-postin     { background: linear-gradient(135deg, #1e3a5f, #4a6798); }
.ico-tasks      { background: linear-gradient(135deg, #6366f1, #818cf8); }
.ico-finance    { background: linear-gradient(135deg, #10b981, #34d399); }
.ico-rvg        { background: linear-gradient(135deg, #059669, #10b981); }
.ico-datev      { background: linear-gradient(135deg, #0284c7, #38bdf8); }
.ico-ki         { background: var(--ki-grad); }
.ico-mobile     { background: linear-gradient(135deg, #3b82f6, #60a5fa); }
.ico-office     { background: linear-gradient(135deg, #1d4ed8, #3b82f6); }
.ico-connect    { background: linear-gradient(135deg, #f97316, #fb923c); }

.nav-cta { display: flex; align-items: center; gap: 8px; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 18px; border-radius: 999px;
  font-weight: 600; font-size: 14px;
  white-space: nowrap;
  transition: transform 0.15s ease, background 0.15s, color 0.15s, box-shadow 0.2s;
  border: 1px solid transparent;
}
.btn-primary {
  background: var(--navy-800); color: #fff;
  box-shadow: 0 4px 12px rgba(12,25,41,0.2);
}
.btn-primary:hover {
  background: var(--navy-700);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(12,25,41,0.3);
}
.btn-ghost {
  background: transparent; color: var(--navy-800);
  border-color: var(--line-2);
}
.btn-ghost:hover { background: var(--bg-soft); border-color: var(--navy-300); }
.btn-glass {
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(12px);
  color: var(--navy-800);
  border-color: var(--line-2);
}
.btn-glass:hover { background: rgba(255,255,255,0.95); }
.btn-xl { padding: 14px 26px; font-size: 15px; }
.btn-block { display: flex; justify-content: center; width: 100%; }
.play {
  font-size: 9px; padding: 4px;
  background: var(--navy-800); color: #fff;
  border-radius: 999px;
  width: 18px; height: 18px;
  display: inline-flex; align-items: center; justify-content: center;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  padding: 130px 0 0;
  overflow: hidden;
  background: linear-gradient(180deg, #ffffff 0%, #f7f8fb 60%, #eef1f7 100%);
}

/* Mesh gradient (navy/silver/violet — passt zum Logo) */
.mesh {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 40% 30% at 18% 22%, rgba(43,70,119,0.32), transparent 60%),
    radial-gradient(ellipse 35% 25% at 82% 12%, rgba(139,92,246,0.18), transparent 60%),
    radial-gradient(ellipse 30% 25% at 70% 65%, rgba(59,130,246,0.18), transparent 60%),
    radial-gradient(ellipse 40% 30% at 32% 82%, rgba(16,185,129,0.14), transparent 60%);
  filter: blur(24px);
  animation: meshShift 22s ease-in-out infinite alternate;
  pointer-events: none;
  z-index: 0;
}
@keyframes meshShift {
  0%   { transform: translate(0,0) scale(1); }
  50%  { transform: translate(-2%, 2%) scale(1.06); }
  100% { transform: translate(3%, -3%) scale(1.02); }
}

.hero-grid {
  position: absolute; inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(12,25,41,0.06) 1px, transparent 0);
  background-size: 28px 28px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
  pointer-events: none;
  z-index: 1;
}

.hero-inner { position: relative; z-index: 2; text-align: center; }

.pill {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 7px 16px 7px 12px;
  background: rgba(255,255,255,0.88);
  backdrop-filter: blur(12px);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 13px; font-weight: 500;
  color: var(--ink-2);
  box-shadow: var(--shadow-1);
  margin-bottom: 32px;
  animation: pillIn 0.6s 0.1s both;
}
.pill strong { color: var(--navy-800); font-weight: 700; }
.pill-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--emerald);
  box-shadow: 0 0 0 0 rgba(16,185,129,0.6);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  70% { box-shadow: 0 0 0 8px rgba(16,185,129,0); }
  100% { box-shadow: 0 0 0 0 rgba(16,185,129,0); }
}
.pill-link {
  background: var(--ki-grad);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 600;
}
@keyframes pillIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }

.display {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: clamp(46px, 7.5vw, 96px);
  line-height: 1.0;
  letter-spacing: -0.04em;
  margin-bottom: 28px;
  color: var(--navy-800);
  animation: heroIn 0.8s 0.1s both;
}
.display .grad {
  display: block;
  background: linear-gradient(135deg, #2b4677 0%, #4a6798 25%, #8b5cf6 60%, #ec4899 100%);
  background-size: 200% 100%;
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradShift 8s ease-in-out infinite;
}
@keyframes gradShift { 0%,100% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } }
@keyframes heroIn { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: none; } }

.lede {
  font-size: clamp(17px, 1.6vw, 21px);
  color: var(--ink-2);
  max-width: 660px;
  margin: 0 auto 36px;
  animation: heroIn 0.8s 0.25s both;
}
.lede strong { color: var(--navy-800); font-weight: 700; }
.lede em { color: var(--navy-800); font-weight: 600; }

.hero-cta {
  display: flex; gap: 12px; justify-content: center; flex-wrap: wrap;
  margin-bottom: 28px;
  animation: heroIn 0.8s 0.4s both;
}

.trust-row {
  display: flex; gap: 24px; justify-content: center; flex-wrap: wrap;
  font-size: 13px; color: var(--ink-3); font-weight: 500;
  margin-bottom: 70px;
  animation: heroIn 0.8s 0.55s both;
}
.trust-row li { display: inline-flex; align-items: center; gap: 6px; }
.trust-row svg { color: var(--emerald); }

/* ============================================================
   HERO VISUAL — Desktop-Browser + iPhone (echte Screenshots)
   ============================================================ */
.hero-visual {
  position: relative;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 12px 100px;
  opacity: 0;
  transform: translateY(60px);
  transition: opacity 1s ease, transform 1s ease;
}
.hero-visual.in { opacity: 1; transform: translateY(0); }

/* ───── Desktop Browser Mockup ───── */
.hv-desktop {
  background: #ffffff;
  border-radius: 16px;
  box-shadow:
    0 1px 0 rgba(255,255,255,1) inset,
    0 30px 80px rgba(12,25,41,0.18),
    0 90px 180px rgba(12,25,41,0.1);
  overflow: hidden;
  border: 1px solid var(--line);
  position: relative;
  z-index: 1;
}
.hv-chrome {
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 16px;
  background: #fafafb;
  border-bottom: 1px solid var(--line);
}
.dots { display: flex; gap: 6px; }
.dots span { width: 11px; height: 11px; border-radius: 50%; background: #e5e5e9; }
.dots span:nth-child(1) { background: #ff5f57; }
.dots span:nth-child(2) { background: #febc2e; }
.dots span:nth-child(3) { background: #28c840; }
.address {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 4px 12px; border-radius: 999px;
  background: #fff; border: 1px solid var(--line);
  font-size: 12px; color: var(--ink-2); font-weight: 500;
  min-width: 280px; justify-content: center;
}
.address svg { color: var(--emerald); }
.chrome-actions .kbd {
  padding: 2px 8px; border-radius: 6px;
  background: #fff; border: 1px solid var(--line);
  font-family: 'JetBrains Mono', monospace; font-size: 11px;
  color: var(--ink-2);
}

.hv-body {
  display: grid;
  grid-template-columns: 220px 1fr;
  min-height: 600px;
}

/* ───── Sidebar (echte UI) ───── */
.hv-side {
  background: linear-gradient(180deg, #fafafb 0%, #f4f5f9 100%);
  border-right: 1px solid var(--line);
  padding: 16px 12px;
  display: flex; flex-direction: column;
}
.side-brand {
  display: flex; align-items: center; gap: 10px;
  padding: 6px 8px 16px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 10px;
}
.side-brand img {
  width: 28px; height: 28px; border-radius: 6px;
  box-shadow: 0 2px 6px rgba(12,25,41,0.2);
}
.side-brand b {
  display: block;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 14px; font-weight: 700;
  letter-spacing: -0.01em; color: var(--navy-800);
}
.side-brand em {
  display: block;
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px; font-weight: 500;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--ink-3);
  margin-top: -1px;
}
.side-link {
  display: flex; align-items: center; gap: 10px;
  padding: 7px 10px;
  border-radius: 8px;
  font-size: 13px; color: var(--ink-2); font-weight: 500;
  margin-bottom: 2px;
}
.side-link > span:first-child { font-size: 14px; width: 18px; text-align: center; }
.side-link small {
  margin-left: auto;
  background: rgba(12,25,41,0.06);
  padding: 1px 7px; border-radius: 8px;
  font-size: 11px; font-weight: 600;
  color: var(--ink-2);
}
.side-link em {
  margin-left: auto;
  background: rgba(43,70,119,0.1); color: var(--navy-600);
  padding: 1px 7px; border-radius: 8px;
  font-size: 11px; font-weight: 600;
}
.side-link em.warn { background: #fef3c7; color: #b45309; }
.side-link.active {
  background: #fff;
  color: var(--navy-800);
  box-shadow: 0 1px 2px rgba(12,25,41,0.06);
  font-weight: 600;
}
.side-link.ai > span:first-child {
  background: var(--ki-grad);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.side-link.finance > span:first-child { color: var(--emerald); }
.side-foot {
  margin-top: auto;
  display: flex; align-items: center; gap: 10px;
  padding: 10px;
  border-top: 1px solid var(--line);
}
.avatar {
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--navy-grad);
  color: #fff; display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 700;
  border: 2px solid var(--emerald);
}
.side-foot .meta b { display: block; font-size: 12px; font-weight: 600; color: var(--navy-800); }
.side-foot .meta em { display: block; font-size: 10px; color: var(--ink-3); }

/* ───── Main (Greet Card + Quick + Rubrik + Cases) ───── */
.hv-main {
  padding: 20px;
  display: flex; flex-direction: column; gap: 14px;
  min-width: 0;
}

.greet-card {
  background: var(--navy-grad);
  color: #fff;
  border-radius: 14px;
  padding: 22px 24px;
  position: relative;
  overflow: hidden;
}
.greet-card::after {
  content: '';
  position: absolute;
  top: -40%; right: -10%;
  width: 320px; height: 320px;
  background: radial-gradient(circle, rgba(255,255,255,0.08), transparent 60%);
  pointer-events: none;
}
.greet-tag {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px; text-transform: uppercase; letter-spacing: 0.12em;
  color: rgba(255,255,255,0.7); font-weight: 600;
  padding: 4px 10px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 6px;
  background: rgba(255,255,255,0.04);
}
.greet-h {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 28px; font-weight: 600;
  letter-spacing: -0.02em;
  margin: 12px 0 4px;
}
.greet-meta {
  font-size: 13px;
  color: rgba(255,255,255,0.7);
  margin-bottom: 18px;
}
.greet-stats {
  display: flex; gap: 24px; align-items: center;
}
.greet-stats > div { display: flex; flex-direction: column; gap: 4px; }
.greet-stats span {
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px; text-transform: uppercase; letter-spacing: 0.12em;
  color: rgba(255,255,255,0.55); font-weight: 600;
}
.greet-stats b {
  font-family: 'Space Grotesk';
  font-size: 32px; font-weight: 600;
  letter-spacing: -0.02em;
}
.greet-stats .sep {
  width: 1px; height: 32px;
  background: rgba(255,255,255,0.15);
}

.quick-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px;
}
.quick {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 14px;
  display: flex; flex-direction: column; gap: 4px;
  position: relative;
}
.q-ico {
  width: 32px; height: 32px;
  background: rgba(43,70,119,0.08);
  color: var(--navy-700);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 600;
  position: relative;
  margin-bottom: 6px;
}
.q-ico.tasks { background: rgba(99,102,241,0.1); color: #4f46e5; }
.q-ico.msg { background: rgba(139,92,246,0.1); color: #6d28d9; }
.q-badge {
  position: absolute; top: -6px; right: -6px;
  background: var(--navy-700); color: #fff;
  font-size: 9px; font-weight: 700;
  padding: 2px 5px; border-radius: 8px;
  border: 2px solid #fff;
  min-width: 18px; text-align: center;
}
.q-badge.violet { background: var(--violet); }
.q-tag {
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px; text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--ink-3); font-weight: 600;
}
.quick b { font-size: 14px; font-weight: 600; color: var(--navy-800); }
.quick em { font-size: 11px; color: var(--ink-3); }

.rubrik-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 10px;
}
.rubrik {
  padding: 16px 18px;
  border-radius: 12px;
  display: flex; flex-direction: column; gap: 4px;
  color: #fff;
  position: relative; overflow: hidden;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
}
.rubrik:hover { transform: translateY(-1px); box-shadow: var(--shadow-2); }
.rubrik.blue { background: linear-gradient(135deg, #1e3a5f, #2b4677); }
.rubrik.green { background: linear-gradient(135deg, #047857, #10b981); }
.r-ico {
  font-size: 18px;
  width: 32px; height: 32px;
  background: rgba(255,255,255,0.15);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 4px;
}
.rubrik b { font-family: 'Space Grotesk'; font-size: 15px; font-weight: 600; }
.rubrik em { font-size: 11px; color: rgba(255,255,255,0.8); }

.case-bar {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 12px 14px;
}
.cb-tag {
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px; text-transform: uppercase; letter-spacing: 0.12em;
  color: var(--ink-3); font-weight: 600;
  margin-bottom: 8px;
}
.case-tabs { display: flex; gap: 6px; flex-wrap: wrap; }
.ctab {
  padding: 6px 12px;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 12px; font-weight: 500;
  color: var(--ink-2);
}
.ctab.active {
  background: var(--navy-800); color: #fff;
  border-color: var(--navy-800);
  font-weight: 600;
}
.ctab.muted { color: var(--ink-3); background: transparent; border-style: dashed; }

/* ───── iPhone Mockup (rechts überlappend) ───── */
.hv-phone {
  position: absolute;
  right: -8px; top: 100px;
  z-index: 2;
  animation: phoneIn 1s 0.8s both;
}
@keyframes phoneIn {
  from { opacity: 0; transform: translateY(40px) rotate(8deg); }
  to { opacity: 1; transform: translateY(0) rotate(4deg); }
}
.phone-frame {
  position: relative;
  width: 280px;
  background: #0c1929;
  border-radius: 36px;
  padding: 8px;
  box-shadow:
    0 1px 0 rgba(255,255,255,0.12) inset,
    0 30px 60px rgba(12,25,41,0.4),
    0 80px 120px rgba(12,25,41,0.2);
}
.phone-notch {
  position: absolute; top: 10px; left: 50%;
  transform: translateX(-50%);
  width: 90px; height: 24px;
  background: #050b16; border-radius: 14px;
  z-index: 2;
}
.phone-frame img {
  width: 100%;
  border-radius: 28px;
  display: block;
}

/* Floating Toasts */
.float-toast {
  position: absolute;
  display: flex; align-items: center; gap: 10px;
  padding: 12px 16px 12px 12px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: var(--shadow-2);
  font-size: 13px;
  z-index: 3;
  animation: floatIn 1s both, floatY 5s ease-in-out infinite alternate;
}
.float-toast b { display: block; font-weight: 600; color: var(--navy-800); }
.float-toast em { display: block; font-size: 11px; color: var(--ink-3); margin-top: 2px; }
.t-ico {
  width: 30px; height: 30px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 700; color: #fff;
  background: var(--emerald); flex-shrink: 0;
}
.t-ico.ki { background: var(--ki-grad); }
.toast-1 { left: -20px; bottom: 140px; animation-delay: 1.2s; }
.toast-2 { right: -20px; top: 50px; animation-delay: 1.6s; }
@keyframes floatIn { from { opacity: 0; transform: translateY(20px) scale(0.95); } to { opacity: 1; transform: none; } }
@keyframes floatY { from { transform: translateY(0); } to { transform: translateY(-8px); } }

.hero-fade {
  position: absolute; bottom: 0; left: 0; right: 0; height: 100px;
  background: linear-gradient(180deg, transparent, var(--bg));
  pointer-events: none; z-index: 2;
}

/* ============================================================
   LOGOS / TRUST BAR
   ============================================================ */
.logos {
  padding: 60px 0;
  background: var(--bg);
  border-bottom: 1px solid var(--line);
}
.logos-label {
  text-align: center;
  font-size: 14px; color: var(--ink-3);
  margin-bottom: 28px;
}
.logos-label strong { color: var(--navy-800); font-weight: 700; }
.logos-row {
  display: flex; flex-wrap: wrap;
  justify-content: center; align-items: center;
  gap: 12px 32px;
}
.logo-cell {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 16px; font-weight: 600; letter-spacing: -0.01em;
  color: var(--ink-3);
  padding: 8px 12px;
  transition: color 0.2s;
}
.logo-cell:hover { color: var(--navy-800); }

/* ============================================================
   ANONYME THOMAS-PERSONA
   ============================================================ */
.thomas-story {
  padding: 112px 0;
  background:
    radial-gradient(ellipse 45% 55% at 4% 15%, rgba(43,70,119,0.08), transparent 65%),
    #fff;
}
.thomas-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.75fr);
  gap: 56px;
  align-items: end;
  margin-bottom: 44px;
}
.thomas-intro .eyebrow { margin-bottom: 18px; }
.thomas-intro p {
  color: var(--ink-2);
  font-size: 16px;
  line-height: 1.7;
  padding: 0 0 8px 24px;
  border-left: 2px solid var(--navy-100);
}
.thomas-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(300px, 0.75fr);
  gap: 18px;
}
.thomas-main,
.thomas-card {
  position: relative;
  min-width: 0;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(12,25,41,0.12);
  background: var(--navy-800);
  box-shadow: 0 24px 70px rgba(12,25,41,0.14);
}
.thomas-main { min-height: 626px; border-radius: 28px; }
.thomas-card { min-height: 304px; border-radius: 22px; }
.thomas-main img,
.thomas-card img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.8s ease;
}
.thomas-main:hover img,
.thomas-card:hover img { transform: scale(1.025); }
.thomas-main::after,
.thomas-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(5,15,28,0.86) 100%);
  pointer-events: none;
}
.thomas-main figcaption,
.thomas-card figcaption {
  position: absolute;
  z-index: 1;
  left: 26px;
  right: 26px;
  bottom: 24px;
  color: #fff;
}
.thomas-main figcaption span,
.thomas-card figcaption span {
  display: block;
  margin-bottom: 8px;
  color: rgba(255,255,255,0.7);
  font: 600 11px/1 'JetBrains Mono', monospace;
  letter-spacing: 0.12em;
}
.thomas-main figcaption strong,
.thomas-card figcaption strong {
  display: block;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 24px;
  line-height: 1.15;
}
.thomas-main figcaption em {
  display: block;
  margin-top: 9px;
  max-width: 620px;
  color: rgba(255,255,255,0.76);
  font-size: 14px;
  font-style: normal;
  line-height: 1.5;
}
.thomas-side { display: grid; gap: 18px; }
.thomas-card figcaption strong { font-size: 18px; }
.thomas-note {
  display: flex;
  gap: 8px;
  align-items: baseline;
  margin-top: 18px;
  padding: 15px 18px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--bg-soft);
  color: var(--ink-2);
  font-size: 13px;
  line-height: 1.5;
}
.thomas-note strong { color: var(--navy-800); }

/* ============================================================
   SECTIONS — general
   ============================================================ */
.section { padding: 120px 0; }
.sec-head {
  max-width: 820px; margin: 0 auto 60px;
  text-align: center;
}
.eyebrow {
  display: inline-block;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.14em;
  color: var(--navy-600);
  padding: 6px 14px; border-radius: 999px;
  background: var(--navy-50); border: 1px solid var(--navy-100);
  margin-bottom: 20px;
}
.eyebrow-dark {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.7);
}
.h-display {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(34px, 4.6vw, 60px);
  font-weight: 600;
  line-height: 1.04;
  letter-spacing: -0.03em;
  color: var(--navy-800);
}
.h-display.white { color: #fff; }
.h-display .muted { color: var(--ink-3); font-weight: 500; }
.h-display .grad {
  background: linear-gradient(135deg, #ec4899 0%, #8b5cf6 60%, #38bdf8 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.h-display .grad-violet {
  background: linear-gradient(135deg, #a78bfa, #818cf8, #38bdf8);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.h-display .grad-emerald {
  background: linear-gradient(135deg, #6ee7b7, #34d399, #14b8a6);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.sec-sub {
  margin-top: 18px;
  font-size: 16px; color: var(--ink-2);
  max-width: 640px; margin-left: auto; margin-right: auto;
}

/* ============================================================
   SHOWCASE — Echte Software-Screens
   ============================================================ */
.showcase {
  padding: 100px 0 80px;
  background: linear-gradient(180deg, #fafbfd 0%, #f3f5f9 100%);
  position: relative;
  overflow: hidden;
}
.showcase::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 40% 35% at 15% 30%, rgba(43,70,119,0.12), transparent 60%),
    radial-gradient(ellipse 35% 30% at 85% 70%, rgba(139,92,246,0.1), transparent 60%);
  pointer-events: none;
}
.showcase .container { position: relative; z-index: 1; }
.showcase .sec-head { margin-bottom: 56px; }

.show-desktop {
  max-width: 1180px;
  margin: 0 auto 64px;
}
.browser-frame {
  background: #fff;
  border-radius: 16px;
  box-shadow:
    0 1px 0 rgba(255,255,255,1) inset,
    0 30px 80px rgba(12,25,41,0.18),
    0 80px 160px rgba(12,25,41,0.08);
  overflow: hidden;
  border: 1px solid var(--line);
}
.bf-chrome {
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 16px;
  background: #fafafb;
  border-bottom: 1px solid var(--line);
}
.browser-frame img {
  width: 100%;
  height: auto;
  display: block;
}
.show-desktop figcaption {
  margin-top: 20px;
  text-align: center;
  font-size: 14px;
  color: var(--ink-3);
}
.show-desktop figcaption strong { color: var(--navy-800); font-weight: 600; }

.show-mobiles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 1080px;
  margin: 0 auto 56px;
}
.show-mobiles.five {
  grid-template-columns: repeat(5, 1fr);
  max-width: 1280px;
  gap: 18px;
}
.show-mobiles.five .phone-frame-show { width: 200px; }
.show-mobiles.five .show-phone figcaption { max-width: 200px; }
.show-mobiles.five .show-phone figcaption strong { font-size: 15px; }
.show-mobiles.five .show-phone figcaption span { font-size: 12px; }
.show-phone {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
}
.phone-frame-show {
  position: relative;
  width: 240px;
  background: linear-gradient(135deg, #0c1929 0%, #1e3a5f 100%);
  border-radius: 32px;
  padding: 8px;
  box-shadow:
    0 1px 0 rgba(255,255,255,0.12) inset,
    0 20px 50px rgba(12,25,41,0.4),
    0 50px 100px rgba(12,25,41,0.18);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.phone-frame-show:hover {
  transform: translateY(-6px);
  box-shadow:
    0 1px 0 rgba(255,255,255,0.12) inset,
    0 30px 70px rgba(12,25,41,0.5),
    0 60px 120px rgba(12,25,41,0.22);
}
.phone-frame-show.ki {
  background: linear-gradient(135deg, #6d28d9 0%, #ec4899 100%);
  box-shadow:
    0 1px 0 rgba(255,255,255,0.18) inset,
    0 20px 50px rgba(139,92,246,0.35),
    0 50px 100px rgba(236,72,153,0.18);
}
.phone-notch-show {
  position: absolute; top: 10px; left: 50%;
  transform: translateX(-50%);
  width: 80px; height: 22px;
  background: #050b16; border-radius: 14px;
  z-index: 2;
}
.phone-frame-show img {
  width: 100%;
  border-radius: 26px;
  display: block;
  background: #fff;
}
.show-phone figcaption {
  text-align: center;
  max-width: 260px;
}
.show-phone figcaption strong {
  display: block;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 17px; font-weight: 600;
  color: var(--navy-800);
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}
.show-phone figcaption span {
  display: block;
  font-size: 13px;
  color: var(--ink-2);
  line-height: 1.55;
}

.current-product-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  max-width: 1240px;
  margin: 0 auto 56px;
}
.product-capture,
.product-mobile-capture {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255,255,255,.86);
  box-shadow: 0 24px 65px rgba(12,25,41,.12);
}
.product-capture img {
  display: block;
  width: 100%;
  aspect-ratio: 940 / 620;
  object-fit: cover;
  object-position: top left;
  background: #eaf0f4;
}
.product-capture figcaption,
.product-mobile-capture figcaption {
  display: grid;
  gap: 5px;
  padding: 18px 20px 21px;
}
.product-capture figcaption strong,
.product-mobile-capture figcaption strong {
  font-family: 'Space Grotesk', sans-serif;
  color: var(--navy-800);
  font-size: 17px;
}
.product-capture figcaption span,
.product-mobile-capture figcaption span {
  color: var(--ink-2);
  font-size: 13px;
  line-height: 1.5;
}
.product-capture-wide { grid-column: span 1; }
.product-mobile-capture {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding-top: 20px;
}
.product-mobile-capture figcaption { width: 100%; }
.current-mobile-pair {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 18px;
  width: 100%;
  padding: 0 18px;
}
.current-mobile-pair .phone-frame-show { width: min(42%, 190px); }

.show-foot {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 13px;
  color: var(--ink-2);
}
.show-foot span {
  padding: 8px 16px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-weight: 500;
}

@media (max-width: 900px) {
  .show-mobiles { grid-template-columns: 1fr; gap: 40px; }
  .show-phone { max-width: 280px; margin: 0 auto; }
  .showcase { padding: 60px 0; }
  .show-desktop { margin-bottom: 48px; }
}

/* ============================================================
   BENTO
   ============================================================ */
.bento-section { background: var(--bg); }
.bento {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: minmax(220px, auto);
  gap: 14px;
}
.b-card {
  position: relative;
  background: var(--bg-soft);
  border-radius: var(--r-lg);
  padding: 28px;
  overflow: hidden;
  border: 1px solid var(--line);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  display: flex; flex-direction: column; gap: 12px;
  color: var(--navy-800);
}
.b-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-2);
  border-color: rgba(12,25,41,0.16);
}
.b-tag {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 600; color: var(--ink-2);
}
.b-ico {
  width: 22px; height: 22px; border-radius: 6px;
  display: inline-flex; align-items: center; justify-content: center;
  color: #fff; font-size: 11px; font-weight: 700;
}
.b-card h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 26px; font-weight: 600;
  line-height: 1.12; letter-spacing: -0.02em;
}
.b-card p {
  font-size: 14px; color: var(--ink-2); line-height: 1.55;
}

/* Hero card */
.b-hero {
  grid-column: span 4; grid-row: span 2;
  background: var(--navy-grad);
  color: #fff;
  border-color: transparent;
}
.b-hero .b-tag { color: rgba(255,255,255,0.75); }
.b-hero h3 { font-size: 40px; color: #fff; }
.b-hero p { color: rgba(255,255,255,0.75); font-size: 15px; max-width: 520px; }
.b-features {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin-top: 4px;
}
.b-features span {
  font-size: 12px;
  padding: 4px 10px; border-radius: 999px;
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.92);
  border: 1px solid rgba(255,255,255,0.1);
}
.b-mock {
  margin-top: auto;
  padding: 14px;
  background: rgba(255,255,255,0.04);
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.08);
  font-family: 'JetBrains Mono', monospace; font-size: 12px;
  display: flex; flex-direction: column; gap: 6px;
}
.b-mock-row { color: rgba(255,255,255,0.7); display: flex; gap: 10px; align-items: center; }
.b-mock-row .mono { color: #a78bfa; font-weight: 600; }
.b-mock-row.done { color: #6ee7b7; }
.b-mock-row.done .mono { color: #34d399; }

/* KI */
.b-ki {
  grid-column: span 2; grid-row: span 2;
  background: linear-gradient(135deg, #6d28d9 0%, #8b5cf6 50%, #ec4899 100%);
  color: #fff;
  border-color: transparent;
}
.b-ki .b-tag { color: rgba(255,255,255,0.85); }
.b-ki h3 { color: #fff; font-size: 28px; }
.b-ki p { color: rgba(255,255,255,0.85); }
.ki-stream {
  margin-top: auto;
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  background: rgba(0,0,0,0.25);
  border-radius: 12px; padding: 14px;
  display: flex; flex-direction: column; gap: 6px;
}
.ki-line { color: rgba(255,255,255,0.75); }
.ki-line.ok { color: #6ee7b7; }

/* Finance */
.b-finance {
  grid-column: span 4;
  background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 50%, #a7f3d0 100%);
}
.finance-grid {
  margin-top: auto;
  display: flex; flex-wrap: wrap; gap: 6px;
}
.finance-grid span {
  font-size: 12px; font-weight: 600;
  padding: 4px 10px; border-radius: 999px;
  background: rgba(16,185,129,0.15);
  color: #047857;
  border: 1px solid rgba(16,185,129,0.25);
}

/* Post */
.b-post {
  grid-column: span 2;
  background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
}

/* Tasks */
.b-tasks {
  grid-column: span 3;
  background: linear-gradient(135deg, #eef2ff 0%, #e0e7ff 100%);
}

/* Mobile */
.b-mobile {
  grid-column: span 3;
  background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
  position: relative; overflow: hidden;
}
.b-mobile h3 { max-width: 60%; }
.b-mobile p { max-width: 60%; }
.mobile-shot {
  position: absolute;
  right: 24px; top: 24px;
  width: 130px; height: auto;
  border-radius: 14px;
  box-shadow: 0 16px 32px rgba(12,25,41,0.2);
  border: 4px solid #fff;
  transform: rotate(4deg);
}

/* Office */
.b-office {
  grid-column: span 3;
  background: linear-gradient(135deg, #f0f9ff 0%, #bae6fd 100%);
}

/* Connect */
.b-connect {
  grid-column: span 3;
  background: linear-gradient(135deg, #fff7ed 0%, #fed7aa 100%);
}

/* ============================================================
   TESTI-NOTE
   ============================================================ */
.testi-note {
  text-align: center;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px; text-transform: uppercase; letter-spacing: 0.14em;
  color: var(--ink-3);
  margin-bottom: 24px;
  font-weight: 600;
}

/* ============================================================
   WATCHDOG SECTION
   ============================================================ */
.watchdog {
  position: relative;
  padding: 120px 0;
  background: linear-gradient(180deg, #050507 0%, #0c1929 100%);
  color: #fff;
  overflow: hidden;
}
.mesh-amber {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 40% 30% at 18% 25%, rgba(251,146,60,0.22), transparent 60%),
    radial-gradient(ellipse 40% 30% at 80% 70%, rgba(239,68,68,0.18), transparent 60%),
    radial-gradient(ellipse 30% 25% at 50% 100%, rgba(139,92,246,0.16), transparent 60%);
  filter: blur(20px);
}
.watchdog .sec-head { position: relative; z-index: 2; }
.wd-demo-note {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: -24px auto 28px;
  color: rgba(255,255,255,0.58);
  font-size: 12px;
  line-height: 1.55;
  text-align: center;
}
.h-display .grad-amber {
  background: linear-gradient(135deg, #fb923c 0%, #f59e0b 60%, #ef4444 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}

.wd-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px;
  position: relative; z-index: 2;
}
.wd-card {
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--r-lg);
  padding: 26px;
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
  display: flex; flex-direction: column; gap: 14px;
}
.wd-card:hover {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.16);
  transform: translateY(-2px);
}
.wd-tag {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.14em;
  display: inline-flex; align-items: center; gap: 8px;
  color: rgba(255,255,255,0.55);
}
.wd-ico {
  width: 24px; height: 24px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 6px;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 13px;
}
.wd-card h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 22px; font-weight: 600;
  letter-spacing: -0.02em;
  color: #fff;
  line-height: 1.2;
}
.wd-card p { font-size: 13px; color: rgba(255,255,255,0.7); line-height: 1.55; }

/* Frist-Popup-Mockup */
.popup-mock {
  margin-top: auto;
  background: #fff;
  color: var(--navy-800);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0,0,0,0.5), 0 0 0 1px rgba(251,146,60,0.4);
}
.popup-head {
  background: linear-gradient(135deg, #fb923c, #f59e0b);
  color: #fff;
  padding: 12px 16px;
  display: flex; align-items: center; gap: 10px;
  font-size: 14px;
}
.popup-head b { font-weight: 700; flex: 1; }
.popup-x { font-size: 16px; opacity: 0.7; }
.pulse-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 0 0 rgba(255,255,255,0.7);
  animation: pulseDot 1.6s infinite;
}
@keyframes pulseDot {
  70% { box-shadow: 0 0 0 10px rgba(255,255,255,0); }
  100% { box-shadow: 0 0 0 0 rgba(255,255,255,0); }
}
.popup-body { padding: 14px 16px; display: flex; flex-direction: column; gap: 8px; }
.popup-row { display: flex; justify-content: space-between; gap: 10px; font-size: 12px; }
.popup-row em { color: var(--ink-3); font-weight: 500; }
.popup-row b { color: var(--navy-800); font-weight: 600; text-align: right; }
.popup-row b.mono { font-family: 'JetBrains Mono', monospace; }
.popup-row b.urgent { color: #b45309; }
.popup-actions { display: flex; gap: 6px; padding: 0 16px 14px; }
.pb-primary {
  flex: 1;
  background: var(--navy-800); color: #fff;
  font-size: 12px; font-weight: 600;
  padding: 8px; border-radius: 8px;
}
.pb-ghost {
  background: #f0f1f5; color: var(--ink-2);
  font-size: 12px; font-weight: 500;
  padding: 8px 12px; border-radius: 8px;
}

/* Bestätigungs-Workflow */
.confirm-mock {
  margin-top: auto;
  background: #fff;
  color: var(--navy-800);
  border-radius: 14px;
  padding: 14px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.5), 0 0 0 1px rgba(139,92,246,0.3);
}
.cm-msg {
  display: flex; align-items: center; gap: 10px;
  padding: 8px 0 10px;
  border-bottom: 1px solid var(--line);
  position: relative;
}
.cm-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--violet); flex-shrink: 0;
}
.cm-body { flex: 1; }
.cm-body b { display: block; font-size: 13px; font-weight: 600; }
.cm-body em { display: block; font-size: 11px; color: var(--ink-3); margin-top: 1px; }
.cm-time { font-size: 11px; color: var(--ink-3); }
.cm-row { display: flex; gap: 6px; padding: 10px 0; }
.cm-btn {
  font-size: 11px; font-weight: 600;
  padding: 7px 12px; border-radius: 6px;
  background: #f0f1f5; color: var(--ink-2);
}
.cm-btn.primary { background: var(--navy-800); color: #fff; }
.cm-escalation { padding-top: 8px; border-top: 1px solid var(--line); display: flex; flex-direction: column; gap: 6px; }
.esc-step {
  display: flex; align-items: center; gap: 8px;
  font-size: 11px; color: var(--ink-3);
}
.esc-step span {
  width: 18px; height: 18px; border-radius: 50%;
  background: #f0f1f5; color: var(--ink-3);
  display: flex; align-items: center; justify-content: center;
  font-size: 10px; font-weight: 700;
}
.esc-step em { font-style: normal; margin-left: auto; }
.esc-step.done { color: var(--ink-2); }
.esc-step.done span { background: var(--emerald); color: #fff; }
.esc-step.done em { color: var(--emerald); font-weight: 600; }
.esc-step.current { color: var(--navy-800); }
.esc-step.current span { background: var(--amber); color: #fff; }
.esc-step.current em { color: var(--amber); font-weight: 600; }

/* Push */
.push-mock { margin-top: auto; display: flex; flex-direction: column; gap: 8px; }
.push-item {
  background: rgba(255,255,255,0.95);
  color: var(--navy-800);
  border-radius: 14px;
  padding: 12px 14px;
  display: flex; gap: 12px;
  backdrop-filter: blur(20px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}
.push-ico {
  width: 36px; height: 36px;
  background: var(--navy-800);
  color: #fff;
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}
.push-ico.bea { background: linear-gradient(135deg, #1e3a5f, #2b4677); }
.push-ico.ki { background: var(--ki-grad); }
.push-body { flex: 1; min-width: 0; }
.push-head { display: flex; justify-content: space-between; align-items: baseline; }
.push-head b { font-size: 12px; font-weight: 700; }
.push-head span { font-size: 10px; color: var(--ink-3); }
.push-body em { display: block; font-size: 12px; color: var(--ink-2); margin-top: 2px; line-height: 1.4; }

/* Stale-Akten */
.stale-mock { margin-top: auto; display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.stale-stat {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 12px;
  display: flex; flex-direction: column; gap: 4px;
}
.stale-stat b {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 28px; font-weight: 600;
  color: #fff; letter-spacing: -0.02em; line-height: 1;
}
.stale-stat em { font-size: 11px; color: rgba(255,255,255,0.6); line-height: 1.3; }
.stale-stat.warn { background: rgba(251,146,60,0.15); border-color: rgba(251,146,60,0.3); }
.stale-stat.warn b { color: #fb923c; }

/* Probe */
.probe-mock {
  margin-top: auto;
  background: rgba(0,0,0,0.4);
  border-radius: 12px;
  padding: 12px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  display: flex; flex-direction: column; gap: 5px;
}
.probe-row { display: flex; align-items: center; gap: 8px; color: rgba(255,255,255,0.7); }
.probe-row.ok { color: rgba(110,231,183,0.85); }
.probe-row em { margin-left: auto; color: rgba(255,255,255,0.45); font-style: normal; }
.p-ico {
  width: 14px; height: 14px;
  background: var(--emerald);
  color: #fff;
  border-radius: 4px;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 9px; font-weight: 700;
  flex-shrink: 0;
}

/* Doc-Wächter */
.doc-mock { margin-top: auto; display: flex; flex-direction: column; gap: 6px; }
.doc-line {
  font-size: 12px;
  color: rgba(255,255,255,0.75);
  padding: 10px 12px;
  background: rgba(0,0,0,0.3);
  border-radius: 10px;
  display: flex; align-items: center; gap: 8px;
}
.d-tag {
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px; font-weight: 700;
  letter-spacing: 0.1em;
  background: rgba(110,231,183,0.15);
  color: #6ee7b7;
  padding: 2px 7px; border-radius: 5px;
}
.d-time {
  margin-left: auto;
  font-size: 10px;
  color: rgba(255,255,255,0.45);
}

@media (max-width: 1100px) {
  .wd-grid { grid-template-columns: repeat(2, 1fr); }
  .show-mobiles.five { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 760px) {
  .current-product-grid { grid-template-columns: 1fr; gap: 18px; }
  .product-capture-wide { grid-column: auto; }
  .current-mobile-pair .phone-frame-show { width: min(44%, 180px); }
  .wd-grid { grid-template-columns: 1fr; }
  .watchdog { padding: 70px 0; }
}

/* ============================================================
   KI SECTION (Dark)
   ============================================================ */
.ki-section {
  position: relative;
  padding: 120px 0;
  background: linear-gradient(180deg, var(--navy-900) 0%, var(--navy-800) 100%);
  color: #fff;
  overflow: hidden;
}
.mesh-violet {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 45% 35% at 15% 30%, rgba(139,92,246,0.35), transparent 60%),
    radial-gradient(ellipse 40% 30% at 85% 70%, rgba(236,72,153,0.22), transparent 60%),
    radial-gradient(ellipse 30% 25% at 50% 100%, rgba(56,189,248,0.18), transparent 60%);
}
.ki-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px;
  align-items: center;
  position: relative; z-index: 2;
}
.ki-eyebrow {
  background: rgba(139,92,246,0.14);
  border-color: rgba(139,92,246,0.25);
  color: #c4b5fd;
}
.ki-section h2 { color: #fff; margin-bottom: 24px; }
.ki-lede {
  font-size: 17px;
  color: rgba(255,255,255,0.75);
  margin-bottom: 28px;
  max-width: 480px;
}
.ki-feats {
  margin-bottom: 36px; display: flex; flex-direction: column; gap: 10px;
}
.ki-feats li {
  font-size: 15px; color: rgba(255,255,255,0.8);
  padding-left: 24px; position: relative;
}
.ki-feats li::before { content: '✦'; position: absolute; left: 0; top: 0; color: #a78bfa; }
.ki-feats b { color: #fff; font-weight: 600; }

.ki-demo { position: relative; }
.chat {
  background: rgba(20,22,29,0.85);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,0.5), 0 0 0 1px rgba(139,92,246,0.1);
}
.chat-head {
  display: flex; align-items: center; gap: 12px;
  padding: 16px 20px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  background: rgba(255,255,255,0.02);
}
.chat-ai {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--ki-grad);
  color: #fff; display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 16px;
}
.chat-head b { display: block; font-size: 14px; color: #fff; }
.chat-head em { display: block; font-size: 12px; color: rgba(255,255,255,0.6); }
.chat-head .live { margin-left: auto; }
.live { font-size: 10px; color: var(--emerald); font-weight: 600; }
.live::before { content:'●'; margin-right: 4px; }
.live-violet { color: #c4b5fd; }
.live-violet::before { color: #a78bfa; }

.chat-msgs { padding: 20px; display: flex; flex-direction: column; gap: 14px; font-size: 14px; }
.msg { padding: 12px 16px; border-radius: 16px; max-width: 90%; line-height: 1.55; }
.msg.me {
  background: rgba(255,255,255,0.06); color: #fff;
  align-self: flex-end; border-bottom-right-radius: 4px;
}
.msg.ai {
  background: linear-gradient(135deg, rgba(139,92,246,0.2), rgba(236,72,153,0.15));
  border: 1px solid rgba(139,92,246,0.2);
  color: #fff;
  border-bottom-left-radius: 4px;
}
.msg.ai b { color: #fff; font-weight: 600; }
.msg.ai ol { padding-left: 18px; margin-top: 8px; list-style: decimal; color: rgba(255,255,255,0.78); }
.msg.ai ol li { margin: 4px 0; }
.msg.ai.typing {
  padding: 16px 20px;
  display: inline-flex; gap: 4px; align-self: flex-start;
  max-width: 60px;
}
.msg.typing span {
  width: 6px; height: 6px; border-radius: 50%;
  background: #a78bfa;
  animation: typing 1.4s ease-in-out infinite;
}
.msg.typing span:nth-child(2) { animation-delay: 0.2s; }
.msg.typing span:nth-child(3) { animation-delay: 0.4s; }
@keyframes typing { 0%,60%,100% { opacity: 0.3; transform: translateY(0); } 30% { opacity: 1; transform: translateY(-3px); } }
.msg-actions { display: flex; gap: 8px; margin-top: 12px; }
.msg-actions button {
  padding: 6px 12px; border-radius: 999px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.1);
  color: #fff;
  font-size: 12px; font-weight: 500;
  transition: background 0.15s;
}
.msg-actions button:hover { background: rgba(255,255,255,0.14); }

/* ============================================================
   WORKFLOW
   ============================================================ */
.workflow { padding: 120px 0; background: var(--bg); }
.steps {
  display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 20px;
  position: relative;
}
.steps::before {
  content: ''; position: absolute;
  top: 30px; left: 12%; right: 12%; height: 1px;
  background: repeating-linear-gradient(90deg, var(--line) 0 8px, transparent 8px 16px);
  z-index: 0;
}
.step {
  background: var(--bg-soft);
  border-radius: var(--r-lg);
  padding: 32px;
  border: 1px solid var(--line);
  display: flex; flex-direction: column; gap: 18px;
  position: relative; z-index: 1;
}
.step-num {
  width: 44px; height: 44px;
  background: var(--navy-800); color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 14px; font-weight: 600;
}
.step-body h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 22px; font-weight: 600;
  letter-spacing: -0.02em; color: var(--navy-800);
  margin-bottom: 8px;
}
.step-body p { font-size: 14px; color: var(--ink-2); }
.step-visual {
  margin-top: auto;
  background: #fff; border-radius: 12px; border: 1px solid var(--line);
  padding: 12px; font-family: 'JetBrains Mono', monospace; font-size: 12px;
  display: flex; flex-direction: column; gap: 6px;
}
.sv-line { color: var(--ink-2); }
.sv-line.done { color: #047857; }
.sv-line.ki { color: #7c3aed; }

/* ============================================================
   SECURITY (Dark)
   ============================================================ */
.security {
  position: relative;
  padding: 120px 0;
  background: linear-gradient(180deg, var(--navy-900) 0%, var(--navy-800) 100%);
  color: #fff;
  overflow: hidden;
}
.mesh-dark {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 40% 30% at 20% 30%, rgba(110,231,183,0.15), transparent 60%),
    radial-gradient(ellipse 40% 30% at 80% 70%, rgba(16,185,129,0.15), transparent 60%);
}
.security .sec-head { position: relative; z-index: 2; }
.sec-lede {
  margin-top: 18px;
  font-size: 16px; color: rgba(255,255,255,0.7);
  max-width: 640px; margin-left: auto; margin-right: auto;
}
.sec-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px;
  position: relative; z-index: 2;
}
.sec-card {
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--r-lg);
  padding: 28px;
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
}
.sec-card:hover {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.16);
  transform: translateY(-2px);
}
.sec-ico { font-size: 28px; margin-bottom: 14px; }
.sec-h {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 18px; font-weight: 600;
  color: #fff;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.sec-card p { font-size: 14px; color: rgba(255,255,255,0.7); line-height: 1.55; }

/* ============================================================
   PRICING
   ============================================================ */
.pricing { padding: 120px 0; background: var(--bg); }
.price-toggle {
  display: inline-flex;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 4px;
  margin-top: 24px;
  font-size: 13px;
}
.pt-btn {
  padding: 8px 16px;
  border-radius: 999px;
  color: var(--ink-3);
  font-weight: 600;
  transition: background 0.15s, color 0.15s;
  display: inline-flex; align-items: center; gap: 8px;
}
.pt-btn.active { background: var(--navy-800); color: #fff; }
.pt-save {
  font-size: 11px;
  background: linear-gradient(135deg, #6ee7b7, #34d399);
  color: #064e3b !important;
  padding: 2px 6px; border-radius: 6px;
}
.pt-btn.active .pt-save { color: #064e3b; }
.pt-btn:not(.active) .pt-save { color: #047857; background: #d1fae5; }

.price-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px;
}
.price-card {
  position: relative;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  padding: 36px 28px;
  display: flex; flex-direction: column; gap: 14px;
}
.price-card.featured {
  background: linear-gradient(180deg, #ffffff 0%, #fafafb 100%);
  border-color: transparent;
  box-shadow:
    0 0 0 2px var(--navy-800),
    0 24px 60px rgba(12,25,41,0.18);
}
.pc-badge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  padding: 4px 12px;
  background: var(--navy-grad);
  color: #fff;
  font-size: 11px; font-weight: 700;
  border-radius: 999px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.pc-tag {
  display: inline-block;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px; text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--ink-3);
}
.price-card h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 26px; font-weight: 600;
  letter-spacing: -0.02em; color: var(--navy-800);
}
.pc-sub { font-size: 14px; color: var(--ink-3); }
.pc-price {
  display: flex; align-items: baseline; gap: 4px;
  margin: 6px 0;
  font-family: 'Space Grotesk', sans-serif;
  color: var(--navy-800);
}
.pc-amt { font-size: 50px; font-weight: 600; letter-spacing: -0.04em; }
.pc-cur { font-size: 22px; color: var(--ink-2); }
.pc-per { font-size: 12px; color: var(--ink-3); margin-left: 8px; font-family: 'Inter'; }
.pc-list {
  display: flex; flex-direction: column; gap: 8px;
  font-size: 14px; color: var(--ink-2);
  margin-top: 6px;
}
.pc-list li {
  position: relative; padding-left: 22px;
}
.pc-list li::before {
  content: '✓'; position: absolute; left: 0; top: 0;
  color: var(--emerald); font-weight: 700;
}
.pc-list li b { color: var(--navy-800); font-weight: 600; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials { padding: 100px 0; background: var(--bg-soft); }
.testi-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 14px;
}
.testi {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 32px;
  display: flex; flex-direction: column; gap: 20px;
}
.testi blockquote {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 22px; font-weight: 500;
  line-height: 1.4; letter-spacing: -0.015em;
  color: var(--navy-800);
}
.testi.mini blockquote { font-size: 16px; }
.testi figcaption {
  display: flex; align-items: center; gap: 12px;
  margin-top: auto;
}
.t-avatar {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--navy-grad);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 700;
  border: 2px solid var(--silver-1);
}
.testi figcaption b { display: block; font-size: 14px; font-weight: 600; color: var(--navy-800); }
.testi figcaption em { display: block; font-size: 12px; color: var(--ink-3); }

/* ============================================================
   FAQ
   ============================================================ */
.faq { padding: 120px 0; background: var(--bg); }
.faq-list {
  max-width: 820px; margin: 0 auto;
  display: flex; flex-direction: column; gap: 8px;
}
.faq-item {
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  transition: border-color 0.2s, background 0.2s;
}
.faq-item[open] {
  background: #fff;
  border-color: var(--navy-300);
  box-shadow: 0 8px 24px rgba(12,25,41,0.06);
}
.faq-item summary {
  padding: 22px 24px;
  font-size: 16px; font-weight: 600;
  color: var(--navy-800);
  cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
  list-style: none;
  gap: 12px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-size: 24px; font-weight: 300;
  color: var(--ink-3);
  transition: transform 0.2s;
  flex-shrink: 0;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-body {
  padding: 0 24px 22px;
  font-size: 15px; color: var(--ink-2); line-height: 1.65;
}

/* ============================================================
   FINAL CTA
   ============================================================ */
.cta {
  position: relative;
  padding: 140px 0;
  background: linear-gradient(180deg, var(--navy-900) 0%, var(--navy-800) 100%);
  overflow: hidden;
  text-align: center;
}
.mesh-cta {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 50% 40% at 50% 30%, rgba(139,92,246,0.35), transparent 60%),
    radial-gradient(ellipse 40% 30% at 20% 60%, rgba(236,72,153,0.22), transparent 60%),
    radial-gradient(ellipse 40% 30% at 80% 60%, rgba(43,70,119,0.32), transparent 60%);
  filter: blur(40px);
}
.cta .container { position: relative; z-index: 2; }
.cta h2 { color: #fff; margin-bottom: 18px; }
.cta-lede {
  font-size: 18px; color: rgba(255,255,255,0.75);
  margin-bottom: 36px;
}
.cta-buttons {
  display: flex; gap: 12px; justify-content: center; flex-wrap: wrap;
  margin-bottom: 32px;
}
.cta-buttons .btn-primary { background: #fff; color: var(--navy-800); }
.cta-buttons .btn-primary:hover { background: var(--silver-1); }
.cta-buttons .btn-glass {
  background: rgba(255,255,255,0.08);
  color: #fff;
  border-color: rgba(255,255,255,0.2);
}
.cta-buttons .btn-glass:hover { background: rgba(255,255,255,0.16); }
.cta-trust {
  display: flex; gap: 24px; justify-content: center; flex-wrap: wrap;
  font-size: 13px; color: rgba(255,255,255,0.7);
}
.cta-trust li { display: inline-block; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--navy-900); color: rgba(255,255,255,0.7);
  padding: 80px 0 32px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.foot-top {
  display: grid;
  grid-template-columns: 1.6fr repeat(4, 1fr);
  gap: 40px;
}
.brand-foot { color: #fff; }
.brand-foot img { width: 40px; height: 40px; }
.foot-brand p {
  font-size: 14px; line-height: 1.7;
  margin-top: 16px;
  max-width: 280px;
  color: rgba(255,255,255,0.6);
}
.foot-badge {
  display: flex; gap: 6px; margin-top: 18px; flex-wrap: wrap;
}
.foot-badge span {
  padding: 4px 10px; border-radius: 6px;
  background: rgba(255,255,255,0.06);
  font-size: 10px; font-weight: 600;
  color: rgba(255,255,255,0.75);
  letter-spacing: 0.04em;
}
.foot-head {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px; text-transform: uppercase; letter-spacing: 0.1em;
  color: #fff; font-weight: 600;
  margin-bottom: 16px;
}
.foot-col a {
  display: block; padding: 5px 0;
  font-size: 14px; color: rgba(255,255,255,0.65);
  transition: color 0.15s;
}
.foot-col a:hover { color: #fff; }
.foot-bottom {
  margin-top: 48px; padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.06);
  display: flex; justify-content: space-between; align-items: center;
  font-size: 12px; gap: 16px;
}
.foot-bottom small { color: rgba(255,255,255,0.5); }
.foot-langs { display: flex; gap: 8px; align-items: center; }
.foot-langs a { font-weight: 500; color: rgba(255,255,255,0.65); padding: 0 6px; }
.foot-langs a.active { color: #fff; }
.foot-langs span { color: rgba(255,255,255,0.2); }

/* ============================================================
   REVEAL ANIMATIONS
   ============================================================ */
.reveal { opacity: 0; transform: translateY(40px); transition: opacity 0.8s ease, transform 0.8s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .nav-links { display: none; }
  .ki-grid { grid-template-columns: 1fr; gap: 48px; }
  .testi-grid { grid-template-columns: 1fr 1fr; }
  .bento { grid-template-columns: repeat(4, 1fr); }
  .b-hero { grid-column: span 4; grid-row: span 2; }
  .b-ki { grid-column: span 2; grid-row: span 1; }
  .b-finance { grid-column: span 4; }
  .b-post, .b-tasks, .b-mobile, .b-office, .b-connect { grid-column: span 2; }
  .hv-body { grid-template-columns: 200px 1fr; }
  .hv-phone { display: none; }
  .quick-grid { grid-template-columns: 1fr 1fr 1fr; gap: 8px; }
  .thomas-intro { grid-template-columns: 1fr; gap: 24px; }
  .thomas-intro p { max-width: 760px; }
  .thomas-grid { grid-template-columns: 1.15fr 0.85fr; }
}

@media (max-width: 760px) {
  html { scroll-padding-top: 72px; }
  .nav-cta .btn-ghost { display: none; }
  .brand-tag { display: none; }
  .nav-inner { padding: 0 20px; gap: 12px; }
  .brand-name { font-size: 16px; }
  .container { padding: 0 20px; }
  .pill {
    max-width: calc(100vw - 40px);
    white-space: normal;
    justify-content: center;
    line-height: 1.35;
  }
  .nav-cta .btn-primary {
    padding: 10px 14px;
    font-size: 0;
    gap: 0;
  }
  .nav-cta .btn-primary::before {
    content: "Testen";
    font-size: 14px;
  }
  .nav-cta .btn-primary span { display: none; }
  .display {
    font-size: clamp(29px, 8vw, 34px);
    line-height: 1.06;
    letter-spacing: 0;
    overflow-wrap: anywhere;
    word-break: normal;
  }
  .display .grad { display: block; }
  .lede { font-size: 16px; max-width: 340px; }
  .hero-cta .btn {
    white-space: normal;
    justify-content: center;
    text-align: center;
  }
  .trust-row {
    gap: 10px 14px;
    padding: 0 6px;
  }
  .trust-row li {
    max-width: 150px;
    justify-content: center;
    text-align: center;
    font-size: 12px;
  }
  .h-display { font-size: 32px; }
  .hero { padding-top: 110px; }
  .section, .workflow, .pricing, .testimonials, .faq, .ki-section, .security, .cta, .thomas-story {
    padding: 70px 0;
  }
  .thomas-intro { margin-bottom: 30px; }
  .thomas-intro p { padding-left: 16px; }
  .thomas-grid { grid-template-columns: 1fr; }
  .thomas-main { min-height: 430px; }
  .thomas-card { min-height: 330px; }
  .thomas-side { grid-template-columns: 1fr; }
  .thomas-main figcaption,
  .thomas-card figcaption { left: 20px; right: 20px; bottom: 20px; }
  .thomas-main figcaption strong { font-size: 21px; }
  .thomas-note { align-items: flex-start; flex-direction: column; }
  .bento { grid-template-columns: 1fr; }
  .b-hero, .b-ki, .b-finance, .b-post, .b-tasks, .b-mobile, .b-office, .b-connect {
    grid-column: span 1; grid-row: auto;
  }
  .b-hero h3 { font-size: 28px; }
  .b-ki h3 { font-size: 24px; }
  .steps { grid-template-columns: 1fr; }
  .steps::before { display: none; }
  .sec-grid { grid-template-columns: 1fr; }
  .price-grid { grid-template-columns: 1fr; }
  .testi-grid { grid-template-columns: 1fr; }
  .foot-top { grid-template-columns: 1fr 1fr; gap: 28px; }
  .foot-brand { grid-column: span 2; }
  .hv-body { grid-template-columns: 1fr; min-height: 0; }
  .hv-side { display: none; }
  .quick-grid { grid-template-columns: 1fr; }
  .rubrik-grid { grid-template-columns: 1fr; }
  .float-toast { display: none; }
  .hero-visual { padding-bottom: 60px; }
  .mobile-shot { display: none; }
  .b-mobile h3, .b-mobile p { max-width: 100%; }
  .logos-row { gap: 6px 18px; }
  .logo-cell { font-size: 13px; padding: 4px 6px; }
  .greet-h { font-size: 24px; }
  .greet-stats { gap: 16px; }
  .greet-stats b { font-size: 26px; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
