/* ─────────────────────────────────────────────
   Coreventa – Modern Light, Stripe/Ramp-inspired
   ───────────────────────────────────────────── */

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

:root {
  --bg:         #FFFFFF;
  --bg-soft:    #F7F7F5;
  --bg-mute:    #F0F0ED;
  --ink:        #0A0A0A;
  --ink-2:      #1C1C1C;
  --ink-muted:  #525252;
  --ink-subtle: #8A8A8A;
  --rule:       #E8E8E6;
  --rule-soft:  #F0F0EE;
  --brand:      #5B6CFF;
  --brand-ink:  #4453DB;
  --brand-wash: #EEF0FF;
  --accent:     #00D27D;
  --dark:       #0A0A0A;
  --dark-2:     #141414;

  --radius-sm: 8px;
  --radius:    14px;
  --radius-lg: 24px;

  --shadow-1: 0 1px 2px rgba(10,10,10,0.04), 0 2px 8px rgba(10,10,10,0.04);
  --shadow-2: 0 4px 12px rgba(10,10,10,0.06), 0 20px 40px rgba(10,10,10,0.08);

  --container: 1240px;
  --gutter: 28px;

  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-mono: 'JetBrains Mono', ui-monospace, 'SF Mono', monospace;
}

html { scroll-behavior: smooth; scroll-padding-top: 88px; }

body {
  font-family: var(--font-sans);
  font-feature-settings: "cv11", "ss01", "ss03";
  background: var(--bg);
  color: var(--ink);
  margin: 0;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5 {
  font-family: var(--font-sans);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.08;
  color: var(--ink);
  margin: 0;
  text-wrap: balance;
}

p { text-wrap: pretty; margin: 0; }

.mono { font-family: var(--font-mono); letter-spacing: 0; }

a { color: inherit; }

/* ─── Layout ─── */
.container { max-width: var(--container); margin: 0 auto; padding: 0 var(--gutter); }
.section   { padding: 120px 0; }
.section-sm{ padding: 72px 0; }

/* ─── Reveal ─── */
.reveal { opacity: 1; transform: none; transition: opacity 0.6s cubic-bezier(0.22,1,0.36,1), transform 0.6s cubic-bezier(0.22,1,0.36,1); }
html.js-reveal .reveal { opacity: 0; transform: translateY(10px); }
html.js-reveal .reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.05s; }
.reveal-delay-2 { transition-delay: 0.1s; }
.reveal-delay-3 { transition-delay: 0.15s; }

/* ─── Eyebrow / Pills ─── */
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: -0.005em;
  color: var(--ink-muted);
  padding: 6px 12px;
  background: var(--bg-soft);
  border: 1px solid var(--rule);
  border-radius: 999px;
}
.eyebrow-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--brand); }
.eyebrow.dark { background: rgba(255,255,255,0.06); border-color: rgba(255,255,255,0.1); color: rgba(255,255,255,0.7); }
.eyebrow.dark .eyebrow-dot { background: var(--accent); }

/* ─── Buttons ─── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 15px;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  padding: 11px 20px;
  border-radius: 999px;
  transition: background 0.18s ease, color 0.18s ease, border-color 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
  letter-spacing: -0.01em;
  white-space: nowrap;
}
.btn:focus-visible { outline: 2px solid var(--brand); outline-offset: 2px; }
.btn .arrow { transition: transform 0.24s; width: 14px; height: 14px; }
.btn:hover .arrow { transform: translateX(3px); }

.btn-primary { background: var(--ink); color: #fff; }
.btn-primary:hover { background: var(--dark-2); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(10,10,10,0.15); }

.btn-brand { background: var(--brand); color: #fff; }
.btn-brand:hover { background: var(--brand-ink); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(91,108,255,0.3); }

.btn-secondary { background: var(--bg); color: var(--ink); border-color: var(--rule); }
.btn-secondary:hover { background: var(--bg-soft); border-color: var(--ink-subtle); }

.btn-ghost { background: transparent; color: var(--ink); padding: 8px 0; }
.btn-ghost:hover { color: var(--brand); }

.btn-lg { padding: 14px 26px; font-size: 16px; }

.btn-light { background: #fff; color: var(--ink); }
.btn-light:hover { background: var(--bg-soft); transform: translateY(-1px); }
.btn-outline-dark { background: transparent; color: #fff; border-color: rgba(255,255,255,0.2); }
.btn-outline-dark:hover { border-color: rgba(255,255,255,0.5); background: rgba(255,255,255,0.05); }

/* ─── Navigation ─── */
.nav {
  position: fixed; top: 12px; left: 12px; right: 12px;
  z-index: 100;
  transition: all 0.25s ease;
}
.nav-inner {
  max-width: calc(var(--container) - 16px);
  margin: 0 auto;
  display: flex;
  align-items: center;
  height: 56px;
  gap: 32px;
  padding: 0 12px 0 20px;
  background: rgba(255,255,255,0.75);
  -webkit-backdrop-filter: blur(20px) saturate(1.5);
  backdrop-filter: blur(20px) saturate(1.5);
  border: 1px solid var(--rule);
  border-radius: 999px;
  box-shadow: 0 1px 2px rgba(10,10,10,0.03), 0 8px 24px rgba(10,10,10,0.04);
}
.nav-logo { text-decoration: none; flex-shrink: 0; display: flex; align-items: center; gap: 8px; }
.nav-logo img { height: 24px; display: block; }

.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-muted);
  text-decoration: none;
  padding: 7px 14px;
  border-radius: 999px;
  transition: color 0.15s ease, background 0.15s ease;
  letter-spacing: -0.005em;
}
.nav-link:hover { color: var(--ink); background: var(--bg-mute); }
.nav-link.active { color: var(--ink); background: var(--bg-mute); }
.nav-link:focus-visible { outline: 2px solid var(--brand); outline-offset: 2px; }

