/* Verkaufs-Website – Stil. Farben passend zur App (Akzent #5b5bd6, Verlauf #6366f1 → #a855f7 → #ec4899).
   Nur Systemschriften, keine externen Ressourcen. Hell/Dunkel ueber prefers-color-scheme. */

:root {
  --bg: #ffffff;
  --bg-soft: #f6f7fb;
  --surface: #ffffff;
  --input-bg: #ffffff;
  --border: #e7e9f0;
  --border-strong: #d6d9e4;
  --text: #1d2130;
  --text-muted: #555c70;
  --text-faint: #6b7185;

  --accent: #5b5bd6;
  --accent-soft: #eeeefd;
  --accent-text: #4343b8;
  --btn: #5b5bd6;
  --btn-hover: #4b4bc6;
  --grad: linear-gradient(135deg, #6366f1 0%, #a855f7 55%, #ec4899 100%);

  --rose: #d93d4a;
  --rose-soft: #fdedef;
  --rose-text: #b42332;
  --amber: #c27a06;
  --amber-soft: #fff3db;
  --sky: #0a6cb8;
  --sky-soft: #e4f2fc;
  --violet: #7c4ddb;
  --violet-soft: #f1ebfd;
  --ok: #18794e;
  --ok-soft: #e5f6ed;

  --sk-bg: #f6f7fb;
  --sk-rail: #ffffff;
  --sk-card: #ffffff;
  --sk-border: #e7e9f0;
  --sk-line: #e3e5ee;
  --sk-line-strong: #c9cedc;
  --sk-soft: #f1f2f7;

  --shadow: 0 1px 2px rgba(22, 27, 45, 0.04), 0 4px 16px rgba(22, 27, 45, 0.05);
  --shadow-lift: 0 2px 6px rgba(22, 27, 45, 0.06), 0 16px 40px rgba(22, 27, 45, 0.12);
  --shadow-frame: 0 2px 4px rgba(30, 27, 75, 0.04), 0 30px 80px -24px rgba(30, 27, 75, 0.28);
  --ring: 0 0 0 4px rgba(91, 91, 214, 0.18);

  --font: 'Segoe UI Variable Text', 'Segoe UI Variable', 'Segoe UI', system-ui, -apple-system, BlinkMacSystemFont, 'Helvetica Neue', Arial, sans-serif;
  --font-display: 'Segoe UI Variable Display', 'Segoe UI Variable', 'Segoe UI', system-ui, -apple-system, BlinkMacSystemFont, 'Helvetica Neue', Arial, sans-serif;
  --header-h: 68px;
  --gutter: 24px;
  color-scheme: light;
}

@media (prefers-color-scheme: dark) {
  :root {
    --bg: #0f1016;
    --bg-soft: #14151d;
    --surface: #181a22;
    --input-bg: #111218;
    --border: #262a37;
    --border-strong: #353a4b;
    --text: #e8eaf2;
    --text-muted: #a8aec0;
    --text-faint: #8a90a4;

    --accent: #8687f5;
    --accent-soft: #23244a;
    --accent-text: #b4b5ff;
    --btn: #5b5bd6;
    --btn-hover: #6b6be6;

    --rose: #ff7b85;
    --rose-soft: #3a1d23;
    --rose-text: #ff9aa2;
    --amber: #f0b44d;
    --amber-soft: #33270f;
    --sky: #62b3f0;
    --sky-soft: #10263a;
    --violet: #b394ff;
    --violet-soft: #2a1f47;
    --ok: #4cc38a;
    --ok-soft: #12291e;

    --sk-bg: #111218;
    --sk-rail: #161820;
    --sk-card: #1a1c25;
    --sk-border: #262a37;
    --sk-line: #2a2e3c;
    --sk-line-strong: #3b4053;
    --sk-soft: #1f2230;

    --shadow: 0 1px 2px rgba(0, 0, 0, 0.3), 0 4px 18px rgba(0, 0, 0, 0.22);
    --shadow-lift: 0 4px 12px rgba(0, 0, 0, 0.35), 0 16px 40px rgba(0, 0, 0, 0.35);
    --shadow-frame: 0 2px 4px rgba(0, 0, 0, 0.3), 0 30px 80px -24px rgba(0, 0, 0, 0.7);
    --ring: 0 0 0 4px rgba(134, 135, 245, 0.25);
    color-scheme: dark;
  }
}

/* ---------- Grundlagen ---------- */

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 1.0625rem;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img,
svg {
  display: block;
  max-width: 100%;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  color: var(--text);
  font-weight: 700;
}

h3,
h4 {
  line-height: 1.3;
}

p {
  margin: 0 0 1em;
}

a {
  color: var(--accent-text);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 2px;
  border-radius: 6px;
}

main:focus {
  outline: none;
}

[id] {
  scroll-margin-top: calc(var(--header-h) + 12px);
}

.icon {
  width: 22px;
  height: 22px;
  flex: none;
}
.icon-sm {
  width: 18px;
  height: 18px;
}
.icon-xs {
  width: 14px;
  height: 14px;
}
.icon-xxs {
  width: 12px;
  height: 12px;
}
.icon-inline {
  display: inline-block;
  width: 16px;
  height: 16px;
  vertical-align: -3px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  left: 12px;
  top: -80px;
  z-index: 100;
  padding: 10px 16px;
  border-radius: 10px;
  background: var(--btn);
  color: #fff;
  font-weight: 600;
  text-decoration: none;
}
.skip-link:focus {
  top: 12px;
}

.container {
  width: 100%;
  max-width: calc(1200px + 2 * var(--gutter));
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.narrow {
  max-width: calc(860px + 2 * var(--gutter));
}
.center {
  text-align: center;
}

.grad-text {
  color: var(--accent);
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.t-rose {
  --tone: var(--rose);
  --tone-soft: var(--rose-soft);
}
.t-sky {
  --tone: var(--sky);
  --tone-soft: var(--sky-soft);
}
.t-amber {
  --tone: var(--amber);
  --tone-soft: var(--amber-soft);
}
.t-violet {
  --tone: var(--violet);
  --tone-soft: var(--violet-soft);
}
.t-accent {
  --tone: var(--accent);
  --tone-soft: var(--accent-soft);
}
.t-ok {
  --tone: var(--ok);
  --tone-soft: var(--ok-soft);
}

.fine {
  margin: 16px 0 0;
  font-size: 0.85rem;
  color: var(--text-faint);
}

/* ---------- Knoepfe ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 12px;
  font: inherit;
  font-size: 0.98rem;
  font-weight: 600;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.15s, border-color 0.15s, color 0.15s, box-shadow 0.15s, transform 0.15s;
}
.btn-primary {
  background: var(--btn);
  color: #fff;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.18) inset, 0 8px 22px -10px rgba(91, 91, 214, 0.85);
}
.btn-primary:hover {
  background: var(--btn-hover);
  transform: translateY(-1px);
}
.btn-ghost {
  background: var(--surface);
  color: var(--text);
  border-color: var(--border-strong);
}
.btn-ghost:hover {
  border-color: var(--accent);
  color: var(--accent-text);
}
.btn-light {
  background: #fff;
  color: #3730a3;
}
.btn-light:hover {
  background: #eef0ff;
  transform: translateY(-1px);
}
.btn-sm {
  min-height: 38px;
  padding: 0 14px;
  border-radius: 10px;
  font-size: 0.9rem;
}
.btn-lg {
  min-height: 50px;
  padding: 0 24px;
  font-size: 1.02rem;
}
.btn-block {
  width: 100%;
  padding-block: 12px;
}
.btn[disabled] {
  opacity: 0.7;
  cursor: progress;
  transform: none;
}

/* ---------- Kopfzeile ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: color-mix(in srgb, var(--bg) 84%, transparent);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s, background-color 0.2s;
}
.site-header.is-scrolled {
  border-bottom-color: var(--border);
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 20px;
  height: var(--header-h);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex: none;
  color: var(--text);
  font-family: var(--font-display);
  font-size: 1.08rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  text-decoration: none;
}
.logo-mark {
  flex: none;
  border-radius: 9px;
  box-shadow: 0 4px 12px -4px rgba(168, 85, 247, 0.55);
}
.site-nav {
  margin-left: 8px;
}
.nav-links {
  display: flex;
  gap: 2px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.nav-links a {
  display: block;
  padding: 8px 12px;
  border-radius: 9px;
  color: var(--text-muted);
  font-size: 0.95rem;
  font-weight: 500;
  text-decoration: none;
}
.nav-links a:hover {
  color: var(--text);
  background: var(--bg-soft);
}
.nav-mobile-extra {
  display: none;
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-left: auto;
}
.lang-switch,
.login-link {
  display: inline-flex;
  align-items: center;
  padding: 8px 11px;
  border-radius: 9px;
  font-size: 0.93rem;
  font-weight: 600;
  text-decoration: none;
}
.lang-switch {
  color: var(--text-muted);
}
.lang-switch > span[aria-hidden] {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.lang-switch .icon {
  width: 17px;
  height: 17px;
}
.login-link {
  color: var(--text);
}
.lang-switch:hover,
.login-link:hover {
  background: var(--bg-soft);
  color: var(--text);
}
.header-cta {
  margin-left: 6px;
}
.menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid var(--border);
  border-radius: 11px;
  background: var(--surface);
  color: var(--text);
  cursor: pointer;
}
.menu-toggle .icon-close,
.menu-toggle[aria-expanded='true'] .icon-open {
  display: none;
}
.menu-toggle[aria-expanded='true'] .icon-close {
  display: block;
}

/* ---------- Hero ---------- */

.hero {
  position: relative;
  isolation: isolate;
  padding-bottom: 24px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  background:
    radial-gradient(55% 45% at 50% 0%, rgba(99, 102, 241, 0.16), transparent 70%),
    radial-gradient(35% 35% at 88% 18%, rgba(236, 72, 153, 0.1), transparent 70%),
    radial-gradient(35% 35% at 10% 30%, rgba(168, 85, 247, 0.1), transparent 70%);
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(91, 91, 214, 0.18) 1px, transparent 1px);
  background-size: 22px 22px;
  -webkit-mask-image: radial-gradient(60% 50% at 50% 20%, #000 20%, transparent 75%);
  mask-image: radial-gradient(60% 50% at 50% 20%, #000 20%, transparent 75%);
  opacity: 0.6;
}
.hero-inner {
  padding-top: clamp(48px, 7vw, 96px);
  text-align: center;
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 26px;
  padding: 6px 14px 6px 11px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--surface);
  box-shadow: var(--shadow);
  color: var(--text-muted);
  font-size: 0.86rem;
  font-weight: 600;
}
.badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--grad);
  box-shadow: 0 0 0 4px rgba(168, 85, 247, 0.16);
  animation: pulse 2.4s ease-in-out infinite;
}
@keyframes pulse {
  50% {
    box-shadow: 0 0 0 7px rgba(168, 85, 247, 0.06);
  }
}
.hero h1 {
  max-width: 980px;
  margin: 0 auto;
  font-size: clamp(2.45rem, 1.3rem + 4.6vw, 4.6rem);
  line-height: 1.03;
  letter-spacing: -0.04em;
  font-weight: 750;
  text-wrap: balance;
}
.hero-lead {
  max-width: 700px;
  margin: 24px auto 0;
  color: var(--text-muted);
  font-size: clamp(1.08rem, 1rem + 0.45vw, 1.27rem);
  line-height: 1.55;
  text-wrap: pretty;
}
.hero-form {
  display: flex;
  gap: 8px;
  max-width: 540px;
  margin: 34px auto 0;
  padding: 6px;
  border: 1px solid var(--border-strong);
  border-radius: 16px;
  background: var(--surface);
  box-shadow: var(--shadow-lift);
  transition: border-color 0.15s, box-shadow 0.15s;
}
.hero-form:focus-within {
  border-color: var(--accent);
  box-shadow: var(--ring), var(--shadow-lift);
}
.hero-form input {
  flex: 1;
  min-width: 0;
  height: 50px;
  padding: 0 14px;
  border: 0;
  background: transparent;
  color: var(--text);
  font: inherit;
  font-size: 1.02rem;
}
.hero-form input:focus {
  outline: none;
}
.hero-form input::placeholder {
  color: var(--text-faint);
}
.hero-note {
  margin: 14px 0 0;
  color: var(--text-muted);
  font-size: 0.9rem;
}
.hero-note a {
  font-weight: 600;
  white-space: nowrap;
}
.trust {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 28px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
  color: var(--text-muted);
  font-size: 0.93rem;
  font-weight: 500;
}
.trust li {
  display: flex;
  align-items: center;
  gap: 7px;
}
.trust .icon {
  color: var(--ok);
}
.hero-visual {
  position: relative;
  max-width: calc(1100px + 2 * var(--gutter));
  margin-top: clamp(48px, 6vw, 76px);
}
.float-card {
  position: absolute;
  z-index: 2;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  max-width: 310px;
  padding: 14px 16px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: var(--surface);
  box-shadow: var(--shadow-lift);
  font-size: 0.84rem;
  line-height: 1.45;
  text-align: left;
  animation: bob 6s ease-in-out infinite;
}
.float-card strong {
  display: block;
  margin-bottom: 2px;
  color: var(--text);
  font-size: 0.9rem;
}
.float-card > span:last-child > span {
  color: var(--text-muted);
}
.float-icon {
  display: grid;
  flex: none;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: var(--tone-soft);
  color: var(--tone);
}
.float-1 {
  top: 26%;
  left: 0;
}
.float-2 {
  right: 0;
  bottom: 12%;
  animation-delay: -3s;
}
@keyframes bob {
  50% {
    transform: translateY(-8px);
  }
}

/* ---------- Rahmen fuer Bildschirmfotos und Platzhalter ---------- */

.frame-browser {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: var(--surface);
  box-shadow: var(--shadow-frame);
}
.hero-visual .frame-browser {
  margin-inline: clamp(0px, 4vw, 56px);
}
.frame-bar {
  position: relative;
  display: flex;
  align-items: center;
  height: 38px;
  padding: 0 14px;
  border-bottom: 1px solid var(--border);
  background: var(--bg-soft);
}
.frame-dots {
  display: flex;
  gap: 7px;
}
.frame-dots i {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--border-strong);
}
.frame-url {
  position: absolute;
  left: 50%;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  max-width: 50%;
  padding: 3px 12px;
  overflow: hidden;
  transform: translateX(-50%);
  border-radius: 7px;
  background: var(--surface);
  color: var(--text-faint);
  font-size: 0.75rem;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.screen {
  position: relative;
  overflow: hidden;
  container-type: inline-size;
  background: var(--sk-bg);
}
.screen-wide {
  --u: 1cqw;
  aspect-ratio: 16 / 10;
}
.screen-phone {
  --u: 2.7cqw;
  aspect-ratio: 1 / 2;
  border-radius: 32px;
}
.screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top left;
}
.frame-phone {
  position: relative;
  width: min(290px, 78%);
  margin: 0 auto;
  padding: 10px;
  border-radius: 44px;
  background: #15161f;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.06) inset, var(--shadow-frame);
}
.phone-notch {
  position: absolute;
  top: 20px;
  left: 50%;
  z-index: 3;
  width: 30%;
  height: 22px;
  transform: translateX(-50%);
  border-radius: 12px;
  background: #05060a;
}

