﻿/* ============================================================
   Flowdas — Landing Page v2 & subpages
   Single shared stylesheet — DO NOT inline styles in pages.
   All tokens live in :root below; change them once, propagate everywhere.

   Sections (search for "===== <NAME>"):
     - TOKENS (colors, type, radii, easings)
     - RESET + BASE
     - CONTAINER + UTILITIES
     - BUTTONS
     - NAV
     - HERO (homepage only)
     - PAGE-HERO (subpage hero)
     - SERVICE-HERO (split layout for service pages)
     - WHY
     - BELIEVE
     - STORIES
     - SERVICES (accordion)
     - PROJECTS
     - FAQ
     - BLOG
     - FINAL CTA
     - FOOTER
     - SUBPAGE COMPONENTS (feature-grid, process, pricing, prose, callout)
     - SCROLL REVEAL
     - REDUCED MOTION
   ============================================================ */

/* ===== TOKENS ===== */
:root {
  --primary: #4648d4;
  --primary-hi: #8a8cff;
  --primary-glow: #6063ee;
  --tertiary: #8127cf;

  --ink: #0c0f1c;
  --ink-2: #131628;
  --ink-3: #1c2038;
  --ink-line: rgba(255,255,255,0.08);
  --ink-line-strong: rgba(255,255,255,0.16);
  --on-ink: #f5f6fa;
  --on-ink-2: #b6b8c7;
  --on-ink-3: #7a7d92;

  --surface: #f4f5f8;
  --surface-card: #ffffff;
  --surface-line: #e3e4ec;
  --on-surface: #0c0f1c;
  --on-surface-2: #4a4d63;
  --on-surface-3: #8b8da1;

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-pill: 9999px;

  --ease: cubic-bezier(0.2, 0, 0, 1);
  --shadow-1: 0 4px 20px rgba(12, 15, 28, 0.06);
  --shadow-2: 0 12px 40px rgba(12, 15, 28, 0.10);
  --shadow-glow: 0 0 60px rgba(70, 72, 212, 0.35);

  --display: 'Space Grotesk', 'Geist', sans-serif;
  --body: 'Geist', system-ui, sans-serif;
  --mono: 'Geist Mono', ui-monospace, monospace;
}

/* ===== RESET + BASE ===== */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--body);
  color: var(--on-surface);
  background: var(--surface);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }

/* ===== CONTAINER + UTILITIES ===== */
.container { max-width: 1280px; margin: 0 auto; padding: 0 32px; }
@media (max-width: 720px) { .container { padding: 0 20px; } }
section { position: relative; }
.section--dark { background: var(--ink); color: var(--on-ink); }
.section--light { background: var(--surface); color: var(--on-surface); }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 28px;
  border-radius: var(--radius-pill);
  font-family: var(--body);
  font-size: 14px; font-weight: 500;
  letter-spacing: 0.04em; text-transform: uppercase;
  transition: all 220ms var(--ease);
  cursor: pointer;
}
.btn--ghost-light { color: #fff; border: 1px solid rgba(255,255,255,0.25); background: transparent; }
.btn--ghost-light:hover { background: rgba(255,255,255,0.06); border-color: rgba(255,255,255,0.5); transform: translateY(-1px); }
.btn--primary { color: #fff; background: var(--primary); }
.btn--primary:hover { background: var(--primary-glow); transform: translateY(-1px); box-shadow: var(--shadow-glow); }
.btn--solid-light { color: var(--on-surface); background: #fff; }
.btn--solid-light:hover { transform: translateY(-1px); box-shadow: var(--shadow-1); }
.btn--ghost-dark { color: var(--on-surface); border: 1px solid var(--surface-line); background: transparent; }
.btn--ghost-dark:hover { background: #fff; transform: translateY(-1px); box-shadow: var(--shadow-1); }
.btn .lucide { width: 16px; height: 16px; stroke-width: 2; }

/* ===== NAV ===== */
.nav {
  position: absolute; top: 0; left: 0; right: 0; z-index: 50;
  padding: 22px 0;
}
.nav--solid {
  background: rgba(12, 15, 28, 0.82);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}
.nav__inner { display: flex; align-items: center; justify-content: space-between; }
.logo {
  display: inline-flex; align-items: center;
  line-height: 1; text-decoration: none;
}
.logo img { height: 28px; width: auto; display: block; }
.nav__links {
  display: flex; gap: 36px;
  font-size: 14px; font-weight: 400; color: rgba(255,255,255,0.85);
}
.nav__links a { transition: color 200ms var(--ease); }
.nav__links a:hover, .nav__links a.is-active { color: #fff; }
.nav__cta {
  padding: 10px 22px; border-radius: var(--radius-pill);
  border: 1px solid rgba(255,255,255,0.25);
  color: #fff; font-size: 13px; font-weight: 500;
  text-transform: uppercase; letter-spacing: 0.06em;
  transition: all 220ms var(--ease);
}
.nav__cta:hover { background: #fff; color: var(--ink); }
@media (max-width: 860px) { .nav__links { display: none; } }

/* ===== HERO (homepage only) ===== */
.hero {
  background: var(--ink);
  color: var(--on-ink);
  padding: 180px 0 120px;
  overflow: hidden;
  border-bottom: 1px solid var(--ink-line-strong);
}
.hero__bg { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.hero__bg svg {
  position: absolute;
  width: 140%; height: 140%;
  top: -20%; left: -20%;
  opacity: 0.5;
  animation: hero-curve-drift 24s ease-in-out infinite alternate;
}
@keyframes hero-curve-drift {
  from { transform: translate(0,0) scale(1); }
  to   { transform: translate(-40px, 30px) scale(1.04); }
}
.hero__inner { position: relative; z-index: 2; text-align: center; }
.hero__logo { display: block; width: 72px; height: auto; margin: 0 auto 28px; }
.hero__eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  margin-bottom: 28px;
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.03);
  font-size: 12px; font-weight: 500;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--on-ink-2);
  backdrop-filter: blur(8px);
}
.hero__eyebrow::before {
  content: ""; width: 6px; height: 6px; border-radius: 50%;
  background: #4ade80; box-shadow: 0 0 12px #4ade80;
}
.hero__title {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(48px, 9vw, 132px);
  line-height: 0.95;
  letter-spacing: -0.03em;
  margin: 0 0 32px;
  color: #fff;
}
.hero__title em {
  font-style: italic; font-weight: 600;
  background: linear-gradient(120deg, #b8baff 0%, #8a8cff 50%, #6063ee 100%);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
  padding-right: 0.14em;
}
.hero__sub {
  max-width: 620px; margin: 0 auto 44px;
  font-size: 17px; line-height: 1.6;
  color: var(--on-ink-2);
}
.hero__ctas { display: inline-flex; gap: 12px; align-items: center; flex-wrap: wrap; justify-content: center; }

/* ===== PAGE-HERO (subpage hero, smaller than main) ===== */
.page-hero {
  background: var(--ink);
  color: var(--on-ink);
  padding: 140px 0 100px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero__crumbs {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  color: var(--on-ink-3);
  text-transform: uppercase;
  margin-bottom: 28px;
  display: inline-flex; align-items: center; gap: 8px;
  justify-content: center;
}
.page-hero__crumbs a { color: var(--on-ink-2); transition: color 200ms var(--ease); }
.page-hero__crumbs a:hover { color: #fff; }
.page-hero__crumbs span.sep { opacity: 0.35; }
.page-hero__title {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(40px, 6.5vw, 88px);
  line-height: 1;
  letter-spacing: -0.025em;
  color: #fff;
  margin: 0 auto 24px;
  max-width: 920px;
}
.page-hero__title em { font-style: italic; color: var(--primary-hi); font-weight: 500; }
.page-hero__sub {
  max-width: 620px;
  margin: 0 auto;
  font-size: 17px;
  line-height: 1.6;
  color: var(--on-ink-2);
}

/* ===== SERVICE-HERO (split layout) ===== */
.service-hero {
  background: var(--ink);
  color: var(--on-ink);
  padding: 72px 0 100px;
  position: relative;
  overflow: hidden;
}
.service-hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 2;
}
.service-hero__copy { max-width: 520px; }
.service-hero__eyebrow {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--primary-hi);
  margin-bottom: 20px;
}
.service-hero__title {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(40px, 6vw, 80px);
  line-height: 1;
  letter-spacing: -0.025em;
  color: #fff;
  margin: 0 0 24px;
}
.service-hero__title em { font-style: italic; color: var(--primary-hi); font-weight: 500; }
.service-hero__sub {
  font-size: 17px;
  line-height: 1.6;
  color: var(--on-ink-2);
  margin: 0 0 32px;
}
.service-hero__ctas { display: flex; gap: 12px; flex-wrap: wrap; }
.service-hero__visual {
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-xl);
  background: var(--ink-3);
  border: 1px solid var(--ink-line);
  overflow: hidden;
  position: relative;
}
.service-hero__visual svg { width: 100%; height: 100%; display: block; }
.service-hero__visual img { width: 100%; height: 100%; object-fit: contain; display: block; }
.service-hero__visual--bare {
  background: none; border: none; border-radius: 0; overflow: visible;
}
.service-hero__visual--bare img { height: auto; object-fit: unset; }

/* Hero duo — two floating screenshots */
.hero-duo {
  position: relative;
  width: 180%;
  margin-left: -28%;
}
.hero-duo__glow {
  position: absolute; top: 5%; left: 10%;
  width: 55%; height: 50%; z-index: 0;
  background: radial-gradient(ellipse, rgba(70,72,212,0.15) 0%, transparent 70%);
  filter: blur(48px); pointer-events: none;
}
.hero-duo__primary {
  display: block; width: 80%; position: relative; z-index: 2;
}
.hero-duo__primary img {
  width: 100%; height: auto; display: block;
  filter: drop-shadow(0 20px 48px rgba(0,0,0,0.55));
}
.hero-duo__secondary {
  position: absolute; bottom: -8%; left: 30%; width: 50%; z-index: 3;
}
.hero-duo__secondary img {
  width: 100%; height: auto; display: block;
  filter: drop-shadow(0 16px 40px rgba(0,0,0,0.6));
}
@media (max-width: 860px) {
  .service-hero { padding-bottom: 48px; }
  .service-hero__inner { grid-template-columns: 1fr; gap: 32px; }
  .service-hero__visual--bare { padding-bottom: 4%; }
  .hero-duo {
    width: calc(100% + 130px);    /* ← größer = Screenshots größer, muss 2× margin-left sein */
    margin-left: -65px;          /* ← halb des width-plus-Werts */
    margin-top: -60px;           /* ← nach oben verschieben (negativer = höher) */
  }
  .hero-duo__primary { width: 100%; }
  .hero-duo__secondary { width: 70%; left: auto; right: 0; bottom: -8%; }
}
@media (max-width: 480px) {
  .service-hero { padding-bottom: 32px; }
  .service-hero__visual--bare { padding-bottom: 4%; }
  .hero-duo__primary { width: 90%; }          /* ← Größe großes Phone */
  .hero-duo__secondary { width: 56%; right: 0; bottom: -6%; } /* ← Größe kleines Phone */
}

/* ===== WHY ===== */
.why { background: var(--ink); color: var(--on-ink); padding: 80px 0 140px; }
.why__head { margin-bottom: 80px; max-width: 480px; }
.why__title {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.05; letter-spacing: -0.02em;
  color: #fff; margin: 0;
}
.why__title em { font-style: italic; font-weight: 500; color: var(--primary-hi); }
.why__title sup {
  display: inline-block;
  width: 12px; height: 12px;
  border-radius: 50%;
  background: #fff;
  margin-left: 8px;
  vertical-align: super;
  box-shadow: 0 0 18px rgba(255,255,255,0.4);
}
.why__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; }
.why__card { display: flex; flex-direction: column; gap: 16px; }
.why__icon {
  width: 96px; height: 96px;
  display: flex; align-items: center; justify-content: center;
  color: var(--primary-hi);
  transition: transform 380ms var(--ease), color 380ms var(--ease);
}
.why__card:hover .why__icon { transform: rotate(8deg) scale(1.05); color: #fff; }
.why__icon svg { width: 100%; height: 100%; }
.why__label { font-family: var(--display); font-weight: 500; font-size: 18px; color: #fff; margin: 0; }
.why__copy { font-size: 14px; line-height: 1.6; color: var(--on-ink-2); margin: 0; }
@media (max-width: 960px) { .why__grid { grid-template-columns: repeat(2, 1fr); gap: 40px; } }
@media (max-width: 540px) { .why__grid { grid-template-columns: 1fr; } }

/* ===== BELIEVE ===== */
.believe { background: var(--surface); padding: 140px 0 120px; overflow: hidden; }
.believe__bg {
  position: absolute; inset: 0; pointer-events: none;
  background-image: linear-gradient(135deg, transparent 49%, rgba(12,15,28,0.05) 49%, rgba(12,15,28,0.05) 51%, transparent 51%);
  background-size: 80px 80px;
  opacity: 0.4;
}
.believe__inner { position: relative; z-index: 2; text-align: center; }
.believe__title {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(40px, 6vw, 80px);
  line-height: 1.05; letter-spacing: -0.025em;
  margin: 0 auto 32px; max-width: 1000px;
  color: var(--on-surface);
}
.believe__title em { font-style: italic; font-weight: 500; color: var(--primary); }
.believe__sub {
  max-width: 640px; margin: 0 auto;
  font-size: 16px; line-height: 1.6;
  color: var(--on-surface-2);
}
.stats {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px;
  max-width: 880px; margin: 0 auto;
  border-top: 1px solid var(--surface-line);
  padding-top: 56px;
}
.stat { text-align: center; }
.stat__num {
  font-family: var(--display); font-weight: 600;
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1; letter-spacing: -0.03em;
  color: var(--on-surface);
}
.stat__label {
  margin-top: 12px;
  font-size: 13px; font-weight: 500;
  color: var(--on-surface-3); letter-spacing: 0.04em;
}
@media (max-width: 720px) { .stats { grid-template-columns: 1fr; gap: 40px; padding-top: 40px; } }

/* ===== KI SHOWCASE ===== */
.ki-showcase { background: var(--ink); color: var(--on-ink); padding: 96px 0; }
.ki-showcase__header {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 48px; margin-bottom: 80px; flex-wrap: wrap;
}
.ki-showcase__eyebrow {
  display: block; margin-bottom: 20px;
  font-family: var(--mono); font-size: 11px; font-weight: 500;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--primary);
}
.ki-showcase__title {
  font-family: var(--display); font-weight: 600;
  font-size: clamp(40px, 5.5vw, 72px);
  line-height: 1; letter-spacing: -0.03em; color: #fff; margin: 0;
}
.ki-showcase__title em { font-style: italic; font-weight: 600; color: var(--primary-hi); }
.ki-showcase__sub {
  font-size: 16px; line-height: 1.6;
  color: var(--on-ink-3); max-width: 360px; margin: 0; flex-shrink: 0;
}
.ki-showcase__rule { height: 1px; background: var(--ink-line); }
.ki-showcase__cols { display: grid; grid-template-columns: repeat(3, 1fr); }
.ki-col {
  padding: 48px 40px;
  display: flex; flex-direction: column; gap: 20px;
  border-right: 1px solid var(--ink-line);
  transition: background 220ms var(--ease);
}
.ki-col:first-child { padding-left: 0; }
.ki-col:last-child { border-right: none; padding-right: 0; }
.ki-col:hover { background: rgba(70, 72, 212, 0.05); }
.ki-col__num {
  font-family: var(--mono); font-size: 12px; font-weight: 500;
  letter-spacing: 0.12em; color: var(--primary);
}
.ki-col__title {
  font-family: var(--display); font-weight: 600;
  font-size: 22px; letter-spacing: -0.01em; color: #fff; margin: 0 0 12px;
}
.ki-col__body { font-size: 14px; line-height: 1.65; color: var(--on-ink-3); margin: 0; }
.ki-col__icon { margin-top: auto; padding-top: 24px; color: rgba(138, 140, 255, 0.45); }
.ki-col__icon .lucide { width: 18px; height: 18px; stroke-width: 1.5; }
@media (max-width: 860px) {
  .ki-showcase__header { flex-direction: column; align-items: flex-start; gap: 24px; margin-bottom: 56px; }
  .ki-showcase__cols { grid-template-columns: 1fr; }
  .ki-col { padding: 36px 0; border-right: none; border-bottom: 1px solid var(--ink-line); }
  .ki-col:first-child { padding-left: 0; }
  .ki-col:last-child { border-bottom: none; }
}

/* ===== STORIES ===== */
.stories { background: var(--ink); color: var(--on-ink); padding: 100px 0; }
.stories__head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 56px; }
.stories__title {
  font-family: var(--display); font-weight: 500;
  font-size: clamp(32px, 4vw, 56px);
  line-height: 1.05; letter-spacing: -0.02em;
  color: #fff; margin: 0;
}
.stories__nav { display: flex; gap: 12px; }
.stories__nav button {
  width: 48px; height: 48px;
  border-radius: 50%;
  border: 1px solid var(--ink-line-strong);
  color: #fff;
  transition: all 200ms var(--ease);
  display: inline-flex; align-items: center; justify-content: center;
}
.stories__nav button:hover { background: var(--primary); border-color: var(--primary); }
.stories__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; }
.story__quote-mark {
  font-family: var(--display); font-style: italic; font-weight: 500;
  color: var(--primary-hi); font-size: 18px; margin-bottom: 12px;
}
.story__title { font-family: var(--display); font-weight: 500; font-size: 28px; color: #fff; margin: 0 0 20px; }
.story__body { font-size: 15px; line-height: 1.7; color: var(--on-ink-2); margin: 0 0 32px; }
.story__author { display: flex; align-items: center; gap: 14px; margin-top: 24px; }
.story__avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, #4648d4, #8127cf);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--display); font-weight: 600;
  color: #fff; font-size: 15px;
}
.story__name { font-size: 15px; font-weight: 500; color: #fff; }
.story__role { font-size: 13px; color: var(--on-ink-3); }
.logo-bar {
  margin-top: 80px; padding-top: 48px;
  border-top: 1px solid var(--ink-line);
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 24px;
}
.logo-bar span {
  font-family: var(--display); font-weight: 600;
  font-size: 22px; letter-spacing: 0.02em;
  color: rgba(255,255,255,0.45);
  transition: color 200ms var(--ease);
}
.logo-bar span:hover { color: #fff; }
@media (max-width: 860px) {
  .stories__grid { grid-template-columns: 1fr; gap: 48px; }
  .logo-bar { justify-content: center; gap: 32px; }
}

/* ===== SERVICES (accordion) ===== */
.services { background: var(--surface); padding: 120px 0; }
.services__title {
  font-family: var(--display); font-weight: 500;
  font-size: clamp(40px, 5vw, 64px);
  text-align: center; margin: 0 0 80px;
  letter-spacing: -0.02em;
}
.service { border-bottom: 1px solid var(--surface-line); transition: padding 320ms var(--ease); }
.service:first-of-type { border-top: 1px solid var(--surface-line); }
.service__head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 28px 0; cursor: pointer;
  transition: padding 320ms var(--ease);
}
.service__name {
  font-family: var(--display); font-style: italic; font-weight: 500;
  font-size: clamp(22px, 2.4vw, 32px);
  letter-spacing: -0.01em;
  color: var(--on-surface);
  transition: color 220ms var(--ease);
}
.service:hover .service__name { color: var(--primary); }
.service__arrow {
  width: 56px; height: 56px; border-radius: 50%;
  border: 1px solid var(--surface-line);
  display: flex; align-items: center; justify-content: center;
  color: var(--on-surface);
  transition: all 320ms var(--ease);
  flex-shrink: 0;
}
.service:hover .service__arrow {
  background: var(--primary); color: #fff; border-color: var(--primary);
  transform: rotate(-45deg);
}
.service__body { display: grid; grid-template-rows: 0fr; transition: grid-template-rows 420ms var(--ease); }
.service__body-inner { overflow: hidden; }
.service.is-open .service__body { grid-template-rows: 1fr; }
.service.is-open .service__head { padding: 24px 0 16px; }
.service.is-open .service__name { color: var(--primary); }
.service.is-open .service__arrow {
  background: var(--primary); color: #fff; border-color: var(--primary);
  transform: rotate(45deg);
}
.service__content {
  display: grid; grid-template-columns: 1fr 1.1fr; gap: 48px; align-items: center;
  padding-bottom: 36px;
}
.service__copy { color: var(--on-surface-2); font-size: 15px; line-height: 1.65; }
.service__copy p { margin: 0 0 16px; }
.service__copy ul { margin: 0; padding-left: 18px; }
.service__copy li { margin-bottom: 6px; }
.service__visual {
  position: relative; aspect-ratio: 16 / 10;
  border-radius: var(--radius-lg);
  overflow: hidden; background: var(--ink);
}
.service__visual img { width: 100%; height: 100%; object-fit: cover; display: block; }
.service__visual--logo {
  display: flex; align-items: center; justify-content: center;
  background: radial-gradient(circle at 50% 38%, #1c2038, #0c0f1c);
}
.service__visual--logo img { width: auto; height: 140px; object-fit: contain; }
@media (max-width: 760px) { .service__content { grid-template-columns: 1fr; gap: 24px; } }

/* ===== PROJECTS ===== */
.projects { background: var(--ink); color: var(--on-ink); padding: 120px 0; }
.projects__head {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: end;
  margin-bottom: 56px;
}
.projects__title {
  font-family: var(--display); font-weight: 500;
  font-size: clamp(40px, 5vw, 72px);
  letter-spacing: -0.02em; line-height: 1;
  color: #fff; margin: 0;
}
.projects__copy { color: var(--on-ink-2); font-size: 15px; line-height: 1.65; margin: 0; }
.projects__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.project {
  border-radius: var(--radius-lg);
  overflow: hidden; aspect-ratio: 5 / 6;
  position: relative; cursor: pointer;
  transition: transform 380ms var(--ease);
}
.project:hover { transform: translateY(-4px); }
.project--photo {
  background:
    linear-gradient(180deg, rgba(12,15,28,0) 50%, rgba(12,15,28,0.7) 100%),
    radial-gradient(ellipse at 30% 30%, #2a2e44 0%, #14172b 60%, #0c0f1c 100%);
}
.project__shot { position: absolute; inset: 0; display: flex; flex-direction: column; gap: 3px; overflow: hidden; }
.project__shot img { width: 100%; flex: 1; object-fit: cover; object-position: top; display: block; min-height: 0; }
.project--photo::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(12,15,28,0) 38%, rgba(12,15,28,0.9) 100%);
}
.project__year {
  position: absolute; bottom: 24px; left: 24px; z-index: 2;
  font-family: var(--mono); font-size: 12px; font-weight: 500;
  color: var(--on-ink-2); letter-spacing: 0.06em;
}
.project__name {
  position: absolute; bottom: 56px; left: 24px; z-index: 2;
  font-family: var(--display); font-style: italic; font-weight: 500;
  font-size: 24px; color: #fff; margin: 0;
}
.project--feature {
  background: linear-gradient(165deg, #b8baff 0%, #8a8cff 50%, #6063ee 100%);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding: 48px 32px; text-align: center; color: #0c0f1c;
}
.project__category {
  font-family: var(--mono); font-size: 11px; font-weight: 500;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(12,15,28,0.6); margin-bottom: 20px;
}
.project__big {
  font-family: var(--display); font-style: italic; font-weight: 500;
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1; letter-spacing: -0.02em;
  margin: 0 0 24px; color: #0c0f1c;
}
.project__big-sub { font-size: 13px; color: rgba(12,15,28,0.7); line-height: 1.5; max-width: 280px; margin: 0 0 28px; }
.project__pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 24px;
  border-radius: var(--radius-pill);
  background: #fff; color: var(--on-surface);
  font-size: 12px; font-weight: 500;
  letter-spacing: 0.06em; text-transform: uppercase;
  transition: all 200ms var(--ease);
}
.project__pill:hover { background: var(--primary); color: #fff; }
@media (max-width: 760px) {
  .projects__head { grid-template-columns: 1fr; gap: 24px; }
  .projects__grid { grid-template-columns: 1fr; }
}

/* ===== FAQ ===== */
.faq { background: var(--ink); color: var(--on-ink); padding: 60px 0 140px; }
.faq__inner { display: grid; grid-template-columns: 1fr 1.4fr; gap: 80px; align-items: start; }
.faq__title {
  font-family: var(--display); font-weight: 500;
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1.05; letter-spacing: -0.02em;
  color: #fff; margin: 0 0 40px;
}
.faq__title em { font-style: italic; color: var(--primary-hi); font-weight: 500; }
.faq__btn {
  margin-top: 24px;
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 28px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--ink-line-strong);
  color: #fff;
  font-size: 12px; font-weight: 500;
  letter-spacing: 0.1em; text-transform: uppercase;
  transition: all 200ms var(--ease);
}
.faq__btn:hover { background: var(--primary); border-color: var(--primary); transform: translateY(-1px); }
.faq__list { list-style: none; padding: 0; margin: 0; }
.faq__item { border-top: 1px solid var(--ink-line); }
.faq__item:last-child { border-bottom: 1px solid var(--ink-line); }
.faq__q {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between;
  padding: 24px 0; text-align: left;
  color: #fff; font-family: var(--body);
  font-size: 17px; font-weight: 400;
  transition: color 200ms var(--ease);
}
.faq__q:hover { color: var(--primary-hi); }
.faq__q-icon {
  width: 32px; height: 32px;
  display: flex; align-items: center; justify-content: center;
  color: var(--on-ink-2);
  transition: transform 320ms var(--ease), color 200ms var(--ease);
  flex-shrink: 0;
}
.faq__item.is-open .faq__q-icon { transform: rotate(45deg); color: var(--primary-hi); }
.faq__a { display: grid; grid-template-rows: 0fr; transition: grid-template-rows 380ms var(--ease); }
.faq__a-inner { overflow: hidden; color: var(--on-ink-2); font-size: 15px; line-height: 1.65; }
.faq__a-inner > div { padding-bottom: 24px; padding-right: 56px; }
.faq__item.is-open .faq__a { grid-template-rows: 1fr; }
@media (max-width: 860px) { .faq__inner { grid-template-columns: 1fr; gap: 32px; } }

/* ===== BLOG ===== */
.blog { background: var(--surface); padding: 120px 0; }
.blog__head { text-align: center; margin-bottom: 64px; }
.blog__title {
  font-family: var(--display); font-weight: 500;
  font-size: clamp(40px, 5vw, 64px);
  letter-spacing: -0.02em; margin: 0 0 16px;
}
.blog__sub { max-width: 540px; margin: 0 auto; color: var(--on-surface-2); font-size: 15px; line-height: 1.6; }
.blog__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; align-items: end; }
.post { display: flex; flex-direction: column; gap: 16px; }
.post--feature {
  background: var(--ink);
  border-radius: var(--radius-lg);
  padding: 32px;
  color: #fff;
  aspect-ratio: 3 / 4;
  display: flex; flex-direction: column; justify-content: space-between;
  position: relative; overflow: hidden;
}
.post--feature::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(circle at 80% 20%, rgba(70,72,212,0.4) 0%, transparent 50%),
    radial-gradient(circle at 20% 80%, rgba(129,39,207,0.3) 0%, transparent 50%);
  opacity: 0.8;
}
.post--feature > * { position: relative; z-index: 1; }
.post__tip {
  font-family: var(--display); font-style: italic; font-weight: 500;
  font-size: 32px; color: var(--primary-hi);
  margin-bottom: 8px;
}
.post__feature-title { font-family: var(--display); font-weight: 500; font-size: 22px; line-height: 1.2; margin: 0; }
.post__cat {
  font-family: var(--mono); font-size: 11px; font-weight: 500;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--primary);
}
.post__title {
  font-family: var(--display); font-weight: 500;
  font-size: 18px; line-height: 1.3;
  color: var(--on-surface); margin: 0;
}
.post__date {
  margin-top: auto;
  font-family: var(--mono); font-size: 11px; font-weight: 500;
  letter-spacing: 0.18em; color: var(--on-surface-3);
  border-top: 1px solid var(--surface-line); padding-top: 16px;
}
.post__more-pill {
  align-self: flex-start;
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 18px;
  border-radius: var(--radius-pill);
  background: #fff; color: var(--on-surface);
  font-size: 11px; font-weight: 500;
  letter-spacing: 0.1em; text-transform: uppercase;
}
.blog__more { margin-top: 64px; display: flex; justify-content: center; }
@media (max-width: 860px) { .blog__grid { grid-template-columns: 1fr; } .post--feature { aspect-ratio: 4 / 3; } }

