:root {
  --p1: #00a86b;
  --p2: #7ed957;
  --bg: #070a12;
  --bg2: #0b1020;
  --surface: #0e162b;
  --text: #eef2ff;
  --muted: #a8b3d6;
  --line: rgba(255, 255, 255, 0.1);
  --brand: #eb068c;
  --brand-strong: #f26768;
  --radius: 18px;
  --shadow: 0 18px 50px rgba(0, 0, 0, 0.55);
}

* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Plus Jakarta Sans", sans-serif;
  color: var(--text);
  background:
    radial-gradient(900px 520px at 18% 12%, color-mix(in srgb, var(--p1) 24%, transparent), transparent 60%),
    radial-gradient(800px 520px at 82% 14%, color-mix(in srgb, var(--p2) 20%, transparent), transparent 58%),
    radial-gradient(800px 520px at 50% 92%, color-mix(in srgb, var(--p1) 12%, transparent), transparent 60%),
    linear-gradient(180deg, var(--bg), var(--bg2));
  line-height: 1.55;
  overflow-x: hidden;
}

.container {
  width: min(1120px, 92vw);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  backdrop-filter: blur(10px);
  background: rgba(7, 10, 18, 0.6);
  border-bottom: 1px solid var(--line);
  z-index: 20;
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 74px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  text-decoration: none;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  letter-spacing: 0.1px;
  font-size: 1.6rem;
}

.brand-orbit {
  width: 42px;
  aspect-ratio: 1;
  border-radius: 999px;
  position: relative;
  background:
    radial-gradient(circle at 32% 26%, #93f4c7 2%, transparent 36%),
    conic-gradient(from 210deg, #0b6b4a 0deg, #15b177 130deg, #78e06b 248deg, #0b6b4a 360deg);
  box-shadow: inset -6px -7px 12px rgba(4, 22, 15, 0.45);
}

.brand-orbit::after {
  content: "";
  position: absolute;
  inset: 9px;
  border-radius: 999px;
  background: rgba(5, 12, 20, 0.95);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 22px;
}

.main-nav a {
  color: var(--muted);
  text-decoration: none;
  font-weight: 600;
}

.main-nav a.btn {
  color: #0a1a10;
}

.menu-toggle {
  display: none;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  border-radius: 10px;
  padding: 8px 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--p1), var(--p2));
  color: #0a1a10;
  text-decoration: none;
  border: none;
  border-radius: 12px;
  padding: 12px 18px;
  font-weight: 700;
  transition: transform 0.2s ease, background 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
  filter: saturate(1.07);
  color: #0a1a10;
}

.btn-sm {
  padding: 10px 14px;
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  border: 1px solid var(--line);
}

.hero {
  padding: 80px 0 58px;
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 30px;
  align-items: center;
}

.kicker {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  font-weight: 800;
  font-size: 0.8rem;
}

h1, h2, h3 {
  line-height: 1.15;
  margin: 0;
  letter-spacing: -0.02em;
}

h1 {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2rem, 4vw, 3.7rem);
  margin-top: 8px;
}

.lead {
  font-size: 1.1rem;
  color: var(--muted);
  max-width: 56ch;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 24px 0 28px;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
}

.hero-tags span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
  color: var(--muted);
  border-radius: 999px;
  font-size: 0.84rem;
  padding: 6px 12px;
}

.hero-tags i {
  color: var(--p2);
  font-size: 0.95rem;
}

.hero-benefits {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.hero-benefits div {
  background: linear-gradient(180deg, rgba(14, 22, 43, 0.78), rgba(11, 19, 38, 0.72));
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 14px;
}

.hero-benefits strong {
  display: block;
  font-size: 1rem;
}

.hero-benefits span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.86rem;
}

.hero-card {
  background: linear-gradient(180deg, rgba(14, 22, 43, 0.86), rgba(11, 19, 38, 0.78));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 12px;
}

.hero-card h2 {
  font-family: "Space Grotesk", sans-serif;
  margin-bottom: 14px;
  font-size: 1.25rem;
}

.hero-graphic {
  width: 100%;
  display: block;
  border-radius: 14px;
  border: 0;
  background: transparent;
  transform: scale(1.03);
}

/* Hero-Bild ohne Rahmen, größer und rechts angeschnitten */
.hero-bleed .hero-visual {
  position: relative;
  align-self: center;
}

