/* ============================================================
   direktanfrage.de — Production CSS
   Fonts: Outfit · Inter · Inter Tight · JetBrains Mono
   Accent: Lime (locked)
   ============================================================ */

:root {
  /* Backgrounds & surfaces */
  --bg:        oklch(0.99 0.003 250);
  --bg-soft:   oklch(0.965 0.005 250);
  --paper:     #ffffff;

  /* Text */
  --ink:       oklch(0.16 0.01 250);
  --ink-soft:  oklch(0.42 0.01 250);
  --ink-muted: oklch(0.58 0.008 250);

  /* Borders */
  --rule:      oklch(0.9 0.006 250);
  --rule-soft: oklch(0.94 0.005 250);

  /* Accent — lime */
  --pop:       oklch(0.86 0.20 130);
  --pop-deep:  oklch(0.45 0.15 135);
  --pop-soft:  oklch(0.96 0.06 130);
  --pop-on:    oklch(0.16 0.04 130);

  /* Typography */
  --display:        'Outfit', -apple-system, system-ui, sans-serif;
  --display-ls:     -0.03em;
  --display-weight: 600;
  --sans:           'Inter', -apple-system, system-ui, sans-serif;
  --mono:           'JetBrains Mono', ui-monospace, monospace;
  --num:            'Inter Tight', -apple-system, sans-serif;
  --num-weight:     600;

  /* Layout */
  --container:    1200px;
  --section-pad:  clamp(80px, 12vw, 140px);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 76px;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--bg);
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
}
@media (min-width: 720px) { body { font-size: 18px; } }

h1, h2, h3, h4 {
  margin: 0;
  font-family: var(--display);
  font-weight: var(--display-weight);
  letter-spacing: var(--display-ls);
}
p { margin: 0; }
a { color: inherit; }
button { font: inherit; cursor: pointer; }

/* ---- Container ---- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 40px);
}

/* ---- Sections ---- */
section { padding: var(--section-pad) 0; position: relative; }
section + section { border-top: 1px solid var(--rule-soft); }

/* ---- Eyebrow chip ---- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--pop-deep);
  margin-bottom: 28px;
  font-weight: 500;
}
.eyebrow .dot {
  width: 8px; height: 8px;
  border-radius: 2px;
  background: var(--pop);
  flex: none;
}

/* ========================================
   Topbar
   ======================================== */
.topbar {
  position: sticky; top: 0; z-index: 50;
  width: 100%;
  max-width: 100vw;
  background: color-mix(in oklab, var(--bg), transparent 4%);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 200ms ease;
}
.topbar.scrolled { border-bottom-color: var(--rule); }

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  padding: 0 20px !important;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--display);
  font-weight: 600;
  letter-spacing: -0.02em;
  text-decoration: none;
  font-size: 18px;
  color: var(--ink);
}
.brand-name { display: flex; align-items: baseline; }
.brand-name .domain { color: var(--ink-muted); font-weight: 400; }

.brand-mark {
  display: grid;
  place-items: center;
  flex: none;
}
.lg-arrow {
  width: 28px; height: 28px;
  background: var(--pop);
  color: var(--pop-on);
  border-radius: 8px;
}
.lg-arrow svg { display: block; }

.topbar-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 999px;
  background: var(--ink);
  color: var(--bg);
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
  font-family: var(--sans);
  white-space: nowrap;
  transition: transform 150ms ease;
}
.topbar-cta:hover { transform: translateY(-1px); }
.topbar-cta:focus-visible { outline: 2px solid var(--pop); outline-offset: 3px; }
.brand:focus-visible { outline: 2px solid var(--pop); outline-offset: 3px; border-radius: 4px; }

/* ========================================
   Hero
   ======================================== */
.hero {
  padding-top: clamp(48px, 9vw, 96px);
  padding-bottom: clamp(48px, 9vw, 96px);
  overflow: hidden;
}

.hero h1 {
  font-size: clamp(52px, 11vw, 132px);
  line-height: 0.92;
  letter-spacing: -0.04em;
  font-weight: 600;
  max-width: 14ch;
}
.hero h1 em {
  font-style: normal;
  color: var(--pop);
}

.hero-grid {
  display: grid;
  gap: clamp(40px, 6vw, 64px);
  grid-template-columns: 1fr;
  margin-top: clamp(40px, 6vw, 56px);
  align-items: end;
}
@media (min-width: 920px) {
  .hero-grid {
    grid-template-columns: 1.3fr 1fr;
    gap: clamp(48px, 7vw, 96px);
  }
}

.hero-sub {
  font-size: clamp(17px, 1.6vw, 20px);
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 44ch;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 26px;
  border-radius: 14px;
  font-family: var(--sans);
  font-weight: 500;
  font-size: 16px;
  text-decoration: none;
  border: 1px solid transparent;
  transition: transform 150ms ease, background 150ms ease, border-color 150ms ease, color 150ms ease;
  white-space: nowrap;
  min-height: 52px;
}
.btn-primary { background: var(--pop); color: var(--pop-on); }
.btn-primary:hover { transform: translateY(-2px); background: var(--pop-deep); color: #fff; }
.btn-primary .arrow { transition: transform 200ms ease; }
.btn-primary:hover .arrow { transform: translateX(3px); }

.btn-ghost { background: var(--paper); color: var(--ink); border-color: var(--rule); }
.btn-ghost:hover { border-color: var(--ink); transform: translateY(-2px); }

.hero-trust {
  margin-top: 22px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--ink-muted);
  font-family: var(--mono);
  letter-spacing: 0.04em;
}
.hero-trust .check { color: var(--pop-deep); flex: none; }

/* Hero side stack */
.hero-side { display: grid; gap: 18px; width: 100%; }

.ev {
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: 18px;
  padding: 20px;
  box-shadow: 0 1px 0 rgba(0,0,0,0.02), 0 28px 56px -32px rgba(20,20,30,0.18);
}

/* Inbox card */
.ev-h {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ink-muted);
  margin-bottom: 14px;
}
.ev-h .pop {
  background: var(--pop);
  color: var(--pop-on);
  padding: 3px 9px;
  border-radius: 999px;
  font-size: 10px;
  letter-spacing: 0.06em;
}
.ev-row {
  display: grid;
  grid-template-columns: 10px 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid var(--rule-soft);
  font-size: 14px;
}
.ev-row:last-child { border-bottom: 0; }
.ev-dot { width: 8px; height: 8px; border-radius: 2px; background: var(--pop); }
.ev-dot.gray { background: var(--rule); }
.ev-dot.urgent { background: oklch(0.65 0.18 28); }
.ev-name { color: var(--ink); font-weight: 500; }
.ev-name small { display: block; color: var(--ink-muted); font-weight: 400; font-size: 12px; }
.ev-time { font-family: var(--mono); font-size: 11px; color: var(--ink-muted); }

