/* ============================================================
   PERRY KNOWS — Shared Design System
   Single source of truth for all landing pages.
   ============================================================ */

:root {
  --bg: #FAFAF7;
  --bg-elevated: #FFFFFF;
  --ink: #0E1116;
  --ink-soft: #3D434B;
  --ink-muted: #8B9097;
  --line: #E9E6DF;
  --gold: #C9A16E;
  --gold-soft: #DEC094;
  --gold-deep: #A07E4D;
  --whatsapp: #25D366;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: "ss01", "cv11";
}
h1, h2, h3, h4 {
  font-family: 'Space Grotesk', 'Inter', system-ui, sans-serif;
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.05;
  color: var(--ink);
}
h1 { font-size: clamp(2.6rem, 6vw, 5rem); font-weight: 600; letter-spacing: -0.035em; }
h2 { font-size: clamp(2rem, 4.2vw, 3.4rem); font-weight: 600; letter-spacing: -0.03em; }
h3 { font-size: clamp(1.3rem, 2vw, 1.7rem); font-weight: 600; }
p { color: var(--ink-soft); }
a { color: inherit; text-decoration: none; }

.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== Navigation ===== */
nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(248, 245, 240, 0.85);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
}
.logo {
  font-family: 'Space Grotesk', 'Inter', system-ui, sans-serif;
  font-size: 1.35rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.logo-mark {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.logo-img {
  height: 38px;
  width: auto;
  display: block;
}
/* Header logo: larger, minimal vertical padding in the 72px nav bar */
nav .logo-img { height: 56px; }
/* Optional: legacy text-mark fallback */
.logo-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--gold);
}
/* Footer logo larger */
.footer-brand .logo-img { height: 56px; }
/* Final-CTA invertiert Logo (dunkler Hintergrund) */
.final-cta .logo-img {
  filter: brightness(0) invert(1);
}
.nav-links {
  display: flex; gap: 36px; align-items: center;
  font-size: 0.95rem; color: var(--ink-soft);
}
.nav-links a:hover { color: var(--ink); }
.nav-cta {
  padding: 10px 22px;
  background: var(--ink); color: var(--bg);
  border-radius: 999px;
  font-size: 0.9rem; font-weight: 500;
  transition: transform 0.2s ease, background 0.2s ease;
}
.nav-cta:hover { background: var(--gold-deep); transform: translateY(-1px); }

/* Navbar language selector (desktop, right side before CTA) */
.nav-lang {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  user-select: none;
  margin-right: 4px;
}
.nav-lang button {
  background: none;
  border: none;
  padding: 6px 6px;
  cursor: pointer;
  color: var(--ink-muted);
  font: inherit;
  letter-spacing: inherit;
  transition: color 0.2s ease;
  border-radius: 4px;
}
.nav-lang button:hover { color: var(--gold-deep); }
.nav-lang button.is-active {
  color: var(--gold-deep);
  position: relative;
}
.nav-lang button.is-active::after {
  content: "";
  position: absolute;
  left: 6px;
  right: 6px;
  bottom: 2px;
  height: 1px;
  background: var(--gold);
}
.nav-lang-divider {
  color: var(--line);
  font-weight: 400;
}

/* Mobile language selector inside the slide-in panel */
.nav-mobile-lang {
  display: flex;
  gap: 8px;
  padding: 0 24px;
  margin-top: 8px;
}
.nav-mobile-lang button {
  flex: 1;
  background: none;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 12px 16px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--ink-muted);
  cursor: pointer;
  transition: all 0.2s ease;
}
.nav-mobile-lang button:hover { color: var(--ink); border-color: var(--ink-soft); }
.nav-mobile-lang button.is-active {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--ink);
}


/* On Sub-LPs: minimal nav (logo only + back link) */
.nav-minimal .nav-links { display: none; }
.nav-minimal .nav-cta { display: none; }
.nav-back {
  font-size: 0.9rem; color: var(--ink-muted);
}
.nav-back:hover { color: var(--ink); }

/* ===== Hero ===== */
.hero { padding: 100px 0 80px; position: relative; overflow: hidden; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 64px;
  align-items: center;
}
.hero-photo {
  aspect-ratio: 4/5;
  border-radius: 24px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--bg-elevated) 0%, var(--line) 100%);
  position: relative;
  box-shadow: 0 24px 64px -32px rgba(15, 20, 25, 0.3);
}
.hero-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
}
.hero-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid var(--line);
  border-radius: 24px;
  pointer-events: none;
}
.hero-photo-tag {
  position: absolute;
  bottom: 20px; left: 20px; right: 20px;
  background: rgba(248, 245, 240, 0.95);
  backdrop-filter: blur(12px);
  border-radius: 14px;
  padding: 14px 18px;
  font-size: 0.85rem;
  color: var(--ink);
  display: flex; align-items: center; gap: 12px;
}
.hero-photo-tag-dot {
  width: 10px; height: 10px;
  background: #22c55e;
  border-radius: 50%;
  flex-shrink: 0;
  box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.6);
  animation: pulse-green 2s infinite;
}
@keyframes pulse-green {
  0% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.6); }
  70% { box-shadow: 0 0 0 12px rgba(34, 197, 94, 0); }
  100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); }
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 16px;
  background: var(--bg-elevated);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.85rem;
  color: var(--ink-soft);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 32px;
}
.hero-eyebrow .pulse {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 0 var(--gold);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(184, 147, 90, 0.6); }
  70% { box-shadow: 0 0 0 12px rgba(184, 147, 90, 0); }
  100% { box-shadow: 0 0 0 0 rgba(184, 147, 90, 0); }
}
.hero h1 .accent {
  font-style: italic;
  color: var(--gold-deep);
  font-weight: 400;
}
.hero-sub .accent {
  font-style: italic;
  color: var(--gold-deep);
  font-weight: 500;
}
.hero-sub {
  font-size: 1.15rem;
  color: var(--ink-soft);
  max-width: 580px;
  margin-top: 28px;
}
.hero-cta-row {
  display: flex; flex-wrap: wrap; gap: 14px;
  margin-top: 44px;
  align-items: center;
}
.btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 18px 32px;
  background: var(--ink); color: var(--bg);
  border-radius: 999px;
  font-size: 1rem; font-weight: 500;
  border: none; cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px -8px rgba(15, 20, 25, 0.3);
}
.btn-secondary {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 18px 32px;
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--ink);
  border-radius: 999px;
  font-size: 1rem; font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
}
.btn-secondary:hover { background: var(--ink); color: var(--bg); }
.btn-gold {
  background: var(--gold); color: var(--ink);
}
.btn-gold:hover {
  background: var(--gold-soft);
  box-shadow: 0 12px 32px -8px rgba(184, 147, 90, 0.5);
}
.hero-meta {
  margin-top: 24px;
  display: flex; align-items: center; gap: 12px;
  font-size: 0.9rem;
  color: var(--ink-muted);
}
.hero-meta::before {
  content: ""; display: block; width: 24px; height: 1px; background: var(--ink-muted);
}

