/* ===== PKV Abschluss — Design tokens ===== */
:root {
  --bg: #0B0B0C;
  --bg-elev: #131315;
  --bg-card: #17171A;
  --bg-card-2: #1C1C20;
  --line: rgba(255,255,255,0.08);
  --line-strong: rgba(255,255,255,0.14);
  --fg: #F4F1EA;
  --fg-dim: #B6B3AC;
  --fg-muted: #7B7B78;
  --accent: #E0B96A;
  --accent-2: #C99A48;
  --accent-3: #F5D58A;
  --accent-ink: #1A1306;
  --accent-soft: rgba(224,185,106,0.12);
  --accent-glow: rgba(224,185,106,0.22);
  --danger: #FF7A7A;
  --radius-sm: 8px;
  --radius: 14px;
  --radius-lg: 22px;
  --radius-xl: 32px;
  --shadow-soft: 0 8px 28px rgba(0,0,0,0.5);
  --maxw: 1240px;
  --font-display: "Inter Tight", "Inter", system-ui, -apple-system, sans-serif;
  --font-body: "Inter", system-ui, -apple-system, sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, "SF Mono", Menlo, monospace;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; background: var(--bg); color: var(--fg); }
body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }

/* ----- Layout ----- */
.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.section { padding: 96px 0; position: relative; }
.section--sm { padding: 64px 0; }
.section--lg { padding: 140px 0; }
.section-divider { height: 1px; background: var(--line); }

/* ----- Type ----- */
.eyebrow {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: "";
  width: 6px; height: 6px;
  background: var(--accent);
  border-radius: 999px;
  display: inline-block;
}
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.04;
  margin: 0;
  text-wrap: balance;
}
.h-hero {
  font-size: clamp(44px, 7vw, 92px);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 0.98;
}
.h-1 { font-size: clamp(36px, 4.6vw, 64px); letter-spacing: -0.03em; }
.h-2 { font-size: clamp(28px, 3vw, 40px); letter-spacing: -0.02em; }
.h-3 { font-size: clamp(20px, 1.6vw, 24px); }
.muted { color: var(--fg-dim); }
.mono { font-family: var(--font-mono); letter-spacing: 0.02em; }

/* ----- Buttons ----- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 10px;
  height: 50px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 500;
  font-size: 15px;
  letter-spacing: -0.005em;
  transition: transform .15s ease, background .2s ease, color .2s ease, border-color .2s ease;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn-primary {
  background: linear-gradient(180deg, #EDC97A 0%, #C99A48 100%);
  color: var(--accent-ink);
  box-shadow: 0 1px 0 rgba(255,255,255,0.22) inset, 0 8px 22px rgba(201,154,72,0.25);
}
.btn-primary:hover { background: linear-gradient(180deg, #F1D08A 0%, #D6A654 100%); transform: translateY(-1px); }
.btn-primary:active { transform: translateY(0); }
.btn-ghost {
  background: transparent;
  color: var(--fg);
  border-color: var(--line-strong);
}
.btn-ghost:hover { border-color: var(--fg-dim); background: rgba(255,255,255,0.03); }
.btn-sm { height: 40px; padding: 0 16px; font-size: 13px; }
.btn-lg { height: 56px; padding: 0 28px; font-size: 16px; }

.btn-arrow svg { transition: transform .2s ease; }
.btn-arrow:hover svg { transform: translateX(3px); }

/* ----- Header ----- */
.header {
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: blur(14px);
  background: rgba(11,11,12,0.72);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
}
.brand {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.02em;
  font-size: 18px;
}
.brand-mark {
  width: 28px; height: 28px;
  background: var(--accent);
  color: var(--accent-ink);
  display: grid; place-items: center;
  border-radius: 8px;
  font-weight: 700;
  font-size: 13px;
}
.nav { display: flex; gap: 36px; }
.nav a {
  color: var(--fg-dim);
  font-size: 14px;
  transition: color .15s ease;
}
.nav a:hover { color: var(--fg); }
.header-cta { display: flex; gap: 10px; align-items: center; }
@media (max-width: 860px) { .nav { display: none; } }

/* ----- Hero ----- */
.hero {
  padding: 80px 0 60px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute; inset: -40% -10% auto -10%; height: 80%;
  background:
    radial-gradient(50% 50% at 30% 20%, rgba(224,185,106,0.16), transparent 70%),
    radial-gradient(40% 40% at 80% 50%, rgba(201,154,72,0.08), transparent 70%);
  pointer-events: none;
  z-index: 0;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-tag {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 14px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  color: var(--fg-dim);
  font-size: 13px;
  margin-bottom: 28px;
}
.hero-tag-row {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.hero-tag-row .hero-tag { margin-bottom: 0; }
.price-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px 7px 12px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(224,185,106,0.16) 0%, rgba(224,185,106,0.06) 100%);
  border: 1px solid rgba(224,185,106,0.4);
}
.price-pill-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.04em;
  color: var(--fg-dim);
  text-transform: uppercase;
}
.price-pill-val {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: -0.01em;
  color: var(--accent);
}
.hero-tag .dot {
  width: 6px; height: 6px; border-radius: 99px; background: var(--accent);
  box-shadow: 0 0 0 4px var(--accent-soft);
}
.hero h1 { margin-bottom: 28px; }
.hero h1 em {
  font-style: normal;
  background: linear-gradient(180deg, #F5D58A 0%, #C99A48 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  position: relative;
  display: inline-block;
}
.hero h1 em::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -6px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  transform: scaleX(0);
  transform-origin: left;
  animation: underlineGrow 1.4s ease 0.6s forwards;
}
@keyframes underlineGrow {
  to { transform: scaleX(1); }
}
.bullet-list { display: flex; flex-direction: column; gap: 14px; margin: 0 0 36px; padding: 0; list-style: none; }
.bullet-list li {
  display: flex; align-items: flex-start; gap: 12px;
  color: var(--fg-dim);
  font-size: 16px;
}
.bullet-list .check {
  flex: 0 0 22px; height: 22px; border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent);
  display: grid; place-items: center;
  margin-top: 1px;
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-meta {
  margin-top: 36px;
  display: flex; gap: 28px; align-items: center;
  color: var(--fg-muted);
  font-size: 13px;
}
.avatars { display: flex; }
.avatars span {
  width: 28px; height: 28px; border-radius: 99px;
  background: linear-gradient(135deg, #2b2b30, #3d3d44);
  border: 2px solid var(--bg);
  margin-left: -8px;
}
.avatars span:first-child { margin-left: 0; }

/* ----- Guarantee banner (with animated signature) ----- */
.hero-right-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
.hero-right-col .hero-visual {
  width: 100%;
}
.hero-proseal {
  display: flex;
  justify-content: center;
}
.guarantee-banner {
  margin-top: 32px;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 16px 20px;
  background: linear-gradient(180deg, rgba(224,185,106,0.08) 0%, rgba(224,185,106,0.02) 100%);
  border: 1px solid rgba(224,185,106,0.28);
  border-radius: 16px;
  position: relative;
  overflow: hidden;
}
.guarantee-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(40% 80% at 0% 50%, rgba(224,185,106,0.15), transparent 70%);
  pointer-events: none;
}
.guarantee-icon {
  flex: 0 0 auto;
  width: 64px; height: 48px;
  border-radius: 10px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(224,185,106,0.3);
  color: var(--accent);
  display: grid;
  place-items: center;
  position: relative;
}
.guarantee-title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 16px;
  color: var(--fg);
  letter-spacing: -0.01em;
}
.guarantee-sub {
  font-size: 13px;
  color: var(--fg-dim);
  margin-top: 2px;
}

