/**
 * Schwarmblick.de — Landing-Styles (Dark-Neon, Matrix-Canvas)
 *
 * Pflicht-Elemente nach `.CLAUDE-BAUSTEINE/ui/baustein-landing-dark-neon-matrix.md`:
 *   • App-Icon 96 px über Wortmarke (border-radius 22.5%)
 *   • Hero clamp(22,5vw,32)
 *   • Screenshots-Grid repeat(4) / Mobile repeat(2)
 *   • Version-Anzeige unter Pricebox (eigene Zeile, 11px, DM Mono)
 *   • ProLogixx-Logo 150px, opacity 0.55 → hover 0.9
 *   • Footer #888 / Links #aaa / 12px
 */

/* Web-Fonts (selbst gehostet, DSGVO) */
@font-face {
  font-family: 'Syne';
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url('../app/assets/fonts/syne-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'DM Mono';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../app/assets/fonts/dm-mono-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  --bg:       #0f0f0f;
  --surface:  #1a1a1a;
  --surface2: #242424;
  --border:   #2e2e2e;
  --accent:   #a855f7;
  --accent2:  #ec4899;
  --text:     #f0f0f0;
  --muted:    #888;
  --muted2:   #aaa;
  --danger:   #ff5252;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html, body { background: var(--bg); color: var(--text); }
body {
  font-family: 'Syne', 'Inter', system-ui, -apple-system, sans-serif;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
}

#matrixCanvas {
  position: fixed; inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.4;
}

.sbmk-landing {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 0 auto;
  padding: 40px 20px 60px;
}

a { color: var(--accent); text-decoration: none; }
a:hover { color: var(--accent2); }
img { max-width: 100%; display: block; }

.accent { color: var(--accent); }
.sbmk-text-center { text-align: center; }

/* ---- Hero ---- */
.sbmk-hero { text-align: center; margin-bottom: 36px; }
.sbmk-logo-icon {
  width: 96px; height: 96px;
  border-radius: 22.5%; /* Android-Adaptive-Icon-Approx */
  margin: 0 auto 18px;
  filter: drop-shadow(0 6px 20px rgba(168,85,247,0.35));
}
.sbmk-logo {
  font-size: 28px;
  font-weight: 800;
  letter-spacing: 1px;
  margin-bottom: 14px;
}
.sbmk-logo sup { font-size: 14px; opacity: 0.7; margin-left: 2px; }

.sbmk-hero h1 {
  font-size: clamp(22px, 5vw, 32px);
  font-weight: 700;
  margin-bottom: 16px;
  line-height: 1.2;
}
.sbmk-hero p {
  color: var(--muted2);
  font-size: 16px;
  max-width: 480px;
  margin: 0 auto 26px;
  line-height: 1.5;
}
.sbmk-hero-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Sekundäre Pill-Links unter den Haupt-CTAs: PDF-Flyer + APK-Download
   (direkter Zugriff, kein Umweg über ProLogixx) */
.sbmk-hero-extras {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 16px;
}
.sbmk-pill-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 16px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.03);
  color: var(--text-muted, #aaa);
  font-size: 13px;
  font-weight: 600;
  transition: 180ms ease;
}
.sbmk-pill-link svg { width: 17px; height: 17px; flex: 0 0 auto; }
.sbmk-pill-link:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(168,85,247,0.08);
}
.sbmk-pill-meta { font-weight: 400; opacity: 0.7; font-size: 12px; }

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 24px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: 180ms ease;
  border: none;
  text-decoration: none;
  min-height: 44px;
}
.btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  color: #fff;
  box-shadow: 0 8px 20px rgba(168,85,247,0.3);
}
.btn-primary:hover { transform: translateY(-1px); filter: brightness(1.1); color: #fff; }
.btn-secondary {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
}
.btn-secondary:hover { border-color: var(--accent); color: var(--accent); }
.btn-block { display: flex; width: 100%; margin-top: 12px; }

/* ---- Screenshot-Karussell (dynamisch, scroll-snap) ---- */
.sbmk-carousel {
  position: relative;
  margin-bottom: 20px;
}
.sbmk-carousel-track {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 2px 2px 6px;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.sbmk-carousel-track::-webkit-scrollbar { display: none; }
.sbmk-carousel-slide {
  flex: 0 0 auto;
  width: min(58vw, 220px);
  scroll-snap-align: center;
}
.sbmk-carousel-slide img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: var(--surface);
}
/* Pfeil-Buttons — nur auf Desktop mit Hover (mobil wird gewischt) */
.sbmk-carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: rgba(15, 15, 15, 0.7);
  color: var(--text);
  font-size: 22px; line-height: 1;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(4px);
  transition: border-color 0.15s, color 0.15s;
  z-index: 2;
}
.sbmk-carousel-btn:hover { border-color: var(--accent); color: var(--accent); }
.sbmk-carousel-btn.prev { left: 6px; }
.sbmk-carousel-btn.next { right: 6px; }
@media (hover: hover) and (min-width: 600px) {
  .sbmk-carousel-btn { display: flex; }
}
.sbmk-carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 14px;
}
.sbmk-carousel-dot {
  width: 8px; height: 8px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: var(--border);
  cursor: pointer;
  transition: background 0.2s, width 0.2s;
}
.sbmk-carousel-dot.is-active {
  width: 22px;
  border-radius: 4px;
  background: var(--accent);
}