/* ===== Trust Bar ===== */
.trust-bar {
  padding: 48px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--bg-elevated);
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  align-items: center;
}
.trust-item { text-align: center; }
.trust-number {
  font-family: 'Space Grotesk', 'Inter', system-ui, sans-serif;
  font-size: 2.5rem;
  font-weight: 400;
  color: var(--ink);
  line-height: 1;
}
.trust-label {
  font-size: 0.85rem;
  color: var(--ink-muted);
  margin-top: 8px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* ===== Sections ===== */
section { padding: 110px 0; }
.section-eyebrow {
  font-size: 0.85rem;
  color: var(--gold-deep);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 16px;
}
.section-header {
  max-width: 720px;
  margin-bottom: 64px;
}
.section-header.center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
.section-header p {
  font-size: 1.1rem;
  margin-top: 20px;
}

/* ===== Funnel Y-Fork Section ===== */
.funnel-section {
  background: var(--bg-elevated);
  padding: 110px 0;
}
.funnel-paths {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}
.funnel-paths.funnel-paths-two {
  grid-template-columns: repeat(2, 1fr);
  max-width: 880px;
  margin-left: auto;
  margin-right: auto;
}
/* ===== Spielregeln-Card im Funnel-Bereich ===== */
.spielregeln-card {
  max-width: 760px;
  margin: 56px auto 0;
  padding: 32px 36px;
  background: var(--bg);
  border-left: 3px solid var(--gold);
  border-radius: 0 16px 16px 0;
  box-shadow: 0 18px 48px -28px rgba(15, 20, 25, 0.18);
}
.spielregeln-headline {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(1.15rem, 1.8vw, 1.4rem);
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.015em;
  line-height: 1.3;
  margin-bottom: 18px;
}
.spielregeln-body {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--ink-soft);
  margin-top: 0;
  margin-bottom: 14px;
}
.spielregeln-body:last-of-type {
  margin-bottom: 0;
}
.spielregeln-closer a {
  color: var(--gold-deep);
  border-bottom: 1px solid var(--gold);
  padding-bottom: 1px;
  transition: color 0.2s ease, border-color 0.2s ease;
}
.spielregeln-closer a:hover {
  color: var(--ink);
  border-color: var(--ink);
}
.spielregeln-closer {
  font-size: 0.95rem;
  font-style: italic;
  color: var(--gold-deep);
  margin-top: 20px;
  margin-bottom: 0;
}
@media (max-width: 640px) {
  .spielregeln-card {
    padding: 24px 22px;
  }
}
.path-card {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 36px;
  transition: all 0.3s ease;
  cursor: pointer;
  text-align: left;
  color: var(--ink);
  display: flex;
  flex-direction: column;
  min-height: 320px;
}
.path-card:hover {
  background: var(--bg-elevated);
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px -20px rgba(201, 161, 110, 0.3);
}
.path-icon {
  width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center;
  background: var(--gold);
  color: var(--ink);
  border-radius: 14px;
  margin-bottom: 24px;
  font-size: 1.25rem;
}
.path-card h3 { color: var(--ink); margin-bottom: 12px; }
.path-card p { font-size: 0.95rem; color: var(--ink-soft); flex: 1; }
.path-cta {
  margin-top: 24px;
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--gold-deep);
  font-size: 0.9rem; font-weight: 500;
}
.path-card.featured {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--ink);
}
.path-card.featured h3 { color: var(--ink); }
.path-card.featured p { color: rgba(15, 20, 25, 0.75); }
.path-card.featured .path-icon { background: var(--ink); color: var(--gold); }
.path-card.featured .path-cta { color: var(--ink); }
.path-card.featured:hover { background: var(--gold-soft); }

/* ===== Process Steps ===== */
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.process-card {
  background: var(--bg-elevated);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 36px;
  transition: transform 0.3s ease;
}
.process-card:hover { transform: translateY(-3px); }
.process-num {
  font-family: 'Space Grotesk', 'Inter', system-ui, sans-serif;
  font-size: 3rem;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 20px;
}
.process-card h3 { margin-bottom: 12px; }
.process-card p { font-size: 0.95rem; }

/* ===== USPs ===== */
.usp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 20px;
  overflow: hidden;
}
.usp-cell {
  background: var(--bg-elevated);
  padding: 36px;
}
.usp-icon {
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 12px;
  margin-bottom: 20px;
  color: var(--gold-deep);
}
.usp-cell h3 {
  font-family: 'Inter', sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin-bottom: 8px;
}
.usp-cell p { font-size: 0.95rem; }

/* ===== Selbstauskunft ===== */
.selbstauskunft-section { background: var(--bg-elevated); }
.selbstauskunft-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: start;
}
.form-frame {
  background: var(--bg);
  border: 1px solid var(--gold);
  border-radius: 20px;
  padding: 24px;
  box-shadow:
    0 24px 64px -28px rgba(201, 161, 110, 0.32),
    0 8px 24px -12px rgba(15, 20, 25, 0.10);
  transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1),
              box-shadow 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.form-frame:hover {
  transform: translateY(-3px);
  box-shadow:
    0 32px 72px -28px rgba(201, 161, 110, 0.42),
    0 10px 28px -10px rgba(15, 20, 25, 0.14);
}
.form-frame iframe {
  width: 100%;
  height: 720px;
  border: none;
  border-radius: 12px;
  background: white;
}
.frame-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  padding: 0 4px;
}
.frame-eyebrow .frame-eyebrow-label {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-deep);
}
.frame-eyebrow .frame-eyebrow-arrow {
  font-size: 1rem;
  font-weight: 700;
  color: var(--gold-deep);
  animation: arrow-pull-down 2.4s ease-in-out infinite;
  line-height: 1;
}
@keyframes arrow-pull-down {
  0%, 100% { transform: translateY(0); opacity: 0.7; }
  50% { transform: translateY(4px); opacity: 1; }
}
.frame-lang {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  user-select: none;
}
.frame-lang button {
  background: none;
  border: none;
  padding: 4px 6px;
  cursor: pointer;
  color: var(--ink-muted);
  font: inherit;
  letter-spacing: inherit;
  transition: color 0.2s ease;
  border-radius: 4px;
}
.frame-lang button:hover { color: var(--gold-deep); }
.frame-lang button.is-active {
  color: var(--gold-deep);
  position: relative;
}
.frame-lang button.is-active::after {
  content: "";
  position: absolute;
  left: 6px;
  right: 6px;
  bottom: 0;
  height: 1px;
  background: var(--gold);
}
.frame-lang .frame-lang-divider {
  color: var(--line);
  font-weight: 400;
}

