/* ── Scroll Animation Engine ──────────────────────────────────── */
.lp-anim {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s cubic-bezier(.16,1,.3,1), transform .6s cubic-bezier(.16,1,.3,1);
}
.lp-anim.lp-in { opacity: 1; transform: translateY(0); }

.lp-anim-left {
  opacity: 0;
  transform: translateX(-20px);
  transition: opacity .6s cubic-bezier(.16,1,.3,1), transform .6s cubic-bezier(.16,1,.3,1);
}
.lp-anim-left.lp-in { opacity: 1; transform: translateX(0); }

.lp-anim-right {
  opacity: 0;
  transform: translateX(20px);
  transition: opacity .6s cubic-bezier(.16,1,.3,1), transform .6s cubic-bezier(.16,1,.3,1);
}
.lp-anim-right.lp-in { opacity: 1; transform: translateX(0); }

/* ── HERO ─────────────────────────────────────────────────────── */
.lp-hero {
  background: #0a0f1e;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 100px 24px 80px;
  position: relative;
  overflow: hidden;
}

.lp-hero::before {
  content: '';
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 75% 65% at 92% 8%,  rgba(59,130,246,.18)  0%, transparent 55%),
    radial-gradient(ellipse 55% 45% at 8%  88%,  rgba(30,64,175,.20)   0%, transparent 52%),
    radial-gradient(ellipse 40% 35% at 50% 50%,  rgba(96,165,250,.07)  0%, transparent 60%);
}

.lp-hero::after {
  content: '';
  position: absolute; inset: 0; pointer-events: none;
  background-image: radial-gradient(circle, rgba(96,165,250,.14) 1px, transparent 1px);
  background-size: 28px 28px;
  animation: lp-dot-drift 40s linear infinite;
}

.lp-hero-inner {
  max-width: var(--lp-max-w);
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
  padding-top: 40px;
  position: relative;
  z-index: 2;
}

@media(max-width: 900px) {
  .lp-hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .lp-hero {
    padding: 80px 20px 60px;
    min-height: auto;
    touch-action: pan-y;   /* nur vertikales Scrollen erlauben */
    overflow-x: hidden;
  }
  /* Alle Endlos-Animationen auf Mobile deaktivieren → verhindert konstante Repaints beim Scrollen */
  .lp-hero::after,
  .lp-float-a, .lp-float-b, .lp-float-c,
  .lp-hero-depth { animation: none; transform: none; }
}

.lp-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(96,165,250,.12);
  border: 1px solid rgba(96,165,250,.30);
  color: #93c5fd;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 6px 14px;
  margin-bottom: 24px;
  animation: lp-fade-up .5s ease both;
}

.lp-badge-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #60a5fa;
  animation: lp-pulse 2s infinite;
}

.lp-hero-h1 {
  font-size: clamp(38px, 5.5vw, 66px);
  font-weight: 900;
  line-height: 1.04;
  letter-spacing: -.6px;
  color: #ffffff;
  margin: 0 0 20px;
  animation: lp-fade-up .55s ease both .08s;
}

.lp-hero-h2-accent {
  display: block;
  color: #60a5fa;
}

.lp-hero-p {
  font-size: 17px;
  color: rgba(255,255,255,.68);
  line-height: 1.72;
  margin: 0 0 36px;
  max-width: 460px;
  animation: lp-fade-up .55s ease both .16s;
}

.lp-hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 32px;
  animation: lp-fade-up .55s ease both .24s;
}

.lp-hero-trust {
  font-size: 13px;
  color: rgba(255,255,255,0.75);
  margin-top: 12px;
  animation: lp-fade-up .55s ease both .32s;
}

.lp-trust-item {
  font-size: 12px;
  color: rgba(255,255,255,.45);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 5px;
}

.lp-trust-dot {
  width: 3px; height: 3px;
  border-radius: 50%;
  background: rgba(255,255,255,.20);
}

/* ── Hero Visual ──────────────────────────────────────────────── */
.lp-hero-visual {
  position: relative;
  animation: lp-fade-right .65s ease both .1s;
}