/* Questionnaire slideshow card */
.ev-quest .ev-q-h {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--ink-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
}
.ev-quest .q-text {
  font-family: var(--display);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 16px;
}
.ev-quest .q-opt {
  border: 1.5px solid var(--rule);
  border-radius: 10px;
  padding: 12px 14px;
  font-size: 14px;
  color: var(--ink-soft);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--paper);
}
.ev-quest .q-opt.sel {
  border-color: var(--pop);
  background: var(--pop-soft);
  color: var(--ink);
  font-weight: 500;
}
.ev-quest .q-rad {
  width: 16px; height: 16px;
  border-radius: 50%;
  border: 2px solid var(--ink-muted);
  flex: none;
  position: relative;
}
.ev-quest .sel .q-rad { border-color: var(--pop); }
.ev-quest .sel .q-rad::after {
  content: "";
  position: absolute;
  inset: 2px;
  background: var(--pop);
  border-radius: 50%;
}
.ev-quest .q-bar {
  margin-top: 4px;
  height: 4px;
  background: var(--rule);
  border-radius: 99px;
  overflow: hidden;
}
.ev-quest .q-bar > span {
  display: block;
  height: 100%;
  background: var(--pop);
  transition: width 300ms ease;
}
.ev-quest .q-step {
  margin-top: 8px;
  font-family: var(--mono);
  font-size: 11px;
  color: var(--ink-muted);
}

/* Slideshow fade transition */
.ev-quest { transition: opacity 250ms ease; }
.ev-quest.fading { opacity: 0; }

/* Pagination dots */
.slide-dots {
  display: flex;
  gap: 0;
  justify-content: center;
  margin-top: 4px;
}
.slide-dot {
  width: 44px; height: 24px;
  border: 0;
  padding: 0;
  background: transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.slide-dot::after {
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--rule);
  transition: background 200ms ease, transform 200ms ease;
  display: block;
}
.slide-dot.active::after {
  background: var(--pop);
  transform: scale(1.4);
}
.slide-dot:focus-visible { outline: 2px solid var(--pop); outline-offset: 2px; border-radius: 4px; }

/* Marker row */
.marker-row {
  margin-top: clamp(56px, 9vw, 88px);
  padding-top: 24px;
  border-top: 1px solid var(--rule);
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 720px) { .marker-row { grid-template-columns: repeat(3, 1fr); } }

.marker { display: flex; align-items: baseline; gap: 14px; }
.marker b {
  font-family: var(--num);
  font-size: 56px;
  font-weight: var(--num-weight);
  letter-spacing: -0.02em;
  color: var(--pop-deep);
  line-height: 0.9;
}
.marker span { color: var(--ink-soft); font-size: 14px; line-height: 1.4; }

/* ========================================
   Problem
   ======================================== */
.problem { background: var(--bg-soft); }

.problem-h {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: end;
  margin-bottom: clamp(40px, 6vw, 56px);
}
@media (min-width: 920px) { .problem-h { grid-template-columns: 1.2fr 1fr; } }

.problem h2 {
  font-size: clamp(40px, 7vw, 80px);
  line-height: 0.98;
  letter-spacing: -0.035em;
}
.problem h2 em { font-style: normal; color: var(--pop); }

.problem-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: var(--rule);
  border: 1px solid var(--rule);
  border-radius: 18px;
  overflow: hidden;
}
@media (min-width: 760px) { .problem-grid { grid-template-columns: repeat(3, 1fr); } }

.problem-card {
  background: var(--paper);
  padding: 32px 28px 36px;
  display: flex;
  flex-direction: column;
}
.problem-card .num {
  font-family: var(--display);
  font-size: 14px;
  font-weight: 500;
  color: var(--pop);
  letter-spacing: 0.02em;
  margin-bottom: 24px;
}
.problem-card h3 { font-size: 24px; line-height: 1.2; margin-bottom: 12px; letter-spacing: -0.02em; }
.problem-card p { font-size: 15px; color: var(--ink-soft); line-height: 1.55; }
.problem-card .ico-big { align-self: flex-start; margin-bottom: 28px; color: var(--ink); }

.problem-example {
  margin-top: clamp(40px, 6vw, 64px);
  padding: 32px;
  border: 1px solid var(--rule);
  border-radius: 18px;
  background: var(--paper);
  display: grid;
  gap: 24px;
  grid-template-columns: 1fr;
}
@media (min-width: 760px) {
  .problem-example { grid-template-columns: 200px 1fr; gap: 36px; align-items: start; }
}
.problem-example .tag {
  display: inline-flex;
  align-items: center;
  font-family: var(--mono);
  font-size: 11px;
  color: var(--pop-on);
  background: var(--pop);
  padding: 6px 12px;
  border-radius: 6px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  width: fit-content;
  font-weight: 500;
}
.problem-example p { color: var(--ink-soft); font-size: 16px; line-height: 1.6; }
.problem-example b { color: var(--ink); font-weight: 600; }
.problem-example .pts {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 16px;
}
.problem-example .pts span {
  font-family: var(--mono);
  font-size: 12px;
  padding: 5px 10px;
  border-radius: 6px;
  background: var(--bg-soft);
  color: var(--ink-soft);
}

/* ========================================
   Solution
   ======================================== */
.solution-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
  margin-top: clamp(32px, 5vw, 48px);
}
@media (min-width: 920px) { .solution-grid { grid-template-columns: 1fr 1.05fr; } }

.solution h2 {
  font-size: clamp(44px, 8vw, 96px);
  line-height: 0.92;
  letter-spacing: -0.04em;
}
.solution h2 em { font-style: normal; color: var(--pop); }

.solution-text p {
  color: var(--ink-soft);
  font-size: 17px;
  line-height: 1.65;
  margin-bottom: 18px;
  max-width: 44ch;
}
.solution-text p:last-child { margin-bottom: 0; }
.solution-text b { color: var(--ink); font-weight: 600; }
.solution-text mark {
  background: var(--pop-soft);
  color: var(--pop-deep);
  padding: 0 0.1em;
  border-radius: 3px;
}

.vs {
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: 18px;
  overflow: hidden;
}
.vs-block { padding: 28px; border-bottom: 1px solid var(--rule); }
.vs-block:last-child { border-bottom: 0; }
.vs-block.good { background: var(--pop-soft); }

