/* ==========================================================================
   Konformix — Marketing Landing Page
   Reines statisches CSS, kein Build-Step.
   ========================================================================== */

:root {
  /* Farben */
  --ink: #16162E;
  --ink-2: #0F172A;
  --ink-soft: #44445F;
  --muted: #6B6B82;
  --canvas: #F4F4FA;
  --white: #FFFFFF;
  --line: #E6E6F0;
  --line-soft: #EFEFF6;
  --magenta: #E5197F;
  --purple: #7C3AED;
  --plum: #A21CAF;
  --green: #16A34A;
  --green-soft: #E7F6EC;

  --grad: linear-gradient(120deg, #E5197F, #A21CAF, #7C3AED);
  --grad-soft: linear-gradient(120deg, rgba(229,25,127,0.10), rgba(124,58,237,0.10));

  /* Form */
  --radius: 18px;
  --radius-sm: 12px;
  --radius-lg: 28px;
  --shadow-sm: 0 1px 2px rgba(16,16,46,0.04), 0 4px 12px rgba(16,16,46,0.05);
  --shadow-md: 0 8px 30px rgba(16,16,46,0.08);
  --shadow-lg: 0 24px 60px rgba(16,16,46,0.12);

  /* Typo */
  --font-sans: "Plus Jakarta Sans", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, "SF Mono", Menlo, Consolas, monospace;

  /* Layout */
  --maxw: 1140px;
  --header-h: 72px;
}

/* --------------------------------------------------------------------------
   Reset / Basis
   -------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation: none !important; transition: none !important; }
}

img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4 { margin: 0; line-height: 1.15; letter-spacing: -0.02em; font-weight: 800; }
p { margin: 0; }

.container {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: 24px;
}

/* Skip-Link für a11y */
.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--ink);
  color: #fff;
  padding: 12px 18px;
  border-radius: 0 0 var(--radius-sm) 0;
  z-index: 1000;
}
.skip-link:focus { left: 0; }

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

/* Helper */
.grad-text {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.mono { font-family: var(--font-mono); }
.eyebrow {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--purple);
  margin-bottom: 14px;
  display: inline-block;
}

/* --------------------------------------------------------------------------
   Buttons
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 0.97rem;
  padding: 13px 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
  white-space: nowrap;
  line-height: 1;
}
.btn svg { width: 18px; height: 18px; }
.btn-primary {
  background: var(--grad);
  color: #fff;
  box-shadow: 0 8px 22px rgba(124,58,237,0.28);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 30px rgba(124,58,237,0.38); }
.btn-ghost {
  background: var(--white);
  color: var(--ink);
  border-color: var(--line);
}
.btn-ghost:hover { border-color: var(--purple); color: var(--purple); transform: translateY(-2px); }
.btn-dark {
  background: var(--ink);
  color: #fff;
}
.btn-dark:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-block { width: 100%; }
.btn-sm { padding: 10px 16px; font-size: 0.9rem; }

/* --------------------------------------------------------------------------
   Header
   -------------------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.82);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--line-soft);
}
.header-inner {
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-weight: 800;
  font-size: 1.22rem;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.brand img { width: 34px; height: 34px; }
.nav-main { display: flex; align-items: center; gap: 30px; }
.nav-main a {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--ink-soft);
  transition: color .15s ease;
}
.nav-main a:hover { color: var(--ink); }
.header-actions { display: flex; align-items: center; gap: 12px; }

/* Mobile-Menü Toggle */
.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  width: 44px;
  height: 44px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  color: var(--ink);
}
.nav-toggle svg { width: 22px; height: 22px; }
.nav-toggle .icon-close { display: none; }
.nav-toggle[aria-expanded="true"] .icon-open { display: none; }
.nav-toggle[aria-expanded="true"] .icon-close { display: block; }

/* --------------------------------------------------------------------------
   Sections allgemein
   -------------------------------------------------------------------------- */
section { position: relative; }
.section-pad { padding-block: 96px; }
.section-head {
  max-width: 680px;
  margin: 0 auto 56px;
  text-align: center;
}
.section-head h2 {
  font-size: clamp(1.9rem, 3.6vw, 2.8rem);
}
.section-head p {
  margin-top: 16px;
  font-size: 1.1rem;
  color: var(--muted);
}
.bg-canvas { background: var(--canvas); }