.nav-actions { margin-left: auto; display: flex; gap: 8px; align-items: center; }
.nav-actions .btn { padding: 8px 16px; font-size: 14px; }

.nav-mobile-btn { display: none; background: none; border: none; cursor: pointer; padding: 8px; color: var(--ink); border-radius: 8px; margin-left: auto; }
.nav-links-mobile {
  display: none;
  flex-direction: column; gap: 2px;
  padding: 16px 24px 24px;
  background: rgba(255,255,255,0.98);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  border: 1px solid var(--rule);
  border-radius: 20px;
  margin-top: 8px;
}
.nav-links-mobile.open { display: flex; }
.nav-links-mobile .nav-link { padding: 12px 14px; font-size: 16px; }
.nav-links-mobile .btn { margin-top: 12px; justify-content: center; }

@media (max-width: 860px) {
  .nav-links { display: none; }
  .nav-actions .btn { display: none; }
  .nav-mobile-btn { display: flex; }
}

/* ─── Hero ─── */
.hero {
  position: relative;
  padding: 160px 0 100px;
  background: var(--bg);
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -200px; left: 50%; transform: translateX(-50%);
  width: 1200px; height: 600px;
  background: radial-gradient(ellipse at center, rgba(91,108,255,0.10), transparent 60%);
  pointer-events: none;
  z-index: 0;
}
.hero-inner { position: relative; z-index: 1; text-align: center; }

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 6px 6px 14px;
  background: #fff;
  border: 1px solid var(--rule);
  border-radius: 999px;
  font-size: 13px;
  color: var(--ink-muted);
  margin-bottom: 32px;
  box-shadow: 0 1px 2px rgba(10,10,10,0.04);
  text-decoration: none;
  transition: transform 0.2s;
}
.hero-badge:hover { transform: translateY(-1px); }
.hero-badge-pill {
  background: var(--brand-wash);
  color: var(--brand-ink);
  font-weight: 500;
  padding: 3px 10px;
  border-radius: 999px;
  font-size: 12px;
}

.hero h1 {
  font-size: clamp(44px, 7vw, 88px);
  font-weight: 600;
  line-height: 1.02;
  letter-spacing: -0.035em;
  margin: 0 auto 24px;
  max-width: 18ch;
}
.hero h1 .accent { color: var(--brand); }

.hero-sub {
  font-size: clamp(17px, 1.5vw, 20px);
  line-height: 1.5;
  color: var(--ink-muted);
  max-width: 56ch;
  margin: 0 auto 40px;
}

.hero-ctas { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; margin-bottom: 64px; }

.hero-trust {
  display: flex; gap: 48px; justify-content: center; flex-wrap: wrap;
  padding-top: 48px;
  border-top: 1px solid var(--rule);
}
.hero-trust-item {
  font-size: 13px;
  color: var(--ink-muted);
}
.hero-trust-item strong {
  display: block;
  font-size: 28px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.025em;
  margin-bottom: 4px;
}

/* Mockup preview under hero */
.hero-mockup {
  margin: 80px auto 0;
  max-width: 1000px;
  position: relative;
  z-index: 1;
}
.hero-mockup-window {
  background: #fff;
  border: 1px solid var(--rule);
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 60px rgba(10,10,10,0.08), 0 4px 12px rgba(10,10,10,0.04);
  overflow: hidden;
}
.hero-mockup-bar {
  height: 40px;
  display: flex; align-items: center; gap: 6px;
  padding: 0 16px;
  border-bottom: 1px solid var(--rule);
  background: var(--bg-soft);
  white-space: nowrap;
  overflow: hidden;
}
.hero-mockup-dot { width: 10px; height: 10px; border-radius: 50%; background: var(--rule); }
.hero-mockup-bar span { margin-left: 16px; font-size: 12px; color: var(--ink-subtle); font-family: var(--font-mono); }
.hero-mockup-body { padding: 32px; min-height: 320px; display: grid; grid-template-columns: 180px 1fr; gap: 24px; }
.hero-mockup-side { display: flex; flex-direction: column; gap: 12px; }
.hero-mockup-side-item { height: 32px; border-radius: 8px; background: var(--bg-mute); }
.hero-mockup-side-item.active { background: var(--brand-wash); border-left: 2px solid var(--brand); }
.hero-mockup-main { display: flex; flex-direction: column; gap: 16px; }
.hero-mockup-card {
  padding: 20px; border-radius: var(--radius);
  border: 1px solid var(--rule);
  background: var(--bg);
  display: grid; grid-template-columns: 32px 1fr auto; gap: 14px; align-items: center;
}
.hero-mockup-icon { width: 32px; height: 32px; border-radius: 8px; background: var(--brand-wash); display: flex; align-items: center; justify-content: center; color: var(--brand); }
.hero-mockup-title { font-weight: 500; font-size: 14px; margin-bottom: 2px; }
.hero-mockup-sub { font-size: 12px; color: var(--ink-muted); }
.hero-mockup-badge {
  font-size: 11px;
  padding: 3px 8px;
  border-radius: 999px;
  font-weight: 500;
}
.hero-mockup-badge.green { background: #E9F9F1; color: #0A8A4E; }
.hero-mockup-badge.blue  { background: var(--brand-wash); color: var(--brand-ink); }
.hero-mockup-badge.amber { background: #FEF4E3; color: #A05E00; }

@media (max-width: 780px) {
  .hero { padding: 120px 0 72px; }
  .hero-mockup-body { grid-template-columns: 1fr; }
  .hero-mockup-side { display: none; }
  .hero-trust { gap: 24px; }
}

/* ─── Logo cloud ─── */
.logo-cloud { padding: 48px 0; border-top: 1px solid var(--rule); border-bottom: 1px solid var(--rule); background: var(--bg-soft); }
.logo-cloud-label { text-align: center; font-size: 13px; color: var(--ink-muted); margin-bottom: 28px; letter-spacing: -0.005em; }
.logo-cloud-row { display: flex; justify-content: center; flex-wrap: wrap; gap: 48px; align-items: center; opacity: 0.55; }
.logo-cloud-item { font-size: 18px; font-weight: 600; color: var(--ink-muted); letter-spacing: -0.02em; }

/* ─── Section headers ─── */
.section-head { max-width: 720px; margin: 0 auto 64px; text-align: center; }
.section-head .eyebrow { margin-bottom: 20px; }
.section-label {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brand);
  margin: 0 0 22px;
  padding: 0;
  line-height: 1;
}
.process .section-label { color: #9EABFF; }
.section-head h2 {
  font-size: clamp(32px, 4.2vw, 56px);
  font-weight: 600;
  line-height: 1.04;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
}
.section-head h2 .accent { color: var(--brand); }
.section-head-sub {
  font-size: 18px;
  line-height: 1.5;
  color: var(--ink-muted);
  max-width: 52ch;
  margin: 0 auto;
}

/* ─── Problem / Feature grid ─── */
.problem { background: var(--bg); }
.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.problem-card {
  padding: 32px;
  border-radius: var(--radius-lg);
  background: var(--bg-soft);
  border: 1px solid var(--rule);
  transition: transform 0.2s, box-shadow 0.2s;
}
.problem-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-2); }
.problem-card-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: #fff;
  border: 1px solid var(--rule);
  display: flex; align-items: center; justify-content: center;
  color: var(--ink-muted);
  margin-bottom: 24px;
}
.problem-card h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 8px;
  letter-spacing: -0.015em;
}
.problem-card p {
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink-muted);
}