.vs-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ink-muted);
  margin-bottom: 18px;
}
.vs-block.good .vs-head { color: var(--pop-deep); }
.vs-tag {
  background: var(--ink);
  color: var(--bg);
  padding: 3px 10px;
  border-radius: 4px;
  font-size: 10px;
  letter-spacing: 0.08em;
  font-weight: 500;
}
.vs-block.good .vs-tag { background: var(--pop); color: var(--pop-on); }

.vs-row {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 18px;
  align-items: center;
}
.vs-label {
  font-family: var(--display);
  font-size: 18px;
  color: var(--ink);
  font-weight: 600;
  letter-spacing: -0.015em;
}
.vs-label small {
  display: block;
  color: var(--ink-muted);
  font-weight: 400;
  font-size: 13px;
  font-family: var(--sans);
  letter-spacing: 0;
  margin-top: 4px;
}
.vs-row svg { width: 100%; height: auto; }

/* ========================================
   Channels
   ======================================== */
.channels { background: var(--bg-soft); }

.channels h1, .channels h2 {
  font-size: clamp(44px, 8vw, 96px);
  line-height: 0.92;
  letter-spacing: -0.04em;
}
.channels h1 em, .channels h2 em { font-style: normal; color: var(--pop); }

.channels-intro {
  font-size: 17px;
  color: var(--ink-soft);
  line-height: 1.5;
  max-width: 540px;
  margin-top: 20px;
}

.channels-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: var(--rule);
  border: 1px solid var(--rule);
  border-radius: 18px;
  overflow: hidden;
  margin-top: clamp(40px, 6vw, 56px);
}
@media (min-width: 640px) {
  .channels-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 960px) {
  .channels-grid { grid-template-columns: repeat(4, 1fr); }
}

.channel-card {
  background: var(--paper);
  padding: 32px 28px 36px;
  display: flex;
  flex-direction: column;
}

.channel-tag {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--pop-deep);
  background: var(--pop-soft);
  border-radius: 5px;
  padding: 3px 8px;
  align-self: flex-start;
  margin-bottom: 28px;
}

.channel-ico {
  color: var(--ink);
  margin-bottom: 24px;
}

.channel-card h3 {
  font-size: 20px;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}

.channel-card p {
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.55;
}

.channel-hint {
  display: inline-block;
  margin-top: 16px;
  font-family: var(--mono);
  font-size: 12px;
  color: var(--pop-deep);
  text-decoration: none;
  letter-spacing: 0.02em;
}
.channel-hint:hover { text-decoration: underline; }

/* ========================================
   Steps
   ======================================== */
.steps { background: var(--ink); color: var(--bg); }
.steps .eyebrow { color: var(--pop); }
.steps h2 {
  color: var(--bg);
  font-size: clamp(40px, 7vw, 80px);
  line-height: 0.98;
  letter-spacing: -0.035em;
}

.steps-list {
  display: grid;
  gap: 1px;
  margin-top: clamp(40px, 6vw, 64px);
  background: oklch(0.28 0.01 250);
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid oklch(0.28 0.01 250);
}
@media (min-width: 920px) { .steps-list { grid-template-columns: repeat(3, 1fr); } }

.step {
  background: var(--ink);
  padding: 36px 32px 40px;
  transition: background 200ms ease;
  display: flex;
  flex-direction: column;
  min-height: 280px;
}
.step:hover { background: oklch(0.21 0.01 250); }

.step-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px;
}
.step .num {
  font-family: var(--num);
  font-size: 72px;
  line-height: 0.85;
  font-weight: var(--num-weight);
  color: var(--pop);
  letter-spacing: -0.03em;
}
.step .step-tag {
  font-family: var(--mono);
  font-size: 11px;
  color: oklch(0.7 0.01 250);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.step h3 { font-size: 24px; color: var(--bg); margin-bottom: 12px; line-height: 1.2; letter-spacing: -0.02em; }
.step p { font-size: 15px; color: oklch(0.78 0.01 250); line-height: 1.55; }
.step-visual { margin-top: auto; padding-top: 28px; color: oklch(0.7 0.01 250); }

.steps-cta {
  display: flex;
  align-items: center;
  gap: clamp(28px, 5vw, 56px);
  margin-top: clamp(28px, 4vw, 40px);
  background: oklch(0.19 0.01 250);
  border: 1px solid oklch(0.28 0.01 250);
  border-radius: 18px;
  padding: clamp(28px, 4vw, 40px) clamp(28px, 4vw, 48px);
  flex-wrap: wrap;
}
.steps-cta-visual {
  flex: 1 1 200px;
  max-width: 300px;
  padding-right: clamp(24px, 4vw, 48px);
  border-right: 1px solid oklch(0.28 0.01 250);
}
.site-mock {
  background: oklch(0.14 0.01 250);
  border: 1px solid oklch(0.28 0.01 250);
  border-radius: 10px;
  overflow: hidden;
}
.site-mock-chrome {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 8px 12px;
  background: oklch(0.21 0.01 250);
  border-bottom: 1px solid oklch(0.28 0.01 250);
}
.site-mock-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: oklch(0.36 0.01 250);
}
.site-mock-addr {
  margin-left: 6px;
  font-family: var(--mono);
  font-size: 9px;
  color: oklch(0.5 0.01 250);
  background: oklch(0.17 0.01 250);
  padding: 2px 8px;
  border-radius: 3px;
}
.site-mock-body { padding: 16px 14px 14px; }
.site-mock-heading {
  height: 12px;
  background: oklch(0.32 0.01 250);
  border-radius: 3px;
  width: 65%;
  margin-bottom: 7px;
}
.site-mock-sub {
  height: 8px;
  background: oklch(0.25 0.01 250);
  border-radius: 2px;
  width: 44%;
  margin-bottom: 14px;
}
.site-mock-lines { display: flex; flex-direction: column; gap: 5px; margin-bottom: 16px; }
.site-mock-line { height: 6px; background: oklch(0.23 0.01 250); border-radius: 2px; }
.site-mock-btn {
  display: inline-block;
  background: var(--pop);
  color: var(--ink);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 600;
  padding: 7px 13px;
  border-radius: 6px;
  letter-spacing: 0.02em;
  margin-bottom: 6px;
}
.site-mock-url {
  font-family: var(--mono);
  font-size: 9px;
  color: oklch(0.42 0.01 250);
}
.steps-cta-body {
  flex: 1 1 200px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}