/* ===== BLOG ARTICLE ===== */
.article-meta {
  display: flex; gap: 20px; flex-wrap: wrap; margin-top: 20px;
  font-family: var(--mono); font-size: 11px; font-weight: 500;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--on-ink-3);
}
.article-meta span + span::before { content: "·"; opacity: 0.4; margin-right: 20px; }
.article-cta {
  margin-top: 56px; background: var(--ink-2);
  border-radius: var(--radius-lg); padding: 40px 48px;
  display: flex; gap: 40px; align-items: center; justify-content: space-between;
  border: 1px solid rgba(255,255,255,0.06);
}
.article-cta__text { flex: 1; }
.article-cta__eyebrow {
  font-family: var(--mono); font-size: 11px; font-weight: 500;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--primary-hi); margin-bottom: 8px;
}
.article-cta__title { font-family: var(--display); font-weight: 500; font-size: 22px; color: var(--on-ink); line-height: 1.25; margin: 0 0 10px; }
.article-cta .article-cta__title { color: var(--on-ink); }
.article-cta__body { color: var(--on-ink-2); font-size: 14px; line-height: 1.6; margin: 0; }
.article-cta .article-cta__body { color: var(--on-ink-2); }
@media (max-width: 680px) {
  .article-cta { flex-direction: column; gap: 24px; padding: 32px 24px; }
  .article-meta { gap: 10px; }
}

/* ===== FINAL CTA ===== */
.final { background: var(--surface); padding: 60px 0 140px; text-align: center; overflow: hidden; }
.final__inner { position: relative; display: flex; flex-direction: column; align-items: center; text-align: center; }
.final__title {
  font-family: var(--display); font-weight: 500;
  font-size: clamp(48px, 8vw, 112px);
  line-height: 1; letter-spacing: -0.03em;
  margin: 0 0 40px;
}
.final__title em { font-style: italic; font-weight: 500; color: var(--primary); }

/* ===== FOOTER ===== */
.footer { background: var(--ink); color: var(--on-ink); padding: 80px 0 40px; }
.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr;
  gap: 32px; margin-bottom: 64px;
}
.footer__social-icons {
  display: flex; flex-direction: column; gap: 12px; margin-top: 4px;
}
.footer__social-icon {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 14px; color: var(--on-ink-2);
  text-decoration: none; transition: color 200ms var(--ease);
}
.footer__social-icon:hover { color: #fff; }
.footer__social-icon .lucide { width: 16px; height: 16px; flex-shrink: 0; }
.footer .logo img { height: 32px; }
.footer__col h4 { font-family: var(--display); font-weight: 500; font-size: 16px; color: #fff; margin: 0 0 20px; }
.footer__col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.footer__col li, .footer__col a { font-size: 14px; color: var(--on-ink-2); transition: color 200ms var(--ease); }
.footer__col a:hover { color: #fff; }
.footer__news-copy { font-size: 13px; color: var(--on-ink-2); line-height: 1.55; margin-bottom: 16px; }
.footer__form {
  display: flex; gap: 8px;
  background: var(--ink-3); border: 1px solid var(--ink-line);
  border-radius: var(--radius-pill);
  padding: 6px 6px 6px 20px;
}
.footer__form input { flex: 1; background: transparent; border: 0; outline: none; color: #fff; font-family: var(--body); font-size: 13px; }
.footer__form input::placeholder { color: var(--on-ink-3); }
.footer__form button {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--primary); color: #fff;
  display: flex; align-items: center; justify-content: center;
}
.footer__form button:hover { background: var(--primary-glow); }
.footer__bottom {
  border-top: 1px solid var(--ink-line);
  padding-top: 24px; margin-top: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; color: var(--on-ink-3);
  gap: 32px; flex-wrap: wrap;
  width: 100%;
}
.footer__bottom > div:first-child { white-space: nowrap; }
.footer__dots { display: flex; gap: 10px; align-items: center; }
.footer__dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--on-ink-3);
  border: none; padding: 0; cursor: pointer;
  transition: background 260ms var(--ease), box-shadow 260ms var(--ease), transform 260ms var(--ease);
}
.footer__dot:hover {
  background: var(--primary-hi);
  box-shadow: 0 0 14px var(--primary-hi);
  transform: scale(1.3);
}
.footer__legal { display: flex; gap: 20px; flex-wrap: nowrap; align-items: center; }
.footer__legal a { color: var(--on-ink-3); white-space: nowrap; font-size: 12px; }
.footer__legal a:hover { color: #fff; }
@media (max-width: 860px) {
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .footer__bottom { flex-direction: column; align-items: flex-start; gap: 16px; }
  .footer__legal { flex-wrap: wrap; gap: 12px; }
}

/* ===== FOOTER SOCIAL LIST ===== */
.footer__social-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.footer__social-link {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 14px; color: var(--on-ink-2);
  transition: color 200ms var(--ease);
}
.footer__social-link:hover { color: #fff; }
.footer__social-link .lucide { width: 16px; height: 16px; stroke-width: 1.5; flex-shrink: 0; }

/* ===== FOOTER CONTACT FORM ===== */
.footer__contact-form { display: flex; flex-direction: column; gap: 8px; margin-top: 4px; }
.footer__contact-form input,
.footer__contact-form textarea {
  background: var(--ink-3);
  border: 1px solid var(--ink-line);
  border-radius: var(--radius-sm);
  padding: 9px 13px;
  color: var(--on-ink);
  font-family: var(--body); font-size: 13px;
  outline: none; resize: none; width: 100%;
  transition: border-color 200ms var(--ease);
}
.footer__contact-form input::placeholder,
.footer__contact-form textarea::placeholder { color: var(--on-ink-3); }
.footer__contact-form input:focus,
.footer__contact-form textarea:focus { border-color: var(--primary); }
.footer__contact-form button {
  align-self: flex-start;
  display: inline-flex; align-items: center; gap: 8px;
  padding: 9px 18px;
  border-radius: var(--radius-pill);
  background: var(--primary); color: #fff; border: none;
  font-family: var(--body); font-size: 12px; font-weight: 500;
  letter-spacing: 0.06em; text-transform: uppercase;
  cursor: pointer;
  transition: background 220ms var(--ease), transform 220ms var(--ease);
}
.footer__contact-form button:hover { background: var(--primary-glow); transform: translateY(-1px); }
.footer__contact-form button .lucide { width: 14px; height: 14px; }

/* ============================================================
   ===== SUBPAGE COMPONENTS =====
   Used on services/* and (some on) legal/* pages.
   ============================================================ */

/* --- Feature grid (3 col, light bg) --- */
.section-feature { background: var(--surface); padding: 120px 0; }
.section-feature__head { text-align: center; margin-bottom: 80px; max-width: 720px; margin-left: auto; margin-right: auto; }
.section-feature__eyebrow {
  font-family: var(--mono); font-size: 12px;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--primary); margin-bottom: 16px;
}
.section-feature__title {
  font-family: var(--display); font-weight: 500;
  font-size: clamp(32px, 4vw, 52px);
  letter-spacing: -0.02em; margin: 0 0 16px;
  line-height: 1.05;
}
.section-feature__title em { font-style: italic; color: var(--primary); }
.section-feature__sub { color: var(--on-surface-2); font-size: 16px; line-height: 1.6; margin: 0; }
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.feature {
  background: var(--surface-card);
  border: 1px solid var(--surface-line);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: transform 320ms var(--ease), box-shadow 320ms var(--ease), border-color 320ms var(--ease);
}
.feature:hover { transform: translateY(-4px); box-shadow: var(--shadow-2); border-color: var(--primary); }
.feature__icon {
  width: 48px; height: 48px;
  border-radius: var(--radius-md);
  background: var(--primary); color: #fff;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.feature__icon .lucide { width: 22px; height: 22px; }
.feature__title { font-family: var(--display); font-weight: 500; font-size: 20px; margin: 0 0 12px; }
.feature__body { font-size: 14px; line-height: 1.6; color: var(--on-surface-2); margin: 0; }
@media (max-width: 860px) { .feature-grid { grid-template-columns: 1fr; } }

/* --- Process steps (dark bg, numbered) --- */
.process { background: var(--ink); color: var(--on-ink); padding: 120px 0; }
.process__head { text-align: left; max-width: 680px; margin-bottom: 64px; }
.process__title {
  font-family: var(--display); font-weight: 500;
  font-size: clamp(32px, 4vw, 56px);
  letter-spacing: -0.02em; line-height: 1.05;
  color: #fff; margin: 0 0 16px;
}
.process__title em { font-style: italic; color: var(--primary-hi); font-weight: 500; }
.process__sub { color: var(--on-ink-2); font-size: 16px; line-height: 1.6; margin: 0; }
.process__list {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px;
  counter-reset: process;
}
.process__step {
  position: relative;
  padding-top: 60px;
  border-top: 1px solid var(--ink-line);
  counter-increment: process;
}
.process__step::before {
  content: counter(process, decimal-leading-zero);
  position: absolute; top: 16px; left: 0;
  font-family: var(--mono);
  font-size: 12px; letter-spacing: 0.1em;
  color: var(--primary-hi);
}
.process__step h3 {
  font-family: var(--display); font-weight: 500;
  font-size: 20px; color: #fff; margin: 0 0 12px;
}
.process__step p { font-size: 14px; line-height: 1.6; color: var(--on-ink-2); margin: 0; }
@media (max-width: 860px) { .process__list { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .process__list { grid-template-columns: 1fr; } }

/* --- Pricing tiers --- */
.pricing { background: var(--surface); padding: 120px 0; }
.pricing__head { text-align: center; margin-bottom: 64px; }
.pricing__grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
  max-width: 1100px; margin: 0 auto;
}
.pricing__grid--extended {
  grid-template-columns: repeat(5, 1fr);
  max-width: 1600px;
  gap: 16px;
}
.tier__price--text {
  font-size: 26px;
  line-height: 1.25;
  padding: 4px 0;
}
.tier {
  background: var(--surface-card);
  border: 1px solid var(--surface-line);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  display: flex; flex-direction: column;
  transition: transform 320ms var(--ease), box-shadow 320ms var(--ease);
}
.tier:hover { transform: translateY(-4px); box-shadow: var(--shadow-2); }
.tier--featured {
  background: var(--ink); color: #fff; border-color: var(--ink);
  position: relative;
}
.tier--featured::before {
  content: "BELIEBT";
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--primary); color: #fff;
  font-family: var(--mono); font-size: 11px;
  letter-spacing: 0.18em; padding: 6px 14px;
  border-radius: var(--radius-pill);
}
.tier__name { font-family: var(--display); font-style: italic; font-weight: 500; font-size: 22px; margin: 0 0 8px; }
.tier__tagline { font-size: 13px; color: var(--on-surface-3); margin: 0 0 24px; }
.tier--featured .tier__tagline { color: var(--on-ink-3); }
.tier__inherit { font-family: var(--mono); font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--on-surface-3); margin: -12px 0 16px; }
.tier--featured .tier__inherit { color: var(--on-ink-3); }
.tier__price {
  font-family: var(--display); font-weight: 600;
  font-size: 48px; line-height: 1; letter-spacing: -0.02em;
  margin: 0 0 4px;
}
.tier__price-unit { font-family: var(--body); font-size: 14px; font-weight: 400; color: var(--on-surface-3); }
.tier--featured .tier__price-unit { color: var(--on-ink-3); }
.tier__period {
  font-size: 13px; color: var(--on-surface-3);
  margin: 0 0 24px; font-family: var(--mono);
  letter-spacing: 0.04em;
}
.tier--featured .tier__period { color: var(--on-ink-3); }
.tier__min {
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.06em;
  color: var(--on-surface-3); margin: -16px 0 24px;
}
.tier--featured .tier__min { color: var(--on-ink-3); }
.tier__features {
  list-style: none; padding: 0; margin: 0 0 32px;
  display: flex; flex-direction: column; gap: 12px;
  font-size: 14px; flex: 1;
}
.tier__features li { display: flex; gap: 10px; align-items: flex-start; line-height: 1.5; }
.tier__features li::before {
  content: ""; width: 6px; height: 6px;
  border-radius: 50%; background: var(--primary);
  flex-shrink: 0; margin-top: 8px;
}
.tier--featured .tier__features li::before { background: var(--primary-hi); }
.tier__cta {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 24px;
  border-radius: var(--radius-pill);
  font-size: 13px; font-weight: 500;
  letter-spacing: 0.06em; text-transform: uppercase;
  transition: all 220ms var(--ease);
}
.tier__cta--dark { background: var(--ink); color: #fff; }
.tier__cta--dark:hover { background: var(--primary); transform: translateY(-1px); }
.tier__cta--light { background: #fff; color: var(--ink); }
.tier__cta--light:hover { background: var(--primary); color: #fff; transform: translateY(-1px); }
.pricing__head-sub { margin-top: 16px; }
.pricing__annual-note {
  display: flex; align-items: center; gap: 10px; justify-content: center;
  margin-top: 40px; font-family: var(--mono); font-size: 11px;
  color: var(--on-surface-3); letter-spacing: 0.04em;
}
.pricing__annual-note .lucide { width: 13px; height: 13px; stroke-width: 1.5; color: var(--primary); flex-shrink: 0; }
@media (max-width: 1300px) {
  .pricing__grid--extended { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 1100px) {
  .pricing__grid--extended { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 860px) {
  .pricing__grid { grid-template-columns: 1fr; }
  .pricing__grid--extended { grid-template-columns: 1fr; }
  .tier--featured { transform: none; }
}
@media (max-width: 480px) {
  .pricing { padding: 60px 0; }
  .tier { padding: 28px 24px; }
}
.tier__range-badge {
  display: inline-flex;
  font-family: var(--mono); font-size: 11px; font-weight: 500;
  color: var(--primary);
  background: color-mix(in oklch, var(--primary) 10%, white);
  border: 1px solid color-mix(in oklch, var(--primary) 22%, white);
  border-radius: var(--radius-pill);
  padding: 4px 12px; margin-bottom: 16px;
  letter-spacing: 0.06em;
}
.tier--featured .tier__range-badge {
  color: var(--primary-hi);
  background: color-mix(in oklch, var(--primary-hi) 14%, var(--ink));
  border-color: color-mix(in oklch, var(--primary-hi) 28%, var(--ink));
}
.tier__all-label {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; color: var(--on-surface-2);
  margin: 20px 0 24px; flex: 1;
}
.tier__all-label .lucide { width: 15px; height: 15px; color: var(--primary); flex-shrink: 0; stroke-width: 1.5; }
.tier--featured .tier__all-label { color: var(--on-ink-2); }
.tier--featured .tier__all-label .lucide { color: var(--primary-hi); }

/* ===== OFFER / DISCOUNT STYLES ===== */
.pricing__promo-bar {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  background: color-mix(in oklch, var(--primary) 8%, white);
  border: 1px solid color-mix(in oklch, var(--primary) 20%, white);
  color: var(--primary);
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase;
  padding: 10px 20px; border-radius: 8px; margin-bottom: 36px;
}
.pricing__promo-bar .lucide { width: 14px; height: 14px; stroke-width: 1.5; }
.tier__discount-badge {
  display: inline-block;
  background: color-mix(in oklch, var(--primary) 10%, white);
  color: var(--primary); font-family: var(--mono); font-size: 10px; font-weight: 700;
  letter-spacing: 0.1em; padding: 3px 10px; border-radius: 99px; margin-bottom: 10px;
}
.tier--featured .tier__discount-badge {
  background: color-mix(in oklch, var(--primary-hi) 18%, transparent);
  color: var(--primary-hi);
}
.tier__price-old {
  font-family: var(--display); font-size: 20px; font-weight: 400;
  color: var(--on-surface-3); text-decoration: line-through; margin-bottom: 2px;
}
.tier--featured .tier__price-old { color: var(--on-ink-3); }
.hw-price-old {
  font-family: var(--body); font-size: 12px; color: var(--on-ink-3);
  text-decoration: line-through; text-align: right; margin-bottom: 2px;
}
.nfc-pack__price-old {
  font-family: var(--body); font-size: 11px; color: var(--on-ink-3);
  text-decoration: line-through; margin-bottom: 0;
}
.wiz-hw-price-old {
  font-family: var(--body); font-size: 13px; color: var(--on-surface-3);
  text-decoration: line-through; margin-bottom: 2px;
}
.wiz-pkg__price-old {
  font-family: var(--body); font-size: 11px; color: var(--on-surface-3);
  text-decoration: line-through;
}
.hardware__promo-bar {
  display: flex; align-items: center; gap: 8px;
  color: var(--primary-hi); font-family: var(--mono); font-size: 10px;
  letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 16px;
}
.hardware__promo-bar .lucide { width: 13px; height: 13px; stroke-width: 1.5; }

.pricing__features-all {
  margin-top: 48px;
  padding: 36px 40px;
  background: var(--surface-card);
  border: 1px solid rgba(0,0,0,0.07);
  border-radius: var(--radius-lg);
}
.pricing__features-all__label {
  font-family: var(--mono); font-size: 11px;
  color: var(--on-surface-3); text-transform: uppercase;
  letter-spacing: 0.14em; margin: 0 0 20px;
}
.pricing__all-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px 32px;
}
.pricing__all-item {
  display: flex; align-items: center; gap: 10px;
  font-size: 14px; color: var(--on-surface-2);
}
.pricing__all-item .lucide { width: 15px; height: 15px; color: var(--primary); flex-shrink: 0; stroke-width: 1.5; }
@media (max-width: 860px) {
  .pricing__all-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing__features-all { padding: 28px 24px; }
}
@media (max-width: 480px) {
  .pricing__all-grid { grid-template-columns: 1fr; }
  .pricing__features-all { padding: 20px 16px; }
}

/* --- Prose (long-form text for legal pages) --- */
.prose-wrap { background: var(--surface); padding: 80px 0 120px; }
.prose-grid {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 80px;
  max-width: 1080px; margin: 0 auto;
  align-items: start;
}
.prose-toc { position: sticky; top: 32px; font-size: 13px; }
.prose-toc__head {
  font-family: var(--mono); font-size: 11px;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--on-surface-3); margin-bottom: 16px;
}
.prose-toc__list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 4px; }
.prose-toc__list a {
  color: var(--on-surface-2); display: block;
  padding: 8px 0 8px 14px;
  border-left: 2px solid var(--surface-line);
  transition: all 200ms var(--ease);
  line-height: 1.4;
}
.prose-toc__list a:hover { color: var(--primary); border-left-color: var(--primary); }
.prose { font-family: var(--body); font-size: 15px; line-height: 1.75; color: var(--on-surface-2); max-width: 680px; }
.prose h2 {
  font-family: var(--display); font-weight: 500;
  font-size: 28px; line-height: 1.2; letter-spacing: -0.01em;
  color: var(--on-surface);
  margin: 56px 0 16px;
  scroll-margin-top: 32px;
}
.prose h2:first-child { margin-top: 0; }
.prose h3 { font-family: var(--display); font-weight: 500; font-size: 19px; color: var(--on-surface); margin: 32px 0 12px; }
.prose p { margin: 0 0 16px; }
.prose ul, .prose ol { margin: 0 0 16px; padding-left: 22px; }
.prose li { margin-bottom: 6px; }
.prose a { color: var(--primary); text-decoration: underline; text-underline-offset: 3px; }
.prose strong { color: var(--on-surface); font-weight: 500; }
.prose-updated {
  font-family: var(--mono); font-size: 12px;
  letter-spacing: 0.06em; color: var(--on-surface-3);
  margin-bottom: 40px; padding-bottom: 16px;
  border-bottom: 1px solid var(--surface-line);
}
@media (max-width: 860px) {
  .prose-grid { grid-template-columns: 1fr; gap: 32px; }
  .prose-toc { position: static; }
}

/* --- Callout (pull-quote / highlight block) --- */
.callout {
  background: var(--ink); color: var(--on-ink);
  padding: 100px 0;
  text-align: center;
}
.callout__inner { max-width: 800px; margin: 0 auto; }
.callout__quote {
  font-family: var(--display); font-style: italic; font-weight: 500;
  font-size: clamp(28px, 3.5vw, 44px);
  line-height: 1.2; letter-spacing: -0.02em;
  color: #fff; margin: 0 0 24px;
}
.callout__quote em { color: var(--primary-hi); }
.callout__attr {
  font-family: var(--mono); font-size: 12px;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--on-ink-3);
}

/* ===== MAC WINDOW MOCKUP ===== */
.service-hero__visual--mac { border-radius: 12px; }
.mac-window {
  width: 100%; height: 100%;
  display: flex; flex-direction: column;
  background: #131628;
}
.mac-titlebar {
  display: flex; align-items: center; gap: 0;
  padding: 11px 14px;
  background: #1a1d30;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  flex-shrink: 0;
}
.mac-dots { display: flex; gap: 6px; flex-shrink: 0; }
.mac-dot { width: 11px; height: 11px; border-radius: 50%; }
.mac-dot--red    { background: #ff5f57; }
.mac-dot--yellow { background: #ffbd2e; }
.mac-dot--green  { background: #28c840; }
.mac-tabs { display: flex; gap: 2px; margin-left: 14px; overflow: hidden; }
.mac-tab {
  font-family: var(--body); font-size: 11px; font-weight: 500;
  color: rgba(255,255,255,0.38);
  padding: 4px 12px; border-radius: 5px;
  cursor: pointer; border: 1px solid transparent;
  background: transparent;
  transition: background 150ms var(--ease), color 150ms var(--ease);
  white-space: nowrap; line-height: 1.4;
}
.mac-tab:hover { color: rgba(255,255,255,0.7); background: rgba(255,255,255,0.05); }
.mac-tab.is-active {
  background: rgba(70,72,212,0.22);
  color: var(--primary-hi);
  border-color: rgba(70,72,212,0.35);
}
.mac-screen { flex: 1; position: relative; overflow: hidden; min-height: 0; }
.mac-panel {
  position: absolute; inset: 0;
  opacity: 0; transition: opacity 240ms var(--ease);
  pointer-events: none;
}
.mac-panel.is-active { opacity: 1; pointer-events: auto; }
.mac-panel img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: top left; display: block;
}

/* ===== TIMERA FEATURES (editorial rows) ===== */
.timera-features { background: var(--surface); padding: 112px 0; }
.timera-features__head { margin-bottom: 56px; }
.timera-features__eyebrow {
  font-family: var(--mono); font-size: 11px; font-weight: 500;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--primary); display: block; margin-bottom: 20px;
}
.timera-features__title {
  font-family: var(--display); font-weight: 600;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1; letter-spacing: -0.03em;
  color: var(--on-surface); margin: 0;
}
.timera-features__title em { font-style: italic; color: var(--primary); }
.timera-features__rule { height: 1px; background: var(--surface-line); }
.timera-feat-row {
  display: grid;
  grid-template-columns: 48px 1fr 1.5fr 28px;
  gap: 24px; align-items: start;
  padding: 28px 0;
  border-bottom: 1px solid var(--surface-line);
  transition: background 180ms var(--ease);
  cursor: default;
}
.timera-feat-row:hover { background: rgba(255,255,255,0.65); margin: 0 -32px; padding-left: 32px; padding-right: 32px; }
.timera-feat-row__num {
  font-family: var(--mono); font-size: 11px; font-weight: 500;
  color: var(--primary); letter-spacing: 0.1em; padding-top: 3px;
}
.timera-feat-row__title {
  font-family: var(--display); font-weight: 600;
  font-size: 22px; color: var(--on-surface);
  margin: 0; letter-spacing: -0.01em; line-height: 1.25;
}
.timera-feat-row__body {
  font-size: 15px; color: var(--on-surface-2);
  line-height: 1.65; margin: 0;
}
.timera-feat-row__icon {
  display: flex; justify-content: flex-end; padding-top: 4px;
  color: var(--on-surface-3);
  transition: color 180ms var(--ease);
}
.timera-feat-row__icon .lucide { width: 16px; height: 16px; stroke-width: 1.5; }
.timera-feat-row:hover .timera-feat-row__icon { color: var(--primary); }
@media (max-width: 760px) {
  .timera-feat-row { grid-template-columns: 36px 1fr; gap: 12px 16px; }
  .timera-feat-row__body { grid-column: 2; }
  .timera-feat-row__icon { display: none; }
  .timera-feat-row:hover { margin: 0 -20px; padding-left: 20px; padding-right: 20px; }
}

/* ===== TRUST STRIP ===== */
.trust-strip { background: var(--ink-2); border-bottom: 1px solid var(--ink-line); }
.trust-strip__inner {
  display: flex; align-items: stretch; justify-content: center; flex-wrap: wrap;
}
.trust-strip__item {
  font-family: var(--mono); font-size: 11px;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--on-ink-3); padding: 16px 28px;
  border-right: 1px solid var(--ink-line);
  white-space: nowrap; display: flex; align-items: center; gap: 8px;
}
.trust-strip__item:last-child { border-right: none; }
.trust-strip__item strong { color: var(--on-ink-2); font-weight: 500; }
@media (max-width: 760px) {
  .trust-strip__item { border-right: none; padding: 10px 16px; }
}

/* ===== HARDWARE SECTION ===== */
.hardware { background: var(--ink); color: var(--on-ink); padding: 100px 0; }
.hardware__inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: start;
}
.hardware__eyebrow {
  display: block; margin-bottom: 16px;
  font-family: var(--mono); font-size: 11px;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--primary);
}
.hardware__title {
  font-family: var(--display); font-weight: 600;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.05; letter-spacing: -0.02em;
  color: #fff; margin: 0 0 16px;
}
.hardware__title em { font-style: italic; color: var(--primary-hi); }
.hardware__sub { color: var(--on-ink-2); font-size: 15px; line-height: 1.65; margin: 0 0 32px; }
.hardware__visual {
  border-radius: var(--radius-xl); overflow: hidden;
  border: 1px solid var(--ink-line);
  margin-bottom: 24px;
}
.hardware__visual img { width: 100%; display: block; object-fit: cover; }
.hardware__visual-caption {
  font-family: var(--mono); font-size: 11px;
  letter-spacing: 0.08em; color: var(--on-ink-3);
  text-align: center; padding-top: 12px;
}
.hardware__product {
  background: var(--ink-2); border: 1px solid var(--ink-line);
  border-radius: var(--radius-lg); padding: 24px 28px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  margin-bottom: 16px;
}
.hardware__product-info { flex: 1; }
.hardware__product-name {
  font-family: var(--display); font-weight: 500;
  font-size: 17px; color: #fff; margin: 0 0 4px;
}
.hardware__product-desc { font-size: 13px; color: var(--on-ink-2); line-height: 1.5; margin: 0; }
.hardware__product-price { text-align: right; flex-shrink: 0; }
.hardware__product-price strong {
  font-family: var(--display); font-weight: 600;
  font-size: 22px; color: #fff; display: block;
}
.hardware__product-price span {
  font-family: var(--mono); font-size: 10px;
  color: var(--on-ink-3); letter-spacing: 0.06em; text-transform: uppercase;
}
.hardware__nfc-label {
  font-family: var(--mono); font-size: 11px;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--on-ink-3); margin-bottom: 12px;
}
.hardware__nfc-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
.nfc-pack {
  background: var(--ink-2); border: 1px solid var(--ink-line);
  border-radius: var(--radius-md); padding: 16px 18px;
  position: relative;
}
.nfc-pack--popular { border-color: color-mix(in oklch, var(--primary) 60%, transparent); }
.nfc-pack__badge {
  display: inline-block; margin-bottom: 6px;
  background: var(--primary); color: #fff;
  font-family: var(--mono); font-size: 9px;
  letter-spacing: 0.12em; text-transform: uppercase;
  padding: 2px 8px; border-radius: var(--radius-pill);
}
.nfc-pack__name { font-family: var(--display); font-weight: 500; font-size: 13px; color: #fff; margin: 0 0 2px; }
.nfc-pack__count { font-size: 12px; color: var(--on-ink-3); margin: 0 0 8px; }
.nfc-pack__price { font-family: var(--display); font-weight: 600; font-size: 17px; color: #fff; }
.hardware__nfc-single { font-family: var(--body); font-size: 13px; color: var(--on-ink-2); margin-top: 12px; }
.hardware__nfc-single strong { color: var(--primary-hi); }
.wiz-extra-cards-row { display: flex; align-items: center; justify-content: space-between; margin-top: 16px; padding: 12px 16px; background: var(--surface); border: 1px solid var(--surface-line); border-radius: var(--radius-md); }
.wiz-extra-cards-label { display: flex; align-items: center; gap: 8px; font-size: 14px; color: var(--on-surface-2); }
.wiz-extra-cards-label .lucide { width: 16px; height: 16px; color: var(--primary); }
.wiz-extra-cards-price-hint { font-family: var(--mono); font-size: 11px; color: var(--on-surface-3); margin-left: 4px; }
@media (max-width: 860px) {
  .hardware__inner { grid-template-columns: 1fr; gap: 48px; }
  .hardware__nfc-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .hardware { padding: 60px 0; }
  .hardware__product { flex-direction: column; align-items: flex-start; gap: 12px; }
  .hardware__product-price { text-align: left; }
}

/* ===== APP SECTION ===== */
.app-section { background: var(--surface); padding: 100px 0; overflow: hidden; }
.app-section__inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 40px; align-items: center;
  min-height: 580px;
}
.app-section__eyebrow {
  display: block; margin-bottom: 16px;
  font-family: var(--mono); font-size: 11px;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--primary);
}
.app-section__title {
  font-family: var(--display); font-weight: 600;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.05; letter-spacing: -0.02em;
  color: var(--on-surface); margin: 0 0 16px;
}
.app-section__title em { font-style: italic; color: var(--primary); }
.app-section__sub { font-size: 15px; line-height: 1.65; color: var(--on-surface-2); margin: 0 0 28px; }
.app-section__list {
  list-style: none; padding: 0; margin: 0 0 32px;
  display: flex; flex-direction: column; gap: 10px;
}
.app-section__list li {
  display: flex; gap: 12px; align-items: flex-start;
  font-size: 14px; color: var(--on-surface-2); line-height: 1.55;
}
.app-section__list li::before {
  content: ""; width: 6px; height: 6px; border-radius: 50%;
  background: var(--primary); flex-shrink: 0; margin-top: 7px;
}
.app-section__badges { display: flex; gap: 10px; flex-wrap: wrap; }
.app-badge {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 11px 20px; border-radius: var(--radius-md);
  background: var(--ink); color: #fff;
  font-family: var(--body);
  border: 1px solid rgba(255,255,255,0.12);
  transition: background 200ms var(--ease), border-color 200ms var(--ease);
}
.app-badge:hover { background: var(--ink-3); border-color: rgba(255,255,255,0.22); }
.app-badge svg { width: 22px; height: 22px; flex-shrink: 0; fill: #fff; }
.app-badge__text { display: flex; flex-direction: column; align-items: flex-start; gap: 2px; }
.app-badge__sub { font-size: 10px; font-weight: 400; letter-spacing: 0.04em; color: rgba(255,255,255,0.65); line-height: 1; }
.app-badge__main { font-size: 15px; font-weight: 600; line-height: 1; }
/* ── Phone-Visual: Grid-Ansatz, funktioniert auf ALLEN Screens ── */
.app-section__visual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: end;
  gap: 12px;
  width: 100%;
  height: clamp(340px, 50vw, 580px);
  overflow: hidden;
}
.app-section__phone {
  width: 100%;
  align-self: end;
}
.app-section__phone img {
  width: 100%; display: block;
  max-height: 100%;
  object-fit: contain;
  object-position: bottom;
}
/* linkes Phone — unten ausgerichtet (durch align-items: end) */
.app-section__phone:first-child {
  z-index: 2;
  align-self: end;
}
/* rechtes Phone — nach oben versetzt */
.app-section__phone--offset {
  z-index: 1;
  align-self: start;
  transform: translateY(clamp(20px, 4vw, 60px));
}