/* Solange ein Bildschirmfoto fehlt: gestaltete App-Skizze mit Hinweis „Bildschirmfotos folgen bald“ */
.shot-ph {
  position: absolute;
  inset: 0;
}
.shot-soon {
  position: absolute;
  inset: 0;
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6%;
  background: radial-gradient(ellipse 70% 60% at 50% 55%, color-mix(in srgb, var(--sk-bg) 78%, transparent) 0%, transparent 100%);
}
.shot-soon-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  max-width: min(100%, 420px);
  padding: 16px 24px 18px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: color-mix(in srgb, var(--surface) 90%, transparent);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-lift);
  text-align: center;
}
.shot-soon-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 5px 12px;
  border-radius: 999px;
  background: var(--grad);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  white-space: nowrap;
}
.shot-soon-title {
  color: var(--text-muted);
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.35;
}
.frame-phone .shot-soon {
  padding: 7%;
}
.frame-phone .shot-soon-badge .icon {
  display: none;
}
.frame-phone .shot-soon-card {
  padding: 12px 12px 14px;
}
.frame-phone .shot-soon-badge {
  padding: 4px 10px;
  font-size: 0.7rem;
  white-space: normal;
}
.frame-phone .shot-soon-title {
  font-size: 0.8rem;
}

/* Skelett-Oberflaeche (Platzhalter in App-Optik). Masse relativ zur Rahmenbreite (--u). */
.sk {
  position: absolute;
  inset: 0;
  color: var(--text);
}
.sk b,
.sk i {
  display: block;
}
.sk-app {
  display: grid;
  grid-template-columns: calc(6 * var(--u)) 1fr;
}
.sk-rail {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: calc(2.2 * var(--u));
  padding-top: calc(1.8 * var(--u));
  border-right: 1px solid var(--sk-border);
  background: var(--sk-rail);
}
.sk-logo {
  width: calc(3 * var(--u));
  height: calc(3 * var(--u));
  margin-bottom: calc(0.8 * var(--u));
  border-radius: calc(0.8 * var(--u));
  background: var(--grad);
}
.sk-dot {
  width: calc(1.6 * var(--u));
  height: calc(1.6 * var(--u));
  border-radius: 50%;
  background: var(--sk-line);
}
.sk-dot.on {
  background: var(--accent);
  box-shadow: 0 0 0 calc(0.6 * var(--u)) var(--accent-soft);
}
.sk-main {
  display: flex;
  flex-direction: column;
  gap: calc(1.5 * var(--u));
  min-width: 0;
  padding: calc(1.8 * var(--u)) calc(2.2 * var(--u));
  overflow: hidden;
}
.sk-top {
  display: flex;
  align-items: center;
  gap: calc(1.5 * var(--u));
}
.sk-top > .sk-line {
  flex: none;
}
.sk-search {
  width: calc(22 * var(--u));
  height: calc(2.8 * var(--u));
  margin-left: auto;
  border: 1px solid var(--sk-border);
  border-radius: calc(1.4 * var(--u));
  background: var(--sk-card);
}
.sk-bell {
  width: calc(2.8 * var(--u));
  height: calc(2.8 * var(--u));
  border: 1px solid var(--sk-border);
  border-radius: 50%;
  background: var(--sk-card);
}
.sk-line {
  height: var(--u);
  min-width: 0;
  border-radius: var(--u);
  background: var(--sk-line);
}
.sk-line.t-strong {
  height: calc(1.25 * var(--u));
  background: var(--sk-line-strong);
}
.w10 { width: 10%; }
.w12 { width: 12%; }
.w14 { width: 14%; }
.w15 { width: 15%; }
.w20 { width: 20%; }
.w22 { width: 22%; }
.w26 { width: 26%; }
.w28 { width: 28%; }
.w30 { width: 30%; }
.w34 { width: 34%; }
.w35 { width: 35%; }
.w40 { width: 40%; }
.w45 { width: 45%; }
.w50 { width: 50%; }
.w55 { width: 55%; }
.w58 { width: 58%; }
.w60 { width: 60%; }
.w65 { width: 65%; }
.w70 { width: 70%; }
.w72 { width: 72%; }
.w75 { width: 75%; }
.w80 { width: 80%; }
.w85 { width: 85%; }
.w86 { width: 86%; }
.w88 { width: 88%; }
.w90 { width: 90%; }
.sk-tabs {
  display: flex;
  gap: var(--u);
}
.sk-tabs b {
  width: calc(9 * var(--u));
  height: calc(2.3 * var(--u));
  border-radius: calc(1.2 * var(--u));
  background: var(--sk-soft);
  border: 1px solid var(--sk-border);
}
.sk-tabs b.on {
  border-color: color-mix(in srgb, var(--accent) 45%, transparent);
  background: var(--accent-soft);
}
.sk-board {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: calc(1.8 * var(--u));
  min-height: 0;
}
.sk-col {
  display: flex;
  flex-direction: column;
  gap: calc(1.2 * var(--u));
}
.sk-group {
  display: flex;
  flex-direction: column;
  gap: calc(0.85 * var(--u));
  padding: var(--u) calc(1.2 * var(--u));
  border: 1px solid var(--sk-border);
  border-radius: var(--u);
  background: var(--sk-card);
}
.sk-group-head,
.sk-row {
  display: flex;
  align-items: center;
  gap: calc(0.9 * var(--u));
}
.sk-chip {
  flex: none;
  width: calc(1.3 * var(--u));
  height: calc(1.3 * var(--u));
  border-radius: calc(0.4 * var(--u));
  background: var(--tone, var(--sk-line-strong));
}
.sk-check {
  flex: none;
  width: calc(1.35 * var(--u));
  height: calc(1.35 * var(--u));
  border: max(1px, calc(0.15 * var(--u))) solid var(--sk-line-strong);
  border-radius: calc(0.4 * var(--u));
}
.sk-pill {
  flex: none;
  width: calc(6 * var(--u));
  height: calc(1.6 * var(--u));
  margin-left: auto;
  border-radius: var(--u);
  background: var(--tone-soft, var(--sk-soft));
  box-shadow: inset 0 0 0 1px color-mix(in srgb, var(--tone, var(--sk-line-strong)) 30%, transparent);
}
.sk-pill.wide {
  width: calc(10 * var(--u));
}
.sk-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-content: start;
  gap: calc(1.2 * var(--u));
}
.sk-card {
  display: flex;
  flex-direction: column;
  gap: calc(0.85 * var(--u));
  padding: calc(1.3 * var(--u));
  border: 1px solid var(--sk-border);
  border-radius: var(--u);
  background: var(--sk-card);
}
.sk-card-foot {
  display: flex;
  gap: calc(0.6 * var(--u));
  margin-top: calc(0.5 * var(--u));
}
.sk-card-foot .sk-pill {
  margin-left: 0;
}
.sk-digest {
  display: flex;
  justify-content: center;
}
.sk-mail {
  display: flex;
  flex-direction: column;
  gap: var(--u);
  width: 64%;
  padding: calc(2 * var(--u));
  border: 1px solid var(--sk-border);
  border-radius: calc(1.2 * var(--u));
  background: var(--sk-card);
  box-shadow: 0 calc(0.6 * var(--u)) calc(2 * var(--u)) rgba(30, 27, 75, 0.08);
}
.sk-mail .sk-group {
  background: var(--sk-bg);
}
.sk-mail-head {
  display: flex;
  align-items: center;
  gap: var(--u);
}
.sk-logo-sm {
  flex: none;
  width: calc(2.6 * var(--u));
  height: calc(2.6 * var(--u));
  border-radius: calc(0.7 * var(--u));
  background: var(--grad);
}
.sk-sep {
  height: 1px;
  margin: calc(0.3 * var(--u)) 0;
  background: var(--sk-border);
}
.sk-btnrow {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: var(--u);
}
.sk-btn {
  width: calc(12 * var(--u));
  height: calc(2.8 * var(--u));
  border-radius: calc(0.8 * var(--u));
  background: var(--btn);
}
.sk-split {
  display: grid;
  grid-template-columns: 26% 1fr;
  flex: 1;
  gap: calc(1.8 * var(--u));
  min-height: 0;
}
.sk-split-inbox {
  grid-template-columns: 40% 1fr;
}
.sk-split-team {
  grid-template-columns: 1fr 34%;
}
.sk-tree {
  display: flex;
  flex-direction: column;
  gap: calc(0.6 * var(--u));
  padding-right: calc(1.4 * var(--u));
  border-right: 1px solid var(--sk-border);
}
.sk-tree > .sk-line {
  margin-bottom: calc(0.6 * var(--u));
}
.sk-tree-item {
  display: flex;
  align-items: center;
  gap: calc(0.8 * var(--u));
  padding: calc(0.8 * var(--u)) calc(0.9 * var(--u));
  border-radius: calc(0.7 * var(--u));
}
.sk-tree-item.on {
  background: var(--accent-soft);
}
.sk-tree-sub {
  display: flex;
  flex-direction: column;
  gap: calc(0.2 * var(--u));
  margin-left: var(--u);
  padding-left: calc(0.8 * var(--u));
  border-left: 1px dashed var(--sk-line-strong);
}
.sk-detail,
.sk-read,
.sk-log,
.sk-compose {
  display: flex;
  flex-direction: column;
  gap: calc(1.1 * var(--u));
  min-width: 0;
}
.sk-read,
.sk-log {
  padding: calc(1.6 * var(--u));
  border: 1px solid var(--sk-border);
  border-radius: var(--u);
  background: var(--sk-card);
}
.sk-detail-head {
  display: flex;
  align-items: center;
  gap: var(--u);
}
.sk-maillist,
.sk-list {
  display: flex;
  flex-direction: column;
  gap: calc(0.6 * var(--u));
}
.sk-mailrow {
  display: flex;
  align-items: center;
  gap: var(--u);
  padding: calc(0.85 * var(--u)) var(--u);
  border: 1px solid var(--sk-border);
  border-radius: calc(0.8 * var(--u));
  background: var(--sk-card);
}
.sk-mailrow.on {
  border-color: color-mix(in srgb, var(--accent) 50%, transparent);
  background: var(--accent-soft);
}
.sk-mailrow > div,
.sk-logrow > div,
.sk-sig > div,
.sk-push > div {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: calc(0.6 * var(--u));
  min-width: 0;
}
.sk-avatar {
  flex: none;
  width: calc(2.8 * var(--u));
  height: calc(2.8 * var(--u));
  border-radius: 50%;
  background: linear-gradient(135deg, #c7d2fe, #e9d5ff);
}
.sk-avatar.a2 {
  background: linear-gradient(135deg, #fbcfe8, #fde68a);
}
.sk-notice {
  display: flex;
  align-items: center;
  gap: var(--u);
  padding: var(--u) calc(1.2 * var(--u));
  border-radius: calc(0.8 * var(--u));
  background: var(--tone-soft);
  box-shadow: inset 0 0 0 1px color-mix(in srgb, var(--tone) 30%, transparent);
}
.sk-split-inbox .sk-notice {
  margin-top: auto;
}
.sk-lock {
  flex: none;
  width: calc(1.6 * var(--u));
  height: calc(1.6 * var(--u));
  border-radius: calc(0.4 * var(--u));
  background: var(--tone);
}
.sk-faces {
  display: flex;
  margin-left: auto;
}
.sk-faces .sk-avatar + .sk-avatar {
  margin-left: calc(-0.8 * var(--u));
  box-shadow: 0 0 0 2px var(--sk-card);
}
.sk-msg,
.sk-editor {
  display: flex;
  flex-direction: column;
  gap: var(--u);
  padding: calc(1.4 * var(--u));
  border: 1px solid var(--sk-border);
  border-radius: var(--u);
  background: var(--sk-card);
}
.sk-msg .sk-mailrow {
  padding: 0;
  border: 0;
  background: none;
}
.sk-editor {
  border-color: color-mix(in srgb, var(--accent) 45%, transparent);
  box-shadow: 0 0 0 calc(0.4 * var(--u)) var(--accent-soft);
}
.sk-editor-locked {
  border-style: dashed;
  border-color: var(--sk-line-strong);
  box-shadow: none;
  opacity: 0.6;
}
.sk-field {
  display: flex;
  align-items: center;
  gap: var(--u);
  padding-bottom: calc(0.8 * var(--u));
  border-bottom: 1px solid var(--sk-border);
}
.sk-field .sk-pill {
  margin-left: 0;
}
.sk-text {
  display: flex;
  flex-direction: column;
  gap: calc(0.8 * var(--u));
}
.sk-sig {
  display: flex;
  align-items: center;
  gap: var(--u);
  padding-top: calc(0.8 * var(--u));
  border-top: 1px dashed var(--sk-border);
}
.sk-attach {
  display: flex;
  gap: var(--u);
}
.sk-file {
  width: calc(14 * var(--u));
  height: calc(2.6 * var(--u));
  border: 1px solid var(--sk-border);
  border-radius: calc(0.7 * var(--u));
  background: var(--sk-soft);
}
.sk-logrow {
  display: flex;
  align-items: center;
  gap: var(--u);
}
.sk-logrow .sk-avatar {
  width: calc(2.2 * var(--u));
  height: calc(2.2 * var(--u));
}
.sk-phone {
  display: flex;
  flex-direction: column;
  gap: calc(1.6 * var(--u));
  padding: calc(5.5 * var(--u)) calc(2 * var(--u)) calc(1.5 * var(--u));
}
.sk-status {
  position: absolute;
  top: calc(1.6 * var(--u));
  left: calc(3 * var(--u));
  right: calc(3 * var(--u));
  display: flex;
  justify-content: space-between;
}
.sk-push {
  display: flex;
  align-items: center;
  gap: calc(1.2 * var(--u));
  padding: calc(1.3 * var(--u));
  border: 1px solid var(--sk-border);
  border-radius: calc(1.6 * var(--u));
  background: var(--sk-card);
  box-shadow: 0 calc(0.5 * var(--u)) calc(1.6 * var(--u)) rgba(30, 27, 75, 0.12);
}
.sk-phone-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: calc(0.6 * var(--u));
}
.sk-phone-nav {
  display: flex;
  justify-content: space-around;
  margin-top: auto;
  padding-top: calc(1.2 * var(--u));
  border-top: 1px solid var(--sk-border);
}

/* ---------- Anbieter ---------- */

.providers {
  padding: clamp(40px, 5vw, 64px) 0 clamp(56px, 7vw, 88px);
  text-align: center;
}
.providers-title {
  margin: 0 0 22px;
  color: var(--text-muted);
  font-family: var(--font);
  font-size: 0.95rem;
  font-weight: 600;
}
.chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 14px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--surface);
  color: var(--text);
  font-size: 0.92rem;
  font-weight: 600;
}
.chip .icon {
  color: var(--ok);
}
.chip-soon {
  border-style: dashed;
  background: transparent;
  color: var(--text-muted);
}
.chip-soon .icon {
  color: var(--amber);
}

