/* ============================================================
   PRISAVO Messe / Mobile-First Sales-Funnel Style
   ============================================================ */

* { box-sizing: border-box; }

:root {
  --bg-base: #0B1A2B;
  --bg-elevated: #122C3F;
  --bg-surface: #143A52;
  --bg-highlight: #1B4B67;
  --sky: #42C9FF;
  --coral: #FF6B6B;
  --copper: #B87333;
  --text-primary: #EAF7F6;
  --text-strong: #F7F9FA;
  --text-muted: rgba(234, 247, 246, 0.78);
  --text-faint: rgba(234, 247, 246, 0.58);
  --border: rgba(66, 201, 255, 0.18);
  --border-soft: rgba(66, 201, 255, 0.12);
  --shadow-card: 0 10px 40px rgba(0, 0, 0, 0.4);
  --shadow-elevated: 0 20px 60px rgba(0, 0, 0, 0.5);
  --r-sm: 6px;
  --r-md: 12px;
  --r-lg: 20px;
  --r-xl: 28px;
  --r-pill: 999px;
  --dur-fast: 120ms;
  --dur-base: 240ms;
  --dur-slow: 480ms;
  --ease: cubic-bezier(0.2, 0.7, 0.2, 1);
}

html {
  -webkit-tap-highlight-color: transparent;
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
  font-size: 16px;
  line-height: 1.55;
  color: var(--text-primary);
  background: var(--bg-base);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  min-height: 100vh;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }

a {
  color: var(--sky);
  text-decoration: none;
  transition: color var(--dur-fast) var(--ease);
}
a:hover, a:focus-visible {
  color: color-mix(in srgb, var(--sky) 80%, white);
  text-decoration: underline;
  text-underline-offset: 3px;
}
/* Links innerhalb von Fließtext bekommen dezentere Markierung */
p a, li a, .field-checkbox a {
  text-decoration: underline;
  text-decoration-color: rgba(66, 201, 255, 0.4);
  text-underline-offset: 3px;
}
p a:hover, li a:hover, .field-checkbox a:hover {
  text-decoration-color: var(--sky);
}

/* ============================================================
   ANIMIERTER ORBIT-BACKGROUND
   ============================================================ */
.bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}
.bg__orbit {
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: 50%;
  border: 1px solid;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}
.bg__orbit--1 {
  width: 110vmax;
  height: 110vmax;
  border-color: rgba(66, 201, 255, 0.08);
  transform: translate(-50%, -50%) rotate(-12deg);
  animation: bg-spin-cw 180s linear infinite;
}
.bg__orbit--2 {
  width: 75vmax;
  height: 75vmax;
  border-color: rgba(66, 201, 255, 0.12);
  transform: translate(-50%, -50%) rotate(8deg);
  animation: bg-spin-ccw 140s linear infinite;
}
.bg__orbit--3 {
  width: 45vmax;
  height: 45vmax;
  border-color: rgba(184, 115, 51, 0.10);
  transform: translate(-50%, -50%) rotate(20deg);
  animation: bg-spin-cw 220s linear infinite;
}
@keyframes bg-spin-cw {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to   { transform: translate(-50%, -50%) rotate(360deg); }
}
@keyframes bg-spin-ccw {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to   { transform: translate(-50%, -50%) rotate(-360deg); }
}
.bg__stars {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(1.5px 1.5px at 15% 22%, rgba(66, 201, 255, 0.5), transparent 50%),
    radial-gradient(1px 1px at 78% 14%, rgba(255, 255, 255, 0.4), transparent 50%),
    radial-gradient(1.5px 1.5px at 42% 65%, rgba(66, 201, 255, 0.3), transparent 50%),
    radial-gradient(1px 1px at 88% 58%, rgba(255, 255, 255, 0.4), transparent 50%),
    radial-gradient(2px 2px at 25% 88%, rgba(66, 201, 255, 0.4), transparent 50%),
    radial-gradient(1px 1px at 60% 33%, rgba(184, 115, 51, 0.3), transparent 50%),
    radial-gradient(1px 1px at 8% 70%, rgba(66, 201, 255, 0.4), transparent 50%),
    radial-gradient(1.5px 1.5px at 95% 80%, rgba(66, 201, 255, 0.3), transparent 50%);
  background-size: 100% 100%;
  background-repeat: no-repeat;
  animation: bg-twinkle 8s ease-in-out infinite;
}
@keyframes bg-twinkle {
  0%, 100% { opacity: 0.6; }
  50%      { opacity: 1; }
}
.bg::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 80vmax;
  height: 80vmax;
  background: radial-gradient(circle, rgba(66, 201, 255, 0.04), transparent 60%);
  transform: translate(-50%, -50%);
  pointer-events: none;
}
@media (max-width: 768px), (prefers-reduced-motion: reduce) {
  .bg__orbit { animation: none !important; }
  .bg__stars { animation: none !important; }
}