/* Signature draw animation */
.sig-svg .sig-path {
  stroke-dasharray: 240;
  stroke-dashoffset: 240;
  animation: sigDraw 2.4s cubic-bezier(0.65, 0, 0.35, 1) 0.4s forwards;
}
.sig-svg .sig-base {
  stroke-dasharray: 120;
  stroke-dashoffset: 120;
  animation: sigDraw 0.8s ease 2.6s forwards, sigPulse 3.6s ease-in-out 3.4s infinite;
  opacity: 0.5;
}
@keyframes sigDraw {
  to { stroke-dashoffset: 0; }
}
@keyframes sigPulse {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 1; }
}

/* Hover replays signature on banner */
.guarantee-banner:hover .sig-svg .sig-path {
  animation: sigDraw 1.8s cubic-bezier(0.65, 0, 0.35, 1) forwards;
}

/* ----- Scroll reveal ----- */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .8s cubic-bezier(0.2, 0.7, 0.2, 1), transform .8s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }
.reveal-delay-3 { transition-delay: 0.24s; }
.reveal-delay-4 { transition-delay: 0.32s; }
.reveal-delay-5 { transition-delay: 0.4s; }

/* ----- Hero entry animations ----- */
.hero h1, .hero .hero-tag, .hero .bullet-list, .hero .hero-actions, .hero .guarantee-banner {
  animation: fadeUp 0.9s cubic-bezier(0.2, 0.7, 0.2, 1) backwards;
}
.hero .hero-tag { animation-delay: 0.05s; }
.hero h1 { animation-delay: 0.15s; }
.hero .bullet-list { animation-delay: 0.3s; }
.hero .hero-actions { animation-delay: 0.45s; }
.hero .guarantee-banner { animation-delay: 0.6s; }
.hero-visual { animation: fadeUp 1.2s cubic-bezier(0.2, 0.7, 0.2, 1) 0.2s backwards; }
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Safety: never leave hero content invisible for users who disable motion */
@media (prefers-reduced-motion: reduce) {
  .hero h1, .hero .hero-tag, .hero .bullet-list, .hero .hero-actions,
  .hero .guarantee-banner, .hero-visual, .mock-row, .reveal {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}

/* Hero mock-row stagger */
.mock-row {
  animation: mockSlide 0.5s ease backwards;
}
.mock-row:nth-child(1) { animation-delay: 0.8s; }
.mock-row:nth-child(2) { animation-delay: 0.95s; }
.mock-row:nth-child(3) { animation-delay: 1.1s; }
.mock-row:nth-child(4) { animation-delay: 1.25s; }
.mock-row:nth-child(5) { animation-delay: 1.4s; }
@keyframes mockSlide {
  from { opacity: 0; transform: translateX(8px); }
  to { opacity: 1; transform: translateX(0); }
}

@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
}

/* ----- Hero visual / dashboard mock ----- */
.hero-visual {
  position: relative;
  aspect-ratio: 5/4.4;
  border-radius: var(--radius-xl);
  background:
    radial-gradient(120% 60% at 20% 0%, rgba(224,185,106,0.10), transparent 60%),
    linear-gradient(180deg, #161617 0%, #0E0E10 100%);
  border: 1px solid var(--line-strong);
  padding: 22px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}
.mock-window {
  height: 100%;
  border-radius: 18px;
  background: #0F0F11;
  border: 1px solid var(--line);
  display: flex; flex-direction: column;
  overflow: hidden;
}
.mock-titlebar {
  height: 36px;
  display: flex; align-items: center; gap: 6px;
  padding: 0 14px;
  border-bottom: 1px solid var(--line);
  background: rgba(255,255,255,0.02);
}
.mock-titlebar .dotw { width: 10px; height: 10px; border-radius: 99px; background: #2d2d31; }
.mock-titlebar .url {
  margin-left: 12px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--fg-muted);
}
.mock-body { padding: 18px; display: grid; grid-template-columns: 180px 1fr; gap: 16px; flex: 1; min-height: 0; }
.mock-side {
  display: flex; flex-direction: column; gap: 10px;
}
.mock-side .nav-item {
  display: flex; align-items: center; gap: 8px;
  font-size: 12px; color: var(--fg-muted);
  padding: 8px 10px; border-radius: 8px;
}
.mock-side .nav-item.active { background: rgba(224,185,106,0.08); color: var(--accent); }
.mock-main { display: flex; flex-direction: column; gap: 12px; min-width: 0; }
.mock-row {
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 14px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--line);
  border-radius: 12px;
  font-size: 12px;
}
.mock-row .left { display: flex; align-items: center; gap: 10px; }
.mock-row .pkv-badge {
  font-family: var(--font-mono);
  font-size: 10px;
  padding: 3px 7px;
  background: var(--accent-soft);
  color: var(--accent);
  border-radius: 6px;
}
.mock-row .name { color: var(--fg); }
.mock-row .meta { color: var(--fg-muted); }
.mock-row .status {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--fg-dim);
}
.mock-row .status .ok { color: var(--accent); }