/* --------------------------------------------------------------------------
   Hero
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  overflow: hidden;
  padding-block: 84px 92px;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(60% 55% at 88% 8%, rgba(124,58,237,0.14), transparent 60%),
    radial-gradient(50% 45% at 5% 92%, rgba(229,25,127,0.10), transparent 60%);
  pointer-events: none;
}
.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 56px;
  align-items: center;
}
.hero h1 {
  font-size: clamp(2.4rem, 5vw, 3.7rem);
  line-height: 1.05;
}
.hero .sub {
  margin-top: 22px;
  font-size: 1.18rem;
  color: var(--ink-soft);
  max-width: 540px;
}
.hero-cta {
  margin-top: 32px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.hero-trust {
  margin-top: 26px;
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
  font-size: 0.92rem;
  color: var(--muted);
}
.hero-trust li { display: inline-flex; align-items: center; gap: 7px; }
.hero-trust svg { width: 17px; height: 17px; color: var(--green); flex: none; }

.pill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 7px 14px 7px 9px;
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ink-soft);
  box-shadow: var(--shadow-sm);
  margin-bottom: 22px;
}
.pill .dot {
  width: 22px; height: 22px;
  border-radius: 999px;
  background: var(--grad);
  display: inline-grid;
  place-items: center;
}
.pill .dot svg { width: 13px; height: 13px; color: #fff; }

/* Hero Visual Card */
.hero-visual {
  position: relative;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 26px;
}
.hero-visual .v-head {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 18px;
}
.hero-visual .v-title { font-weight: 700; font-size: 0.98rem; }
.hero-visual .v-badge {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--green);
  background: var(--green-soft);
  padding: 5px 10px;
  border-radius: 999px;
}

/* --------------------------------------------------------------------------
   Normen-Leiste
   -------------------------------------------------------------------------- */
.norms-bar {
  border-block: 1px solid var(--line-soft);
  background: var(--white);
  padding-block: 30px;
}
.norms-bar .label {
  text-align: center;
  font-family: var(--font-mono);
  font-size: 0.74rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 22px;
}
.norms-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}
.norm-badge {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 12px 18px;
  background: var(--white);
  transition: border-color .15s ease, transform .15s ease;
}
.norm-badge:hover { border-color: var(--purple); transform: translateY(-2px); }
.norm-badge .code {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 1.02rem;
  color: var(--ink);
}
.norm-badge .desc { font-size: 0.8rem; color: var(--muted); }

/* --------------------------------------------------------------------------
   Problem / Lösung
   -------------------------------------------------------------------------- */
.ps-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
}
.ps-card {
  border-radius: var(--radius);
  padding: 36px;
  border: 1px solid var(--line);
}
.ps-card.problem { background: var(--white); }
.ps-card.solution {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
  position: relative;
  overflow: hidden;
}
.ps-card.solution::before {
  content:"";
  position:absolute; inset:0;
  background: radial-gradient(70% 70% at 100% 0%, rgba(124,58,237,0.35), transparent 60%);
}
.ps-card h3 { font-size: 1.45rem; margin-bottom: 8px; position: relative; }
.ps-card .ps-tag {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 16px;
  display: inline-block;
}
.ps-card.problem .ps-tag { color: var(--magenta); }
.ps-card.solution .ps-tag { color: #F3B4DC; position: relative; }
.ps-list { margin-top: 20px; display: grid; gap: 14px; position: relative; }
.ps-list li { display: flex; gap: 12px; align-items: flex-start; font-size: 1rem; }
.ps-list svg { width: 20px; height: 20px; flex: none; margin-top: 2px; }
.ps-card.problem .ps-list svg { color: var(--magenta); }
.ps-card.solution .ps-list svg { color: #7CF0A8; }
.ps-card.solution .ps-list li { color: rgba(255,255,255,0.9); }

/* --------------------------------------------------------------------------
   So funktioniert's
   -------------------------------------------------------------------------- */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  counter-reset: step;
}
.step-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 28px;
  position: relative;
  box-shadow: var(--shadow-sm);
}
.step-num {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 0.85rem;
  width: 42px; height: 42px;
  border-radius: 12px;
  background: var(--grad-soft);
  color: var(--purple);
  display: grid;
  place-items: center;
  margin-bottom: 20px;
}
.step-card .step-icon {
  width: 26px; height: 26px;
  color: var(--purple);
  margin-bottom: 14px;
}
.step-card h3 { font-size: 1.2rem; margin-bottom: 8px; }
.step-card p { color: var(--muted); font-size: 0.97rem; }