.lp-float-chip {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 9px;
  background: var(--lp-white);
  border: 1px solid var(--lp-gray-300);
  border-radius: 12px;
  padding: 10px 14px;
  box-shadow: var(--lp-shadow-md);
  pointer-events: none;
  z-index: 10;
  white-space: nowrap;
  font-size: 12px;
}

.lp-fc-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}
.lp-fc-dot.green  { background: #22c55e; }
.lp-fc-dot.yellow { background: #eab308; }

.lp-fc-title { font-size: 12px; font-weight: 700; color: var(--lp-gray-900); margin: 0; }
.lp-fc-sub   { font-size: 11px; color: var(--lp-gray-500); margin: 2px 0 0; }

.lp-float-a { top: -16px; left: -10px; animation: lp-float-chip 6s ease-in-out infinite; }
.lp-float-b { bottom: 20px; right: -18px; animation: lp-float-chip 8s ease-in-out infinite 2s; }
.lp-float-c { top: 50%; right: -22px; animation: lp-float-chip 7s ease-in-out infinite 4s; }

@media(max-width: 900px) { .lp-float-chip { display: none; } }

/* ── Product Panel ────────────────────────────────────────────── */
.lp-panel {
  background: var(--lp-white);
  border: 1px solid rgba(30,64,175,.15);
  border-radius: var(--lp-radius-lg);
  overflow: hidden;
  transform: perspective(900px) rotateY(-7deg) rotateX(2.5deg);
  /* preserve-3d + overflow:hidden: Firefox collapses preserve-3d per spec.
     Chrome ignored this. Removed preserve-3d → same rendering in both. */
  will-change: transform;
  transition: transform .08s linear, box-shadow .3s ease;
  box-shadow: 0 40px 80px rgba(30,64,175,.18), 0 8px 24px rgba(30,64,175,.10);
}

.lp-panel-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  background: var(--lp-gray-50);
  border-bottom: 1px solid var(--lp-gray-100);
}

.lp-panel-tl { display: flex; gap: 6px; }

.lp-tl { width: 10px; height: 10px; border-radius: 50%; display: block; }
.lp-tl.r { background: #ef4444; }
.lp-tl.y { background: #f59e0b; }
.lp-tl.g { background: #22c55e; }

.lp-panel-name {
  flex: 1;
  text-align: center;
  font-size: 11px;
  font-weight: 600;
  color: var(--lp-gray-500);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.lp-ic-badge {
  background: var(--lp-blue-700);
  color: var(--lp-white);
  border-radius: 5px;
  padding: 2px 7px;
  font-size: 10px;
  font-weight: 800;
}

.lp-panel-live {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 10px;
  font-weight: 700;
  color: var(--lp-green);
  text-transform: uppercase;
  letter-spacing: .06em;
}

.lp-live-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #22c55e;
  animation: lp-pulse 2s infinite;
}

.lp-score-row {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 20px 20px 12px;
}

.lp-ring-wrap {
  position: relative;
  width: 108px; height: 108px;
  flex-shrink: 0;
}

.lp-ring { width: 100%; height: 100%; }

.lp-arc {
  transition: stroke-dashoffset 1.4s cubic-bezier(.4,0,.2,1);
  filter: drop-shadow(0 0 8px rgba(34,197,94,.5));
}

.lp-ring-center {
  position: absolute; inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  line-height: 1;
}

.lp-ring-num { font-size: 28px; font-weight: 900; color: var(--lp-gray-900); }
.lp-ring-sub { font-size: 11px; color: var(--lp-gray-500); font-weight: 500; margin-top: 2px; }

.lp-risk-col { flex: 1; min-width: 0; }
.lp-risk-label { font-size: 17px; font-weight: 800; color: var(--lp-green); margin: 0 0 3px; }
.lp-risk-sub   { font-size: 12px; color: var(--lp-gray-500); margin: 0 0 10px; }

.lp-hint-chips { display: flex; flex-wrap: wrap; gap: 5px; }

.lp-hint-chip {
  font-size: 11px;
  font-weight: 600;
  border-radius: 6px;
  padding: 3px 9px;
}
.lp-hint-chip.ok   { background: var(--lp-green-bg); color: var(--lp-green); border: 1px solid var(--lp-green-border); }
.lp-hint-chip.warn { background: var(--lp-yellow-bg); color: var(--lp-yellow); border: 1px solid #fef08a; }
.lp-hint-chip.miss { background: #f8fafc; color: var(--lp-gray-500); border: 1px solid var(--lp-gray-300); }

.lp-bars { padding: 0 20px 12px; display: flex; flex-direction: column; gap: 8px; }

.lp-bar-row { display: flex; align-items: center; gap: 10px; }

.lp-bar-label {
  font-size: 11px;
  color: var(--lp-gray-500);
  font-weight: 500;
  width: 124px;
  flex-shrink: 0;
}

.lp-bar-track {
  flex: 1;
  height: 6px;
  background: var(--lp-gray-100);
  border-radius: 99px;
  overflow: hidden;
}

.lp-bar-fill {
  height: 100%;
  border-radius: 99px;
  width: 0;
  background: linear-gradient(90deg, #3b82f6, #1e40af);
  transition: width 1s cubic-bezier(.4,0,.2,1);
}

.lp-bar-pct { font-size: 11px; font-weight: 700; width: 30px; text-align: right; flex-shrink: 0; }
.lp-bar-pct.ok   { color: var(--lp-green); }
.lp-bar-pct.warn { color: var(--lp-yellow); }

.lp-panel-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  padding: 10px 20px 18px;
  border-top: 1px solid var(--lp-gray-100);
}

.lp-vchip {
  background: var(--lp-gray-50);
  border: 1px solid var(--lp-gray-200);
  border-radius: 20px;
  padding: 4px 11px;
  font-size: 11px;
  color: var(--lp-gray-500);
  font-weight: 500;
}
.lp-vchip.ok { background: var(--lp-green-bg); border-color: var(--lp-green-border); color: var(--lp-green); }

/* ── Analyze Box (lp variant) ─────────────────────────────────── */
.lp-analyze-box {
  background: var(--lp-white);
  border-radius: var(--lp-radius-lg);
  padding: 28px;
  border: 1px solid rgba(30,64,175,.15);
  box-shadow: 0 40px 80px rgba(30,64,175,.18);
}

/* ── Trust Bar ────────────────────────────────────────────────── */
.lp-trust-bar {
  background: #eef6ff;
  border-top: 1px solid rgba(30,64,175,.1);
  border-bottom: 1px solid rgba(30,64,175,.1);
  padding: 20px 24px;
}

.lp-trust-bar-inner {
  max-width: var(--lp-max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.lp-trust-item-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--lp-gray-700);
  font-weight: 500;
}

.lp-trust-icon {
  width: 32px; height: 32px;
  border-radius: 8px;
  background: var(--lp-blue-50);
  border: 1px solid var(--lp-blue-100);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--lp-blue-600);
  flex-shrink: 0;
}

/* ── Steps Section ────────────────────────────────────────────── */
.lp-steps { padding: 88px 24px; background: #eef6ff; }
.lp-steps-inner { max-width: var(--lp-max-w); margin: 0 auto; text-align: center; }

.lp-steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  position: relative;
  margin-top: 52px;
}

.lp-steps-grid::before {
  content: '';
  position: absolute;
  top: 28px;
  left: calc(50%/3 + 50%/3);
  right: calc(50%/3 + 50%/3);
  height: 1px;
  background: linear-gradient(90deg, var(--lp-blue-100), var(--lp-blue-100), var(--lp-blue-100));
  pointer-events: none;
}

.lp-step { padding: 0 32px; text-align: center; }

.lp-step-icon {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--lp-blue-50);
  border: 2px solid var(--lp-blue-100);
  color: var(--lp-blue-600);
  font-size: 18px;
  font-weight: 900;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  position: relative;
  z-index: 1;
  transition: transform .3s, box-shadow .3s;
}

.lp-step:hover .lp-step-icon {
  transform: scale(1.1);
  box-shadow: 0 8px 24px rgba(37,99,235,.2);
}

.lp-step h3 { font-size: 16px; font-weight: 700; color: var(--lp-gray-900); margin: 0 0 10px; }
.lp-step p  { font-size: 14px; color: var(--lp-gray-700); line-height: 1.7; margin: 0; }

@media(max-width: 760px) {
  .lp-steps-grid { grid-template-columns: 1fr; gap: 32px; }
  .lp-steps-grid::before { display: none; }
}

/* ── Features Section ─────────────────────────────────────────── */
.lp-features { padding: 88px 24px; background: #e8f2ff; }
.lp-features-inner { max-width: var(--lp-max-w); margin: 0 auto; text-align: center; }

.lp-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 52px;
  text-align: left;
}

.lp-feature-card {
  background: var(--lp-white);
  border: 1px solid rgba(30,64,175,.12);
  border-radius: var(--lp-radius-lg);
  padding: 32px;
  box-shadow: 0 4px 16px rgba(30,64,175,.06);
  transition: all .3s cubic-bezier(.16,1,.3,1);
  position: relative;
  overflow: hidden;
}

.lp-feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--lp-blue-600), #60a5fa);
  opacity: 0;
  transition: opacity .3s;
}

.lp-feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--lp-shadow-lg);
  border-color: var(--lp-gray-300);
}
.lp-feature-card:hover::before { opacity: 1; }