.hero-bleed .hero-visual::before {
  content: "";
  position: absolute;
  inset: -10% -20% -10% 0;
  background: radial-gradient(60% 55% at 55% 50%, color-mix(in srgb, var(--p1) 28%, transparent), transparent 70%);
  filter: blur(40px);
  z-index: 0;
  pointer-events: none;
}

.hero-bleed .hero-graphic {
  position: relative;
  z-index: 1;
  width: 132%;
  max-width: none;
  transform: translateX(8%);
  border-radius: 0;
  filter: drop-shadow(0 30px 40px rgba(0, 0, 0, 0.55));
}

.divider {
  height: 1px;
  background: var(--line);
}

/* Anwendungsfall-Umschalter: zwei Pills unterhalb des Hero */
.mode-toggle {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 14px;
  margin: 24px auto 8px;
}

.mode-toggle-label {
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 600;
}

.mode-toggle-pills {
  display: inline-flex;
  padding: 6px;
  gap: 6px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
}

.mode-pill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 9px 16px;
  border-radius: 999px;
  border: 0;
  background: transparent;
  color: var(--muted);
  font: inherit;
  font-weight: 600;
  font-size: 0.92rem;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.mode-pill i {
  font-size: 1.05rem;
}

.mode-pill:hover {
  color: var(--text);
}

.mode-pill.is-active {
  background: linear-gradient(135deg, var(--p1), var(--p2));
  color: #0e1e15;
}

/* Mode-Sichtbarkeit — Body-Klasse blendet jeweils die andere Variante aus */
body.is-mode-onboarding .mode-elearning,
body.is-mode-elearning .mode-onboarding {
  display: none !important;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 22px 28px;
  margin: 6px auto 30px;
  padding: 14px 18px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.03);
  color: var(--muted);
  font-size: 0.88rem;
}

.trust-row span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.trust-row i {
  color: var(--p2);
  font-size: 1rem;
}

.section {
  padding: 70px 0;
}

.section-title {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(1.6rem, 2.5vw, 2.5rem);
  margin: 8px 0 26px;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.card, .quote, .feature, .price-card {
  background: linear-gradient(180deg, rgba(14, 22, 43, 0.78), rgba(11, 19, 38, 0.72));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px;
}

.card h3, .feature h3 {
  font-family: "Space Grotesk", sans-serif;
  margin-bottom: 10px;
  font-size: 1.1rem;
  display: inline-flex;
  align-items: center;
  gap: 9px;
}

.card h3 i, .feature h3 i {
  color: var(--p2);
  font-size: 1.05em;
}

.card p, .feature p {
  margin: 0;
  color: var(--muted);
}

/* Karten mit eigenem großem Icon-Block oben */
.card-icon .card-ico {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: linear-gradient(135deg, color-mix(in srgb, var(--p1) 30%, transparent), color-mix(in srgb, var(--p2) 22%, transparent));
  border: 1px solid color-mix(in srgb, var(--p2) 35%, var(--line));
  color: var(--p2);
  font-size: 1.35rem;
  margin-bottom: 12px;
}

.card-icon h3 {
  display: block;
}

/* Feature-Karten mit Bild-/Icon-Visual oben */
.feature-img {
  padding: 0;
  overflow: hidden;
}

.feature-visual {
  position: relative;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background:
    radial-gradient(120% 120% at 20% 0%, color-mix(in srgb, var(--p1) 38%, transparent), transparent 60%),
    radial-gradient(120% 120% at 100% 100%, color-mix(in srgb, var(--p2) 28%, transparent), transparent 60%),
    linear-gradient(180deg, rgba(14, 22, 43, 0.55), rgba(11, 19, 38, 0.7));
  border-bottom: 1px solid var(--line);
}

.feature-visual::before {
  /* Dunkles Overlay, damit Branchenbild zur Brand-Optik passt und Lesbarkeit beim Badge garantiert ist */
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7, 10, 18, 0.05) 0%, rgba(7, 10, 18, 0.55) 100%),
    linear-gradient(135deg, color-mix(in srgb, var(--p1) 18%, transparent), transparent 60%);
  z-index: 2;
  pointer-events: none;
}

.feature-visual::after {
  /* Nur sichtbar, wenn kein Bild gesetzt ist (Icon-Fallback) */
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(rgba(255, 255, 255, 0.07) 1px, transparent 1px);
  background-size: 14px 14px;
  opacity: 0.6;
  pointer-events: none;
  z-index: 1;
}

.feature-visual:has(img)::after {
  display: none;
}