/* ---------- Abschnitte allgemein ---------- */

.section {
  position: relative;
  padding-block: clamp(72px, 9vw, 120px);
}
.section-soft {
  background: var(--bg-soft);
}
.section-head {
  max-width: 780px;
  margin-bottom: clamp(40px, 5vw, 60px);
}
.section-head.center {
  margin-inline: auto;
  text-align: center;
}
.eyebrow {
  margin: 0 0 12px;
  color: var(--accent-text);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}
.section h2 {
  margin: 0 0 16px;
  font-size: clamp(1.85rem, 1.2rem + 2.4vw, 2.8rem);
  line-height: 1.12;
  letter-spacing: -0.03em;
  text-wrap: balance;
}
.lead {
  margin: 0;
  color: var(--text-muted);
  font-size: clamp(1.05rem, 1rem + 0.3vw, 1.2rem);
  text-wrap: pretty;
}

/* ---------- Problem und Loesung ---------- */

.pain-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.pain {
  padding: 26px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: var(--surface);
}
.pain-icon {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin-bottom: 18px;
  border-radius: 13px;
  background: var(--rose-soft);
  color: var(--rose);
}
.pain h3 {
  margin: 0 0 8px;
  font-size: 1.08rem;
}
.pain p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.95rem;
}
.solution {
  margin-top: clamp(72px, 9vw, 112px);
}
.steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.steps::before {
  content: '';
  position: absolute;
  top: 48px;
  left: 12%;
  right: 12%;
  border-top: 2px dashed color-mix(in srgb, var(--accent) 35%, transparent);
}
.step {
  position: relative;
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: var(--surface);
  box-shadow: var(--shadow);
}
.step-num {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  border-radius: 50%;
  background: var(--grad);
  color: #fff;
  font-weight: 700;
  box-shadow: 0 6px 16px -6px rgba(168, 85, 247, 0.7);
}
.step h3 {
  margin: 0 0 8px;
  font-size: 1.15rem;
}
.step p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.97rem;
}