.lp-feature-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: var(--lp-blue-50);
  border: 1px solid var(--lp-blue-100);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--lp-blue-600);
  margin-bottom: 20px;
  transition: transform .3s;
}
.lp-feature-card:hover .lp-feature-icon { transform: scale(1.08); }

.lp-feature-card h3 { font-size: 16px; font-weight: 700; color: var(--lp-gray-900); margin: 0 0 10px; }
.lp-feature-card p  { font-size: 14px; color: var(--lp-gray-700); line-height: 1.7; margin: 0; }

@media(max-width: 760px) { .lp-features-grid { grid-template-columns: 1fr; } }

/* ── Product Section ──────────────────────────────────────────── */
.lp-product { padding: 88px 24px; background: #eef6ff; }

.lp-product-inner {
  max-width: var(--lp-max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.lp-product-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--lp-blue-600);
  margin: 0 0 14px;
}

.lp-product-h2 {
  font-size: clamp(26px, 3.5vw, 38px);
  font-weight: 900;
  color: var(--lp-gray-900);
  margin: 0 0 16px;
  line-height: 1.15;
}

.lp-product-p {
  font-size: 15px;
  color: var(--lp-gray-700);
  line-height: 1.7;
  margin: 0 0 28px;
}

.lp-check-list {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.lp-check-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--lp-gray-700);
  line-height: 1.5;
}

