/* Lechseiten · Design System v4 · Dark + Light · Fraunces + Inter · chartreuse */

@font-face {
  font-family: 'Fraunces';
  src: url('fonts/fraunces.woff2') format('woff2');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Fraunces';
  src: url('fonts/fraunces-italic.woff2') format('woff2');
  font-weight: 100 900;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Inter';
  src: url('fonts/inter.woff2') format('woff2');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

:root {
  --bg: #0d0d0f;
  --bg-raise: #131316;
  --bg-raise-2: #16161a;
  --ink: #f3f0e9;
  --ink-dim: #a5a199;
  --ink-faint: #6b6862;
  --acc: #d7f262;
  --acc-ink: #171a05;
  --acc-text: #d7f262;
  --line: color-mix(in srgb, var(--ink) 9%, transparent);
  --line-strong: color-mix(in srgb, var(--ink) 16%, transparent);
  --soft: color-mix(in srgb, var(--ink) 3%, transparent);
  --nav-bg: rgba(13, 13, 15, 0.72);
  --card-shadow: 0 30px 90px rgba(0, 0, 0, 0.4);
  --form-shadow: 0 50px 140px rgba(0, 0, 0, 0.5);
  --aurora-op: 0.5;
  --spot-op: 0.07;
  --serif: 'Fraunces', Georgia, serif;
  --sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

html[data-theme="light"] {
  --bg: #f5f3ec;
  --bg-raise: #fdfcf7;
  --bg-raise-2: #ffffff;
  --ink: #191811;
  --ink-dim: #5d5a4f;
  --ink-faint: #8f8b7e;
  --acc: #cfeb52;
  --acc-ink: #171a05;
  --acc-text: #5f7a00;
  --nav-bg: rgba(245, 243, 236, 0.78);
  --card-shadow: 0 30px 80px rgba(25, 24, 17, 0.10);
  --form-shadow: 0 40px 110px rgba(25, 24, 17, 0.16);
  --aurora-op: 0.36;
  --spot-op: 0.05;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.65;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  transition: background 0.5s ease, color 0.5s ease;
}
::selection { background: var(--acc); color: var(--acc-ink); }

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

h1, h2 {
  font-family: var(--serif);
  font-weight: 600;
  letter-spacing: -0.015em;
  line-height: 1.06;
  text-wrap: balance;
}
h1 { font-size: clamp(2.7rem, 7vw, 5rem); }
h2 { font-size: clamp(2rem, 4.2vw, 3.2rem); margin-bottom: 0.55em; }
h1 em, h2 em { font-style: italic; color: var(--acc-text); font-weight: 400; }
h3 { font-size: 1.12rem; font-weight: 600; letter-spacing: -0.01em; margin-bottom: 0.45em; }

.eyebrow {
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--acc-text); margin-bottom: 20px;
}
.lead { font-size: clamp(1.05rem, 1.8vw, 1.25rem); color: var(--ink-dim); max-width: 640px; margin: 26px auto 0; }
.section-lead { color: var(--ink-dim); max-width: 620px; margin-bottom: 56px; font-size: 1.06rem; }
.micro { font-size: 0.85rem; color: var(--ink-faint); margin-top: 22px; letter-spacing: 0.01em; }

.btn {
  position: relative; overflow: hidden;
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 30px; border-radius: 999px;
  font-family: var(--sans); font-weight: 600; font-size: 0.98rem; letter-spacing: 0.01em;
  text-decoration: none; cursor: pointer; border: 1px solid transparent;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease),
              background 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}