.solution-card {
  margin-top: 32px;
  background: linear-gradient(135deg, var(--dark), var(--dark-2));
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 56px;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 48px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.solution-card::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(91,108,255,0.25), transparent 70%);
}
.solution-card > * { position: relative; }
.solution-card h3 {
  color: #fff;
  font-size: clamp(26px, 3.2vw, 40px);
  font-weight: 600;
  letter-spacing: -0.025em;
  margin: 16px 0 0;
}
.solution-card h3 .accent { color: #9EABFF; }
.solution-card p {
  font-size: 17px;
  line-height: 1.55;
  color: rgba(255,255,255,0.7);
  max-width: 52ch;
}

@media (max-width: 900px) {
  .problem-grid { grid-template-columns: 1fr; }
  .solution-card { grid-template-columns: 1fr; padding: 40px 32px; gap: 24px; }
}

/* ─── Process (dark) ─── */
.process {
  background: var(--dark);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.process::before {
  content: '';
  position: absolute;
  top: -300px; left: 50%; transform: translateX(-50%);
  width: 1000px; height: 600px;
  background: radial-gradient(ellipse, rgba(91,108,255,0.15), transparent 60%);
  pointer-events: none;
}
.process .section-head h2 { color: #fff; }
.process .section-head h2 .accent { color: #9EABFF; }
.process .section-head-sub { color: rgba(255,255,255,0.65); }

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  position: relative;
}
.process-step {
  padding: 32px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  position: relative;
  transition: background 0.2s, border-color 0.2s;
}
.process-step:hover { background: rgba(255,255,255,0.05); border-color: rgba(255,255,255,0.15); }
.process-step-num {
  font-family: var(--font-mono);
  font-size: 13px;
  color: #9EABFF;
  background: rgba(91,108,255,0.15);
  padding: 4px 10px;
  border-radius: 999px;
  display: inline-block;
  margin-bottom: 24px;
}
.process-step h3 {
  color: #fff;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}
.process-step p {
  font-size: 15px;
  line-height: 1.55;
  color: rgba(255,255,255,0.65);
  margin-bottom: 24px;
}
.process-step-duration {
  font-size: 12px;
  color: rgba(255,255,255,0.45);
  font-family: var(--font-mono);
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
@media (max-width: 900px) {
  .process-grid { grid-template-columns: 1fr; }
}

/* ─── Services rows ─── */
.services { background: var(--bg); }
.services-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.service-card {
  padding: 32px;
  border-radius: var(--radius-lg);
  background: var(--bg);
  border: 1px solid var(--rule);
  text-decoration: none;
  color: inherit;
  display: flex; flex-direction: column;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}
.service-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-2); border-color: var(--ink-subtle); }
.service-card-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: var(--brand-wash);
  color: var(--brand);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 28px;
}
.service-card h3 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}
.service-card p {
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink-muted);
  margin-bottom: 24px;
  flex: 1;
}
.service-card-cta {
  font-size: 14px;
  font-weight: 500;
  color: var(--brand);
  display: inline-flex; align-items: center; gap: 6px;
  transition: gap 0.2s;
}
.service-card:hover .service-card-cta { gap: 10px; }
@media (max-width: 900px) {
  .services-list { grid-template-columns: 1fr; }
}

/* ─── Values ─── */
.values { background: var(--bg-soft); }
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.value-item {
  padding: 28px;
  background: var(--bg);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
}
.value-item-num {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--brand);
  margin-bottom: 20px;
  display: block;
}
.value-item h3 {
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 6px;
  letter-spacing: -0.015em;
}
.value-item p {
  font-size: 14px;
  line-height: 1.55;
  color: var(--ink-muted);
}
@media (max-width: 900px) { .values-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 560px) { .values-grid { grid-template-columns: 1fr; } }