/* --------------------------------------------------------------------------
   Features-Grid
   -------------------------------------------------------------------------- */
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.feature {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
  transition: transform .15s ease, box-shadow .2s ease, border-color .2s ease;
}
.feature:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--line); }
.feature .f-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--grad-soft);
  display: grid; place-items: center;
  margin-bottom: 16px;
}
.feature .f-icon svg { width: 22px; height: 22px; color: var(--purple); }
.feature h3 { font-size: 1.05rem; margin-bottom: 7px; }
.feature p { font-size: 0.92rem; color: var(--muted); }

/* --------------------------------------------------------------------------
   USP / Annex SL
   -------------------------------------------------------------------------- */
.usp-grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 56px;
  align-items: center;
}
.usp-copy h2 { font-size: clamp(1.9rem, 3.6vw, 2.7rem); }
.usp-copy .lead { margin-top: 18px; font-size: 1.1rem; color: var(--ink-soft); }
.usp-points { margin-top: 26px; display: grid; gap: 16px; }
.usp-points li { display: flex; gap: 13px; align-items: flex-start; }
.usp-points .chk {
  width: 24px; height: 24px;
  border-radius: 999px;
  background: var(--green-soft);
  display: grid; place-items: center;
  flex: none;
  margin-top: 1px;
}
.usp-points .chk svg { width: 14px; height: 14px; color: var(--green); }
.usp-points b { display:block; font-weight: 700; }
.usp-points span.txt { color: var(--muted); font-size: 0.96rem; }

.annex-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 30px;
}
.annex-card .ac-cap {
  text-align: center;
  font-family: var(--font-mono);
  font-size: 0.74rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 14px;
}

/* --------------------------------------------------------------------------
   Pricing
   -------------------------------------------------------------------------- */
.billing-toggle {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin: 0 auto 14px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 6px;
}
.billing-toggle button {
  border: none;
  background: transparent;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--muted);
  padding: 9px 18px;
  border-radius: 999px;
  cursor: pointer;
  transition: background .2s ease, color .2s ease;
}
.billing-toggle button.is-active {
  background: var(--ink);
  color: #fff;
}
.billing-save {
  font-family: var(--font-mono);
  font-size: 0.74rem;
  font-weight: 600;
  color: var(--green);
  background: var(--green-soft);
  padding: 4px 9px;
  border-radius: 999px;
  margin-left: -4px;
}