/* ----- Trust bar / Marquee ----- */
.trust-bar {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 28px 0;
  overflow: hidden;
}
.trust-bar h4 {
  font-size: 13px;
  color: var(--fg-muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin: 0 0 22px;
  text-align: center;
}
.marquee {
  position: relative;
  width: 100%;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent 0, #000 8%, #000 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 8%, #000 92%, transparent 100%);
}
.marquee-track {
  display: flex;
  gap: 56px;
  width: max-content;
  animation: marqueeRoll 38s linear infinite;
  padding-right: 56px;
}
.marquee-item {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 20px;
  color: var(--fg-dim);
  opacity: 0.6;
  letter-spacing: -0.01em;
  white-space: nowrap;
  transition: opacity .25s ease, color .25s ease;
}
.marquee-item:hover {
  opacity: 1;
  color: var(--accent);
}
@keyframes marqueeRoll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.marquee:hover .marquee-track {
  animation-play-state: paused;
}

/* ----- Stats ----- */
.stats {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: var(--bg-card);
  overflow: hidden;
}
.stat {
  padding: 44px 36px;
  border-right: 1px solid var(--line);
  display: flex; flex-direction: column; gap: 8px;
}
.stat:last-child { border-right: none; }
.stat-num {
  font-family: var(--font-display);
  font-size: clamp(44px, 5vw, 64px);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1;
}
.stat-num .suffix { color: var(--accent); }
.stat-label { color: var(--fg-dim); font-size: 14px; }
@media (max-width: 760px) {
  .stats { grid-template-columns: 1fr; }
  .stat { border-right: none; border-bottom: 1px solid var(--line); }
  .stat:last-child { border-bottom: none; }
}

/* ----- Two-col ----- */
.two-col {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  align-items: center;
}
@media (max-width: 960px) { .two-col { grid-template-columns: 1fr; gap: 48px; } }

/* ----- DACH visual ----- */
.dach-visual {
  border-radius: var(--radius-xl);
  border: 1px solid var(--line);
  background:
    radial-gradient(70% 60% at 50% 30%, rgba(224,185,106,0.10), transparent 60%),
    var(--bg-card);
  padding: 24px;
  min-height: 460px;
  position: relative;
  overflow: hidden;
}
.dach-map-wrap {
  width: 100%;
  height: 460px;
  position: relative;
}
.city-pulse {
  transform-origin: center;
  transform-box: fill-box;
  animation: cityPulse 2.6s ease-out infinite;
}
@keyframes cityPulse {
  0%   { opacity: 0.55; r: 4; }
  100% { opacity: 0; r: 14; }
}
.map-dot {
  animation: dotFade 0.6s ease backwards;
}
@keyframes dotFade {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* ----- Feature cards (I, II) ----- */
.features-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 48px;
}
.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  padding: 36px;
  display: flex; flex-direction: column; gap: 18px;
  min-height: 380px;
}
.feature-roman {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 500;
  color: var(--accent);
  letter-spacing: 0.18em;
}
.feature-card h3 {
  font-size: 28px;
  line-height: 1.1;
}
.feature-card p { color: var(--fg-dim); margin: 0; }
@media (max-width: 760px) { .features-2 { grid-template-columns: 1fr; } }

