/* ─── Landing-spezifisches Layout ─── */

/* HERO */
.hero { padding: 80px 0 100px; position: relative; overflow: hidden; }
.hero::before {
  content: '';
  position: absolute; inset: -200px 50% -200px -300px;
  background: radial-gradient(circle, #EAF3EE 0%, transparent 60%);
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
  gap: 72px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-left { max-width: 520px; }
.hero-left .badge { margin-bottom: 24px; }
.hero-left h1 { margin: 0 0 18px; }
.hero-sub {
  color: var(--text);
  font-size: 18px;
  line-height: 1.55;
  margin: 0 0 28px;
}
.hero-bullets {
  list-style: none; padding: 0; margin: 24px 0 32px;
  display: flex; flex-direction: column; gap: 14px;
}
.hero-bullets li {
  display: flex; align-items: center; gap: 14px;
  font-size: 16px; color: var(--text); font-weight: 500;
}
.b-check {
  flex-shrink: 0;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--green-light);
  color: var(--green-2);
  display: flex; align-items: center; justify-content: center;
}
.b-check svg { width: 14px; height: 14px; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 22px; }
.hero-cta .btn-primary { box-shadow: 0 12px 32px rgba(22, 48, 71, 0.18); }
.hero-fineprint { font-size: 13px; color: var(--muted-2); margin: 0; }

/* Trust-Row unter CTA */
.trust-row {
  list-style: none; padding: 0; margin: 0 0 22px;
  display: flex; flex-wrap: wrap; gap: 8px 18px;
}
.trust-row li {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 13px; color: var(--muted);
  font-weight: 500;
}
.trust-row svg { width: 14px; height: 14px; color: var(--green-2); flex-shrink: 0; }

.hero-right { position: relative; min-height: 480px; }
.hero-illust { position: relative; height: 100%; }
.ai-robot { width: 100%; max-width: 420px; margin: 0 auto; display: block; }
.paper-stack {
  position: absolute;
  top: 40px; right: -20px;
  width: 180px;
  filter: drop-shadow(0 14px 30px rgba(16, 24, 40, 0.10));
  z-index: -1;
  opacity: 0.85;
}

.floating-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
  border: 1px solid var(--border-soft);
  border-radius: 16px;
  padding: 14px 18px;
  box-shadow: 0 14px 50px rgba(16, 24, 40, 0.08);
  display: flex;
  gap: 12px;
  align-items: center;
  font-size: 13.5px;
}
.floating-card strong { display: block; color: var(--text); font-weight: 600; font-size: 14px; }
.floating-card small { color: var(--muted); font-size: 12.5px; }
.f-icon {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: var(--green-light);
  color: var(--green-2);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.f-icon svg { width: 18px; height: 18px; }
.f-icon.is-navy { background: rgba(22, 48, 71, 0.08); color: var(--navy); }
.f-card-1 { top: 10%; left: -20px; animation: floatY 7s ease-in-out infinite; }
.f-card-2 { bottom: 22%; right: -30px; animation: floatY 8s ease-in-out infinite 1s; }
.f-card-3 {
  top: 38%; right: 0;
  flex-direction: column; align-items: stretch; gap: 8px;
  padding: 14px 16px;
  font-size: 12.5px;
  animation: floatY 9s ease-in-out infinite .5s;
}
.f-status-row { display: flex; align-items: center; gap: 8px; color: var(--text); font-weight: 500; }
.status-dot { width: 8px; height: 8px; border-radius: 50%; background: #d0d5dd; }
.status-dot.is-green { background: var(--green); }
.status-dot.is-navy { background: var(--navy); }

/* TRUST BAR */
.trust-bar { padding: 60px 0; background: #fff; }
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.trust-item { text-align: center; padding: 24px 16px; }
.t-icon {
  width: 56px; height: 56px;
  margin: 0 auto 18px;
  border-radius: 16px;
  background: var(--green-light);
  color: var(--green-2);
  display: flex; align-items: center; justify-content: center;
}
.t-icon svg { width: 24px; height: 24px; }
.trust-item h4 { font-size: 17px; margin: 0 0 8px; color: var(--text); }
.trust-item p { font-size: 14.5px; color: var(--muted); margin: 0; line-height: 1.55; }

/* HOW IT WORKS */
.how { background: var(--bg); }
.steps {
  display: grid;
  grid-template-columns: 1fr 36px 1fr 36px 1fr 36px 1fr;
  gap: 0;
  align-items: stretch;
}
.step {
  background: #fff;
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-sm);
  padding: 36px 28px;
  text-align: center;
  border: 1px solid var(--border-soft);
  transition: transform .25s, box-shadow .25s;
}
.step:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.step-num {
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--navy); color: #fff;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px;
  font-weight: 700; font-size: 14px;
}
.step-icon {
  width: 56px; height: 56px;
  margin: 0 auto 18px;
  border-radius: 16px;
  background: var(--green-light);
  color: var(--green-2);
  display: flex; align-items: center; justify-content: center;
}
.step-icon svg { width: 26px; height: 26px; }
.step h4 { font-size: 18px; margin: 0 0 8px; }
.step p { font-size: 14.5px; line-height: 1.55; margin: 0; }
.step-arrow {
  align-self: center;
  color: var(--muted-2);
  display: flex; justify-content: center;
}
.step-arrow svg { width: 36px; height: 16px; }

/* SUPPORT SECTION */
.support { background: #fff; }
.support-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.support-left .badge { margin-bottom: 18px; }
.support-left h2 { margin-bottom: 18px; }
.support-bullets {
  list-style: none; padding: 0; margin: 28px 0 32px;
  display: flex; flex-direction: column; gap: 12px;
}
.support-bullets li {
  display: flex; align-items: center; gap: 14px;
  color: var(--text); font-size: 15.5px; font-weight: 500;
}
.support-bullets .b-check { width: 26px; height: 26px; }
.support-bullets .b-check svg { width: 13px; height: 13px; }

.support-illust {
  position: relative; min-height: 400px;
  display: flex; align-items: center; justify-content: center;
}
.armchair { width: 100%; max-width: 360px; }
.testimonial-card {
  position: absolute;
  bottom: -20px; right: -16px;
  width: 280px;
  padding: 22px;
  border-radius: 20px;
}
.t-stars { display: flex; gap: 4px; margin-bottom: 12px; }
.t-stars svg { width: 16px; height: 16px; }
.testimonial-card p {
  font-size: 14px; color: var(--text); line-height: 1.55;
  margin: 0 0 14px;
  font-weight: 500;
}
.t-author { display: flex; gap: 12px; align-items: center; }
.t-avatar {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--navy); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 14px;
}
.t-author strong { display: block; font-size: 13.5px; color: var(--text); }
.t-author small { display: block; font-size: 12px; color: var(--muted); }

/* CTA SECTION */
.cta-section { padding: 60px 0 100px; background: var(--bg); }
.cta-box {
  background: linear-gradient(180deg, #f7faf8 0%, #eef5f1 100%);
  border: 1px solid rgba(109, 156, 136, 0.16);
  border-radius: var(--r-2xl);
  padding: 60px;
  display: grid;
  grid-template-columns: 1.3fr 1fr auto;
  gap: 40px;
  align-items: center;
  position: relative;
  overflow: hidden;
  margin-bottom: 60px;
}
.cta-text h2 { margin: 0 0 12px; font-size: clamp(28px, 3.5vw, 40px); }
.cta-text p { margin: 0; color: var(--muted); }
.cta-form {
  display: flex; flex-wrap: wrap; gap: 10px;
}
.cta-form input { flex: 1; min-width: 200px; padding: 16px 20px; border-radius: 14px; font-size: 15px; }
.cta-fineprint { font-size: 13px; color: var(--muted-2); margin: 12px 0 0; }
.cta-status { font-size: 13.5px; margin: 8px 0 0; min-height: 18px; }
.cta-status.ok { color: var(--green-2); }
.cta-status.err { color: var(--danger); }
.cta-deco { display: flex; gap: 16px; align-items: flex-end; height: 100%; }
.cta-plant { width: 90px; }
.cta-clock { width: 100px; }

/* FOOTER BENEFITS */
.footer-benefits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.fb-item {
  display: flex; gap: 16px; align-items: flex-start;
  background: #fff;
  border-radius: var(--r-lg);
  padding: 20px 22px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-soft);
}
.fb-icon {
  flex-shrink: 0;
  width: 40px; height: 40px;
  border-radius: 12px;
  background: var(--green-light);
  color: var(--green-2);
  display: flex; align-items: center; justify-content: center;
}
.fb-icon svg { width: 20px; height: 20px; }
.fb-item strong { display: block; font-size: 14.5px; color: var(--text); font-weight: 600; margin-bottom: 2px; }
.fb-item small { display: block; font-size: 13px; color: var(--muted); line-height: 1.5; }

/* SCOPE — Grenzen des Tools (geeignet / nicht geeignet) */
.scope { padding: 80px 0; background: #fff; }
.scope-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 48px;
}
.scope-col {
  background: #fff;
  border-radius: var(--r-xl);
  padding: 32px 28px;
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow-sm);
}
.scope-yes {
  background: linear-gradient(135deg, #F1F8F4 0%, #fff 100%);
  border-color: rgba(109, 156, 136, 0.22);
}
.scope-no {
  background: linear-gradient(135deg, #FEF3F2 0%, #fff 100%);
  border-color: rgba(180, 35, 24, 0.18);
}
.scope-head {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 18px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border-soft);
}
.scope-head h3 {
  margin: 0;
  font-size: 19px;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.01em;
}
.scope-icon {
  width: 36px; height: 36px;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.scope-icon svg { width: 18px; height: 18px; }
.scope-icon-yes { background: var(--green); color: #fff; }
.scope-icon-no  { background: var(--danger); color: #fff; }
.scope-list {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 10px;
}
.scope-list li {
  position: relative;
  padding-left: 22px;
  font-size: 15px;
  line-height: 1.45;
  color: var(--text);
}
.scope-yes .scope-list li::before {
  content: '';
  position: absolute; left: 4px; top: 8px;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--green);
}
.scope-no .scope-list li::before {
  content: '';
  position: absolute; left: 2px; top: 7px;
  width: 12px; height: 2px;
  background: var(--danger);
  border-radius: 2px;
}
.scope-foot {
  margin: 20px 0 0;
  padding: 14px 16px;
  background: rgba(255,255,255,0.55);
  border-radius: 12px;
  border: 1px solid rgba(180, 35, 24, 0.14);
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--text);
}
@media (max-width: 860px) {
  .scope-grid { grid-template-columns: 1fr; gap: 18px; }
  .scope { padding: 60px 0; }
}

/* AI-Notice — DSGVO/Auftragsverarbeitungs-Hinweis vor Footer */
.ai-notice {
  background: #F8FAF9;
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
  padding: 22px 0;
}
.ai-notice-grid {
  display: flex; align-items: flex-start; gap: 16px;
}
.ai-notice-icon {
  flex-shrink: 0;
  width: 36px; height: 36px;
  border-radius: 10px;
  background: var(--green-light);
  color: var(--green-2);
  display: flex; align-items: center; justify-content: center;
}
.ai-notice p {
  margin: 0;
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--muted);
}
.ai-notice p strong { color: var(--text); font-weight: 700; }
.ai-notice a {
  color: var(--green-2);
  text-decoration: underline;
  text-decoration-color: var(--green-light);
  text-underline-offset: 3px;
  text-decoration-thickness: 2px;
  margin-left: 4px;
  white-space: nowrap;
}
.ai-notice a:hover { color: var(--navy); }
@media (max-width: 560px) {
  .ai-notice-grid { flex-direction: column; gap: 10px; }
}

/* FOOTER */
.footer-tag { font-size: 13.5px; color: var(--muted); margin: 14px 0 0; line-height: 1.6; }

/* ─── RESPONSIVE ─── */
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero-right { min-height: 380px; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: 1fr; gap: 16px; }
  .step-arrow { display: none; }
  .support-grid { grid-template-columns: 1fr; gap: 48px; }
  .support-illust { min-height: 320px; }
  .testimonial-card { position: relative; bottom: 0; right: 0; margin: 24px auto 0; }
  .cta-box { grid-template-columns: 1fr; padding: 36px 28px; }
  .cta-deco { justify-content: center; }
  .footer-benefits { grid-template-columns: 1fr; }
}
@media (max-width: 620px) {
  .hero { padding: 40px 0 60px; }
  .hero-green { font-size: 18px; }
  .trust-grid { grid-template-columns: 1fr; }
  .floating-card { padding: 10px 14px; }
  .f-card-1, .f-card-2, .f-card-3 { transform: scale(0.85); }
}