.steps-cta-label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--pop);
}
.steps-cta-hint {
  font-size: 15px;
  color: oklch(0.72 0.01 250);
  line-height: 1.5;
  max-width: 38ch;
  margin: 0;
}
@media (max-width: 620px) {
  .steps-cta-visual {
    border-right: none;
    border-bottom: 1px solid oklch(0.28 0.01 250);
    padding-right: 0;
    padding-bottom: 24px;
    max-width: 100%;
  }
}

/* ========================================
   Questionnaires
   ======================================== */
.quests h2 {
  font-size: clamp(40px, 7vw, 80px);
  line-height: 0.98;
  letter-spacing: -0.035em;
}
.quests h2 em { font-style: normal; color: var(--pop); }

.quest-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: clamp(32px, 5vw, 48px);
}
@media (min-width: 640px) { .quest-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 920px) { .quest-grid { grid-template-columns: repeat(4, 1fr); } }

.quest {
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: 14px;
  padding: 24px 22px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  transition: transform 200ms ease, border-color 200ms ease, opacity 0.8s ease;
  height: 152px;
}
.quest:hover { transform: translateY(-3px); border-color: var(--ink); }
.quest.featured {
  background: var(--pop);
  color: var(--pop-on);
  border-color: var(--pop);
  grid-column: span 2;
}
.quest .qicon {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: var(--bg-soft);
  display: grid;
  place-items: center;
  color: var(--ink);
}
.quest.featured .qicon { background: rgba(255,255,255,0.18); color: var(--pop-on); }
.quest .qname { font-family: var(--display); font-weight: 600; font-size: 18px; line-height: 1.2; letter-spacing: -0.02em; }
.quest .qsub { font-family: var(--mono); font-size: 11px; color: var(--ink-muted); letter-spacing: 0.04em; margin-top: -10px; }
.quest.featured .qsub { color: rgba(255,255,255,0.7); }

.quest-foot {
  margin-top: clamp(24px, 4vw, 32px);
  color: var(--ink-soft);
  font-size: 15px;
  max-width: 56ch;
}

/* ========================================
   Einbindung
   ======================================== */
.einbindung { background: var(--paper); }
.einbindung h2 { font-size: clamp(40px, 7vw, 80px); line-height: 0.98; letter-spacing: -0.035em; }
.einbindung h2 em { font-style: normal; color: var(--pop); }

.einbindung-lead {
  max-width: 560px;
  color: var(--ink-soft);
  font-size: 1.05rem;
  line-height: 1.6;
  margin: 12px 0 0;
}

.einbindung-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-top: 40px;
}
@media (min-width: 600px) {
  .einbindung-grid { grid-template-columns: 1fr 1fr; }
}

.einbindung-card {
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: 18px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: transform .18s ease, box-shadow .18s ease;
}
.einbindung-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(20,20,30,0.10);
}

.ec-icon {
  color: var(--pop);
  margin-bottom: 4px;
}
.ec-icon svg { width: 40px; height: 40px; }

.ec-tag {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--ink-muted);
}

.einbindung-card h3 {
  font-size: 1.1rem;
  font-weight: 600;
  line-height: 1.3;
  color: var(--ink);
  margin: 0;
}
.einbindung-card p {
  font-size: .95rem;
  color: var(--ink-soft);
  line-height: 1.6;
  margin: 0;
}

/* ========================================
   Pricing
   ======================================== */
.pricing { background: var(--bg-soft); }
.pricing h2 { font-size: clamp(40px, 7vw, 80px); line-height: 0.98; letter-spacing: -0.035em; }
.pricing h2 em { font-style: normal; color: var(--pop); }

.pricing-table {
  margin-top: clamp(32px, 5vw, 48px);
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
@media (min-width: 760px) {
  .pricing-table {
    grid-template-columns: repeat(5, 1fr);
    gap: 0;
    border: 1px solid var(--rule);
    border-radius: 18px;
    overflow: hidden;
    background: var(--paper);
  }
}

.tier {
  padding: 28px 22px;
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: 14px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
  transition: transform 200ms ease, box-shadow 200ms ease;
}
@media (min-width: 760px) {
  .tier {
    border-radius: 0;
    border-width: 0;
    border-right: 1px solid var(--rule);
    padding: 36px 24px 28px;
  }
  .tier:last-child { border-right: 0; }
  .tier:hover { transform: translateY(-2px); box-shadow: 0 8px 24px -8px rgba(0,0,0,0.12); z-index: 1; }
}
.tier.popular { background: var(--ink); color: var(--bg); }
.tier.popular::before {
  content: "Beliebt";
  position: absolute;
  top: 18px; right: 18px;
  background: var(--pop);
  color: var(--pop-on);
  font-family: var(--mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 4px 10px;
  border-radius: 4px;
  font-weight: 500;
}

.tname { font-family: var(--display); font-size: 22px; font-weight: 600; letter-spacing: -0.02em; }
.tprice { display: flex; align-items: baseline; gap: 6px; font-family: var(--num); }
.tprice b { font-size: 52px; font-weight: var(--num-weight); letter-spacing: -0.02em; line-height: 0.9; }
.tprice .unit { font-size: 13px; color: var(--ink-muted); font-family: var(--sans); font-weight: 400; }
.tier.popular .tprice .unit { color: oklch(0.7 0.01 250); }
.tprice.free b { font-size: 22px; color: var(--pop); font-weight: 600; }
.tprice.custom b { font-size: 22px; }
.tdesc { font-size: 14px; color: var(--ink-soft); line-height: 1.5; flex: 1; }
.tier.popular .tdesc { color: oklch(0.78 0.01 250); }
.tcount {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--ink-muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-top: 1px solid var(--rule-soft);
  padding-top: 14px;
  font-weight: 500;
}
.tier.popular .tcount { color: oklch(0.7 0.01 250); border-top-color: oklch(0.28 0.01 250); }

.pricing-foot {
  margin-top: 28px;
  text-align: center;
  color: var(--ink-muted);
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0.04em;
}
.pricing-foot b { color: var(--ink); font-weight: 500; }

.foerder {
  margin-top: clamp(32px, 5vw, 48px);
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: 16px;
  padding: 28px 32px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 22px;
  align-items: start;
}
.foerder .ico {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--pop-soft);
  color: var(--pop-deep);
  display: grid;
  place-items: center;
  flex: none;
}
.foerder p { color: var(--ink-soft); font-size: 15px; line-height: 1.6; }
.foerder p b { color: var(--ink); font-weight: 600; }
.foerder p em {
  font-style: normal;
  font-family: var(--mono);
  font-size: 13px;
  background: var(--bg-soft);
  padding: 1px 6px;
  border-radius: 4px;
}

/* ========================================
   Trust
   ======================================== */
.trust h2 { font-size: clamp(40px, 7vw, 80px); line-height: 0.98; letter-spacing: -0.035em; }
.trust h2 em { font-style: normal; color: var(--pop); }

.trust-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-top: clamp(32px, 5vw, 48px);
}
@media (min-width: 760px) { .trust-list { grid-template-columns: repeat(3, 1fr); } }