/* ─── Tablet Portrait + Handy (≤ 860px) ── */
@media (max-width: 860px) {
  .app-section__inner { grid-template-columns: 1fr; gap: 32px; min-height: unset; }
  .app-section__visual {
    height: clamp(260px, 55vw, 380px);
    gap: 8px;
  }
  .app-section__phone--offset {
    transform: translateY(clamp(16px, 3vw, 40px));
  }
}

/* ===== NFC CARD PREVIEW ===== */
.nfc-card-preview {
  display: flex; align-items: center; justify-content: center;
  margin-top: 32px;
  position: relative; height: 170px;
}
.nfc-card {
  /* Standard credit card ratio 85.6 × 54 mm */
  width: 232px; height: 146px;
  border-radius: 10px;
  background: #0d0f1e;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 16px 48px rgba(0,0,0,0.7), inset 0 1px 0 rgba(255,255,255,0.05);
  position: absolute;
  overflow: hidden;
}
.nfc-card--front {
  transform: rotate(-5deg) translateX(-44px);
  z-index: 2;
}
.nfc-card--back {
  transform: rotate(4deg) translateX(44px);
  z-index: 1;
}
/* Front card layout */
.nfc-card__inner {
  position: relative; width: 100%; height: 100%;
  padding: 13px 15px 16px;
  display: flex; flex-direction: column; justify-content: center; align-items: center;
}
.nfc-card__toprow {
  position: absolute; top: 13px; left: 15px; right: 15px;
  display: flex; justify-content: space-between; align-items: flex-start;
}
.nfc-card__logo-img {
  width: 26px; height: 26px;
  object-fit: contain;
}
.nfc-card__id {
  font-family: var(--mono); font-size: 8.5px; letter-spacing: 0.1em;
  color: rgba(255,255,255,0.3); line-height: 1; margin-top: 2px;
}
.nfc-card__brand {
  font-family: var(--display); font-weight: 700;
  font-size: 28px; letter-spacing: -0.02em; line-height: 1;
  color: #fff;
  display: flex; align-items: baseline; gap: 0;
}
.nfc-card__brand-dot { color: var(--primary-hi); }
/* Back card layout */
.nfc-card__back-inner {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
}
.nfc-card__logo-img--lg {
  width: 60px; height: 60px;
  object-fit: contain;
  filter: drop-shadow(0 0 16px rgba(90,92,248,0.6)) drop-shadow(0 0 32px rgba(70,72,212,0.3));
}
@media (max-width: 860px) {
  .nfc-card { width: 190px; height: 120px; }
  .nfc-card__brand { font-size: 22px; }
  .nfc-card-preview { height: 144px; }
  .nfc-card--front { transform: rotate(-5deg) translateX(-36px); }
  .nfc-card--back { transform: rotate(4deg) translateX(36px); }
}

/* ===== ROI CALCULATOR ===== */
.roi-calc { background: var(--ink); padding: 112px 0; }
.roi-calc__inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 20px; align-items: stretch;
}

/* --- Input card --- */
.roi-calc__inputs {
  background: var(--ink-2);
  border: 1px solid var(--ink-line);
  border-radius: var(--radius-xl);
  padding: 48px;
  display: flex; flex-direction: column; gap: 0;
}
.roi-calc__eyebrow {
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--primary-hi); margin-bottom: 20px; display: block;
}
.roi-calc__title {
  font-family: var(--display); font-weight: 600;
  font-size: clamp(22px, 2.4vw, 30px); line-height: 1.2; letter-spacing: -0.02em;
  color: var(--on-ink); margin: 0 0 12px;
}
.roi-calc__title em { font-style: italic; color: var(--primary-hi); }
.roi-calc__sub { font-size: 14px; color: var(--on-ink-3); margin: 0 0 36px; line-height: 1.6; }

/* Inputs row */
.roi-input-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 32px; }
.roi-input-group { display: flex; flex-direction: column; gap: 8px; }
.roi-label {
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--on-ink-3);
}

/* Stepper */
.roi-stepper {
  position: relative; display: flex; align-items: center;
  background: var(--ink-3); border: 1px solid var(--ink-line-strong);
  border-radius: var(--radius-md); overflow: hidden;
  transition: border-color 180ms var(--ease);
}
.roi-stepper:focus-within { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(70,72,212,0.2); }
.roi-stepper__btn {
  flex-shrink: 0; width: 36px; height: 48px;
  display: flex; align-items: center; justify-content: center;
  color: var(--on-ink-3); cursor: pointer; background: none; border: 0;
  transition: color 150ms var(--ease), background 150ms var(--ease);
}
.roi-stepper__btn:hover { color: var(--on-ink); background: rgba(255,255,255,0.05); }
.roi-stepper__btn .lucide { width: 14px; height: 14px; stroke-width: 1.5; }
.roi-stepper input[type="number"] {
  flex: 1; text-align: center; border: 0; background: transparent; outline: none;
  font-family: var(--body); font-size: 18px; font-weight: 600; color: var(--on-ink);
  -moz-appearance: textfield; padding: 0;
}
.roi-stepper input[type="number"]::-webkit-outer-spin-button,
.roi-stepper input[type="number"]::-webkit-inner-spin-button { -webkit-appearance: none; }
.roi-stepper__unit {
  position: absolute; right: 38px;
  font-size: 13px; font-weight: 500; color: var(--on-ink-2); pointer-events: none;
}

/* Slider */
.roi-slider-wrap { margin-bottom: 32px; }
.roi-slider-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 12px; }
.roi-slider-val {
  font-family: var(--mono); font-size: 11px; font-weight: 500;
  color: var(--primary-hi); background: rgba(70,72,212,0.15);
  padding: 3px 8px; border-radius: var(--radius-sm);
}
.roi-slider {
  -webkit-appearance: none; appearance: none;
  width: 100%; height: 4px; border-radius: 9999px; outline: none; cursor: pointer;
  background: linear-gradient(to right, var(--primary) 27.3%, rgba(255,255,255,0.1) 27.3%);
}
.roi-slider::-webkit-slider-thumb {
  -webkit-appearance: none; appearance: none;
  width: 18px; height: 18px; border-radius: 50%;
  background: var(--primary); cursor: pointer;
  box-shadow: 0 0 0 3px rgba(70,72,212,0.3);
  transition: box-shadow 180ms var(--ease);
}
.roi-slider::-webkit-slider-thumb:hover { box-shadow: 0 0 0 5px rgba(70,72,212,0.4); }
.roi-slider::-moz-range-thumb {
  width: 18px; height: 18px; border: none; border-radius: 50%;
  background: var(--primary); cursor: pointer;
}
.roi-slider-bounds {
  display: flex; justify-content: space-between; margin-top: 8px;
  font-family: var(--mono); font-size: 9px; color: var(--on-ink-3);
}

/* Note */
.roi-note {
  display: flex; gap: 10px; align-items: flex-start; margin-top: auto;
  padding-top: 24px; border-top: 1px solid var(--ink-line);
}
.roi-note .lucide { width: 13px; height: 13px; stroke-width: 1.5; color: var(--on-ink-3); flex-shrink: 0; margin-top: 1px; }
.roi-note span { font-size: 11px; color: var(--on-ink-3); line-height: 1.6; }

/* --- Results card --- */
.roi-calc__results {
  background: var(--ink-3); border: 1px solid rgba(70,72,212,0.2);
  border-radius: var(--radius-xl); padding: 48px;
  display: flex; flex-direction: column; color: var(--on-ink);
}
.roi-results__top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 24px; }
.roi-results__label {
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--on-ink-3);
}
.roi-plan-badge {
  font-family: var(--mono); font-size: 9px; letter-spacing: 0.08em;
  text-transform: uppercase; padding: 4px 10px; border-radius: var(--radius-pill);
  background: rgba(70,72,212,0.15); color: var(--primary-hi);
  border: 1px solid rgba(70,72,212,0.22);
}
.roi-results__saving {
  font-family: var(--display); font-weight: 600;
  font-size: clamp(44px, 5vw, 62px); letter-spacing: -0.03em; line-height: 1;
  color: var(--primary-hi);
  transition: opacity 120ms var(--ease);
  margin-bottom: 8px;
}
.roi-results__sub { font-size: 11px; color: var(--on-ink-3); margin: 0 0 32px; font-family: var(--mono); letter-spacing: 0.04em; }
.roi-results__divider { border: 0; border-top: 1px solid var(--ink-line); margin-bottom: 24px; }
.roi-results__rows { display: flex; flex-direction: column; gap: 16px; margin-bottom: 24px; }
.roi-results__row { display: flex; align-items: center; gap: 10px; }
.roi-results__row-dot {
  width: 6px; height: 6px; border-radius: 50%; flex-shrink: 0;
  background: var(--primary);
}
.roi-results__row-dot--muted { background: var(--on-ink-3); }
.roi-results__row-label { font-size: 13px; color: var(--on-ink-3); flex: 1; }
.roi-results__row-val { font-family: var(--mono); font-size: 13px; font-weight: 500; color: var(--on-ink-2); }
.roi-roi-box {
  display: flex; justify-content: space-between; align-items: center;
  background: rgba(255,255,255,0.04); border: 1px solid var(--ink-line);
  border-radius: var(--radius-md); padding: 14px 18px; margin-bottom: 32px; margin-top: auto;
}
.roi-roi-box__label { font-size: 12px; color: var(--on-ink-3); }
.roi-roi-box__val { font-family: var(--display); font-weight: 600; font-size: 18px; color: var(--on-ink); }
.roi-calc__cta { width: 100%; justify-content: center; margin-top: 0; border-radius: var(--radius-md); }

@media (max-width: 860px) {
  .roi-calc__inner { grid-template-columns: 1fr; }
  .roi-calc__inputs, .roi-calc__results { padding: 32px 24px; }
  .roi-input-row { grid-template-columns: 1fr 1fr; gap: 12px; }
}
@media (max-width: 480px) {
  .roi-input-row { grid-template-columns: 1fr; }
}

/* ===== ONBOARDING TEASER ===== */
.onboarding-teaser {
  background: var(--ink-2); color: var(--on-ink);
  border-top: 1px solid var(--ink-line);
  border-bottom: 1px solid var(--ink-line);
  padding: 88px 0;
}
.onboarding-teaser__inner { max-width: 760px; margin: 0 auto; text-align: center; }
.onboarding-teaser__eyebrow {
  display: block; margin-bottom: 20px;
  font-family: var(--mono); font-size: 11px;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--primary);
}
.onboarding-teaser__title {
  font-family: var(--display); font-weight: 600;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.05; letter-spacing: -0.02em;
  color: #fff; margin: 0 0 16px;
}
.onboarding-teaser__title em { font-style: italic; color: var(--primary-hi); }
.onboarding-teaser__sub { color: var(--on-ink-2); font-size: 15px; line-height: 1.65; margin: 0 0 48px; }
.onboarding-teaser__steps {
  display: flex; justify-content: center; align-items: flex-start;
  gap: 0; margin-bottom: 48px; flex-wrap: wrap;
}
.onboarding-teaser__step {
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  padding: 0 32px; border-right: 1px solid var(--ink-line);
}
.onboarding-teaser__step:last-child { border-right: none; }
.onboarding-teaser__step-num {
  font-family: var(--mono); font-size: 11px;
  color: var(--primary); letter-spacing: 0.1em; margin-bottom: 2px;
}
.onboarding-teaser__step-label {
  font-size: 13px; color: var(--on-ink-2);
  text-align: center; max-width: 110px; line-height: 1.4;
}
.onboarding-teaser__coming {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 16px; border-radius: var(--radius-pill);
  border: 1px solid var(--ink-line-strong);
  font-family: var(--mono); font-size: 11px;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--on-ink-3);
  margin-bottom: 24px;
}
.onboarding-teaser__coming::before {
  content: ""; width: 6px; height: 6px; border-radius: 50%;
  background: var(--primary-hi); box-shadow: 0 0 8px var(--primary-hi);
}
@media (max-width: 620px) {
  .onboarding-teaser__step { border-right: none; padding: 12px 20px; }
}

/* ===== ONBOARDING WIZARD ===== */
.wizard-page-body { background: var(--surface); }
.wizard-page { min-height: 100vh; display: flex; flex-direction: column; }

/* Topbar */
.wizard-topbar {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 32px; height: 60px;
  background: var(--surface-card); border-bottom: 1px solid var(--surface-line);
  position: sticky; top: 0; z-index: 100;
}
.wizard-topbar__back {
  display: flex; align-items: center; gap: 8px;
  font-family: var(--body); font-size: 14px; color: var(--on-surface-2);
  text-decoration: none; transition: color 0.2s;
}
.wizard-topbar__back:hover { color: var(--primary); }
.wizard-topbar__back svg { width: 16px; height: 16px; }
.wizard-topbar__logo { font-family: var(--display); font-weight: 700; font-size: 18px; letter-spacing: -0.04em; color: var(--on-surface); text-decoration: none; }
.wizard-topbar__right { display: flex; align-items: center; }
.wizard-topbar__secure {
  display: flex; align-items: center; gap: 6px;
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--on-surface-3);
}
.wizard-topbar__secure svg { width: 14px; height: 14px; color: #22c55e; }

/* Progress bar */
.wizard-progress-bar { height: 3px; background: var(--surface-line); }
.wizard-progress-fill { height: 100%; background: var(--primary); transition: width 0.4s var(--ease); width: 0%; }

/* Step nav */
.wizard-steps-nav {
  display: flex; justify-content: center; align-items: flex-start; gap: 0;
  background: var(--surface-card); border-bottom: 1px solid var(--surface-line);
  padding: 16px 24px; overflow-x: auto;
}
.wizard-step-dot {
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  padding: 0 20px; cursor: default; position: relative;
}
.wizard-step-dot:not(:last-child)::after {
  content: ''; position: absolute; top: 12px; right: 0; width: 100%;
  height: 1px; background: var(--surface-line); z-index: 0;
}
.wizard-step-dot__num {
  width: 24px; height: 24px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--mono); font-size: 11px; font-weight: 500;
  background: var(--surface-line); color: var(--on-surface-3);
  transition: background 0.2s, color 0.2s; position: relative; z-index: 1;
}
.wizard-step-dot__label {
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--on-surface-3); white-space: nowrap;
}
.wizard-step-dot.is-active .wizard-step-dot__num { background: var(--primary); color: #fff; }
.wizard-step-dot.is-active .wizard-step-dot__label { color: var(--primary); }
.wizard-step-dot.is-done .wizard-step-dot__num { background: color-mix(in oklch, var(--primary) 15%, white); color: var(--primary); }
.wizard-step-dot.is-done .wizard-step-dot__label { color: var(--on-surface-2); }

/* Body */
.wizard-body { flex: 1; padding: 40px 20px 120px; }
.wizard-inner { max-width: 700px; margin: 0 auto; }
.wizard-card {
  background: var(--surface-card); border-radius: var(--radius-xl);
  box-shadow: var(--shadow-1); padding: 40px;
  border: 1px solid var(--surface-line);
}
.wizard-card--wide { max-width: 960px; margin: 0 auto; }
.wizard-card--success { text-align: center; padding: 60px 40px; }

/* Wizard typography */
.wizard-eyebrow {
  display: block; font-family: var(--mono); font-size: 11px; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--primary); margin-bottom: 12px;
}
.wizard-title {
  font-family: var(--display); font-weight: 600; font-size: 28px;
  line-height: 1.2; letter-spacing: -0.03em; color: var(--on-surface);
  margin: 0 0 8px;
}
.wizard-title em { font-style: italic; color: var(--primary); }
.wizard-subtitle { font-size: 15px; color: var(--on-surface-2); margin: 0 0 32px; }