/* ─── Founder ─── */
.founder { background: var(--bg); }
.founder-card {
  background: var(--bg-soft);
  border: 1px solid var(--rule);
  border-radius: var(--radius-lg);
  padding: 64px;
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 56px;
  align-items: center;
}
.founder-portrait {
  aspect-ratio: 1/1;
  background: linear-gradient(135deg, var(--brand-wash), var(--bg-mute));
  border-radius: 20px;
  position: relative;
  overflow: hidden;
  display: flex; align-items: flex-end; padding: 16px;
}
.founder-portrait-meta {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--ink-2);
  background: #fff;
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid var(--rule);
}
.founder-quote {
  font-size: clamp(22px, 2.3vw, 28px);
  line-height: 1.35;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 32px;
}
.founder-quote .accent { color: var(--brand); }
.founder-sig { display: flex; align-items: center; gap: 16px; padding-top: 24px; border-top: 1px solid var(--rule); }
.founder-sig-name { font-size: 16px; font-weight: 600; }
.founder-sig-role { font-size: 14px; color: var(--ink-muted); margin-top: 2px; }
@media (max-width: 780px) {
  .founder-card { grid-template-columns: 1fr; padding: 32px; gap: 32px; }
  .founder-portrait { max-width: 240px; }
}

/* ─── FAQ ─── */
.faq { background: var(--bg); }
.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.faq-item {
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  background: var(--bg-soft);
  overflow: hidden;
  transition: border-color 0.2s, background 0.2s;
}
.faq-item:hover { background: var(--bg-mute); }
.faq-item[data-open] { background: #fff; border-color: var(--ink-subtle); }
.faq-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  background: none; border: none; cursor: pointer;
  text-align: left;
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.015em;
}
.faq-chevron {
  width: 28px; height: 28px; border-radius: 999px;
  background: var(--bg-mute);
  display: flex; align-items: center; justify-content: center;
  color: var(--ink);
  transition: transform 0.3s, background 0.2s;
  flex-shrink: 0;
}
.faq-trigger[aria-expanded='true'] .faq-chevron { transform: rotate(45deg); background: var(--ink); color: #fff; }
.faq-panel { overflow: hidden; max-height: 0; transition: max-height 0.35s cubic-bezier(0.22,1,0.36,1); }
.faq-panel-inner {
  padding: 0 24px 20px 24px;
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink-muted);
}

/* ─── Final CTA ─── */
.final-cta { background: var(--bg); padding: 64px 0 120px; }
.final-cta-card {
  background: linear-gradient(135deg, var(--dark), var(--dark-2));
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 80px 64px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.final-cta-card::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at top, rgba(91,108,255,0.2), transparent 60%);
}
.final-cta-card > * { position: relative; }
.final-cta-card h2 {
  color: #fff;
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin: 20px auto 20px;
  max-width: 18ch;
}
.final-cta-card h2 .accent { color: #9EABFF; }
.final-cta-card p {
  font-size: 18px;
  color: rgba(255,255,255,0.7);
  max-width: 52ch;
  margin: 0 auto 36px;
}
.final-cta-btns { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; }
@media (max-width: 780px) { .final-cta-card { padding: 56px 24px; } }

/* ─── Page hero ─── */
.page-hero {
  padding: 160px 0 96px;
  background: var(--bg);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: -200px; left: 50%; transform: translateX(-50%);
  width: 900px; height: 500px;
  background: radial-gradient(ellipse, rgba(91,108,255,0.08), transparent 60%);
  pointer-events: none;
}
.page-hero-inner { position: relative; z-index: 1; }
.page-hero .eyebrow { margin-bottom: 24px; }
.page-hero h1 {
  font-size: clamp(40px, 6vw, 80px);
  font-weight: 600;
  line-height: 1.04;
  letter-spacing: -0.035em;
  margin: 0 auto 24px;
  max-width: 16ch;
}
.page-hero h1 .accent { color: var(--brand); }
.page-hero-sub {
  font-size: clamp(17px, 1.4vw, 20px);
  line-height: 1.5;
  color: var(--ink-muted);
  max-width: 56ch;
  margin: 0 auto;
}

/* ─── Service detail blocks ─── */
.service-detail { padding: 96px 0; border-top: 1px solid var(--rule); background: var(--bg); }
.service-detail:nth-child(even) { background: var(--bg-soft); }
.service-detail-inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 64px;
  align-items: start;
}
.service-detail-head .service-detail-num {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--brand);
  background: var(--brand-wash);
  padding: 4px 10px;
  border-radius: 999px;
  display: inline-block;
  margin-bottom: 20px;
}
.service-detail-head h2 {
  font-size: clamp(32px, 4.2vw, 52px);
  font-weight: 600;
  line-height: 1.04;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}
.service-detail-head h2 .accent { color: var(--brand); }
.service-detail-intro { font-size: 18px; line-height: 1.55; color: var(--ink-2); margin-bottom: 14px; }
.service-detail-body { font-size: 16px; line-height: 1.6; color: var(--ink-muted); margin-bottom: 28px; }

.service-benefits {
  list-style: none; margin: 0 0 32px; padding: 0;
  display: flex; flex-direction: column; gap: 12px;
}
.service-benefits li {
  display: grid; grid-template-columns: 28px 1fr; gap: 12px;
  font-size: 15px; line-height: 1.55; color: var(--ink-2);
}
.service-benefits .check {
  width: 22px; height: 22px; border-radius: 999px;
  background: var(--brand-wash); color: var(--brand);
  display: flex; align-items: center; justify-content: center;
  margin-top: 1px;
}

.service-visual {
  background: var(--bg);
  border: 1px solid var(--rule);
  border-radius: var(--radius-lg);
  padding: 32px;
  position: sticky;
  top: 88px;
  box-shadow: var(--shadow-1);
}
.service-detail:nth-child(even) .service-visual { background: #fff; }
.service-visual-head {
  display: flex; justify-content: space-between; align-items: center;
  padding-bottom: 16px; border-bottom: 1px solid var(--rule);
  margin-bottom: 20px;
}
.service-visual-head h4 { font-size: 14px; font-weight: 600; letter-spacing: -0.01em; }
.service-visual-head span { font-size: 12px; color: var(--ink-muted); font-family: var(--font-mono); }
.process-mini { display: flex; flex-direction: column; gap: 4px; }
.process-mini-item {
  display: grid; grid-template-columns: 28px 1fr; gap: 12px;
  padding: 12px; border-radius: 10px;
  background: var(--bg-soft);
  align-items: start;
}
.process-mini-num {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--brand);
  background: var(--brand-wash);
  width: 24px; height: 24px;
  border-radius: 999px;
  display: flex; align-items: center; justify-content: center;
}
.process-mini-text { font-size: 14px; line-height: 1.5; color: var(--ink-2); }
.process-mini-text strong { font-weight: 600; color: var(--ink); display: block; margin-bottom: 2px; }