/* ============================================================
   LAYOUT
   ============================================================ */
.page {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding-inline: 20px;
}

/* ============================================================
   HEADER
   ============================================================ */
.header {
  padding: 20px 0;
  position: relative;
  z-index: 10;
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--text-strong);
}
.brand__mark {
  width: 38px;
  height: 38px;
  border-radius: var(--r-sm);
}
.brand__name {
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.06em;
}
.header__back {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border-radius: var(--r-pill);
  border: 1px solid var(--border-soft);
  transition: all var(--dur-fast) var(--ease);
  background: rgba(255, 255, 255, 0.02);
}
.header__back:hover, .header__back:focus {
  color: var(--sky);
  border-color: var(--sky);
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  padding: 24px 0 32px;
  text-align: center;
}
.hero__eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sky);
  font-weight: 700;
  margin-bottom: 14px;
}
.hero__title {
  font-size: clamp(2rem, 7vw, 3.4rem);
  line-height: 1.05;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 0 0 16px;
  color: var(--text-strong);
}
.hero__title .gradient {
  color: inherit;
}
.hero__sub {
  font-size: clamp(1rem, 2.5vw, 1.15rem);
  color: var(--text-muted);
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.55;
}

/* ============================================================
   CARDS GRID
   ============================================================ */
.cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  padding: 16px 0 48px;
}
@media (min-width: 640px) {
  .cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}
@media (min-width: 1024px) {
  .cards {
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
  }
}

.card {
  position: relative;
  background: var(--bg-elevated);
  border: 1px solid var(--border-soft);
  border-radius: var(--r-lg);
  padding: 26px 22px 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  text-decoration: none;
  color: inherit;
  min-height: 220px;
  overflow: hidden;
  transition: transform var(--dur-base) var(--ease), border-color var(--dur-base) var(--ease), box-shadow var(--dur-base) var(--ease);
  cursor: pointer;
}
.card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 50%, rgba(66, 201, 255, 0.05));
  opacity: 0;
  transition: opacity var(--dur-base) var(--ease);
  pointer-events: none;
}
.card:hover, .card:focus-visible {
  transform: translateY(-4px);
  border-color: var(--sky);
  box-shadow: var(--shadow-card);
}
.card:hover::before, .card:focus-visible::before { opacity: 1; }
.card:active { transform: translateY(-1px); }

.card__icon {
  width: 48px;
  height: 48px;
  border-radius: var(--r-md);
  background: linear-gradient(135deg, rgba(66, 201, 255, 0.15), rgba(66, 201, 255, 0.05));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--sky);
}
.card__icon svg { width: 24px; height: 24px; }

.card__badge {
  position: absolute;
  top: 18px;
  right: 18px;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--copper);
  padding: 4px 10px;
  border-radius: var(--r-pill);
  background: rgba(184, 115, 51, 0.12);
  border: 1px solid rgba(184, 115, 51, 0.3);
}