/* ---------- Funktionen ---------- */

.feature-rows {
  display: flex;
  flex-direction: column;
  gap: clamp(72px, 9vw, 120px);
}
.feature {
  display: grid;
  grid-template-columns: 5fr 7fr;
  align-items: center;
  gap: clamp(32px, 5vw, 72px);
}
.feature.reverse {
  grid-template-columns: 7fr 5fr;
}
.feature.reverse .feature-text {
  order: 2;
}
.feature-phone,
.feature-phone.reverse {
  grid-template-columns: 1fr 1fr;
}
.feature-text h3 {
  margin: 0 0 14px;
  font-size: clamp(1.5rem, 1.1rem + 1.2vw, 2rem);
  letter-spacing: -0.02em;
  line-height: 1.2;
  text-wrap: balance;
}
.feature-text > p:not(.eyebrow) {
  margin: 0;
  color: var(--text-muted);
  font-size: 1.05rem;
}
.feature-visual {
  position: relative;
  isolation: isolate;
}
.feature-visual::before {
  content: '';
  position: absolute;
  inset: 10% 6% -4% 6%;
  z-index: -1;
  border-radius: 40px;
  background: var(--grad);
  opacity: 0.14;
  filter: blur(50px);
}
.feature-phone .feature-visual {
  padding: 36px 0;
  border-radius: 28px;
  background:
    radial-gradient(60% 50% at 50% 30%, rgba(168, 85, 247, 0.14), transparent 70%),
    var(--bg-soft);
}
.feature-phone .feature-visual::before {
  display: none;
}
.checks {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}
.checks li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.checks .icon {
  margin-top: 3px;
  color: var(--accent);
}
.checks.small {
  gap: 9px;
  font-size: 0.95rem;
}
.checks.small .icon {
  margin-top: 2px;
}
.more-title {
  margin: clamp(80px, 9vw, 120px) 0 32px;
  font-size: 1.35rem;
  text-align: center;
}
.more-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px 32px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.more-grid li,
.team-list li {
  display: flex;
  gap: 14px;
}
.mini-icon {
  display: grid;
  flex: none;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: var(--accent-soft);
  color: var(--accent-text);
}
.more-grid h4 {
  margin: 2px 0 4px;
  font-size: 1rem;
}
.more-grid p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.92rem;
}