/* ---- Section ---- */
.sbmk-section { margin-bottom: 40px; }
.sbmk-section-title {
  font-size: 20px;
  text-align: center;
  margin-bottom: 18px;
  font-weight: 700;
}
.sbmk-section-title-lg {
  font-size: clamp(26px, 6vw, 34px);
  margin-bottom: 14px;
}

/* ---- FREE/PRO/ENTERPRISE Compare-Table (v0.26.0) ---- */
.sbmk-compare {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}
.sbmk-compare .row {
  display: grid;
  /* Funktion + 3 Plan-Spalten. Auf Mobile <420 px schrumpfen Plan-Spalten auf 56 px,
     Schrift wird kleiner — bleibt auf einer Zeile. */
  grid-template-columns: 1fr 64px 64px 96px;
  padding: 12px 14px;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
  align-items: center;
  text-align: center;
  gap: 6px;
}
@media (max-width: 420px) {
  .sbmk-compare .row {
    grid-template-columns: 1fr 52px 52px 76px;
    font-size: 12px;
    padding: 10px 10px;
  }
}
.sbmk-compare .row:last-child { border-bottom: none; }
.sbmk-compare .row .feat { text-align: left; }
.sbmk-compare .row.head {
  background: var(--surface2);
  font-weight: 700;
  color: var(--muted2);
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}
.sbmk-compare .yes { color: var(--accent); font-weight: 700; }
.sbmk-compare .no  { color: var(--muted); }
.sbmk-compare .ent { color: var(--accent2); font-weight: 600; font-size: 12px; }

/* ---- Price-Box ---- */
.sbmk-price-box {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px 24px;
  text-align: center;
  position: relative;
}
.sbmk-price-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  color: #fff;
  padding: 4px 16px;
  border-radius: 12px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
}
.sbmk-price {
  font-size: 42px;
  font-weight: 800;
  margin: 12px 0 6px;
  color: var(--accent);
}
.sbmk-price-sub {
  color: var(--muted2);
  font-size: 13px;
  margin-bottom: 18px;
}

/* ---- Enterprise-Box (v0.26.0) ---- */
.sbmk-enterprise-box {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 22px 22px 24px;
  text-align: center;
  position: relative;
  margin-top: 28px;
}
.sbmk-enterprise-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--surface2);
  color: var(--accent2);
  border: 1px solid var(--accent2);
  padding: 5px 20px;
  border-radius: 12px;
  font-size: 17px;
  font-weight: 800;
  letter-spacing: 1.5px;
}
.sbmk-enterprise-desc {
  color: var(--muted2);
  font-size: 13.5px;
  line-height: 1.55;
  margin: 14px 0 18px;
}