.card__title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-strong);
  margin: 0;
  line-height: 1.25;
}
.card__desc {
  font-size: 0.92rem;
  color: var(--text-muted);
  margin: 0;
  flex: 1;
  line-height: 1.5;
}
.card__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--sky);
  font-weight: 600;
  font-size: 0.92rem;
  margin-top: auto;
  transition: gap var(--dur-base) var(--ease);
}
.card__cta svg { width: 14px; height: 14px; }
.card:hover .card__cta { gap: 14px; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 22px;
  border-radius: var(--r-pill);
  font-weight: 600;
  font-size: 0.95rem;
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: all var(--dur-base) var(--ease);
  min-height: 48px;
  font-family: inherit;
}
.btn--primary {
  background: var(--sky);
  color: var(--bg-base);
}
.btn--primary:hover {
  background: color-mix(in srgb, var(--sky) 88%, white);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(66, 201, 255, 0.35);
}
.btn--ghost {
  background: transparent;
  border-color: var(--border);
  color: var(--text-primary);
}
.btn--ghost:hover {
  border-color: var(--sky);
  color: var(--sky);
}
.btn--block {
  width: 100%;
}
.btn--lg {
  padding: 16px 28px;
  font-size: 1rem;
  min-height: 56px;
}
.btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none !important;
}
.btn svg { width: 16px; height: 16px; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  margin-top: auto;
  padding: 32px 0 24px;
  border-top: 1px solid var(--border-soft);
  font-size: 0.82rem;
  color: var(--text-faint);
}
.footer__inner {
  display: flex;
  flex-direction: column;
  gap: 16px;
  text-align: center;
}
@media (min-width: 640px) {
  .footer__inner {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}
.footer__legal {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}
.footer__legal a {
  color: var(--text-faint);
  text-decoration: none;
  transition: color var(--dur-fast) var(--ease);
}
.footer__legal a:hover { color: var(--sky); }

/* ============================================================
   QUIZ (KI-Readiness)
   ============================================================ */
.quiz {
  max-width: 680px;
  margin: 0 auto;
  padding: 24px 0 48px;
}
.progress {
  margin-bottom: 32px;
}
.progress__bar {
  height: 6px;
  background: var(--bg-elevated);
  border-radius: var(--r-pill);
  overflow: hidden;
  border: 1px solid var(--border-soft);
}
.progress__fill {
  height: 100%;
  background: linear-gradient(90deg, var(--sky), var(--copper));
  border-radius: var(--r-pill);
  transition: width var(--dur-slow) var(--ease);
  width: 0%;
}
.progress__label {
  margin-top: 10px;
  font-size: 0.82rem;
  color: var(--text-faint);
  display: flex;
  justify-content: space-between;
  letter-spacing: 0.04em;
}

.question {
  background: var(--bg-elevated);
  border: 1px solid var(--border-soft);
  border-radius: var(--r-lg);
  padding: 28px 24px;
  animation: fade-in 0.35s var(--ease);
}
@keyframes fade-in {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}
.question__number {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sky);
  font-weight: 700;
  margin-bottom: 10px;
}
.question__title {
  font-size: clamp(1.3rem, 4vw, 1.6rem);
  font-weight: 700;
  color: var(--text-strong);
  margin: 0 0 8px;
  line-height: 1.3;
}
.question__hint {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin: 0 0 24px;
}
.options {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.option {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  border: 1px solid var(--border-soft);
  border-radius: var(--r-md);
  background: var(--bg-surface);
  cursor: pointer;
  transition: all var(--dur-fast) var(--ease);
  font-size: 0.95rem;
  color: var(--text-primary);
  text-align: left;
  font-family: inherit;
  width: 100%;
}
.option:hover {
  border-color: var(--sky);
  background: var(--bg-highlight);
}
.option__indicator {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid var(--border);
  flex-shrink: 0;
  position: relative;
  transition: all var(--dur-fast) var(--ease);
}
.option--multi .option__indicator {
  border-radius: 5px;
}
.option.is-selected {
  border-color: var(--sky);
  background: rgba(66, 201, 255, 0.08);
}
.option.is-selected .option__indicator {
  background: var(--sky);
  border-color: var(--sky);
}
.option.is-selected .option__indicator::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 8px;
  height: 8px;
  background: var(--bg-base);
  border-radius: 50%;
}
.option--multi.is-selected .option__indicator::after {
  width: 10px;
  height: 6px;
  border-radius: 0;
  background: transparent;
  border-left: 2px solid var(--bg-base);
  border-bottom: 2px solid var(--bg-base);
  transform: translate(-50%, -65%) rotate(-45deg);
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-top: 24px;
}
.nav .btn { flex: 1; }
@media (min-width: 640px) {
  .nav .btn { flex: 0 1 auto; min-width: 140px; }
}

/* ============================================================
   ERGEBNIS
   ============================================================ */
.result {
  max-width: 720px;
  margin: 0 auto;
  padding: 24px 0 48px;
  animation: fade-in 0.5s var(--ease);
}
.score-ring {
  display: flex;
  justify-content: center;
  margin: 0 auto 28px;
}
.score-ring__svg {
  width: 200px;
  height: 200px;
  transform: rotate(-90deg);
}
.score-ring__track {
  fill: none;
  stroke: var(--bg-elevated);
  stroke-width: 14;
}
.score-ring__fill {
  fill: none;
  stroke: url(#scoreGrad);
  stroke-width: 14;
  stroke-linecap: round;
  transition: stroke-dasharray 1.2s var(--ease);
}
.score-ring__inner {
  position: relative;
  margin-top: -200px;
  height: 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.score-ring__number {
  font-size: 3rem;
  font-weight: 800;
  color: var(--text-strong);
  line-height: 1;
}
.score-ring__label {
  font-size: 0.75rem;
  color: var(--text-faint);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-top: 6px;
}

.result__level {
  text-align: center;
  margin-bottom: 32px;
}
.result__level-tag {
  display: inline-block;
  padding: 6px 14px;
  border-radius: var(--r-pill);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.result__level-tag--sondierung { background: rgba(255, 107, 107, 0.15); color: var(--coral); border: 1px solid rgba(255, 107, 107, 0.3); }
.result__level-tag--pilot { background: rgba(66, 201, 255, 0.15); color: var(--sky); border: 1px solid rgba(66, 201, 255, 0.3); }
.result__level-tag--skalierung { background: rgba(184, 115, 51, 0.15); color: var(--copper); border: 1px solid rgba(184, 115, 51, 0.3); }
.result__level-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-strong);
  margin: 0 0 8px;
}
.result__level-desc {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 480px;
  margin: 0 auto;
  line-height: 1.55;
}

.recs {
  background: var(--bg-elevated);
  border: 1px solid var(--border-soft);
  border-radius: var(--r-lg);
  padding: 28px 24px;
  margin-bottom: 24px;
}
.recs__title {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sky);
  font-weight: 700;
  margin: 0 0 16px;
}
.recs__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.recs__item {
  display: flex;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border-soft);
}
.recs__item:last-child { border-bottom: none; padding-bottom: 0; }
.recs__num {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(66, 201, 255, 0.15);
  color: var(--sky);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 700;
  flex-shrink: 0;
}
.recs__content { flex: 1; }
.recs__heading {
  font-weight: 600;
  color: var(--text-strong);
  margin: 0 0 4px;
  font-size: 0.98rem;
}
.recs__text {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.5;
}