.feature-visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.feature-visual i {
  position: relative;
  font-size: 3.4rem;
  color: var(--text);
  text-shadow: 0 8px 24px rgba(0, 0, 0, 0.45);
  z-index: 3;
}

.feature-visual:has(img) i {
  /* Wenn Bild da ist: Icon wird zum Branche-Badge oben links */
  position: absolute;
  top: 14px;
  left: 14px;
  font-size: 1.1rem;
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: rgba(7, 10, 18, 0.7);
  border: 1px solid var(--line);
  backdrop-filter: blur(6px);
  text-shadow: none;
  color: var(--p2);
}

.feature-img h3 {
  padding: 18px 20px 0;
}

.feature-img p {
  padding: 10px 20px 20px;
}

.point-list {
  margin: 12px 0 0;
  padding-left: 18px;
  color: var(--muted);
  display: grid;
  gap: 6px;
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.demo-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.customer-switch {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
  align-items: center;
}

.switch-label {
  color: var(--muted);
  font-size: 0.86rem;
}

.switch-chip {
  padding: 6px 11px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
  font-size: 0.8rem;
  color: #d8e5dc;
}

.switch-chip.active {
  background: linear-gradient(135deg, var(--p1), var(--p2));
  color: #0e1e15;
  border-color: transparent;
  font-weight: 700;
}

.demo-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(14, 22, 43, 0.9), rgba(11, 19, 38, 0.82));
  overflow: hidden;
}

.demo-top {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 16px;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
}

.demo-top strong {
  font-size: 0.95rem;
}

.demo-top span {
  color: var(--muted);
  font-size: 0.85rem;
}

.demo-body {
  padding: 16px;
}

.light-ui {
  background: #f4f6fa;
  color: #2a3447;
}

.dark-ui {
  background: #090f1d;
  color: #d7def9;
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 12px;
}

.pill {
  border: 1px solid #cfd8ea;
  border-radius: 999px;
  padding: 5px 10px;
  font-size: 0.78rem;
  color: #4f5d76;
}

.pill.active {
  border-color: #dd8b4e;
  background: #dd8b4e;
  color: #fff;
}

.module-item {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  margin: 6px 0;
  font-size: 0.9rem;
}

.progress {
  width: 100%;
  height: 9px;
  border-radius: 999px;
  background: rgba(126, 144, 176, 0.35);
  overflow: hidden;
  margin-bottom: 10px;
}

.progress i {
  display: block;
  height: 100%;
  background: linear-gradient(135deg, #4f8dff, #66c08f);
}

.login-header {
  background: #576752;
  color: #eef4ea;
  border-radius: 10px;
  padding: 10px 12px;
  font-weight: 700;
  margin-bottom: 10px;
}

.login-box {
  background: #f9fafc;
  border: 1px solid #d6deec;
  border-radius: 12px;
  padding: 12px;
}

.login-logo {
  background: #e7ece1;
  border: 1px solid #cfd8e8;
  border-radius: 10px;
  padding: 10px;
  margin-bottom: 10px;
  font-weight: 700;
  color: #5c6f52;
}

.login-box label {
  display: block;
  font-size: 0.8rem;
  color: #68748e;
  margin: 6px 0 4px;
}

.input-mock {
  border: 1px solid #c7d2e3;
  border-radius: 9px;
  height: 38px;
  background: #fff;
}

.login-row {
  margin-top: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.84rem;
  color: #55637c;
}

.login-btn {
  padding: 7px 12px;
  background: #576752;
  color: #fff;
  border-radius: 8px;
  font-weight: 700;
}

.course-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  border: 1px solid #d3dcef;
  border-radius: 10px;
  padding: 10px;
  margin-bottom: 8px;
}

.course-row p {
  margin: 3px 0 0;
  color: #67758e;
  font-size: 0.8rem;
}

.status-chip {
  align-self: start;
  border-radius: 999px;
  padding: 6px 10px;
  background: #f2cd40;
  color: #2f2f2f;
  font-size: 0.78rem;
  font-weight: 700;
}

.course-actions {
  display: flex;
  gap: 8px;
  margin: 6px 0 10px;
}

.course-actions span {
  border: 1px solid #db8f51;
  color: #db8f51;
  border-radius: 999px;
  padding: 5px 9px;
  font-size: 0.78rem;
  font-weight: 700;
}

.mini-divider {
  height: 1px;
  background: #d3dcef;
  margin: 8px 0;
}

.unit-line {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  font-size: 0.82rem;
  border-top: 1px solid #dde3ef;
  padding: 7px 0;
}