.trust-card {
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: 18px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-height: 220px;
}
.check-big {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: var(--pop);
  color: var(--pop-on);
  display: grid;
  place-items: center;
}
.trust-card h3 { font-size: 22px; line-height: 1.2; letter-spacing: -0.02em; }
.trust-card p { color: var(--ink-soft); font-size: 15px; line-height: 1.55; }

/* ========================================
   Jetzt testen
   ======================================== */
.jetzt-testen { background: var(--paper); }
.jetzt-testen h2 { font-size: clamp(40px, 7vw, 80px); line-height: 0.98; letter-spacing: -0.035em; }
.jetzt-testen h2 em { font-style: normal; color: var(--pop); }

.jetzt-lead {
  font-size: clamp(17px, 1.6vw, 20px);
  color: var(--ink-soft);
  max-width: 48ch;
  margin-top: 20px;
  line-height: 1.55;
}

.so-gehts-label {
  font-family: var(--mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--pop-deep);
  font-weight: 500;
  margin-top: clamp(32px, 5vw, 48px);
  margin-bottom: 16px;
}

.jetzt-steps {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 16px;
  counter-reset: jetzt-counter;
  max-width: 56ch;
}
.jetzt-steps li {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 16px;
  align-items: start;
  counter-increment: jetzt-counter;
  font-size: 16px;
  color: var(--ink-soft);
  line-height: 1.55;
}
.jetzt-steps li::before {
  content: counter(jetzt-counter);
  font-family: var(--num);
  font-weight: var(--num-weight);
  font-size: 28px;
  color: var(--pop);
  line-height: 1.2;
}

.jetzt-form {
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: 20px;
  padding: clamp(24px, 4vw, 40px);
  display: grid;
  gap: 20px;
  margin-top: clamp(32px, 5vw, 48px);
  max-width: 720px;
  color: var(--ink);
}

.jetzt-fragen {
  border: 0;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 12px;
}
.jetzt-fragen legend {
  font-size: 13px;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 12px;
  display: flex;
  align-items: baseline;
  gap: 6px;
  padding: 0;
}
.jetzt-fragen legend small { color: var(--ink-muted); font-weight: 400; font-size: 12px; }

.jetzt-fragen-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
@media (min-width: 600px) { .jetzt-fragen-grid { grid-template-columns: repeat(3, 1fr); } }

.jetzt-check {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border: 1.5px solid var(--rule);
  border-radius: 12px;
  cursor: pointer;
  background: var(--bg-soft);
  font-size: 14px;
  transition: border-color 150ms ease, background 150ms ease;
  user-select: none;
}
.jetzt-check:hover { border-color: var(--ink); }
.jetzt-check input[type="checkbox"] { display: none; }
.jetzt-check:has(input:checked) {
  border-color: var(--pop);
  background: var(--pop-soft);
  font-weight: 500;
  color: var(--ink);
}
.jetzt-check:has(input:disabled:not(:checked)) {
  opacity: 0.45;
  cursor: not-allowed;
  pointer-events: none;
}

/* Accordion */
.fragen-lade     { font-size: 14px; color: var(--ink-muted); padding: 8px 0; margin: 0; }
.fragen-lade-err { font-size: 14px; color: oklch(0.55 0.18 25); padding: 4px 0; margin: 0; }
.fragen-akkordeon { display: flex; flex-direction: column; gap: 6px; }

.fragen-gruppe-kopf {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 14px;
  background: var(--bg-soft);
  border: 1.5px solid var(--rule);
  border-radius: 12px;
  text-align: left;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  cursor: pointer;
  transition: border-color 150ms ease, background 150ms ease, border-radius 150ms ease;
}
.fragen-gruppe-kopf:hover { border-color: var(--ink); }
.fragen-gruppe.open .fragen-gruppe-kopf {
  border-color: var(--ink);
  background: var(--bg-soft);
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
.fragen-gruppe-name { flex: 1; }
.fragen-gruppe-badge {
  font-size: 11px;
  font-weight: 600;
  background: var(--pop);
  color: var(--pop-on);
  padding: 2px 8px;
  border-radius: 999px;
  white-space: nowrap;
}
.fragen-gruppe-pfeil { flex: none; transition: transform 200ms ease; }
.fragen-gruppe.open .fragen-gruppe-pfeil { transform: rotate(180deg); }
.fragen-gruppe-body {
  border: 1.5px solid var(--ink);
  border-top: none;
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;
  padding: 12px;
  background: var(--paper);
}

.jetzt-fragen-err {
  font-size: 12px;
  color: oklch(0.55 0.18 25);
  display: none;
}
.jetzt-fragen.error .jetzt-fragen-err { display: block; }

/* Website field + color picker */
#jfeld-website { margin-top: .5rem; }
.optional { font-weight: 400; color: var(--ink-muted); font-size: .85em; }
#jf-website.loading { opacity: .6; }
.jetzt-farben { margin-top: .4rem; }
.jetzt-farben-fieldset { border: none; padding: 0; margin: 0; }
.jetzt-farben-fieldset legend {
  font-size: .85rem;
  font-weight: 600;
  color: var(--ink-soft);
  margin-bottom: .5rem;
}
.jetzt-farben-grid { display: flex; flex-wrap: wrap; gap: .375rem; }
.farbe-option { cursor: pointer; }
.farbe-option input[type="radio"] { position: absolute; opacity: 0; width: 0; height: 0; }
.farbe-swatch {
  display: block;
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 50%;
  position: relative;
  transition: transform .15s ease, opacity .15s;
}
.farbe-swatch::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M3.5 8.5l3 3 6-6' stroke='white' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round' fill='none'/%3E%3C/svg%3E") no-repeat center / 60%;
  opacity: 0;
  transition: opacity .12s;
}
.farbe-option:hover .farbe-swatch { transform: scale(1.12); opacity: .85; }
.farbe-option input[type="radio"]:checked + .farbe-swatch { transform: scale(1.18); opacity: 1; }
.farbe-option input[type="radio"]:checked + .farbe-swatch::after { opacity: 1; }
.farbe-option--picker {
  display: flex;
  align-items: center;
  gap: .4rem;
  margin-left: .15rem;
}
.farbe-picker-text {
  font-size: .8rem;
  color: var(--ink-muted);
  white-space: nowrap;
}
.farbe-option--picker input[type="color"] { position: absolute; opacity: 0; width: 0; height: 0; }
.farbe-swatch--picker {
  background: conic-gradient(hsl(0,90%,55%), hsl(60,90%,55%), hsl(120,80%,45%), hsl(180,80%,50%), hsl(240,80%,60%), hsl(300,90%,60%), hsl(360,90%,55%));
  opacity: .75;
}
.farbe-option--picker:hover .farbe-swatch--picker { opacity: 1; transform: scale(1.12); }
.farbe-option--picker.farbe-option--active .farbe-swatch--picker { transform: scale(1.18); opacity: 1; }
.farbe-option--picker.farbe-option--active .farbe-swatch--picker::after { opacity: 1; }