@media (max-width: 960px) {
  .service-detail-inner { grid-template-columns: 1fr; gap: 32px; }
  .service-visual { position: static; }
}

/* ─── Contact ─── */
.contact-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 40px;
  padding: 80px 0 120px;
  align-items: start;
}
.contact-form-wrap {
  background: var(--bg);
  border: 1px solid var(--rule);
  padding: 48px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-1);
}
.contact-form-wrap h2 {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 8px;
  letter-spacing: -0.025em;
}
.contact-form-sub {
  font-size: 15px; color: var(--ink-muted);
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--rule);
}

.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 6px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid var(--rule);
  border-radius: 10px;
  font-family: var(--font-sans);
  font-size: 15px;
  color: var(--ink);
  background: var(--bg);
  outline: none;
  transition: border-color 0.18s, box-shadow 0.18s;
}
.form-group input::placeholder, .form-group textarea::placeholder { color: var(--ink-subtle); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--brand); box-shadow: 0 0 0 3px var(--brand-wash); }
.form-group textarea { min-height: 110px; resize: vertical; }
.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='6' viewBox='0 0 10 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L5 5L9 1' stroke='%238A8A8A' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-consent {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 13px; color: var(--ink-muted); line-height: 1.5;
  margin: 24px 0;
}
.form-consent input { accent-color: var(--brand); margin-top: 3px; flex-shrink: 0; }
.form-consent a { color: var(--ink); text-decoration: underline; }

.contact-side { display: flex; flex-direction: column; gap: 16px; }
.contact-side-card {
  background: var(--bg);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  padding: 28px;
}
.contact-side-card h3 {
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-muted);
  margin-bottom: 12px;
}
.contact-side-card .big {
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--ink);
  text-decoration: none;
  display: block;
}
.contact-side-card .big:hover { color: var(--brand); }
.contact-side-card p { font-size: 14px; line-height: 1.55; color: var(--ink-muted); margin-top: 8px; }
.trust-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.trust-list li { display: flex; gap: 10px; font-size: 14px; color: var(--ink-2); align-items: center; }
.trust-list .check {
  width: 18px; height: 18px; border-radius: 999px;
  background: #E9F9F1; color: #0A8A4E;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}

@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; gap: 24px; padding: 48px 0 80px; }
  .contact-form-wrap { padding: 32px 24px; }
  .form-row { grid-template-columns: 1fr; }
}

/* ─── Blog ─── */
.blog-featured {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  padding: 56px;
  background: linear-gradient(135deg, var(--dark), var(--dark-2));
  color: #fff;
  border-radius: var(--radius-lg);
  margin-bottom: 40px;
  align-items: center;
  position: relative;
  overflow: hidden;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
}
.blog-featured::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(91,108,255,0.25), transparent 70%);
}
.blog-featured > * { position: relative; }
.blog-featured:hover { transform: translateY(-2px); box-shadow: var(--shadow-2); }
.blog-featured h2 {
  color: #fff;
  font-size: clamp(28px, 3.6vw, 44px);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.06;
  margin: 16px 0;
  max-width: 18ch;
}
.blog-featured h2 .accent { color: #9EABFF; }
.blog-featured-meta {
  display: flex; flex-direction: column; gap: 20px;
  font-size: 13px;
  color: rgba(255,255,255,0.6);
}
.blog-featured-meta-row { display: flex; gap: 16px; align-items: center; }
.blog-featured-excerpt {
  font-size: 17px;
  line-height: 1.5;
  color: rgba(255,255,255,0.8);
  max-width: 42ch;
}
.blog-featured-cta {
  font-size: 15px; font-weight: 500; color: #fff;
  display: inline-flex; align-items: center; gap: 8px;
}

.blog-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.blog-entry {
  background: var(--bg);
  border: 1px solid var(--rule);
  border-radius: var(--radius-lg);
  padding: 28px;
  text-decoration: none; color: inherit;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
  display: flex; flex-direction: column;
}
.blog-entry:hover { transform: translateY(-3px); box-shadow: var(--shadow-2); border-color: var(--ink-subtle); }
.blog-entry-meta {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 12px; color: var(--ink-muted); margin-bottom: 20px;
}
.blog-entry-cat {
  font-size: 11px;
  padding: 3px 10px;
  background: var(--brand-wash);
  color: var(--brand-ink);
  border-radius: 999px;
  font-weight: 500;
}
.blog-entry h3 {
  font-size: 19px;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.25;
  margin-bottom: 10px;
  transition: color 0.2s;
}
.blog-entry:hover h3 { color: var(--brand); }
.blog-entry p {
  font-size: 14px; line-height: 1.55; color: var(--ink-muted);
  flex: 1;
  margin-bottom: 20px;
}
.blog-entry-foot {
  font-size: 12px; color: var(--ink-subtle);
  padding-top: 16px; border-top: 1px solid var(--rule-soft);
  font-family: var(--font-mono);
}

@media (max-width: 900px) {
  .blog-list { grid-template-columns: 1fr; }
  .blog-featured { grid-template-columns: 1fr; padding: 36px 28px; }
}

/* ─── About / manifesto ─── */
.manifesto {
  padding: 120px 0;
  background: var(--dark);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.manifesto::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at top left, rgba(91,108,255,0.15), transparent 50%);
}
.manifesto-inner { max-width: 900px; margin: 0 auto; position: relative; text-align: center; }
.manifesto blockquote {
  font-size: clamp(28px, 3.8vw, 48px);
  line-height: 1.15;
  font-weight: 600;
  letter-spacing: -0.03em;
  margin: 0 0 32px;
  color: #fff;
}
.manifesto blockquote .accent { color: #9EABFF; }
.manifesto cite {
  font-style: normal;
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: inline-block;
}

.prose-section { padding: 96px 0; background: var(--bg); border-top: 1px solid var(--rule); }
.prose-section-inner { display: grid; grid-template-columns: 1fr 1.8fr; gap: 64px; max-width: 1040px; margin: 0 auto; }
.prose-section-head h2 {
  font-size: clamp(28px, 3.2vw, 40px);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.1;
}
.prose-section-head .eyebrow { margin-bottom: 16px; }
.prose-section-body { font-size: 17px; line-height: 1.65; color: var(--ink-2); }
.prose-section-body p + p { margin-top: 1.1em; }
@media (max-width: 900px) { .prose-section-inner { grid-template-columns: 1fr; gap: 24px; } }

/* ─── Footer ─── */
footer { background: var(--bg); border-top: 1px solid var(--rule); padding: 64px 0 32px; }
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--rule);
}
.footer-brand img { height: 22px; display: block; }
.footer-brand p {
  font-size: 14px; line-height: 1.55;
  color: var(--ink-muted);
  margin: 16px 0 24px;
  max-width: 300px;
}
.footer-newsletter {
  display: flex;
  gap: 6px;
  max-width: 320px;
}
.footer-newsletter input {
  flex: 1; border: 1px solid var(--rule); background: var(--bg);
  padding: 9px 14px; font-family: var(--font-sans);
  font-size: 14px; color: var(--ink);
  outline: none;
  border-radius: 999px;
  transition: border-color 0.18s, box-shadow 0.18s;
}
.footer-newsletter input:focus { border-color: var(--brand); box-shadow: 0 0 0 3px var(--brand-wash); }
.footer-newsletter button {
  background: var(--ink); color: #fff;
  border: none; cursor: pointer;
  font-size: 14px; font-weight: 500;
  padding: 9px 16px;
  font-family: var(--font-sans);
  border-radius: 999px;
  transition: background 0.18s;
}
.footer-newsletter button:hover { background: var(--dark-2); }