.btn .btn-arrow { transition: transform 0.35s var(--ease); }
.btn:hover .btn-arrow { transform: translateX(4px); }
.btn::after {
  content: ""; position: absolute; top: 0; bottom: 0; left: -80%; width: 40%;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,0.35), transparent);
  transform: skewX(-20deg); transition: left 0.7s var(--ease); pointer-events: none;
}
.btn:hover::after { left: 130%; }
.btn-acc { background: var(--acc); color: var(--acc-ink); }
.btn-acc:hover { transform: translateY(-2px); box-shadow: 0 14px 44px color-mix(in srgb, var(--acc) 30%, transparent); }
.btn-line { background: transparent; color: var(--ink); border-color: var(--line-strong); }
.btn-line:hover { border-color: var(--ink); transform: translateY(-2px); }
.btn-line::after { display: none; }
.btn-sm { padding: 11px 20px; font-size: 0.86rem; }
.btn-dark { background: #131311; color: #f3f0e9; }
.btn-dark:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(0,0,0,0.35); }
.btn-ghost { background: transparent; color: #4c4a43; border-color: rgba(19,19,17,0.25); }
.btn-ghost:hover { border-color: #131311; color: #131311; }
.btn-ghost::after { display: none; }

.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  transition: background 0.4s ease, border-color 0.4s ease, backdrop-filter 0.4s ease;
  border-bottom: 1px solid transparent;
}
.nav.scrolled { background: var(--nav-bg); backdrop-filter: blur(18px); border-bottom-color: var(--line); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 76px; gap: 20px; }
.logo { display: inline-flex; align-items: center; gap: 11px; text-decoration: none; color: var(--ink); }
.logo-mark {
  display: inline-flex; align-items: center; justify-content: center;
  width: 38px; height: 38px; border-radius: 11px;
  background: linear-gradient(140deg, color-mix(in srgb, var(--acc) 16%, transparent), color-mix(in srgb, var(--acc) 3%, transparent));
  border: 1px solid color-mix(in srgb, var(--acc) 30%, transparent);
  color: var(--acc-text);
}
.logo-word { font-family: var(--serif); font-weight: 600; font-size: 1.28rem; letter-spacing: -0.01em; }
.nav-links { display: flex; gap: 30px; }
.nav-links a {
  color: var(--ink-dim); text-decoration: none; font-size: 0.9rem; font-weight: 500;
  transition: color 0.2s ease;
}
.nav-links a:hover { color: var(--ink); }
.nav-actions { display: flex; align-items: center; gap: 12px; }
@media (max-width: 960px) { .nav-links { display: none; } }

.theme-toggle {
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; border-radius: 50%;
  background: transparent; border: 1px solid var(--line-strong); color: var(--ink-dim);
  cursor: pointer; transition: color 0.2s ease, border-color 0.2s ease, transform 0.3s var(--ease);
}
.theme-toggle:hover { color: var(--ink); border-color: var(--ink); transform: rotate(15deg); }
html[data-theme="dark"] .ic-moon { display: none; }
html[data-theme="light"] .ic-sun { display: none; }

.hero { position: relative; padding: 190px 0 90px; text-align: center; overflow: hidden; }
.hero-inner { position: relative; z-index: 2; }
.chip {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.78rem; font-weight: 600; letter-spacing: 0.08em; color: var(--ink-dim);
  border: 1px solid var(--line-strong); border-radius: 999px; padding: 8px 18px;
  margin-bottom: 34px; background: var(--soft);
}
.chip svg { color: var(--acc-text); }
.hero-cta { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-top: 40px; }

.aurora { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.aurora i {
  position: absolute; border-radius: 50%; filter: blur(90px); opacity: var(--aurora-op);
  animation: drift 22s var(--ease) infinite alternate;
}
.aurora i:nth-child(1) { width: 640px; height: 480px; left: -12%; top: -18%; background: radial-gradient(circle, color-mix(in srgb, var(--acc) 22%, transparent), transparent 65%); }
.aurora i:nth-child(2) { width: 560px; height: 560px; right: -14%; top: 4%; background: radial-gradient(circle, rgba(122,182,255,0.14), transparent 65%); animation-delay: -8s; animation-duration: 28s; }
.aurora i:nth-child(3) { width: 500px; height: 400px; left: 32%; top: 42%; background: radial-gradient(circle, rgba(255,166,87,0.10), transparent 65%); animation-delay: -15s; animation-duration: 34s; }
@keyframes drift {
  from { transform: translate3d(0, 0, 0) scale(1) rotate(0deg); }
  to   { transform: translate3d(70px, 46px, 0) scale(1.18) rotate(8deg); }
}

.mockup { position: relative; max-width: 780px; margin: 84px auto 0; }
.mock-frame {
  background: linear-gradient(180deg, #17171a, #121214);
  border: 1px solid rgba(243, 240, 233, 0.16); border-radius: 18px; overflow: hidden;
  box-shadow: 0 40px 120px rgba(0, 0, 0, 0.55), 0 0 0 1px rgba(215,242,98,0.04);
  transform: perspective(1400px) rotateX(6deg);
  transform-origin: top center;
  transition: transform 0.8s var(--ease);
  will-change: transform;
}
.mockup:hover .mock-frame { transform: perspective(1400px) rotateX(2deg) translateY(-4px); }
.mock-bar {
  display: flex; align-items: center; gap: 7px; padding: 13px 18px;
  border-bottom: 1px solid rgba(243, 240, 233, 0.09);
}
.mock-bar i { width: 10px; height: 10px; border-radius: 50%; background: rgba(243,240,233,0.14); }
.mock-url {
  margin-left: 14px; font-size: 0.72rem; color: #6b6862;
  background: rgba(243,240,233,0.05); border-radius: 7px; padding: 5px 14px; letter-spacing: 0.02em;
}
.mock-body { padding: 26px 30px 34px; text-align: left; }
.mock-nav { display: flex; align-items: center; gap: 14px; margin-bottom: 30px; }
.mock-dot { width: 22px; height: 22px; border-radius: 7px; background: linear-gradient(140deg, #d7f262, #8fb832); }
.mock-line { height: 8px; border-radius: 99px; background: rgba(243,240,233,0.13); display: inline-block; }
.mock-line.dim { background: rgba(243,240,233,0.07); }
.w12 { width: 12%; } .w20 { width: 20%; } .w30 { width: 30%; }
.mock-line.right { margin-left: auto; }
.mock-pill { width: 74px; height: 24px; border-radius: 99px; background: rgba(215,242,98,0.9); }
.mock-hero { display: flex; flex-direction: column; gap: 12px; margin-bottom: 30px; }
.mock-h { height: 22px; border-radius: 8px; background: linear-gradient(90deg, rgba(243,240,233,0.24), rgba(243,240,233,0.10)); }
.w40 { width: 40%; } .w55 { width: 55%; }
.mock-cta { width: 128px; height: 32px; border-radius: 99px; background: #d7f262; margin-top: 8px; }
.mock-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.mock-grid i {
  height: 84px; border-radius: 12px;
  background: linear-gradient(150deg, rgba(243,240,233,0.08), rgba(243,240,233,0.03));
  border: 1px solid rgba(243, 240, 233, 0.09);
}

.float-chip {
  position: absolute; display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.78rem; font-weight: 600; color: #f3f0e9;
  background: rgba(23, 23, 26, 0.88); backdrop-filter: blur(8px);
  border: 1px solid rgba(243, 240, 233, 0.16); border-radius: 999px; padding: 10px 18px;
  box-shadow: 0 18px 50px rgba(0,0,0,0.45);
  animation: floaty 6s ease-in-out infinite;
}
.float-chip svg { color: #d7f262; }
.fc1 { top: 8%; left: -7%; animation-delay: 0s; }
.fc2 { top: 40%; right: -9%; animation-delay: -2s; }
.fc3 { bottom: -5%; left: 6%; animation-delay: -4s; }
@keyframes floaty {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-11px); }
}
@media (max-width: 900px) {
  .fc1 { left: 2%; } .fc2 { right: 2%; } .fc3 { left: 8%; }
}

.marquee {
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  overflow: hidden; padding: 17px 0; background: var(--soft);
}
.marquee-track { display: flex; width: max-content; animation: marquee 36s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee span {
  display: inline-flex; align-items: center; gap: 22px; padding-right: 22px;
  font-size: 0.82rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--ink-faint); white-space: nowrap;
}
.marquee svg { color: var(--acc-text); opacity: 0.75; flex-shrink: 0; }
@keyframes marquee { to { transform: translateX(-50%); } }

.stats { padding: 84px 0 10px; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: 20px; overflow: hidden; }
.stat { background: var(--bg-raise); padding: 38px 26px; transition: background 0.5s ease; }
.stat strong {
  display: block; font-family: var(--serif); font-weight: 600;
  font-size: clamp(2.2rem, 4vw, 3.1rem); letter-spacing: -0.02em; color: var(--ink); line-height: 1;
}
.stat-label { display: block; margin-top: 12px; color: var(--ink-dim); font-size: 0.88rem; }
@media (max-width: 820px) { .stats-grid { grid-template-columns: repeat(2, 1fr); } }

.section { padding: 130px 0; position: relative; }

.compare {
  overflow-x: auto; border: 1px solid var(--line-strong); border-radius: 20px;
  background: var(--bg-raise);
}
.compare table { width: 100%; border-collapse: collapse; min-width: 720px; }
.compare th, .compare td { padding: 17px 24px; text-align: left; border-bottom: 1px solid var(--line); font-size: 0.94rem; vertical-align: middle; }
.compare thead th { font-family: var(--serif); font-size: 1.05rem; font-weight: 600; padding: 24px; color: var(--ink-dim); }
.compare thead th.hl { color: var(--acc-text); }
.compare tbody td:first-child { font-weight: 600; color: var(--ink); width: 20%; white-space: nowrap; }
.compare td:nth-child(2) { color: var(--ink-faint); }
.compare td svg { vertical-align: -2px; margin-right: 10px; flex-shrink: 0; }
.compare .tx { color: var(--ink-faint); opacity: 0.7; }
.compare .tc { color: var(--acc-text); }
.compare td.hl { background: color-mix(in srgb, var(--acc) 5%, transparent); color: var(--ink); font-weight: 500; box-shadow: inset 2px 0 0 color-mix(in srgb, var(--acc-text) 40%, transparent); }
.compare tbody tr:last-child td { border-bottom: none; }
.compare tbody tr { transition: background 0.2s ease; }
.compare tbody tr:hover { background: var(--soft); }

.spot { position: relative; }
.spot::before {
  content: ""; position: absolute; inset: 0; border-radius: inherit; pointer-events: none;
  background: radial-gradient(420px circle at var(--mx, 50%) var(--my, 50%),
              color-mix(in srgb, var(--acc) 10%, transparent), transparent 65%);
  opacity: 0; transition: opacity 0.4s ease;
}
.spot:hover::before { opacity: 1; }

.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
@media (max-width: 940px) { .grid-3 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .grid-3 { grid-template-columns: 1fr; } }
.card {
  background: var(--bg-raise); border: 1px solid var(--line); border-radius: 20px;
  padding: 34px 30px;
  transition: transform 0.45s var(--ease), border-color 0.3s ease, background 0.3s ease, box-shadow 0.45s var(--ease);
}
.card:hover { transform: translateY(-5px); border-color: color-mix(in srgb, var(--acc-text) 35%, transparent); background: var(--bg-raise-2); box-shadow: var(--card-shadow); }
.card-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 48px; height: 48px; border-radius: 14px; margin-bottom: 22px;
  background: color-mix(in srgb, var(--acc) 9%, transparent);
  border: 1px solid color-mix(in srgb, var(--acc-text) 25%, transparent);
  color: var(--acc-text);
  transition: transform 0.45s var(--ease);
}
.card:hover .card-icon { transform: scale(1.08) rotate(-4deg); }
.card p { color: var(--ink-dim); font-size: 0.93rem; }

.card summary { list-style: none; display: flex; align-items: center; gap: 14px; cursor: default; }
.card summary::-webkit-details-marker { display: none; }
.card summary .card-icon { margin-bottom: 0; flex-shrink: 0; }
.card summary h3 { margin-bottom: 0; flex: 1; }
.card .card-chev { display: none; color: var(--acc-text); flex-shrink: 0; transition: transform 0.4s var(--ease); }
.card[open] .card-chev { transform: rotate(45deg); }
.card > p { margin-top: 16px; }

.work-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
@media (max-width: 940px) { .work-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .work-grid { grid-template-columns: 1fr; } }
.work-card {
  display: flex; flex-direction: column;
  color: inherit; text-decoration: none;
  background: var(--bg-raise); border: 1px solid var(--line); border-radius: 20px; overflow: hidden;
  transition: transform 0.5s var(--ease), border-color 0.3s ease, box-shadow 0.5s var(--ease);
}
.work-card:hover { transform: translateY(-6px); border-color: var(--line-strong); box-shadow: var(--card-shadow); }
.work-preview {
  position: relative; overflow: hidden;
  background: linear-gradient(155deg, hsl(var(--h) 32% 15%), hsl(var(--h) 40% 9%));
  border-bottom: 1px solid var(--line);
}
.wp-img {
  width: 100%; height: 210px; object-fit: cover; object-position: top center; display: block;
  transition: transform 0.7s var(--ease);
}
.work-card:hover .wp-img { transform: scale(1.045); }
.wp-logo {
  display: flex; align-items: center; justify-content: center; height: 210px;
  background: linear-gradient(155deg, hsl(var(--h) 48% 94%), hsl(var(--h) 42% 87%));
}
.wp-logo-img {
  max-width: 62%; max-height: 44%; object-fit: contain;
  transition: transform 0.7s var(--ease);
}
.work-card:hover .wp-logo-img { transform: scale(1.05); }
.work-meta { padding: 24px 26px 28px; }
.work-tag {
  display: inline-block; font-size: 0.68rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--acc-text); background: color-mix(in srgb, var(--acc) 9%, transparent);
  border: 1px solid color-mix(in srgb, var(--acc-text) 22%, transparent);
  border-radius: 999px; padding: 4px 12px; margin-bottom: 14px;
}
.work-meta p { color: var(--ink-dim); font-size: 0.9rem; margin-bottom: 16px; }
.work-stat {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.84rem; font-weight: 600; color: var(--ink);
}
.work-stat svg { color: var(--acc-text); flex-shrink: 0; }

.quote { margin: 84px auto 0; max-width: 820px; text-align: center; }
.quote blockquote {
  font-family: var(--serif); font-style: italic; font-weight: 400;
  font-size: clamp(1.4rem, 3vw, 2.1rem); line-height: 1.35; color: var(--ink);
  text-wrap: balance;
}
.quote figcaption { margin-top: 22px; color: var(--ink-faint); font-size: 0.9rem; letter-spacing: 0.04em; }

.pricing { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; align-items: stretch; }
@media (max-width: 940px) { .pricing { grid-template-columns: 1fr; max-width: 480px; } }
.price-card {
  position: relative; display: flex; flex-direction: column;
  background: var(--bg-raise); border: 1px solid var(--line); border-radius: 24px; padding: 38px 32px;
  transition: transform 0.45s var(--ease), border-color 0.3s ease, box-shadow 0.45s var(--ease);
}
.price-card:hover { transform: translateY(-5px); border-color: var(--line-strong); box-shadow: var(--card-shadow); }
.price-card.featured {
  background: linear-gradient(170deg, color-mix(in srgb, var(--acc) 8%, transparent), color-mix(in srgb, var(--acc) 2%, transparent) 45%), var(--bg-raise);
  border-color: color-mix(in srgb, var(--acc-text) 45%, transparent);
  box-shadow: 0 30px 90px color-mix(in srgb, var(--acc) 8%, transparent);
}
.price-card.featured:hover { border-color: var(--acc-text); }
.badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--acc); color: var(--acc-ink); font-weight: 700; font-size: 0.72rem;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 6px 18px; border-radius: 999px; white-space: nowrap;
}
.price-card h3 { color: var(--ink-dim); font-size: 0.95rem; font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase; }
.price {
  font-family: var(--serif); font-weight: 600; font-size: 3rem; letter-spacing: -0.02em;
  margin: 14px 0 4px; line-height: 1;
}
.price span { font-family: var(--sans); font-size: 0.95rem; font-weight: 500; color: var(--ink-dim); letter-spacing: 0; }
.price-sub { color: var(--ink-dim); font-size: 0.88rem; margin-bottom: 26px; }
.price-card ul { list-style: none; margin-bottom: 32px; flex: 1; }
.price-card li {
  display: flex; align-items: baseline; gap: 12px;
  padding: 9px 0; font-size: 0.93rem; color: var(--ink-dim);
  border-bottom: 1px solid var(--line);
}
.price-card li strong { color: var(--ink); }
.price-card li:last-child { border-bottom: none; }
.price-card li svg { color: var(--acc-text); flex-shrink: 0; transform: translateY(2px); }
.price-card .btn { justify-content: center; }

.price-hero .price-card { max-width: 680px; margin: 0 auto; text-align: center; }
.price-hero .price-card ul { text-align: left; }
.price-xl { font-size: clamp(3.2rem, 6vw, 4.2rem); }
.price-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 0 28px; }
@media (max-width: 620px) { .price-cols { grid-template-columns: 1fr; } }
.price-hero .btn { align-self: center; min-width: 60%; }
.modules-title {
  text-align: center; margin: 46px 0 20px; color: var(--ink-faint);
  font-size: 0.74rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase;
}
.modules { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.modules-two { grid-template-columns: repeat(2, 1fr); max-width: 800px; margin: 0 auto; }
@media (max-width: 940px) { .modules-two { grid-template-columns: 1fr; max-width: 480px; } }
@media (max-width: 940px) { .modules { grid-template-columns: 1fr; max-width: 480px; margin-left: auto; margin-right: auto; } }
.module-card {
  background: var(--bg-raise); border: 1px dashed var(--line-strong); border-radius: 20px;
  padding: 28px 26px;
  transition: transform 0.45s var(--ease), border-color 0.3s ease, box-shadow 0.45s var(--ease);
}
.module-card:hover { transform: translateY(-4px); border-color: color-mix(in srgb, var(--acc-text) 40%, transparent); border-style: solid; box-shadow: var(--card-shadow); }
.module-card h3 { font-size: 0.92rem; color: var(--ink-dim); text-transform: uppercase; letter-spacing: 0.05em; }
.module-price {
  font-family: var(--serif); font-weight: 600; font-size: 1.7rem; letter-spacing: -0.01em;
  margin: 8px 0 10px; color: var(--ink);
}
.module-price span { font-family: var(--sans); font-size: 0.85rem; font-weight: 500; color: var(--ink-dim); }
.module-card p { color: var(--ink-dim); font-size: 0.88rem; }

.guarantee {
  display: flex; gap: 20px; align-items: flex-start;
  margin: 52px auto 0; max-width: 760px;
  border: 1px solid color-mix(in srgb, var(--acc-text) 28%, transparent); border-radius: 20px;
  background: color-mix(in srgb, var(--acc) 5%, transparent); padding: 28px 32px;
}
.guarantee svg { color: var(--acc-text); flex-shrink: 0; margin-top: 3px; }
.guarantee p { color: var(--ink-dim); font-size: 0.97rem; }
.guarantee strong { color: var(--ink); }

.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-top: 56px; }
@media (max-width: 940px) { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .steps { grid-template-columns: 1fr; } }
.step { border-top: 1px solid var(--line-strong); padding-top: 26px; position: relative; }
.step::before {
  content: ""; position: absolute; top: -1px; left: 0; width: 44px; height: 1px;
  background: var(--acc-text); transition: width 0.6s var(--ease);
}
.step:hover::before { width: 100%; }
.step-num {
  font-family: var(--serif); font-style: italic; font-size: 1rem; color: var(--acc-text);
  display: block; margin-bottom: 16px;
}
.step p { color: var(--ink-dim); font-size: 0.92rem; }