.dark-section {
  border: 1px solid rgba(131, 153, 196, 0.24);
  border-radius: 10px;
  padding: 10px;
  margin-top: 8px;
  background: rgba(255, 255, 255, 0.02);
}

.state-pill {
  border: 1px solid rgba(242, 205, 64, 0.4);
  color: #f2cd40;
  border-radius: 999px;
  padding: 4px 9px;
  font-size: 0.76rem;
  font-weight: 700;
}

.pdf-toolbar {
  display: flex;
  justify-content: flex-end;
  gap: 14px;
  font-size: 0.82rem;
  color: #6b778f;
  margin-bottom: 8px;
}

.pdf-toolbar span {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.pdf-preview {
  border: 1px solid #cfd8e8;
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
}

.pdf-topbar {
  height: 36px;
  background: #3e3f43;
}

.pdf-page {
  padding: 14px;
  color: #242d3d;
}

.pdf-page h4 {
  margin: 0 0 8px;
  font-size: 1rem;
}

.pdf-page p {
  margin: 0 0 6px;
  font-size: 0.84rem;
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin-bottom: 12px;
}

.stats div {
  border: 1px solid rgba(131, 153, 196, 0.3);
  border-radius: 10px;
  padding: 8px;
  background: rgba(255, 255, 255, 0.02);
}

.stats small {
  display: block;
  color: #99a8d2;
  margin-bottom: 2px;
}

.stats b {
  font-size: 1.05rem;
}

.table-head, .table-row {
  display: grid;
  grid-template-columns: 1.7fr 0.6fr 0.7fr;
  gap: 10px;
}

.table-head.sessions, .table-row.sessions {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.table-head {
  color: #99a8d2;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin-bottom: 4px;
}

.table-row {
  font-size: 0.84rem;
  border-top: 1px solid rgba(131, 153, 196, 0.2);
  padding: 7px 0;
}

.check-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-size: 0.86rem;
  border-top: 1px solid rgba(131, 153, 196, 0.2);
  padding: 8px 0;
}

.survey-title {
  margin: 0 0 12px;
  font-size: 1rem;
}

.scale {
  display: grid;
  grid-template-columns: repeat(10, minmax(0, 1fr));
  gap: 6px;
}

.scale span {
  border: 1px solid #b5c1d6;
  border-radius: 8px;
  text-align: center;
  padding: 7px 0;
  font-weight: 700;
}

.scale span.active {
  background: #dd8b4e;
  color: #fff;
  border-color: #dd8b4e;
}

.note {
  margin-top: 10px;
  font-size: 0.82rem;
  color: #4f5d76;
}

/* Vergleichstabelle Abgrenzung */
.vs-wrap {
  margin-top: 18px;
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(14, 22, 43, 0.85), rgba(11, 19, 38, 0.78));
  box-shadow: var(--shadow);
}

.vs-table {
  width: 100%;
  min-width: 880px;
  border-collapse: collapse;
}

.vs-table.vs-table-2 {
  min-width: 720px;
}

.vs-table.vs-table-2 tbody th {
  width: 38%;
}

.vs-table thead th {
  text-align: left;
  padding: 20px 18px;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--text);
  border-bottom: 1px solid var(--line);
  vertical-align: top;
  background: rgba(255, 255, 255, 0.02);
}

.vs-table thead th span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.vs-table thead th span i {
  color: var(--p2);
  font-size: 1.1rem;
}

.vs-table thead th small {
  display: block;
  margin-top: 6px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 500;
  font-size: 0.78rem;
  color: var(--muted);
  letter-spacing: 0;
  text-transform: none;
}

.vs-table thead th.vs-highlight {
  background: linear-gradient(135deg, color-mix(in srgb, var(--p1) 78%, transparent), color-mix(in srgb, var(--p2) 78%, transparent));
  color: #0e1e15;
  position: relative;
}

.vs-table thead th.vs-highlight span i,
.vs-table thead th.vs-highlight small {
  color: rgba(14, 30, 21, 0.78);
}

.vs-table tbody th {
  text-align: left;
  padding: 14px 18px;
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--text);
  vertical-align: middle;
  width: 26%;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.015);
}

/* Gruppen-Header in der Vergleichstabelle */
.vs-table tbody tr.vs-group th {
  width: auto;
  padding: 18px 18px 12px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.025);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.vs-table tbody tr.vs-group th i {
  color: var(--p2);
  margin-right: 8px;
  font-size: 1rem;
  vertical-align: -2px;
}