/* ─── Nav-CTA-Gruppe ─── */
.nav-cta { display: flex; align-items: center; gap: 8px; }
.nav-login {
  padding: 9px 14px;
  border-radius: 10px;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--muted);
}
.nav-login:hover { color: var(--navy); background: var(--green-light); }
@media (max-width: 540px) {
  .nav-login { display: none; }
  .nav-cta .btn { padding: 12px 18px; font-size: 13.5px; }
}

/* ═══════════════════════════════════════════════════════════════ */
/* WARUM KI-UNTERSTÜTZUNG — Section (Phase 26)                       */
/* ═══════════════════════════════════════════════════════════════ */
.why-ai {
  background: linear-gradient(180deg, var(--bg) 0%, var(--white) 100%);
  padding: var(--space-section) 0;
}

.why-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin: 0 0 18px;
}
.why-stats + .why-stats { margin-bottom: 56px; }
.why-stats-divider {
  display: flex; align-items: center; gap: 14px;
  margin: 28px 0 18px;
  font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase;
  font-weight: 700;
  color: var(--muted);
}
.why-stats-divider::before,
.why-stats-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border-soft);
}
@media (max-width: 920px) { .why-stats { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .why-stats { grid-template-columns: 1fr; } }

.why-stat {
  background: #fff;
  border: 1px solid var(--border-soft);
  border-radius: 22px;
  padding: 26px 22px;
  box-shadow: var(--shadow-sm);
  transition: all .2s;
  display: flex;
  flex-direction: column;
}
.why-stat:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.why-stat.is-slorify-soft {
  border-left: 3px solid var(--green);
  background: linear-gradient(180deg, #fff 0%, #FAFCFB 100%);
}
.why-stat.is-us {
  background: linear-gradient(180deg, #fff 0%, var(--green-soft) 100%);
  border-color: var(--green);
  box-shadow: 0 14px 50px rgba(109, 156, 136, 0.18);
}
.why-stat-num {
  font-size: 32px;
  font-weight: 800;
  letter-spacing: -0.025em;
  color: var(--navy);
  margin-bottom: 6px;
  line-height: 1.05;
}
.is-us .why-stat-num,
.is-slorify-soft .why-stat-num { color: var(--green-2); }
.why-stat-tag {
  display: inline-block;
  font-size: 10.5px; letter-spacing: 0.1em; text-transform: uppercase;
  font-weight: 700;
  color: var(--green-2);
  background: var(--green-light);
  padding: 3px 8px;
  border-radius: 999px;
  margin-bottom: 10px;
  width: fit-content;
}
.why-stat-label {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 12px;
  line-height: 1.4;
}
.why-stat-src {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.5;
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px solid var(--border-soft);
}

/* ─── Vergleichs-Karten ─── */
.why-compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 0 0 56px;
}
@media (max-width: 880px) { .why-compare { grid-template-columns: 1fr; } }

.why-compare-col {
  background: #fff;
  border: 1px solid var(--border-soft);
  border-radius: 24px;
  padding: 32px 28px;
  position: relative;
  box-shadow: var(--shadow-sm);
}
.why-col-classic {
  background: #fafbfb;
}
.why-col-us {
  border-color: var(--navy);
  box-shadow: 0 14px 50px rgba(22, 48, 71, 0.12);
  position: relative;
}
.why-col-badge {
  position: absolute;
  top: -12px;
  left: 28px;
  background: var(--navy);
  color: #fff;
  padding: 5px 14px;
  border-radius: 999px;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.why-compare-col h3 {
  font-family: 'Inter', sans-serif;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0 0 4px;
  color: var(--text);
}
.why-col-sub {
  font-size: 13.5px;
  color: var(--muted);
  margin: 0 0 22px;
}
.why-compare-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.why-compare-col li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 14.5px;
  color: var(--text);
  line-height: 1.55;
}
.why-x, .why-check, .why-info {
  flex-shrink: 0;
  width: 24px; height: 24px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
  font-size: 14px;
  margin-top: 1px;
}
.why-x { background: rgba(180, 35, 24, 0.10); color: var(--danger); }
.why-check { background: var(--green); color: #fff; }
.why-check svg { width: 14px; height: 14px; }
.why-info { background: var(--warn-light); color: var(--warn); }
.why-compare-col strong { color: var(--text); font-weight: 700; }

/* ─── Ehrliches Statement ─── */
.why-honest {
  display: flex;
  gap: 22px;
  align-items: flex-start;
  background: linear-gradient(135deg, var(--green-soft) 0%, rgba(22, 48, 71, 0.04) 100%);
  border: 1px solid rgba(109, 156, 136, 0.22);
  border-radius: 24px;
  padding: 32px 36px;
}
.why-honest-icon {
  flex-shrink: 0;
  width: 56px; height: 56px;
  border-radius: 16px;
  background: var(--navy);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
}
.why-honest h3 {
  font-size: 19px;
  font-weight: 700;
  letter-spacing: -0.015em;
  margin: 0 0 10px;
  color: var(--text);
}
.why-honest p {
  font-size: 14.5px;
  line-height: 1.65;
  color: var(--text);
  margin: 0 0 10px;
}
.why-honest p:last-child { margin: 0; }
.why-honest strong { color: var(--navy); font-weight: 700; }
.why-honest a { color: var(--green-2); text-decoration: underline; text-decoration-color: var(--green-light); text-underline-offset: 3px; text-decoration-thickness: 2px; }
.why-honest a:hover { color: var(--navy); }
.why-honest-list {
  list-style: none; padding: 0; margin: 12px 0 14px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px 18px;
}
.why-honest-list li {
  position: relative;
  padding-left: 22px;
  font-size: 14px;
  line-height: 1.5;
  color: var(--text);
}
.why-honest-list li::before {
  content: '!';
  position: absolute; left: 0; top: 0;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: var(--warn-light);
  color: var(--warn);
  font-weight: 800;
  font-size: 11px;
  display: flex; align-items: center; justify-content: center;
  margin-top: 2px;
}
@media (max-width: 720px) {
  .why-honest-list { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .why-honest { flex-direction: column; padding: 24px 22px; }
}

/* Hero-Disclaimer — dezent, kein Warn-Look mehr (RDG-Klarstellung) */
.hero-disclaimer {
  display: flex; align-items: flex-start; gap: 10px;
  background: var(--border-soft);
  border-radius: 10px;
  padding: 10px 14px;
  font-size: 12.5px;
  line-height: 1.5;
  color: var(--muted);
  margin: 0;
}
.hero-disclaimer .hd-icon {
  width: 16px; height: 16px;
  color: var(--muted-2);
  flex-shrink: 0;
  margin-top: 1px;
}
.hero-disclaimer strong { color: var(--text); font-weight: 600; }

/* ──────────────────────────────────────────────────────────────
   Dashboard-Mockup im Hero (rechte Seite)
   ────────────────────────────────────────────────────────────── */
.mock-dashboard {
  position: relative;
  width: 100%;
  max-width: 580px;
  margin: 0 0 0 auto;
  background: #fff;
  border-radius: var(--r-xl);
  box-shadow:
    0 1px 3px rgba(16, 24, 40, 0.04),
    0 24px 80px rgba(16, 24, 40, 0.10),
    0 48px 120px rgba(22, 48, 71, 0.08);
  overflow: hidden;
  border: 1px solid var(--border-soft);
}

.mock-chrome {
  display: flex; align-items: center; gap: 8px;
  padding: 12px 16px;
  background: #F8FAF9;
  border-bottom: 1px solid var(--border-soft);
}
.mc-dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: #E4E7EC;
}
.mc-dot:nth-child(1) { background: #F8B4B4; }
.mc-dot:nth-child(2) { background: #FAE19A; }
.mc-dot:nth-child(3) { background: #B6E0CB; }
.mc-url {
  margin-left: 12px;
  flex: 1;
  background: #fff;
  border: 1px solid var(--border-soft);
  border-radius: 8px;
  padding: 5px 12px;
  font-size: 11.5px;
  color: var(--muted);
  font-family: ui-monospace, 'SF Mono', Menlo, monospace;
  letter-spacing: -0.01em;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}

.mock-body { padding: 24px; }

.mock-head {
  display: flex; align-items: flex-start; justify-content: space-between;
  margin-bottom: 18px;
}
.mock-eyebrow {
  font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--green-2); font-weight: 700; margin: 0 0 4px;
}
.mock-title {
  font-size: 18px; font-weight: 800; color: var(--text);
  margin: 0; letter-spacing: -0.01em;
}
.mock-pill-live {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--green-light); color: var(--green-2);
  padding: 4px 10px; border-radius: 999px;
  font-size: 11px; font-weight: 700;
}
.mock-pulse {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 0 rgba(109, 156, 136, 0.5);
  animation: mockPulse 2s infinite;
}
@keyframes mockPulse {
  0%   { box-shadow: 0 0 0 0 rgba(109, 156, 136, 0.55); }
  70%  { box-shadow: 0 0 0 8px rgba(109, 156, 136, 0); }
  100% { box-shadow: 0 0 0 0 rgba(109, 156, 136, 0); }
}

/* Stats-Row */
.mock-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 18px;
}
.mock-stat {
  background: #F8FAF9;
  border: 1px solid var(--border-soft);
  border-radius: 12px;
  padding: 12px 14px;
  display: flex; flex-direction: column; gap: 2px;
}
.mock-stat-num {
  font-size: 18px; font-weight: 800; color: var(--text);
  letter-spacing: -0.02em;
  line-height: 1.15;
}
.mock-stat-num.mock-stat-warn { color: var(--warn); }
.mock-stat-lbl {
  font-size: 10.5px; color: var(--muted);
  line-height: 1.3;
}

/* Forderungs-Liste */
.mock-claims {
  list-style: none; padding: 0; margin: 0 0 16px;
  display: flex; flex-direction: column; gap: 8px;
}
.mock-claim {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 12px;
  padding: 11px 14px;
  background: #fff;
  border: 1px solid var(--border-soft);
  border-radius: 12px;
  transition: transform .15s, box-shadow .15s;
}
.mock-claim:hover { transform: translateX(-1px); box-shadow: var(--shadow-sm); }
.mock-claim-main { min-width: 0; }
.mock-claim-main strong {
  display: block;
  font-size: 13px; font-weight: 600;
  color: var(--text);
  line-height: 1.3;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.mock-meta {
  font-size: 11px; color: var(--muted);
  display: block; margin-top: 2px;
}
.mock-amount {
  font-size: 14px; font-weight: 700; color: var(--text);
  letter-spacing: -0.01em;
  white-space: nowrap;
}

/* Status-Pills */
.mock-pill {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 4px 9px;
  border-radius: 999px;
  font-size: 10.5px; font-weight: 700;
  white-space: nowrap;
}
.mock-pill-danger  { background: #FEE4E2; color: var(--danger); }
.mock-pill-warn    { background: var(--warn-light); color: var(--warn); }
.mock-pill-ok      { background: var(--green-light); color: var(--green-2); }
.mock-pill-neutral { background: var(--border-soft); color: var(--muted); }
.mock-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: currentColor;
  opacity: 0.85;
}

/* Reply-Box */
.mock-reply {
  background: linear-gradient(135deg, #EAF3EE 0%, #F8FAF9 100%);
  border: 1px solid rgba(109, 156, 136, 0.22);
  border-radius: 14px;
  padding: 16px;
}
.mock-reply-head {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 10px;
}
.mock-reply-icon {
  width: 32px; height: 32px;
  border-radius: 10px;
  background: var(--green);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 6px 16px rgba(109, 156, 136, 0.32);
}
.mock-reply-icon svg { width: 16px; height: 16px; }
.mock-reply-head strong {
  display: block; color: var(--text);
  font-size: 13.5px; font-weight: 700;
  line-height: 1.2;
}
.mock-reply-head small {
  color: var(--muted); font-size: 11.5px;
  display: block; margin-top: 2px;
}
.mock-reply-points {
  list-style: none; padding: 0; margin: 0 0 12px;
  display: flex; flex-direction: column; gap: 5px;
}
.mock-reply-points li {
  font-size: 12px; color: var(--text);
  padding-left: 18px;
  position: relative;
  line-height: 1.4;
}
.mock-reply-points li::before {
  content: '';
  position: absolute; left: 0; top: 6px;
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--green);
  opacity: 0.9;
}
.mock-reply-btn {
  display: block; width: 100%;
  padding: 10px 16px;
  background: var(--navy);
  color: #fff;
  border: none;
  border-radius: 10px;
  font-size: 12.5px; font-weight: 700;
  font-family: inherit;
  cursor: default;
  text-align: center;
}

/* Hero-spezifische Anpassungen für Mockup-Position */
.hero-illust { position: relative; height: 100%; padding: 0; }

/* Tablet/Mobile */
@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero-left { max-width: 100%; }
  .mock-dashboard { max-width: 100%; margin: 0 auto; }
}
@media (max-width: 540px) {
  .mock-body { padding: 18px; }
  .mock-stats { gap: 6px; }
  .mock-stat { padding: 10px 11px; }
  .mock-stat-num { font-size: 16px; }
  .mock-stat-lbl { font-size: 10px; }
  .mock-claim { grid-template-columns: 1fr auto; padding: 10px 12px; }
  .mock-claim .mock-pill {
    grid-column: 1 / -1;
    justify-self: start;
  }
  .mock-amount { font-size: 13px; }
  .trust-row { gap: 6px 14px; }
  .trust-row li { font-size: 12px; }
}