.lp-check-icon {
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--lp-green-bg);
  border: 1px solid var(--lp-green-border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}

.lp-product-visual { position: relative; }

.lp-result-preview {
  background: var(--lp-white);
  border: 1px solid rgba(30,64,175,.12);
  border-radius: var(--lp-radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(30,64,175,.14);
}

.lp-rp-header {
  background: var(--lp-gray-900);
  color: var(--lp-white);
  padding: 12px 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 600;
}

.lp-rp-body { padding: 20px; }

.lp-rp-score-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}

.lp-rp-score-circle { width: 64px; height: 64px; flex-shrink: 0; }

.lp-rp-badge {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 700;
}
.lp-rp-badge.ok   { background: var(--lp-green-bg); color: var(--lp-green); }
.lp-rp-badge.warn { background: var(--lp-yellow-bg); color: var(--lp-yellow); }
.lp-rp-badge.err  { background: var(--lp-red-bg); color: var(--lp-red); }

.lp-rp-fakt-list { display: flex; flex-direction: column; gap: 6px; }

.lp-rp-fakt {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  padding: 8px 10px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.4;
}
.lp-rp-fakt.ok   { background: var(--lp-green-bg); color: var(--lp-green); }
.lp-rp-fakt.warn { background: var(--lp-yellow-bg); color: var(--lp-yellow); }
.lp-rp-fakt.err  { background: var(--lp-red-bg); color: var(--lp-red); }
.lp-rp-fakt.miss { background: var(--lp-gray-50); color: var(--lp-gray-500); border: 1px solid var(--lp-gray-200); }