/* ---------- Karten (Zielgruppen, Sicherheit, Einrichtung) ---------- */

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.card {
  display: flex;
  flex-direction: column;
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: 20px;
  background: var(--surface);
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}
.card:hover {
  transform: translateY(-2px);
  border-color: var(--border-strong);
  box-shadow: var(--shadow-lift);
}
.card-icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 18px;
  border-radius: 14px;
  background: var(--accent-soft);
  color: var(--accent-text);
}
.card-icon.t-ok {
  background: var(--ok-soft);
  color: var(--ok);
}
.card h3 {
  margin: 0 0 8px;
  font-size: 1.18rem;
}
.card > p {
  margin: 0;
  color: var(--text-muted);
}
.audience .checks {
  margin-bottom: 22px;
}
.card > .fit {
  margin: auto 0 0;
  padding-top: 16px;
  border-top: 1px solid var(--border);
  color: var(--text);
  font-size: 0.9rem;
  font-weight: 600;
}
.fit span {
  color: var(--text-faint);
  font-weight: 500;
}
.setup-card .tag {
  align-self: flex-start;
  margin: 0 0 12px;
  padding: 3px 10px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent-text);
  font-size: 0.78rem;
  font-weight: 700;
}

/* ---------- Dunkler Abschnitt (Postfach und Schweiz) ---------- */

.section-dark {
  overflow: hidden;
  background: #12132a;
  color: #e8eaf2;
}
@media (prefers-color-scheme: dark) {
  .section-dark {
    background: #0b0c1c;
  }
}
.dark-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(50% 60% at 12% 0%, rgba(99, 102, 241, 0.38), transparent 70%),
    radial-gradient(40% 55% at 92% 100%, rgba(236, 72, 153, 0.24), transparent 70%),
    radial-gradient(40% 50% at 60% 40%, rgba(168, 85, 247, 0.16), transparent 70%);
}
.section-dark .container {
  position: relative;
}
.section-dark h2,
.section-dark h3 {
  color: #fff;
}
.section-dark .eyebrow {
  color: #c4b5fd;
}
.section-dark .lead {
  color: #bcc1d4;
}
.dark-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.dark-grid li {
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.05);
}
.dark-icon {
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  margin-bottom: 20px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.5), rgba(236, 72, 153, 0.4));
  color: #fff;
}
.dark-grid h3 {
  margin: 0 0 8px;
  font-size: 1.2rem;
}
.dark-grid p {
  margin: 0;
  color: #bcc1d4;
}

/* ---------- Team ---------- */