.form-info ul {
  list-style: none;
  margin-top: 32px;
}
.form-info ul li {
  display: flex; gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  color: var(--ink-soft);
}
.form-info ul li:last-child { border-bottom: none; }
.form-info ul li::before {
  content: "✓";
  color: var(--gold-deep);
  font-weight: 600;
  flex-shrink: 0;
}

/* ===== Käuferzertifikat / Highlight Cards ===== */
.kz-section { background: var(--bg); }
.kz-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
}
.kz-card {
  background: var(--ink);
  color: var(--bg);
  padding: 48px;
  border-radius: 20px;
  position: relative;
  overflow: hidden;
}
.kz-card h2 { color: var(--bg); }
.kz-card p { color: rgba(248, 245, 240, 0.75); margin-top: 20px; }
.kz-card::before {
  content: "";
  position: absolute;
  top: -40px; right: -40px;
  width: 200px; height: 200px;
  background: radial-gradient(circle, var(--gold) 0%, transparent 70%);
  opacity: 0.15;
}
.kz-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 14px;
  background: rgba(184, 147, 90, 0.15);
  color: var(--gold-soft);
  border-radius: 999px;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 24px;
}

/* ===== Founder ===== */
.founder-section { background: var(--bg); }
.founder-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  align-items: center;
}
.founder-photo {
  aspect-ratio: 4/5;
  background: linear-gradient(135deg, var(--line) 0%, var(--bg) 100%);
  border-radius: 20px;
  position: relative;
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  color: var(--ink-muted);
  font-size: 0.85rem;
}
.founder-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
}
.founder-quote {
  font-family: 'Space Grotesk', 'Inter', system-ui, sans-serif;
  font-size: 1.4rem;
  line-height: 1.5;
  color: var(--ink);
  margin: 28px 0;
  padding-left: 20px;
  border-left: 3px solid var(--gold);
}
.founder-credentials {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 32px;
}
.credential {
  padding: 20px;
  background: var(--bg);
  border-radius: 14px;
  border: 1px solid var(--line);
}
.credential strong {
  display: block;
  font-family: 'Space Grotesk', 'Inter', system-ui, sans-serif;
  font-size: 1.1rem;
  margin-bottom: 4px;
  color: var(--ink);
}
.credential span {
  font-size: 0.9rem;
  color: var(--ink-muted);
}

/* ===== Bonus Card (Immobiliengesuch etc.) ===== */
.gesuch-section { background: var(--bg); }
.gesuch-card {
  background: var(--bg-elevated);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 56px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  align-items: center;
}
.gesuch-tag {
  display: inline-block;
  padding: 4px 12px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 20px;
}

/* ===== FAQ ===== */
.faq-section { background: var(--bg-elevated); }
.faq-list {
  max-width: 820px;
  margin: 0 auto;
}
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q {
  width: 100%;
  text-align: left;
  padding: 28px 0;
  background: none;
  border: none;
  cursor: pointer;
  font-family: 'Space Grotesk', 'Inter', system-ui, sans-serif;
  font-size: 1.2rem;
  color: var(--ink);
  display: flex; justify-content: space-between; align-items: center;
  gap: 24px;
}
.faq-icon {
  width: 32px; height: 32px;
  border: 1px solid var(--line);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-size: 1.2rem;
  color: var(--ink-soft);
  transition: transform 0.3s ease, background 0.3s ease, color 0.3s ease;
}
.faq-item.open .faq-icon {
  background: var(--ink);
  color: var(--bg);
  transform: rotate(45deg);
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}
.faq-item.open .faq-a {
  max-height: 1000px;
  padding-bottom: 28px;
}
.faq-a p { font-size: 1rem; }