.faq-list { margin-top: 12px; }
#faq details { border-bottom: 1px solid var(--line); }
#faq summary {
  cursor: pointer; list-style: none; display: flex; align-items: center; justify-content: space-between; gap: 20px;
  font-weight: 600; font-size: 1.02rem; padding: 24px 4px; color: var(--ink);
  transition: color 0.2s ease;
}
#faq summary:hover { color: var(--acc-text); }
#faq summary::-webkit-details-marker { display: none; }
.faq-icon { color: var(--acc-text); flex-shrink: 0; transition: transform 0.4s var(--ease); }
#faq details[open] .faq-icon { transform: rotate(45deg); }
#faq details p { padding: 0 4px 26px; color: var(--ink-dim); max-width: 640px; animation: faqIn 0.5s var(--ease); }
@keyframes faqIn { from { opacity: 0; transform: translateY(-6px); filter: blur(3px); } to { opacity: 1; transform: none; filter: none; } }

.cta-section { overflow: hidden; }
.aurora-b i:nth-child(1) { width: 600px; height: 460px; left: -10%; bottom: -30%; top: auto; background: radial-gradient(circle, color-mix(in srgb, var(--acc) 14%, transparent), transparent 65%); }
.aurora-b i:nth-child(2) { width: 520px; height: 520px; right: -12%; top: -10%; background: radial-gradient(circle, rgba(122,182,255,0.10), transparent 65%); animation-delay: -10s; }