.team-layout {
  display: grid;
  grid-template-columns: 5fr 7fr;
  align-items: center;
  gap: clamp(32px, 5vw, 64px);
}
.team-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px 26px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.team-list li {
  flex-direction: column;
  gap: 12px;
}
.team-list h3 {
  margin: 0 0 4px;
  font-size: 1.02rem;
}
.team-list p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.93rem;
}

/* ---------- Preise ---------- */

.plan-group {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0 0 18px;
  color: var(--text-faint);
  font-family: var(--font);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.plan-group::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}
.plan-grid + .plan-group {
  margin-top: 52px;
}
.plan-grid {
  display: grid;
  align-items: stretch;
  gap: 20px;
}
.plan-grid-3 {
  grid-template-columns: repeat(3, 1fr);
}
.plan-grid-team {
  grid-template-columns: 1.5fr 1fr;
}
.plan {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 30px 28px 28px;
  border: 1px solid var(--border);
  border-radius: 22px;
  background: var(--surface);
  box-shadow: var(--shadow);
}
.plan-recommended {
  border: 2px solid var(--accent);
  box-shadow: 0 24px 50px -24px rgba(91, 91, 214, 0.55);
}
.plan-featured {
  border: 2px solid transparent;
  background:
    linear-gradient(var(--surface), var(--surface)) padding-box,
    var(--grad) border-box;
  box-shadow: 0 24px 50px -24px rgba(168, 85, 247, 0.5);
}
.plan-badge {
  position: absolute;
  top: -13px;
  left: 26px;
  margin: 0;
  padding: 4px 12px;
  border-radius: 999px;
  background: var(--btn);
  color: #fff;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}
.plan-name {
  margin: 0;
  font-size: 1.3rem;
}
.plan-tagline {
  margin: 2px 0 18px;
  color: var(--text-muted);
  font-size: 0.95rem;
}
.price {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 6px;
  margin: 0 0 4px;
}
.price .cur {
  color: var(--text-muted);
  font-size: 1rem;
  font-weight: 600;
}
.price .amt {
  font-family: var(--font-display);
  font-size: 2.7rem;
  font-weight: 750;
  line-height: 1;
  letter-spacing: -0.035em;
}
.price .per {
  color: var(--text-muted);
  font-size: 0.95rem;
}
.price-request .amt {
  font-size: 2.1rem;
}
.price-extra {
  margin: 6px 0 0;
  color: var(--text-muted);
  font-size: 0.9rem;
}
.price-extra strong {
  color: var(--text);
}
.plan .checks {
  flex: 1;
  margin: 22px 0 26px;
}
.plan-featured .checks {
  display: block;
  columns: 2;
  column-gap: 28px;
}
.plan-featured .checks li {
  margin-bottom: 9px;
  break-inside: avoid;
}
.pricing-notes {
  display: flex;
  flex-direction: column;
  gap: 6px;
  max-width: 920px;
  margin-top: 28px;
  color: var(--text-muted);
  font-size: 0.88rem;
}
.pricing-notes p {
  margin: 0;
}
.pricing-notes strong {
  color: var(--text);
}
.compare-details {
  margin-top: 28px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: var(--surface);
}
.compare-details summary,
.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  list-style: none;
  font-weight: 600;
}
.compare-details summary {
  padding: 18px 22px;
}
.compare-details summary::-webkit-details-marker,
.faq-item summary::-webkit-details-marker {
  display: none;
}
.compare-details summary .icon,
.faq-item summary .icon {
  color: var(--text-faint);
  transition: transform 0.2s;
}
.compare-details[open] summary .icon,
.faq-item[open] summary .icon {
  transform: rotate(180deg);
}
.compare-details .table-wrap {
  border-top: 1px solid var(--border);
}
.compare-details .table-note {
  margin: 0;
  padding: 14px 22px 18px;
  border-top: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 0.88rem;
}
.cta-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 52px;
  padding: 38px 42px;
  border-radius: 26px;
  background:
    radial-gradient(60% 140% at 0% 0%, rgba(139, 92, 246, 0.6), transparent 60%),
    radial-gradient(50% 140% at 100% 100%, rgba(236, 72, 153, 0.45), transparent 60%),
    #1e1b4b;
  color: #fff;
  box-shadow: 0 30px 60px -30px rgba(30, 27, 75, 0.7);
}
.cta-band h3 {
  margin: 0 0 6px;
  color: #fff;
  font-size: 1.55rem;
  letter-spacing: -0.02em;
}
.cta-band p {
  margin: 0;
  color: #dcdcf5;
}
.cta-band .btn {
  flex: none;
}

/* ---------- Tabellen ---------- */

.table-hint {
  display: none;
  margin: 0 0 10px;
  color: var(--text-faint);
  font-size: 0.82rem;
  text-align: right;
}
.table-wrap {
  position: relative;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.92rem;
}
.table th,
.table td {
  padding: 14px 16px;
  border-top: 1px solid var(--border);
  text-align: left;
  vertical-align: top;
}
.table thead th,
.table thead td {
  border-top: 0;
  font-weight: 700;
}
.table tbody th {
  min-width: 190px;
  color: var(--text);
  font-weight: 600;
}
.table td {
  min-width: 120px;
  color: var(--text-muted);
}
.table-plans {
  min-width: 860px;
}
.table-plans thead th {
  font-size: 1rem;
}
#vergleich .table-wrap,
#compare .table-wrap {
  border: 1px solid var(--border);
  border-radius: 20px;
  background: var(--surface);
  box-shadow: var(--shadow);
}
.table-compare {
  min-width: 780px;
}
.table-compare th,
.table-compare td {
  padding: 15px 18px;
  vertical-align: middle;
}
.table-compare thead th {
  color: var(--text-muted);
  font-size: 0.88rem;
}
.table-compare thead th.us {
  color: var(--accent-text);
  font-size: 1rem;
  white-space: nowrap;
}
.table-compare .us {
  background: color-mix(in srgb, var(--accent-soft) 70%, transparent);
  color: var(--text);
  font-weight: 600;
}
.table-compare td.yes .icon {
  color: var(--ok);
}
.table-compare td.us.yes .icon {
  width: 22px;
  height: 22px;
  padding: 4px;
  border-radius: 50%;
  background: var(--btn);
  color: #fff;
  stroke-width: 2.5;
}
.table-compare td.no .icon {
  color: var(--text-faint);
  opacity: 0.7;
}
.table-compare td.txt {
  font-size: 0.87rem;
}

/* ---------- Haeufige Fragen ---------- */

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  border: 1px solid var(--border);
  border-radius: 16px;
  background: var(--surface);
  transition: border-color 0.15s;
}
.faq-item[open] {
  border-color: var(--border-strong);
}
.faq-item summary {
  padding: 20px 22px;
  font-size: 1.04rem;
}
.faq-item summary:hover span {
  color: var(--accent-text);
}
.faq-a {
  padding: 0 22px 20px;
  color: var(--text-muted);
}
.faq-a p {
  margin: 0;
}

/* ---------- Warteliste ---------- */