/* ----- Activity feed ----- */
.feed {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 32px;
}
.feed-card {
  display: flex; align-items: center; justify-content: space-between;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 14px 18px;
  font-size: 13px;
}
.feed-card .feed-left { display: flex; align-items: center; gap: 12px; }
.feed-card .feed-avatar {
  width: 32px; height: 32px; border-radius: 99px;
  background: linear-gradient(135deg, #2b2b30, #3d3d44);
  display: grid; place-items: center;
  font-size: 12px; color: var(--fg-dim);
}
.feed-card .feed-status {
  font-family: var(--font-mono);
  font-size: 11px; color: var(--fg-muted);
}
.feed-card.success .feed-status { color: var(--accent); }

@media (max-width: 760px) { .feed { grid-template-columns: 1fr; } }

/* ----- Process timeline ----- */
.process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 48px;
}
.process-step {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px;
  position: relative;
  display: flex; flex-direction: column; gap: 14px;
}
.process-step .step-num {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--fg-muted);
}
.process-step h4 {
  font-size: 20px;
  font-weight: 500;
}
.process-step p { color: var(--fg-dim); font-size: 14px; margin: 0; }
.process-step .icon {
  width: 40px; height: 40px;
  border-radius: 12px;
  background: var(--accent-soft);
  color: var(--accent);
  display: grid; place-items: center;
}
@media (max-width: 960px) { .process { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .process { grid-template-columns: 1fr; } }

/* ----- Packages ----- */
.packages {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 48px;
}
.pkg {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  padding: 32px;
  display: flex; flex-direction: column; gap: 18px;
  position: relative;
  transition: border-color .2s ease, transform .2s ease;
}
.pkg:hover { border-color: var(--line-strong); transform: translateY(-2px); }
.pkg.featured {
  background: linear-gradient(180deg, #1e1f1a 0%, #14140f 100%);
  border-color: rgba(224,185,106,0.35);
}
.pkg-badge {
  position: absolute; top: -10px; right: 24px;
  background: var(--accent); color: var(--accent-ink);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  padding: 5px 10px;
  border-radius: 6px;
}
.pkg h3 { font-size: 22px; }
.pkg .pkg-size {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1;
}
.pkg ul { padding: 0; margin: 0; list-style: none; display: flex; flex-direction: column; gap: 10px; }
.pkg li { display: flex; gap: 10px; color: var(--fg-dim); font-size: 14px; align-items: flex-start; }
.pkg li svg { flex: 0 0 16px; margin-top: 3px; color: var(--accent); }
@media (max-width: 960px) { .packages { grid-template-columns: 1fr; } }

/* ----- Compare ----- */
.compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 48px;
}
.compare-card {
  border-radius: var(--radius-xl);
  padding: 36px;
  border: 1px solid var(--line);
  background: var(--bg-card);
}
.compare-card.bad { opacity: 0.85; }
.compare-card.good { background: linear-gradient(180deg, #1a1c14 0%, #11130c 100%); border-color: rgba(224,185,106,0.25); }
.compare-card h4 { font-size: 20px; margin-bottom: 18px; display: flex; align-items: center; gap: 10px; }
.compare-card ul { padding: 0; margin: 0; list-style: none; display: flex; flex-direction: column; gap: 14px; }
.compare-card li {
  display: flex; gap: 12px; color: var(--fg-dim); font-size: 15px;
  align-items: flex-start;
}
.compare-card .x { color: var(--danger); }
.compare-card .v { color: var(--accent); }
@media (max-width: 760px) { .compare { grid-template-columns: 1fr; } }

/* ----- Case studies ----- */
.cases {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 48px;
}
.case {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  padding: 32px;
  display: flex; flex-direction: column; gap: 22px;
  transition: border-color .2s, transform .2s;
}
.case:hover { border-color: var(--line-strong); transform: translateY(-2px); }
.case-tag {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  color: var(--accent);
}
.case h4 { font-size: 22px; line-height: 1.15; }
.case-paket {
  font-size: 14px; color: var(--fg-dim);
  padding: 12px 14px;
  background: rgba(255,255,255,0.025);
  border: 1px solid var(--line);
  border-radius: 12px;
}
.case-paket .row { display: flex; justify-content: space-between; margin-top: 6px; }
.case-paket .row:first-child { margin-top: 0; }
.case-paket .row .label { color: var(--fg-muted); }
.case-paket .row .val { color: var(--fg); font-family: var(--font-mono); font-size: 13px; }
.case-paket .row .val.hi { color: var(--accent); }
.case-list { margin: 0; padding: 0; list-style: none; display: flex; flex-direction: column; gap: 8px; font-size: 13px; color: var(--fg-dim); }
.case-list li { display: flex; gap: 8px; align-items: flex-start; }
.case-list li::before { content: "—"; color: var(--fg-muted); }
.case-divider { height: 1px; background: var(--line); }
@media (max-width: 960px) { .cases { grid-template-columns: 1fr; } }

/* ----- Success Cases (positive) ----- */
.cases-success {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 48px;
}
.case-success {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  padding: 36px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 0;
  transition: border-color .25s ease, transform .25s ease, background .25s ease;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}
.case-success:hover {
  border-color: rgba(224,185,106,0.4);
  transform: translateY(-3px);
  background: linear-gradient(180deg, var(--bg-card-2) 0%, var(--bg-card) 100%);
}
.case-success-top {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.case-success-person {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 20px 0;
}
.case-success-quote {
  font-size: 18px;
  font-style: italic;
  color: var(--fg);
  line-height: 1.5;
  margin: 0 0 16px 0;
  padding: 0;
  border: none;
  position: relative;
}
.case-success-quote::before {
  content: open-quote;
  font-size: 48px;
  color: var(--accent);
  font-family: var(--font-display);
  position: absolute;
  top: -20px;
  left: -4px;
  opacity: 0.4;
}
.case-success-bottom {
  margin-top: auto;
  padding-top: 20px;
}

/* Success Cases responsive */
@media (max-width: 960px) {
  .cases-success { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .case-success { padding: 24px; border-radius: 20px; }
  .case-success-quote { font-size: 16px; }
}
@media (max-width: 380px) {
  .case-success { padding: 20px; }
}

/* ----- Cases V2 (Hook style) ----- */
.cases-v2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 48px;
}
.case-v2 {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 0;
  transition: border-color .25s ease, transform .25s ease, background .25s ease;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}
.case-v2:hover {
  border-color: rgba(224,185,106,0.4);
  transform: translateY(-3px);
  background: linear-gradient(180deg, var(--bg-card-2) 0%, var(--bg-card) 100%);
}
.case-v2-tag {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  color: var(--accent);
  margin-bottom: 20px;
}
.case-v2-hook {
  font-family: var(--font-display);
  font-size: clamp(24px, 2.6vw, 32px);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--fg);
  margin: 0 0 10px 0;
}
.case-v2-sub {
  font-size: 16px;
  color: var(--fg-dim);
  margin: 0 0 24px 0;
  font-style: italic;
}
.case-v2-person {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
}
.case-v2-av {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: var(--accent-soft);
  color: var(--accent);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.case-v2-name {
  font-weight: 500;
  font-size: 15px;
  color: var(--fg);
}
.case-v2-role {
  font-size: 13px;
  color: var(--fg-muted);
}
.case-v2-zeit {
  font-size: 12px;
  color: var(--fg-muted);
  font-family: var(--font-mono);
  letter-spacing: 0.02em;
  margin-top: 2px;
}
.case-v2-teaser {
  font-size: 14px;
  color: var(--fg-dim);
  line-height: 1.65;
  margin: 0 0 24px 0;
  flex-grow: 1;
}
.case-v2-kpis {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  background: rgba(255,255,255,0.025);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 16px;
  margin-bottom: 20px;
}
.case-v2-kpi {
  text-align: center;
}
.case-v2-kpi + .case-v2-kpi {
  border-left: 1px solid var(--line);
}
.case-v2-kpi-val {
  font-family: var(--font-mono);
  font-size: 16px;
  font-weight: 500;
  color: var(--accent);
}
.case-v2-kpi-label {
  font-size: 11px;
  color: var(--fg-muted);
  margin-top: 4px;
  letter-spacing: 0.02em;
}
.case-v2-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--accent);
  transition: gap .2s ease;
}
.case-v2:hover .case-v2-cta {
  gap: 14px;
}
.case-v2-cta svg {
  width: 16px;
  height: 16px;
}

/* Cases V2 responsive */
@media (max-width: 960px) {
  .cases-v2 { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .case-v2 { padding: 24px; border-radius: 20px; }
  .case-v2-hook { font-size: clamp(20px, 6vw, 26px); }
  .case-v2-sub { font-size: 14px; margin-bottom: 20px; }
  .case-v2-kpis { grid-template-columns: repeat(2, 1fr); gap: 12px; padding: 14px; }
  .case-v2-kpi + .case-v2-kpi { border-left: none; }
  .case-v2-kpi:nth-child(2n+1) { border-right: 1px solid var(--line); }
  .case-v2-kpi:nth-child(n+3) { padding-top: 12px; border-top: 1px solid var(--line); }
  .case-v2-kpi-val { font-size: 15px; }
}
@media (max-width: 380px) {
  .case-v2 { padding: 20px; }
  .case-v2-hook { font-size: 20px; }
}

/* ----- Testimonials ----- */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 48px;
}
.testi {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  padding: 32px;
  display: flex; flex-direction: column; gap: 24px;
}
.testi blockquote {
  margin: 0;
  font-size: 18px;
  line-height: 1.5;
  color: var(--fg);
  letter-spacing: -0.005em;
}
.testi .person { display: flex; align-items: center; gap: 12px; }
.testi .av {
  width: 40px; height: 40px; border-radius: 99px;
  background: linear-gradient(135deg, #2b2b30, #3d3d44);
  display: grid; place-items: center;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14px;
  color: var(--fg-dim);
}
.testi .who { display: flex; flex-direction: column; }
.testi .who .name { font-size: 14px; color: var(--fg); }
.testi .who .role { font-size: 12px; color: var(--fg-muted); }
@media (max-width: 760px) { .testi-grid { grid-template-columns: 1fr; } }

/* ----- FAQ ----- */
.faq { margin-top: 48px; border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  background: transparent;
  border: none;
  color: var(--fg);
  text-align: left;
  padding: 26px 0;
  font-family: var(--font-display);
  font-size: clamp(18px, 1.6vw, 22px);
  font-weight: 500;
  letter-spacing: -0.01em;
}
.faq-q .plus {
  flex: 0 0 28px; height: 28px;
  border-radius: 99px;
  background: rgba(255,255,255,0.05);
  display: grid; place-items: center;
  color: var(--fg-dim);
  transition: transform .2s ease, background .2s ease, color .2s ease;
}
.faq-item.open .faq-q .plus {
  background: var(--accent); color: var(--accent-ink);
  transform: rotate(45deg);
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease;
}
.faq-a > div {
  padding: 0 60px 28px 0;
  color: var(--fg-dim);
  font-size: 15.5px;
  line-height: 1.6;
}

/* ----- Big CTA ----- */
.cta-block {
  border-radius: var(--radius-xl);
  border: 1px solid var(--line-strong);
  padding: 80px 56px;
  background:
    radial-gradient(60% 80% at 50% 0%, rgba(224,185,106,0.16), transparent 70%),
    var(--bg-card);
  text-align: center;
  display: flex; flex-direction: column; gap: 32px;
  align-items: center;
}
.cta-block h2 { max-width: 780px; }
.cta-stats { display: flex; gap: 36px; flex-wrap: wrap; justify-content: center; color: var(--fg-muted); font-family: var(--font-mono); font-size: 13px; }
.cta-stats b { color: var(--fg); font-weight: 500; }

/* ----- Footer ----- */
.footer {
  border-top: 1px solid var(--line);
  padding: 60px 0 36px;
  color: var(--fg-muted);
  font-size: 13px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
}
.footer h5 { color: var(--fg); font-family: var(--font-display); font-weight: 500; font-size: 14px; margin: 0 0 16px; }
.footer ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.footer a:hover { color: var(--fg); }
.footer-bottom {
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  display: flex; justify-content: space-between; align-items: center;
  font-family: var(--font-mono);
  font-size: 12px;
}
@media (max-width: 760px) { .footer-grid { grid-template-columns: 1fr 1fr; } }

/* ----- Anfrage modal ----- */
.modal-overlay {
  position: fixed; inset: 0; z-index: 100;
  background: rgba(0,0,0,0.72);
  backdrop-filter: blur(8px);
  display: grid; place-items: center;
  padding: 24px;
  animation: fadeIn .2s ease;
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.modal {
  background: var(--bg-card);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-xl);
  width: 100%;
  max-width: 620px;
  max-height: 92vh;
  overflow: auto;
  padding: 36px;
  position: relative;
  animation: slideIn .25s ease;
}
@keyframes slideIn { from { transform: translateY(20px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
.modal-close {
  position: absolute; top: 16px; right: 16px;
  width: 36px; height: 36px; border-radius: 99px;
  background: rgba(255,255,255,0.05); border: none;
  color: var(--fg-dim);
  display: grid; place-items: center;
}
.modal-close:hover { background: rgba(255,255,255,0.1); color: var(--fg); }
.step-pill-row { display: flex; gap: 8px; margin-bottom: 24px; }
.step-pill {
  flex: 1; height: 4px; border-radius: 99px;
  background: rgba(255,255,255,0.08);
  overflow: hidden; position: relative;
}
.step-pill.active { background: var(--accent); }
.step-pill.done { background: rgba(224,185,106,0.5); }

.modal h3 { font-size: 26px; margin-bottom: 6px; }
.modal .sub { color: var(--fg-dim); font-size: 14px; margin-bottom: 24px; }
.field { display: flex; flex-direction: column; gap: 8px; margin-bottom: 16px; }
.field label { font-size: 13px; color: var(--fg-dim); }
.field input, .field select, .field textarea {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--line-strong);
  border-radius: 12px;
  padding: 14px 16px;
  color: var(--fg);
  font: inherit;
  font-size: 15px;
  outline: none;
  transition: border-color .15s ease, background .15s ease;
}
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--accent);
  background: rgba(224,185,106,0.04);
}
.options-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.opt {
  border: 1px solid var(--line-strong);
  border-radius: 12px;
  padding: 16px;
  background: rgba(255,255,255,0.02);
  font-size: 14px;
  text-align: left;
  color: var(--fg);
  cursor: pointer;
  transition: all .15s ease;
}
.opt:hover { border-color: var(--fg-dim); }
.opt.selected {
  border-color: var(--accent);
  background: var(--accent-soft);
}
.opt .opt-title { display: block; font-weight: 500; margin-bottom: 4px; }
.opt .opt-sub { color: var(--fg-muted); font-size: 12px; }
.modal-footer {
  margin-top: 28px;
  display: flex; justify-content: space-between; align-items: center;
  gap: 12px;
}
.success-state { text-align: center; padding: 20px 0; }
.success-check {
  width: 64px; height: 64px; border-radius: 99px;
  margin: 0 auto 20px;
  background: var(--accent);
  color: var(--accent-ink);
  display: grid; place-items: center;
}

/* ----- Subpage form card ----- */
.subpage-form-card {
  background: var(--bg-card);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-xl);
  padding: 32px;
  box-shadow: var(--shadow-soft);
  position: relative;
  overflow: hidden;
}
.subpage-form-card::before {
  content: "";
  position: absolute; inset: -1px;
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, rgba(224,185,106,0.25), transparent 40%);
  z-index: -1;
  pointer-events: none;
}
.form-card-head { margin-bottom: 22px; }
.form-card-eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 8px;
}
.form-card-head h3 {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 500;
  letter-spacing: -0.02em;
  margin: 0 0 8px;
}
.form-card-head p {
  color: var(--fg-dim);
  font-size: 14px;
  margin: 0;
}
.subpage-form { display: flex; flex-direction: column; gap: 14px; }
.subpage-form .field { margin: 0; }