footer h4 {
  font-size: 13px; font-weight: 600;
  color: var(--ink);
  margin-bottom: 14px;
  letter-spacing: -0.01em;
}
footer ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 8px; }
footer ul a {
  font-size: 14px; color: var(--ink-muted);
  text-decoration: none;
  transition: color 0.18s;
}
footer ul a:hover { color: var(--ink); }
.footer-bottom {
  padding-top: 28px;
  display: flex; justify-content: space-between;
  font-size: 13px; color: var(--ink-subtle);
  flex-wrap: wrap; gap: 16px;
}
@media (max-width: 900px) {
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 560px) {
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; }
}

/* ─── Tweaks panel ─── */
#tweaks-panel {
  position: fixed;
  bottom: 20px; right: 20px;
  z-index: 200;
  background: #fff;
  color: var(--ink);
  padding: 20px;
  border-radius: 16px;
  box-shadow: var(--shadow-2);
  border: 1px solid var(--rule);
  width: 260px;
  display: none;
  font-family: var(--font-sans);
}
#tweaks-panel.visible { display: block; }
#tweaks-panel h5 {
  font-size: 12px;
  font-weight: 600;
  margin: 0 0 12px;
  color: var(--ink);
}
#tweaks-panel .swatch-row { display: flex; gap: 8px; }
#tweaks-panel .swatch {
  width: 28px; height: 28px; border-radius: 999px; cursor: pointer;
  border: 2px solid var(--rule);
}
#tweaks-panel .swatch.active { border-color: var(--ink); }


/* ─── Facts strip (Über uns) ─── */
.facts-strip {
  background: var(--bg);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  padding: 40px 0;
}
.facts-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.fact { display: flex; flex-direction: column; gap: 6px; }
.fact-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-subtle);
}
.fact-value {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--ink);
}
@media (max-width: 780px) {
  .facts-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
}
@media (max-width: 480px) {
  .facts-grid { grid-template-columns: 1fr; }
}

/* ─── "Was wir nicht sind" (Über uns) ─── */
.not-us { background: var(--bg-soft); padding: 96px 0 120px; }
.not-us-head {
  max-width: 680px;
  margin-bottom: 48px;
}
.not-us-head h2 {
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.1;
  letter-spacing: -0.03em;
  font-weight: 600;
  color: var(--ink);
  margin: 12px 0 16px;
}
.not-us-head h2 .accent { color: var(--brand); }
.not-us-lead {
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink-muted);
  max-width: 560px;
}
.not-us-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.not-us-card {
  background: var(--bg);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  padding: 32px;
}
.not-us-icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: var(--bg-mute);
  color: var(--ink-subtle);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.not-us-card h3 {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.015em;
  margin: 0 0 8px;
  color: var(--ink);
}
.not-us-card p {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--ink-muted);
  margin: 0;
}
@media (max-width: 780px) {
  .not-us-grid { grid-template-columns: 1fr; }
}