.waitlist {
  overflow: hidden;
}
.waitlist-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(45% 55% at 10% 20%, rgba(99, 102, 241, 0.13), transparent 70%),
    radial-gradient(40% 50% at 95% 80%, rgba(236, 72, 153, 0.1), transparent 70%);
}
.waitlist-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: start;
  gap: clamp(40px, 6vw, 88px);
}
.waitlist-pitch h2 {
  margin: 0 0 16px;
  font-size: clamp(2rem, 1.3rem + 2.6vw, 3rem);
}
.waitlist-pitch .checks {
  margin-top: 26px;
}
.privacy-note {
  margin-top: 34px;
  padding: 18px 20px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: var(--surface);
  color: var(--text-muted);
  font-size: 0.9rem;
}
.privacy-note p {
  margin: 0;
}
.privacy-title {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px !important;
  color: var(--text);
  font-weight: 700;
}
.privacy-title .icon {
  color: var(--ok);
}
.form-card {
  scroll-margin-top: calc(var(--header-h) + 16px);
  padding: clamp(24px, 3vw, 36px);
  border: 1px solid var(--border);
  border-radius: 24px;
  background: var(--surface);
  box-shadow: var(--shadow-frame);
}
.form-card h3 {
  margin: 0 0 20px;
  font-size: 1.3rem;
}
.form {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
}
.field label {
  font-size: 0.9rem;
  font-weight: 600;
}
.optional {
  color: var(--text-faint);
  font-weight: 400;
}
.req {
  color: var(--rose);
}
.field input[type='text'],
.field input[type='email'],
.field select {
  width: 100%;
  height: 46px;
  padding: 0 14px;
  border: 1px solid var(--border-strong);
  border-radius: 11px;
  background: var(--input-bg);
  color: var(--text);
  font: inherit;
  font-size: 1rem;
  transition: border-color 0.15s, box-shadow 0.15s;
}
.field select {
  padding-right: 38px;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%236b7185' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 18px;
}
.field input:focus,
.field select:focus {
  border-color: var(--accent);
  box-shadow: var(--ring);
  outline: none;
}
.was-validated .field input:invalid,
.was-validated .field select:invalid {
  border-color: var(--rose);
}
.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.field-check {
  flex-direction: row;
  align-items: flex-start;
  gap: 11px;
}
.field-check input {
  flex: none;
  width: 20px;
  height: 20px;
  margin: 2px 0 0;
  accent-color: var(--btn);
}
.field-check label {
  color: var(--text-muted);
  font-size: 0.87rem;
  font-weight: 400;
  line-height: 1.5;
}
.was-validated .field-check input:invalid + label {
  color: var(--rose-text);
}
.hp {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.form-mailto {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 2px 0 0;
  padding: 12px 14px;
  border-radius: 12px;
  background: var(--accent-soft);
  color: var(--accent-text);
  font-size: 0.87rem;
  line-height: 1.5;
}
.form-mailto .icon {
  flex: none;
  margin-top: 2px;
}
.form-mailto strong {
  font-weight: 700;
}
.form-hint {
  margin: -6px 0 0;
  color: var(--text-faint);
  font-size: 0.8rem;
}
.form-status {
  padding: 14px 16px;
  border-radius: 12px;
  font-size: 0.95rem;
}
.form-status p {
  margin: 0;
}
.form-status p + p {
  margin-top: 6px;
}
.form-status.ok {
  background: var(--ok-soft);
  color: var(--ok);
}
.form-status.info {
  background: var(--accent-soft);
  color: var(--accent-text);
}
.form-status.err {
  background: var(--rose-soft);
  color: var(--rose-text);
}

/* ---------- Fusszeile ---------- */

.site-footer {
  padding: 64px 0 32px;
  border-top: 1px solid var(--border);
  background: var(--bg-soft);
  font-size: 0.93rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 40px;
}
.footer-brand p {
  max-width: 360px;
  margin: 14px 0 0;
  color: var(--text-muted);
}
.footer-brand .footer-muted {
  color: var(--text-faint);
  font-size: 0.86rem;
}
.footer-col h2 {
  margin: 0 0 14px;
  color: var(--text-faint);
  font-family: var(--font);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: var(--text-muted);
}
.footer-col a {
  color: var(--text-muted);
  text-decoration: none;
}
.footer-col a:hover {
  color: var(--text);
  text-decoration: underline;
}
.footer-bottom {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 8px 24px;
  margin-top: 48px;
  padding-top: 24px;
  color: var(--text-faint);
  font-size: 0.83rem;
}
.footer-bottom::before {
  content: '';
  position: absolute;
  top: 0;
  left: var(--gutter);
  right: var(--gutter);
  height: 1px;
  background: var(--border);
}
.footer-bottom p {
  margin: 0;
}

/* ---------- Mobile Handlungsleiste ---------- */

.mobile-cta {
  display: none;
}

/* ---------- Rechtsseiten, 404 ---------- */

.legal {
  min-height: 55vh;
}
.legal .lead {
  margin-bottom: 28px;
}
.legal h1 {
  margin: 0 0 24px;
  font-size: clamp(2rem, 1.4rem + 2.4vw, 3rem);
  letter-spacing: -0.03em;
  line-height: 1.1;
}
.legal-head {
  margin-bottom: 32px;
}
.legal-head h1 {
  margin-bottom: 12px;
}
.legal-meta {
  display: inline-block;
  margin: 0;
  padding: 4px 12px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent-text);
  font-size: 0.85rem;
  font-weight: 600;
}
.legal-note {
  margin: 14px 0 0;
  color: var(--text-muted);
  font-size: 0.92rem;
}
.legal-toc {
  margin: 0 0 40px;
  padding: 20px 24px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: var(--bg-soft);
}
.legal-toc-title {
  margin: 0 0 10px;
  font-weight: 700;
}
.legal-toc ul {
  margin: 0;
  padding: 0;
  list-style: none;
  columns: 2;
  column-gap: 32px;
}
.legal-toc li {
  margin: 0;
  padding: 3px 0;
  break-inside: avoid;
  font-size: 0.93rem;
}
.legal-toc a {
  color: var(--text-muted);
  text-decoration: none;
}
.legal-toc a:hover {
  color: var(--accent-text);
  text-decoration: underline;
}
.legal-soon {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  margin-bottom: 32px;
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: var(--surface);
  box-shadow: var(--shadow);
}
.legal-soon .card-icon {
  flex: none;
  margin: 0;
}
.legal-soon p {
  margin: 0;
}
.legal-soon p + p {
  margin-top: 8px;
  color: var(--text-muted);
}
.legal-back {
  margin: 40px 0 0;
}