/* Form fields */
.wizard-field { margin-bottom: 24px; }
.wizard-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.wizard-label {
  display: block; font-family: var(--mono); font-size: 11px; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--on-surface-2); margin-bottom: 8px;
}
.wizard-req { color: var(--primary); }
.wizard-input {
  width: 100%; padding: 10px 14px; border-radius: var(--radius-md);
  border: 1px solid var(--surface-line); background: var(--surface);
  font-family: var(--body); font-size: 15px; color: var(--on-surface);
  outline: none; transition: border-color 0.2s, box-shadow 0.2s; appearance: none;
}
.wizard-input:focus { border-color: var(--primary); box-shadow: 0 0 0 3px color-mix(in oklch, var(--primary) 15%, white); }
.wizard-input--mono { font-family: var(--mono); font-size: 13px; }
.wiz-id-status { font-size: 13px; margin-top: 6px; display: flex; align-items: center; gap: 6px; min-height: 20px; }
.wiz-id-status .lucide { width: 14px; height: 14px; flex-shrink: 0; }
.wiz-id-checking { color: var(--on-surface-3); font-family: var(--mono); font-size: 12px; }
.wiz-id-ok { color: #16a34a; font-size: 13px; }
.wiz-id-taken { color: #dc2626; font-size: 13px; }
.wiz-price-hint { display: flex; align-items: center; gap: 8px; margin-top: 8px; padding: 10px 14px; background: color-mix(in oklch, var(--primary) 8%, white); border-radius: 8px; font-size: 13px; color: var(--primary); font-family: var(--body); }
.wiz-price-hint .lucide { width: 14px; height: 14px; flex-shrink: 0; }
.wizard-select-wrap { position: relative; }
.wizard-select { cursor: pointer; padding-right: 36px; }
.wizard-select-arrow { position: absolute; right: 12px; top: 50%; transform: translateY(-50%); width: 16px; height: 16px; color: var(--on-surface-3); pointer-events: none; }
.wizard-input-group { display: flex; align-items: center; gap: 0; }
.wizard-input-group .wizard-input { border-radius: var(--radius-md) 0 0 var(--radius-md); }
.wizard-input-suffix {
  padding: 10px 14px; background: var(--surface-line); border: 1px solid var(--surface-line);
  border-left: none; border-radius: 0 var(--radius-md) var(--radius-md) 0;
  font-family: var(--mono); font-size: 13px; color: var(--on-surface-3); white-space: nowrap;
}
.wizard-error { font-size: 13px; color: #ef4444; margin-top: 6px; min-height: 18px; }
.wizard-field-hint { font-size: 13px; color: var(--on-surface-3); margin: 6px 0 0; }
.wizard-hint {
  display: flex; align-items: flex-start; gap: 10px; padding: 12px 16px;
  background: color-mix(in oklch, var(--primary) 8%, white);
  border: 1px solid color-mix(in oklch, var(--primary) 20%, white);
  border-radius: var(--radius-md); font-size: 14px; color: var(--primary); margin-top: 12px;
}
.wizard-warn {
  display: flex; align-items: flex-start; gap: 10px; padding: 14px 16px;
  background: #fef3c7; border: 1px solid #fcd34d; border-radius: var(--radius-md);
  font-size: 13px; color: #92400e; line-height: 1.6; margin-top: 12px;
}
.wizard-warn svg { width: 18px; height: 18px; flex-shrink: 0; margin-top: 2px; color: #d97706; }
.wizard-warn strong { color: #78350f; }

/* Tiles */
.wiz-tiles { display: grid; gap: 10px; }
.wiz-tiles--4 { grid-template-columns: repeat(4, 1fr); }
.wiz-tiles--2 { grid-template-columns: repeat(2, 1fr); }
.wiz-tile {
  padding: 14px 12px; border-radius: var(--radius-md);
  border: 1px solid var(--surface-line); background: var(--surface);
  cursor: pointer; text-align: center; transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
  font-family: var(--body);
}
.wiz-tile:hover { border-color: var(--primary); background: color-mix(in oklch, var(--primary) 4%, white); }
.wiz-tile.is-selected {
  border-color: var(--primary); background: color-mix(in oklch, var(--primary) 8%, white);
  box-shadow: 0 0 0 3px color-mix(in oklch, var(--primary) 15%, white);
}
.wiz-tile__val { display: block; font-family: var(--display); font-size: 15px; font-weight: 600; color: var(--on-surface); }
.wiz-tile__sub { display: block; font-size: 12px; color: var(--on-surface-3); margin-top: 2px; }
.wiz-tile--desc {
  display: flex; flex-direction: column; align-items: flex-start;
  gap: 6px; padding: 16px; text-align: left;
}
.wiz-tile--desc svg { width: 20px; height: 20px; color: var(--primary); flex-shrink: 0; }
.wiz-tile--desc .wiz-tile__val { text-align: left; }
.wiz-tile__desc { font-size: 13px; color: var(--on-surface-2); line-height: 1.5; }

/* Day checkboxes */
.wiz-days { display: flex; gap: 8px; flex-wrap: wrap; }
.wiz-day {
  width: 44px; height: 44px; border-radius: var(--radius-md);
  border: 1px solid var(--surface-line); background: var(--surface);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: border-color 0.2s, background 0.2s;
}
.wiz-day input { display: none; }
.wiz-day span { font-family: var(--mono); font-size: 12px; color: var(--on-surface-3); }
.wiz-day.is-checked { border-color: var(--primary); background: color-mix(in oklch, var(--primary) 10%, white); }
.wiz-day.is-checked span { color: var(--primary); font-weight: 500; }
.wiz-day:hover { border-color: var(--primary); }

/* Custom checkboxes */
.wiz-checks { display: flex; flex-direction: column; gap: 10px; }
.wiz-check {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 14px; border-radius: var(--radius-md);
  border: 1px solid var(--surface-line); cursor: pointer;
  transition: border-color 0.2s; font-size: 14px; color: var(--on-surface-2);
}
.wiz-check input { display: none; }
.wiz-check__box {
  width: 18px; height: 18px; border-radius: 4px; flex-shrink: 0;
  border: 1.5px solid var(--surface-line); background: var(--surface);
  transition: border-color 0.2s, background 0.2s; position: relative;
}
.wiz-check input:checked ~ .wiz-check__box {
  border-color: var(--primary); background: var(--primary);
}
.wiz-check input:checked ~ .wiz-check__box::after {
  content: ''; position: absolute; left: 4px; top: 2px;
  width: 6px; height: 10px; border: 2px solid #fff; border-top: none; border-left: none;
  transform: rotate(45deg);
}
.wiz-check:has(input:checked) { border-color: var(--primary); }

/* Toggle */
.wizard-toggle-row { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.wiz-toggle {
  width: 44px; height: 24px; border-radius: var(--radius-pill);
  background: var(--surface-line); border: none; cursor: pointer;
  position: relative; transition: background 0.2s; flex-shrink: 0;
}
.wiz-toggle__thumb {
  width: 18px; height: 18px; border-radius: 50%; background: #fff;
  position: absolute; top: 3px; left: 3px;
  transition: transform 0.2s; box-shadow: 0 1px 3px rgba(0,0,0,0.15);
}
.wiz-toggle[aria-pressed="true"] { background: var(--primary); }
.wiz-toggle[aria-pressed="true"] .wiz-toggle__thumb { transform: translateX(20px); }

/* Password */
.wizard-pw-wrap { position: relative; }
.wizard-pw-wrap .wizard-input { padding-right: 44px; }
.wizard-pw-toggle {
  position: absolute; right: 12px; top: 50%; transform: translateY(-50%);
  background: none; border: none; cursor: pointer; color: var(--on-surface-3);
  display: flex; align-items: center; padding: 4px;
}
.wizard-pw-toggle:hover { color: var(--primary); }
.wizard-pw-toggle svg { width: 16px; height: 16px; }
.wizard-pw-strength { display: flex; align-items: center; gap: 10px; margin-top: 8px; }
.wizard-pw-bar { flex: 1; height: 4px; background: var(--surface-line); border-radius: 2px; overflow: hidden; }
.wizard-pw-bar__fill { height: 100%; width: 0%; border-radius: 2px; transition: width 0.3s, background 0.3s; }
.wizard-pw-label { font-family: var(--mono); font-size: 11px; color: var(--on-surface-3); min-width: 40px; }

/* Billing toggle */
.wiz-billing-toggle {
  display: inline-flex; border: 1px solid var(--surface-line); border-radius: var(--radius-pill);
  background: var(--surface); padding: 4px; gap: 4px; margin-bottom: 8px;
}
.wiz-billing-btn {
  padding: 8px 18px; border-radius: var(--radius-pill); border: none;
  background: none; cursor: pointer; font-family: var(--body); font-size: 14px; font-weight: 500;
  color: var(--on-surface-2); transition: background 0.2s, color 0.2s; display: flex; align-items: center; gap: 8px;
}
.wiz-billing-btn.is-active { background: var(--surface-card); color: var(--on-surface); box-shadow: var(--shadow-1); }
.wiz-billing-badge {
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.06em;
  background: #dcfce7; color: #16a34a; padding: 2px 7px; border-radius: var(--radius-pill);
}
.wiz-no-contract { text-align: center; margin-bottom: 28px; }

/* Plan cards */
.wiz-plans { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin: 0 0 8px; }
.wiz-plan-card {
  background: var(--surface-card); border: 1px solid var(--surface-line);
  border-radius: var(--radius-lg); padding: 32px 28px;
  display: flex; flex-direction: column; position: relative;
  cursor: pointer; transition: transform 220ms var(--ease), box-shadow 220ms var(--ease);
}
.wiz-plan-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-2); }
.wiz-plan-card.is-selected { border-color: var(--primary); box-shadow: 0 0 0 4px color-mix(in oklch, var(--primary) 12%, white); transform: translateY(-3px); }
.wiz-plan-card--featured { background: var(--ink); border-color: var(--ink); }
.wiz-plan-card--featured:hover { box-shadow: 0 8px 32px rgba(70,72,212,0.25); }
.wiz-plan-card--featured.is-selected { border-color: var(--primary-hi); box-shadow: 0 0 0 4px color-mix(in oklch, var(--primary) 30%, transparent); }
.wiz-plan-badge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--primary); color: #fff;
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.14em;
  padding: 5px 14px; border-radius: var(--radius-pill); white-space: nowrap;
}
.wiz-plan-range-badge {
  display: inline-flex;
  font-family: var(--mono); font-size: 11px; font-weight: 500;
  color: var(--primary);
  background: color-mix(in oklch, var(--primary) 10%, white);
  border: 1px solid color-mix(in oklch, var(--primary) 22%, white);
  border-radius: var(--radius-pill); padding: 4px 12px; margin-bottom: 16px;
  letter-spacing: 0.06em;
}
.wiz-plan-card--featured .wiz-plan-range-badge {
  color: var(--primary-hi);
  background: color-mix(in oklch, var(--primary-hi) 14%, var(--ink));
  border-color: color-mix(in oklch, var(--primary-hi) 28%, var(--ink));
}
.wiz-plan-name { font-family: var(--display); font-size: 22px; font-weight: 500; font-style: italic; color: var(--on-surface); margin: 0 0 20px; }
.wiz-plan-card--featured .wiz-plan-name { color: var(--on-ink); }
.wiz-plan-price { display: flex; align-items: baseline; gap: 2px; margin-bottom: 4px; }
.wiz-plan-amount { font-family: var(--display); font-size: 48px; font-weight: 600; letter-spacing: -0.02em; line-height: 1; color: var(--on-surface); }
.wiz-plan-card--featured .wiz-plan-amount { color: var(--on-ink); }
.wiz-plan-unit { font-family: var(--body); font-size: 18px; font-weight: 400; color: var(--on-surface-3); line-height: 1; }
.wiz-plan-card--featured .wiz-plan-unit { color: var(--on-ink-3); }
.wiz-plan-period { font-family: var(--mono); font-size: 11px; color: var(--on-surface-3); letter-spacing: 0.06em; margin: 6px 0 0; }
.wiz-plan-card--featured .wiz-plan-period { color: var(--on-ink-3); }
.wiz-plan-all-label {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; color: var(--on-surface-2);
  margin: 20px 0 24px; flex: 1;
}
.wiz-plan-all-label .lucide { width: 15px; height: 15px; color: var(--primary); flex-shrink: 0; stroke-width: 1.5; }
.wiz-plan-card--featured .wiz-plan-all-label { color: var(--on-ink-2); }
.wiz-plan-card--featured .wiz-plan-all-label .lucide { color: var(--primary-hi); }
.wiz-plan-features { list-style: none; padding: 0; margin: 0 0 20px; display: flex; flex-direction: column; gap: 7px; }
.wiz-plan-features li { display: flex; align-items: center; gap: 8px; font-size: 13px; }
.wiz-plan-features li svg { width: 14px; height: 14px; flex-shrink: 0; }
.wiz-plan-features li.has { color: var(--on-surface-2); }
.wiz-plan-features li.has svg { color: var(--primary); }
.wiz-plan-select {
  width: 100%; padding: 13px 20px; border-radius: var(--radius-pill);
  border: none; background: var(--ink); color: #fff;
  font-family: var(--body); font-size: 13px; font-weight: 500; letter-spacing: 0.06em; text-transform: uppercase;
  cursor: pointer; transition: background 0.2s, transform 0.15s;
}
.wiz-plan-select:hover { background: var(--primary); transform: translateY(-1px); }
.wiz-plan-card--featured .wiz-plan-select { background: #fff; color: var(--ink); }
.wiz-plan-card--featured .wiz-plan-select:hover { background: var(--primary); color: #fff; }
.wiz-plan-card.is-selected .wiz-plan-select { background: var(--primary); color: #fff; }
.wiz-plan-card--featured.is-selected .wiz-plan-select { background: var(--primary-hi); color: var(--ink); }
.wiz-plan-card--locked { opacity: 0.35; pointer-events: none; user-select: none; }
.wiz-plan-calc { font-family: var(--mono); font-size: 11px; color: var(--on-surface-3); letter-spacing: 0.04em; margin: 0 0 16px; min-height: 16px; }
.wiz-plan-card--featured .wiz-plan-calc { color: var(--on-ink-3); }

/* Hardware */
.wiz-hw-section { margin-bottom: 32px; padding-bottom: 32px; border-bottom: 1px solid var(--surface-line); }
.wiz-hw-section:last-of-type { border-bottom: none; }
.wiz-hw-title { font-family: var(--display); font-size: 16px; font-weight: 600; color: var(--on-surface); margin: 0 0 16px; }
.wiz-hw-item { display: grid; grid-template-columns: 120px 1fr auto; gap: 20px; align-items: start; }
.wiz-hw-item__img {
  width: 120px; height: 120px; border-radius: var(--radius-md); overflow: hidden;
  background: var(--surface); border: 1px solid var(--surface-line); display: flex; align-items: center; justify-content: center;
}
.wiz-hw-item__img img { width: 100%; height: 100%; object-fit: cover; }
.wiz-hw-item__desc { font-size: 14px; color: var(--on-surface-2); margin: 0 0 8px; line-height: 1.6; }
.wiz-hw-item__note {
  display: flex; align-items: flex-start; gap: 6px;
  font-size: 12px; color: var(--on-surface-3); margin: 0 0 6px;
}
.wiz-hw-item__note svg { width: 13px; height: 13px; flex-shrink: 0; margin-top: 1px; }
.wiz-hw-item__hint { font-size: 12px; color: var(--on-surface-3); font-style: italic; }
.wiz-hw-price { font-family: var(--display); font-size: 18px; font-weight: 600; color: var(--on-surface); margin-bottom: 12px; }
.wiz-hw-price__unit { font-size: 12px; font-weight: 400; color: var(--on-surface-3); font-family: var(--body); }
.wiz-hw-item__order { display: flex; flex-direction: column; align-items: center; gap: 8px; min-width: 120px; }
.wiz-stepper { display: flex; align-items: center; gap: 0; }
.wiz-stepper__btn {
  width: 32px; height: 32px; border-radius: var(--radius-sm);
  border: 1px solid var(--surface-line); background: var(--surface);
  font-size: 18px; line-height: 1; cursor: pointer; color: var(--on-surface-2);
  display: flex; align-items: center; justify-content: center;
  transition: border-color 0.2s, color 0.2s;
}
.wiz-stepper__btn:hover { border-color: var(--primary); color: var(--primary); }
.wiz-stepper__val {
  width: 48px; height: 32px; text-align: center;
  border: 1px solid var(--surface-line); border-left: none; border-right: none;
  font-family: var(--mono); font-size: 14px; font-weight: 500; color: var(--on-surface);
  background: var(--surface-card);
}
.wiz-card-packages { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; }
.wiz-pkg {
  border: 1.5px solid var(--surface-line); border-radius: var(--radius-md);
  padding: 14px 12px; cursor: pointer; text-align: center; position: relative;
  display: flex; flex-direction: column; align-items: center; gap: 4px;
  transition: border-color 0.2s, background 0.2s;
}
.wiz-pkg:hover { border-color: var(--primary); }
.wiz-pkg.is-selected { border-color: var(--primary); background: color-mix(in oklch, var(--primary) 6%, white); }
.wiz-pkg__badge {
  position: absolute; top: -9px; left: 50%; transform: translateX(-50%);
  font-family: var(--mono); font-size: 9px; letter-spacing: 0.08em; text-transform: uppercase;
  background: var(--primary); color: #fff; padding: 2px 8px; border-radius: var(--radius-pill);
  white-space: nowrap;
}
.wiz-pkg__badge--green { background: #16a34a; }
.wiz-pkg__name { font-family: var(--body); font-size: 13px; font-weight: 500; color: var(--on-surface); }
.wiz-pkg__cards { font-family: var(--mono); font-size: 11px; color: var(--on-surface-3); }
.wiz-pkg__price { font-family: var(--display); font-size: 16px; font-weight: 600; color: var(--primary); margin-top: 4px; }
.wiz-hw-total {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 18px; background: var(--surface); border-radius: var(--radius-md);
  border: 1px solid var(--surface-line); font-size: 15px; color: var(--on-surface-2);
  margin-top: 16px;
}
.wiz-hw-total strong { font-family: var(--display); font-size: 20px; font-weight: 600; color: var(--on-surface); }
.wiz-hw-skip { text-align: center; margin-top: 24px; }
.wiz-skip-btn {
  background: none; border: none; cursor: pointer; font-size: 14px; color: var(--on-surface-3);
  display: inline-flex; align-items: center; gap: 6px; text-decoration: underline; text-decoration-color: transparent;
  transition: color 0.2s; padding: 8px;
}
.wiz-skip-btn:hover { color: var(--on-surface); text-decoration-color: var(--on-surface); }
.wiz-skip-btn svg { width: 14px; height: 14px; }

/* Summary */
.wiz-summary {
  background: var(--surface); border-radius: var(--radius-md);
  border: 1px solid var(--surface-line); overflow: hidden; margin-bottom: 28px;
}
.wiz-summary-table { width: 100%; border-collapse: collapse; font-size: 14px; }
.wiz-summary-table tr { border-bottom: 1px solid var(--surface-line); }
.wiz-summary-table tr:last-child { border-bottom: none; }
.wiz-summary-key { padding: 11px 18px; color: var(--on-surface-3); font-family: var(--mono); font-size: 12px; width: 40%; }
.wiz-summary-val { padding: 11px 18px; color: var(--on-surface); font-weight: 500; font-size: 14px; }
.wiz-summary-divider { padding: 10px 18px; font-family: var(--mono); font-size: 11px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--on-surface-3); background: var(--surface); border-top: 1px solid var(--surface-line); }

/* Legal checkboxes */
.wiz-legal-box {
  border: 1px solid var(--surface-line); border-radius: var(--radius-lg);
  padding: 24px; margin-bottom: 24px;
}
.wiz-legal-title { font-family: var(--display); font-size: 16px; font-weight: 600; color: var(--on-surface); margin: 0 0 6px; }
.wiz-legal-hint { font-size: 13px; color: var(--on-surface-3); margin: 0 0 20px; }
.wiz-consents { display: flex; flex-direction: column; gap: 0; }
.wiz-consent {
  display: flex; align-items: flex-start; gap: 12px; padding: 14px 0;
  border-bottom: 1px solid var(--surface-line); cursor: pointer;
}
.wiz-consent:last-child { border-bottom: none; }
.wiz-consent input { display: none; }
.wiz-consent__box {
  width: 20px; height: 20px; border-radius: 5px; flex-shrink: 0; margin-top: 1px;
  border: 1.5px solid var(--surface-line); background: var(--surface);
  transition: border-color 0.2s, background 0.2s; position: relative;
}
.wiz-consent input:checked ~ .wiz-consent__box { border-color: var(--primary); background: var(--primary); }
.wiz-consent input:checked ~ .wiz-consent__box::after {
  content: ''; position: absolute; left: 5px; top: 2px;
  width: 7px; height: 11px; border: 2px solid #fff; border-top: none; border-left: none;
  transform: rotate(45deg);
}
.wiz-consent__text { font-size: 14px; color: var(--on-surface-2); line-height: 1.6; }
.wiz-consent__req { font-family: var(--mono); font-size: 11px; color: var(--on-surface-3); }
.wiz-consent__opt { font-family: var(--mono); font-size: 11px; color: var(--on-surface-3); }
.wiz-consent__link { color: var(--primary); text-decoration: none; font-weight: 500; }
.wiz-consent__link:hover { text-decoration: underline; }
.wiz-consent--optional { opacity: 0.8; }
.wiz-consent-counter {
  margin-top: 16px; padding: 10px 16px;
  background: var(--surface); border-radius: var(--radius-md);
  font-family: var(--mono); font-size: 12px; color: var(--on-surface-3); text-align: center;
  transition: background 0.3s, color 0.3s;
}
.wiz-consent-counter.is-complete { background: #dcfce7; color: #16a34a; }
.wiz-free-notice {
  display: flex; align-items: flex-start; gap: 12px; padding: 14px 18px;
  background: color-mix(in oklch, var(--primary) 6%, white);
  border: 1px solid color-mix(in oklch, var(--primary) 20%, white);
  border-radius: var(--radius-md); font-size: 14px; color: var(--on-surface-2);
  line-height: 1.6; margin-bottom: 20px;
}
.wiz-free-notice svg { width: 18px; height: 18px; flex-shrink: 0; color: var(--primary); margin-top: 2px; }
.wiz-free-notice strong { color: var(--on-surface); }
.wiz-submit-btn { width: 100%; justify-content: center; font-size: 16px; padding: 14px 24px; }
.wiz-submit-btn:disabled { opacity: 0.4; cursor: not-allowed; pointer-events: none; }
.wiz-submit-note { text-align: center; font-size: 12px; color: var(--on-surface-3); margin-top: 10px; }

/* Bottom nav bar */
.wizard-nav-bar {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 90;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 16px 32px; background: var(--surface-card);
  border-top: 1px solid var(--surface-line);
  box-shadow: 0 -4px 24px rgba(12, 15, 28, 0.06);
}
.wizard-nav-center {
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--on-surface-3); white-space: nowrap;
}
.wizard-nav-back, .wizard-nav-next { flex-shrink: 0; }

/* Leave dialog */
.wiz-dialog-overlay {
  position: fixed; inset: 0; background: rgba(12,15,28,0.5); z-index: 200;
  display: flex; align-items: center; justify-content: center; padding: 20px;
}
.wiz-dialog {
  background: var(--surface-card); border-radius: var(--radius-xl);
  padding: 32px; max-width: 400px; width: 100%;
  box-shadow: var(--shadow-2);
}
.wiz-dialog__title { font-family: var(--display); font-size: 20px; font-weight: 600; margin: 0 0 8px; color: var(--on-surface); }
.wiz-dialog__body { font-size: 15px; color: var(--on-surface-2); margin: 0 0 24px; }
.wiz-dialog__actions { display: flex; gap: 12px; justify-content: flex-end; }

/* Success */
.wiz-success-icon { display: flex; justify-content: center; margin-bottom: 20px; }
.wiz-success-icon svg { width: 56px; height: 56px; color: #22c55e; }

/* Wide card inner wrapper */
.wizard-card--wide .wizard-inner-wide { max-width: 100%; }

/* Mobile */
@media (max-width: 768px) {
  .wizard-topbar { padding: 0 16px; }
  .wizard-topbar__secure { display: none; }
  .wizard-steps-nav { gap: 0; padding: 12px 8px; }
  .wizard-step-dot { padding: 0 10px; }
  .wizard-step-dot__label { display: none; }
  .wizard-body { padding: 24px 12px 100px; }
  .wizard-card { padding: 24px 20px; }
  .wizard-row { grid-template-columns: 1fr; }
  .wiz-tiles--4 { grid-template-columns: repeat(2, 1fr); }
  .wiz-tiles--2 { grid-template-columns: 1fr; }
  .wiz-plans { grid-template-columns: 1fr; }
  .wiz-card-packages { grid-template-columns: repeat(2, 1fr); }
  .wiz-hw-item { grid-template-columns: 80px 1fr; grid-template-rows: auto auto; }
  .wiz-hw-item__order { grid-column: 1 / -1; flex-direction: row; justify-content: flex-start; }
  .wizard-nav-bar { padding: 12px 16px; }
  .wizard-nav-center { display: none; }
  .wiz-billing-toggle { width: 100%; }
  .wiz-billing-btn { flex: 1; justify-content: center; }
}
@media (max-width: 480px) {
  .wiz-card-packages { grid-template-columns: 1fr 1fr; }
}

/* ===== SCROLL REVEAL ===== */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity 700ms var(--ease), transform 700ms var(--ease); }
.reveal.is-in { opacity: 1; transform: translateY(0); }
.reveal[data-d="1"] { transition-delay: 80ms; }
.reveal[data-d="2"] { transition-delay: 160ms; }
.reveal[data-d="3"] { transition-delay: 240ms; }
.reveal[data-d="4"] { transition-delay: 320ms; }

/* ===== COOKIE BANNER ===== */
.cookie-banner {
  position: fixed; bottom: 20px; left: 50%; transform: translateX(-50%);
  z-index: 9999; width: calc(100% - 32px); max-width: 420px;
  background: var(--ink-2); border: 1px solid rgba(255,255,255,0.09);
  border-radius: 16px; padding: 20px;
  box-shadow: 0 8px 48px rgba(0,0,0,0.5);
  display: flex; flex-direction: column; gap: 12px;
  animation: cookie-slide-up 0.35s cubic-bezier(0.22,1,0.36,1);
}
.cookie-banner[hidden] { display: none !important; }
@keyframes cookie-slide-up {
  from { opacity: 0; transform: translateX(-50%) translateY(16px); }
  to   { opacity: 1; transform: translateX(-50%) translateY(0); }
}
.cookie-banner__title {
  font-family: var(--display); font-size: 15px; font-weight: 600;
  color: var(--on-ink); margin: 0;
}
.cookie-banner__text {
  font-family: var(--body); font-size: 12px; color: var(--on-ink-2);
  line-height: 1.55; margin: 0;
}
.cookie-banner__text a { color: var(--primary-hi); text-decoration: underline; text-underline-offset: 2px; }

/* Detail-Kategorien — per default versteckt */
.cookie-banner__details { display: flex; flex-direction: column; gap: 6px; }
.cookie-banner__details[hidden] { display: none !important; }
.cookie-cat {
  display: flex; align-items: flex-start; gap: 10px;
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.07);
  border-radius: 8px; padding: 10px 12px;
}
.cookie-cat--disabled { opacity: 0.5; }
.cookie-cat__check {
  width: 15px; height: 15px; border-radius: 3px;
  cursor: pointer; accent-color: var(--primary);
  flex-shrink: 0; margin-top: 1px;
}
.cookie-cat__check:disabled { cursor: not-allowed; }
.cookie-cat__label { font-family: var(--body); font-size: 12px; color: var(--on-ink-2); line-height: 1.5; }
.cookie-cat__label strong { color: var(--on-ink); display: block; margin-bottom: 1px; font-size: 12px; }

/* Aktionsbuttons */
.cookie-banner__actions {
  display: flex; flex-direction: column; gap: 6px;
}
.cookie-banner__btn {
  font-family: var(--body); font-size: 13px; font-weight: 500;
  border-radius: 8px; padding: 10px 16px; cursor: pointer;
  border: 1px solid rgba(255,255,255,0.1); transition: opacity 0.15s;
  text-align: center; width: 100%;
}
.cookie-banner__btn[hidden] { display: none !important; }
.cookie-banner__btn:hover { opacity: 0.85; }
.cookie-banner__btn--ghost {
  background: transparent; color: var(--on-ink-2);
}
.cookie-banner__btn--accept {
  background: var(--primary); color: #fff; border-color: var(--primary);
}
.cookie-banner__note {
  font-family: var(--body); font-size: 11px; color: var(--on-ink-3); margin: 0;
}
.cookie-banner__note a { color: var(--on-ink-3); text-decoration: underline; }

/* ===== SPACING TOKENS (P1-A) ===== */
:root {
  --space-section-sm:  80px;
  --space-section-md:  96px;
  --space-section-lg: 120px;
}
/* Unified section paddings */
.why           { padding: var(--space-section-lg) 0; }
.believe       { padding: var(--space-section-lg) 0; }
.ki-showcase   { padding: var(--space-section-md) 0; }
.stories       { padding: var(--space-section-lg) 0; }
.services      { padding: var(--space-section-lg) 0; }
.projects      { padding: var(--space-section-lg) 0; }
.faq           { padding: var(--space-section-md) 0 var(--space-section-lg); }
.section-feature { padding: var(--space-section-lg) 0; }
.process       { padding: var(--space-section-lg) 0; }
.pricing       { padding: var(--space-section-lg) 0; }

/* ===== FOCUS VISIBLE (P1-D — Accessibility) ===== */
.btn:focus-visible,
.nav__cta:focus-visible,
.nav__links a:focus-visible,
.nav__hamburger:focus-visible,
.faq__q:focus-visible,
.service__head:focus-visible,
.project__pill:focus-visible,
.tier__cta:focus-visible,
button:focus-visible {
  outline: 2px solid var(--primary-hi);
  outline-offset: 3px;
  border-radius: 4px;
}
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 0;
}

/* ===== NAV DRAWER ANIMATION (P2-B) ===== */
/* Drawer visibility is controlled via .is-open class set by JS */

/* ===== CONTACT FORM STATES (P2-A) ===== */
.final__form-btn { position: relative; width: 100%; justify-content: center; }
.final__form-field input.is-error,
.final__form-field textarea.is-error {
  border-color: #ef4444;
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.12);
}
.final__form-field input:focus-within,
.final__form-field textarea:focus-within {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px color-mix(in oklch, var(--primary) 15%, white);
}
.final__form-status { font-size: 14px; margin-top: 12px; min-height: 20px; }
.final__form-status.is-error   { color: #ef4444; }
.final__form-status.is-success { color: #4ade80; }

/* ===== INLINE-STYLE REPLACEMENTS (P1-B) ===== */
/* Footer tagline */
.footer__tagline {
  margin-top: 20px;
  color: var(--on-ink-2);
  font-size: 14px;
  line-height: 1.6;
  max-width: 280px;
}
/* Service accordion detail-link */
.service__detail-link {
  color: var(--primary);
  font-weight: 500;
  transition: color 200ms var(--ease);
}
.service__detail-link:hover { color: var(--primary-glow); }
/* Service hero padding fix for nav--solid (P3-C) */
.service-hero { padding: 96px 0 100px; }
@media (max-width: 860px) { .service-hero { padding: 80px 0 48px; } }
@media (max-width: 480px) { .service-hero { padding: 64px 0 32px; } }

/* ===== MINOR FIXES (P3-B) ===== */
/* ki-col icon visibility increase */
.ki-col__icon { color: rgba(138, 140, 255, 0.65); }

/* ===== FAQ LIGHT VARIANT (P3-D — rhythm fix) ===== */
.faq--light {
  background: var(--surface);
  color: var(--on-surface);
}
.faq--light .faq__title { color: var(--on-surface); }
.faq--light .faq__title em { color: var(--primary); }
.faq--light .faq__btn {
  color: var(--on-surface);
  border-color: var(--surface-line);
}
.faq--light .faq__btn:hover { background: var(--primary); color: #fff; border-color: var(--primary); }
.faq--light .faq__item { border-top-color: var(--surface-line); }
.faq--light .faq__item:last-child { border-bottom-color: var(--surface-line); }
.faq--light .faq__q { color: var(--on-surface); }
.faq--light .faq__q:hover { color: var(--primary); }
.faq--light .faq__q-icon { color: var(--on-surface-3); }
.faq--light .faq__item.is-open .faq__q-icon { color: var(--primary); }
.faq--light .faq__a-inner { color: var(--on-surface-2); }

/* ===== REDUCED MOTION ===== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
}


/* ============================================================
   Flowdas ERP/CRM/DMS — Page Styles v2
   DEVELOPER: Append this entire file to styles.css.
   All colors via CSS tokens — no hardcoded hex values.
   ============================================================ */


/* ===== ERP PAGE BASE ===== */

.erp-page { overflow-x: hidden; }


/* ===== ANIMATED ORB KEYFRAMES ===== */

@keyframes orbDrift {
  0%   { transform: translate(0, 0) scale(1); }
  50%  { transform: translate(40px, -30px) scale(1.08); }
  100% { transform: translate(-20px, 20px) scale(0.95); }
}

@keyframes heroFloat {
  0%, 100% { transform: perspective(1800px) rotateY(-4deg) rotateX(2deg) translateY(0); }
  50%       { transform: perspective(1800px) rotateY(-4deg) rotateX(2deg) translateY(-10px); }
}

@keyframes sidebarFloat {
  0%, 100% { transform: translateY(0) scale(1); }
  50%       { transform: translateY(-8px) scale(1.01); }
}

@keyframes floatBob {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-7px); }
}

@keyframes scrollBounce {
  0%, 100% { transform: rotate(45deg) translateY(0); }
  50%       { transform: rotate(45deg) translateY(5px); }
}


/* ===== ERP HERO ===== */

.erp-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--ink);
  overflow: hidden;
  padding: 120px 0 100px;
}

.erp-hero__orbs {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.erp-hero__orbs::before {
  content: "";
  position: absolute;
  width: 800px;
  height: 800px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(70,72,212,0.2) 0%, transparent 65%);
  filter: blur(90px);
  top: -300px;
  right: -150px;
  animation: orbDrift 20s ease-in-out infinite alternate;
}

.erp-hero__orbs::after {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(129,39,207,0.12) 0%, transparent 65%);
  filter: blur(80px);
  bottom: -100px;
  left: -50px;
  animation: orbDrift 28s ease-in-out infinite alternate-reverse;
}

.erp-hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.erp-hero__label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--primary-hi);
  margin-bottom: 28px;
}

.erp-hero__label::before {
  content: "";
  display: block;
  width: 24px;
  height: 1px;
  background: var(--primary-hi);
  flex-shrink: 0;
}

.erp-hero__title {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(38px, 5vw, 66px);
  line-height: 1.06;
  letter-spacing: -0.03em;
  color: var(--on-ink);
  margin: 0 0 24px;
}

.erp-hero__title em {
  font-style: italic;
  color: var(--primary-hi);
}

.erp-hero__sub {
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--on-ink-2);
  max-width: 460px;
  margin: 0 0 40px;
}

.erp-hero__ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.erp-hero__scroll-hint {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 44px;
  font-family: var(--mono);
  font-size: 11px;
  color: var(--on-ink-3);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: opacity 0.4s ease;
}

.scroll-arrow {
  width: 14px;
  height: 14px;
  border-right: 1.5px solid var(--on-ink-3);
  border-bottom: 1.5px solid var(--on-ink-3);
  transform: rotate(45deg);
  animation: scrollBounce 2s ease-in-out infinite;
}

/* ── Hero Screenshot Stack ── */
.erp-hero__visual {
  position: relative;
}

.erp-hero__screens-stack {
  position: relative;
}

/* Main screenshot: full Dashboard */
.erp-hero__screen--main {
  position: relative;
  z-index: 2;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--ink-line-strong);
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.04),
    0 32px 80px rgba(0,0,0,0.55),
    0 0 120px rgba(70,72,212,0.14);
  animation: heroFloat 8s ease-in-out infinite;
}

.erp-hero__screen--main img {
  width: 100%;
  height: auto;
  display: block;
}

/* Sidebar float: Navigation structure */
.erp-hero__screen--sidebar {
  position: absolute;
  top: 16px;
  left: -52px;
  width: 130px;
  z-index: 3;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--ink-line-strong);
  box-shadow:
    0 16px 48px rgba(0,0,0,0.55),
    0 0 32px rgba(70,72,212,0.1);
  animation: sidebarFloat 6s ease-in-out infinite;
}

.erp-hero__screen--sidebar img {
  width: 100%;
  height: auto;
  display: block;
}

/* Trust chips below screenshots */
.erp-hero__metrics {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 20px;
  padding-left: 0;
}

.erp-metric-chip {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-pill);
  padding: 7px 14px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--mono);
  font-size: 11px;
  color: var(--on-ink-2);
  white-space: nowrap;
  backdrop-filter: blur(8px);
  letter-spacing: 0.05em;
}

.erp-metric-chip .lucide {
  width: 12px;
  height: 12px;
  color: var(--primary-hi);
}


/* ===== CHAPTER PROGRESS NAV ===== */

.chapter-nav {
  position: fixed;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 200;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.chapter-nav__dot {
  width: 7px;
  height: 7px;
  border-radius: 9999px;
  background: rgba(255,255,255,0.18);
  border: 1px solid rgba(255,255,255,0.12);
  cursor: pointer;
  transition: background 0.3s, transform 0.3s, box-shadow 0.3s;
  position: relative;
  padding: 0;
}

.chapter-nav__dot::after {
  content: attr(data-label);
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  background: var(--ink-2);
  border: 1px solid var(--ink-line);
  color: var(--on-ink-2);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  padding: 4px 8px;
  border-radius: 4px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s;
}

.chapter-nav__dot:hover::after { opacity: 1; }

.chapter-nav__dot.is-active {
  background: var(--primary-hi);
  border-color: var(--primary-hi);
  transform: scale(1.5);
  box-shadow: 0 0 10px rgba(138,140,255,0.5);
}

.chapter-nav__dot:focus-visible {
  outline: 2px solid var(--primary-hi);
  outline-offset: 3px;
}

@media (max-width: 900px) { .chapter-nav { display: none; } }


/* ===== JOURNEY CHAPTER (section base) ===== */

.erp-chapter {
  position: relative;
  padding: 112px 0;
  overflow: hidden;
}

.erp-chapter--dark  { background: var(--ink); }
.erp-chapter--light { background: var(--surface); }

/* ── Chapter watermark (ultra-subtle background texture) ──
   FIX: was zu auffällig. Jetzt kaum sichtbar, kein Layout-Impact.
*/
.chapter-watermark {
  position: absolute;
  top: 24px;
  right: -16px;
  font-family: var(--mono);
  font-weight: 700;
  font-size: clamp(80px, 14vw, 160px);
  line-height: 1;
  letter-spacing: -0.04em;
  pointer-events: none;
  user-select: none;
  z-index: 0;
  /* Nur Textur, kein Inhalt */
}

.erp-chapter--dark  .chapter-watermark { color: rgba(255,255,255,0.022); }
.erp-chapter--light .chapter-watermark { color: rgba(12,15,28,0.028); }

/* Subtle top separator */
.erp-chapter--dark::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.06), transparent);
}