/* ============================================================
   LEAD CAPTURE FORM
   ============================================================ */
.lead {
  background: linear-gradient(135deg, var(--bg-elevated), var(--bg-highlight));
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 28px 24px;
  margin-bottom: 16px;
}
.lead__title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-strong);
  margin: 0 0 8px;
}
.lead__desc {
  font-size: 0.92rem;
  color: var(--text-muted);
  margin: 0 0 22px;
  line-height: 1.5;
}
.field {
  margin-bottom: 14px;
}
.field label {
  display: block;
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 6px;
  font-weight: 500;
}
.field input,
.field textarea {
  width: 100%;
  padding: 14px 16px;
  background: var(--bg-base);
  border: 1px solid var(--border-soft);
  border-radius: var(--r-md);
  color: var(--text-primary);
  font-size: 0.95rem;
  font-family: inherit;
  transition: all var(--dur-fast) var(--ease);
  min-height: 48px;
}
.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--sky);
  background: var(--bg-elevated);
  box-shadow: 0 0 0 3px rgba(66, 201, 255, 0.15);
}
.field--row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}
@media (min-width: 480px) {
  .field--row {
    grid-template-columns: 1fr 1fr;
  }
}
.field-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 16px;
  line-height: 1.5;
}
.field-checkbox input {
  margin-top: 3px;
  flex-shrink: 0;
}
.field-checkbox a {
  color: var(--sky);
  text-decoration: none;
}
.field-checkbox a:hover { text-decoration: underline; }

/* ============================================================
   ROI-KALKULATOR
   ============================================================ */
.roi {
  max-width: 720px;
  margin: 0 auto;
  padding: 24px 0 48px;
}
.roi__inputs {
  background: var(--bg-elevated);
  border: 1px solid var(--border-soft);
  border-radius: var(--r-lg);
  padding: 28px 24px;
  margin-bottom: 20px;
}
.roi__input-group {
  margin-bottom: 22px;
}
.roi__input-group:last-child { margin-bottom: 0; }
.roi__label {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-size: 0.9rem;
  margin-bottom: 10px;
}
.roi__label-name {
  color: var(--text-primary);
  font-weight: 500;
}
.roi__label-value {
  color: var(--sky);
  font-weight: 700;
  font-size: 1rem;
}
.roi__slider {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 6px;
  background: var(--bg-base);
  border-radius: var(--r-pill);
  outline: none;
}
.roi__slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--sky);
  cursor: pointer;
  border: 3px solid var(--bg-base);
  box-shadow: 0 2px 6px rgba(66, 201, 255, 0.4);
}
.roi__slider::-moz-range-thumb {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--sky);
  cursor: pointer;
  border: 3px solid var(--bg-base);
}
.roi__hint {
  font-size: 0.78rem;
  color: var(--text-faint);
  margin-top: 6px;
  display: flex;
  justify-content: space-between;
}