/* Consent checkboxes */
.jetzt-consents { display: flex; flex-direction: column; gap: .6rem; margin-top: .25rem; }
.jetzt-consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
  margin-top: .25rem;
}
.jetzt-consent input[type="checkbox"] {
  flex: none;
  margin-top: 2px;
  width: 16px;
  height: 16px;
  accent-color: var(--pop-deep);
  cursor: pointer;
}
.jetzt-consent span { font-size: 13px; color: var(--ink-soft); line-height: 1.5; }
.consent-err { font-size: 12px; color: oklch(0.55 0.18 25); margin-top: 2px; display: block; }

.jetzt-footer-notes {
  margin-top: clamp(24px, 4vw, 36px);
  display: grid;
  gap: 8px;
  font-size: 15px;
  color: var(--ink-soft);
  max-width: 56ch;
}
.jetzt-footer-notes a {
  color: var(--pop-deep);
  text-decoration: underline;
  text-decoration-color: transparent;
  transition: text-decoration-color 150ms ease;
}
.jetzt-footer-notes a:hover { text-decoration-color: var(--pop-deep); }
.jetzt-footer-notes strong { color: var(--ink); }

/* ========================================
   Contact
   ======================================== */
.contact { background: var(--ink); color: var(--bg); }
.contact .eyebrow { color: var(--pop); }
.contact h2 {
  color: var(--bg);
  font-size: clamp(40px, 7vw, 80px);
  line-height: 0.98;
  letter-spacing: -0.035em;
}
.contact h2 em { font-style: normal; color: var(--pop); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(40px, 6vw, 64px);
  margin-top: clamp(32px, 5vw, 48px);
  align-items: start;
}
@media (min-width: 920px) { .contact-grid { grid-template-columns: 1fr 1.1fr; } }

.contact-side p { color: oklch(0.78 0.01 250); font-size: 18px; line-height: 1.6; max-width: 38ch; }
.contact-side .quick {
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid oklch(0.28 0.01 250);
  display: grid;
  gap: 14px;
}
.quick-item {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 12px;
  font-size: 14px;
  color: oklch(0.78 0.01 250);
  align-items: center;
}
.quick-item .ic { color: var(--pop); }
.quick-item b { color: var(--bg); font-weight: 500; }

.contact-form {
  background: var(--paper);
  border-radius: 20px;
  padding: clamp(28px, 4vw, 40px);
  display: grid;
  gap: 20px;
  color: var(--ink);
}
.field { display: grid; gap: 8px; }
.field-row { display: grid; gap: 18px; grid-template-columns: 1fr; }
@media (min-width: 600px) { .field-row { grid-template-columns: 1fr 1fr; } }

.field label {
  font-size: 13px;
  font-weight: 500;
  color: var(--ink);
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}
.field label small { color: var(--ink-muted); font-weight: 400; font-size: 12px; }

.field input, .field textarea {
  font: inherit;
  background: var(--bg-soft);
  border: 1.5px solid transparent;
  border-radius: 12px;
  padding: 14px 16px;
  color: var(--ink);
  transition: border-color 150ms ease, background 150ms ease;
  font-size: 16px;
  width: 100%;
  min-width: 0;
}
.field textarea { resize: vertical; min-height: 96px; line-height: 1.5; }
.field input:focus, .field textarea:focus {
  outline: none;
  border-color: var(--pop);
  background: var(--paper);
}
.field.error input, .field.error textarea { border-color: oklch(0.6 0.18 25); }
.field .err-msg { color: oklch(0.55 0.18 25); font-size: 12px; display: none; }
.field.error .err-msg { display: block; }

.form-foot { font-size: 12.5px; color: var(--ink-muted); line-height: 1.5; }

.submit-btn {
  background: var(--pop);
  color: var(--pop-on);
  border: 0;
  padding: 17px 26px;
  border-radius: 14px;
  font-size: 16px;
  font-weight: 500;
  font-family: var(--sans);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  transition: transform 150ms ease, background 150ms ease;
}
.submit-btn:hover { transform: translateY(-2px); background: var(--pop-deep); color: #fff; }
.submit-btn:disabled { opacity: 0.6; cursor: wait; }
.submit-btn .arrow { transition: transform 200ms ease; }
.submit-btn:hover .arrow { transform: translateX(3px); }

.form-success {
  background: var(--paper);
  border-radius: 20px;
  padding: 44px;
  text-align: center;
  color: var(--ink);
}
.form-success .ok {
  width: 60px; height: 60px;
  border-radius: 50%;
  background: var(--pop);
  color: var(--pop-on);
  display: grid;
  place-items: center;
  margin: 0 auto 22px;
}
.form-success h3 { font-size: 26px; margin-bottom: 10px; letter-spacing: -0.02em; }
.form-success p { color: var(--ink-soft); font-size: 15px; line-height: 1.55; max-width: 44ch; margin: 0 auto; }

/* ========================================
   Footer
   ======================================== */
footer.foot {
  padding: 48px 0 64px;
  border-top: 1px solid oklch(0.28 0.01 250);
  background: var(--ink);
  color: oklch(0.7 0.01 250);
  font-size: 14px;
  font-family: var(--mono);
}
.foot-inner { display: flex; flex-wrap: wrap; gap: 18px 28px; align-items: center; justify-content: space-between; }
.foot-links { display: flex; flex-wrap: wrap; gap: 22px; }
.foot-links a { color: inherit; text-decoration: none; }
.foot-links a:hover { color: var(--bg); }

/* ========================================
   Reveal animation
   ======================================== */
.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 600ms ease, transform 600ms ease;
}
.reveal.in { opacity: 1; transform: none; }