.erp-chapter--light::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0,0,0,0.07), transparent);
}

/* Chapter kicker: tag pill + time */
.erp-chapter__kicker {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 56px;
  position: relative;
  z-index: 1;
}

.chapter-tag {
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  padding: 5px 14px;
  border-radius: var(--radius-pill);
}

.erp-chapter--dark  .chapter-tag {
  color: #b8baff;
  border: 1px solid rgba(138,140,255,0.35);
  background: rgba(138,140,255,0.12);
}

.erp-chapter--light .chapter-tag {
  color: #3638a8;
  border: 1px solid rgba(70,72,212,0.3);
  background: rgba(70,72,212,0.08);
}

.chapter-time-label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
}

.erp-chapter--dark  .chapter-time-label { color: var(--on-ink-2); }
.erp-chapter--light .chapter-time-label { color: var(--on-surface-2); }

/* Centered intro block (e.g. Rechnung chapter) */
.chapter-intro {
  max-width: 680px;
  margin-bottom: 64px;
}

/* ── Chapter divider (visual section break within a chapter) ── */
.chapter-divider {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 80px 0 56px;
  position: relative;
  z-index: 1;
}

.chapter-divider__line {
  flex: 1;
  height: 1px;
}

.erp-chapter--light .chapter-divider__line { background: linear-gradient(90deg, transparent, var(--surface-line), transparent); }
.erp-chapter--dark  .chapter-divider__line { background: linear-gradient(90deg, transparent, rgba(255,255,255,0.08), transparent); }

.chapter-divider__label {
  font-family: var(--mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 14px;
  border-radius: var(--radius-pill);
  white-space: nowrap;
  flex-shrink: 0;
}

.erp-chapter--light .chapter-divider__label {
  color: #3638a8;
  background: rgba(70,72,212,0.08);
  border: 1px solid rgba(70,72,212,0.25);
}

.erp-chapter--dark .chapter-divider__label {
  color: #b8baff;
  background: rgba(138,140,255,0.12);
  border: 1px solid rgba(138,140,255,0.3);
}

.chapter-divider__label .lucide { width: 12px; height: 12px; }

/* Grid: copy | visual */
.chapter-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.erp-chapter--flip .chapter-inner { direction: rtl; }
.erp-chapter--flip .chapter-copy,
.erp-chapter--flip .chapter-visual { direction: ltr; }

/* Typography */
.chapter-title {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(26px, 3vw, 42px);
  line-height: 1.1;
  letter-spacing: -0.025em;
  margin: 0 0 20px;
}

.erp-chapter--dark  .chapter-title { color: var(--on-ink); }
.erp-chapter--light .chapter-title { color: var(--on-surface); }

.erp-chapter--dark  .chapter-title em { font-style: italic; color: var(--primary-hi); }
.erp-chapter--light .chapter-title em { font-style: italic; color: var(--primary); }

.chapter-title--sm { font-size: clamp(22px, 2.5vw, 32px); }

.chapter-body {
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.7;
  margin: 0 0 28px;
}

.erp-chapter--dark  .chapter-body { color: var(--on-ink-2); }
.erp-chapter--light .chapter-body { color: var(--on-surface-2); max-width: 52ch; }

.chapter-list {
  list-style: none;
  margin: 0 0 32px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.chapter-list li {
  font-family: var(--body);
  font-size: 15px;
  line-height: 1.65;
  padding-left: 20px;
  position: relative;
}

.erp-chapter--dark  .chapter-list li { color: var(--on-ink-2); }
.erp-chapter--light .chapter-list li { color: var(--on-surface-2); }

.erp-chapter--dark  .chapter-list li::before { content: "—"; position: absolute; left: 0; color: var(--primary-hi); }
.erp-chapter--light .chapter-list li::before { content: "—"; position: absolute; left: 0; color: var(--primary); }


/* ===== SCREENSHOT VISUALS ===== */

.screens-wrap {
  position: relative;
  padding-bottom: 32px;
}

/* Primary screenshot */
.screen-main {
  position: relative;
  z-index: 2;
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
}

.erp-chapter--dark .screen-main {
  border: 1px solid var(--ink-line-strong);
  box-shadow:
    0 24px 60px rgba(0,0,0,0.5),
    0 0 70px rgba(70,72,212,0.1);
  transform: perspective(1600px) rotateY(-6deg) rotateX(2deg);
}

.erp-chapter--light .screen-main {
  border: 1px solid var(--surface-line);
  box-shadow: 0 20px 56px rgba(12,15,28,0.1), 0 2px 12px rgba(12,15,28,0.05);
  transform: perspective(1600px) rotateY(-4deg) rotateX(1deg);
}

.erp-chapter--flip .screen-main {
  transform: perspective(1600px) rotateY(6deg) rotateX(2deg);
}

.screen-main img { width: 100%; height: auto; display: block; }

.screens-wrap:hover .screen-main {
  transform: perspective(1600px) rotateY(-1deg) rotateX(0) translateY(-4px);
  box-shadow: 0 32px 72px rgba(0,0,0,0.3), 0 0 90px rgba(70,72,212,0.16);
}

.erp-chapter--flip .screens-wrap:hover .screen-main {
  transform: perspective(1600px) rotateY(1deg) rotateX(0) translateY(-4px);
}

/* Secondary floating screenshot */
.screen-float {
  position: absolute;
  bottom: 0;
  right: -12px;
  width: 50%;
  z-index: 3;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--ink-line-strong);
  box-shadow: 0 14px 44px rgba(0,0,0,0.4);
  animation: floatBob 6s ease-in-out infinite;
}

.screen-float img { width: 100%; height: auto; display: block; }

/* Screenshot grid */
.screens-grid { display: grid; gap: 16px; }
.screens-grid--2 { grid-template-columns: 1fr 1fr; }
.screens-grid--3 { grid-template-columns: repeat(3, 1fr); }

.screen-card {
  border-radius: 10px;
  overflow: hidden;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s;
}

.erp-chapter--dark .screen-card {
  border: 1px solid var(--ink-line-strong);
  box-shadow: 0 6px 28px rgba(0,0,0,0.35);
}

.erp-chapter--light .screen-card {
  border: 1px solid var(--surface-line);
  box-shadow: var(--shadow-1);
}

.screen-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 44px rgba(70,72,212,0.13);
}

.screen-card img { width: 100%; height: auto; display: block; }

/* Inline card variant (e.g. CRM new-customer, mahnung anstoßen) */
.screen-card--inline {
  margin-top: 24px;
  max-width: 100%;
}

/* Floating annotation badges */
.badge-float {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border-radius: var(--radius-pill);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  white-space: nowrap;
  z-index: 4;
  opacity: 0;
  transform: translateY(8px) scale(0.94);
  transition: opacity 0.45s ease, transform 0.45s ease;
  pointer-events: none;
  backdrop-filter: blur(12px);
}

.badge-float--visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.badge-float--success {
  background: rgba(34,197,94,0.35);
  border: 1px solid rgba(34,197,94,0.55);
  color: #d4ffe6;
}

.badge-float--info {
  background: rgba(70,72,212,0.35);
  border: 1px solid rgba(138,140,255,0.5);
  color: #e0e1ff;
}

.badge-float--warn {
  background: rgba(251,191,36,0.3);
  border: 1px solid rgba(251,191,36,0.5);
  color: #fff3d0;
}

.badge-float .lucide { width: 12px; height: 12px; }

.badge-float--top-right    { top: -14px;  right: 20px; }
.badge-float--top-left     { top: -14px;  left: 20px; }
.badge-float--bottom-right { bottom: 36px; right: 16px; }
.badge-float--bottom-left  { bottom: 36px; left: 16px; }
.badge-float--mid-right    { top: 38%;   right: -8px; }


/* ===== DIRECTIONAL REVEALS ===== */

[data-reveal-from="left"] {
  opacity: 0;
  transform: translateX(-36px);
  transition: opacity 0.65s var(--ease), transform 0.65s var(--ease);
}

[data-reveal-from="right"] {
  opacity: 0;
  transform: translateX(36px);
  transition: opacity 0.65s var(--ease), transform 0.65s var(--ease);
}

[data-reveal-from="bottom"] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}

[data-reveal-from].is-revealed {
  opacity: 1;
  transform: translate(0, 0);
}

/* Stagger helpers */
.stagger-child {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.5s var(--ease), transform 0.5s var(--ease);
}

.stagger-child--visible {
  opacity: 1;
  transform: translateY(0);
}


/* ===== INVOICE STEPS ===== */

.invoice-steps { position: relative; z-index: 1; }

.invoice-steps__rail {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  position: relative;
  margin-bottom: 36px;
}

.invoice-steps__rail::before {
  content: "";
  position: absolute;
  top: 20px;
  left: 12%;
  right: 12%;
  height: 1px;
  border-top: 1px dashed rgba(70,72,212,0.28);
}

.inv-step { padding: 0 16px 0 0; position: relative; }

.inv-step__dot {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid rgba(70,72,212,0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--ink-2);
  margin-bottom: 18px;
  position: relative;
  z-index: 1;
  transition: border-color 0.3s, background 0.3s, box-shadow 0.3s;
}

.inv-step__dot .lucide { width: 16px; height: 16px; color: var(--primary-hi); }

.erp-chapter--light .inv-step__dot {
  background: var(--surface-card);
  border-color: rgba(70,72,212,0.3);
}

.erp-chapter--light .inv-step__dot .lucide { color: var(--primary); }

.erp-chapter--light .inv-step:hover .inv-step__dot {
  background: rgba(70,72,212,0.08);
  border-color: var(--primary);
  box-shadow: 0 0 16px rgba(70,72,212,0.15);
}

.erp-chapter--light .inv-step__num { color: var(--primary); opacity: 0.8; }
.erp-chapter--light .inv-step__title { color: var(--on-surface); }
.erp-chapter--light .inv-step__body { color: var(--on-surface-2); }

.erp-chapter--light .invoice-steps__rail::before { border-top-color: rgba(70,72,212,0.2); }

.inv-step:hover .inv-step__dot {
  border-color: var(--primary-hi);
  background: rgba(70,72,212,0.14);
  box-shadow: 0 0 16px rgba(138,140,255,0.2);
}

.inv-step__num {
  font-family: var(--mono);
  font-size: 10px;
  color: #b8baff;
  letter-spacing: 0.14em;
  margin-bottom: 8px;
  display: block;
  opacity: 0.7;
}

.inv-step__title {
  font-family: var(--display);
  font-weight: 600;
  font-size: 15px;
  color: var(--on-ink);
  margin: 0 0 8px;
  letter-spacing: -0.01em;
}

.inv-step__body {
  font-family: var(--body);
  font-size: 13px;
  line-height: 1.6;
  color: var(--on-ink-2);
  margin: 0;
}

.mahnung-hint {
  display: flex;
  align-items: center;
  gap: 8px 14px;
  flex-wrap: wrap;
  padding: 14px 20px;
  background: rgba(70,72,212,0.1);
  border: 1px solid rgba(138,140,255,0.25);
  border-radius: var(--radius-md);
  font-family: var(--mono);
  font-size: 11px;
  color: #b8baff;
  letter-spacing: 0.07em;
  margin-bottom: 52px;
}

.mahnung-hint span { white-space: nowrap; }
.mahnung-hint__sep { color: rgba(138,140,255,0.3); }
.mahnung-hint .lucide { width: 13px; height: 13px; flex-shrink: 0; }


/* ===== COMPLIANCE GRID ===== */

.compliance-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  position: relative;
  z-index: 1;
}

.compliance-card {
  background: var(--surface-card);
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: var(--radius-lg);
  padding: 24px;
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
}

.compliance-card:hover {
  border-color: rgba(70,72,212,0.22);
  box-shadow: 0 10px 36px rgba(70,72,212,0.1);
  transform: translateY(-3px);
}

.compliance-card__icon {
  width: 32px;
  height: 32px;
  color: var(--primary);
  margin-bottom: 14px;
}

.compliance-card__icon .lucide { width: 100%; height: 100%; stroke-width: 1.5; }

.compliance-card__title {
  font-family: var(--display);
  font-weight: 600;
  font-size: 14px;
  color: var(--on-surface);
  margin: 0 0 8px;
}

.compliance-card__body {
  font-family: var(--body);
  font-size: 13px;
  line-height: 1.6;
  color: var(--on-surface-2);
  margin: 0 0 14px;
}

.compliance-card__tag {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--primary);
}


/* ===== ERP STATS BELT ===== */
/*
  FIX: stat__num Klasse kollidiert mit base styles.css.
  Eigene Klasse erp-count + erp-stat__figure verwenden.
  Zahlen in var(--on-ink) statt var(--primary-hi) → volle Sichtbarkeit.
*/

.erp-stats {
  background: var(--ink);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.erp-stats::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.08), transparent);
}

.erp-stats::after {
  content: "";
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.06), transparent);
}

/* Subtle orb behind stats */
.erp-stats .container { position: relative; z-index: 1; }

.erp-stats__inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}

/* Vertical dividers between stats */
.erp-stat + .erp-stat {
  border-left: 1px solid rgba(255,255,255,0.06);
  padding-left: 40px;
}

.erp-stat {
  text-align: center;
  padding: 24px 20px;
}

/* The number + unit row */
.erp-stat__figure {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 4px;
  line-height: 1;
  margin-bottom: 14px;
}

/* BIG COUNTER NUMBER — bright white, impossible to miss */
.erp-count {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(52px, 6vw, 80px);
  letter-spacing: -0.04em;
  line-height: 1;
  color: #ffffff;          /* pure white — max contrast on dark */
  display: inline-block;
  min-width: 1ch;
}

/* Unit label next to number */
.erp-stat__unit {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(20px, 2.5vw, 28px);
  letter-spacing: -0.02em;
  color: var(--primary-hi);
  flex-shrink: 0;
}

.erp-stat__label {
  font-family: var(--body);
  font-size: 14px;
  font-weight: 500;
  color: var(--on-ink);
  margin-bottom: 4px;
  letter-spacing: -0.01em;
}

.erp-stat__sub {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  color: var(--on-ink-3);
  text-transform: uppercase;
}


/* ===== FEIERABEND / DATEV SECTION ===== */

.erp-feierabend {
  background: var(--ink);
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}

.erp-feierabend__orb {
  position: absolute;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(70,72,212,0.16) 0%, transparent 65%);
  filter: blur(80px);
  top: -300px;
  left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
}

.erp-feierabend__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.erp-feierabend__quote {
  font-family: var(--display);
  font-weight: 700;
  font-style: italic;
  font-size: clamp(26px, 3.2vw, 44px);
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: var(--on-ink);
  margin: 0 0 24px;
}

.erp-feierabend__quote em { color: var(--primary-hi); font-style: italic; }

.erp-feierabend__sub {
  font-family: var(--body);
  font-size: 15px;
  line-height: 1.7;
  color: var(--on-ink-2);
  margin: 0 0 32px;
}

.erp-feierabend__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 36px;
}

.trust-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  border-radius: var(--radius-pill);
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--ink-line);
  font-family: var(--mono);
  font-size: 10px;
  color: var(--on-ink-2);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: background 0.2s, border-color 0.2s;
}

.trust-pill:hover {
  background: rgba(138,140,255,0.1);
  border-color: rgba(138,140,255,0.25);
}

.trust-pill .lucide { width: 11px; height: 11px; color: var(--primary-hi); }


/* ===== FINAL CTA ===== */

.erp-cta {
  background: var(--surface);
  padding: 100px 0;
  position: relative;
}

.erp-cta::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: var(--surface-line);
}

.erp-cta__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.erp-cta__title {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--on-surface);
  margin: 0 0 20px;
}

.erp-cta__title em { font-style: italic; color: var(--primary); }

.erp-cta__sub {
  font-family: var(--body);
  font-size: 17px;
  color: var(--on-surface-2);
  margin: 0 0 32px;
  line-height: 1.65;
}

.erp-cta__trust {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.erp-cta__trust li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--body);
  font-size: 15px;
  color: var(--on-surface-2);
}

.erp-cta__trust li i {
  width: 18px;
  height: 18px;
  color: var(--primary);
  flex-shrink: 0;
}

.erp-cta__phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--body);
  font-size: 15px;
  font-weight: 500;
  color: var(--on-surface-2);
  text-decoration: none;
  transition: color 0.2s;
}

.erp-cta__phone:hover { color: var(--primary); }

.erp-cta__form-wrap {
  background: var(--surface-card);
  border: 1px solid rgba(0,0,0,0.07);
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 4px 24px rgba(70,72,212,0.07);
}

/* ── ERP Contact Form ── */
.erp-contact-form__title {
  font-family: var(--display);
  font-weight: 600;
  font-size: 20px;
  color: var(--on-surface);
  margin: 0 0 24px;
}

.erp-contact-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

.erp-contact-form__field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}

.erp-contact-form__field:last-of-type { margin-bottom: 24px; }

.erp-contact-form__field label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--on-surface-3);
}

.erp-contact-form__field input,
.erp-contact-form__field textarea {
  font-family: var(--body);
  font-size: 15px;
  color: var(--on-surface);
  background: var(--surface);
  border: 1px solid rgba(0,0,0,0.12);
  border-radius: 10px;
  padding: 12px 14px;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  resize: vertical;
}

.erp-contact-form__field input:focus,
.erp-contact-form__field textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(70,72,212,0.10);
}

@media (max-width: 860px) {
  .erp-cta__inner { grid-template-columns: 1fr; gap: 48px; }
  .erp-contact-form__row { grid-template-columns: 1fr; }
}


/* ===== RESPONSIVE ===== */

@media (max-width: 1100px) {
  .chapter-inner { gap: 48px; }
  .erp-feierabend__inner { gap: 48px; }
}

@media (max-width: 900px) {
  .erp-hero__inner,
  .chapter-inner,
  .erp-feierabend__inner { grid-template-columns: 1fr; gap: 48px; }

  .erp-chapter--flip .chapter-inner { direction: ltr; }

  .erp-hero__screen--sidebar {
    left: auto;
    right: -20px;
    top: auto;
    bottom: -20px;
    width: 110px;
  }

  .chapter-watermark { font-size: 64px; top: 16px; right: -8px; }

  .invoice-steps__rail {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .invoice-steps__rail::before { display: none; }

  .compliance-grid { grid-template-columns: 1fr; }

  .erp-stats__inner { grid-template-columns: 1fr 1fr; }
  .erp-stat + .erp-stat:nth-child(odd) { border-left: none; padding-left: 20px; }

  .screens-grid--3 { grid-template-columns: 1fr 1fr; }

  .erp-hero__screen--main { width: 100%; }
}

@media (max-width: 600px) {
  .erp-chapter { padding: 80px 0; }
  .invoice-steps__rail { grid-template-columns: 1fr; }
  .screens-grid--2 { grid-template-columns: 1fr; }
  .erp-stats__inner { grid-template-columns: 1fr 1fr; }
  .erp-hero { padding: 100px 0 60px; min-height: auto; }
  .erp-hero__screen--sidebar { display: none; }
}


/* ===== MAHNUNG SHOWCASE ===== */
/*
  Two-column card layout for the Mahnwesen section.
  Each card: step number + title + body text + screenshot + bullet list.
  Used in erp-chapter--dark (dark background).
*/

.mahnung-showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  position: relative;
  z-index: 1;
}

.mahnung-card {
  background: var(--ink-2);
  border: 1px solid var(--ink-line-strong);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.mahnung-card:hover {
  border-color: rgba(138,140,255,0.25);
  box-shadow: 0 12px 40px rgba(70,72,212,0.12);
}

.mahnung-card__header {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.mahnung-card__step {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--primary-hi);
  background: rgba(138,140,255,0.1);
  border: 1px solid rgba(138,140,255,0.2);
  border-radius: var(--radius-sm);
  padding: 3px 8px;
  white-space: nowrap;
  flex-shrink: 0;
  margin-top: 2px;
}

.mahnung-card__title {
  font-family: var(--display);
  font-weight: 600;
  font-size: 15px;
  color: var(--on-ink);
  margin: 0 0 6px;
  letter-spacing: -0.01em;
}

.mahnung-card__body {
  font-family: var(--body);
  font-size: 13px;
  line-height: 1.6;
  color: var(--on-ink-2);
  margin: 0;
}

.mahnung-card__screen {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--ink-line-strong);
  background: var(--ink-3);
  flex-shrink: 0;
  height: 260px;
}

.mahnung-card__screen img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: top center;
}

.mahnung-card__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mahnung-card__list li {
  font-family: var(--body);
  font-size: 12px;
  line-height: 1.5;
  color: var(--on-ink-2);
  padding-left: 16px;
  position: relative;
}

.mahnung-card__list li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--primary-hi);
  font-size: 10px;
}

@media (max-width: 900px) {
  .mahnung-showcase { grid-template-columns: 1fr; }
}


/* ===== MAHNUNG STRIP ===== */
/*
  Compact 2-step horizontal strip replacing the tall mahnung cards.
  3 columns: [step 1] [arrow divider] [step 2 — featured].
*/

.mahnung-strip {
  display: grid;
  grid-template-columns: 1fr 32px 1fr;
  gap: 0 16px;
  align-items: stretch;
  position: relative;
  z-index: 1;
}

.mahnung-strip__step {
  background: var(--ink-2);
  border: 1px solid var(--ink-line-strong);
  border-radius: var(--radius-lg);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
}

.mahnung-strip__step--featured {
  border-color: rgba(138,140,255,0.22);
  background: color-mix(in oklch, var(--primary) 6%, var(--ink-2));
}

.mahnung-strip__step:hover {
  border-color: rgba(138,140,255,0.3);
  box-shadow: 0 10px 36px rgba(70,72,212,0.12);
  transform: translateY(-3px);
}

.mahnung-strip__meta {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.mahnung-strip__num {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #b8baff;
  background: rgba(138,140,255,0.14);
  border: 1px solid rgba(138,140,255,0.28);
  border-radius: var(--radius-sm);
  padding: 3px 7px;
  white-space: nowrap;
  flex-shrink: 0;
  margin-top: 3px;
}

.mahnung-strip__title {
  font-family: var(--display);
  font-weight: 600;
  font-size: 14px;
  color: var(--on-ink);
  margin: 0 0 5px;
  letter-spacing: -0.01em;
}

.mahnung-strip__body {
  font-family: var(--body);
  font-size: 12px;
  line-height: 1.55;
  color: var(--on-ink-2);
  margin: 0;
}

.mahnung-strip__thumb {
  border-radius: var(--radius-md);
  border: 1px solid var(--ink-line-strong);
  background: var(--ink-3);
  max-height: 360px;
  overflow-y: auto;
  flex-shrink: 0;
  scrollbar-width: thin;
  scrollbar-color: rgba(138,140,255,0.3) transparent;
}

.mahnung-strip__thumb::-webkit-scrollbar { width: 4px; }
.mahnung-strip__thumb::-webkit-scrollbar-track { background: transparent; }
.mahnung-strip__thumb::-webkit-scrollbar-thumb { background: rgba(138,140,255,0.3); border-radius: 4px; }

.mahnung-strip__thumb img {
  width: 100%;
  height: auto;
  display: block;
}

.mahnung-strip__divider {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--on-ink-3);
  flex-shrink: 0;
}

.mahnung-strip__divider .lucide { width: 16px; height: 16px; }

@media (max-width: 700px) {
  .mahnung-strip {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .mahnung-strip__divider {
    transform: rotate(90deg);
    height: 24px;
  }
}


/* ===== INVOICE JOURNEY ===== */
/*
  4-step visual narrative for the Rechnung chapter.
  4 screenshot cards + 3 arrow dividers in a single row.
  Dark section background.
*/

.invoice-journey {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  align-items: start;
  position: relative;
  z-index: 1;
  margin-top: 16px;
}

.invoice-journey__item {
  background: var(--ink-2);
  border: 1px solid var(--ink-line-strong);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
}

.invoice-journey__item:hover {
  border-color: rgba(138,140,255,0.28);
  box-shadow: 0 10px 36px rgba(70,72,212,0.14);
  transform: translateY(-3px);
}

.erp-chapter--light .invoice-journey__item {
  background: var(--surface-card);
  border-color: rgba(0,0,0,0.07);
}

.erp-chapter--light .invoice-journey__item:hover {
  border-color: rgba(70,72,212,0.22);
  box-shadow: 0 10px 36px rgba(70,72,212,0.1);
}

.erp-chapter--light .invoice-journey__header {
  border-bottom-color: rgba(0,0,0,0.06);
  background: linear-gradient(180deg, rgba(70,72,212,0.03) 0%, transparent 100%);
}

.erp-chapter--light .invoice-journey__step {
  color: #3638a8;
  background: rgba(70,72,212,0.08);
  border-color: rgba(70,72,212,0.22);
}

.erp-chapter--light .invoice-journey__title { color: var(--on-surface); }
.erp-chapter--light .invoice-journey__sub { color: var(--on-surface-2); }

.invoice-journey__header {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 14px 16px 13px;
  border-bottom: 1px solid var(--ink-line-strong);
  background: linear-gradient(180deg, rgba(138,140,255,0.04) 0%, transparent 100%);
}

.invoice-journey__step {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #b8baff;
  background: rgba(138,140,255,0.14);
  border: 1px solid rgba(138,140,255,0.28);
  border-radius: var(--radius-sm);
  padding: 3px 7px;
  white-space: nowrap;
  flex-shrink: 0;
  margin-top: 1px;
}

.invoice-journey__title {
  font-family: var(--display);
  font-weight: 600;
  font-size: 13px;
  color: var(--on-ink);
  margin: 0 0 4px;
  letter-spacing: -0.01em;
}

.invoice-journey__sub {
  font-family: var(--body);
  font-size: 11px;
  line-height: 1.5;
  color: var(--on-ink-2);
  margin: 0;
}

.invoice-journey__screen {
  overflow: hidden;
}

.invoice-journey__screen img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.4s ease;
}

.invoice-journey__item:hover .invoice-journey__screen img {
  transform: scale(1.03);
}

.invoice-journey__arrow {
  display: none;
}

@media (max-width: 600px) {
  .invoice-journey {
    grid-template-columns: 1fr;
  }
}


/* ===== SCREEN CARD CAPTIONS ===== */

.screen-card--captioned {
  display: flex;
  flex-direction: column;
  margin: 0;
}

.screen-card__caption {
  padding: 10px 14px 12px;
  font-family: var(--mono);
  font-size: 10px;
  line-height: 1.55;
  letter-spacing: 0.04em;
  color: var(--on-ink-3);
  background: var(--ink-2);
  border-top: 1px solid var(--ink-line-strong);
  margin: 0;
}

.erp-chapter--light .screen-card__caption {
  color: var(--on-surface-3);
  background: var(--surface);
  border-top-color: var(--surface-line);
}


/* ===== SETTINGS SHOWCASE ===== */
/*
  Two-column card layout for the Einstellungen section.
  Each card: icon + title + subtitle + screenshot + bullet list.
  Used in erp-chapter--dark (dark background).
*/

.settings-showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  position: relative;
  z-index: 1;
}

.settings-card {
  background: var(--ink-2);
  border: 1px solid var(--ink-line-strong);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.settings-card--featured {
  border-color: rgba(138,140,255,0.2);
  background: color-mix(in oklch, var(--primary) 6%, var(--ink-2));
}

.settings-card:hover {
  border-color: rgba(138,140,255,0.3);
  box-shadow: 0 12px 40px rgba(70,72,212,0.12);
}

.settings-card__header {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.settings-card__icon {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-md);
  background: rgba(138,140,255,0.1);
  border: 1px solid rgba(138,140,255,0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--primary-hi);
}

.settings-card__icon .lucide { width: 16px; height: 16px; }

.settings-card__title {
  font-family: var(--display);
  font-weight: 600;
  font-size: 15px;
  color: var(--on-ink);
  margin: 0 0 4px;
  letter-spacing: -0.01em;
}

.settings-card__sub {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--on-ink-3);
  margin: 0;
}