@media(max-width: 900px) {
  .lp-product-inner { grid-template-columns: 1fr; gap: 48px; }
}

/* ── Stats Section ────────────────────────────────────────────── */
.lp-stats { padding: 88px 24px; background: #eef6ff; }

.lp-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 52px;
  text-align: left;
}

.lp-stat-num {
  font-size: clamp(28px, 3.8vw, 42px);
  font-weight: 900;
  color: var(--lp-blue-700);
  line-height: 1.05;
  letter-spacing: -.5px;
  margin: 14px 0 6px;
}

.lp-stats-footer {
  margin-top: 36px;
  text-align: center;
}

.lp-stats-quote {
  font-size: 15px;
  font-weight: 600;
  font-style: italic;
  color: var(--lp-gray-700);
  margin: 0 0 8px;
}

.lp-stats-source {
  font-size: 12px;
  color: #6b7280;
  margin: 16px 0 0;
  line-height: 1.7;
}

.lp-stats-source-link {
  color: #4b5563;
  text-decoration: none;
  font-weight: 600;
  border-bottom: 1px solid #d1d5db;
  transition: color .15s, border-color .15s;
}
.lp-stats-source-link:hover {
  color: var(--lp-blue-700);
  border-color: var(--lp-blue-700);
}

@media(max-width: 900px) { .lp-stats-grid { grid-template-columns: repeat(2, 1fr); } }
@media(max-width: 480px) { .lp-stats-grid { grid-template-columns: 1fr; } }

/* ── Legal Section ────────────────────────────────────────────── */
.lp-legal { padding: 88px 24px; background: #e8f2ff; }

.lp-legal-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 52px;
  text-align: left;
}

.lp-legal-list {
  list-style: none;
  padding: 0;
  margin: 16px 0 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.lp-legal-list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 13px;
  color: var(--lp-gray-700);
  line-height: 1.55;
}

.lp-ll-ok   { color: var(--lp-green);  font-weight: 800; font-size: 12px; flex-shrink: 0; margin-top: 1px; }
.lp-ll-warn { color: var(--lp-yellow); font-weight: 800; font-size: 12px; flex-shrink: 0; margin-top: 1px; }