/* ========================================
   Reduced motion
   ======================================== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; }
  .ev-quest { transition: none; }
}

/* ========================================
   Topbar: Login-Button + Nav-Wrapper
   ======================================== */
.topbar-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.topbar-login {
  background: none;
  border: 1.5px solid var(--rule);
  border-radius: 8px;
  padding: 7px 14px;
  font: inherit;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--ink-soft);
  cursor: pointer;
  transition: color 150ms ease, border-color 150ms ease;
  white-space: nowrap;
}
.topbar-login:hover { color: var(--ink); border-color: var(--ink-muted); }
.topbar-login:focus-visible { outline: 2px solid var(--pop); outline-offset: 3px; }

/* ========================================
   Login Modal
   ======================================== */
.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(0, 0, 0, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.modal-backdrop[hidden] { display: none; }

.modal-card {
  background: var(--paper);
  border-radius: 16px;
  padding: 40px;
  width: 100%;
  max-width: 440px;
  position: relative;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.18);
}
.modal-card h2 {
  margin: 0 0 8px;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: var(--display-ls);
}
.modal-card > p {
  margin: 0 0 24px;
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.6;
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 16px;
  background: none;
  border: none;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  color: var(--ink-muted);
  padding: 4px 8px;
  border-radius: 6px;
  transition: color 150ms;
}
.modal-close:hover { color: var(--ink); }

.modal-divider {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 24px 0 20px;
  color: var(--ink-muted);
  font-size: 12px;
}
.modal-divider::before,
.modal-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}
.pw-hint {
  font-size: 12px;
  color: var(--ink-muted);
  margin: 8px 0 0;
  line-height: 1.5;
}

/* ========================================
   Vorschau / Live-Demo
   ======================================== */
.vorschau { background: var(--bg-soft); }

.vorschau h2 {
  font-size: clamp(40px, 7vw, 80px);
  line-height: 0.98;
  letter-spacing: -0.035em;
}
.vorschau h2 em { font-style: normal; color: var(--pop); }

.vorschau-lead {
  color: var(--ink-soft);
  max-width: 540px;
  margin-top: 16px;
}

.vorschau-wrap {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 32px;
  align-items: start;
  margin-top: 48px;
}

.vw-left-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.vw-cta-btn {
  width: 100%;
  white-space: normal;
  text-align: center;
  font-size: 14px;
  padding: 14px 20px;
  line-height: 1.35;
}

.vw-selector {
  background: white;
  border: 1px solid var(--rule);
  border-radius: 14px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.07);
  overflow: hidden;
}
.vw-selector-title {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-muted);
  padding: 16px 16px 10px;
  border-bottom: 1px solid var(--rule);
}

.vw-category-group { border-bottom: 1px solid var(--rule); }
.vw-category-group:last-child { border-bottom: none; }

.vw-category-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--ink-soft);
  font-family: var(--sans);
  font-size: 0.82rem;
  font-weight: 600;
  text-align: left;
  gap: 8px;
  transition: background 0.12s, color 0.12s;
}
.vw-category-btn:hover { background: var(--bg-soft); color: var(--ink); }
.vw-chevron {
  flex-shrink: 0;
  width: 14px;
  height: 14px;
  color: var(--ink-muted);
  transition: transform 0.2s;
}
.vw-category-group.open .vw-chevron { transform: rotate(90deg); }

.vw-category-items { list-style: none; display: none; margin: 0; padding: 0; }
.vw-category-group.open .vw-category-items { display: block; }

.vw-fb-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 16px 9px 28px;
  font-size: 0.875rem;
  color: var(--ink-soft);
  cursor: pointer;
  border-left: 3px solid transparent;
  transition: background 0.1s, color 0.1s;
}
.vw-fb-item:hover { background: var(--bg-soft); color: var(--ink); }
.vw-fb-item.active {
  color: var(--pop-on);
  background: var(--pop-soft);
  border-left-color: var(--pop);
  font-weight: 500;
}
.vw-fb-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--pop);
  flex-shrink: 0;
  opacity: 0;
  transition: opacity 0.15s;
}
.vw-fb-item.active .vw-fb-dot { opacity: 1; }
.vw-fb-icon { flex-shrink: 0; display: flex; align-items: center; color: var(--ink-soft); }
.vw-fb-item.active .vw-fb-icon { color: var(--pop); }
.vw-fb-item:has(.vw-fb-icon) { padding-left: 16px; }

.vw-selector-footer {
  padding: 12px 16px;
  border-top: 1px solid var(--rule);
  background: var(--bg-soft);
}
.vw-reload-btn {
  display: flex;
  align-items: center;
  gap: 7px;
  background: none;
  border: 1px solid var(--rule);
  border-radius: 8px;
  padding: 7px 12px;
  font-family: var(--sans);
  font-size: 0.8rem;
  color: var(--ink-muted);
  cursor: pointer;
  width: 100%;
  justify-content: center;
  transition: background 0.12s, color 0.12s;
}
.vw-reload-btn:hover { background: white; color: var(--ink); }

.vw-home-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 16px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--ink-soft);
  cursor: pointer;
  border-bottom: 1px solid var(--rule);
  border-left: 3px solid transparent;
  transition: background 0.1s, color 0.1s;
}
.vw-home-item:hover { background: var(--bg-soft); color: var(--ink); }
.vw-home-item.active {
  color: var(--pop-on);
  background: var(--pop-soft);
  border-left-color: var(--pop);
}
.vw-home-item svg { opacity: 0.6; flex-shrink: 0; }
.vw-home-item.active svg { opacity: 1; }

.vw-phone-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.vw-phone-wrap { position: relative; }
.vw-phone-wrap::before {
  content: '';
  position: absolute;
  left: -5px; top: 130px;
  width: 4px; height: 28px;
  background: #505052;
  border-radius: 2px 0 0 2px;
  box-shadow: 0 42px 0 #c8c8cc, 0 84px 0 #c8c8cc;
}
.vw-phone-wrap::after {
  content: '';
  position: absolute;
  right: -5px; top: 170px;
  width: 4px; height: 56px;
  background: #505052;
  border-radius: 0 2px 2px 0;
}