.settings-card__screen {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--ink-line-strong);
  background: var(--ink-3);
  flex-shrink: 0;
}

.settings-card__screen img {
  width: 100%;
  height: auto;
  display: block;
}

.settings-card__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.settings-card__list li {
  font-family: var(--body);
  font-size: 12px;
  line-height: 1.5;
  color: var(--on-ink-2);
  padding-left: 16px;
  position: relative;
}

.settings-card__list li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--primary-hi);
  font-size: 10px;
}

@media (max-width: 900px) {
  .settings-showcase { grid-template-columns: 1fr; }
}


/* ===== KORREKTUR STRIP ===== */
/*
  Horizontal card: copy left + screenshot right.
  Compact, sits below invoice-journey. Light section.
*/

.korrektur-strip {
  margin-top: 64px;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 0;
  background: var(--surface-card);
  border: 1px solid rgba(0,0,0,0.07);
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  z-index: 1;
  transition: box-shadow 0.3s, transform 0.3s;
}

.korrektur-strip:hover {
  box-shadow: 0 12px 44px rgba(70,72,212,0.1);
  transform: translateY(-3px);
}

.korrektur-strip__copy {
  padding: 28px 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.korrektur-strip__title {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(18px, 2vw, 24px);
  color: var(--on-surface);
  letter-spacing: -0.02em;
  margin: 0 0 12px;
  line-height: 1.15;
}

.korrektur-strip__title em {
  font-style: italic;
  color: var(--primary);
}

.korrektur-strip__body {
  font-family: var(--body);
  font-size: 13px;
  line-height: 1.6;
  color: var(--on-surface-2);
  margin: 0 0 16px;
}

.korrektur-strip__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.korrektur-strip__list li {
  font-family: var(--body);
  font-size: 12px;
  line-height: 1.5;
  color: var(--on-surface-2);
  padding-left: 16px;
  position: relative;
}

.korrektur-strip__list li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--primary);
  font-size: 10px;
}

.korrektur-strip__screen {
  border-left: 1px solid rgba(0,0,0,0.06);
  overflow: hidden;
}

.korrektur-strip__screen img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: top center;
}

@media (max-width: 900px) {
  .korrektur-strip { grid-template-columns: 1fr; }
  .korrektur-strip__screen { border-left: none; border-top: 1px solid rgba(0,0,0,0.06); max-height: 300px; }
}


/* ===== PIXEL-PERFECT AUDIT FIXES ===== */

/* Screen label (replaces inline style on ausgaben labels) */
.screen-label {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--primary-hi);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin: 0 0 12px;
}

.erp-chapter--light .screen-label { color: var(--primary); }

/* Stacked screen cards (compliance visual column) */
.screen-stack {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Ausgaben sub-grid (replaces inline style) */
.ausgaben-sub-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 64px;
}

@media (max-width: 600px) {
  .ausgaben-sub-grid { grid-template-columns: 1fr; }
}

/* Feierabend Settings block (replaces all inline styles in DATEV section) */
.feierabend-settings {
  margin-top: 96px;
  border-top: 1px solid var(--ink-line);
  padding-top: 80px;
}

.feierabend-settings__intro {
  max-width: 600px;
  margin-bottom: 48px;
}

.feierabend-settings__eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--primary-hi);
  display: block;
  margin-bottom: 16px;
}

.feierabend-settings__title {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(24px, 3vw, 36px);
  color: var(--on-ink);
  letter-spacing: -0.02em;
  margin: 0 0 16px;
  line-height: 1.1;
}

.feierabend-settings__title em {
  font-style: italic;
  color: var(--primary-hi);
}

.feierabend-settings__body {
  font-family: var(--body);
  font-size: 15px;
  color: var(--on-ink-2);
  line-height: 1.65;
  margin: 0;
  max-width: 54ch;
}

/* Compliance grid top spacing */
.compliance-grid--spaced { margin-top: 32px; }

/* Footer tagline (replaces inline style) */
.footer__tagline {
  margin-top: 20px;
  color: var(--on-ink-2);
  font-size: 14px;
  line-height: 1.6;
  max-width: 280px;
}


/* ===== REDUCED MOTION ===== */

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

  .erp-hero__screen--main,
  .erp-hero__screen--sidebar,
  .screen-float,
  .scroll-arrow { animation: none; }

  [data-parallax] { transform: none !important; }

  .erp-hero__scroll-hint { display: none; }
}



/* ===== SELF-HOSTED FONTS (C-01: local hosting, replaces Google Fonts CDN) ===== */
/* cyrillic-ext */
@font-face {
  font-family: 'Geist';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url("assets/fonts/gyByhwUxId8gMEwRGFWfOw.woff2") format('woff2');
  unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
  font-family: 'Geist';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url("assets/fonts/gyByhwUxId8gMEwYGFWfOw.woff2") format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* vietnamese */
@font-face {
  font-family: 'Geist';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url("assets/fonts/gyByhwUxId8gMEwTGFWfOw.woff2") format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: 'Geist';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url("assets/fonts/gyByhwUxId8gMEwSGFWfOw.woff2") format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Geist';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url("assets/fonts/gyByhwUxId8gMEwcGFU.woff2") format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* cyrillic-ext */
@font-face {
  font-family: 'Geist';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("assets/fonts/gyByhwUxId8gMEwRGFWfOw.woff2") format('woff2');
  unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
  font-family: 'Geist';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("assets/fonts/gyByhwUxId8gMEwYGFWfOw.woff2") format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* vietnamese */
@font-face {
  font-family: 'Geist';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("assets/fonts/gyByhwUxId8gMEwTGFWfOw.woff2") format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: 'Geist';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("assets/fonts/gyByhwUxId8gMEwSGFWfOw.woff2") format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Geist';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("assets/fonts/gyByhwUxId8gMEwcGFU.woff2") format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* cyrillic-ext */
@font-face {
  font-family: 'Geist';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("assets/fonts/gyByhwUxId8gMEwRGFWfOw.woff2") format('woff2');
  unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
  font-family: 'Geist';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("assets/fonts/gyByhwUxId8gMEwYGFWfOw.woff2") format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* vietnamese */
@font-face {
  font-family: 'Geist';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("assets/fonts/gyByhwUxId8gMEwTGFWfOw.woff2") format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: 'Geist';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("assets/fonts/gyByhwUxId8gMEwSGFWfOw.woff2") format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Geist';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("assets/fonts/gyByhwUxId8gMEwcGFU.woff2") format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* cyrillic-ext */
@font-face {
  font-family: 'Geist';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("assets/fonts/gyByhwUxId8gMEwRGFWfOw.woff2") format('woff2');
  unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
  font-family: 'Geist';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("assets/fonts/gyByhwUxId8gMEwYGFWfOw.woff2") format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* vietnamese */
@font-face {
  font-family: 'Geist';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("assets/fonts/gyByhwUxId8gMEwTGFWfOw.woff2") format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: 'Geist';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("assets/fonts/gyByhwUxId8gMEwSGFWfOw.woff2") format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Geist';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("assets/fonts/gyByhwUxId8gMEwcGFU.woff2") format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* cyrillic-ext */
@font-face {
  font-family: 'Geist';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("assets/fonts/gyByhwUxId8gMEwRGFWfOw.woff2") format('woff2');
  unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
  font-family: 'Geist';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("assets/fonts/gyByhwUxId8gMEwYGFWfOw.woff2") format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* vietnamese */
@font-face {
  font-family: 'Geist';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("assets/fonts/gyByhwUxId8gMEwTGFWfOw.woff2") format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: 'Geist';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("assets/fonts/gyByhwUxId8gMEwSGFWfOw.woff2") format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Geist';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("assets/fonts/gyByhwUxId8gMEwcGFU.woff2") format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* cyrillic-ext */
@font-face {
  font-family: 'Geist Mono';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("assets/fonts/or3nQ6H-1_WfwkMZI_qYFrodmgPn.woff2") format('woff2');
  unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
  font-family: 'Geist Mono';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("assets/fonts/or3nQ6H-1_WfwkMZI_qYFrMdmgPn.woff2") format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* symbols2 */
@font-face {
  font-family: 'Geist Mono';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("assets/fonts/or3nQ6H-1_WfwkMZI_qYFg08vz7ehw.woff2") format('woff2');
  unicode-range: U+2000-2001, U+2004-2008, U+200A, U+23B8-23BD, U+2500-259F;
}
/* vietnamese */
@font-face {
  font-family: 'Geist Mono';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("assets/fonts/or3nQ6H-1_WfwkMZI_qYFrgdmgPn.woff2") format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: 'Geist Mono';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("assets/fonts/or3nQ6H-1_WfwkMZI_qYFrkdmgPn.woff2") format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Geist Mono';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("assets/fonts/or3nQ6H-1_WfwkMZI_qYFrcdmg.woff2") format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* cyrillic-ext */
@font-face {
  font-family: 'Geist Mono';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("assets/fonts/or3nQ6H-1_WfwkMZI_qYFrodmgPn.woff2") format('woff2');
  unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
  font-family: 'Geist Mono';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("assets/fonts/or3nQ6H-1_WfwkMZI_qYFrMdmgPn.woff2") format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* symbols2 */
@font-face {
  font-family: 'Geist Mono';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("assets/fonts/or3nQ6H-1_WfwkMZI_qYFg08vz7ehw.woff2") format('woff2');
  unicode-range: U+2000-2001, U+2004-2008, U+200A, U+23B8-23BD, U+2500-259F;
}
/* vietnamese */
@font-face {
  font-family: 'Geist Mono';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("assets/fonts/or3nQ6H-1_WfwkMZI_qYFrgdmgPn.woff2") format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: 'Geist Mono';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("assets/fonts/or3nQ6H-1_WfwkMZI_qYFrkdmgPn.woff2") format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Geist Mono';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("assets/fonts/or3nQ6H-1_WfwkMZI_qYFrcdmg.woff2") format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* vietnamese */
@font-face {
  font-family: 'Space Grotesk';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("assets/fonts/V8mDoQDjQSkFtoMM3T6r8E7mPb54C-s0.woff2") format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: 'Space Grotesk';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("assets/fonts/V8mDoQDjQSkFtoMM3T6r8E7mPb94C-s0.woff2") format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Space Grotesk';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("assets/fonts/V8mDoQDjQSkFtoMM3T6r8E7mPbF4Cw.woff2") format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* vietnamese */
@font-face {
  font-family: 'Space Grotesk';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("assets/fonts/V8mDoQDjQSkFtoMM3T6r8E7mPb54C-s0.woff2") format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: 'Space Grotesk';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("assets/fonts/V8mDoQDjQSkFtoMM3T6r8E7mPb94C-s0.woff2") format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Space Grotesk';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("assets/fonts/V8mDoQDjQSkFtoMM3T6r8E7mPbF4Cw.woff2") format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* vietnamese */
@font-face {
  font-family: 'Space Grotesk';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("assets/fonts/V8mDoQDjQSkFtoMM3T6r8E7mPb54C-s0.woff2") format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: 'Space Grotesk';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("assets/fonts/V8mDoQDjQSkFtoMM3T6r8E7mPb94C-s0.woff2") format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Space Grotesk';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("assets/fonts/V8mDoQDjQSkFtoMM3T6r8E7mPbF4Cw.woff2") format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* vietnamese */
@font-face {
  font-family: 'Space Grotesk';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("assets/fonts/V8mDoQDjQSkFtoMM3T6r8E7mPb54C-s0.woff2") format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: 'Space Grotesk';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("assets/fonts/V8mDoQDjQSkFtoMM3T6r8E7mPb94C-s0.woff2") format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Space Grotesk';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("assets/fonts/V8mDoQDjQSkFtoMM3T6r8E7mPbF4Cw.woff2") format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* ===== END SELF-HOSTED FONTS ===== */
/* ===== KI-BERATUNG PAGE ===== */

/* --- Hero orbit animation --- */
.ki-hero { overflow: hidden; padding-top: 132px; }
@media (max-width: 860px) { .ki-hero { padding-top: 112px; } }
.ki-hero__bg {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
}
.ki-hero__bg svg { width: 100%; height: 100%; }
.ki-hero__visual {
  display: flex; flex-direction: column; align-items: center;
  justify-content: center; gap: 20px;
}
.ki-hero__orbit {
  position: relative; width: 320px; height: 320px;
}
.ki-hero__core {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 72px; height: 72px;
  background: var(--primary);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 0 0 12px rgba(70,72,212,0.15), 0 0 0 24px rgba(70,72,212,0.07), var(--shadow-glow);
  z-index: 2;
}
.ki-hero__core .lucide { width: 32px; height: 32px; color: #fff; }
.ki-hero__ring {
  position: absolute; inset: 0; border-radius: 50%;
  border: 1px solid var(--ink-line);
}
.ki-hero__ring--1 {
  animation: orbit-spin 18s linear infinite;
}
.ki-hero__ring--2 {
  width: 80%; height: 80%; top: 10%; left: 10%;
  animation: orbit-spin 12s linear infinite reverse;
}
@keyframes orbit-spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
.ki-hero__node {
  position: absolute; top: 50%; left: 50%;
  width: 36px; height: 36px;
  margin: -18px;
  background: var(--ink-3);
  border: 1px solid var(--ink-line-strong);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transform-origin: center center;
  transform: rotate(var(--angle)) translateX(148px) rotate(calc(-1 * var(--angle)));
  transition: background 300ms;
}
.ki-hero__ring--2 .ki-hero__node {
  transform: rotate(var(--angle)) translateX(112px) rotate(calc(-1 * var(--angle)));
}
.ki-hero__node .lucide { width: 14px; height: 14px; color: var(--primary-hi); }
.ki-hero__node--sm { width: 28px; height: 28px; margin: -14px; }
.ki-hero__node--sm .lucide { width: 12px; height: 12px; color: var(--on-ink-3); }
.ki-hero__label {
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--on-ink-3);
}

/* --- Problem section --- */
.ki-problem { background: var(--surface); padding: 100px 0; }
.ki-problem__head { max-width: 680px; margin-bottom: 64px; }
.ki-problem__eyebrow {
  display: block; margin-bottom: 16px;
  font-family: var(--mono); font-size: 12px;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--primary);
}
.ki-problem__title {
  font-family: var(--display); font-weight: 500;
  font-size: clamp(32px, 4.5vw, 56px);
  letter-spacing: -0.025em; line-height: 1.05;
  color: var(--on-surface); margin: 0 0 16px;
}
.ki-problem__title em { font-style: italic; color: var(--primary); }
.ki-problem__sub {
  font-size: 16px; line-height: 1.6;
  color: var(--on-surface-2); margin: 0;
}
/* Redaktionelle Zeilen-Liste statt Karten */
.ki-problem__list { border-top: 1px solid var(--surface-line); }
.problem-row {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 48px; align-items: start;
  padding: 44px 0;
  border-bottom: 1px solid var(--surface-line);
  transition: padding-left 360ms var(--ease);
}
.problem-row:hover { padding-left: 12px; }
.problem-row__num {
  font-family: var(--display); font-weight: 600;
  font-size: clamp(56px, 7vw, 88px); line-height: 0.85;
  letter-spacing: -0.03em;
  color: transparent;
  -webkit-text-stroke: 1px var(--surface-line);
  transition: -webkit-text-stroke-color 360ms var(--ease), color 360ms var(--ease);
}
.problem-row:hover .problem-row__num {
  -webkit-text-stroke-color: var(--primary);
}
.problem-row__text { max-width: 640px; padding-top: 6px; }
.problem-row__text h3 {
  font-family: var(--display); font-weight: 500;
  font-size: clamp(22px, 2.6vw, 30px); line-height: 1.15;
  color: var(--on-surface); margin: 0 0 14px; letter-spacing: -0.01em;
}
.problem-row__text p {
  font-size: 16px; line-height: 1.7;
  color: var(--on-surface-2); margin: 0;
}
@media (max-width: 720px) {
  .problem-row { grid-template-columns: 1fr; gap: 12px; padding: 32px 0; }
  .problem-row__num { font-size: 48px; }
}

/* --- KI Process Timeline --- */
.ki-timeline { background: var(--ink); color: var(--on-ink); padding: 100px 0; }
.ki-timeline__head { max-width: 720px; margin-bottom: 72px; }
.ki-timeline__eyebrow {
  display: block; margin-bottom: 16px;
  font-family: var(--mono); font-size: 12px;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--primary-hi);
}
.ki-timeline__title {
  font-family: var(--display); font-weight: 500;
  font-size: clamp(32px, 4.5vw, 56px);
  letter-spacing: -0.025em; line-height: 1.05;
  color: #fff; margin: 0 0 16px;
}
.ki-timeline__title em { font-style: italic; color: var(--primary-hi); }
.ki-timeline__sub { font-size: 16px; line-height: 1.6; color: var(--on-ink-2); margin: 0; }

.ki-timeline__steps { display: flex; flex-direction: column; gap: 0; }

.ki-step {
  display: grid; grid-template-columns: 80px 1fr; gap: 32px;
  padding: 48px 0; border-bottom: 1px solid var(--ink-line);
  opacity: 0.4; transition: opacity 500ms var(--ease);
}
.ki-step:first-child { padding-top: 0; }
.ki-step:last-child { border-bottom: none; }
.ki-step.is-active { opacity: 1; }

.ki-step__marker {
  display: flex; flex-direction: column; align-items: center; gap: 16px;
  padding-top: 4px;
}
.ki-step__num {
  font-family: var(--mono); font-size: 11px;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--primary-hi);
  width: 40px; height: 40px;
  border-radius: 50%; border: 1px solid var(--ink-line-strong);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: background 400ms var(--ease), border-color 400ms var(--ease);
}
.ki-step.is-active .ki-step__num {
  background: var(--primary); border-color: var(--primary);
  color: #fff;
}
.ki-step__line {
  width: 1px; flex: 1;
  background: var(--ink-line); min-height: 40px;
}
.ki-step__line--last { display: none; }

.ki-step__tag {
  display: inline-block;
  font-family: var(--mono); font-size: 11px;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--on-ink-3); margin-bottom: 12px;
}
.ki-step__title {
  font-family: var(--display); font-weight: 500;
  font-size: clamp(22px, 2.5vw, 30px);
  color: #fff; margin: 0 0 16px; line-height: 1.15;
}
.ki-step__text {
  font-size: 15px; line-height: 1.7;
  color: var(--on-ink-2); margin: 0 0 20px; max-width: 680px;
}
.ki-step__list {
  list-style: none; margin: 0; padding: 0;
  display: flex; flex-direction: column; gap: 8px;
}
.ki-step__list li {
  font-size: 13px; color: var(--on-ink-3);
  padding-left: 20px; position: relative; line-height: 1.5;
}
.ki-step__list li::before {
  content: "→"; position: absolute; left: 0;
  color: var(--primary-hi);
}
@media (max-width: 640px) {
  .ki-step { grid-template-columns: 1fr; gap: 16px; }
  .ki-step__marker { flex-direction: row; align-items: flex-start; gap: 12px; }
  .ki-step__line { display: none; }
}

/* --- KI Agent / USP --- */
.ki-agent { background: var(--surface); padding: 100px 0; }
.ki-agent__head { max-width: 640px; margin-bottom: 56px; }
.ki-agent__eyebrow {
  display: block; margin-bottom: 16px;
  font-family: var(--mono); font-size: 12px;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--primary);
}
.ki-agent__title {
  font-family: var(--display); font-weight: 500;
  font-size: clamp(32px, 4.5vw, 56px);
  letter-spacing: -0.025em; line-height: 1.05;
  color: var(--on-surface); margin: 0 0 16px;
}
.ki-agent__title em { font-style: italic; color: var(--primary); }
.ki-agent__sub { font-size: 16px; line-height: 1.6; color: var(--on-surface-2); margin: 0; }

.ki-agent__card {
  background: var(--ink);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 0 0 1px rgba(70,72,212,0.2), 0 32px 80px rgba(70,72,212,0.15), 0 8px 32px rgba(0,0,0,0.3);
  position: relative;
}
.ki-agent__card::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 30% 0%, rgba(70,72,212,0.18) 0%, transparent 60%),
              radial-gradient(ellipse at 80% 100%, rgba(129,39,207,0.12) 0%, transparent 60%);
  pointer-events: none;
}
.ki-agent__card-inner {
  display: grid; grid-template-columns: auto 1fr; gap: 48px;
  align-items: flex-start; padding: 52px;
  position: relative; z-index: 1;
}
.ki-agent__avatar {
  position: relative; flex-shrink: 0;
  width: 88px; height: 88px;
}
.ki-agent__avatar-core {
  width: 88px; height: 88px; border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--tertiary));
  display: flex; align-items: center; justify-content: center;
  position: relative; z-index: 2;
  box-shadow: 0 0 40px rgba(70,72,212,0.4);
}
.ki-agent__avatar-core .lucide { width: 40px; height: 40px; color: #fff; }
.ki-agent__avatar-pulse {
  position: absolute; inset: -8px; border-radius: 50%;
  border: 1px solid rgba(70,72,212,0.4);
  animation: agent-pulse 3s ease-in-out infinite;
}
.ki-agent__avatar-pulse--2 {
  inset: -20px;
  border-color: rgba(70,72,212,0.2);
  animation-delay: 1s;
}
@keyframes agent-pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.08); opacity: 0.5; }
}
.ki-agent__status {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--mono); font-size: 11px;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--on-ink-3); margin-bottom: 12px;
}
.ki-agent__dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: #4ade80; box-shadow: 0 0 10px #4ade80;
  animation: agent-blink 2s ease-in-out infinite;
}
@keyframes agent-blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}
.ki-agent__name {
  font-family: var(--display); font-weight: 500; font-size: 22px;
  color: #fff; margin: 0 0 12px;
}
.ki-agent__desc {
  font-size: 15px; line-height: 1.7; color: var(--on-ink-2); margin: 0 0 28px;
  max-width: 560px;
}
.ki-agent__metrics {
  display: flex; gap: 40px; flex-wrap: wrap;
}
.ki-agent__metric { display: flex; flex-direction: column; gap: 2px; }
.ki-agent__metric-val {
  font-family: var(--display); font-weight: 600;
  font-size: 36px; line-height: 1; color: #fff;
  letter-spacing: -0.02em;
}
.ki-agent__metric-unit {
  font-family: var(--mono); font-size: 11px;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--on-ink-3);
}

.ki-agent__examples {
  border-top: 1px solid var(--ink-line);
  padding: 40px 52px;
  position: relative; z-index: 1;
}
.ki-agent__examples-title {
  font-family: var(--mono); font-size: 11px;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--on-ink-3); margin: 0 0 24px;
}
.ki-agent__example-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
}
.ki-agent__example {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 13px; line-height: 1.5; color: var(--on-ink-2);
}
.ki-agent__example .lucide { width: 16px; height: 16px; color: var(--primary-hi); flex-shrink: 0; margin-top: 2px; }

.ki-agent__waas {
  margin-top: 32px; font-size: 14px; line-height: 1.6;
  color: var(--on-surface-2); text-align: center;
}
.ki-agent__waas strong { color: var(--on-surface); }

@media (max-width: 860px) {
  .ki-agent__card-inner { grid-template-columns: 1fr; gap: 32px; padding: 36px; }
  .ki-agent__examples { padding: 32px 36px; }
  .ki-agent__example-grid { grid-template-columns: 1fr 1fr; }
  .ki-agent__metrics { gap: 24px; }
}
@media (max-width: 540px) {
  .ki-agent__example-grid { grid-template-columns: 1fr; }
}

/* --- Trust Grid --- */
.ki-trust { background: var(--ink); color: var(--on-ink); padding: 100px 0; }
.ki-trust__head { max-width: 640px; margin-bottom: 64px; }
.ki-trust__eyebrow {
  display: block; margin-bottom: 16px;
  font-family: var(--mono); font-size: 12px;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--primary-hi);
}
.ki-trust__title {
  font-family: var(--display); font-weight: 500;
  font-size: clamp(32px, 4vw, 52px);
  letter-spacing: -0.025em; line-height: 1.05;
  color: #fff; margin: 0;
}
.ki-trust__title em { font-style: italic; color: var(--primary-hi); }
.ki-trust__grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px;
  border: 1px solid var(--ink-line);
  border-radius: var(--radius-lg); overflow: hidden;
}
.trust-item {
  padding: 40px 36px;
  background: var(--ink-2);
  border-right: 1px solid var(--ink-line);
  border-bottom: 1px solid var(--ink-line);
  transition: background 220ms var(--ease);
}
.trust-item:hover { background: var(--ink-3); }
.trust-item:nth-child(3n) { border-right: none; }
.trust-item:nth-last-child(-n+3) { border-bottom: none; }
.trust-item__icon {
  width: 44px; height: 44px;
  border-radius: var(--radius-md);
  background: rgba(70,72,212,0.12);
  border: 1px solid rgba(70,72,212,0.2);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.trust-item__icon .lucide { width: 20px; height: 20px; color: var(--primary-hi); }
.trust-item__title {
  font-family: var(--display); font-weight: 500;
  font-size: 17px; color: #fff; margin: 0 0 10px;
}
.trust-item__body {
  font-size: 13px; line-height: 1.65; color: var(--on-ink-2); margin: 0;
}
@media (max-width: 860px) {
  .ki-trust__grid { grid-template-columns: 1fr 1fr; }
  .trust-item:nth-child(3n) { border-right: 1px solid var(--ink-line); }
  .trust-item:nth-child(2n) { border-right: none; }
  .trust-item:nth-last-child(-n+3) { border-bottom: 1px solid var(--ink-line); }
  .trust-item:nth-last-child(-n+2) { border-bottom: none; }
}
@media (max-width: 540px) {
  .ki-trust__grid { grid-template-columns: 1fr; }
  .trust-item { border-right: none !important; }
  .trust-item:last-child { border-bottom: none; }
}

/* --- KI Kontakt + Formular --- */
.ki-contact { background: var(--surface); padding: 100px 0; }
.ki-contact__grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 72px; align-items: start;
}
.ki-contact__eyebrow {
  display: block; margin-bottom: 20px;
  font-family: var(--mono); font-size: 12px;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--primary);
}
.ki-contact__title {
  font-family: var(--display); font-weight: 600;
  font-size: clamp(40px, 5vw, 68px);
  letter-spacing: -0.03em; line-height: 0.97;
  color: var(--on-surface); margin: 0 0 20px;
}
.ki-contact__title em { font-style: italic; color: var(--primary); }
.ki-contact__sub {
  font-size: 16px; line-height: 1.65;
  color: var(--on-surface-2); margin: 0 0 28px; max-width: 460px;
}
.ki-contact__points {
  list-style: none; margin: 0 0 32px; padding: 0;
  display: flex; flex-direction: column; gap: 12px;
}
.ki-contact__points li {
  display: flex; align-items: center; gap: 10px;
  font-size: 15px; color: var(--on-surface);
}
.ki-contact__points .lucide { width: 16px; height: 16px; color: var(--primary); flex-shrink: 0; }
.ki-contact__direct {
  display: flex; flex-direction: column; gap: 10px;
  padding-top: 28px; border-top: 1px solid var(--surface-line);
}
.ki-contact__direct a {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 15px; color: var(--on-surface-2);
  transition: color 200ms var(--ease);
}
.ki-contact__direct a:hover { color: var(--primary); }
.ki-contact__direct .lucide { width: 16px; height: 16px; }