/* ===== Final CTA ===== */
.final-cta {
  background: var(--ink);
  color: var(--bg);
  padding: 120px 0 120px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.final-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 40%,
    rgba(201, 161, 110, 0.18) 0%,
    rgba(201, 161, 110, 0.06) 30%,
    transparent 65%);
  pointer-events: none;
}
.final-cta .container { position: relative; z-index: 1; }
.final-cta-eyebrow {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 28px;
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.final-cta-eyebrow::before,
.final-cta-eyebrow::after {
  content: "";
  width: 22px;
  height: 1px;
  background: rgba(201, 161, 110, 0.45);
}
.final-cta h2 {
  color: var(--bg);
  margin-bottom: 28px;
  font-size: clamp(2.4rem, 5.4vw, 4rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
}
.final-cta h2 .accent,
.final-cta-sub .accent {
  color: var(--gold-soft);
  font-style: italic;
  font-weight: 500;
}
.final-cta-sub {
  color: rgba(248, 245, 240, 0.85);
  max-width: 920px;
  margin: 0 auto 44px;
  font-size: 1.18rem;
  line-height: 1.55;
  font-weight: 400;
}
.final-cta-sub strong {
  color: var(--bg);
  font-weight: 600;
}
.final-cta .btn-primary {
  background: var(--gold);
  color: var(--ink);
  font-size: 1.05rem;
  padding: 20px 36px;
  position: relative;
  box-shadow:
    0 10px 30px -8px rgba(201, 161, 110, 0.55),
    0 0 0 0 rgba(201, 161, 110, 0.5);
  animation: cta-pulse 2.6s ease-in-out infinite;
  transition: transform 0.25s cubic-bezier(0.2, 0.8, 0.2, 1),
              box-shadow 0.25s cubic-bezier(0.2, 0.8, 0.2, 1),
              background 0.2s ease;
}
.final-cta .btn-primary:hover {
  background: var(--gold-soft);
  transform: translateY(-2px);
  animation-play-state: paused;
  box-shadow:
    0 16px 40px -8px rgba(201, 161, 110, 0.7),
    0 0 0 6px rgba(201, 161, 110, 0.18);
}
@keyframes cta-pulse {
  0%, 100% {
    box-shadow:
      0 10px 30px -8px rgba(201, 161, 110, 0.55),
      0 0 0 0 rgba(201, 161, 110, 0.45);
  }
  50% {
    box-shadow:
      0 14px 36px -8px rgba(201, 161, 110, 0.65),
      0 0 0 10px rgba(201, 161, 110, 0);
  }
}
.final-cta-trust {
  margin-top: 26px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  color: rgba(248, 245, 240, 0.55);
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 16px;
  width: 100%;
}
.final-cta-trust .dot {
  color: var(--gold);
  opacity: 0.55;
}
@media (prefers-reduced-motion: reduce) {
  .final-cta .btn-primary { animation: none; }
}

/* ===== Footer ===== */
footer {
  background: var(--bg);
  border-top: 1px solid var(--line);
  padding: 60px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}
.footer-brand p {
  font-size: 0.95rem;
  max-width: 320px;
  margin-top: 16px;
}
.footer-brand .hashtag {
  display: inline-block;
  margin-top: 22px;
}
.footer-col h4 {
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 20px;
}
.footer-col ul { list-style: none; }
.footer-col ul li {
  padding: 6px 0;
  font-size: 0.95rem;
  color: var(--ink-soft);
}
.footer-col ul li a:hover { color: var(--ink); }
.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--ink-muted);
}
.footer-bottom-row {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px 16px;
  line-height: 1.6;
}
.footer-bottom-row a {
  color: inherit;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease, color 0.2s ease;
}
.footer-bottom-row a:hover {
  color: var(--ink);
  border-bottom-color: var(--gold);
}

/* ===== Modal ===== */
.lead-form {
  display: grid;
  gap: 16px;
  max-width: 520px;
}
.lead-form label {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 6px;
  color: var(--ink);
  letter-spacing: 0.02em;
}
.lead-form input,
.lead-form select,
.lead-form textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 12px;
  font-family: inherit;
  font-size: 1rem;
  background: var(--bg-elevated);
  color: var(--ink);
  transition: border-color 0.2s ease;
}
.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus {
  outline: none;
  border-color: var(--gold);
}
.lead-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.checkbox-row {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 0.85rem;
  color: var(--ink-muted);
  line-height: 1.5;
}
.checkbox-row input { width: auto; margin-top: 4px; }

/* ===== Hashtag flourish ===== */
.hashtag {
  font-family: 'Space Grotesk', 'Inter', system-ui, sans-serif;
  font-style: italic;
  color: var(--gold-deep);
  font-weight: 400;
}

/* ===== Process Timeline — Premium ===== */
.process-timeline {
  margin-top: 80px;
  padding-top: 56px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.process-timeline-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(1.15rem, 1.8vw, 1.45rem);
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--bg);
  margin-bottom: 48px;
  text-align: center;
}
.process-timeline-title::before {
  content: "";
  display: block;
  width: 32px;
  height: 2px;
  background: var(--gold);
  margin: 0 auto 18px;
  border-radius: 2px;
}
.process-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
  position: relative;
}
/* feine Goldlinie zwischen den Karten (Desktop) */
.process-steps::before {
  content: "";
  position: absolute;
  top: 56px;
  left: 8%;
  right: 8%;
  height: 1px;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(184, 147, 90, 0.35) 15%,
    rgba(184, 147, 90, 0.55) 50%,
    rgba(184, 147, 90, 0.35) 85%,
    transparent 100%);
  z-index: 0;
}
.process-step {
  position: relative;
  z-index: 1;
  padding: 28px 18px;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 18px;
  text-align: center;
  backdrop-filter: blur(6px);
  transition: transform 0.3s ease, border-color 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}
.process-step:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.055);
  border-color: rgba(184, 147, 90, 0.5);
}
.process-step-num {
  display: inline-flex;
  width: 56px; height: 56px;
  align-items: center; justify-content: center;
  background: var(--ink);
  border: 2px solid var(--gold);
  border-radius: 50%;
  color: var(--gold-soft);
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 18px;
  transition: transform 0.3s ease, background 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
}
.process-step:hover .process-step-num {
  transform: scale(1.05);
}
.process-step-text {
  font-family: 'Inter', sans-serif;
  font-size: 0.92rem;
  line-height: 1.45;
  color: rgba(248, 245, 240, 0.88);
}
.process-step-text strong {
  color: var(--bg);
  font-weight: 600;
}

/* Highlight (Step 3 = der Wert-Höhepunkt) */
.process-step.highlight {
  background: linear-gradient(135deg, rgba(184, 147, 90, 0.22) 0%, rgba(184, 147, 90, 0.06) 100%);
  border-color: rgba(184, 147, 90, 0.7);
  box-shadow: 0 18px 48px -20px rgba(184, 147, 90, 0.55);
}
.process-step.highlight .process-step-num {
  background: var(--gold);
  color: var(--ink);
  border-color: var(--gold);
  box-shadow: 0 0 0 6px rgba(184, 147, 90, 0.15), 0 0 28px rgba(184, 147, 90, 0.45);
}
.process-step.highlight .process-step-text {
  color: var(--bg);
}
.process-step.highlight:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 56px -18px rgba(184, 147, 90, 0.7);
}

/* alten Pfeil ausschalten */
.process-step::after { display: none !important; }

