/* ============ EndlichWebsite V5 — Design-System "Klar" ============
   Prinzip: Tinte auf Papier. Eine Akzentfarbe, sparsam. Haarlinien
   statt Schatten, grosse praezise Typo, viel Weissraum.
   V5: Produkt-Mockups, UI-Fragmente, Timeline-Steps, Marquee,
   Gruender-Brief, grosser Footer, Micro-Motion. */

@font-face {
  font-family: "Inter";
  src: url("fonts/inter-var.woff2") format("woff2-variations");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

:root {
  --ink: #0b0d12;
  --ink-2: #14171f;
  --slate: #4d5665;
  --slate-light: #8a93a3;
  --line: rgba(11, 13, 18, 0.09);
  --line-strong: rgba(11, 13, 18, 0.16);
  --paper: #ffffff;
  --paper-soft: #f6f6f4;
  --accent: #2447e0;
  --accent-soft: #eef1fd;
  --radius: 18px;
  --radius-sm: 13px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --font: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  font-size: 16.5px;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
::selection { background: var(--accent); color: #fff; }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; border-radius: 4px; }
section[id] { scroll-margin-top: 84px; }

.container { max-width: 1160px; margin: 0 auto; padding: 0 28px; }
.container.narrow { max-width: 920px; }

h1, h2, h3 { line-height: 1.06; letter-spacing: -0.04em; text-wrap: balance; }
h2 {
  font-size: clamp(32px, 4.4vw, 56px);
  font-weight: 640;
  text-align: center;
  color: var(--ink);
}
.muted-h { color: var(--slate-light); font-weight: 640; }
.section { padding: clamp(96px, 12vw, 168px) 0; }
.section-sub {
  text-align: center; color: var(--slate); font-size: clamp(16px, 2vw, 18.5px);
  max-width: 620px; margin: 20px auto 0; line-height: 1.65;
}
.eyebrow {
  display: flex; align-items: center; justify-content: center; gap: 14px;
  color: var(--slate-light); font-weight: 640;
  font-size: 12.5px; letter-spacing: 0.22em; text-transform: uppercase;
  margin-bottom: 22px;
}
.eyebrow::before, .eyebrow::after {
  content: ""; height: 1px; width: 32px; background: var(--line-strong);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  font-weight: 570; border-radius: var(--radius-sm); cursor: pointer;
  letter-spacing: -0.01em; white-space: nowrap;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease),
    background 0.25s var(--ease), border-color 0.25s var(--ease), color 0.25s var(--ease);
  border: none; font-family: inherit;
}
.btn:active { transform: scale(0.985); }
.btn-primary { background: var(--ink); color: #fff; }
.btn-primary:hover {
  background: #1c202b; transform: translateY(-1px);
  box-shadow: 0 12px 32px -12px rgba(11, 13, 18, 0.45);
}
.btn-ghost { background: transparent; color: var(--ink); border: 1px solid var(--line-strong); }
.btn-ghost:hover { border-color: var(--ink); }
.btn-sm { padding: 10px 20px; font-size: 14.5px; }
.btn-lg { padding: 17px 32px; font-size: 16.5px; }
.btn-block { width: 100%; }

/* ---------- Nav ---------- */
.nav {
  position: sticky; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(18px) saturate(1.6); -webkit-backdrop-filter: blur(18px) saturate(1.6);
  transition: box-shadow 0.35s ease;
}
.nav-inner { display: flex; align-items: center; gap: 26px; height: 72px; }
.brand { font-size: 20px; font-weight: 700; letter-spacing: -0.04em; color: var(--ink); }
.brand-dot { color: var(--accent); }
.nav-links { display: flex; gap: 30px; margin-left: auto; }
.nav-links a {
  font-size: 14.5px; font-weight: 520; color: var(--slate);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--ink); }
.nav-avail {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12.5px; font-weight: 600; color: var(--slate);
  border: 1px solid var(--line); border-radius: 999px; padding: 7px 14px;
  background: #fff;
}
.nav-avail i {
  width: 7px; height: 7px; border-radius: 50%; background: #23b26d;
  box-shadow: 0 0 0 0 rgba(35, 178, 109, 0.5);
  animation: pulse 2.4s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(35, 178, 109, 0.45); }
  70% { box-shadow: 0 0 0 8px rgba(35, 178, 109, 0); }
  100% { box-shadow: 0 0 0 0 rgba(35, 178, 109, 0); }
}
.nav.nav-solid { box-shadow: 0 1px 0 var(--line), 0 12px 32px -24px rgba(11, 13, 18, 0.25); }
@media (max-width: 1020px) { .nav-avail { display: none; } }
@media (max-width: 820px) { .nav-links { display: none; } .nav-inner { justify-content: space-between; } }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: clamp(56px, 7vw, 96px) 0 0;
  background:
    radial-gradient(900px 480px at 82% -8%, #e6ecff 0%, rgba(230, 236, 255, 0) 60%),
    radial-gradient(700px 420px at 10% 4%, #f1eefe 0%, rgba(241, 238, 254, 0) 55%),
    var(--paper);
  overflow: hidden;
}
.hero-grid-bg {
  position: absolute; inset: 0; pointer-events: none;
  background-image: radial-gradient(rgba(11, 13, 18, 0.10) 1px, transparent 1px);
  background-size: 26px 26px;
  mask-image: radial-gradient(720px 480px at 78% 30%, #000 0%, transparent 70%);
  -webkit-mask-image: radial-gradient(720px 480px at 78% 30%, #000 0%, transparent 70%);
}
.hero-inner {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1.02fr 0.98fr; align-items: center;
  gap: clamp(44px, 6vw, 84px);
  padding-bottom: clamp(64px, 8vw, 104px);
}
.hero-rating {
  display: inline-flex; align-items: center; gap: 10px;
  background: #fff; border: 1px solid var(--line); border-radius: 999px;
  padding: 9px 18px; font-size: 13.5px; font-weight: 560; color: var(--slate);
  box-shadow: 0 10px 30px -18px rgba(11, 13, 18, 0.25);
  margin-bottom: 28px;
}
.pulse-dot {
  width: 8px; height: 8px; border-radius: 50%; background: #23b26d;
  animation: pulse 2.4s infinite;
}
.hero h1 {
  font-size: clamp(36px, 3.9vw, 54px); font-weight: 650; color: var(--ink);
  letter-spacing: -0.04em;
}
.hero h1 em { font-style: normal; position: relative; white-space: nowrap; color: var(--accent); }
.hero h1 em::after {
  content: ""; position: absolute; left: 2%; right: 2%; bottom: 0.02em;
  height: 0.07em; background: var(--accent); border-radius: 3px; opacity: 0.25;
}
.lead {
  font-size: clamp(16.5px, 2vw, 19px); color: var(--slate);
  max-width: 560px; margin: 22px 0 0; line-height: 1.65;
}
.lead strong { color: var(--ink); font-weight: 640; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 34px; }
.hero-checks {
  list-style: none; display: flex; flex-wrap: wrap; gap: 10px 28px;
  margin-top: 26px; padding: 0;
}
.hero-checks li {
  position: relative; padding-left: 24px;
  font-size: 14.5px; font-weight: 540; color: var(--slate);
}
.hero-checks li::before {
  content: ""; position: absolute; left: 2px; top: 8px;
  width: 9px; height: 5px;
  border-left: 2px solid var(--accent); border-bottom: 2px solid var(--accent);
  transform: rotate(-45deg);
}

/* ---------- Hero: Produkt-Mockups ---------- */
.hero-visual { position: relative; min-height: 480px; }
.mockup-browser {
  position: relative; z-index: 1;
  background: #fff; border-radius: 14px; overflow: hidden;
  border: 1px solid var(--line-strong);
  box-shadow: 0 2px 4px rgba(11, 13, 18, 0.05), 0 48px 100px -36px rgba(11, 13, 18, 0.4);
  transform: rotate(0.6deg);
  animation: floaty 7s ease-in-out infinite;
}
.mb-bar {
  display: flex; align-items: center; gap: 14px;
  background: #f2f3f5; border-bottom: 1px solid var(--line);
  padding: 10px 14px;
}
.mb-dots { display: inline-flex; gap: 6px; }
.mb-dots i { width: 10px; height: 10px; border-radius: 50%; background: #e0e2e6; }
.mb-dots i:nth-child(1) { background: #f26d5f; }
.mb-dots i:nth-child(2) { background: #f4bd4f; }
.mb-dots i:nth-child(3) { background: #55c15e; }
.mb-url {
  flex: 1; max-width: 230px; margin: 0 auto 0 0;
  display: inline-flex; align-items: center; justify-content: center; gap: 7px;
  background: #fff; border: 1px solid var(--line); border-radius: 8px;
  font-size: 12px; font-weight: 560; color: var(--slate); padding: 5px 12px;
}
.mb-url svg { width: 11px; height: 11px; fill: none; stroke: #23b26d; stroke-width: 2.4; stroke-linecap: round; }
.mb-body { background: #fff; }
.ms-nav {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 18px; border-bottom: 1px solid var(--line);
}
.ms-logo { font-weight: 700; font-size: 13px; letter-spacing: -0.02em; }
.ms-links { display: inline-flex; gap: 8px; margin-left: auto; }
.ms-links i { width: 34px; height: 6px; border-radius: 3px; background: #e8eaee; }
.ms-btn {
  background: var(--ink); color: #fff; font-size: 10.5px; font-weight: 620;
  border-radius: 7px; padding: 6px 12px;
}
.ms-hero {
  position: relative; aspect-ratio: 16 / 7.6; background-size: cover; background-position: center 35%;
  display: flex; flex-direction: column; justify-content: center; align-items: flex-start;
  padding: 0 22px; gap: 7px;
}
.ms-hero::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(11, 13, 18, 0.72) 18%, rgba(11, 13, 18, 0.12) 70%);
}
.ms-hero > * { position: relative; z-index: 1; }
.ms-hero-eyebrow {
  color: rgba(255, 255, 255, 0.75); font-size: 9.5px; font-weight: 640;
  text-transform: uppercase; letter-spacing: 0.18em;
}
.ms-hero-h { color: #fff; font-size: clamp(15px, 1.6vw, 21px); font-weight: 650; line-height: 1.2; letter-spacing: -0.02em; }
.ms-hero-btn {
  background: #fff; color: var(--ink); font-size: 10.5px; font-weight: 640;
  border-radius: 7px; padding: 7px 13px; margin-top: 4px;
}
.ms-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; padding: 14px 18px 18px; }
.ms-card {
  border: 1px solid var(--line); border-radius: 10px; overflow: hidden; background: #fff;
}
.ms-card img { width: 100%; aspect-ratio: 16 / 8.5; object-fit: cover; }
.ms-card b { display: block; font-size: 10.5px; font-weight: 620; padding: 7px 10px; letter-spacing: -0.01em; }

.mockup-phone {
  position: absolute; z-index: 2; left: -94px; bottom: -48px;
  width: clamp(112px, 8.6vw, 124px);
  background: #0d0f14; border-radius: 24px; padding: 7px;
  box-shadow: 0 30px 70px -24px rgba(11, 13, 18, 0.55);
  transform: rotate(-3deg);
  animation: floaty 7s ease-in-out 1.2s infinite;
}
.mp-body { background: #fff; border-radius: 18px; overflow: hidden; }
.mp-hero {
  position: relative; aspect-ratio: 9 / 10; background-size: cover; background-position: center 30%;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 12px 12px 14px; gap: 5px;
}
.mp-hero::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(rgba(11, 13, 18, 0.05) 30%, rgba(11, 13, 18, 0.78));
}
.mp-hero > * { position: relative; z-index: 1; }
.mp-logo { color: rgba(255, 255, 255, 0.8); font-size: 8px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.14em; }
.mp-h { color: #fff; font-size: 11.5px; font-weight: 650; line-height: 1.25; letter-spacing: -0.02em; }
.mp-btn {
  background: #fff; color: var(--ink); font-size: 8.5px; font-weight: 650;
  border-radius: 6px; padding: 6px 0; text-align: center; margin-top: 3px;
}
.mp-lines { padding: 11px 12px 13px; display: grid; gap: 6px; }
.mp-lines i { display: block; height: 6px; border-radius: 3px; background: #eceef1; }

.float-card {
  position: absolute; z-index: 3;
  display: flex; align-items: center; gap: 12px;
  background: #fff; border: 1px solid var(--line); border-radius: 14px;
  padding: 12px 17px 12px 13px;
  box-shadow: 0 18px 50px -18px rgba(11, 13, 18, 0.35);
  font-size: 13px;
}
.float-card b { display: block; font-size: 13.5px; font-weight: 640; color: var(--ink); line-height: 1.25; letter-spacing: -0.01em; }
.float-card small { display: block; font-size: 11.5px; color: var(--slate); margin-top: 1px; }
.fc-mail { right: -18px; top: -26px; animation: floaty 6s ease-in-out 0.6s infinite; }
.fc-icon {
  width: 34px; height: 34px; flex: none; border-radius: 10px;
  background: var(--accent); display: inline-flex; align-items: center; justify-content: center;
}
.fc-icon svg { width: 17px; height: 17px; fill: none; stroke: #fff; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
@keyframes floaty {
  0%, 100% { translate: 0 0; }
  50% { translate: 0 -9px; }
}

/* Siegel-Leiste */
.trust-strip { border-top: 1px solid var(--line); background: rgba(255, 255, 255, 0.72); position: relative; z-index: 1; }
.ts-inner {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 12px 40px;
  padding-top: 22px; padding-bottom: 22px;
}
.seal { display: inline-flex; align-items: center; gap: 13px; text-align: left; }
.seal svg {
  width: 40px; height: 40px; flex: none; padding: 9px;
  background: var(--accent-soft); border-radius: 12px;
  fill: none; stroke: var(--accent); stroke-width: 1.7;
  stroke-linecap: round; stroke-linejoin: round;
}
.seal b { display: block; font-size: 14px; font-weight: 640; color: var(--ink); letter-spacing: -0.005em; line-height: 1.25; }
.seal small { display: block; font-size: 12px; color: var(--slate-light); margin-top: 2px; letter-spacing: 0.005em; }

/* ---------- Problem ---------- */
.section-problem { background: var(--paper-soft); }
.problem-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 64px; }
.problem-card {
  background: #fff; border: 1px solid var(--line); border-radius: 20px;
  box-shadow: 0 1px 2px rgba(11, 13, 18, 0.04), 0 28px 56px -36px rgba(11, 13, 18, 0.22);
  padding: 34px 30px 32px; text-align: left;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.problem-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 1px 2px rgba(11, 13, 18, 0.04), 0 36px 64px -34px rgba(11, 13, 18, 0.3);
}
.problem-card .fic { margin-bottom: 22px; }
.problem-card h3 { font-size: 20px; font-weight: 640; margin-bottom: 12px; letter-spacing: -0.025em; }
.problem-card p { color: var(--slate); font-size: 15.5px; line-height: 1.65; }
.problem-close {
  text-align: center; font-size: clamp(18px, 2.4vw, 24px); color: var(--slate);
  max-width: 760px; margin: 72px auto 0; line-height: 1.5; letter-spacing: -0.02em;
}
.problem-close strong { color: var(--ink); font-weight: 640; }

/* ---------- Vorher/Nachher Slider ---------- */
.section-compare { background: var(--paper); }
.ba-frame {
  max-width: 920px; margin: 64px auto 0;
  border: 1px solid var(--line-strong); border-radius: 16px; overflow: hidden;
  box-shadow: 0 2px 4px rgba(11, 13, 18, 0.05), 0 44px 90px -34px rgba(11, 13, 18, 0.3);
  background: #fff;
}
.ba-chrome {
  display: flex; align-items: center; gap: 14px;
  background: #f2f3f5; border-bottom: 1px solid var(--line);
  padding: 11px 16px;
}
.ba {
  position: relative;
  aspect-ratio: 16 / 10; overflow: hidden;
  --x: 50%;
  touch-action: pan-y;
}
.ba-layer { position: absolute; inset: 0; }
.ba-layer img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; }
.ba-before { clip-path: inset(0 calc(100% - var(--x)) 0 0); z-index: 2; }
.ba-handle {
  position: absolute; top: 0; bottom: 0; left: var(--x); width: 2px; margin-left: -1px;
  background: #fff; z-index: 3; box-shadow: 0 0 14px rgba(11, 13, 18, 0.4);
  pointer-events: none;
}
.ba-handle span {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 44px; height: 44px; border-radius: 50%;
  background: #fff; box-shadow: 0 6px 20px rgba(11, 13, 18, 0.3);
}
.ba-handle span::before, .ba-handle span::after {
  content: ""; position: absolute; top: 50%; width: 0; height: 0;
  border: 5px solid transparent; transform: translateY(-50%);
}
.ba-handle span::before { left: 9px; border-right-color: var(--ink); }
.ba-handle span::after { right: 9px; border-left-color: var(--ink); }
.ba-range {
  position: absolute; inset: 0; width: 100%; height: 100%;
  opacity: 0; cursor: ew-resize; z-index: 4; margin: 0;
  -webkit-appearance: none; appearance: none;
}
.ba-tag {
  position: absolute; bottom: 16px; padding: 7px 14px; border-radius: 8px;
  font-size: 12px; font-weight: 640; z-index: 2; letter-spacing: 0.08em; text-transform: uppercase;
}
.ba-tag-old { left: 16px; background: rgba(11, 13, 18, 0.78); color: rgba(255, 255, 255, 0.85); }
.ba-tag-new { right: 16px; background: var(--ink); color: #fff; }
.ba-note {
  text-align: center; color: var(--slate-light); font-size: 13px;
  margin-top: 18px;
}

/* ---------- 3 Schritte ---------- */
.section-steps { background: var(--paper-soft); }
.steps {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
  margin-top: 64px;
  position: relative;
}
.step {
  background: #fff; border: 1px solid var(--line); border-radius: 20px;
  box-shadow: 0 1px 2px rgba(11, 13, 18, 0.04), 0 28px 56px -36px rgba(11, 13, 18, 0.22);
  padding: 30px 30px 28px; position: relative;
  display: flex; flex-direction: column;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.step:hover {
  transform: translateY(-4px);
  box-shadow: 0 1px 2px rgba(11, 13, 18, 0.04), 0 36px 64px -34px rgba(11, 13, 18, 0.3);
}
.step-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 22px; }
.step-num {
  width: 46px; height: 46px; border-radius: 14px;
  background: var(--ink); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 19px; font-weight: 640; letter-spacing: 0; line-height: 1;
}
.step-day {
  font-size: 11.5px; font-weight: 640; color: var(--accent);
  background: var(--accent-soft); border-radius: 999px; padding: 6px 13px;
  text-transform: uppercase; letter-spacing: 0.08em;
}
.step h3 { font-size: 20px; font-weight: 640; margin-bottom: 12px; letter-spacing: -0.025em; }
.step p { color: var(--slate); font-size: 15.5px; line-height: 1.65; }
.step-visual {
  margin-top: 22px; border: 1px solid var(--line); border-radius: 12px;
  padding: 14px 16px; background: #fafafa;
}
.sv-form i { display: block; height: 9px; border-radius: 5px; background: #eceef1; margin-bottom: 8px; }
.sv-form i:nth-child(2) { width: 72%; }
.sv-form b {
  display: block; background: var(--ink); color: #fff; text-align: center;
  font-size: 11.5px; font-weight: 620; border-radius: 8px; padding: 8px 0; margin-top: 10px;
}
.sv-mail { display: flex; align-items: center; gap: 12px; }
.sv-mail-ic {
  width: 34px; height: 34px; flex: none; border-radius: 10px;
  background: var(--accent); display: inline-flex; align-items: center; justify-content: center;
}
.sv-mail-ic svg { width: 17px; height: 17px; fill: none; stroke: #fff; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.sv-mail b { display: block; font-size: 13px; font-weight: 640; line-height: 1.3; }
.sv-mail small { display: block; font-size: 11.5px; color: var(--slate); }
.sv-live { display: flex; align-items: center; gap: 10px; }
.sv-dot {
  width: 9px; height: 9px; flex: none; border-radius: 50%; background: #23b26d;
  animation: pulse 2.4s infinite;
}
.sv-live b { font-size: 13px; font-weight: 640; }

/* ---------- Kernsatz ---------- */
.banner {
  position: relative; background: url("img/banner-werkstatt.jpg") center 45% / cover no-repeat;
  padding: clamp(100px, 13vw, 170px) 0; text-align: center;
}
.banner::before { content: ""; position: absolute; inset: 0; background: rgba(11, 13, 18, 0.8); }
.banner .container { position: relative; z-index: 1; }
.banner p {
  color: rgba(255, 255, 255, 0.32); font-weight: 630;
  font-size: clamp(26px, 4.6vw, 56px); letter-spacing: -0.04em; line-height: 1.16;
  max-width: 1000px; margin: 0 auto; text-wrap: balance;
}
.banner b { color: #fff; font-weight: 630; }

/* ---------- Preis ---------- */
.price-card {
  max-width: 640px; margin: 64px auto 0;
  background: #fff; border: 1px solid var(--line); border-radius: 24px;
  box-shadow: 0 40px 90px -40px rgba(11, 13, 18, 0.28);
  overflow: hidden;
}
.price-ribbon {
  background: linear-gradient(90deg, var(--accent), #4a68f0);
  color: #fff; text-align: center;
  font-size: 13.5px; font-weight: 620; letter-spacing: 0.01em;
  padding: 12px 20px;
}
.price-head { text-align: center; padding: 54px 30px 38px; border-bottom: 1px solid var(--line); position: relative; }
.price-seal {
  position: absolute; top: 26px; right: 26px;
  width: 82px; height: 82px; border-radius: 50%;
  background: #fff; border: 1.5px dashed var(--accent);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  transform: rotate(8deg);
  color: var(--accent);
}
.price-seal b { font-size: 19px; font-weight: 680; letter-spacing: -0.02em; line-height: 1; }
.price-seal span { font-size: 10.5px; font-weight: 640; text-transform: uppercase; letter-spacing: 0.14em; margin-top: 3px; }
.price-label { font-size: 12.5px; font-weight: 640; color: var(--slate-light); text-transform: uppercase; letter-spacing: 0.22em; }
.price-value {
  font-size: clamp(68px, 9vw, 96px); font-weight: 640; letter-spacing: -0.05em;
  color: var(--ink); line-height: 1; margin-top: 14px;
  font-variant-numeric: tabular-nums;
}
.price-note { color: var(--slate); font-weight: 480; margin-top: 12px; font-size: 15px; }
.price-anchor {
  display: inline-block; margin-top: 18px;
  color: var(--slate-light); font-size: 13.5px;
  border: 1px solid var(--line); border-radius: 999px; padding: 7px 16px;
}
.price-list { list-style: none; padding: 36px 48px 6px; }
.price-list li {
  position: relative; padding: 9px 0 9px 32px; color: var(--ink); font-size: 15.5px;
}
.price-list li::after {
  content: ""; position: absolute; left: 2px; top: 16px;
  width: 9px; height: 5px;
  border-left: 1.8px solid var(--accent); border-bottom: 1.8px solid var(--accent);
  transform: rotate(-45deg);
}
.price-card .btn { margin: 28px 48px 0; width: calc(100% - 96px); }
.price-pay { text-align: center; color: var(--slate); font-size: 14.5px; padding: 20px 48px 38px; }
.price-pay b { font-weight: 620; color: var(--ink); }

/* ---------- Vergleichstabelle ---------- */
.section-table { background: var(--paper-soft); }
.table-wrap {
  overflow-x: auto; margin-top: 64px;
  border: 1px solid var(--line); border-radius: var(--radius);
  background: #fff;
}
.cmp { width: 100%; border-collapse: separate; border-spacing: 0; background: #fff; min-width: 760px; }
.cmp th, .cmp td { padding: 17px 24px; text-align: left; font-size: 15px; border-bottom: 1px solid var(--line); }
.cmp thead th {
  background: #fff; font-size: 14.5px; font-weight: 640;
  padding-top: 26px; padding-bottom: 20px; letter-spacing: -0.01em;
}
.cmp tbody tr:last-child td { border-bottom: none; }
.cmp td:first-child { font-weight: 560; color: var(--ink); width: 30%; }
.cmp td:not(:first-child):not(.cmp-us), .cmp th:not(:first-child):not(.cmp-us) { color: var(--slate-light); }
.cmp .cmp-us { background: #fafbff; border-left: 1px solid var(--line); border-right: 1px solid var(--line); }
.cmp thead .cmp-us { border-top: 2px solid var(--accent); }
.cmp-us-badge {
  display: inline-block; background: var(--ink); color: #fff;
  padding: 6px 14px; border-radius: 8px; font-size: 13.5px; font-weight: 620; letter-spacing: -0.01em;
}
.yes { color: var(--ink); font-weight: 600; position: relative; padding-left: 22px; display: inline-block; }
.yes::before {
  content: ""; position: absolute; left: 1px; top: 8px;
  width: 9px; height: 5px;
  border-left: 1.8px solid var(--accent); border-bottom: 1.8px solid var(--accent);
  transform: rotate(-45deg);
}
.no { color: var(--slate-light); font-weight: 480; }
.table-swipe-hint {
  display: none; margin-top: 14px; text-align: center;
  font-size: 12.5px; color: var(--slate-light); letter-spacing: 0.02em;
}

/* ---------- Sorgen ---------- */
.fears-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 20px; margin-top: 56px;
}
.fear {
  background: #fff; border: 1px solid var(--line); border-radius: 20px;
  box-shadow: 0 1px 2px rgba(11, 13, 18, 0.04), 0 28px 56px -36px rgba(11, 13, 18, 0.22);
  padding: 30px 28px; display: grid; grid-template-columns: 46px 1fr; gap: 0 20px;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.fear:hover {
  transform: translateY(-3px);
  box-shadow: 0 1px 2px rgba(11, 13, 18, 0.04), 0 34px 60px -34px rgba(11, 13, 18, 0.28);
}
.fear h3 { font-size: 18px; font-weight: 640; margin: 0 0 8px; line-height: 1.35; letter-spacing: -0.02em; grid-column: 2; }
.fear p { color: var(--slate); font-size: 15px; line-height: 1.65; grid-column: 2; }
.fic {
  display: block; width: 46px; height: 46px; border-radius: 14px;
  background: linear-gradient(180deg, #f0f3fe, #e5eafc);
  box-shadow: inset 0 0 0 1px rgba(36, 71, 224, 0.08), 0 1px 2px rgba(11, 13, 18, 0.04);
  position: relative; grid-row: 1 / span 2; align-self: start;
}
.fic::after {
  content: ""; position: absolute; inset: 0;
  background: var(--accent);
  -webkit-mask: var(--icon) center / 21px 21px no-repeat;
  mask: var(--icon) center / 21px 21px no-repeat;
}
.fic-monitor { --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='2' y='4' width='20' height='13' rx='2'/%3E%3Cpath d='M8 21h8'/%3E%3Cpath d='M12 17v4'/%3E%3C/svg%3E"); }
.fic-gavel  { --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m14 13 7.5 7.5a1.4 1.4 0 0 1-2 2L12 15'/%3E%3Cpath d='m6 3 9 9-4 4-9-9z'/%3E%3Cpath d='M3 21h7'/%3E%3C/svg%3E"); }
.fic-lock   { --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='4' y='11' width='16' height='10' rx='2'/%3E%3Cpath d='M8 11V7a4 4 0 0 1 8 0v4'/%3E%3C/svg%3E"); }
.fic-shield { --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 3l8 3v6c0 5-3.5 8-8 9-4.5-1-8-4-8-9V6z'/%3E%3Cpath d='m9 12 2 2 4-4'/%3E%3C/svg%3E"); }
.fic-search { --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='11' cy='11' r='7'/%3E%3Cpath d='m16.5 16.5 4.5 4.5'/%3E%3C/svg%3E"); }
.fic-key    { --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='7' cy='15' r='4'/%3E%3Cpath d='M10.5 11.5 20 2'/%3E%3Cpath d='m15 7 3 3'/%3E%3C/svg%3E"); }
.fic-life   { --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 21C7 17 3 13.5 3 9.5A4.5 4.5 0 0 1 12 6a4.5 4.5 0 0 1 9 3.5c0 4-4 7.5-9 11.5z'/%3E%3C/svg%3E"); }
.fic-euro   { --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M17.2 7a6 6 0 1 0 0 10'/%3E%3Cpath d='M5 10h8'/%3E%3Cpath d='M5 14h8'/%3E%3C/svg%3E"); }
.fic-clock  { --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='9'/%3E%3Cpath d='M12 7v5l3 3'/%3E%3C/svg%3E"); }

/* ---------- Für wen ---------- */
.section-who { background: var(--paper-soft); }
.who-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 64px; }
.who-card {
  position: relative; border-radius: var(--radius); overflow: hidden;
  aspect-ratio: 3 / 4; background: #e6e8ec; margin: 0;
  border: 1px solid var(--line);
  box-shadow: 0 1px 2px rgba(11, 13, 18, 0.04), 0 28px 56px -36px rgba(11, 13, 18, 0.28);
}
.who-card img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.7s var(--ease);
}
.who-card:hover img { transform: scale(1.045); }
.who-card figcaption {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 1;
  padding: 64px 20px 18px;
  background: linear-gradient(transparent, rgba(11, 13, 18, 0.78));
  color: #fff;
}
.who-card figcaption b { display: block; font-weight: 640; font-size: 15.5px; letter-spacing: -0.015em; }
.who-card figcaption span { display: block; font-size: 12.5px; color: rgba(255, 255, 255, 0.72); margin-top: 3px; }
.who-note { text-align: center; color: var(--slate); margin-top: 44px; font-size: 15.5px; }

/* Branchen-Marquee */
.marquee {
  overflow: hidden; margin-top: 44px;
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  padding: 20px 0;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.marquee-track {
  display: inline-flex; gap: 34px; white-space: nowrap;
  animation: marquee 36s linear infinite;
  will-change: transform;
}
.marquee-track span {
  font-size: 16px; font-weight: 560; color: var(--slate); letter-spacing: -0.01em;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ---------- Vertrauen ---------- */
.section-trust { background: var(--ink); position: relative; overflow: hidden; }
.section-trust::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(700px 420px at 85% 0%, rgba(36, 71, 224, 0.22), transparent 65%);
}
.trust-card { position: relative; color: rgba(255, 255, 255, 0.72); max-width: 820px; margin: 0 auto; }
.trust-card h2 { color: #fff; }
.trust-card > p { margin-top: 24px; font-size: clamp(16px, 2vw, 18.5px); text-align: center; line-height: 1.7; }
.trust-card b { color: #fff; font-weight: 620; }
.trust-facts { display: flex; gap: 0; margin-top: 64px; flex-wrap: wrap; }
.trust-facts div {
  flex: 1; min-width: 160px;
  border-left: 1px solid rgba(255, 255, 255, 0.14);
  padding: 8px 28px; text-align: left;
}
.trust-facts div:first-child { border-left: none; padding-left: 0; }
.trust-facts b {
  display: block; font-size: clamp(36px, 4vw, 48px); font-weight: 640; color: #fff;
  letter-spacing: -0.04em; line-height: 1.1; font-variant-numeric: tabular-nums;
}
.trust-facts span { font-size: 14px; color: rgba(255, 255, 255, 0.5); display: block; margin-top: 8px; }
.letter {
  margin-top: 72px; border-top: 1px solid rgba(255, 255, 255, 0.14);
  padding-top: 56px;
}
.letter-text {
  font-size: clamp(17px, 2.2vw, 21px); line-height: 1.75;
  color: rgba(255, 255, 255, 0.82); text-align: left !important;
}
.letter-sign {
  margin-top: 30px; text-align: left !important;
  font-size: 22px; font-weight: 700; color: #fff; letter-spacing: -0.03em;
}
.letter-dot { color: var(--accent); }

/* ---------- FAQ ---------- */
.faq { margin-top: 48px; border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary {
  cursor: pointer; list-style: none; padding: 26px 56px 26px 0;
  font-weight: 600; font-size: clamp(16px, 2vw, 18px); position: relative;
  letter-spacing: -0.02em; transition: color 0.15s ease;
}
.faq summary:hover { color: var(--accent); }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: ""; position: absolute; right: 8px; top: 50%;
  width: 9px; height: 9px; margin-top: -7px;
  border-right: 1.5px solid var(--slate-light); border-bottom: 1.5px solid var(--slate-light);
  transform: rotate(45deg); transition: transform 0.25s var(--ease);
}
.faq details[open] summary::after { transform: rotate(225deg); margin-top: -2px; }
.faq details p { padding: 0 0 28px; color: var(--slate); font-size: 15.5px; max-width: 740px; line-height: 1.7; }

/* ---------- CTA ---------- */
.section-cta { background: var(--paper); }
.cta-card {
  position: relative; overflow: hidden;
  background: var(--ink);
  border-radius: 28px; color: #fff;
  padding: clamp(44px, 5.5vw, 72px);
}
.cta-card::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(560px 380px at 12% 0%, rgba(36, 71, 224, 0.3), transparent 60%);
}
.cta-grid {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 5vw, 72px);
  align-items: start;
}
.cta-copy h2 { font-size: clamp(28px, 3.4vw, 40px); color: #fff; text-align: left; }
.cta-copy > p { color: rgba(255, 255, 255, 0.65); font-size: 16.5px; margin-top: 18px; }
.cta-points { list-style: none; margin-top: 28px; padding: 0; display: grid; gap: 12px; }
.cta-points li {
  position: relative; padding-left: 28px;
  font-size: 15.5px; font-weight: 540; color: rgba(255, 255, 255, 0.85);
}
.cta-points li::before {
  content: ""; position: absolute; left: 2px; top: 8px;
  width: 10px; height: 5px;
  border-left: 2px solid #23b26d; border-bottom: 2px solid #23b26d;
  transform: rotate(-45deg);
}
.cta-seals {
  display: flex; flex-wrap: wrap; gap: 10px 14px;
  margin-top: 34px;
}
.cta-seals span {
  border: 1px solid rgba(255, 255, 255, 0.18); border-radius: 999px;
  color: rgba(255, 255, 255, 0.6); font-size: 12.5px; font-weight: 560;
  padding: 7px 15px;
}
.cta-form { display: flex; flex-direction: column; gap: 12px; }
.cta-form input, .cta-form textarea {
  padding: 16px 20px; border: 1px solid rgba(255, 255, 255, 0.18); border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.06); color: #fff;
  font-size: 16px; font-family: inherit; outline: none; text-align: left;
  transition: border-color 0.2s ease, background 0.2s ease;
}
.cta-form textarea { resize: vertical; min-height: 96px; line-height: 1.5; }
.cta-form input::placeholder, .cta-form textarea::placeholder { color: rgba(255, 255, 255, 0.42); }
.cta-form input:focus, .cta-form textarea:focus { border-color: rgba(255, 255, 255, 0.6); background: rgba(255, 255, 255, 0.1); }
.upload {
  display: flex; align-items: center; gap: 15px; text-align: left;
  border: 1.5px dashed rgba(255, 255, 255, 0.3); border-radius: var(--radius-sm);
  padding: 15px 20px; cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease;
}
.upload:hover { border-color: rgba(255, 255, 255, 0.55); background: rgba(255, 255, 255, 0.05); }
.upload svg {
  width: 24px; height: 24px; flex: none;
  fill: none; stroke: #fff; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round;
  opacity: 0.75;
}
.upload b { display: block; color: #fff; font-size: 15px; font-weight: 600; letter-spacing: -0.01em; }
.upload small { display: block; color: rgba(255, 255, 255, 0.48); font-size: 12.5px; margin-top: 2px; }
.cta-form .btn-primary { background: #fff; color: var(--ink); margin-top: 4px; }
.cta-form .btn-primary:hover { background: #f0f0ee; transform: translateY(-1px); box-shadow: 0 14px 36px -12px rgba(0, 0, 0, 0.5); }
.cta-note { color: rgba(255, 255, 255, 0.45); font-size: 13px; margin-top: 8px; text-align: center; }
.cta-success { color: #fff; font-weight: 600; font-size: 18px; padding: 30px 0 10px; }

/* ---------- Footer ---------- */
.footer { background: var(--paper); color: var(--slate); padding: 84px 0 44px; border-top: 1px solid var(--line); }
.footer-grid {
  display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 40px;
}
.footer-brand { font-size: 21px; font-weight: 700; letter-spacing: -0.04em; color: var(--ink); }
.footer-tag { margin-top: 16px; font-size: 14.5px; line-height: 1.65; max-width: 320px; }
.footer-badges { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 22px; }
.footer-badges span {
  border: 1px solid var(--line-strong); border-radius: 999px;
  font-size: 12px; font-weight: 560; color: var(--slate);
  padding: 6px 13px;
}
.footer-col h4 {
  font-size: 13px; font-weight: 660; color: var(--ink);
  text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 18px;
}
.footer-col a {
  display: block; font-size: 14.5px; color: var(--slate); padding: 6px 0;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--ink); }
.footer-bottom {
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  border-top: 1px solid var(--line); margin-top: 64px; padding-top: 28px;
  font-size: 13.5px; color: var(--slate-light);
}

/* ---------- Reveal ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.9s var(--ease), transform 0.9s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.stagger > * { opacity: 0; transform: translateY(24px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
.reveal.in .stagger > *, .stagger.in > * { opacity: 1; transform: none; }
.stagger > *:nth-child(1) { transition-delay: 0.05s; }
.stagger > *:nth-child(2) { transition-delay: 0.15s; }
.stagger > *:nth-child(3) { transition-delay: 0.25s; }
.stagger > *:nth-child(4) { transition-delay: 0.35s; }
.stagger > *:nth-child(5) { transition-delay: 0.42s; }
.stagger > *:nth-child(6) { transition-delay: 0.5s; }
.stagger > *:nth-child(7) { transition-delay: 0.58s; }
.stagger > *:nth-child(8) { transition-delay: 0.66s; }
@media (prefers-reduced-motion: reduce) {
  .reveal, .stagger > * { opacity: 1; transform: none; transition: none; }
  .marquee-track, .mockup-browser, .mockup-phone, .float-card { animation: none; }
}

/* ---------- Responsive ---------- */
@media (max-width: 1080px) {
  .fc-mail { right: -8px; }
}
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 60px; padding-bottom: 64px; }
  .hero-visual { max-width: 560px; margin: 0 auto; width: 100%; min-height: 0; padding-bottom: 26px; }
  .mockup-phone { left: -8px; bottom: -18px; }
  .fc-mail { right: -6px; top: -30px; }
  .fears-grid { grid-template-columns: 1fr; gap: 16px; }
  .who-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: 1fr; gap: 16px; }
  .problem-grid { grid-template-columns: 1fr; gap: 16px; }
  .trust-facts { flex-direction: column; gap: 28px; }
  .trust-facts div { border-left: none; padding: 0; }
  .cta-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-about { grid-column: 1 / -1; }
}
@media (max-width: 680px) {
  .hero h1 { font-size: clamp(34px, 10vw, 44px); }
  .lead { font-size: 16px; margin-top: 18px; }
  .hero-actions { margin-top: 28px; }
  .hero-actions .btn-ghost { display: none; }
  .hero-rating { font-size: 12.5px; padding: 8px 14px; }
  .hero-checks { gap: 8px 20px; }
  .ms-row { gap: 8px; padding: 10px 12px 14px; }
  .ms-hero { padding: 0 16px; }
  .mockup-browser { transform: none; }
  .mockup-phone { display: none; }
  .float-card { padding: 10px 13px 10px 11px; border-radius: 12px; }
  .float-card b { font-size: 12px; }
  .float-card small { font-size: 10.5px; }
  .fc-icon { width: 30px; height: 30px; }
  .fc-mail { top: auto; right: 10px; bottom: -22px; }
  .hero-visual { padding-bottom: 44px; }
  .ts-inner { gap: 18px 26px; }
  .price-head { padding: 34px 24px 32px; }
  .price-seal { position: static; width: 68px; height: 68px; margin: 0 auto 18px; }
  .price-seal b { font-size: 16px; }
  .cmp { min-width: 620px; }
  .cmp th, .cmp td { padding: 14px 16px; font-size: 14px; }
  .cmp thead th { padding-top: 20px; padding-bottom: 16px; }
  .cmp-us-badge { font-size: 12.5px; padding: 5px 11px; }
  .table-swipe-hint { display: block; }
  .cta-card { padding: 40px 24px; }
  .cta-copy h2 { text-align: left; }
  .cta-form .btn-lg { font-size: 15px; padding: 15px 14px; white-space: normal; }
  .seal { gap: 11px; }
  .seal svg { width: 36px; height: 36px; padding: 8px; }
  .problem-card, .step { padding: 28px 24px 26px; }
  .fear { padding: 26px 22px; }
  .problem-close { margin-top: 56px; }
  .hero-actions .btn-lg { padding: 15px 26px; font-size: 15.5px; }
  .price-list { padding: 28px 28px 4px; }
  .price-card .btn { margin: 24px 28px 0; width: calc(100% - 56px); }
  .price-pay { padding: 18px 28px 30px; }
  .brand { font-size: 18px; }
  .nav .btn-sm { padding: 9px 16px; font-size: 13.5px; }
  .who-card figcaption { padding: 48px 14px 14px; }
  .who-card figcaption b { font-size: 13.5px; hyphens: auto; overflow-wrap: break-word; }
  .who-card figcaption span { font-size: 11.5px; }
  .nav-inner { height: 64px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 6px; }
  .marquee-track span { font-size: 14.5px; }
}