.roi__result {
  background: linear-gradient(135deg, var(--bg-elevated), var(--bg-highlight));
  border: 1px solid var(--sky);
  border-radius: var(--r-lg);
  padding: 28px 24px;
}
.roi__result-title {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sky);
  font-weight: 700;
  margin: 0 0 16px;
}
.roi__kpis {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}
@media (min-width: 480px) {
  .roi__kpis {
    grid-template-columns: repeat(3, 1fr);
  }
}
.roi__kpi {
  text-align: center;
  padding: 18px 12px;
  background: var(--bg-base);
  border-radius: var(--r-md);
  border: 1px solid var(--border-soft);
}
.roi__kpi-value {
  font-size: clamp(1.5rem, 5vw, 2rem);
  font-weight: 800;
  color: var(--sky);
  line-height: 1;
  margin-bottom: 4px;
}
.roi__kpi-label {
  font-size: 0.72rem;
  color: var(--text-faint);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ============================================================
   VISITENKARTE
   ============================================================ */
.vcard {
  max-width: 480px;
  margin: 0 auto;
  padding: 24px 0 48px;
}
.vcard__card {
  background: linear-gradient(135deg, var(--bg-elevated), var(--bg-highlight));
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 32px 24px;
  text-align: center;
  box-shadow: var(--shadow-elevated);
}
.vcard__logo {
  width: 72px;
  height: 72px;
  margin: 0 auto 18px;
  border-radius: var(--r-md);
}
.vcard__name {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--text-strong);
  margin: 0 0 4px;
  letter-spacing: 0.04em;
}
.vcard__tagline {
  font-size: 0.92rem;
  color: var(--sky);
  margin: 0 0 20px;
  font-style: italic;
}
.vcard__info {
  text-align: left;
  background: var(--bg-base);
  border: 1px solid var(--border-soft);
  border-radius: var(--r-md);
  padding: 18px;
  margin-bottom: 18px;
}
.vcard__row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 0;
  font-size: 0.95rem;
}
.vcard__row svg { width: 18px; height: 18px; color: var(--sky); flex-shrink: 0; }
.vcard__row a {
  color: var(--text-primary);
  text-decoration: none;
}
.vcard__row a:hover { color: var(--sky); }
.vcard__actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* ============================================================
   LIVE-BANNER (Messe-Event)
   ============================================================ */
.live-banner {
  background: linear-gradient(135deg, var(--copper) 0%, #d28a4e 100%);
  color: #1a0e08;
  padding: 12px 0;
  font-size: 0.92rem;
  font-weight: 600;
  position: relative;
  z-index: 5;
  animation: banner-pulse 4s ease-in-out infinite;
}
@keyframes banner-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(184, 115, 51, 0.4); }
  50% { box-shadow: 0 4px 24px 0 rgba(184, 115, 51, 0.3); }
}
.live-banner__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  text-align: center;
}
.live-banner__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #1a0e08;
  animation: dot-blink 1.4s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes dot-blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}
.live-banner__text { font-weight: 700; }
.live-banner__sep {
  opacity: 0.5;
  margin: 0 4px;
}
.live-banner__detail {
  font-weight: 500;
}
@media (prefers-reduced-motion: reduce) {
  .live-banner, .live-banner__dot { animation: none; }
}

/* ============================================================
   TRUST-STRIP
   ============================================================ */
.trust-strip {
  padding: 20px 0 8px;
}
.trust-strip__inner {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}
.trust-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  background: rgba(66, 201, 255, 0.08);
  border: 1px solid var(--border-soft);
  border-radius: var(--r-pill);
  font-size: 0.82rem;
  color: var(--text-primary);
  font-weight: 500;
  white-space: nowrap;
}
.trust-pill__check {
  width: 14px;
  height: 14px;
  color: var(--sky);
  flex-shrink: 0;
}
@media (max-width: 640px) {
  .trust-pill { font-size: 0.78rem; padding: 6px 12px; }
}

/* ============================================================
   SECTION (Demos, Downloads)
   ============================================================ */
.section {
  padding: 32px 0 16px;
}
.section__head {
  text-align: center;
  margin-bottom: 24px;
}
.section__eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sky);
  font-weight: 700;
  margin-bottom: 10px;
}
.section__title {
  font-size: clamp(1.4rem, 4vw, 1.85rem);
  font-weight: 700;
  color: var(--text-strong);
  margin: 0;
  line-height: 1.25;
}
.section__sub {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin: 10px auto 0;
  max-width: 520px;
}

/* ============================================================
   DEMO-GALERIE (3 Videos)
   ============================================================ */
.demos {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 640px) {
  .demos { grid-template-columns: repeat(3, 1fr); }
}
.demo {
  background: var(--bg-elevated);
  border: 1px solid var(--border-soft);
  border-radius: var(--r-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color var(--dur-base) var(--ease), transform var(--dur-base) var(--ease);
}
.demo:hover {
  border-color: var(--sky);
  transform: translateY(-3px);
}
.demo__media {
  aspect-ratio: 16 / 9;
  background: var(--bg-base);
  position: relative;
  overflow: hidden;
}
.demo__media video,
.demo__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.demo__placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--bg-surface), var(--bg-highlight));
  color: var(--text-faint);
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  text-align: center;
  padding: 16px;
}
.demo__play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(66, 201, 255, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}
.demo__play svg { width: 22px; height: 22px; color: var(--bg-base); margin-left: 3px; }
.demo__body {
  padding: 16px 18px 18px;
}
.demo__title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-strong);
  margin: 0 0 6px;
}
.demo__desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.5;
}