/* ----- Subpage TOC / content blocks ----- */
.content-block {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 56px;
  padding: 60px 0;
  border-top: 1px solid var(--line);
}
.content-block:first-of-type { border-top: none; }
.content-block .lhs h3 {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 500;
  letter-spacing: -0.02em;
}
.content-block .lhs .step-tag {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  color: var(--fg-muted);
  text-transform: uppercase;
  margin-bottom: 8px;
}
.content-block .rhs p {
  color: var(--fg-dim);
  font-size: 16px;
  line-height: 1.7;
  margin: 0 0 16px;
}
.content-block .rhs ul {
  margin: 16px 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.content-block .rhs ul li {
  display: flex;
  gap: 12px;
  color: var(--fg-dim);
  font-size: 15px;
  align-items: flex-start;
}
.content-block .rhs ul li svg {
  flex: 0 0 16px;
  margin-top: 4px;
  color: var(--accent);
}
.content-block .lhs .nb {
  margin-top: 14px;
  padding: 14px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.02);
  border-radius: 12px;
  font-size: 13px;
  color: var(--fg-dim);
}
@media (max-width: 900px) {
  .content-block { grid-template-columns: 1fr; gap: 24px; padding: 40px 0; }
}

/* ----- Leitfaden form card (hero right side) ----- */
.leit-form-card {
  background: linear-gradient(180deg, #1A1A1D 0%, #131316 100%);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-xl);
  padding: 28px;
  box-shadow: var(--shadow-soft);
  position: relative;
  overflow: hidden;
  animation: fadeUp 0.9s cubic-bezier(0.2, 0.7, 0.2, 1) 0.4s backwards;
}
.leit-form-card::before {
  content: "";
  position: absolute; top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(224,185,106,0.7), transparent);
}
.leit-form-card::after {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(80% 50% at 50% 0%, rgba(224,185,106,0.08), transparent 60%);
  pointer-events: none;
  z-index: 0;
}
.leit-form-card > * { position: relative; z-index: 1; }
.leit-form-card h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.02em;
  margin: 0 0 4px;
}
.leit-form-card .field { margin-bottom: 12px; }