/* ---- v0.29.0: Price-Tiers (1/3/6-Mo-Selektor) ---- */
.sbmk-price-tiers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 28px 0 18px;
}
@media (max-width: 720px) {
  .sbmk-price-tiers { grid-template-columns: 1fr; gap: 14px; }
}
.sbmk-price-tier {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 22px 18px;
  text-align: center;
  position: relative;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}
.sbmk-price-tier:hover {
  transform: translateY(-2px);
  border-color: var(--accent2);
}
.sbmk-price-tier.is-featured {
  border: 2px solid var(--accent);
  box-shadow: 0 0 24px rgba(168, 85, 247, .22), 0 4px 18px rgba(0,0,0,.35);
  transform: translateY(-4px);
}
@media (max-width: 720px) {
  .sbmk-price-tier.is-featured { transform: none; }
}
.sbmk-price-tier-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  color: #fff;
  padding: 3px 10px;
  border-radius: 10px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .5px;
}
.sbmk-price-tier-pop {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  color: #fff;
  padding: 4px 14px;
  border-radius: 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .8px;
  text-transform: uppercase;
  white-space: nowrap;
}
.sbmk-price-tier-duration {
  font-size: 14px;
  font-weight: 700;
  color: var(--muted2);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
  margin-top: 4px;
}
.sbmk-price-tier-total {
  font-size: 34px;
  font-weight: 800;
  color: var(--accent);
  line-height: 1.1;
  margin: 6px 0 4px;
}
.sbmk-price-tier-per {
  color: var(--muted);
  font-size: 12px;
  margin-bottom: 16px;
}
.sbmk-price-tier-cta { margin-top: 4px; }

.sbmk-price-disclaimer {
  text-align: center;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.55;
  margin: 0 auto 28px;
  max-width: 540px;
}