/* Fliesstext der Rechtstexte */
.prose {
  color: var(--text);
  overflow-wrap: break-word;
}
.prose h2 {
  scroll-margin-top: calc(var(--header-h) + 16px);
  margin: 48px 0 14px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  font-size: 1.45rem;
  letter-spacing: -0.015em;
  line-height: 1.25;
}
.prose > h2:first-child {
  margin-top: 0;
  padding-top: 0;
  border-top: 0;
}
.prose h3 {
  scroll-margin-top: calc(var(--header-h) + 16px);
  margin: 30px 0 10px;
  font-size: 1.1rem;
  line-height: 1.35;
}
.prose p,
.prose ul,
.prose ol {
  margin: 0 0 14px;
}
.prose ul,
.prose ol {
  padding-left: 1.3em;
}
.prose li {
  margin: 5px 0;
}
.prose li::marker {
  color: var(--text-faint);
}
.prose strong {
  font-weight: 650;
}
.prose code {
  padding: 1px 6px;
  border-radius: 6px;
  background: var(--bg-soft);
  font-family: ui-monospace, 'Cascadia Mono', Consolas, monospace;
  font-size: 0.88em;
}
.prose blockquote {
  margin: 0 0 16px;
  padding: 12px 18px;
  border-left: 3px solid var(--accent);
  border-radius: 0 12px 12px 0;
  background: var(--accent-soft);
}
.prose blockquote p {
  margin: 0;
}
.prose hr {
  margin: 32px 0;
  border: 0;
  border-top: 1px solid var(--border);
}
.prose-table {
  margin: 4px 0 20px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: var(--surface);
}
.prose-table .table {
  font-size: 0.88rem;
}
.prose-table .table th,
.prose-table .table td {
  min-width: 0;
  padding: 11px 14px;
}
.prose-table .table thead th {
  background: var(--bg-soft);
  color: var(--text);
  font-size: 0.85rem;
}
.prose-table .table td {
  color: var(--text-muted);
}
.prose-table .table td:first-child {
  color: var(--text);
  font-weight: 600;
}
@media (max-width: 720px) {
  /* Breite Tabellen als Karten: je Zeile ein Block, jede Zelle mit ihrer Spaltenbeschriftung */
  .prose-table .table-wide thead {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
  }
  .prose-table .table-wide,
  .prose-table .table-wide tbody,
  .prose-table .table-wide tr,
  .prose-table .table-wide td {
    display: block;
  }
  .prose-table .table-wide tr {
    padding: 12px 14px;
    border-top: 1px solid var(--border);
  }
  .prose-table .table-wide tr:first-child {
    border-top: 0;
  }
  .prose-table .table-wide td {
    padding: 2px 0;
    border: 0;
  }
  .prose-table .table-wide td + td::before {
    content: attr(data-label) ': ';
    color: var(--text-faint);
    font-weight: 600;
  }
  .prose-table .table-wide td:first-child {
    margin-bottom: 4px;
  }
  .legal-toc ul {
    columns: 1;
  }
  .legal-soon {
    flex-direction: column;
  }
  .prose h2 {
    font-size: 1.25rem;
  }
}

/* ---------- Anpassungen fuer kleinere Bildschirme ---------- */

@media (max-width: 1160px) {
  .float-1 {
    left: -6px;
  }
  .float-2 {
    right: -6px;
  }
  .more-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 1080px) {
  .menu-toggle {
    display: inline-flex;
  }
  .site-nav {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    display: none;
    max-height: calc(100dvh - var(--header-h));
    margin: 0;
    padding: 8px var(--gutter) 22px;
    overflow-y: auto;
    border-bottom: 1px solid var(--border);
    background: var(--bg);
    box-shadow: var(--shadow-lift);
  }
  .menu-open .site-nav {
    display: block;
  }
  .nav-links {
    flex-direction: column;
    gap: 0;
  }
  .nav-links a {
    padding: 14px 8px;
    border-bottom: 1px solid var(--border);
    border-radius: 0;
    color: var(--text);
    font-size: 1.05rem;
  }
  .nav-mobile-extra {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 18px;
  }
  .nav-mobile-row {
    display: flex;
    gap: 12px;
  }
  .nav-mobile-link {
    display: flex;
    flex: 1;
    align-items: center;
    justify-content: center;
    gap: 8px;
    height: 46px;
    border: 1px solid var(--border);
    border-radius: 12px;
    color: var(--text);
    font-weight: 600;
    text-decoration: none;
  }
  .nav-mobile-link .icon {
    width: 18px;
    height: 18px;
  }
  .pain-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 1000px) {
  .float-card {
    display: none;
  }
  .plan {
    padding: 28px 22px 22px;
  }
  .price .amt {
    font-size: 2.3rem;
  }
}

@media (max-width: 960px) {
  .feature,
  .feature.reverse,
  .feature-phone,
  .feature-phone.reverse {
    grid-template-columns: 1fr;
  }
  .feature.reverse .feature-text {
    order: 0;
  }
  .feature-text {
    max-width: 640px;
  }
  .team-layout {
    grid-template-columns: 1fr;
  }
  .card-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .plan-grid-team {
    grid-template-columns: 1fr;
  }
  .waitlist-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer-brand {
    grid-column: 1 / -1;
  }
  .dark-grid {
    grid-template-columns: 1fr;
    max-width: 640px;
    margin-inline: auto;
  }
}

@media (max-width: 760px) {
  .plan-grid-3 {
    grid-template-columns: 1fr;
    max-width: 560px;
    margin-inline: auto;
  }
}

@media (max-width: 860px) {
  .plan-grid-team {
    max-width: 560px;
    margin-inline: auto;
  }
  .plan-featured .checks {
    columns: 1;
  }
  .steps {
    grid-template-columns: 1fr;
    max-width: 560px;
    margin-inline: auto;
  }
  .steps::before {
    top: 24px;
    bottom: 24px;
    left: 49px;
    right: auto;
    border-top: 0;
    border-left: 2px dashed color-mix(in srgb, var(--accent) 35%, transparent);
  }
  .float-2 {
    display: none;
  }
  .cta-band {
    flex-direction: column;
    align-items: flex-start;
    padding: 30px 26px;
  }
}

@media (max-width: 720px) {
  .mobile-cta {
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: calc(12px + env(safe-area-inset-bottom));
    z-index: 40;
    display: block;
    transform: translateY(160%);
    transition: transform 0.25s ease;
  }
  .mobile-cta.is-visible {
    transform: none;
  }
  .mobile-cta .btn {
    box-shadow: 0 14px 32px -10px rgba(91, 91, 214, 0.75);
  }
  .float-1 {
    display: none;
  }
}

@media (max-width: 640px) {
  :root {
    --gutter: 16px;
    --header-h: 62px;
  }
  body {
    font-size: 1rem;
  }
  .header-cta,
  .lang-switch {
    display: none;
  }
  .brand {
    font-size: 1.02rem;
  }
  .hero-form {
    flex-direction: column;
    padding: 8px;
  }
  .hero-form input {
    flex: none;
    height: 48px;
    border: 1px solid var(--border);
    border-radius: 11px;
  }
  .hero-form .btn {
    width: 100%;
  }
  .trust {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 14px;
    max-width: 360px;
    margin-inline: auto;
    text-align: left;
    font-size: 0.86rem;
  }
  .trust li {
    align-items: flex-start;
  }
  .hero-visual .frame-browser {
    margin-inline: 0;
    border-radius: 12px;
  }
  .frame-bar {
    height: 30px;
  }
  .frame-dots i {
    width: 8px;
    height: 8px;
  }
  .frame-url {
    font-size: 0.68rem;
  }
  .shot-soon-card {
    gap: 5px;
    padding: 10px 14px 12px;
    border-radius: 14px;
  }
  .shot-soon-badge {
    gap: 5px;
    padding: 4px 10px;
    font-size: 0.72rem;
  }
  .shot-soon-title {
    font-size: 0.78rem;
  }
  .pain-grid,
  .card-grid,
  .more-grid,
  .team-list {
    grid-template-columns: 1fr;
  }
  .table-hint {
    display: block;
  }
  .compare-details .table-hint {
    margin: 12px 18px 8px;
  }
  .pain-grid {
    gap: 12px;
  }
  .pain {
    display: grid;
    grid-template-columns: auto 1fr;
    column-gap: 16px;
    padding: 20px !important;
  }
  .pain-icon {
    grid-row: span 2;
    margin: 0;
  }
  .team-list li {
    flex-direction: row;
    gap: 14px;
  }
  .field-row {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .price .amt {
    font-size: 2.4rem;
  }
  .plan {
    padding: 28px 22px 22px;
  }
  .card,
  .pain,
  .step,
  .dark-grid li {
    padding: 22px;
  }
  .faq-item summary {
    padding: 18px;
    font-size: 1rem;
  }
  .faq-a {
    padding: 0 18px 18px;
  }
  .providers .chip {
    padding: 7px 12px;
    font-size: 0.86rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}