/* ─── Hero dashboard (Prozess-Analyse) ─── */
.hero-mockup-bar { position: relative; }
.hero-mockup-bar-meta {
  margin-left: auto;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--ink-subtle);
}
.hero-mockup-body.dashboard {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 0;
  padding: 0;
  min-height: 420px;
}
.dash-col { padding: 22px 20px; }
.dash-col-processes {
  border-right: 1px solid var(--rule);
  background: var(--bg-soft);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.dash-col-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 6px;
}
.dash-col-title {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-subtle);
}
.dash-col-count {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--ink-muted);
  background: var(--bg);
  border: 1px solid var(--rule);
  padding: 1px 8px;
  border-radius: 999px;
}
.dash-proc {
  background: var(--bg);
  border: 1px solid var(--rule);
  border-radius: 10px;
  padding: 12px 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: border-color 0.15s, box-shadow 0.15s, transform 0.15s;
  text-align: left;
  font-family: inherit;
  cursor: pointer;
  color: inherit;
  width: 100%;
}
.dash-proc:hover { border-color: var(--ink-subtle); }
.dash-proc:focus-visible { outline: 2px solid var(--brand); outline-offset: 2px; }
.dash-proc.active {
  border-color: var(--brand);
  box-shadow: 0 0 0 3px var(--brand-wash);
}
.dash-proc-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}
.dash-proc-name {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.dash-proc-score {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: 6px;
  line-height: 1;
}
.score-high { background: #E9F9F1; color: #0A8A4E; }
.score-mid  { background: #FEF4E3; color: #A05E00; }
.score-low  { background: #FBE9EB; color: #A53242; }
.dash-proc-meta {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  color: var(--ink-muted);
  font-family: var(--font-mono);
  white-space: nowrap;
  flex-wrap: wrap;
}
.dash-proc-meta .dot {
  width: 2px; height: 2px; border-radius: 50%;
  background: var(--ink-subtle);
  flex-shrink: 0;
}
.dash-proc-bar {
  height: 3px;
  background: var(--bg-mute);
  border-radius: 2px;
  overflow: hidden;
}
.dash-proc-bar-fill {
  height: 100%;
  background: #10B981;
  border-radius: 2px;
}
.dash-proc-bar-fill.mid { background: #F59E0B; }
.dash-proc-bar-fill.low { background: #EF4444; }

.dash-col-eval {
  padding: 24px 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.dash-eval-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--rule);
}
.dash-eval-crumb {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--ink-subtle);
  margin-bottom: 6px;
}
.dash-eval-title {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.dash-eval-title .accent { color: var(--brand); }
.dash-eval-title .warn   { color: #B7791F; }
.dash-eval-title .stop   { color: #B43F4F; }
.dash-eval-tag {
  font-size: 11px;
  font-weight: 500;
  padding: 4px 10px;
  border-radius: 999px;
  background: #E9F9F1;
  color: #0A8A4E;
  white-space: nowrap;
}
.dash-eval-tag.good { background: #E9F9F1; color: #0A8A4E; }
.dash-eval-tag.warn { background: #FEF4E3; color: #A05E00; }
.dash-eval-tag.stop { background: #FBE9EB; color: #A53242; }
.dash-eval-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 24px;
}
.dash-eval-cell {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.dash-eval-label {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-subtle);
}
.dash-eval-value {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.015em;
  color: var(--ink);
}
.dash-eval-value.accent { color: var(--brand); }
.dash-eval-notes {
  padding-top: 14px;
  border-top: 1px solid var(--rule);
}
.dash-eval-notes-title {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-subtle);
  margin-bottom: 10px;
}
.dash-eval-notes ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.dash-eval-notes li {
  font-size: 13px;
  line-height: 1.5;
  color: var(--ink-muted);
  padding-left: 14px;
  position: relative;
}
.dash-eval-notes li::before {
  content: "";
  position: absolute;
  left: 0; top: 8px;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--brand);
}
.dash-eval-foot {
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px dashed var(--rule);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.dash-eval-foot-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-subtle);
}
.dash-eval-foot-value {
  font-size: 13px;
  font-weight: 500;
  color: var(--ink);
}

@media (max-width: 780px) {
  .hero-mockup-body.dashboard {
    grid-template-columns: 1fr;
  }
  .dash-col-processes {
    border-right: none;
    border-bottom: 1px solid var(--rule);
  }
  .hero-mockup-bar-meta { display: none; }
}


/* ─── Prose section (editorial 2-col) ─── */
.prose-section {
  background: var(--bg);
  padding: 120px 0;
  border-bottom: 1px solid var(--rule-soft);
}
.prose-section + .prose-section { padding-top: 0; }
.prose-section-inner {
  display: grid;
  grid-template-columns: minmax(220px, 340px) 1fr;
  gap: 80px;
  align-items: start;
}
.prose-section-head {
  position: sticky;
  top: 120px;
}
.prose-section-head .section-label {
  display: block;
  margin: 0 0 16px;
  color: var(--ink-subtle);
}
.prose-section-head h2 {
  font-size: clamp(28px, 2.6vw, 36px);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.025em;
  margin: 0;
  color: var(--ink);
  text-wrap: balance;
}
.prose-section-body {
  max-width: 620px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.prose-section-body p {
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink-muted);
  margin: 0;
}
.prose-section-body p strong {
  color: var(--ink);
  font-weight: 600;
}
@media (max-width: 880px) {
  .prose-section { padding: 72px 0; }
  .prose-section-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .prose-section-head { position: static; }
  .prose-section-head h2 { font-size: 30px; }
}


/* ─────────────────────────────────────────────
   H2 Balance (konsistente Zeilenumbrüche)
   ───────────────────────────────────────────── */
h1, h2, .balance { text-wrap: balance; }

/* ─────────────────────────────────────────────
   MINI CASE (Homepage)
   ───────────────────────────────────────────── */
.section.case { background: #FAFAFA; }

.case-card {
  background: #fff;
  border: 1px solid #ECECEE;
  border-radius: 20px;
  padding: 48px;
  box-shadow: 0 1px 2px rgba(10,10,10,0.04);
  max-width: 1120px;
  margin: 0 auto;
}

.case-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
}
.case-card-tag {
  display: inline-block;
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #6B6B70;
  background: #F4F4F6;
  border-radius: 999px;
  padding: 6px 12px;
}

.case-card-body {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 48px;
  align-items: start;
}

.case-card-lead h3 {
  font-size: 30px;
  line-height: 1.15;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin: 0 0 18px;
  text-wrap: balance;
}
.case-card-lead p {
  color: #44444A;
  font-size: 16px;
  line-height: 1.6;
  margin: 0 0 14px;
}
.case-card-placeholder {
  color: #9A9AA0 !important;
  font-size: 14px !important;
  font-style: italic;
  border-left: 2px solid #ECECEE;
  padding-left: 14px;
  margin-top: 20px !important;
}

.case-card-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  padding: 24px;
  background: #FAFAFA;
  border-radius: 14px;
  border: 1px solid #ECECEE;
}
.case-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.case-stat-value {
  font-size: 28px;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: #0A0A0A;
  font-variant-numeric: tabular-nums;
  line-height: 1;
}
.case-stat-label {
  font-size: 12px;
  color: #6B6B70;
  line-height: 1.4;
}

.case-card-foot {
  margin-top: 36px;
  padding-top: 24px;
  border-top: 1px solid #ECECEE;
  display: flex;
  align-items: baseline;
  gap: 16px;
  flex-wrap: wrap;
}
.case-card-foot-label {
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #6B6B70;
}
.case-card-foot-value {
  font-size: 14px;
  color: #44444A;
}

@media (max-width: 820px) {
  .case-card { padding: 32px 24px; border-radius: 16px; }
  .case-card-body { grid-template-columns: 1fr; gap: 28px; }
  .case-card-lead h3 { font-size: 24px; }
  .case-card-stats { padding: 20px; grid-template-columns: 1fr 1fr; }
  .case-stat-value { font-size: 22px; }
}


/* ─────────────────────────────────────────────
   KONTAKT — Kompakte Sidebar (2-Block Layout)
   ───────────────────────────────────────────── */
.contact-side-direct {
  padding: 32px;
}
.contact-side-direct h3 {
  font-size: 18px;
  font-weight: 600;
  margin: 0 0 20px;
  letter-spacing: -0.01em;
}
.contact-direct-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 0;
  border-bottom: 1px solid #ECECEE;
}
.contact-direct-row:last-of-type { border-bottom: 0; }
.contact-direct-label {
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #6B6B70;
  flex-shrink: 0;
}
.contact-direct-value {
  font-size: 15px;
  color: #0A0A0A;
  text-decoration: none;
  font-weight: 500;
  text-align: right;
}
.contact-direct-value.muted {
  color: #44444A;
  font-weight: 400;
}
a.contact-direct-value:hover { color: var(--accent, #5B6CFF); }

.contact-expectations {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid #ECECEE;
}
.contact-expectations-label {
  display: block;
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #6B6B70;
  margin-bottom: 14px;
}
.contact-expectations .trust-list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.contact-expectations .trust-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 7px 0;
  font-size: 14px;
  color: #44444A;
  line-height: 1.4;
}
.contact-expectations .trust-list .check {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #E9F9F1;
  color: #0A8A4E;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 820px) {
  .contact-side-direct { padding: 24px; }
  .contact-direct-row { flex-direction: column; gap: 4px; align-items: flex-start; }
  .contact-direct-value { text-align: left; }
}


/* ─────────────────────────────────────────────
   BLOG — Featured Override
   ───────────────────────────────────────────── */
.blog-featured {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 56px;
  align-items: center;
  padding: 56px;
  border-radius: 24px;
  background: linear-gradient(135deg, #0F1025 0%, #1A1D3F 100%);
  color: #fff;
  margin-bottom: 72px;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.blog-featured:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 60px -20px rgba(91,108,255,0.4);
}
.blog-featured-body { min-width: 0; }
.blog-featured h2 {
  color: #fff;
  font-size: 36px;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 20px 0 20px;
  text-wrap: balance;
  font-weight: 600;
}
.blog-featured-excerpt {
  color: rgba(255,255,255,0.7);
  font-size: 17px;
  line-height: 1.55;
  margin: 0 0 28px;
  max-width: 52ch;
}
.blog-featured-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 500;
  color: #9EABFF;
}
.blog-featured-meta-row {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  font-size: 12px;
  color: rgba(255,255,255,0.55);
}
.blog-featured-meta-row .mono {
  color: rgba(255,255,255,0.7);
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  letter-spacing: 0.04em;
}

/* Featured Visual — data viz statt Placeholder */
.blog-featured-visual {
  position: relative;
  aspect-ratio: 4/5;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
}
.bf-stat { display: flex; flex-direction: column; gap: 4px; }
.bf-stat-huge {
  font-size: 88px;
  font-weight: 600;
  line-height: 0.9;
  letter-spacing: -0.04em;
  color: #FF6B6B;
  font-variant-numeric: tabular-nums;
}
.bf-stat-pct { font-size: 0.5em; color: rgba(255,107,107,0.6); margin-left: 2px; }
.bf-stat-label {
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}
.bf-stat-small { align-self: flex-start; }
.bf-stat-num {
  font-size: 40px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.03em;
  color: #9EABFF;
  font-variant-numeric: tabular-nums;
}
.bf-stat-small .bf-stat-pct { color: rgba(158,171,255,0.6); }

.bf-bars {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 55%;
  height: 55%;
  display: flex;
  align-items: flex-end;
  gap: 6px;
  padding: 24px;
  opacity: 0.35;
}
.bf-bars span {
  flex: 1;
  background: rgba(158,171,255,0.6);
  border-radius: 2px 2px 0 0;
}
.bf-bars .bf-bars-accent {
  background: #5B6CFF;
  opacity: 1;
}

.blog-list-head {
  margin-bottom: 28px;
  padding-bottom: 20px;
  border-bottom: 1px solid #ECECEE;
}

@media (max-width: 900px) {
  .blog-featured {
    grid-template-columns: 1fr;
    padding: 36px 28px;
    gap: 32px;
  }
  .blog-featured h2 { font-size: 26px; }
  .blog-featured-visual { aspect-ratio: 16/9; padding: 24px; }
  .bf-stat-huge { font-size: 64px; }
}