/* ---- v0.30.1: Notice-Banner (Info/Warning/Error) — wiederverwendbar ---- */
.sbmk-notice {
  background: var(--surface);
  border: 1px solid var(--border);
  border-left: 4px solid var(--muted);
  border-radius: 12px;
  padding: 16px 20px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin: 0 auto 24px;
  max-width: 720px;
  color: var(--text);
  font-size: 14px;
  line-height: 1.55;
  text-align: left;
}
.sbmk-notice-icon {
  font-size: 22px;
  line-height: 1;
  flex-shrink: 0;
  margin-top: 2px;
}
.sbmk-notice-body { flex: 1; min-width: 0; }
.sbmk-notice-title {
  font-weight: 700;
  margin: 0 0 4px;
  font-size: 15px;
  color: var(--text);
}
.sbmk-notice-body p { margin: 0; color: var(--muted2); }
.sbmk-notice-body p + p { margin-top: 8px; }
.sbmk-notice-body code {
  font-family: 'DM Mono', 'Consolas', monospace;
  background: var(--surface2);
  padding: 1px 6px;
  border-radius: 4px;
  font-size: 12px;
  color: var(--accent);
}
.sbmk-notice-actions {
  margin-top: 14px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.sbmk-notice.is-info {
  border-left-color: #3b82f6;
  background: rgba(59,130,246,.04);
}
.sbmk-notice.is-info .sbmk-notice-title { color: #60a5fa; }

.sbmk-notice.is-warning {
  border-left-color: #f59e0b;
  background: rgba(245,158,11,.04);
}
.sbmk-notice.is-warning .sbmk-notice-title { color: #fbbf24; }

.sbmk-notice.is-error {
  border-left-color: #ef4444;
  background: rgba(239,68,68,.04);
}
.sbmk-notice.is-error .sbmk-notice-title { color: #f87171; }

/* ---- v0.29.0: Coming-Soon-Modal für Bestellprozess ---- */
.sbmk-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.78);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  animation: sbmkFadeIn .18s ease;
}
@keyframes sbmkFadeIn { from { opacity: 0; } to { opacity: 1; } }
.sbmk-modal-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px 26px 24px;
  max-width: 460px;
  width: 100%;
  text-align: center;
  position: relative;
  box-shadow: 0 12px 48px rgba(0,0,0,.6);
}
.sbmk-modal-close {
  position: absolute;
  top: 10px;
  right: 12px;
  background: transparent;
  border: none;
  color: var(--muted);
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
  padding: 4px 10px;
  border-radius: 8px;
  transition: color 150ms ease, background 150ms ease;
}
.sbmk-modal-close:hover { color: #fff; background: rgba(255,255,255,.08); }
.sbmk-modal-icon {
  font-size: 40px;
  margin-bottom: 10px;
  line-height: 1;
}
.sbmk-modal-title {
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 14px;
  color: #fff;
}
.sbmk-modal-text {
  color: var(--muted2);
  font-size: 14px;
  line-height: 1.55;
  margin: 0 0 14px;
}
.sbmk-modal-text a { color: var(--accent); }
.sbmk-modal-card .btn { margin-top: 10px; }

/* ---- Version-Anzeige unter Pricebox (Pflicht-Position) ---- */
.sbmk-version-line {
  text-align: center;
  font-size: 11px;
  color: var(--muted);
  font-family: 'DM Mono', 'Consolas', monospace;
  letter-spacing: 1px;
  margin-top: 14px;
  margin-bottom: 40px;
}

/* ---- ProLogixx-Logo ---- */
.sbmk-prologixx-logo {
  width: 150px;
  opacity: 0.55;
  border-radius: 8px;
  margin: 0 auto;
  transition: opacity 180ms ease;
}
.sbmk-prologixx-logo:hover { opacity: 0.9; }

/* ---- Footer (Pflicht: #888 / Links #aaa / 12px) ---- */
.sbmk-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 6px 14px;
  padding: 24px 16px 0;
  color: var(--muted);
  font-size: 12px;
  border-top: 1px solid var(--border);
  margin-top: 20px;
}
/* Brand + Powered-by zentriert, Impressum/Datenschutz rechts daneben.
   Auf Mobile wrappt Legal sauber unter die zentrierte Hauptzeile. */
.sbmk-footer-main { flex: 1 1 auto; text-align: center; }
.sbmk-footer-legal { flex: 0 0 auto; white-space: nowrap; }
.sbmk-footer a { color: var(--muted2); }
.sbmk-footer a:hover { color: var(--text); }

/* ---- Cookie-Consent (Funktionaler-Storage-Hinweis) ---- */
.sbmk-cc {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: rgba(15, 15, 15, 0.97);
  border-top: 2px solid var(--accent);
  padding: 14px 16px;
  z-index: 9800;
  backdrop-filter: blur(6px);
  animation: sbmk-cc-slide 0.4s ease;
}
.sbmk-cc-inner {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
}
.sbmk-cc-text { flex: 1; min-width: 240px; font-size: 13px; color: var(--muted2); line-height: 1.5; }
.sbmk-cc-text strong { color: var(--text); font-size: 14px; display: block; margin-bottom: 4px; }
.sbmk-cc-text p { margin: 0; }
.sbmk-cc-text a { color: var(--accent); }
.sbmk-cc-ok {
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  color: #fff;
  border: none;
  padding: 10px 22px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: 150ms ease;
  flex-shrink: 0;
}
.sbmk-cc-ok:hover { filter: brightness(1.1); transform: translateY(-1px); }
@keyframes sbmk-cc-slide {
  from { transform: translateY(100%); opacity: 0; }
  to   { transform: translateY(0);    opacity: 1; }
}

/* =====================================================
   Enterprise-Anfrage-Page (v0.27.0)
   ===================================================== */

.sbmk-enterprise-page .sbmk-hero h1 {
  font-size: clamp(28px, 6vw, 40px);
}
.sbmk-back-line {
  margin-top: 14px !important;
  font-size: 13px !important;
  color: var(--muted) !important;
}
.sbmk-back-line a {
  color: var(--accent);
  text-decoration: none;
}
.sbmk-back-line a:hover { color: var(--accent2); }

/* ---- Vorteile-Block ---- */
.sbmk-ent-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
@media (max-width: 720px) {
  .sbmk-ent-features { grid-template-columns: 1fr; }
}
.sbmk-ent-feature {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 18px 16px;
  text-align: center;
}
.sbmk-ent-feature-icon {
  font-size: 28px;
  margin-bottom: 8px;
  line-height: 1;
}
.sbmk-ent-feature-title {
  font-weight: 700;
  font-size: 14px;
  color: var(--text);
  margin-bottom: 6px;
}
.sbmk-ent-feature-text {
  font-size: 12.5px;
  color: var(--muted2);
  line-height: 1.5;
}

/* ---- Form ---- */
.sbmk-form {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 26px 22px;
}
@media (max-width: 540px) {
  .sbmk-form { padding: 20px 16px; }
}

.sbmk-form-fieldset {
  border: none;
  padding: 0;
  margin: 0 0 24px;
}
.sbmk-form-fieldset legend {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
  padding: 0;
}
.sbmk-form-opt {
  color: var(--muted);
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  font-size: 11px;
}
.sbmk-form-req {
  color: var(--accent2);
  font-weight: 700;
}

.sbmk-form-group { margin-bottom: 14px; }
.sbmk-form-group:last-child { margin-bottom: 0; }

.sbmk-form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 6px;
}