/* Formular */
.ki-form {
  background: var(--surface-card);
  border: 1px solid var(--surface-line);
  border-radius: var(--radius-xl);
  padding: 40px;
  display: flex; flex-direction: column; gap: 20px;
  box-shadow: var(--shadow-1);
}
.ki-form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.ki-field { display: flex; flex-direction: column; gap: 8px; }
.ki-field > span {
  font-family: var(--body); font-size: 13px; font-weight: 500;
  color: var(--on-surface-2);
}
.ki-field > span em { font-style: normal; color: var(--on-surface-3); font-weight: 400; }
.ki-field input, .ki-field textarea {
  font-family: var(--body); font-size: 15px; color: var(--on-surface);
  background: var(--surface);
  border: 1px solid var(--surface-line);
  border-radius: var(--radius-md);
  padding: 13px 16px;
  transition: border-color 180ms var(--ease), box-shadow 180ms var(--ease);
  width: 100%;
}
.ki-field textarea { resize: vertical; min-height: 96px; }
.ki-field input::placeholder, .ki-field textarea::placeholder { color: var(--on-surface-3); }
.ki-field input:focus, .ki-field textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(70,72,212,0.12);
}
.ki-form__hp { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; }
.ki-form__submit {
  align-self: flex-start; margin-top: 4px;
  transition: all 250ms var(--ease);
}
.ki-form__submit:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 0 60px rgba(70,72,212,0.4), var(--shadow-glow);
}
.ki-form__submit:disabled { opacity: 0.6; cursor: default; }
.ki-form__status {
  font-size: 14px; line-height: 1.5; margin: 0; min-height: 1px;
}
.ki-form__status.is-ok { color: #16a34a; }
.ki-form__status.is-error { color: #dc2626; }

@media (max-width: 860px) {
  .ki-contact__grid { grid-template-columns: 1fr; gap: 48px; }
}
@media (max-width: 540px) {
  .ki-form { padding: 28px; }
  .ki-form__row { grid-template-columns: 1fr; }
}

/* ============================================================
   ===== STAMMSPOT — Treue-Loop, Phone-Shots, Comparison =====
   (Story-Seite services/stammspot.html — nutzt erp-chapter/chapter-* Bausteine)
   ============================================================ */

/* --- Phone-Mockup für die Hochkant-App-Screenshots --- */
.phone-shot {
  position: relative;
  width: 100%;
  max-width: 300px;
  margin: 0 auto;
  border-radius: 34px;
  padding: 10px;
  background: linear-gradient(165deg, #2a2d4a, #0c0f1c);
  box-shadow: 0 24px 60px rgba(12,15,28,0.32), 0 0 0 1px rgba(255,255,255,0.06) inset;
}
.erp-chapter--light .phone-shot {
  box-shadow: 0 24px 60px rgba(70,72,212,0.18), 0 0 0 1px rgba(0,0,0,0.05) inset;
}
.phone-shot img {
  width: 100%; height: auto; display: block;
  border-radius: 26px;
}
.phone-shot__notch {
  position: absolute; top: 18px; left: 50%; transform: translateX(-50%);
  width: 78px; height: 6px; border-radius: 4px;
  background: rgba(255,255,255,0.22); z-index: 2;
}
.phone-duo {
  position: relative;
  display: flex; align-items: center; justify-content: center;
  min-height: 480px;
}
.phone-duo .phone-shot { max-width: 270px; }
.phone-duo__back {
  position: absolute; left: 8%; top: 8%;
  max-width: 220px; opacity: 0.85;
  transform: rotate(-6deg);
  z-index: 1;
}
.phone-duo__front {
  position: relative; z-index: 2;
  transform: rotate(3deg) translateX(14%);
}
@media (max-width: 760px) {
  .phone-duo { min-height: 0; flex-direction: column; gap: 24px; }
  .phone-duo__back { position: relative; left: 0; top: 0; transform: none; opacity: 1; }
  .phone-duo__front { transform: none; }
}

/* --- Treue-Loop: 4 Schritte im Kreis --- */
.loop-ring {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 48px;
  position: relative;
}
.loop-ring::before {
  content: ""; position: absolute; top: 34px; left: 12%; right: 12%;
  height: 2px;
  background: repeating-linear-gradient(90deg, var(--primary) 0 8px, transparent 8px 16px);
  opacity: 0.35; z-index: 0;
}
.loop-step { position: relative; z-index: 1; text-align: center; }
.loop-step__dot {
  width: 68px; height: 68px; margin: 0 auto 18px;
  border-radius: 50%;
  background: var(--surface-card);
  border: 1px solid rgba(70,72,212,0.18);
  display: flex; align-items: center; justify-content: center;
  color: var(--primary);
  box-shadow: 0 8px 24px rgba(70,72,212,0.12);
}
.erp-chapter--dark .loop-step__dot {
  background: var(--ink-3); border-color: var(--ink-line-strong); color: var(--primary-hi);
}
.loop-step__dot .lucide { width: 28px; height: 28px; }
.loop-step__num {
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--primary); display: block; margin-bottom: 6px;
}
.loop-step__title { font-family: var(--display); font-weight: 600; font-size: 17px; margin: 0 0 6px; }
.loop-step__body { font-size: 13.5px; line-height: 1.55; color: var(--on-surface-2); margin: 0; }
.erp-chapter--dark .loop-step__title { color: var(--on-ink); }
.erp-chapter--dark .loop-step__body { color: var(--on-ink-2); }
@media (max-width: 760px) {
  .loop-ring { grid-template-columns: 1fr 1fr; gap: 28px 16px; }
  .loop-ring::before { display: none; }
}

/* --- Segment-Chips (Push) --- */
.seg-grid { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 8px; }
.seg-chip {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 14px; border-radius: 999px;
  background: rgba(255,255,255,0.06); border: 1px solid var(--ink-line-strong);
  font-size: 13px; color: var(--on-ink-2); font-family: var(--body);
}
.seg-chip strong { color: var(--on-ink); font-weight: 500; }
.seg-chip__count {
  font-family: var(--mono); font-size: 11px; color: var(--primary-hi);
  background: rgba(138,140,255,0.12); padding: 2px 7px; border-radius: 6px;
}

/* ===== COMPARISON TABLE (CLAUDE.md §5) ===== */
.comparison { padding: 96px 0; background: var(--surface); }
.comparison__eyebrow {
  font-family: var(--mono); text-transform: uppercase; color: var(--primary);
  font-size: 12px; letter-spacing: 0.18em; display: block;
}
.comparison__title {
  font-family: var(--display); font-weight: 600; font-size: 36px;
  color: var(--on-surface); margin: 12px 0 8px;
}
.comparison__title em { font-style: italic; color: var(--primary); }
.comparison__sub { color: var(--on-surface-2); font-size: 16px; max-width: 600px; margin: 0 0 8px; }
.comparison__table-wrap { overflow-x: auto; margin-top: 40px; }
.comparison__table {
  width: 100%; border-collapse: collapse;
  font-family: var(--body); font-size: 15px; min-width: 560px;
}
.comparison__table th, .comparison__table td {
  padding: 15px 20px; text-align: left;
  border-bottom: 1px solid rgba(0,0,0,0.07);
}
.comparison__table th {
  font-family: var(--body); font-size: 13px; font-weight: 500;
  color: var(--on-surface-3); text-transform: uppercase; letter-spacing: 0.06em;
}
.comparison__table td:first-child { color: var(--on-surface-2); font-size: 14px; }
.comparison__table .col--us {
  background: color-mix(in oklch, var(--primary) 8%, white);
  color: var(--primary); font-weight: 500;
}
.comparison__table th.col--us {
  color: var(--primary);
  background: color-mix(in oklch, var(--primary) 12%, white);
  border-top-left-radius: 12px; border-top-right-radius: 12px;
}
.comparison__table tbody tr:hover { background: rgba(0,0,0,0.02); }
.comparison__table tbody tr:hover .col--us { background: color-mix(in oklch, var(--primary) 12%, white); }
.comparison__note { margin-top: 18px; font-size: 13px; color: var(--on-surface-3); }
@media (max-width: 640px) {
  .comparison__title { font-size: 28px; }
}

/* ===== CONTACT FORM (final section) ===== */
.final__contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  padding: 80px 0 40px;
}
.final__left { padding-top: 8px; }
.final__sub {
  font-family: var(--body);
  font-size: 16px;
  color: var(--on-surface-2);
  line-height: 1.65;
  margin: 20px 0 32px;
  max-width: 420px;
}
.final__contact-info {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.final__contact-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--primary);
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
}
.final__contact-link .lucide { width: 16px; height: 16px; }
.final__contact-link:hover { color: var(--primary-glow); }
.final__form {
  background: var(--surface-card);
  border-radius: 20px;
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  box-shadow: 0 4px 32px rgba(0,0,0,0.06);
}
.final__form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.final__form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.final__form-field label {
  font-family: var(--body);
  font-size: 13px;
  font-weight: 500;
  color: var(--on-surface-2);
}
.final__form-field input,
.final__form-field textarea {
  font-family: var(--body);
  font-size: 14px;
  color: var(--on-surface);
  background: var(--surface);
  border: 1px solid rgba(0,0,0,0.10);
  border-radius: 10px;
  padding: 10px 14px;
  outline: none;
  transition: border-color 0.15s;
  resize: none;
}
.final__form-field input:focus,
.final__form-field textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(70,72,212,0.10);
}
.final__form-btn { width: 100%; justify-content: center; }
.final__form-status {
  font-size: 13px;
  min-height: 18px;
  text-align: center;
}
.final__form-status.is-ok  { color: #10b981; }
.final__form-status.is-err { color: #ef4444; }
@media (max-width: 860px) {
  .final__contact-grid { grid-template-columns: 1fr; gap: 48px; padding: 48px 0 24px; }
  .final__form-row { grid-template-columns: 1fr; }
}

/* ===== ERP ORBIT VISUAL (Service-Accordion Startseite) ===== */
.erp-orbit-wrap {
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 16px; padding: 32px 0;
}
.erp-orbit {
  position: relative; width: 280px; height: 280px;
}
.erp-orbit__core {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 66px; height: 66px;
  background: linear-gradient(135deg, #10b981, #059669);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 0 0 10px rgba(16,185,129,0.12), 0 0 0 22px rgba(16,185,129,0.06), 0 0 40px rgba(16,185,129,0.25);
  z-index: 2;
}
.erp-orbit__core .lucide { width: 28px; height: 28px; color: #fff; }
.erp-orbit__ring {
  position: absolute; inset: 0; border-radius: 50%;
  border: 1px solid rgba(16,185,129,0.18);
}
.erp-orbit__ring--1 { animation: erp-spin 20s linear infinite; }
.erp-orbit__ring--2 {
  width: 78%; height: 78%; top: 11%; left: 11%;
  border-color: rgba(70,72,212,0.22);
  animation: erp-spin 14s linear infinite reverse;
}
@keyframes erp-spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
.erp-orbit__node {
  position: absolute; top: 50%; left: 50%;
  width: 38px; height: 38px; margin: -19px;
  background: #1c2038;
  border: 1px solid rgba(16,185,129,0.25);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transform: rotate(var(--a)) translateX(130px) rotate(calc(-1 * var(--a)));
}
.erp-orbit__ring--2 .erp-orbit__node {
  transform: rotate(var(--a)) translateX(98px) rotate(calc(-1 * var(--a)));
  background: #151829;
  border-color: rgba(70,72,212,0.2);
}
.erp-orbit__node .lucide { width: 14px; height: 14px; color: #10b981; }
.erp-orbit__node--sm { width: 28px; height: 28px; margin: -14px; }
.erp-orbit__node--sm .lucide { width: 11px; height: 11px; color: var(--primary-hi); }
.erp-orbit__label {
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.18em;
  text-transform: uppercase; color: rgba(255,255,255,0.25);
}

/* ================================================================
   ===== MOBILE OPTIMIERUNG — flowdas.de =====
   Breakpoints: 860px (Tablet), 540px (Handy)
   ================================================================ */

html, body { overflow-x: hidden; max-width: 100%; }
* { box-sizing: border-box; }

/* ── HAMBURGER NAV ─────────────────────────────────────────────── */
.nav__hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px; height: 44px;
  background: none; border: none;
  cursor: pointer; padding: 10px;
  z-index: 1001; position: relative;
}
.nav__hamburger span {
  display: block; height: 2px; width: 22px;
  background: #fff; border-radius: 2px;
  transition: transform 0.25s, opacity 0.25s;
  transform-origin: center;
}
.nav--open .nav__hamburger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav--open .nav__hamburger span:nth-child(2) { opacity: 0; }
.nav--open .nav__hamburger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav__drawer {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--ink);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 80px 32px 40px;
  overflow-y: auto;
}
.nav--open .nav__drawer { display: flex; }
.nav__drawer a {
  font-family: var(--display);
  font-size: 26px; font-weight: 500;
  color: var(--on-ink-2);
  text-decoration: none;
  padding: 16px 0;
  width: 100%; text-align: center;
  border-bottom: 1px solid var(--ink-line);
  transition: color 200ms;
  min-height: 44px; display: flex; align-items: center; justify-content: center;
}
.nav__drawer a:last-child { border-bottom: none; }
.nav__drawer a:hover, .nav__drawer a:active { color: #fff; }
.nav__drawer .nav__drawer-cta {
  margin-top: 28px;
  background: var(--primary); color: #fff;
  border-radius: var(--radius-pill);
  font-size: 15px; font-weight: 500;
  letter-spacing: 0.04em; text-transform: uppercase;
  border-bottom: none;
  padding: 14px 32px;
}

@media (max-width: 860px) {
  .nav__hamburger { display: flex; }
  .nav__cta { display: none; }
}

/* ── HOMEPAGE HERO ─────────────────────────────────────────────── */
@media (max-width: 860px) {
  .hero { padding: 120px 0 80px; }
  .hero__sub { font-size: 16px; max-width: 480px; margin-left: auto; margin-right: auto; }
  .hero__ctas { flex-direction: column; align-items: center; gap: 12px; }
  .hero__ctas .btn { width: 100%; max-width: 320px; justify-content: center; }
}
@media (max-width: 540px) {
  .hero { padding: 100px 0 60px; }
  .container { padding: 0 16px; }
}

/* ── WHY ───────────────────────────────────────────────────────── */
@media (max-width: 540px) {
  .why { padding: 64px 0; }
  .believe { padding: 72px 0; }
  .believe__title { font-size: clamp(22px, 7vw, 40px); }
}

/* ── SERVICE-HERO (Produktseiten) ──────────────────────────────── */
@media (max-width: 860px) {
  .service-hero__inner { grid-template-columns: 1fr; gap: 40px; text-align: center; }
  .service-hero__title { font-size: clamp(30px, 8vw, 56px); }
  .service-hero__ctas { justify-content: center; }
  .service-hero__visual { max-width: 440px; margin: 0 auto; }
}
@media (max-width: 540px) {
  .service-hero { padding: 80px 0 48px; }
  .service-hero__ctas { flex-direction: column; align-items: center; }
  .service-hero__ctas .btn { width: 100%; max-width: 300px; justify-content: center; }
}

/* ── ERP-HERO ──────────────────────────────────────────────────── */
@media (max-width: 860px) {
  .erp-hero { padding: 80px 0 60px; }
  .erp-hero__inner { grid-template-columns: 1fr !important; gap: 40px; }
  .erp-hero__title { font-size: clamp(26px, 7vw, 52px); }
  .erp-hero__ctas { flex-direction: column; align-items: flex-start; gap: 12px; }
  .erp-hero__screen--sidebar { display: none; }
  .erp-hero__screens-stack { max-width: 380px; margin: 0 auto; }
}
@media (max-width: 540px) {
  .erp-hero__metrics { flex-wrap: wrap; gap: 8px; justify-content: center; }
  .erp-metric-chip { font-size: 11px; padding: 6px 10px; }
}

/* ── ERP CHAPTERS ──────────────────────────────────────────────── */
@media (max-width: 860px) {
  .erp-chapter { padding: 60px 0; }
  .chapter-inner { grid-template-columns: 1fr !important; gap: 32px; }
  .erp-chapter--flip .chapter-visual { order: -1; }
  .chapter-title { font-size: clamp(22px, 6vw, 38px); }
  .chapter-watermark { font-size: clamp(56px, 16vw, 110px); opacity: 0.04; }
  .invoice-steps__rail { grid-template-columns: 1fr 1fr !important; gap: 20px; }
  .invoice-journey { grid-template-columns: 1fr !important; gap: 24px; }
  .settings-showcase { grid-template-columns: 1fr !important; }
  .ausgaben-sub-grid { grid-template-columns: 1fr !important; }
  .compliance-grid { grid-template-columns: 1fr 1fr !important; }
}
@media (max-width: 540px) {
  .invoice-steps__rail { grid-template-columns: 1fr !important; }
  .compliance-grid { grid-template-columns: 1fr !important; }
  .chapter-list li { font-size: 14px; }
}

/* ── PHONE-DUO (Stammspot) ─────────────────────────────────────── */
@media (max-width: 860px) {
  .phone-duo { flex-direction: column; align-items: center; min-height: 0; gap: 20px; }
  .phone-duo__back { position: relative; left: auto; top: auto; transform: none; opacity: 1; order: 2; max-width: 200px; }
  .phone-duo__front { transform: none; order: 1; max-width: 240px; }
}

/* ── KI-HERO ORBIT ─────────────────────────────────────────────── */
@media (max-width: 860px) {
  .ki-hero__orbit { width: 240px; height: 240px; }
  .ki-hero__node { transform: rotate(var(--angle)) translateX(105px) rotate(calc(-1 * var(--angle))); }
  .ki-hero__ring--2 .ki-hero__node { transform: rotate(var(--angle)) translateX(80px) rotate(calc(-1 * var(--angle))); }
}
@media (max-width: 540px) {
  .ki-hero__orbit { width: 200px; height: 200px; }
  .ki-hero__node { transform: rotate(var(--angle)) translateX(86px) rotate(calc(-1 * var(--angle))); }
  .ki-hero__ring--2 .ki-hero__node { transform: rotate(var(--angle)) translateX(64px) rotate(calc(-1 * var(--angle))); }
}

/* ── SERVICES ACCORDION ────────────────────────────────────────── */
@media (max-width: 540px) {
  .service__name { font-size: 15px; }
  .service__copy p, .service__copy li { font-size: 14px; }
}

/* ── PRICING ───────────────────────────────────────────────────── */
@media (max-width: 860px) {
  .pricing { padding: 80px 0; }
  .pricing__grid { grid-template-columns: 1fr; max-width: 420px; margin-left: auto; margin-right: auto; }
}
@media (max-width: 540px) {
  .tier { padding: 28px 20px; }
  .tier__price { font-size: 44px; }
}

/* ── STAMMSPOT LOOP + SEGS ─────────────────────────────────────── */
@media (max-width: 540px) {
  .loop-ring { grid-template-columns: 1fr 1fr; gap: 20px; }
  .loop-ring::before { display: none; }
  .seg-grid { gap: 8px; }
  .seg-chip { font-size: 12px; padding: 6px 10px; }
}

/* ── ERP ORBIT (Startseite Accordion) ─────────────────────────── */
@media (max-width: 540px) {
  .erp-orbit { width: 220px; height: 220px; }
  .erp-orbit__node { transform: rotate(var(--a)) translateX(96px) rotate(calc(-1 * var(--a))); }
  .erp-orbit__ring--2 .erp-orbit__node { transform: rotate(var(--a)) translateX(72px) rotate(calc(-1 * var(--a))); }
}

/* ── STATS BELT ────────────────────────────────────────────────── */
@media (max-width: 540px) {
  .erp-stats { padding: 60px 0; }
  .erp-stats__inner { grid-template-columns: 1fr 1fr; gap: 32px; }
  .erp-stat__figure { font-size: 48px; }
}

/* ── FAQ ───────────────────────────────────────────────────────── */
@media (max-width: 540px) {
  .faq { padding: 60px 0 80px; }
  .faq__title { font-size: 30px; }
  .faq__q { font-size: 14px; padding: 16px 0; min-height: 44px; }
  .faq__a-inner { font-size: 14px; }
  .faq__btn { min-height: 44px; }
}

/* ── CONTACT FORM ──────────────────────────────────────────────── */
@media (max-width: 860px) {
  .final__contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .final__form-row { grid-template-columns: 1fr; }
}
@media (max-width: 540px) {
  .final { padding: 64px 0 40px; }
  .final__title { font-size: clamp(26px, 8vw, 44px); }
  .final__form { padding: 24px 16px; }
}

/* ── FOOTER ────────────────────────────────────────────────────── */
@media (max-width: 860px) {
  .footer { padding: 60px 0 28px; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 28px; margin-bottom: 40px; }
}
@media (max-width: 540px) {
  .footer__grid { grid-template-columns: 1fr; gap: 28px; }
  .footer__bottom { flex-direction: column; gap: 16px; text-align: center; }
  .footer__legal { justify-content: center; flex-wrap: wrap; gap: 10px; }
}

/* ── LEGAL / PROSE ─────────────────────────────────────────────── */
@media (max-width: 860px) {
  .prose-grid { grid-template-columns: 1fr !important; }
  .prose-toc { display: none; }
}
@media (max-width: 540px) {
  .page-hero { padding: 80px 0 48px; }
  .page-hero__title { font-size: clamp(28px, 9vw, 48px); }
  .prose h2 { font-size: 20px; }
}

/* ── TRUST STRIP (Timera) ──────────────────────────────────────── */
@media (max-width: 540px) {
  .trust-strip__inner { flex-wrap: wrap; gap: 8px; justify-content: center; }
  .trust-strip__item { font-size: 12px; }
}

/* ── PRODUCTS GRID ─────────────────────────────────────────────── */
@media (max-width: 540px) {
  .products__grid { grid-template-columns: 1fr; }
  .product-card { padding: 24px; }
}


/* ── COMPARISON TABLE ──────────────────────────────────────────── */
@media (max-width: 540px) {
  .comparison__title { font-size: 24px; }
  .comparison__table { font-size: 12px; }
  .comparison__table th, .comparison__table td { padding: 8px 10px; }
}

/* ── HARDWARE (Timera) ─────────────────────────────────────────── */
@media (max-width: 860px) {
  .hardware__inner { grid-template-columns: 1fr !important; gap: 40px; }
  .hardware__visual img { max-width: 260px; margin: 0 auto; display: block; }
}

/* ── PROJECTS GRID ─────────────────────────────────────────────── */
@media (max-width: 860px) {
  .projects__grid { grid-template-columns: 1fr !important; }
}

/* ── BUTTONS — Touch-freundlich ────────────────────────────────── */
.btn { min-height: 44px; }
a[class*="footer__"], button { min-height: 44px; }
.nav__hamburger { min-height: 44px; }

/* ── TIMERA FEATURES ───────────────────────────────────────────── */
@media (max-width: 540px) {
  .timera-feat-row__icon { display: none; }
  .timera-feat-row__title { font-size: 16px; }
}

/* ── KI-PROBLEM / KI-STEPS ─────────────────────────────────────── */
@media (max-width: 860px) {
  .ki-showcase { padding: 60px 0; }
  .ki-steps { grid-template-columns: 1fr !important; gap: 24px; }
}

/* ================================================================
   ===== MOBILE FIXES v2 =====
   ================================================================ */

/* ── FIX 1: Nav Hamburger — kein weisser Balken ──────────────── */
.nav__inner {
  position: relative;
  z-index: 1000;
}
.nav__hamburger {
  flex-shrink: 0;
  width: 44px !important;
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  padding: 10px !important;
  min-height: 44px !important;
  /* Verhindert den weissen Balken */
}
.nav__hamburger span {
  display: block !important;
  height: 2px !important;
  width: 22px !important;
  background: #fff !important;
  border-radius: 2px !important;
  margin: 0 auto;
}
/* Nav-Drawer erscheint ÜBER allem */
.nav__drawer {
  position: fixed !important;
  top: 0 !important; left: 0 !important; right: 0 !important; bottom: 0 !important;
  z-index: 9999 !important;
  background: #0c0f1c !important;
}

/* ── FIX 2: Why-Sektion — kompakter auf Mobile ───────────────── */
@media (max-width: 540px) {
  .why__grid { grid-template-columns: 1fr; gap: 0; }
  .why__card {
    flex-direction: row;
    align-items: flex-start;
    gap: 16px;
    padding: 20px 0;
    border-bottom: 1px solid var(--ink-line);
  }
  .why__card:last-child { border-bottom: none; }
  .why__icon {
    width: 36px; height: 36px;
    flex-shrink: 0; margin-top: 2px;
  }
  .why__card > div { flex: 1; }
  .why__label { font-size: 16px; margin-bottom: 4px; }
  .why__copy { font-size: 13px; line-height: 1.55; }
}

/* ── FIX 3: KI-Col Icons — Icon VOR dem Text, nicht darunter ─── */
@media (max-width: 860px) {
  .ki-col {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 16px;
    padding: 20px 0;
  }
  .ki-col__icon {
    margin-top: 0;
    padding-top: 0;
    flex-shrink: 0;
    order: -1;
    width: 32px;
    color: var(--primary-hi) !important;
  }
  .ki-col__icon .lucide { width: 22px; height: 22px; }
  .ki-col__num { font-size: 10px; margin-bottom: 2px; }
  .ki-col__title { font-size: 16px; margin-bottom: 4px; }
  .ki-col__body { font-size: 13px; }
}

/* ── FIX 4: Phone-Duo — übereinander legen auf Mobile ────────── */
@media (max-width: 760px) {
  .phone-duo {
    position: relative !important;
    min-height: 420px !important;
    flex-direction: row !important;
    justify-content: center !important;
    align-items: flex-start !important;
    gap: 0 !important;
  }
  .phone-duo__back {
    position: absolute !important;
    left: 5% !important; top: 6% !important;
    max-width: 180px !important;
    transform: rotate(-5deg) !important;
    opacity: 0.8 !important;
    z-index: 1 !important;
  }
  .phone-duo__front {
    position: relative !important;
    z-index: 2 !important;
    max-width: 220px !important;
    transform: rotate(2deg) translateX(12%) !important;
    order: 0 !important;
  }
}
@media (max-width: 400px) {
  .phone-duo { min-height: 360px !important; }
  .phone-duo__back { max-width: 150px !important; }
  .phone-duo__front { max-width: 185px !important; }
}

/* ================================================================
   ===== NAV FIX v3 — Hamburger kein weisser Balken =====
   ================================================================ */

/* Reset browser default button styles komplett */
button.nav__hamburger {
  all: unset !important;
  display: none !important;
  cursor: pointer !important;
  width: 44px !important;
  height: 44px !important;
  padding: 11px 11px !important;
  background: transparent !important;
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
  -webkit-appearance: none !important;
  appearance: none !important;
  flex-direction: column !important;
  justify-content: space-between !important;
  align-items: center !important;
  gap: 5px !important;
  border-radius: 8px !important;
  transition: background 200ms !important;
  flex-shrink: 0 !important;
}
button.nav__hamburger:hover {
  background: rgba(255,255,255,0.08) !important;
}
button.nav__hamburger span {
  display: block !important;
  height: 2px !important;
  width: 20px !important;
  background: rgba(255,255,255,0.9) !important;
  border-radius: 2px !important;
  transition: transform 0.25s ease, opacity 0.25s ease !important;
  transform-origin: center !important;
}
/* Drawer Overlay — dunkler Brand-Hintergrund */
.nav__drawer {
  background: var(--ink) !important;
  border-top: 1px solid var(--ink-line) !important;
}
.nav__drawer a {
  color: var(--on-ink-2) !important;
  border-bottom: 1px solid var(--ink-line) !important;
}
.nav__drawer a:last-child { border-bottom: none !important; }
.nav__drawer .nav__drawer-cta {
  background: var(--primary) !important;
  color: #fff !important;
  border-radius: var(--radius-pill) !important;
  border-bottom: none !important;
}

/* Hamburger auf Mobile sichtbar */
@media (max-width: 860px) {
  button.nav__hamburger {
    display: flex !important;
  }
  .nav__cta { display: none !important; }
}

/* X-Animation wenn offen */
.nav--open button.nav__hamburger span:nth-child(1) {
  transform: translateY(7px) rotate(45deg) !important;
}
.nav--open button.nav__hamburger span:nth-child(2) {
  opacity: 0 !important;
}
.nav--open button.nav__hamburger span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg) !important;
}

/* ── Drawer via .is-open Klasse (JS setzt sie direkt) ───────────── */
.nav__drawer { display: none !important; }
.nav__drawer.is-open {
  display: flex !important;
  opacity: 1 !important;
  pointer-events: auto !important;
  transform: scale(1) translateY(0) !important;
}

/* Hamburger X-Animation via .is-open */
button.nav__hamburger.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg) !important;
}
button.nav__hamburger.is-open span:nth-child(2) {
  opacity: 0 !important;
}
button.nav__hamburger.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg) !important;
}

/* ── Footer Dots komplett verstecken (überall) ──────────────────── */
.footer__dots, .footer__dot { display: none !important; }

/* ── Drawer Close X-Button ──────────────────────────────────────── */
.nav__drawer-close {
  position: absolute;
  top: 20px; right: 20px;
  width: 44px; height: 44px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 50%;
  color: rgba(255,255,255,0.7);
  font-size: 22px; line-height: 1;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 200ms, color 200ms;
  all: unset;
  position: absolute;
  top: 20px; right: 20px;
  width: 44px; height: 44px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 50%;
  color: rgba(255,255,255,0.7);
  font-size: 22px;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 200ms, color 200ms;
}
.nav__drawer-close:hover, .nav__drawer-close:active {
  background: rgba(255,255,255,0.12);
  color: #fff;
}