.vs-table tbody tr.vs-group:first-child th {
  border-top: 0;
}

.vs-table tbody td {
  padding: 14px 18px;
  font-size: 0.9rem;
  color: var(--muted);
  vertical-align: middle;
  border-bottom: 1px solid var(--line);
}

.vs-table tbody td.vs-highlight {
  color: var(--text);
  background: linear-gradient(180deg, color-mix(in srgb, var(--p1) 12%, transparent), color-mix(in srgb, var(--p2) 6%, transparent));
  border-left: 1px solid color-mix(in srgb, var(--p2) 40%, transparent);
  border-right: 1px solid color-mix(in srgb, var(--p2) 40%, transparent);
}

.vs-table tbody tr:last-child td,
.vs-table tbody tr:last-child th {
  border-bottom: 0;
}

.vs-table tbody tr:last-child td.vs-highlight {
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;
}

.vs-table i.bi {
  margin-right: 6px;
  vertical-align: -2px;
}

.vs-table .bi-check-circle-fill {
  color: var(--p2);
}

.vs-table .bi-x-circle {
  color: #d8607a;
}

.vs-table .bi-dash-circle {
  color: #e2b657;
}

.vs-hint {
  margin-top: 14px;
  font-size: 0.82rem;
  color: var(--muted);
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.vs-hint i {
  color: var(--p2);
}

@media (max-width: 880px) {
  .vs-wrap {
    border-radius: 14px;
  }
  .vs-table thead th,
  .vs-table tbody th,
  .vs-table tbody td {
    padding: 12px 14px;
    font-size: 0.86rem;
  }
}

/* Mobile: Tabelle wird zu Cards, Onboardio steht in der Mitte und ist immer sichtbar */
@media (max-width: 720px) {
  .vs-wrap {
    overflow-x: visible;
    border: 0;
    background: transparent;
    box-shadow: none;
    padding: 0;
  }

  .vs-table,
  .vs-table.vs-table-2 {
    min-width: 0;
    width: 100%;
  }

  .vs-table thead {
    display: none;
  }

  .vs-table tbody,
  .vs-table tbody tr,
  .vs-table tbody th,
  .vs-table tbody td {
    display: block;
    width: auto;
  }

  /* Gruppen-Header bleibt sichtbar, volle Breite */
  .vs-table tbody tr.vs-group {
    margin: 22px 0 6px;
  }

  .vs-table tbody tr.vs-group th {
    border: 0;
    background: transparent;
    padding: 0;
    font-size: 0.72rem;
  }

  /* Jede Vergleichszeile wird zu einer Karte mit Onboardio in der Mitte */
  .vs-table tbody tr:not(.vs-group) {
    display: flex;
    flex-direction: column;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: linear-gradient(180deg, rgba(14, 22, 43, 0.78), rgba(11, 19, 38, 0.72));
    padding: 14px;
    margin-bottom: 12px;
  }

  .vs-table tbody tr:not(.vs-group) th {
    order: 1;
    padding: 0 0 10px;
    background: transparent;
    border: 0;
    font-size: 0.98rem;
    color: var(--text);
  }

  /* Onboardio-Zelle: in der Mitte, hervorgehoben */
  .vs-table tbody tr:not(.vs-group) td.vs-highlight {
    order: 2;
    padding: 12px 14px;
    margin-top: 4px;
    border-radius: 12px;
    border: 1px solid color-mix(in srgb, var(--p2) 50%, transparent);
    background: linear-gradient(180deg, color-mix(in srgb, var(--p1) 22%, transparent), color-mix(in srgb, var(--p2) 14%, transparent));
    color: var(--text);
    font-weight: 600;
  }

  /* Klassische Anbieter darunter */
  .vs-table tbody tr:not(.vs-group) td:not(.vs-highlight) {
    order: 3;
    padding: 10px 0 0;
    border: 0;
    color: var(--muted);
    font-size: 0.88rem;
  }

  /* Mini-Label vor jeder Zelle (Klassisch / Onboardio) */
  .vs-table tbody tr:not(.vs-group) td::before {
    content: attr(data-label);
    display: block;
    margin-bottom: 4px;
    font-family: "Space Grotesk", sans-serif;
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--muted);
  }

  .vs-table tbody tr:not(.vs-group) td.vs-highlight::before {
    color: var(--p2);
  }
}

.compare-card {
  margin-top: 16px;
}

.compare-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.compare-grid div {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.02);
}

.compare-grid strong {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
}