.pricing-grid {
  display: grid;
  /* Fünf Tarife: Free, Praxis, Starter, Professional, Business. */
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
  align-items: stretch;
}
.price-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  position: relative;
}
.price-card.featured {
  border-color: transparent;
  box-shadow: var(--shadow-lg);
  background:
    linear-gradient(var(--white), var(--white)) padding-box,
    var(--grad) border-box;
  border: 2px solid transparent;
}
.price-flag {
  position: absolute;
  top: -12px; left: 50%;
  transform: translateX(-50%);
  background: var(--grad);
  color: #fff;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 999px;
  white-space: nowrap;
}
.price-flag.praxis { background: var(--pine, #0f766e); }
.price-card .tier { font-size: 1.18rem; font-weight: 800; }
.price-card .tier-desc { font-size: 0.86rem; color: var(--muted); margin-top: 4px; min-height: 38px; }
.price-amount {
  margin: 16px 0 4px;
  display: flex;
  align-items: baseline;
  gap: 4px;
}
.price-amount .num {
  font-family: var(--font-mono);
  font-size: 2.4rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.price-amount .per { font-size: 0.9rem; color: var(--muted); font-weight: 600; }
.price-sub { font-size: 0.8rem; color: var(--muted); min-height: 18px; margin-bottom: 18px; }
.price-card .btn { margin-bottom: 22px; }
.price-feat { display: grid; gap: 11px; margin-top: auto; }
.price-feat li { display: flex; gap: 10px; align-items: flex-start; font-size: 0.9rem; color: var(--ink-soft); }
.price-feat svg { width: 17px; height: 17px; color: var(--green); flex: none; margin-top: 2px; }
.price-foot {
  text-align: center;
  margin-top: 30px;
  font-size: 0.92rem;
  color: var(--muted);
}

/* --------------------------------------------------------------------------
   Trust / Ehrlichkeit
   -------------------------------------------------------------------------- */
.trust-band {
  background: var(--ink);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 48px;
  position: relative;
  overflow: hidden;
}
.trust-band::before {
  content:"";
  position:absolute; inset:0;
  background: radial-gradient(55% 80% at 92% 12%, rgba(124,58,237,0.32), transparent 60%),
              radial-gradient(45% 70% at 4% 100%, rgba(229,25,127,0.22), transparent 60%);
}
.trust-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 44px;
  align-items: center;
}
.trust-inner h2 { font-size: clamp(1.7rem, 3vw, 2.3rem); }
.trust-inner p { margin-top: 16px; color: rgba(255,255,255,0.82); font-size: 1.05rem; }
.trust-flow { display: grid; gap: 12px; }
.trust-step {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
}
.trust-step .ts-n {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 0.82rem;
  width: 30px; height: 30px;
  border-radius: 8px;
  background: var(--grad);
  display: grid; place-items: center;
  flex: none;
}
.trust-step b { font-size: 0.98rem; }
.trust-step span { display:block; font-size: 0.82rem; color: rgba(255,255,255,0.65); }

/* --------------------------------------------------------------------------
   FAQ
   -------------------------------------------------------------------------- */
.faq-wrap { max-width: 800px; margin-inline: auto; }
.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  margin-bottom: 14px;
  background: var(--white);
  overflow: hidden;
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 24px;
  font-weight: 700;
  font-size: 1.05rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary .faq-ico {
  width: 24px; height: 24px;
  flex: none;
  color: var(--purple);
  transition: transform .2s ease;
}
.faq-item[open] summary .faq-ico { transform: rotate(45deg); }
.faq-item .faq-body {
  padding: 0 24px 24px;
  color: var(--muted);
  font-size: 0.98rem;
}

/* --------------------------------------------------------------------------
   Final CTA
   -------------------------------------------------------------------------- */
.final-cta {
  text-align: center;
  background: var(--grad);
  border-radius: var(--radius-lg);
  padding: 64px 32px;
  color: #fff;
}
.final-cta h2 { font-size: clamp(1.9rem, 4vw, 2.8rem); }
.final-cta p { margin-top: 16px; font-size: 1.12rem; color: rgba(255,255,255,0.92); max-width: 560px; margin-inline: auto; }
.final-cta .cta-row { margin-top: 30px; display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.final-cta .btn-primary {
  background: #fff;
  color: var(--ink);
  box-shadow: 0 10px 30px rgba(0,0,0,0.18);
}
.final-cta .btn-ghost {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.5);
}
.final-cta .btn-ghost:hover { background: rgba(255,255,255,0.12); color: #fff; border-color:#fff; }
.final-cta .fine { margin-top: 18px; font-size: 0.86rem; color: rgba(255,255,255,0.8); }

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */
.site-footer {
  background: var(--ink);
  color: rgba(255,255,255,0.7);
  padding-block: 60px 30px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
}
.footer-brand .brand { color: #fff; margin-bottom: 14px; }
.footer-brand p { font-size: 0.92rem; max-width: 300px; line-height: 1.6; }
.footer-col h4 {
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  font-family: var(--font-mono);
  font-weight: 600;
  margin-bottom: 16px;
}
.footer-col ul { display: grid; gap: 11px; }
.footer-col a { font-size: 0.94rem; transition: color .15s ease; }
.footer-col a:hover { color: #fff; }
.footer-bottom {
  margin-top: 44px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.12);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 0.85rem;
}
.footer-bottom .legal { display: flex; gap: 20px; flex-wrap: wrap; }

/* --------------------------------------------------------------------------
   Sub-Pages (Impressum / Datenschutz)
   -------------------------------------------------------------------------- */
.legal-page { max-width: 760px; margin-inline: auto; padding-block: 64px; }
.legal-page h1 { font-size: clamp(1.8rem, 4vw, 2.6rem); margin-bottom: 8px; }
.legal-page h2 { font-size: 1.3rem; margin-top: 36px; margin-bottom: 10px; }
.legal-page p { color: var(--ink-soft); margin-bottom: 14px; }
.legal-page a { color: var(--purple); font-weight: 600; }
.todo-box {
  background: var(--grad-soft);
  border: 1px solid var(--line);
  border-left: 4px solid var(--magenta);
  border-radius: var(--radius-sm);
  padding: 18px 20px;
  margin: 24px 0 32px;
  font-size: 0.95rem;
  color: var(--ink-soft);
}
.todo-box strong { color: var(--ink); }
.back-home { display: inline-flex; align-items: center; gap: 8px; margin-top: 40px; font-weight: 700; color: var(--purple); }
.back-home svg { width: 18px; height: 18px; }

/* --------------------------------------------------------------------------
   Responsive
   -------------------------------------------------------------------------- */
@media (max-width: 1024px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .price-card .tier-desc { min-height: 0; }
  .hero-grid { grid-template-columns: 1fr; gap: 44px; }
  .hero-visual { max-width: 520px; }
  .usp-grid { grid-template-columns: 1fr; gap: 40px; }
  .trust-inner { grid-template-columns: 1fr; gap: 30px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 760px) {
  body { font-size: 16px; }
  .section-pad { padding-block: 68px; }
  .nav-main, .header-actions .btn { display: none; }
  .header-actions .nav-toggle { display: inline-flex; }
  .nav-toggle { display: inline-flex; }

  /* Mobile-Nav-Panel */
  .nav-main.is-open {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    position: absolute;
    top: var(--header-h);
    left: 0; right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-md);
    padding: 16px 24px 24px;
  }
  .nav-main.is-open a { padding: 12px 0; font-size: 1.05rem; border-bottom: 1px solid var(--line-soft); }
  .nav-main.is-open .mobile-actions { display: flex; flex-direction: column; gap: 10px; margin-top: 14px; }
  .nav-main.is-open .mobile-actions .btn { display: inline-flex; width: 100%; }

  .ps-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .trust-band { padding: 32px 24px; }
  .ps-card { padding: 28px 24px; }
  .final-cta { padding: 48px 24px; }
}

/* mobile-actions standardmäßig versteckt (nur im offenen Mobil-Menü sichtbar) */
.nav-main .mobile-actions { display: none; }

/* --------------------------------------------------------------------------
   Rechtstexte — ergänzende Typografie (nur innerhalb .legal-page,
   wirkt sich nicht auf index.html aus)
   -------------------------------------------------------------------------- */
.legal-page { max-width: 72ch; }
.legal-page .stand { font-family: var(--font-mono); font-size: 0.78rem; color: var(--muted); margin: 10px 0 0; }
.legal-page .lead { font-size: 1.02rem; color: var(--ink-soft); margin: 18px 0 0; }
.legal-page h2 { padding-top: 22px; border-top: 1px solid var(--line-soft); }
.legal-page h2:first-of-type { padding-top: 0; border-top: none; }
.legal-page h3 { font-size: 1.05rem; margin: 26px 0 8px; }
.legal-page ul, .legal-page ol { color: var(--ink-soft); margin: 0 0 16px; padding-left: 22px; }
.legal-page li { margin: 0 0 8px; }
.legal-page address { font-style: normal; color: var(--ink); line-height: 1.7; margin: 0 0 14px; }
.legal-page code { font-family: var(--font-mono); font-size: 0.85em; }
.legal-page table { width: 100%; border-collapse: collapse; margin: 0 0 20px; font-size: 0.86rem; }
.legal-page th, .legal-page td { border: 1px solid var(--line); padding: 9px 11px; text-align: left; vertical-align: top; }
.legal-page th { background: var(--canvas); color: var(--ink); font-weight: 700; font-size: 0.8rem; }
.legal-page .table-scroll { overflow-x: auto; }
.legal-page .note-box {
  background: var(--canvas); border: 1px solid var(--line); border-radius: var(--radius-sm);
  padding: 16px 18px; margin: 0 0 20px;
}
.legal-page .note-box p:last-child { margin-bottom: 0; }
.legal-page .form-box {
  background: var(--canvas); border: 1px dashed var(--muted); border-radius: var(--radius-sm);
  padding: 20px 22px; margin: 0 0 20px;
}
.legal-page .form-box p:last-child { margin-bottom: 0; }
.legal-page .sign-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 26px 40px;
  margin: 26px 0 6px; font-size: 0.82rem; color: var(--muted);
}
.legal-page .sign-grid div { border-top: 1px solid var(--line); padding-top: 8px; }
@media (max-width: 640px) { .legal-page .sign-grid { grid-template-columns: 1fr; } }
.legal-page .draft-note {
  margin: 44px 0 0; padding: 14px 16px;
  border-left: 3px solid var(--line); background: var(--canvas); border-radius: 0 10px 10px 0;
  font-size: 0.84rem; line-height: 1.65; color: var(--muted);
}
@media print {
  .site-header, .site-footer, .back-home, .todo-box { display: none; }
  .legal-page { padding-block: 0; max-width: none; }
}