/* ----- Leitfaden process ----- */
.leit-process {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 48px;
}
.leit-step {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  padding: 28px;
  display: flex; flex-direction: column; gap: 12px;
  position: relative;
  overflow: hidden;
  transition: border-color .25s ease, transform .25s ease;
}
.leit-step:hover {
  border-color: rgba(224,185,106,0.4);
  transform: translateY(-3px);
}
.leit-step-num {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.16em;
  color: var(--accent);
}
.leit-step h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.015em;
  margin: 0;
}
.leit-step p { color: var(--fg-dim); font-size: 14px; line-height: 1.55; margin: 0; }
.leit-illustration {
  margin-top: auto;
  padding-top: 16px;
  min-height: 70px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.form-dot {
  display: inline-block;
  width: 10px; height: 10px;
  border-radius: 99px;
  background: rgba(224,185,106,0.6);
  animation: dotPulse 1.6s ease-in-out infinite;
}
@keyframes dotPulse {
  0%, 100% { opacity: 0.3; transform: scale(0.85); }
  50% { opacity: 1; transform: scale(1.1); }
}

.match-node {
  transform-origin: center;
  transform-box: fill-box;
  animation: matchPulse 2.2s ease-in-out infinite;
}
@keyframes matchPulse {
  0%, 100% { opacity: 0.25; r: 4; }
  50% { opacity: 1; r: 7; }
}
.match-line {
  stroke-dasharray: 4 6;
  animation: dashMove 4s linear infinite;
}
@keyframes dashMove {
  to { stroke-dashoffset: -40; }
}

.inbox-letter {
  stroke-dasharray: 80;
  stroke-dashoffset: 80;
  animation: drawLetter 1.6s ease 0.3s forwards, sigPulse 2.8s ease 2.2s infinite;
}
@keyframes drawLetter {
  to { stroke-dashoffset: 0; }
}

/* ----- Leitfaden modules grid ----- */
.module-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 48px;
}
.module-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: border-color .25s ease, transform .25s ease, background .25s ease;
}
.module-card:hover {
  border-color: rgba(224,185,106,0.35);
  transform: translateY(-2px);
  background: var(--bg-card-2);
}
.module-tag {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--accent);
  letter-spacing: 0.12em;
}
.module-card h4 {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 500;
  margin: 0;
  letter-spacing: -0.01em;
}
.module-card p { font-size: 13px; color: var(--fg-dim); margin: 0; line-height: 1.5; }

@media (max-width: 960px) {
  .leit-process { grid-template-columns: 1fr; }
  .module-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .module-grid { grid-template-columns: 1fr; }
}

/* ----- Potenzial single-page form with live calc ----- */
.potz-form-wrap {
  max-width: 1080px;
  margin: 0 auto;
}
.potz-form-card.big {
  background: linear-gradient(180deg, #1A1A1D 0%, #131316 100%);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-xl);
  padding: 36px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.5);
  position: relative;
  overflow: hidden;
}
.potz-form-card.big::before {
  content: "";
  position: absolute; top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
}
.potz-form-card h3 {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 500;
  letter-spacing: -0.02em;
  margin: 4px 0 4px;
}
.potz-form-card .sub {
  color: var(--fg-dim);
  font-size: 14px;
  margin: 0 0 22px;
}

.potz-form-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 32px;
  align-items: start;
}
.potz-form-left { display: flex; flex-direction: column; gap: 16px; }
.potz-form-right { position: sticky; top: 100px; }

/* Field val (slider display) */
.field label {
  display: flex; justify-content: space-between; align-items: baseline;
  gap: 8px;
}
.field-val {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--accent);
}

/* Chips for role */
.chip-row { display: flex; flex-wrap: wrap; gap: 8px; }
.chip {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--line-strong);
  border-radius: 99px;
  color: var(--fg-dim);
  padding: 8px 14px;
  font-size: 13px;
  cursor: pointer;
  transition: all .15s ease;
}
.chip:hover { border-color: var(--fg-dim); color: var(--fg); }
.chip.active {
  background: var(--accent-soft);
  border-color: var(--accent);
  color: var(--accent);
}

/* Range slider */
input[type="range"].range {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 6px;
  border-radius: 99px;
  background: rgba(255,255,255,0.08);
  outline: none;
  border: none;
  padding: 0;
}
input[type="range"].range::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 22px; height: 22px;
  border-radius: 99px;
  background: linear-gradient(180deg, #EDC97A 0%, #C99A48 100%);
  cursor: pointer;
  border: 2px solid #0F0F11;
  box-shadow: 0 0 0 3px rgba(224,185,106,0.18);
  transition: transform .15s ease;
}
input[type="range"].range::-webkit-slider-thumb:hover { transform: scale(1.1); }
input[type="range"].range::-moz-range-thumb {
  width: 22px; height: 22px;
  border-radius: 99px;
  background: linear-gradient(180deg, #EDC97A 0%, #C99A48 100%);
  cursor: pointer;
  border: 2px solid #0F0F11;
  box-shadow: 0 0 0 3px rgba(224,185,106,0.18);
}

/* Result card */
.potz-result-card {
  background: linear-gradient(180deg, rgba(224,185,106,0.10) 0%, rgba(224,185,106,0.02) 100%);
  border: 1px solid rgba(224,185,106,0.35);
  border-radius: var(--radius-lg);
  padding: 24px;
  display: flex; flex-direction: column; gap: 18px;
  position: relative;
  overflow: hidden;
}
.potz-result-card::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(80% 60% at 50% 0%, rgba(224,185,106,0.12), transparent 70%);
  pointer-events: none;
}
.potz-result-card > * { position: relative; }
.potz-result-eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--accent);
  margin-bottom: 4px;
}
.potz-result-block {
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(224,185,106,0.18);
}
.potz-result-block:last-of-type { border-bottom: none; padding-bottom: 0; }
.potz-result-label {
  font-size: 12px;
  color: var(--fg-dim);
  font-family: var(--font-mono);
  letter-spacing: 0.06em;
  margin-bottom: 6px;
}
.potz-result-big {
  font-family: var(--font-display);
  font-size: 44px;
  font-weight: 500;
  letter-spacing: -0.03em;
  color: var(--accent);
  line-height: 1;
  transition: color .15s ease;
}
.potz-result-big span {
  font-size: 14px;
  color: var(--fg-dim);
  font-weight: 400;
  letter-spacing: 0;
  margin-left: 6px;
}
.potz-result-medium {
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--fg);
  line-height: 1;
}
.potz-result-medium span {
  font-size: 16px;
  color: var(--fg-dim);
  margin-left: 4px;
}
.potz-result-tag {
  display: inline-block;
  padding: 8px 14px;
  background: rgba(224,185,106,0.12);
  border: 1px solid rgba(224,185,106,0.35);
  border-radius: 99px;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--accent);
  letter-spacing: 0.04em;
}
.potz-result-foot {
  font-size: 11px;
  color: var(--fg-muted);
  line-height: 1.5;
  padding-top: 6px;
}