/* ── Why-Sektion Mobile FIX v2 — Icons + kompakter ─────────────── */
@media (max-width: 540px) {
  /* Vorherige Horizontal-Regel überschreiben */
  .why__grid { grid-template-columns: 1fr 1fr !important; gap: 28px 20px !important; }
  .why__card {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 10px !important;
    padding: 0 !important;
    border-bottom: none !important;
  }
  .why__icon {
    width: 48px !important; height: 48px !important;
    flex-shrink: 0 !important;
  }
  .why__label { font-size: 15px !important; margin-bottom: 4px !important; }
  .why__copy { font-size: 13px !important; line-height: 1.5 !important; }
  .why__card > div { flex: unset !important; }
}

/* ===== TIMERA ORBIT VISUAL (Service-Accordion Startseite) ===== */
.timera-orbit-wrap {
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 16px; padding: 32px 0;
}
.timera-orbit {
  position: relative; width: 280px; height: 280px;
}
.timera-orbit__core {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 72px; height: 72px;
  background: linear-gradient(135deg, #4648d4, #6063ee);
  border-radius: 18px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 0 0 10px rgba(70,72,212,0.15), 0 0 0 22px rgba(70,72,212,0.07), 0 0 40px rgba(70,72,212,0.3);
  z-index: 2;
}
.timera-orbit__ring {
  position: absolute; inset: 0; border-radius: 50%;
  border: 1px solid rgba(70,72,212,0.22);
}
.timera-orbit__ring--1 { animation: timera-spin 18s linear infinite; }
.timera-orbit__ring--2 {
  width: 78%; height: 78%; top: 11%; left: 11%;
  border-color: rgba(138,140,255,0.18);
  animation: timera-spin 13s linear infinite reverse;
}
@keyframes timera-spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
.timera-orbit__node {
  position: absolute; top: 50%; left: 50%;
  width: 38px; height: 38px; margin: -19px;
  background: #1c2038;
  border: 1px solid rgba(70,72,212,0.3);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transform: rotate(var(--a)) translateX(130px) rotate(calc(-1 * var(--a)));
}
.timera-orbit__ring--2 .timera-orbit__node {
  transform: rotate(var(--a)) translateX(98px) rotate(calc(-1 * var(--a)));
  width: 28px; height: 28px; margin: -14px;
  background: #151829;
  border-color: rgba(138,140,255,0.2);
}
.timera-orbit__node .lucide { width: 15px; height: 15px; color: var(--primary-hi); }
.timera-orbit__node--sm .lucide { width: 12px; height: 12px; color: var(--on-ink-3); }
.timera-orbit__label {
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.18em;
  text-transform: uppercase; color: rgba(255,255,255,0.22);
}

/* ===== STAMMSPOT ORBIT VISUAL (Service-Accordion Startseite) ===== */
.stammspot-orbit-wrap {
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 16px; padding: 32px 0;
}
.stammspot-orbit {
  position: relative; width: 280px; height: 280px;
}
.stammspot-orbit__core {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 72px; height: 72px;
  background: linear-gradient(135deg, #8127cf, #a855f7);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 0 0 10px rgba(129,39,207,0.15), 0 0 0 22px rgba(129,39,207,0.07), 0 0 40px rgba(168,85,247,0.3);
  z-index: 2;
}
.stammspot-orbit__core .lucide { width: 32px; height: 32px; color: #fff; }
.stammspot-orbit__ring {
  position: absolute; inset: 0; border-radius: 50%;
  border: 1px solid rgba(129,39,207,0.25);
}
.stammspot-orbit__ring--1 { animation: spot-spin 16s linear infinite; }
.stammspot-orbit__ring--2 {
  width: 78%; height: 78%; top: 11%; left: 11%;
  border-color: rgba(168,85,247,0.18);
  animation: spot-spin 11s linear infinite reverse;
}
@keyframes spot-spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
.stammspot-orbit__node {
  position: absolute; top: 50%; left: 50%;
  width: 38px; height: 38px; margin: -19px;
  background: #1e1430;
  border: 1px solid rgba(129,39,207,0.3);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transform: rotate(var(--a)) translateX(130px) rotate(calc(-1 * var(--a)));
}
.stammspot-orbit__ring--2 .stammspot-orbit__node {
  transform: rotate(var(--a)) translateX(98px) rotate(calc(-1 * var(--a)));
  width: 28px; height: 28px; margin: -14px;
  background: #160e24;
  border-color: rgba(168,85,247,0.2);
}
.stammspot-orbit__node .lucide { width: 15px; height: 15px; color: #c084fc; }
.stammspot-orbit__node--sm .lucide { width: 12px; height: 12px; color: rgba(192,132,252,0.5); }
.stammspot-orbit__label {
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.18em;
  text-transform: uppercase; color: rgba(255,255,255,0.22);
}

/* ================================================================
   ===== Chapter-Nav + Hamburger auf ALLEN Grössen =====
   ================================================================ */

/* Chapter-Nav: auf Mobile zeigen, kleiner + rechts */
@media (max-width: 900px) {
  .chapter-nav {
    display: flex !important;
    right: 8px !important;
    gap: 8px !important;
  }
  .chapter-nav__dot {
    width: 6px !important;
    height: 6px !important;
  }
  .chapter-nav__dot.is-active {
    height: 22px !important;
  }
  /* Label auf Mobile ausblenden */
  .chapter-nav__dot::before { display: none !important; }
}

/* Hamburger: auch auf Startseite anzeigen */
@media (max-width: 860px) {
  button.nav__hamburger {
    display: flex !important;
  }
}

/* ── Hamburger kleiner + X-Button Fix ──────────────────────────── */
button.nav__hamburger {
  width: 36px !important;
  height: 36px !important;
  padding: 8px !important;
}
button.nav__hamburger span {
  width: 18px !important;
}

.nav__drawer-close {
  all: unset !important;
  position: absolute !important;
  top: 16px !important; right: 16px !important;
  width: 40px !important; height: 40px !important;
  background: rgba(255,255,255,0.08) !important;
  border: 1px solid rgba(255,255,255,0.15) !important;
  border-radius: 50% !important;
  color: #fff !important;
  font-size: 18px !important;
  cursor: pointer !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}
.nav__drawer-close:hover { background: rgba(255,255,255,0.15) !important; }

/* ── Nav kleiner + Hamburger enger ──────────────────────────────── */
@media (max-width: 860px) {
  .nav { padding: 12px 0 !important; }
  .nav--solid { padding: 10px 0 !important; }
  .logo img { height: 22px !important; }

  /* Hamburger: noch kleiner, Striche enger */
  button.nav__hamburger {
    width: 32px !important;
    height: 32px !important;
    padding: 7px !important;
    gap: 4px !important;
  }
  button.nav__hamburger span {
    width: 16px !important;
    height: 1.5px !important;
  }

  /* Hero-Sektionen: mehr Padding-Top damit nix verdeckt wird */
  .service-hero { padding-top: 90px !important; }
  .erp-hero { padding-top: 90px !important; }
  .hero { padding-top: 110px !important; }
  .page-hero { padding-top: 90px !important; }
}

/* ── Trust-Items (KI-Beratung) Mobile — kompakter, Icons bleiben ── */
@media (max-width: 860px) {
  .ki-trust { padding: 60px 0; }
  .ki-trust__head { margin-bottom: 36px; }
  .ki-trust__grid { grid-template-columns: 1fr 1fr; }
  .trust-item:nth-child(3n) { border-right: 1px solid var(--ink-line); }
  .trust-item:nth-last-child(-n+3) { border-bottom: 1px solid var(--ink-line); }
  .trust-item:nth-child(2n) { border-right: none; }
  .trust-item:nth-last-child(-n+2) { border-bottom: none; }
}
@media (max-width: 540px) {
  .ki-trust__grid { grid-template-columns: 1fr; }
  .trust-item {
    padding: 20px 20px !important;
    display: flex;
    align-items: flex-start;
    gap: 14px;
  }
  .trust-item:nth-child(n) { border-right: none; border-bottom: 1px solid var(--ink-line); }
  .trust-item:last-child { border-bottom: none; }
  .trust-item__icon {
    width: 36px !important; height: 36px !important;
    flex-shrink: 0; margin-bottom: 0 !important;
  }
  .trust-item__icon .lucide { width: 16px !important; height: 16px !important; }
  .trust-item > div { flex: 1; }
  .trust-item__title { font-size: 14px !important; margin-bottom: 4px !important; }
  .trust-item__body { font-size: 13px !important; line-height: 1.5 !important; }
}

/* ===== PROJECTS — kompakter & moderner ===== */
.projects__head--slim {
  grid-template-columns: auto 1fr;
  gap: 48px;
  margin-bottom: 32px;
  align-items: center;
}
.projects__head--slim .projects__title {
  font-size: clamp(32px, 4vw, 52px);
  white-space: nowrap;
}
.projects__grid--slim {
  gap: 20px;
}
.projects__grid--slim .project {
  aspect-ratio: 4 / 3;
}
/* Feature-Karte schlanker */
.project--feature-slim {
  padding: 36px 32px !important;
  align-items: flex-start !important;
  text-align: left !important;
  justify-content: flex-start !important;
  gap: 0 !important;
}
.project__big--sm {
  font-size: clamp(24px, 3vw, 38px) !important;
  margin: 0 0 20px !important;
}
/* Checkliste */
.project__checklist {
  list-style: none; padding: 0; margin: 0 0 24px;
  display: flex; flex-direction: column; gap: 10px;
}
.project__checklist li {
  display: flex; align-items: center; gap: 10px;
  font-size: 14px; color: rgba(12,15,28,0.75);
  font-family: var(--body);
}
.project__checklist .lucide {
  width: 14px; height: 14px;
  color: var(--primary); flex-shrink: 0;
}

/* Section selbst schmaler */
.projects { padding: 80px 0 !important; }

@media (max-width: 760px) {
  .projects__head--slim { grid-template-columns: 1fr; gap: 12px; }
  .projects__head--slim .projects__title { white-space: normal; font-size: 32px; }
  .projects__grid--slim .project { aspect-ratio: 4 / 3; }
  .project--feature-slim { padding: 28px 24px !important; }
  .project__big--sm { font-size: 24px !important; }
}

/* ===== CONTACT / FINAL — Layout-Optimierung ===== */
.final { padding: 80px 0 100px !important; text-align: left !important; }

.final__contact-grid {
  grid-template-columns: 1fr 1.1fr !important;
  gap: 64px !important;
  padding: 0 !important;
  align-items: center !important;
}

/* Titel kleiner + einzeilig lesbarer */
.final__title {
  font-size: clamp(32px, 4.5vw, 60px) !important;
  line-height: 1.05 !important;
  margin: 0 0 20px !important;
}

/* Sub-Text kompakter */
.final__sub {
  font-size: 15px !important;
  margin: 16px 0 24px !important;
}

/* Kontakt-Links horizontal nebeneinander */
.final__contact-info {
  flex-direction: row !important;
  flex-wrap: wrap !important;
  gap: 16px 28px !important;
}
.final__contact-link { font-size: 14px !important; }

/* Formular: Box-Shadow subtiler */
.final__form {
  box-shadow: 0 2px 24px rgba(0,0,0,0.08) !important;
  border: 1px solid rgba(0,0,0,0.07) !important;
  padding: 32px !important;
  gap: 14px !important;
}

@media (max-width: 860px) {
  .final { padding: 60px 0 80px !important; }
  .final__contact-grid { grid-template-columns: 1fr !important; gap: 36px !important; }
  .final__title { font-size: clamp(28px, 7vw, 44px) !important; }
  .final__contact-info { flex-direction: column !important; }
}

/* ================================================================
   ===== HAMBURGER FINAL — überschreibt alle vorherigen Regeln =====
   ================================================================ */

/* Standard: immer versteckt */
button#navToggle,
button.nav__hamburger {
  display: none !important;
}

/* Auf Mobile (≤ 860px): immer sichtbar */
@media (max-width: 860px) {
  button#navToggle,
  button.nav__hamburger {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 4px !important;
    width: 36px !important;
    height: 36px !important;
    padding: 8px !important;
    background: transparent !important;
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
    cursor: pointer !important;
    flex-shrink: 0 !important;
    -webkit-appearance: none !important;
    appearance: none !important;
    border-radius: 6px !important;
  }
  button#navToggle span,
  button.nav__hamburger span {
    display: block !important;
    width: 18px !important;
    height: 1.5px !important;
    background: rgba(255,255,255,0.9) !important;
    border-radius: 2px !important;
    transition: transform 0.25s ease, opacity 0.25s ease !important;
  }
  /* CTA-Button auf Mobile verstecken */
  .nav__cta { display: none !important; }
}

/* cookie-banner styles now defined in the earlier ===== COOKIE BANNER ===== block */

/* ===== FORM SPINNER ===== */
.btn--loading {
  pointer-events: none;
  opacity: 0.8;
}
.btn--loading .final__form-label,
.btn--loading .ki-form__label {
  opacity: 0;
}
.btn__spinner {
  display: none;
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255,255,255,0.3);
  border-top-color: #fff;
  border-radius: 50%;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  animation: spin-btn 0.7s linear infinite;
}
.btn--loading .btn__spinner { display: block; }
@keyframes spin-btn {
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

/* ===== 404 PAGE ===== */
.not-found {
  min-height: 100vh;
  background: var(--ink);
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
}
.not-found__inner {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}
.not-found__code {
  font-family: var(--display);
  font-size: clamp(96px, 20vw, 160px);
  font-weight: 700;
  color: var(--primary);
  opacity: 0.18;
  line-height: 1;
  display: block;
  margin-bottom: -24px;
  letter-spacing: -4px;
}
.not-found__title {
  font-family: var(--display);
  font-size: clamp(28px, 5vw, 44px);
  font-weight: 600;
  color: var(--on-ink);
  line-height: 1.2;
  margin-bottom: 20px;
}
.not-found__title em {
  color: var(--primary-hi);
  font-style: italic;
}
.not-found__sub {
  font-family: var(--body);
  font-size: 16px;
  color: var(--on-ink-2);
  line-height: 1.65;
  margin-bottom: 40px;
}
.not-found__links {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 56px;
}
.not-found__products {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}
.not-found__product {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--body);
  font-size: 14px;
  font-weight: 500;
  color: var(--on-ink-3);
  background: var(--ink-2);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 8px;
  padding: 10px 16px;
  text-decoration: none;
  transition: color 0.2s, border-color 0.2s;
}
.not-found__product:hover {
  color: var(--primary-hi);
  border-color: rgba(70,72,212,0.4);
}
.not-found__product i { width: 16px; height: 16px; }

/* ===== KI CARDS (Homepage) ===== */
.ki-showcase__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 48px;
  margin-bottom: 48px;
}
.ki-showcase__sub {
  font-family: var(--body);
  font-size: 16px;
  color: var(--on-ink-2);
  line-height: 1.6;
  max-width: 360px;
  flex-shrink: 0;
}

.ki-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 16px;
  overflow: hidden;
}
.ki-card {
  padding: 40px 36px;
  background: var(--ink);
  display: flex;
  flex-direction: column;
  transition: background 0.2s;
}
.ki-card:hover { background: var(--ink-2); }
.ki-card__icon {
  width: 44px; height: 44px; border-radius: 10px;
  background: color-mix(in oklch, var(--primary) 14%, transparent);
  display: flex; align-items: center; justify-content: center;
  color: var(--primary-hi);
  margin-bottom: 24px;
}
.ki-card__icon .lucide { width: 22px; height: 22px; stroke-width: 1.5; }
.ki-card__prod {
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--primary-hi);
  margin: 0 0 8px;
}
.ki-card__title {
  font-family: var(--display); font-weight: 600; font-size: 20px;
  color: var(--on-ink); margin: 0 0 14px;
}
.ki-card__body {
  font-family: var(--body); font-size: 14px; line-height: 1.65;
  color: var(--on-ink-2); margin: 0;
}

@media (max-width: 860px) {
  .ki-showcase__header { flex-direction: column; align-items: flex-start; gap: 16px; }
  .ki-showcase__sub { max-width: 100%; }
  .ki-cards { grid-template-columns: 1fr; }
}

/* ===== ERP PHONE FRAME ===== */
.phone-frame {
  position: relative;
  width: 260px;
  max-width: 100%;
  margin: 0 auto;
  background: #131628;
  border-radius: 36px;
  padding: 14px 8px;
  box-shadow: 0 32px 80px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.06);
}
.phone-frame::before {
  content: '';
  display: block;
  width: 72px; height: 5px;
  background: rgba(255,255,255,0.12);
  border-radius: 3px;
  margin: 0 auto 10px;
}
.phone-frame img { width: 100%; border-radius: 26px; display: block; }

/* ===== ERP METRIC PREVIEW ===== */
.erp-metric-preview { display: flex; flex-direction: column; gap: 10px; width: 100%; }
.erp-metric-card {
  background: var(--surface-card);
  border: 1px solid rgba(0,0,0,0.07);
  border-radius: 14px;
  padding: 14px 18px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 2px 12px;
}
.erp-metric-card--alert { border-color: rgba(196,69,69,0.25); }
.erp-metric-card__label {
  font-family: var(--mono); font-size: 11px;
  text-transform: uppercase; letter-spacing: 0.12em;
  color: var(--on-surface-3); grid-column: 1;
}
.erp-metric-card__value {
  font-family: var(--display); font-size: 22px; font-weight: 700;
  color: var(--on-surface); grid-column: 1;
}
.erp-metric-card--alert .erp-metric-card__value { color: #c44545; }
.erp-metric-card__badge {
  font-family: var(--mono); font-size: 11px;
  padding: 3px 8px; border-radius: 20px;
  background: #e8f5ee; color: #2a7a4e;
  grid-row: 1 / span 2; grid-column: 2;
  white-space: nowrap;
  display: flex; align-items: center; gap: 4px;
}
.erp-metric-card--alert .erp-metric-card__badge { background: #fef2f2; color: #c44545; }

/* ===== ERP FEATURE ROW ===== */
.erp-feature-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 48px;
}
.erp-feat {
  background: var(--surface-card);
  border: 1px solid rgba(0,0,0,0.07);
  border-radius: 16px;
  padding: 24px 20px;
}
.erp-feat__icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: color-mix(in oklch, var(--primary) 10%, white);
  display: flex; align-items: center; justify-content: center;
  color: var(--primary);
  margin-bottom: 14px;
}
.erp-feat__icon .lucide { width: 20px; height: 20px; stroke-width: 1.5; }
.erp-feat__num {
  font-family: var(--mono); font-size: 11px;
  color: var(--on-surface-3); letter-spacing: 0.1em;
  margin-bottom: 6px; display: block;
}
.erp-feat__title {
  font-family: var(--display); font-weight: 600; font-size: 15px;
  color: var(--on-surface); margin: 0 0 8px;
}
.erp-feat__body {
  font-family: var(--body); font-size: 13px; line-height: 1.6;
  color: var(--on-surface-2); margin: 0;
}

/* ===== ERP AUSGABEN FEATURE GRID ===== */
.erp-ausgaben-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 32px;
}
.erp-ausgaben-feat {
  background: var(--ink-3);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 14px;
  padding: 20px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.erp-ausgaben-feat__icon {
  width: 36px; height: 36px; flex-shrink: 0;
  border-radius: 9px;
  background: rgba(70,72,212,0.18);
  display: flex; align-items: center; justify-content: center;
  color: var(--primary-hi);
}
.erp-ausgaben-feat__icon .lucide { width: 17px; height: 17px; stroke-width: 1.5; }
.erp-ausgaben-feat__title {
  font-family: var(--body); font-size: 14px; font-weight: 600;
  color: var(--on-ink); margin: 0 0 4px;
}
.erp-ausgaben-feat__body {
  font-family: var(--body); font-size: 13px; line-height: 1.55;
  color: var(--on-ink-2); margin: 0;
}

/* ===== ERP GRADIENT VISUAL ===== */
.erp-gradient-visual {
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: 20px;
  background: linear-gradient(165deg, #1c2038, #4648d4);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: rgba(255,255,255,0.5);
}
.erp-gradient-visual .lucide { width: 48px; height: 48px; stroke-width: 1; opacity: 0.4; }

@media (max-width: 860px) {
  .erp-feature-row { grid-template-columns: repeat(2, 1fr); }
  .erp-ausgaben-grid { grid-template-columns: 1fr; }
  .phone-frame { width: 220px; }
}
@media (max-width: 480px) {
  .erp-feature-row { grid-template-columns: 1fr; }
}

/* ===== ERP BROWSER FRAME & SHOWCASE ===== */
.erp-showcase { margin-top: 72px; }
.erp-showcase__head { text-align: center; max-width: 680px; margin: 0 auto 36px; }
.erp-showcase__eyebrow {
  font-family: var(--mono); font-size: 12px; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--primary);
  display: block; margin-bottom: 14px;
}
.erp-chapter--dark .erp-showcase__eyebrow { color: var(--primary-hi); }
.erp-showcase__title {
  font-family: var(--display); font-weight: 600; font-size: clamp(24px, 2vw, 30px);
  margin: 0 0 12px; line-height: 1.15;
}
.erp-chapter--light .erp-showcase__title { color: var(--on-surface); }
.erp-chapter--dark .erp-showcase__title,
.erp-chapter--flip .erp-showcase__title { color: var(--on-ink); }
.erp-showcase__title em { font-style: italic; color: var(--primary); }
.erp-chapter--dark .erp-showcase__title em { color: var(--primary-hi); }
.erp-showcase__sub {
  font-family: var(--body); font-size: 15px; line-height: 1.6; margin: 0;
}
.erp-chapter--light .erp-showcase__sub { color: var(--on-surface-2); }
.erp-chapter--dark .erp-showcase__sub { color: var(--on-ink-2); }

.browser-frame {
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
  max-width: 940px;
  margin: 0 auto;
  box-shadow: 0 30px 70px rgba(12,15,28,0.32), 0 0 0 1px rgba(0,0,0,0.06);
}
.browser-frame__bar {
  height: 40px;
  background: #1c2038;
  display: flex; align-items: center; gap: 8px;
  padding: 0 16px;
}
.browser-frame__dot { width: 11px; height: 11px; border-radius: 50%; flex-shrink: 0; }
.browser-frame__dot--r { background: #ff5f57; }
.browser-frame__dot--y { background: #febc2e; }
.browser-frame__dot--g { background: #28c840; }
.browser-frame__url {
  margin-left: 14px; flex: 1; height: 24px;
  background: rgba(255,255,255,0.08); border-radius: 6px;
  display: flex; align-items: center; gap: 7px; padding: 0 12px;
  font-family: var(--mono); font-size: 11px; color: rgba(255,255,255,0.45);
  overflow: hidden; white-space: nowrap;
}
.browser-frame__url .lucide { width: 12px; height: 12px; flex-shrink: 0; }
.browser-frame img { width: 100%; display: block; }

/* ===== ERP PHONE DUO ===== */
.phone-duo {
  display: flex; justify-content: center; align-items: center;
  gap: 0;
}
.phone-duo .phone-frame { width: 186px; }
.phone-duo .phone-frame:first-child {
  transform: translateX(14px) translateY(-16px) rotate(-3deg);
  z-index: 1;
}
.phone-duo .phone-frame:last-child {
  transform: translateX(-14px) translateY(16px) rotate(3deg);
  z-index: 2;
}

@media (max-width: 860px) {
  .erp-showcase { margin-top: 56px; }
  .phone-duo .phone-frame { width: 150px; }
}
@media (max-width: 480px) {
  .phone-duo .phone-frame { width: 132px; }
  .phone-duo .phone-frame:first-child { transform: translateX(8px) translateY(-10px) rotate(-3deg); }
  .phone-duo .phone-frame:last-child { transform: translateX(-8px) translateY(10px) rotate(3deg); }
}

/* ===== ERP MOCK UI CARDS (design method for screenshot-less functions) ===== */
.erp-mock {
  background: var(--surface-card);
  border: 1px solid rgba(0,0,0,0.07);
  border-radius: 18px;
  padding: 24px;
  box-shadow: 0 24px 56px rgba(12,15,28,0.14);
  width: 100%;
}
.erp-chapter--dark .erp-mock,
.erp-chapter--flip .erp-mock {
  background: var(--ink-3);
  border-color: rgba(255,255,255,0.08);
  box-shadow: 0 24px 56px rgba(0,0,0,0.35);
}
.erp-mock__head {
  display: flex; align-items: center; gap: 9px;
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--on-surface-3);
  padding-bottom: 14px; margin-bottom: 16px;
  border-bottom: 1px solid rgba(0,0,0,0.07);
}
.erp-chapter--dark .erp-mock__head,
.erp-chapter--flip .erp-mock__head { color: var(--on-ink-3); border-bottom-color: rgba(255,255,255,0.08); }
.erp-mock__head .lucide { width: 15px; height: 15px; color: var(--primary); }
.erp-chapter--dark .erp-mock__head .lucide { color: var(--primary-hi); }

/* version-trail rows */
.erp-trail { display: flex; flex-direction: column; gap: 0; }
.erp-trail__row {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 0; position: relative;
}
.erp-trail__row + .erp-trail__row { border-top: 1px dashed rgba(0,0,0,0.10); }
.erp-chapter--dark .erp-trail__row + .erp-trail__row { border-top-color: rgba(255,255,255,0.10); }
.erp-trail__dot {
  width: 30px; height: 30px; border-radius: 8px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  background: color-mix(in oklch, var(--primary) 12%, transparent);
  color: var(--primary);
}
.erp-chapter--dark .erp-trail__dot { background: rgba(138,140,255,0.16); color: var(--primary-hi); }
.erp-trail__dot .lucide { width: 15px; height: 15px; }
.erp-trail__main { flex: 1; min-width: 0; }
.erp-trail__title {
  font-family: var(--body); font-size: 14px; font-weight: 600; margin: 0;
  color: var(--on-surface);
}
.erp-chapter--dark .erp-trail__title { color: var(--on-ink); }
.erp-trail__sub {
  font-family: var(--mono); font-size: 11px; margin: 2px 0 0; color: var(--on-surface-3);
}
.erp-chapter--dark .erp-trail__sub { color: var(--on-ink-3); }
.erp-trail__badge {
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.04em;
  padding: 3px 9px; border-radius: 20px; white-space: nowrap; flex-shrink: 0;
}
.erp-trail__badge--lock { background: #f1f0f5; color: #6a6a82; }
.erp-trail__badge--storno { background: #fef2f2; color: #c44545; }
.erp-trail__badge--ok { background: #e8f5ee; color: #2a7a4e; }
.erp-chapter--dark .erp-trail__badge--lock { background: rgba(255,255,255,0.08); color: var(--on-ink-2); }

/* file-list rows (DATEV package) */
.erp-filelist { display: flex; flex-direction: column; gap: 4px; }
.erp-filerow {
  display: flex; align-items: center; gap: 12px;
  padding: 11px 12px; border-radius: 10px;
  background: color-mix(in oklch, var(--ink) 4%, transparent);
}
.erp-chapter--dark .erp-filerow,
.erp-chapter--flip .erp-filerow { background: rgba(255,255,255,0.04); }
.erp-filerow__icon { color: var(--primary); flex-shrink: 0; }
.erp-chapter--dark .erp-filerow__icon { color: var(--primary-hi); }
.erp-filerow__icon .lucide { width: 17px; height: 17px; }
.erp-filerow__name {
  flex: 1; font-family: var(--body); font-size: 13px; color: var(--on-surface);
}
.erp-chapter--dark .erp-filerow__name { color: var(--on-ink); }
.erp-filerow__check { color: #2a7a4e; flex-shrink: 0; }
.erp-filerow__check .lucide { width: 16px; height: 16px; }

/* ===== ERP DEVICE MOCKUPS (pre-framed PNGs, transparent bg — no extra frame) ===== */
.erp-mockup { display: block; width: 100%; height: auto; }
.erp-mockup--pc { max-width: 1040px; margin: 0 auto; }
.erp-mockup--phone { max-width: 312px; margin: 0 auto; }
.erp-phone-pair { display: flex; justify-content: center; align-items: center; gap: 8px; width: 100%; }
.erp-phone-pair .erp-mockup { width: 49%; max-width: 244px; margin: 0; }
.erp-phone-pair .erp-mockup:first-child { transform: translateY(-14px); }
.erp-phone-pair .erp-mockup:last-child  { transform: translateY(14px); }
/* hero: strip the container frame so the self-framed mockup shows naturally */
.erp-hero__screen--mockup {
  border: none; border-radius: 0; overflow: visible;
  box-shadow: none; background: transparent;
}
@media (max-width: 600px) {
  .erp-phone-pair .erp-mockup:first-child,
  .erp-phone-pair .erp-mockup:last-child { transform: none; }
}