@media (max-width: 880px) {
  .process-steps {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .process-steps::before { display: none; }
  .process-step {
    text-align: left;
    padding: 20px 20px 20px 96px;
    min-height: 0;
  }
  .process-step-num {
    position: absolute;
    left: 20px;
    top: 0; bottom: 0;
    margin-top: auto; margin-bottom: auto;
    width: 52px;
    height: 52px;
    font-size: 1.25rem;
  }
}

/* ===== Sub-LP specific ===== */
.sub-lp-hero {
  padding: 80px 0 60px;
}
.sub-lp-hero h1 {
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
}

/* ===== Testimonials ===== */
.testimonials {
  background: var(--bg);
}
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial {
  background: var(--bg-elevated);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 32px;
}
.testimonial-stars {
  color: var(--gold);
  font-size: 1rem;
  letter-spacing: 2px;
  margin-bottom: 16px;
}
.testimonial-quote {
  font-family: 'Space Grotesk', 'Inter', system-ui, sans-serif;
  font-size: 1.05rem;
  line-height: 1.5;
  color: var(--ink);
  margin-bottom: 24px;
}
.testimonial-author {
  display: flex; align-items: center; gap: 14px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}
.testimonial-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-soft), var(--gold));
  display: flex; align-items: center; justify-content: center;
  color: var(--ink);
  font-weight: 600;
  font-family: 'Space Grotesk', 'Inter', system-ui, sans-serif;
}
.testimonial-meta strong {
  display: block;
  font-size: 0.95rem;
  color: var(--ink);
}
.testimonial-meta span {
  font-size: 0.85rem;
  color: var(--ink-muted);
}

/* ===== Mobile Burger Menu ===== */
.nav-burger {
  display: none;
  background: none;
  border: 1px solid var(--line);
  border-radius: 999px;
  width: 44px; height: 44px;
  cursor: pointer;
  align-items: center; justify-content: center;
  color: var(--ink);
  padding: 0;
}
.nav-burger svg { width: 22px; height: 22px; }
.nav-mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 20, 25, 0.6);
  backdrop-filter: blur(8px);
  z-index: 90;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.nav-mobile-overlay.open {
  opacity: 1;
  pointer-events: auto;
}
.nav-mobile-panel {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: min(380px, 88vw);
  background: var(--bg);
  z-index: 91;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  box-shadow: -24px 0 60px -16px rgba(15, 20, 25, 0.3);
}
.nav-mobile-panel.open {
  transform: translateX(0);
}
.nav-mobile-header {
  padding: 24px;
  display: flex; align-items: center; justify-content: space-between;
  border-bottom: 1px solid var(--line);
}
.nav-mobile-close {
  background: none;
  border: 1px solid var(--line);
  border-radius: 999px;
  width: 40px; height: 40px;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  color: var(--ink);
  font-size: 1.4rem;
}
.nav-mobile-links {
  display: flex; flex-direction: column;
  padding: 24px;
  gap: 4px;
}
.nav-mobile-links a {
  padding: 16px 0;
  font-size: 1.05rem;
  border-bottom: 1px solid var(--line);
  display: flex; justify-content: space-between; align-items: center;
}
.nav-mobile-links a:last-child { border-bottom: none; }
.nav-mobile-links a::after {
  content: "→";
  color: var(--gold);
  opacity: 0.5;
}
.nav-mobile-cta {
  margin: 24px;
  padding: 18px 24px;
  background: var(--ink);
  color: var(--bg);
  border-radius: 999px;
  font-size: 1rem;
  font-weight: 500;
  text-align: center;
  display: block;
}

/* ===== Sticky Mobile CTA ===== */
.sticky-mobile-cta {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 60;
  padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
  background: rgba(248, 245, 240, 0.95);
  backdrop-filter: saturate(180%) blur(14px);
  border-top: 1px solid var(--line);
}
.sticky-mobile-cta a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 16px 24px;
  background: var(--ink);
  color: var(--bg);
  border-radius: 999px;
  font-size: 1rem;
  font-weight: 500;
}

/* ===== Scroll Animations ===== */
.fade-in-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.fade-in-up.visible {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  .fade-in-up { opacity: 1; transform: none; transition: none; }
}

/* ===== Responsive ===== */
@media (max-width: 880px) {
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .nav-lang { display: inline-flex; font-size: 0.7rem; margin-left: auto; margin-right: 12px; }
  .nav-burger { display: flex; }
  .hero-grid { grid-template-columns: 1fr; gap: 32px; }
  .hero-photo { max-width: 360px; margin: 0 auto; }
  .sticky-mobile-cta { display: block; }
  body { padding-bottom: 80px; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); gap: 32px 16px; }
  .funnel-paths,
  .process-grid,
  .usp-grid,
  .testimonial-grid,
  .usp-grid { gap: 1px; }
  .selbstauskunft-wrapper,
  .kz-grid,
  .founder-grid,
  .gesuch-card,
  .footer-grid { grid-template-columns: 1fr; gap: 40px; }
  .gesuch-card { padding: 32px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  section { padding: 72px 0; }
  .hero { padding: 60px 0; }
  .lead-form-row { grid-template-columns: 1fr; }
}
@media (max-width: 540px) {
  .footer-grid { grid-template-columns: 1fr; }
  .founder-credentials { grid-template-columns: 1fr; }
}

/* ===== Footer Contact Action Cards ===== */
.footer-contact .contact-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 22px;
}
.contact-action {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  background: rgba(15, 20, 25, 0.025);
  border: 1px solid var(--line);
  border-radius: 12px;
  text-decoration: none;
  color: var(--ink);
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}
.contact-action:hover {
  border-color: var(--gold);
  transform: translateY(-2px);
  background: rgba(201, 161, 110, 0.06);
  box-shadow: 0 8px 22px -12px rgba(201, 161, 110, 0.4);
}
.contact-action-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  flex-shrink: 0;
  border-radius: 10px;
  background: rgba(201, 161, 110, 0.14);
  color: var(--gold-deep);
}
.contact-action-icon svg {
  width: 18px;
  height: 18px;
}
.contact-action-content {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}
.contact-action-label {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--ink);
  line-height: 1.25;
}
.contact-action-detail {
  font-size: 0.8rem;
  color: var(--ink-muted);
  line-height: 1.3;
}

/* ===== Trustindex Widget Wrap ===== */
.trustindex-wrap {
  margin: 0 auto 24px;
  min-height: 200px;
}
.trustindex-wrap > div,
.trustindex-wrap .ti-widget {
  max-width: 100%;
}

/* ===== Footer Social Icons ===== */
.footer-social {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 22px;
}
.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--line);
  color: var(--ink-soft);
  transition: transform 0.2s ease, color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}
.footer-social a:hover {
  color: var(--gold-deep);
  border-color: var(--gold);
  background: rgba(201, 161, 110, 0.08);
  transform: translateY(-2px);
}
.footer-social a svg {
  width: 18px;
  height: 18px;
}
.footer-brand .hashtag {
  margin-top: 18px;
}