.potz-result-final {
  display: flex;
  align-items: center;
  gap: 24px;
  justify-content: center;
  margin-top: 18px;
  padding: 24px;
  background: rgba(224,185,106,0.08);
  border: 1px solid rgba(224,185,106,0.3);
  border-radius: var(--radius-lg);
}
.potz-result-final .potz-result-num {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 500;
  color: var(--accent);
  letter-spacing: -0.02em;
}
.potz-result-final .potz-result-num span {
  font-size: 13px;
  color: var(--fg-dim);
  font-weight: 400;
  margin-left: 6px;
}
.potz-result-num.small { font-size: 18px; color: var(--fg); }
.potz-result-divider { width: 1px; height: 40px; background: rgba(224,185,106,0.3); }

@media (max-width: 960px) {
  .potz-form-grid { grid-template-columns: 1fr; }
  .potz-form-right { position: static; }
}
@media (max-width: 560px) {
  .potz-form-card.big { padding: 22px; }
  .potz-result-card { padding: 18px; }
  .potz-result-big { font-size: 36px; }
  .potz-result-final { flex-direction: column; gap: 16px; }
  .potz-result-divider { width: 40px; height: 1px; }
}

/* ----- Potenzial Doc mockup ----- */
.potz-doc {
  padding: 24px;
  background: #0F0F11;
  display: flex; flex-direction: column; gap: 14px;
  flex: 1;
  position: relative;
  overflow: hidden;
}
.potz-doc::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0.7;
}
.potz-doc-head {
  display: flex; flex-direction: column; gap: 4px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}
.potz-doc-eyebrow {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  color: var(--accent);
}
.potz-doc-title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--fg);
}
.potz-doc-meta {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--fg-muted);
}
.potz-doc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.potz-doc-stat {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 14px;
}
.potz-doc-stat.hi {
  background: linear-gradient(180deg, rgba(224,185,106,0.10) 0%, rgba(224,185,106,0.02) 100%);
  border-color: rgba(224,185,106,0.35);
}
.potz-doc-stat-label {
  font-size: 11px;
  color: var(--fg-muted);
  font-family: var(--font-mono);
  margin-bottom: 6px;
  letter-spacing: 0.06em;
}
.potz-doc-stat-val {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--fg);
}
.potz-doc-stat.hi .potz-doc-stat-val {
  color: var(--accent);
}
.potz-doc-stat-val.small {
  font-size: 18px;
  color: var(--fg-dim);
}
.potz-doc-bar-wrap { display: flex; flex-direction: column; gap: 6px; }
.potz-doc-bar-label {
  font-size: 11px;
  color: var(--fg-muted);
  font-family: var(--font-mono);
  letter-spacing: 0.06em;
}
.potz-doc-bar {
  height: 8px;
  background: rgba(255,255,255,0.06);
  border-radius: 99px;
  overflow: hidden;
}
.potz-doc-bar-fill {
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--accent), var(--accent-3));
  animation: barFill 2s cubic-bezier(0.65, 0, 0.35, 1) 0.6s forwards;
}
@keyframes barFill { to { width: 64%; } }

.potz-doc-rec {
  background: rgba(224,185,106,0.06);
  border: 1px dashed rgba(224,185,106,0.35);
  border-radius: 10px;
  padding: 12px 14px;
}
.potz-doc-rec-tag {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  color: var(--accent);
  margin-bottom: 4px;
}
.potz-doc-rec-text {
  font-size: 13px;
  color: var(--fg);
  line-height: 1.45;
}

.potz-anim-num {
  display: inline-block;
  animation: numCount 2s steps(14) 0.4s 1;
}
@keyframes numCount {
  from { content: "0"; }
  to { content: "14"; }
}