.lp-legal-highlight {
  margin-top: 28px;
  background: linear-gradient(135deg, var(--lp-blue-50) 0%, #e8f0ff 100%);
  border: 1px solid var(--lp-blue-100);
  border-radius: var(--lp-radius-lg);
  padding: 28px 32px;
  text-align: center;
}

.lp-lh-main {
  font-size: 16px;
  font-weight: 800;
  color: var(--lp-gray-900);
  margin: 0 0 8px;
  line-height: 1.4;
}

.lp-lh-sub {
  font-size: 13px;
  color: var(--lp-gray-500);
  margin: 0;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

@media(max-width: 760px) { .lp-legal-grid { grid-template-columns: 1fr; } }

/* ── Werkstatt-CTA Section (ersetzt lp-cta) ───────────────────── */
.lp-wks-cta {
  background: linear-gradient(135deg, #1e3a5f 0%, #1d4ed8 100%);
  padding: 88px 24px;
  position: relative;
  overflow: hidden;
}
.lp-wks-cta::before {
  content: '';
  position: absolute; inset: 0; pointer-events: none;
  background-image: radial-gradient(circle, rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 24px 24px;
}
.lp-wks-cta-inner {
  max-width: 600px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.lp-wks-card {
  background: linear-gradient(135deg, #1e40af, #2563eb);
  border-radius: 16px;
  padding: 28px 24px;
  color: #fff;
  box-shadow: 0 8px 32px rgba(30,64,175,.4);
}
.lp-wks-why {
  margin-bottom: 32px;
  text-align: center;
}
.lp-wks-why-title {
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 900;
  color: #fff;
  margin: 0 0 10px;
}
.lp-wks-why-sub {
  font-size: 15px;
  color: rgba(255,255,255,.7);
  margin: 0 0 20px;
}
.lp-wks-why-list {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  display: block;
  text-align: left;
  max-width: 580px;
}
.lp-wks-why-list li {
  font-size: 14px;
  color: rgba(255,255,255,.85);
  position: relative;
  padding-left: 22px;
  margin-bottom: 10px;
  line-height: 1.55;
}
.lp-wks-why-list li::before {
  content: '✓';
  color: #86efac;
  font-weight: 800;
  position: absolute;
  left: 0;
  top: 0;
}

.lp-wks-card {
  text-align: center;
}
.lp-wks-card h3 {
  font-size: 18px;
  font-weight: 800;
  margin: 0 0 8px;
  color: #fff;
}
.lp-wks-card > p {
  font-size: 14px;
  color: rgba(255,255,255,.75);
  margin: 0 0 16px;
}
.lp-wks-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 18px;
  display: flex;
  flex-direction: column;
  gap: 7px;
  text-align: left;
  display: inline-flex;
}
.lp-wks-card ul li {
  font-size: 13px;
  color: rgba(255,255,255,.92);
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.lp-wks-card ul li::before { content: '✗'; color: #fca5a5; font-weight: 800; flex-shrink: 0; }
.lp-wks-card > a {
  display: inline-block;
  background: #fff;
  color: #1e40af;
  font-weight: 800;
  font-size: 14px;
  padding: 11px 26px;
  border-radius: 8px;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(0,0,0,.2);
  transition: all .15s;
}
.lp-wks-card > a:hover { background: #eff6ff; transform: translateY(-1px); color: #1e40af !important; }
.lp-wks-card .cta-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 14px;
}
.lp-wks-card .cta-trust-item { font-size: 11px; color: rgba(255,255,255,.88); font-weight: 600; }
.lp-wks-psych {
  text-align: center;
  font-size: 13px;
  color: rgba(255,255,255,.55);
  margin: 20px 0 0;
}

/* ── Hide WordPress theme footer (duplicate) ─────────────────── */
.site-footer, #colophon, #footer, footer.wp-block-template-part { display: none !important; }

/* ── Footer ───────────────────────────────────────────────────── */
.lp-footer {
  background: #e8f2ff;
  border-top: 1px solid rgba(30,64,175,.1);
  padding: 24px;
  text-align: center;
}

.lp-footer-inner {
  max-width: var(--lp-max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.lp-footer-copy { font-size: 12px; color: var(--lp-gray-500); }

.lp-footer-links { display: flex; gap: 20px; padding-right: 60px; }

.lp-footer-links a {
  font-size: 12px;
  color: var(--lp-gray-500);
  text-decoration: none;
  transition: color .15s;
}
.lp-footer-links a:hover { color: var(--lp-gray-900); }

/* ── Section Header ───────────────────────────────────────────── */
.lp-section-badge {
  display: inline-block;
  background: var(--lp-blue-50);
  border: 1px solid var(--lp-blue-100);
  color: var(--lp-blue-600);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 5px 14px;
  margin-bottom: 16px;
}

.lp-section-h2 {
  font-size: clamp(26px, 4vw, 40px);
  font-weight: 900;
  color: var(--lp-gray-900);
  margin: 0;
  line-height: 1.1;
  letter-spacing: -.3px;
}

.lp-section-sub {
  font-size: 16px;
  color: var(--lp-gray-700);
  margin: 12px 0 0;
}

/* ── Primary Button ───────────────────────────────────────────── */
.lp-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #1e40af, #3b82f6);
  color: var(--lp-white);
  border: none;
  border-radius: 12px;
  padding: 14px 28px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: all .18s;
  box-shadow: 0 10px 20px rgba(30,64,175,.25);
  position: relative;
  overflow: hidden;
}
.lp-btn-primary::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,.15) 0%, transparent 55%);
  pointer-events: none;
}
.lp-btn-primary:hover {
  background: linear-gradient(135deg, #1e3a8a, #2563eb);
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(30,64,175,.38);
}
.lp-btn-primary:active { transform: scale(.97); }

/* ── Demo Live States ─────────────────────────────────────────── */
.lp-ds-wrap {
  padding: 18px 20px 16px;
}

.lp-ds-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--lp-gray-500);
  margin: 0 0 10px;
}

.lp-demo-url-row {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--lp-gray-50);
  border: 1.5px solid var(--lp-gray-200);
  border-radius: 9px;
  padding: 10px 13px;
  margin-bottom: 12px;
  transition: border-color .25s, box-shadow .25s;
  min-height: 40px;
}
.lp-demo-url-row.lp-demo-focus {
  border-color: var(--lp-blue-600);
  box-shadow: 0 0 0 3px rgba(37,99,235,.1);
  background: var(--lp-white);
}

.lp-demo-url-text {
  flex: 1;
  font-size: 12px;
  font-family: ui-monospace, 'SF Mono', monospace;
  color: var(--lp-gray-700);
  overflow: hidden;
  white-space: nowrap;
}

.lp-demo-cursor {
  font-size: 14px;
  font-weight: 300;
  color: var(--lp-blue-600);
  line-height: 1;
  animation: lp-cur-blink .85s step-end infinite;
  flex-shrink: 0;
}

.lp-ds-cta-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.lp-ds-platforms {
  display: flex;
  gap: 5px;
}

.lp-ds-platform {
  font-size: 10px;
  color: var(--lp-gray-500);
  background: var(--lp-gray-100);
  border-radius: 4px;
  padding: 2px 7px;
  font-weight: 500;
}

.lp-ds-run-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(135deg, #1e40af, #3b82f6);
  color: var(--lp-white);
  border: none;
  border-radius: 8px;
  padding: 7px 13px;
  font-size: 12px;
  font-weight: 700;
  cursor: default;
  transition: transform .15s, background .15s, box-shadow .15s;
  box-shadow: 0 4px 14px rgba(30,64,175,.3);
  flex-shrink: 0;
}
.lp-ds-run-btn.lp-ds-btn-go {
  transform: scale(.93);
  background: linear-gradient(135deg, #1e3a8a, #2563eb);
  box-shadow: 0 6px 20px rgba(30,64,175,.5);
}

/* Loading State */
.lp-ds-load-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.lp-ds-spinner {
  width: 14px;
  height: 14px;
  border: 2.5px solid var(--lp-blue-100);
  border-top-color: var(--lp-blue-600);
  border-radius: 50%;
  animation: lp-spin .65s linear infinite;
  flex-shrink: 0;
}

.lp-ds-load-txt {
  font-size: 12px;
  font-weight: 600;
  color: var(--lp-gray-700);
}

.lp-ds-load-track {
  height: 4px;
  background: var(--lp-gray-100);
  border-radius: 99px;
  overflow: hidden;
  margin-bottom: 14px;
}

.lp-ds-load-fill {
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--lp-blue-700) 0%, #60a5fa 100%);
  border-radius: 99px;
  transition: width 1.1s cubic-bezier(.4,0,.2,1);
}

.lp-ds-steps {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.lp-ds-step {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--lp-gray-300);
  font-weight: 500;
  transition: color .3s ease;
}

.lp-ds-step-icon {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 1.5px solid var(--lp-gray-200);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 9px;
  transition: background .3s, border-color .3s;
}

.lp-ds-step.lp-ds-active {
  color: var(--lp-gray-700);
  font-weight: 700;
}
.lp-ds-step.lp-ds-active .lp-ds-step-icon {
  background: var(--lp-blue-50);
  border-color: var(--lp-blue-600);
}
.lp-ds-step.lp-ds-active .lp-ds-step-icon::after {
  content: '';
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--lp-blue-600);
}

.lp-ds-step.lp-ds-done {
  color: var(--lp-green);
}
.lp-ds-step.lp-ds-done .lp-ds-step-icon {
  background: var(--lp-green-bg);
  border-color: var(--lp-green-border);
}
.lp-ds-step.lp-ds-done .lp-ds-step-icon::after {
  content: '✓';
  color: var(--lp-green);
  font-size: 9px;
  font-weight: 900;
}

/* Result state — elements start hidden, JS animates them in */
#lp-demo-s2 .lp-risk-label,
#lp-demo-s2 .lp-risk-sub,
#lp-demo-s2 .lp-hint-chip,
#lp-demo-s2 .lp-vchip {
  opacity: 0;
  transform: translateY(5px);
}

/* ── Blueprint Hintergrund ────────────────────────────────────── */
.lp-blueprint {
  position: absolute;
  bottom: -140px;
  left: 63%;
  transform: translateX(-50%);
  width: clamp(600px, 75%, 950px);
  pointer-events: none;
  z-index: 0;
  opacity: 0.92;
}
.lp-blueprint img { width: 100%; height: auto; display: block; }

/* ── Analyse-Mockup Block höher ───────────────────────────────── */
.lp-hero-right { margin-top: -60px; }

/* ── Hero Tiefenlayer (Glow-Blobs) ────────────────────────────── */
.lp-hero-depth {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}
.lp-hero-glow-1 {
  position: absolute;
  width: 660px; height: 440px;
  top: -120px; right: -180px;
  background: radial-gradient(ellipse, rgba(59,130,246,.22) 0%, transparent 68%);
  border-radius: 50%;
}
.lp-hero-glow-2 {
  position: absolute;
  width: 420px; height: 320px;
  bottom: -60px; left: 4%;
  background: radial-gradient(ellipse, rgba(30,64,175,.28) 0%, transparent 65%);
  border-radius: 50%;
}
.lp-hero-glow-3 {
  position: absolute;
  width: 300px; height: 240px;
  top: 30%; left: 38%;
  background: radial-gradient(ellipse, rgba(59,130,246,.12) 0%, transparent 70%);
  border-radius: 50%;
}

/* ── Werkzeug-Elemente (dekorativ) ───────────────────────────── */
.lp-tools-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}
.lp-tool-svg {
  position: absolute;
  fill: none;
  stroke: #60a5fa;
  stroke-linecap: round;
  stroke-linejoin: round;
  opacity: 0.22;
}