/* ===== Mobile Hero & Trust Bar Refinements ===== */
@media (max-width: 880px) {
  .hero { text-align: center; }
  .hero-eyebrow { margin-left: auto; margin-right: auto; }
  .hero-sub { margin-left: auto; margin-right: auto; }
  .hero-cta-row { justify-content: center; }
  .hero-meta { justify-content: center; }
  .hero-meta::before { display: none; }
}

@media (max-width: 480px) {
  /* — Hero spacing & sizing — */
  .hero { padding: 36px 0 44px; }
  .hero-eyebrow {
    font-size: 0.72rem;
    margin-bottom: 20px;
    padding: 6px 14px;
  }
  .hero h1 {
    font-size: 2rem;
    letter-spacing: -0.03em;
    line-height: 1.1;
  }
  .hero-sub {
    font-size: 0.95rem;
    margin-top: 16px;
    line-height: 1.65;
  }

  /* — Full-width stacked CTAs — */
  .hero-cta-row {
    flex-direction: column;
    margin-top: 28px;
    gap: 10px;
  }
  .hero-cta-row .btn-primary,
  .hero-cta-row .btn-secondary {
    width: 100%;
    justify-content: center;
    padding: 16px 24px;
    font-size: 0.95rem;
  }

  /* — Meta line — */
  .hero-meta {
    font-size: 0.78rem;
    margin-top: 16px;
    flex-wrap: wrap;
    gap: 6px;
  }

  /* — Trust Bar — */
  .trust-grid { gap: 24px 12px; }
  .trust-number { font-size: 1.8rem; }
  .trust-label { font-size: 0.75rem; }
}

/* ===== Hero Headline Flush Block (Mobile) ===== */
.hero-line-1, .hero-line-2 { display: block; }

@media (max-width: 480px) {
  .hero-line-1 {
    font-size: 9.2vw;
    line-height: 1.05;
  }
  .hero-line-2 {
    font-size: 7.4vw;
    line-height: 1.1;
    margin-top: 4px;
  }
}

/* ===== Mein Setup Section ===== */
.setup-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 64px;
  align-items: start;
}
.setup-cards {
  display: grid;
  gap: 16px;
}

@media (max-width: 880px) {
  .setup-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

@media (max-width: 480px) {
  .setup-grid { gap: 24px; }
  .setup-cards { gap: 12px; }
}

@media (max-width: 880px) {
  .setup-cards { order: -1; }
}

/* ===== Process Steps Mobile Fix ===== */
@media (max-width: 480px) {
  .process-timeline { margin-top: 40px; }
  .process-step {
    position: relative;
    padding: 16px 16px 16px 72px;
    border-radius: 14px;
  }
  .process-step-num {
    position: absolute;
    left: 14px;
    top: 0; bottom: 0;
    margin-top: auto; margin-bottom: auto;
    width: 44px;
    height: 44px;
    font-size: 1.1rem;
  }
  .process-step-text {
    font-size: 0.85rem;
    line-height: 1.4;
  }
  .process-timeline-title {
    font-size: 1.1rem;
  }
}

/* ===== Funnel "Zwei Wege" Mobile Fix ===== */
@media (max-width: 880px) {
  .funnel-paths,
  .funnel-paths.funnel-paths-two {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 32px;
  }
  .path-card {
    min-height: 0;
    padding: 28px 24px;
  }
  .spielregeln-card {
    margin-top: 32px;
  }
}

@media (max-width: 480px) {
  .path-card {
    padding: 24px 20px;
  }
  .path-icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    font-size: 1.1rem;
    margin-bottom: 18px;
  }
  .path-card h3 {
    font-size: 1.15rem;
  }
  .path-card p {
    font-size: 0.9rem;
  }
  .spielregeln-card {
    padding: 20px 18px;
  }
  .spielregeln-headline {
    font-size: 1.05rem;
  }
}

/* ===== USP Grid Mobile Fix ===== */
@media (max-width: 880px) {
  .usp-grid {
    grid-template-columns: repeat(2, 1fr);
    border-radius: 16px;
  }
  .usp-cell {
    padding: 28px 24px;
  }
}

@media (max-width: 480px) {
  .usp-grid {
    grid-template-columns: 1fr;
    border-radius: 14px;
  }
  .usp-cell {
    padding: 24px 20px;
  }
  .usp-cell h3 {
    font-size: 0.95rem;
  }
  .usp-cell p {
    font-size: 0.88rem;
  }
}

/* ===== Process Steps — Active State & Mobile Overlap Fix ===== */

/* Active/tap state — gold highlight */
.process-step:active {
  background: linear-gradient(135deg, rgba(184, 147, 90, 0.22) 0%, rgba(184, 147, 90, 0.06) 100%);
  border-color: rgba(184, 147, 90, 0.7);
}
.process-step:active .process-step-num {
  background: var(--gold);
  color: var(--ink);
  border-color: var(--gold);
  box-shadow: 0 0 0 6px rgba(184, 147, 90, 0.15);
}