.compare-grid strong i {
  color: var(--p2);
}

.compare-grid p {
  margin: 0;
  color: var(--muted);
}

.big-overview {
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 4px);
  background: linear-gradient(180deg, rgba(14, 22, 43, 0.9), rgba(8, 15, 30, 0.86));
  padding: 20px;
  box-shadow: var(--shadow);
}

.ov-head {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: flex-start;
}

.ov-brand strong {
  display: block;
  font-size: 1.15rem;
}

.ov-brand span {
  color: var(--muted);
  font-size: 0.85rem;
}

.ov-meta {
  display: grid;
  gap: 6px;
  color: #d0d9f0;
  font-size: 0.84rem;
}

.ov-meta span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.ov-progress-wrap {
  margin-top: 14px;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.02);
}

.ov-progress-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.ov-progress-wrap p {
  margin: 4px 0 8px;
  color: var(--muted);
  font-size: 0.9rem;
}

.ov-filter {
  margin-top: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.ov-module {
  margin-top: 14px;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 12px;
}

.ov-module-head {
  display: flex;
  justify-content: space-between;
  gap: 12px;
}

.ov-module-head p {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.ov-unit-grid {
  margin-top: 14px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.ov-unit {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 11px;
  background: rgba(255, 255, 255, 0.02);
}

.ov-unit h3 {
  margin: 0 0 7px;
  font-size: 0.98rem;
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.ov-unit p {
  margin: 0;
  color: var(--muted);
  font-size: 0.83rem;
}

.quote {
  margin: 0;
  font-size: 1.05rem;
}

.quote cite {
  display: block;
  margin-top: 12px;
  font-size: 0.9rem;
  color: var(--muted);
  font-style: normal;
}

.pricing {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  align-items: center;
}

.price-card {
  min-width: 320px;
  box-shadow: var(--shadow);
}

.plan {
  font-family: "Space Grotesk", sans-serif;
  margin: 0;
}

.price {
  font-size: 2rem;
  font-weight: 800;
  margin: 10px 0;
}

.price span {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--muted);
}

.price-card ul {
  padding-left: 18px;
  color: var(--muted);
}

.site-footer {
  padding: 42px 0;
  background: rgba(5, 8, 16, 0.75);
  color: #e9f0e6;
  border-top: 1px solid var(--line);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.footer-inner h2 {
  margin-bottom: 8px;
}

.footer-inner p {
  margin: 0;
  color: #b8c7b4;
}

.legal-links {
  margin-top: 14px !important;
  display: flex;
  gap: 14px;
}

.legal-links a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #dce8df;
  text-decoration: none;
  border-bottom: 1px solid rgba(220, 232, 223, 0.4);
}

.legal-links a:hover {
  color: #fff;
  border-bottom-color: rgba(255, 255, 255, 0.7);
}

.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 960px) {
  .hero {
    grid-template-columns: 1fr;
  }

  .hero-bleed .hero-graphic {
    width: 100%;
    transform: none;
    filter: drop-shadow(0 18px 28px rgba(0, 0, 0, 0.5));
  }

  .hero-bleed .hero-visual::before {
    inset: -10% -10% -10% -10%;
  }

  .grid-3, .feature-list, .pricing, .demo-grid {
    grid-template-columns: 1fr;
  }

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

  .ov-unit-grid {
    grid-template-columns: 1fr 1fr;
  }

  .price-card {
    min-width: 0;
  }
}

@media (max-width: 760px) {
  .menu-toggle {
    display: inline-block;
  }

  .trust-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .mode-toggle {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }

  .mode-toggle-pills {
    flex-direction: column;
    border-radius: 14px;
  }

  .mode-pill {
    justify-content: flex-start;
  }

  .main-nav {
    position: absolute;
    right: 4vw;
    top: 70px;
    width: min(320px, 92vw);
    background: linear-gradient(180deg, rgba(14, 22, 43, 0.96), rgba(11, 19, 38, 0.9));
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 14px;
    display: none;
    flex-direction: column;
    align-items: flex-start;
  }

  .main-nav.is-open {
    display: flex;
  }

  .hero-benefits, .grid-2 {
    grid-template-columns: 1fr;
  }

  .table-head, .table-row {
    grid-template-columns: 1fr;
  }

  .table-head.sessions, .table-row.sessions {
    grid-template-columns: 1fr;
  }

  .scale {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .ov-head,
  .ov-module-head {
    flex-direction: column;
  }

  .ov-unit-grid {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}