/* ── Panel Scan Animation ─────────────────────────────────────── */
.lp-panel-scan {
  position: relative;
  overflow: hidden;
}
.lp-panel-scan::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent 0%, rgba(37,99,235,.7) 40%, rgba(37,99,235,.95) 50%, rgba(37,99,235,.7) 60%, transparent 100%);
  animation: lp-scan-sweep .44s cubic-bezier(.4,0,.6,1) forwards;
  z-index: 20;
  pointer-events: none;
}

/* ── Button Ripple ────────────────────────────────────────────── */
.lp-btn-ripple-el {
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,.45);
  width: 120px; height: 120px;
  left: 50%; top: 50%;
  transform: translate(-50%,-50%) scale(0);
  animation: lp-ripple-anim .55s ease-out forwards;
  pointer-events: none;
}

/* ── Keyframes ────────────────────────────────────────────────── */
@keyframes lp-cur-blink  { 0%,100%{opacity:1} 50%{opacity:0} }
@keyframes lp-spin       { to{transform:rotate(360deg)} }
@keyframes lp-scan-sweep {
  0%   { top: 0;    opacity: 0; }
  8%   { opacity: 1; }
  92%  { opacity: 1; }
  100% { top: 100%; opacity: 0; }
}
@keyframes lp-ripple-anim {
  to { transform: translate(-50%,-50%) scale(4); opacity: 0; }
}
@keyframes lp-fade-up    { from{opacity:0;transform:translateY(18px)} to{opacity:1;transform:translateY(0)} }
@keyframes lp-fade-right { from{opacity:0;transform:translateX(22px)} to{opacity:1;transform:translateX(0)} }
@keyframes lp-pulse      { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.4;transform:scale(.75)} }
@keyframes lp-dot-drift  { 0%{background-position:0 0} 100%{background-position:28px 28px} }
@keyframes lp-float-chip { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-7px)} }
@keyframes lp-panel-float {
  0%,100% { transform:perspective(900px) rotateY(-7deg) rotateX(2.5deg) translateY(0); }
  50%     { transform:perspective(900px) rotateY(-7deg) rotateX(2.5deg) translateY(-11px); }
}

@media(prefers-reduced-motion:reduce) {
  *,*::before,*::after { animation-duration:.01ms !important; transition-duration:.01ms !important; }
}