@media (max-width: 880px) {
  /* Kill hover transforms on mobile — prevents overlap */
  .process-step:hover {
    transform: none;
  }
  .process-step.highlight:hover {
    transform: none;
  }
  /* Remove backdrop-filter on mobile — causes rendering glitches */
  .process-step {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
  /* Ensure enough gap */
  .process-steps {
    gap: 10px;
  }
}

/* ===== Process Steps — Touch/Hover Fix ===== */

/* Only apply hover effects on devices with actual hover (mouse) */
@media (hover: none) {
  .process-step:hover {
    transform: none;
    background: rgba(255, 255, 255, 0.025);
    border-color: rgba(255, 255, 255, 0.07);
  }
  .process-step:hover .process-step-num {
    transform: none;
  }
  .process-step.highlight:hover {
    transform: none;
    box-shadow: 0 18px 48px -20px rgba(184, 147, 90, 0.55);
  }
  /* Clean tap feedback — brief gold border only */
  .process-step:active {
    border-color: var(--gold);
    transition: none;
  }
  .process-step:active .process-step-num {
    background: var(--gold);
    color: var(--ink);
    border-color: var(--gold);
    transition: none;
  }
}

/* More breathing room between steps on mobile */
@media (max-width: 880px) {
  .process-steps { gap: 14px; }
}

/* ===== Process Steps — Only Step 1 is interactive ===== */
.process-step {
  cursor: default;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.process-step:hover {
  transform: none;
  background: rgba(255, 255, 255, 0.025);
  border-color: rgba(255, 255, 255, 0.07);
}
.process-step:hover .process-step-num {
  transform: none;
}
.process-step:active {
  background: rgba(255, 255, 255, 0.025);
  border-color: rgba(255, 255, 255, 0.07);
}
.process-step:active .process-step-num {
  background: var(--ink);
  color: var(--gold-soft);
  border-color: var(--gold);
  box-shadow: none;
}

/* Step 1 (the link) keeps interactive styling */
a.process-step {
  cursor: pointer;
  -webkit-tap-highlight-color: initial;
}
a.process-step:hover {
  background: rgba(255, 255, 255, 0.055);
  border-color: rgba(184, 147, 90, 0.5);
}
a.process-step:active {
  border-color: var(--gold);
}
a.process-step:active .process-step-num {
  background: var(--gold);
  color: var(--ink);
  border-color: var(--gold);
}

/* Highlight (Step 3) keeps its visual styling but not interactive */
.process-step.highlight {
  cursor: default;
}

/* Step 3 highlight — keep static, no change on tap */
.process-step.highlight:active {
  background: linear-gradient(135deg, rgba(184, 147, 90, 0.22) 0%, rgba(184, 147, 90, 0.06) 100%);
  border-color: rgba(184, 147, 90, 0.7);
  box-shadow: 0 18px 48px -20px rgba(184, 147, 90, 0.55);
}
.process-step.highlight:active .process-step-num {
  background: var(--gold);
  color: var(--ink);
  border-color: var(--gold);
  box-shadow: 0 0 0 6px rgba(184, 147, 90, 0.15), 0 0 28px rgba(184, 147, 90, 0.45);
}

/* ===== FINAL FIX: Steps 2-5 completely non-interactive ===== */
div.process-step {
  pointer-events: none !important;
}
/* Only Step 1 (the <a> tag) is tappable */
a.process-step {
  pointer-events: auto !important;
}

/* ===== Footer Mobile Overhaul ===== */
@media (max-width: 880px) {
  footer {
    padding: 48px 0 100px; /* extra bottom for sticky CTA */
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 0;
    text-align: center;
  }

  /* — Ordering: Brand → Kontakt → Wegweiser/Rechtliches — */
  .footer-brand { order: 1; margin-bottom: 36px; }
  .footer-contact { order: 2; margin-bottom: 32px; }
  .footer-col:nth-child(2) { order: 3; margin-bottom: 24px; } /* Wegweiser */
  .footer-col:nth-child(4) { order: 4; margin-bottom: 24px; } /* Rechtliches */

  /* — Brand centered — */
  .footer-brand p { margin-left: auto; margin-right: auto; }
  .footer-brand .logo-mark { justify-content: center; }

  /* — Social icons centered + bigger — */
  .footer-social { justify-content: center; }
  .footer-social a {
    width: 48px;
    height: 48px;
  }
  .footer-social a svg {
    width: 20px;
    height: 20px;
  }

  /* — Hashtag centered — */
  .footer-brand .hashtag { display: block; text-align: center; }

  /* — Contact cards full width — */
  .footer-contact .contact-actions {
    max-width: 360px;
    margin: 0 auto;
  }

  /* — Column headers centered — */
  .footer-col h4 { text-align: center; }
  .footer-col ul { text-align: center; }
  .footer-col ul li { padding: 8px 0; }

  /* — Bottom legal centered — */
  .footer-bottom { text-align: center; }
  .footer-bottom-row { justify-content: center; }
}

@media (max-width: 480px) {
  footer { padding: 36px 0 100px; }
  .footer-brand .logo-img { height: 44px; }
  .footer-brand p { font-size: 0.88rem; }
  .footer-col h4 { font-size: 0.8rem; margin-bottom: 14px; }
  .footer-col ul li { font-size: 0.9rem; }
  .footer-bottom { font-size: 0.78rem; }
}

/* ===== Footer: Wegweiser + Rechtliches side by side on mobile ===== */
@media (max-width: 880px) {
  .footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-areas:
      "brand brand"
      "contact contact"
      "wegweiser rechtliches";
    gap: 24px;
  }
  .footer-brand { grid-area: brand; }
  .footer-contact { grid-area: contact; margin-bottom: 8px; }
  .footer-col:nth-child(2) { grid-area: wegweiser; order: unset; margin-bottom: 0; }
  .footer-col:nth-child(4) { grid-area: rechtliches; order: unset; margin-bottom: 0; }
}


/* ===== Footer Brand: Hashtag above Social Icons ===== */
.footer-brand {
  display: flex;
  flex-direction: column;
}
.footer-brand .logo-mark { order: 1; }
.footer-brand p { order: 2; }
.footer-brand .hashtag { order: 3; margin-top: 20px; margin-bottom: 12px; }
.footer-brand .footer-social { order: 4; }

/* ============================================================
   CONSENT MANAGER — Banner, Modal, Toggles, Blocker
   ============================================================ */
#pk-consent-root { position: relative; z-index: 9999; }

/* ---- Banner ---- */
.pk-consent-banner {
  position: fixed; left: 16px; right: 16px; bottom: 16px;
  z-index: 9999;
  background: var(--bg-elevated);
  border: 1px solid var(--line);
  border-radius: 20px;
  box-shadow: 0 24px 60px -18px rgba(15, 20, 25, 0.35);
  padding: 22px 24px;
  max-width: 1100px; margin: 0 auto;
  opacity: 0; transform: translateY(20px);
  pointer-events: none;
  transition: opacity 0.35s ease, transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.pk-consent-banner.is-visible { opacity: 1; transform: translateY(0); pointer-events: auto; }
.pk-consent-inner {
  display: flex; align-items: center; gap: 28px; flex-wrap: wrap;
}
.pk-consent-copy { flex: 1 1 420px; min-width: 280px; }
.pk-consent-copy h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.15rem; font-weight: 600; color: var(--ink);
  margin: 0 0 6px;
}
.pk-consent-copy p { font-size: 0.92rem; line-height: 1.55; color: var(--ink-soft); margin: 0; }
.pk-consent-copy strong { color: var(--ink); font-weight: 600; }
.pk-consent-actions { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }

/* ---- Buttons ---- */
.pk-btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 13px 24px;
  border-radius: 999px;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 0.92rem; font-weight: 600;
  cursor: pointer; border: 1.5px solid transparent;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, color 0.18s ease, border-color 0.18s ease;
  white-space: nowrap;
}
.pk-btn:hover { transform: translateY(-2px); }
.pk-btn-solid { background: var(--ink); color: var(--bg); }
.pk-btn-solid:hover { box-shadow: 0 12px 28px -10px rgba(15, 20, 25, 0.4); }
/* Reject = gleichwertig sichtbar (kein Dark Pattern) */
.pk-btn-outline { background: transparent; color: var(--ink); border-color: var(--ink); }
.pk-btn-outline:hover { background: var(--ink); color: var(--bg); }
.pk-btn-ghost { background: transparent; color: var(--ink-muted); border-color: transparent; padding: 13px 14px; text-decoration: underline; text-underline-offset: 3px; }
.pk-btn-ghost:hover { color: var(--ink); transform: none; }