.lead-form {
  position: relative; z-index: 2;
  background: #f4f1ea; color: #131311;
  border: 1px solid rgba(25, 24, 17, 0.08);
  border-radius: 26px; padding: 42px 40px; margin-top: 20px;
  box-shadow: var(--form-shadow);
}
@media (max-width: 560px) { .lead-form { padding: 30px 22px; } }
.form-progress { height: 4px; background: rgba(19,19,17,0.1); border-radius: 999px; overflow: hidden; margin-bottom: 30px; }
.form-progress-bar { height: 100%; width: 33%; background: #131311; border-radius: 999px; transition: width 0.5s var(--ease); }
.form-step { display: none; border: none; }
.form-step.active { display: block; animation: stepIn 0.5s var(--ease); }
@keyframes stepIn { from { opacity: 0; transform: translateX(16px); filter: blur(4px); } to { opacity: 1; transform: none; filter: none; } }
legend { font-family: var(--serif); font-weight: 600; font-size: 1.15rem; margin-bottom: 22px; color: #131311; }
.lead-form label { display: block; font-weight: 600; font-size: 0.88rem; margin-bottom: 18px; color: #131311; }
.lead-form input[type="text"], .lead-form input[type="email"], .lead-form input[type="tel"], .lead-form input[type="url"],
.lead-form select, .lead-form textarea {
  width: 100%; margin-top: 7px; padding: 14px 16px;
  border: 1.5px solid rgba(19,19,17,0.16); border-radius: 13px;
  font-family: var(--sans); font-size: 0.98rem; color: #131311; background: #fdfcfa;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.lead-form input:focus, .lead-form select:focus, .lead-form textarea:focus {
  outline: none; border-color: #131311; box-shadow: 0 0 0 3px rgba(19,19,17,0.08);
}
.lead-form input.invalid, .lead-form select.invalid { border-color: #c9403a; }
.group-label { display: block; font-weight: 600; font-size: 0.88rem; margin-bottom: 10px; }
.checks { display: grid; grid-template-columns: repeat(2, 1fr); gap: 6px 16px; margin-bottom: 20px; }
@media (max-width: 560px) { .checks { grid-template-columns: 1fr; } }
.check { display: flex !important; align-items: center; gap: 11px; font-weight: 500 !important; margin-bottom: 5px !important; cursor: pointer; }
.check input { width: 18px; height: 18px; accent-color: #131311; flex-shrink: 0; }
.check.consent { font-size: 0.82rem; color: rgba(19,19,17,0.65); margin-top: 8px; align-items: flex-start; }
.check.consent input { margin-top: 3px; }
.form-nav { display: flex; justify-content: space-between; align-items: center; margin-top: 28px; gap: 12px; }
.form-terms { margin-top: 18px; font-size: 0.78rem; color: rgba(19,19,17,0.55); text-align: center; }
.form-terms a { color: inherit; font-weight: 600; }
.form-error { margin-top: 18px; color: #a12d28; font-size: 0.9rem; background: rgba(201,64,58,0.09); padding: 13px 17px; border-radius: 13px; }
.form-error a { color: inherit; }
.form-success { text-align: center; padding: 36px 10px; }
.success-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 66px; height: 66px; border-radius: 50%;
  background: #131311; color: #d7f262; margin-bottom: 20px;
  animation: pop 0.6s var(--ease);
}
@keyframes pop { from { transform: scale(0.4); opacity: 0; } to { transform: scale(1); opacity: 1; } }
.form-success h3 { font-family: var(--serif); font-size: 1.7rem; font-weight: 600; }
.form-success p { color: rgba(19,19,17,0.65); max-width: 420px; margin: 12px auto 0; }

.legal { max-width: 760px; padding-top: 160px; padding-bottom: 110px; }
.legal h1 { font-family: var(--serif); font-weight: 600; font-size: clamp(2.2rem, 5vw, 3.4rem); letter-spacing: -0.015em; line-height: 1.08; }
.legal-meta { margin-top: 16px; color: var(--ink-faint); font-size: 0.88rem; }
.legal h2 { font-size: 1.25rem; margin: 44px 0 12px; }
.legal p { color: var(--ink-dim); font-size: 0.97rem; }
.legal p + p { margin-top: 12px; }

.footer { border-top: 1px solid var(--line); padding: 72px 0 34px; }
.footer-inner { display: flex; justify-content: space-between; gap: 48px; flex-wrap: wrap; }
.footer-inner p { font-size: 0.9rem; margin-top: 16px; color: var(--ink-dim); }
.footer-links { display: flex; flex-direction: column; gap: 12px; }
.footer-links a { color: var(--ink-dim); text-decoration: none; font-size: 0.92rem; transition: color 0.2s ease; }
.footer-links a:hover { color: var(--ink); }
.footer-note { margin-top: 56px; font-size: 0.78rem; color: var(--ink-faint); }

.mobile-cta {
  position: fixed; left: 16px; right: 16px; bottom: 16px; z-index: 90;
  display: none; align-items: center; justify-content: center; gap: 10px;
  background: var(--acc); color: var(--acc-ink);
  font-weight: 700; font-size: 0.95rem; letter-spacing: 0.01em;
  padding: 16px 20px; border-radius: 999px; text-decoration: none;
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.38);
  transform: translateY(140%);
  transition: transform 0.5s var(--ease);
}
.mobile-cta.show { transform: none; }
@media (max-width: 900px) { .mobile-cta { display: flex; } }

@media (max-width: 720px) {
  .section { padding: 84px 0; }
  .hero { padding: 140px 0 70px; }
  h2 br { display: none; }
  .lead br { display: none; }

  /* Vergleich mobil: kompakte Tabelle, zwei Spalten direkt nebeneinander, kein Quer-Scroll */
  .compare { overflow: visible; }
  .compare table { min-width: 0; display: block; }
  .compare thead { display: block; position: sticky; top: 66px; z-index: 5; }
  .compare thead tr { display: grid; grid-template-columns: 1fr 1fr; background: var(--bg-raise); }
  .compare thead th { display: none; }
  .compare thead th:nth-child(2), .compare thead th.hl {
    display: block; font-size: 0.82rem; padding: 13px 14px;
    border-bottom: 1px solid var(--line-strong);
  }
  .compare thead th.hl { background: color-mix(in srgb, var(--acc) 7%, var(--bg-raise)); }
  .compare tbody { display: block; }
  .compare tbody tr { display: grid; grid-template-columns: 1fr 1fr; }
  .compare tbody td:first-child {
    grid-column: 1 / -1; display: block; width: auto; white-space: normal;
    font-family: var(--serif); font-size: 0.95rem; font-weight: 600;
    padding: 12px 14px 2px; border-bottom: none;
  }
  .compare td { display: block; border-bottom: none; padding: 2px 14px 13px; font-size: 0.82rem; line-height: 1.45; }
  .compare td svg { width: 12px; height: 12px; margin-right: 6px; vertical-align: -1px; }
  .compare td.hl { box-shadow: none; background: color-mix(in srgb, var(--acc) 7%, var(--bg-raise)); border-radius: 10px 0 0 10px; }
  .compare tbody tr { border-bottom: 1px solid var(--line); }
  .compare tbody tr:last-child { border-bottom: none; }
}

@media (max-width: 620px) {
  .container { padding: 0 20px; }
  h1 { font-size: clamp(2.3rem, 11vw, 2.9rem); }
  h2 { font-size: clamp(1.7rem, 8vw, 2.2rem); }

  .hero-cta { flex-direction: column; align-items: stretch; }
  .hero-cta .btn, .price-hero .btn { width: 100%; justify-content: center; min-width: 0; }
  .btn { padding: 15px 24px; font-size: 0.94rem; }
  .btn-sm { width: auto; padding: 10px 14px; font-size: 0.8rem; white-space: nowrap; }
  .nav-inner { height: 66px; gap: 10px; }
  .logo-mark { width: 33px; height: 33px; }
  .logo-word { font-size: 1.1rem; }
  .theme-toggle { width: 35px; height: 35px; }
  .form-nav { flex-wrap: wrap; }
  .form-nav .btn { flex: 1; justify-content: center; padding: 14px 16px; }

  .card { padding: 18px 18px; }
  .card summary { cursor: pointer; gap: 12px; }
  .card summary .card-icon { width: 40px; height: 40px; }
  .card summary h3 { font-size: 1rem; }
  .card .card-chev { display: block; }
  .card > p { margin-top: 12px; padding-left: 52px; }

  .stat { padding: 26px 18px; }
  .stat strong { font-size: 1.9rem; }
  .price-card { padding: 30px 22px; }
  .price-hero .price-card { padding-top: 36px; }
  .guarantee { padding: 22px 20px; flex-direction: column; gap: 12px; }
  .modules-title { margin-top: 36px; }
  .mockup { margin-top: 60px; }
  .float-chip { font-size: 0.7rem; padding: 8px 13px; }
  .fc3 { display: none; }
  .work-grid { gap: 16px; }
  .wp-img, .wp-logo { height: 180px; }
  .footer { padding-bottom: 96px; }
}

.reveal { opacity: 0; transition: opacity 1s var(--ease), transform 1s var(--ease), filter 1s var(--ease); }
.r-blur { filter: blur(10px); transform: translateY(14px); }
.r-rise { transform: translateY(30px); filter: blur(4px); }
.reveal.visible { opacity: 1; transform: none; filter: none; }
.d1 { transition-delay: 0.08s; }
.d2 { transition-delay: 0.16s; }
.d3 { transition-delay: 0.24s; }
.d4 { transition-delay: 0.32s; }
.d5 { transition-delay: 0.42s; }

@media (prefers-reduced-motion: reduce) {
  .reveal, .r-blur, .r-rise { opacity: 1; transform: none; filter: none; transition: none; }
  .aurora i, .float-chip, .marquee-track { animation: none; }
  .spot::before { display: none; }
  html { scroll-behavior: auto; }
}