.sbmk-form input[type="text"],
.sbmk-form input[type="email"],
.sbmk-form input[type="tel"],
.sbmk-form input[type="number"],
.sbmk-form input[type="password"],
.sbmk-form textarea,
.sbmk-form select {
  width: 100%;
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 10px 12px;
  color: var(--text);
  font-size: 14px;
  font-family: inherit;
  transition: border-color 150ms ease, box-shadow 150ms ease;
  box-sizing: border-box;
}
.sbmk-form input::placeholder,
.sbmk-form textarea::placeholder {
  color: var(--muted);
  opacity: 0.7;
}
.sbmk-form input:focus,
.sbmk-form textarea:focus,
.sbmk-form select:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(168, 85, 247, 0.2);
}
.sbmk-form textarea {
  resize: vertical;
  min-height: 60px;
}
.sbmk-form select {
  appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'><path fill='%23a855f7' d='M6 8L0 0h12z'/></svg>");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}

.sbmk-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
@media (max-width: 480px) {
  .sbmk-form-row { grid-template-columns: 1fr; gap: 14px; }
}

/* Radios */
.sbmk-form-radios {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.sbmk-form-radio {
  flex: 1;
  min-width: 160px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 14px;
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: 8px;
  cursor: pointer;
  font-size: 14px;
  transition: 150ms ease;
}
.sbmk-form-radio:hover { border-color: var(--accent); }
.sbmk-form-radio input[type="radio"] {
  accent-color: var(--accent);
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}
.sbmk-form-radio:has(input:checked) {
  border-color: var(--accent);
  background: rgba(168, 85, 247, 0.08);
}

/* Laufzeit-Tiers: Preis groß oben, Laufzeit + MwSt darunter */
.sbmk-form-radios-tiers { flex-direction: column; }
.sbmk-form-radio-tier { align-items: center; padding: 14px 16px; }
.sbmk-tier-body {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}
.sbmk-tier-price {
  font-size: 22px;
  font-weight: 800;
  line-height: 1.1;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.sbmk-tier-discount {
  background: rgba(168, 85, 247, 0.18);
  color: #c084fc;
  padding: 2px 9px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 12px;
}
.sbmk-tier-meta {
  font-size: 13px;
  color: var(--muted);
}
.sbmk-tier-meta strong { color: var(--text); }

/* Passwort-Feld mit Show/Hide-Toggle */
.sbmk-password-field { position: relative; }
.sbmk-password-field input { padding-right: 86px; }
.sbmk-password-toggle {
  position: absolute;
  top: 50%;
  right: 6px;
  transform: translateY(-50%);
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 6px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
  padding: 5px 10px;
  cursor: pointer;
  transition: 150ms ease;
}
.sbmk-password-toggle:hover { color: var(--accent); border-color: var(--accent); }

/* Feld-Hinweise unter Inputs */
.sbmk-field-hint {
  font-size: 12px;
  color: var(--muted);
  margin: 6px 0 0;
}
.sbmk-field-hint-error { color: var(--accent2); font-weight: 600; }

/* Widerruf: ausklappbare Belehrung + Pflicht-Zustimmung */
.sbmk-order-legal { margin-bottom: 12px; }
.sbmk-order-legal > summary {
  cursor: pointer;
  font-size: 13px;
  color: var(--accent);
  user-select: none;
}
.sbmk-order-legal-body {
  margin-top: 8px;
  padding: 12px 14px;
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 12.5px;
  line-height: 1.5;
  color: var(--muted2);
}
.sbmk-order-legal-body p { margin: 0 0 8px; }
.sbmk-order-legal-body p:last-child { margin-bottom: 0; }
.sbmk-form-consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  line-height: 1.45;
  color: var(--text);
  cursor: pointer;
}
.sbmk-form-consent input[type="checkbox"] {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  margin-top: 1px;
  accent-color: var(--accent);
}

/* Checkbox-Cards (Wunsch-Features) */
.sbmk-form-checks {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.sbmk-form-check {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 14px 14px;
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: 10px;
  cursor: pointer;
  font-size: 14px;
  transition: 150ms ease;
}
.sbmk-form-check:hover { border-color: var(--accent); }
.sbmk-form-check input[type="checkbox"] {
  accent-color: var(--accent);
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 1px;
}
.sbmk-form-check:has(input:checked) {
  border-color: var(--accent);
  background: rgba(168, 85, 247, 0.08);
}
.sbmk-form-check span { line-height: 1.45; }
.sbmk-form-check strong { font-weight: 700; color: var(--text); }
.sbmk-form-check-sub {
  color: var(--muted2);
  font-size: 12px;
  display: block;
  margin-top: 2px;
}

/* Consent-Checkbox (DSGVO) */
.sbmk-form-consent { margin-bottom: 18px; }
.sbmk-form-check-consent {
  background: rgba(236, 72, 153, 0.06);
  border-color: rgba(236, 72, 153, 0.25);
  font-size: 12.5px;
  line-height: 1.55;
}
.sbmk-form-check-consent span { color: var(--muted2); }
.sbmk-form-check-consent a { color: var(--accent); }

/* Honeypot — visuell unsichtbar, aber für Bots ausfüllbar */
.sbmk-honeypot {
  position: absolute;
  left: -9999px;
  top: -9999px;
  opacity: 0;
  pointer-events: none;
}

/* Error-Container */
.sbmk-form-error {
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.35);
  color: #fca5a5;
  border-radius: 8px;
  padding: 12px 14px;
  font-size: 13px;
  margin-bottom: 14px;
  line-height: 1.5;
}

.btn-block { display: block; width: 100%; text-align: center; }
.btn[disabled],
.btn.is-loading {
  opacity: 0.65;
  cursor: wait;
  pointer-events: none;
}

.sbmk-form-footer-hint {
  text-align: center;
  font-size: 12px;
  color: var(--muted);
  margin: 18px 0 0;
}
.sbmk-form-footer-hint a {
  color: var(--accent);
  text-decoration: none;
}

/* ---- Erfolgs-Card ---- */
.sbmk-form-success { animation: sbmk-fade-in 0.4s ease; }
@keyframes sbmk-fade-in {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}
.sbmk-success-card {
  background: var(--surface);
  border: 1px solid var(--accent);
  border-radius: 16px;
  padding: 36px 24px;
  text-align: center;
  box-shadow: 0 0 32px rgba(168, 85, 247, 0.18);
}
.sbmk-success-icon {
  font-size: 56px;
  line-height: 1;
  margin-bottom: 14px;
}
.sbmk-success-card h2 {
  font-size: 24px;
  margin: 0 0 12px;
  color: var(--text);
}
.sbmk-success-card p {
  color: var(--muted2);
  font-size: 14px;
  line-height: 1.6;
  margin: 0 0 8px;
}
.sbmk-success-sub {
  font-size: 12.5px !important;
  color: var(--muted) !important;
  margin-bottom: 24px !important;
}