/* ---- Modal ---- */
.pk-consent-modal { position: fixed; inset: 0; z-index: 10000; display: flex; align-items: center; justify-content: center; padding: 20px; }
.pk-consent-modal[hidden] { display: none; }
.pk-consent-modal-backdrop { position: absolute; inset: 0; background: rgba(14, 17, 22, 0.55); backdrop-filter: blur(3px); opacity: 0; transition: opacity 0.25s ease; }
.pk-consent-modal.is-visible .pk-consent-modal-backdrop { opacity: 1; }
.pk-consent-modal-card {
  position: relative;
  background: var(--bg-elevated);
  border: 1px solid var(--line);
  border-radius: 22px;
  width: 100%; max-width: 540px; max-height: 88vh; overflow-y: auto;
  padding: 34px 34px 28px;
  box-shadow: 0 30px 80px -20px rgba(15, 20, 25, 0.5);
  transform: translateY(16px) scale(0.98); opacity: 0;
  transition: transform 0.28s cubic-bezier(0.2, 0.8, 0.2, 1), opacity 0.28s ease;
}
.pk-consent-modal.is-visible .pk-consent-modal-card { transform: translateY(0) scale(1); opacity: 1; }
.pk-modal-x { position: absolute; top: 16px; right: 18px; background: none; border: none; font-size: 1.7rem; line-height: 1; color: var(--ink-muted); cursor: pointer; }
.pk-modal-x:hover { color: var(--ink); }
.pk-consent-modal-card h2 { font-family: 'Space Grotesk', sans-serif; font-size: 1.4rem; font-weight: 600; color: var(--ink); margin: 0 0 8px; }
.pk-modal-intro { font-size: 0.9rem; line-height: 1.55; color: var(--ink-soft); margin: 0 0 22px; }

/* ---- Categories ---- */
.pk-cat { border: 1px solid var(--line); border-radius: 14px; padding: 16px 18px; margin-bottom: 12px; }
.pk-cat-head { display: flex; align-items: center; justify-content: space-between; gap: 14px; margin-bottom: 6px; }
.pk-cat-title { font-family: 'Space Grotesk', sans-serif; font-weight: 600; font-size: 1rem; color: var(--ink); }
.pk-cat-body { font-size: 0.85rem; line-height: 1.5; color: var(--ink-soft); margin: 0; }
.pk-always { font-size: 0.78rem; font-weight: 600; color: var(--gold-deep); background: rgba(201,161,110,0.14); padding: 4px 10px; border-radius: 999px; white-space: nowrap; }

/* ---- Toggle switch ---- */
.pk-switch { position: relative; display: inline-block; width: 46px; height: 26px; flex: none; }
.pk-switch input { opacity: 0; width: 0; height: 0; }
.pk-slider { position: absolute; inset: 0; cursor: pointer; background: var(--line); border-radius: 999px; transition: background 0.2s ease; }
.pk-slider::before { content: ""; position: absolute; height: 20px; width: 20px; left: 3px; top: 3px; background: #fff; border-radius: 50%; box-shadow: 0 1px 3px rgba(0,0,0,0.25); transition: transform 0.2s ease; }
.pk-switch input:checked + .pk-slider { background: var(--gold); }
.pk-switch input:checked + .pk-slider::before { transform: translateX(20px); }
.pk-switch input:focus-visible + .pk-slider { outline: 2px solid var(--gold-deep); outline-offset: 2px; }

.pk-privacy-link { display: inline-block; margin: 4px 0 22px; font-size: 0.88rem; font-weight: 600; color: var(--gold-deep); text-decoration: none; }
.pk-privacy-link:hover { text-decoration: underline; }
.pk-modal-actions { justify-content: flex-end; }

/* ---- Trustindex consent blocker placeholder ---- */
.consent-blocker { border: 1px dashed var(--line); border-radius: 18px; padding: 40px 28px; text-align: center; background: rgba(201,161,110,0.05); }
.consent-blocker-inner { max-width: 440px; margin: 0 auto; }
.consent-blocker h3 { font-family: 'Space Grotesk', sans-serif; font-size: 1.15rem; font-weight: 600; color: var(--ink); margin: 0 0 8px; }
.consent-blocker p { font-size: 0.92rem; line-height: 1.55; color: var(--ink-soft); margin: 0 0 20px; }

/* ---- Footer consent link ---- */
.pk-consent-trigger { background: none; border: none; padding: 0; font: inherit; color: inherit; cursor: pointer; text-align: left; }
.pk-consent-trigger:hover { color: var(--gold-deep); }

/* ---- Responsive ---- */
@media (max-width: 720px) {
  .pk-consent-inner { flex-direction: column; align-items: stretch; gap: 18px; }
  .pk-consent-actions { width: 100%; }
  .pk-consent-actions .pk-btn { flex: 1 1 auto; }
  .pk-btn-ghost { flex-basis: 100%; order: 3; }
  .pk-consent-banner { left: 10px; right: 10px; bottom: 10px; padding: 20px 18px; }
  .pk-modal-actions .pk-btn { flex: 1 1 auto; }
}
@media (prefers-reduced-motion: reduce) {
  .pk-consent-banner, .pk-consent-modal-card, .pk-consent-modal-backdrop, .pk-btn { transition: none; }
}