/* Override mock-body for potz-doc (used as direct child) */
.potz-hero .hero-visual { aspect-ratio: 5/4.6; padding: 18px; }
.potz-hero .mock-window { background: #0F0F11; }
.potz-hero .mock-window > .potz-doc {
  border-radius: 0;
}

@media (max-width: 760px) {
  .potz-form-card.big { padding: 24px; }
  .potz-doc { padding: 18px; }
}
.spacer { height: 24px; }
.center { text-align: center; }
.lead { font-size: clamp(17px, 1.4vw, 19px); color: var(--fg-dim); max-width: 720px; line-height: 1.55; }
.section-head { margin-bottom: 16px; display: flex; flex-direction: column; gap: 20px; max-width: 820px; }
.section-head .lead { max-width: 680px; }

/* ----- Hover micro-interactions ----- */
.feature-card, .case, .testi, .process-step {
  transition: border-color .25s ease, transform .25s ease, background .25s ease;
}
.feature-card:hover, .case:hover, .process-step:hover, .testi:hover {
  border-color: rgba(224,185,106,0.4);
  transform: translateY(-3px);
  background: linear-gradient(180deg, var(--bg-card-2) 0%, var(--bg-card) 100%);
}
.process-step .icon { transition: transform .35s ease, background .25s ease; }
.process-step:hover .icon { transform: rotate(-6deg) scale(1.08); background: rgba(224,185,106,0.2); }

.feed-card { transition: border-color .2s ease, background .2s ease, transform .2s ease; }
.feed-card:hover { border-color: rgba(224,185,106,0.3); transform: translateY(-1px); }

.case-paket .val.hi { position: relative; }
.case-paket .val.hi::after {
  content: ""; position: absolute; right: -10px; top: 4px;
  width: 4px; height: 8px; background: var(--accent); border-radius: 1px;
  opacity: 0;
  animation: blink 1.6s ease-in-out infinite;
}
@keyframes blink { 50% { opacity: 0.8; } }

/* Header cta button shine on hover */
.btn-primary { position: relative; overflow: hidden; isolation: isolate; }
.btn-primary::after {
  content: "";
  position: absolute; top: 0; left: -120%;
  width: 60%; height: 100%;
  background: linear-gradient(115deg, transparent 30%, rgba(255,255,255,0.4) 50%, transparent 70%);
  transition: left .6s ease;
  pointer-events: none;
}
.btn-primary:hover::after { left: 130%; }

/* ----- Mobile fine-tuning ----- */
@media (max-width: 760px) {
  .section { padding: 64px 0; }
  .section--lg { padding: 80px 0; }
  .hero { padding: 48px 0 32px; }
  .container { padding: 0 18px; }
  .nav { display: none; }
  .header-cta .btn-ghost { display: none; }
  .h-hero { font-size: clamp(36px, 9vw, 56px); }
  .h-1 { font-size: clamp(28px, 7vw, 40px); }
  .stat { padding: 28px 22px; }
  .stat-num { font-size: clamp(36px, 12vw, 52px); }
  .cta-block { padding: 48px 24px; }
  .modal { padding: 24px; }
  .feature-card { padding: 28px; min-height: 0; }
  .case { padding: 24px; }
  .testi { padding: 24px; }
  .subpage-form-card { padding: 24px; }
  .feed { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; gap: 8px; align-items: flex-start; }
  .guarantee-banner { padding: 14px; gap: 12px; }
  .guarantee-icon { width: 52px; height: 40px; }
  .dach-map-wrap { height: 380px; }
  .dach-visual { min-height: 400px; padding: 16px; }
  .faq-q { font-size: 17px; padding: 22px 0; }
  .faq-a > div { padding: 0 0 22px 0; }
  .options-grid { grid-template-columns: 1fr; }
}

@media (max-width: 460px) {
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { width: 100%; }
  .stats { border-radius: 18px; }
  .cta-stats { flex-direction: column; gap: 12px; align-items: center; }
}

/* ===== Comprehensive mobile (≤640px) ===== */
@media (max-width: 640px) {
  /* Container & section */
  .container { padding: 0 16px; }
  .section { padding: 56px 0; }
  .section--sm { padding: 40px 0; }
  .section--lg { padding: 72px 0; }

  /* Hero */
  .hero { padding: 40px 0 24px; }
  .h-hero { font-size: clamp(34px, 10vw, 52px); letter-spacing: -0.03em; line-height: 1.02; }
  .hero h1 em::after { bottom: -3px; height: 1.5px; }
  .hero-tag { padding: 6px 12px; font-size: 12px; margin-bottom: 18px; }
  .hero-meta { flex-direction: column; align-items: flex-start; gap: 14px; }
  .hero .lead { font-size: 16px !important; }
  .guarantee-banner { padding: 12px; gap: 10px; margin-top: 24px; }
  .guarantee-icon { width: 48px; height: 36px; flex: 0 0 48px; }
  .guarantee-title { font-size: 14px; }
  .guarantee-sub { font-size: 12px; }

  /* Header */
  .header-inner { height: 60px; }
  .brand { font-size: 16px; gap: 8px; }
  .brand-mark { width: 26px; height: 26px; font-size: 12px; }
  .header-cta .btn-ghost { display: none; }
  .header-cta .btn { height: 36px; padding: 0 14px; font-size: 12px; }

  /* Headlines */
  .h-1 { font-size: clamp(26px, 7vw, 36px); }
  .h-2 { font-size: clamp(22px, 5.5vw, 30px); }
  .lead { font-size: 15px; }
  .section-head { gap: 14px; }

  /* Stats */
  .stat { padding: 24px 22px; gap: 6px; }
  .stat-num { font-size: clamp(32px, 11vw, 48px); }
  .stat-label { font-size: 13px; }

  /* Hero visual / mock-window scales down or hides */
  .hero-visual { padding: 14px; border-radius: 22px; }
  .mock-titlebar { height: 30px; padding: 0 10px; }
  .mock-titlebar .url { font-size: 10px; }
  .mock-body { padding: 12px; grid-template-columns: 1fr; gap: 12px; }
  .mock-side { display: none; }
  .mock-row { padding: 10px 12px; font-size: 11px; }
  .mock-row .pkv-badge { font-size: 9px; padding: 2px 6px; }

  /* DACH visual */
  .dach-visual { min-height: 360px; padding: 14px; border-radius: 22px; }
  .dach-map-wrap { height: 340px; }

  /* Feature cards / Process / Cases / Testi */
  .feature-card { padding: 24px; min-height: 0; border-radius: 20px; }
  .feature-card h3 { font-size: 22px; }
  .process-step { padding: 22px; border-radius: 18px; }
  .process-step h4 { font-size: 18px; }
  .case { padding: 22px; border-radius: 20px; gap: 16px; }
  .case h4 { font-size: 20px; }
  .testi { padding: 22px; border-radius: 20px; gap: 18px; }
  .testi blockquote { font-size: 16px; line-height: 1.45; }

  /* Compare */
  .compare-card { padding: 24px; border-radius: 20px; }
  .compare-card h4 { font-size: 18px; }
  .compare-card li { font-size: 14px; }

  /* FAQ */
  .faq-q { font-size: 16px; padding: 20px 0; gap: 16px; }
  .faq-q .plus { width: 24px; height: 24px; flex: 0 0 24px; }
  .faq-a > div { padding: 0 0 20px 0; font-size: 14.5px; }

  /* Final CTA */
  .cta-block { padding: 44px 22px; gap: 24px; border-radius: 22px; }
  .cta-stats { flex-direction: column; gap: 10px; font-size: 12px; }

  /* Footer */
  .footer { padding: 48px 0 24px; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; gap: 8px; align-items: flex-start; padding-top: 20px; }

  /* Trust marquee */
  .marquee-item { font-size: 16px; }
  .marquee-track { gap: 36px; animation-duration: 28s; }
  .trust-bar h4 { font-size: 12px; margin-bottom: 18px; }

  /* Modal */
  .modal { padding: 24px 22px; border-radius: 22px; max-height: 90vh; }
  .modal h3 { font-size: 22px; }
  .options-grid { grid-template-columns: 1fr; }
  .modal-overlay { padding: 12px; }
  .modal-footer { flex-wrap: wrap; gap: 8px; }

  /* Buttons */
  .btn-lg { height: 52px; padding: 0 22px; font-size: 15px; }

  /* Avoid horizontal scroll */
  body { overflow-x: hidden; }
}

/* ===== Very small phones (≤380px) ===== */
@media (max-width: 380px) {
  .h-hero { font-size: 32px; }
  .h-1 { font-size: 24px; }
  .stat-num { font-size: 36px; }
  .cta-block { padding: 36px 18px; }
  .feature-card, .case, .testi, .compare-card, .process-step { padding: 20px; }
  .container { padding: 0 14px; }
  .header-cta .btn { font-size: 11px; padding: 0 12px; height: 34px; }
  .hero-tag { font-size: 11px; }
}