.vw-phone {
  width: 375px;
  background: #3c3c3e;
  border-radius: 52px;
  display: flex;
  flex-direction: column;
  box-shadow:
    0 0 0 1px rgba(0,0,0,0.07),
    0 2px 8px rgba(0,0,0,0.06),
    0 16px 48px rgba(0,0,0,0.10),
    0 32px 80px rgba(0,0,0,0.07);
  overflow: hidden;
}

.vw-phone-top {
  height: 68px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #3c3c3e;
}
.vw-phone-camera { width: 9px; height: 9px; border-radius: 50%; background: #5a5a5c; }
.vw-phone-speaker { width: 54px; height: 5px; border-radius: 3px; background: #555557; }

.vw-phone-screen {
  overflow: hidden;
  background: white;
  aspect-ratio: 9 / 16;
  position: relative;
}
.vw-phone-screen iframe { width: 100%; height: 100%; border: none; display: block; }

.vw-phone-bottom {
  height: 76px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #3c3c3e;
}
.vw-phone-home { width: 46px; height: 46px; border-radius: 50%; border: 2px solid #565658; }

.vw-phone-loading {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: white;
}
.vw-phone-loading.hidden { display: none; }
.vw-spin {
  width: 28px; height: 28px;
  border: 3px solid var(--rule);
  border-top-color: var(--pop);
  border-radius: 50%;
  animation: vw-spin 0.7s linear infinite;
}
@keyframes vw-spin { to { transform: rotate(360deg); } }

.vw-demo-note {
  font-size: 0.78rem;
  color: var(--ink-muted);
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.vw-demo-note svg { opacity: 0.7; }

@media (max-width: 900px) {
  .vorschau-wrap { grid-template-columns: 1fr; }
  .vw-left-col { display: none; }
  .vw-phone-wrap::before, .vw-phone-wrap::after { display: none; }
}
@media (max-width: 480px) {
  .brand-name { display: none; }
  .topbar-cta { padding: 7px 14px; font-size: 13.5px; }
  .vw-phone { width: calc(100vw - 48px); border-radius: 36px; }
  .vw-phone-top { height: 52px; }
  .vw-phone-bottom { height: 58px; }
  .vw-phone-home { width: 36px; height: 36px; }
}

/* ========================================
   Inbox / Backend-Mockup
   ======================================== */
.inbox h2 {
  font-size: clamp(40px, 7vw, 80px);
  line-height: 0.98;
  letter-spacing: -0.035em;
}
.inbox h2 em { font-style: normal; color: var(--pop); }

.inbox-lead {
  color: var(--ink-soft);
  max-width: 540px;
  margin-top: 16px;
}

.inbox-card {
  margin-top: 48px;
  background: white;
  border: 1px solid var(--rule);
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.07);
  overflow: hidden;
  max-width: 780px;
}

.inbox-card-head {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 18px 24px 16px;
  border-bottom: 1px solid var(--rule-soft);
}
.inbox-card-title {
  font-weight: 600;
  font-size: 0.95rem;
}
.inbox-count-badge {
  background: oklch(0.93 0.12 130);
  color: var(--pop-on);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 2px 9px;
  border-radius: 99px;
}

.inbox-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-bottom: 1px solid var(--rule-soft);
}
.inbox-stat {
  padding: 18px 20px 16px;
  border-right: 1px solid var(--rule-soft);
}
.inbox-stat:last-child { border-right: none; }
.inbox-stat-num {
  font-family: var(--num);
  font-weight: 600;
  font-size: 2rem;
  line-height: 1;
  color: var(--ink);
  letter-spacing: -0.02em;
}
.inbox-stat-label {
  font-size: 0.72rem;
  color: var(--ink-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: 5px;
}

.inbox-table-head {
  display: grid;
  grid-template-columns: 1fr 1fr 140px 100px;
  padding: 8px 24px;
  background: var(--bg-soft);
  border-bottom: 1px solid var(--rule-soft);
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink-muted);
}

.inbox-row {
  display: grid;
  grid-template-columns: 36px 1fr 1fr 140px 100px;
  align-items: center;
  gap: 0 12px;
  padding: 14px 24px;
  border-bottom: 1px solid var(--rule-soft);
  opacity: 0;
}
.inbox-row:last-child { border-bottom: none; }
.inbox-row.ib-in {
  animation: inbox-row-in 0.4s ease both;
}
@keyframes inbox-row-in {
  from { opacity: 0; transform: translateX(-16px); }
  to   { opacity: 1; transform: translateX(0); }
}

.inbox-av {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--av-bg);
  color: var(--av-fg);
  font-size: 0.78rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.inbox-name {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--ink);
}
.inbox-product {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  color: var(--ink-soft);
}
.inbox-product svg { flex-shrink: 0; opacity: 0.7; }
.inbox-time {
  font-size: 0.78rem;
  color: var(--ink-muted);
  font-family: var(--mono);
}

.inbox-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.72rem;
  font-weight: 600;
  padding: 3px 9px;
  border-radius: 99px;
  white-space: nowrap;
}
.inbox-badge::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  flex-shrink: 0;
}
.inbox-badge--new {
  background: oklch(0.94 0.08 145);
  color: oklch(0.3 0.1 145);
}
.inbox-badge--new::before {
  background: oklch(0.5 0.15 145);
  animation: inbox-pulse 1.8s ease-in-out infinite;
}
@keyframes inbox-pulse {
  0%, 100% { box-shadow: 0 0 0 0 oklch(0.5 0.15 145 / 0.5); }
  50%       { box-shadow: 0 0 0 4px oklch(0.5 0.15 145 / 0); }
}
.inbox-badge--progress {
  background: #dbeafe;
  color: #1e40af;
}
.inbox-badge--progress::before { background: #3b82f6; }
.inbox-badge--won {
  background: var(--pop-soft);
  color: var(--pop-on);
}
.inbox-badge--won::before { background: var(--pop); }

@media (max-width: 720px) {
  .inbox-stats { grid-template-columns: repeat(2, 1fr); }
  .inbox-stat:nth-child(2) { border-right: none; }
  .inbox-stat:nth-child(3) { border-top: 1px solid var(--rule-soft); }
  .inbox-table-head { display: none; }
  .inbox-row {
    grid-template-columns: 36px 1fr auto;
    grid-template-rows: auto auto;
    gap: 2px 10px;
    padding: 12px 20px;
  }
  .inbox-av { grid-row: span 2; }
  .inbox-product { grid-column: 2; font-size: 0.78rem; }
  .inbox-badge { grid-column: 3; grid-row: span 2; align-self: center; }
  .inbox-time { grid-column: 2; font-size: 0.72rem; }
}