/* ============================================================
   AMPEL-OPTIONEN (Souveränitäts-Check, AVV-Check)
   ============================================================ */
.option--rated {
  position: relative;
  padding-left: 48px;
}
.option--rated .option__indicator {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
}
.option--rated.is-rated-green::before,
.option--rated.is-rated-yellow::before,
.option--rated.is-rated-red::before {
  content: '';
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.option--rated.is-rated-green::before  { background: #4ADE80; box-shadow: 0 0 8px rgba(74, 222, 128, 0.4); }
.option--rated.is-rated-yellow::before { background: #FACC15; box-shadow: 0 0 8px rgba(250, 204, 21, 0.4); }
.option--rated.is-rated-red::before    { background: #F87171; box-shadow: 0 0 8px rgba(248, 113, 113, 0.4); }

/* ============================================================
   TOOL-RESULT: Ampel-Visualisierung
   ============================================================ */
.tool-result {
  max-width: 720px;
  margin: 0 auto;
  padding: 24px 0 48px;
  animation: fade-in 0.5s var(--ease);
}
.verdict {
  text-align: center;
  padding: 32px 24px;
  border-radius: var(--r-xl);
  margin-bottom: 24px;
  border: 1px solid var(--border);
  background: linear-gradient(135deg, var(--bg-elevated), var(--bg-highlight));
}
.verdict--green {
  border-color: #4ADE80;
  background: linear-gradient(135deg, rgba(74, 222, 128, 0.08), rgba(74, 222, 128, 0.02));
}
.verdict--yellow {
  border-color: #FACC15;
  background: linear-gradient(135deg, rgba(250, 204, 21, 0.08), rgba(250, 204, 21, 0.02));
}
.verdict--red {
  border-color: #F87171;
  background: linear-gradient(135deg, rgba(248, 113, 113, 0.08), rgba(248, 113, 113, 0.02));
}
.verdict__score {
  display: inline-flex;
  align-items: baseline;
  gap: 10px;
  font-size: clamp(2.6rem, 9vw, 4rem);
  font-weight: 800;
  line-height: 1;
  color: var(--text-strong);
}
.verdict__score-pct {
  font-size: clamp(0.95rem, 3vw, 1.3rem);
  font-weight: 600;
  opacity: 0.65;
  letter-spacing: 0.02em;
}
.verdict__tag {
  display: inline-block;
  padding: 6px 14px;
  border-radius: var(--r-pill);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin: 16px 0 10px;
}
.verdict--green .verdict__tag  { background: rgba(74, 222, 128, 0.15);  color: #4ADE80; border: 1px solid rgba(74, 222, 128, 0.3); }
.verdict--yellow .verdict__tag { background: rgba(250, 204, 21, 0.15);  color: #FACC15; border: 1px solid rgba(250, 204, 21, 0.3); }
.verdict--red .verdict__tag    { background: rgba(248, 113, 113, 0.15); color: #F87171; border: 1px solid rgba(248, 113, 113, 0.3); }
.verdict__title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-strong);
  margin: 0 0 10px;
}
.verdict__desc {
  font-size: 0.98rem;
  color: var(--text-muted);
  max-width: 480px;
  margin: 0 auto;
  line-height: 1.6;
}

.verdict__bar {
  display: flex;
  gap: 4px;
  margin: 20px 0 4px;
  height: 8px;
  border-radius: var(--r-pill);
  overflow: hidden;
}
.verdict__bar-segment {
  flex: 1;
  background: var(--bg-base);
  border-radius: 2px;
  transition: background var(--dur-base) var(--ease);
}
.verdict__bar-segment.is-green  { background: #4ADE80; }
.verdict__bar-segment.is-yellow { background: #FACC15; }
.verdict__bar-segment.is-red    { background: #F87171; }
.verdict__bar-legend {
  display: flex;
  justify-content: space-between;
  font-size: 0.72rem;
  color: var(--text-faint);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* Frage-für-Frage-Auswertung */
.q-breakdown {
  background: var(--bg-elevated);
  border: 1px solid var(--border-soft);
  border-radius: var(--r-lg);
  padding: 24px;
  margin-bottom: 24px;
}
.q-breakdown__title {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sky);
  font-weight: 700;
  margin: 0 0 16px;
}
.q-item {
  display: flex;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border-soft);
  align-items: flex-start;
}
.q-item:last-child { border-bottom: none; padding-bottom: 0; }
.q-item__dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 5px;
}
.q-item__dot.is-green  { background: #4ADE80; box-shadow: 0 0 8px rgba(74, 222, 128, 0.4); }
.q-item__dot.is-yellow { background: #FACC15; box-shadow: 0 0 8px rgba(250, 204, 21, 0.4); }
.q-item__dot.is-red    { background: #F87171; box-shadow: 0 0 8px rgba(248, 113, 113, 0.4); }
.q-item__content { flex: 1; min-width: 0; }
.q-item__q {
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--text-strong);
  margin: 0 0 3px;
  line-height: 1.4;
}
.q-item__a {
  font-size: 0.84rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.45;
}

/* Findings / Empfehlungen */
.findings {
  background: var(--bg-elevated);
  border: 1px solid var(--border-soft);
  border-radius: var(--r-lg);
  padding: 24px;
  margin-bottom: 24px;
}
.findings__title {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sky);
  font-weight: 700;
  margin: 0 0 14px;
}
.finding {
  padding: 14px 0;
  border-bottom: 1px solid var(--border-soft);
}
.finding:last-child { border-bottom: none; padding-bottom: 0; }
.finding__head {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 6px;
}
.finding__icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-weight: 700;
  font-size: 0.7rem;
}
.finding__icon.is-warn   { background: rgba(248, 113, 113, 0.15); color: #F87171; border: 1px solid rgba(248, 113, 113, 0.4); }
.finding__icon.is-attn   { background: rgba(250, 204, 21, 0.15);  color: #FACC15; border: 1px solid rgba(250, 204, 21, 0.4); }
.finding__icon.is-good   { background: rgba(74, 222, 128, 0.15);  color: #4ADE80; border: 1px solid rgba(74, 222, 128, 0.4); }
.finding__title {
  font-weight: 600;
  font-size: 0.94rem;
  color: var(--text-strong);
  margin: 0;
}
.finding__desc {
  font-size: 0.86rem;
  color: var(--text-muted);
  margin: 0 0 0 32px;
  line-height: 1.5;
}

/* "So lösen wir das"-Box (dezent PRISAVO) */
.prisavo-note {
  background: linear-gradient(135deg, rgba(66, 201, 255, 0.05), rgba(184, 115, 51, 0.03));
  border: 1px solid var(--border-soft);
  border-left: 3px solid var(--sky);
  border-radius: var(--r-md);
  padding: 18px 20px;
  margin: 14px 0 6px 32px;
}
.prisavo-note__label {
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sky);
  font-weight: 700;
  margin-bottom: 6px;
}
.prisavo-note__text {
  font-size: 0.86rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.55;
}
@media (max-width: 480px) {
  .finding__desc { margin-left: 0; margin-top: 4px; }
  .prisavo-note { margin-left: 0; }
}
.magnets {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 640px) {
  .magnets { grid-template-columns: repeat(3, 1fr); }
}
.magnet {
  background: var(--bg-elevated);
  border: 1px solid var(--border-soft);
  border-radius: var(--r-lg);
  padding: 22px 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: border-color var(--dur-base) var(--ease), transform var(--dur-base) var(--ease);
}
.magnet:hover {
  border-color: var(--sky);
  transform: translateY(-3px);
}
.magnet__icon {
  width: 44px;
  height: 44px;
  border-radius: var(--r-md);
  background: linear-gradient(135deg, rgba(184, 115, 51, 0.18), rgba(184, 115, 51, 0.05));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--copper);
}
.magnet__icon svg { width: 22px; height: 22px; }
.magnet__title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-strong);
  margin: 0;
  line-height: 1.3;
}
.magnet__desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin: 0;
  flex: 1;
  line-height: 1.5;
}
.magnet__meta {
  display: flex;
  gap: 10px;
  font-size: 0.72rem;
  color: var(--text-faint);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.magnet__meta span { display: inline-flex; align-items: center; gap: 4px; }
.magnet .btn { margin-top: auto; }
.feedback {
  padding: 12px 16px;
  border-radius: var(--r-md);
  margin-top: 14px;
  font-size: 0.88rem;
  text-align: center;
}
.feedback--success {
  background: rgba(66, 201, 255, 0.12);
  border: 1px solid var(--sky);
  color: var(--sky);
}
.hidden { display: none !important; }

.subtle-link {
  color: var(--text-muted);
  font-size: 0.82rem;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.subtle-link:hover { color: var(--sky); }

/* ============================================================
   MOBILE-OPTIMIERUNGEN (≤ 640px)
   ============================================================ */
@media (max-width: 640px) {
  .container { padding-inline: 16px; }

  /* Header */
  .header { padding: 14px 0; }
  .brand__mark { width: 32px; height: 32px; }
  .brand__name { font-size: 0.95rem; }
  .header__back { padding: 6px 12px; font-size: 0.8rem; }

  /* Hero */
  .hero { padding: 16px 0 24px; }
  .hero__eyebrow { font-size: 0.68rem; }

  /* Trust-Strip */
  .trust-strip { padding: 12px 0 4px; }

  /* Sections */
  .section { padding: 24px 0 12px; }
  .section__head { margin-bottom: 18px; }
  .section__title { font-size: 1.3rem; }
  .section__sub { font-size: 0.88rem; }

  /* Cards */
  .card { padding: 22px 18px 18px; min-height: auto; }
  .card__title { font-size: 1.1rem; }
  .card__desc { font-size: 0.88rem; }
  .magnet { padding: 20px 18px; }
  .magnet__title { font-size: 1rem; }

  /* Quiz */
  .quiz { padding: 16px 0 32px; }
  .question { padding: 22px 18px; }
  .question__title { font-size: 1.2rem; line-height: 1.3; }
  .question__hint { font-size: 0.85rem; }
  .options { gap: 8px; }
  .option { padding: 14px 16px; font-size: 0.92rem; }
  .option--rated { padding-left: 42px; }
  .option--rated .option__indicator { left: 12px; }
  .option--rated.is-rated-green::before,
  .option--rated.is-rated-yellow::before,
  .option--rated.is-rated-red::before { right: 12px; width: 8px; height: 8px; }

  /* Quiz-Nav */
  .nav { gap: 8px; margin-top: 18px; }
  .nav .btn { padding: 12px 14px; font-size: 0.9rem; min-height: 46px; }

  /* Progress */
  .progress { margin-bottom: 22px; }
  .progress__label { font-size: 0.76rem; }

  /* Verdict */
  .verdict { padding: 28px 20px; }
  .verdict__title { font-size: 1.3rem; }
  .verdict__desc { font-size: 0.92rem; }
  .verdict__tag { font-size: 0.66rem; padding: 5px 12px; }
  .verdict__bar { gap: 3px; height: 7px; margin: 18px 0 4px; }
  .verdict__bar-legend { font-size: 0.66rem; }

  /* Frage-Breakdown / Findings */
  .q-breakdown,
  .findings,
  .recs { padding: 20px 18px; }
  .q-item { gap: 10px; padding: 10px 0; }
  .q-item__q { font-size: 0.88rem; }
  .q-item__a { font-size: 0.8rem; }

  .finding { padding: 12px 0; }
  .finding__title { font-size: 0.9rem; }
  .finding__desc { margin-left: 0; margin-top: 6px; font-size: 0.83rem; }
  .prisavo-note { margin-left: 0; padding: 14px 16px; }
  .prisavo-note__text { font-size: 0.82rem; }

  /* Lead-Box */
  .lead { padding: 22px 18px; }
  .lead__title { font-size: 1.1rem; }
  .lead__desc { font-size: 0.88rem; }
  .field input,
  .field textarea { padding: 12px 14px; font-size: 0.95rem; min-height: 46px; }

  /* Buttons */
  .btn { padding: 12px 18px; min-height: 46px; }
  .btn--lg { padding: 14px 22px; min-height: 52px; font-size: 0.95rem; }

  /* ROI-Kalkulator */
  .roi { padding: 16px 0 32px; }
  .roi__inputs { padding: 22px 18px; }
  .roi__result { padding: 22px 18px; }
  .roi__kpi { padding: 14px 8px; }
  .roi__kpi-value { font-size: 1.5rem; }

  /* vCard */
  .vcard { padding: 16px 0 32px; }
  .vcard__card { padding: 26px 20px; }
  .vcard__name { font-size: 1.5rem; }
  .vcard__info { padding: 14px; }
  .vcard__row { font-size: 0.9rem; }

  /* Cards-Grid auf Mobile single-column mit weniger Gap */
  .cards { gap: 14px; }
  .magnets { gap: 14px; }

  /* Live-Banner */
  .live-banner { padding: 10px 0; font-size: 0.82rem; }
  .live-banner__inner { gap: 8px; }
  .live-banner__sep { display: none; }
}

/* Sehr kleine Screens (iPhone SE etc.) */
@media (max-width: 380px) {
  .container { padding-inline: 14px; }
  .hero__title { font-size: 1.7rem; line-height: 1.1; }
  .trust-pill { font-size: 0.74rem; padding: 5px 10px; gap: 6px; }
  .nav .btn { font-size: 0.85rem; padding: 11px 12px; }
  .option { font-size: 0.88rem; padding: 12px 14px; }
  .option--rated { padding-left: 40px; }
}
