/* ===== Unternehmerbenefits — Design Tokens ===== */
@import url('https://api.fontshare.com/v2/css?f[]=general-sans@400,500,600,700&display=swap');

:root {
  /* Navy primaries — 50%+ of surface */
  --midnight: #0C1F1A;
  --deep: #071410;
  --mid: #142E26;
  /* Gold accent — ≤5% */
  --gold: #D4B66A;
  --gold-deep: #B89548;
  --gold-soft: rgba(212,182,106,0.12);
  --gold-border: rgba(212,182,106,0.28);
  /* Light / warm / quiet */
  --ivory: #F4F2EC;
  --stone: #E6E2D8;
  --light: #FAF9F5;
  /* Text & signal */
  --charcoal: #1A1A1A;
  --slate: #7A8A9E;
  --green: #2D9B6A;
  /* Borders */
  --line-dark: rgba(255,255,255,0.07);
  --line-dark-s: rgba(255,255,255,0.12);
  --line-light: rgba(10,22,40,0.08);
  --line-light-s: rgba(10,22,40,0.14);
  /* System */
  --radius: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --maxw: 1200px;
  --font: "General Sans", "DM Sans", system-ui, -apple-system, sans-serif;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  background: var(--midnight);
  color: var(--ivory);
  overflow-x: hidden;
}
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 28px; }

/* ===== Section system — alternating Navy / Ivory ===== */
.sec { position: relative; padding: 104px 0; }
.sec--navy { background: var(--midnight); color: var(--ivory); }
.sec--deep { background: var(--deep); color: var(--ivory); }
.sec--mid { background: var(--mid); color: var(--ivory); }
.sec--ivory { background: var(--ivory); color: var(--charcoal); }
.sec--light { background: var(--light); color: var(--charcoal); }
.sec--stone { background: var(--stone); color: var(--charcoal); }
.sec--sm { padding: 64px 0; }

/* ===== Section number (P-01 pattern) ===== */
.sec-num {
  font-family: var(--font);
  font-weight: 700;
  font-style: italic;
  font-size: clamp(64px, 8vw, 96px);
  color: var(--gold);
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
  opacity: 0.85;
}
.sec--ivory .sec-num, .sec--light .sec-num, .sec--stone .sec-num {
  color: var(--gold-deep);
  opacity: 0.7;
}

/* ===== Gold divider (P-02) ===== */
.gold-line {
  width: 48px;
  height: 2px;
  background: var(--gold);
  border: none;
  margin: 0 0 28px;
}
.sec--ivory .gold-line, .sec--light .gold-line { background: var(--gold-deep); }

/* ===== Eyebrow (P-11) ===== */
.eyebrow {
  font-family: var(--font);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
  display: block;
}
.sec--ivory .eyebrow, .sec--light .eyebrow { color: var(--gold-deep); }

/* ===== Typography ===== */
h1, h2, h3, h4 {
  font-family: var(--font);
  margin: 0;
  text-wrap: balance;
}
.h-hero {
  font-weight: 700;
  font-size: clamp(44px, 6.5vw, 80px);
  letter-spacing: -0.02em;
  line-height: 1.04;
}
.h-hero em { font-style: italic; color: var(--gold); }
.h-1 {
  font-weight: 600;
  font-size: clamp(28px, 3.6vw, 40px);
  letter-spacing: -0.012em;
  line-height: 1.12;
}
.h-1 em { font-style: italic; color: var(--gold); }
.sec--ivory .h-1 em, .sec--light .h-1 em { color: var(--gold-deep); }
.h-2 { font-weight: 600; font-size: clamp(22px, 2.6vw, 32px); letter-spacing: -0.005em; line-height: 1.15; }
.lead {
  font-weight: 500;
  font-size: clamp(16px, 1.3vw, 17px);
  line-height: 1.6;
  max-width: 660px;
}
.sec--navy .lead, .sec--deep .lead, .sec--mid .lead { color: rgba(245,241,234,0.78); }
.sec--ivory .lead, .sec--light .lead { color: var(--slate); }

/* ===== Dot-grid corner (P-04) ===== */
.dot-grid {
  position: absolute;
  display: grid;
  grid-template-columns: repeat(5, 4px);
  grid-template-rows: repeat(5, 4px);
  gap: 10px;
}
.dot-grid span {
  width: 4px; height: 4px; border-radius: 99px;
  background: var(--gold);
  opacity: 0.35;
}
.dot-grid.top-right { top: 48px; right: 48px; }
.dot-grid.bottom-left { bottom: 48px; left: 48px; }
.sec--ivory .dot-grid span, .sec--light .dot-grid span { background: var(--gold-deep); opacity: 0.25; }

/* ===== Buttons ===== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  height: 52px; padding: 0 26px;
  border-radius: 8px; border: 1px solid transparent;
  font-weight: 600; font-size: 15px; letter-spacing: 0.3px;
  transition: transform .15s ease, background .2s ease, opacity .2s ease;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }

/* Primary = Gold — max 1 per section */
.btn-primary {
  background: var(--gold);
  color: var(--midnight);
}
.btn-primary:hover { background: #d4b56e; }

/* Outline on dark */
.btn-outline {
  background: transparent;
  color: var(--ivory);
  border-color: var(--line-dark-s);
}
.btn-outline:hover { border-color: rgba(255,255,255,0.3); }

/* Outline on light */
.btn-outline-dark {
  background: transparent;
  color: var(--charcoal);
  border-color: var(--line-light-s);
}
.btn-outline-dark:hover { border-color: rgba(10,22,40,0.3); }

/* Navy on ivory */
.btn-navy {
  background: var(--midnight);
  color: var(--ivory);
}
.btn-navy:hover { background: #0D1B30; }

.btn-sm { height: 44px; padding: 0 18px; font-size: 14px; }
.btn-lg { height: 56px; padding: 0 30px; font-size: 16px; }
.btn svg { transition: transform .2s ease; }
.btn:hover svg { transform: translateX(3px); }

/* ===== Header ===== */
.header {
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: blur(14px);
  background: rgba(12,31,26,0.88);
  border-bottom: 1px solid var(--line-dark);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.wordmark {
  font-family: var(--font);
  font-weight: 600;
  font-size: 18px;
  letter-spacing: -0.01em;
  display: inline-flex; align-items: center; gap: 12px;
}
.wordmark .de { color: var(--gold); }
.monogram {
  width: 32px; height: 32px;
  background: var(--midnight);
  border: 1px solid var(--line-dark-s);
  border-radius: 8px;
  display: grid; place-items: center;
  font-weight: 700;
  font-style: italic;
  font-size: 13px;
  color: var(--gold);
  letter-spacing: -0.5px;
}
.nav { display: flex; gap: 32px; }
.nav a { color: rgba(245,241,234,0.6); font-weight: 500; font-size: 14px; transition: color .15s; }
.nav a:hover { color: var(--ivory); }
.header-cta { display: flex; gap: 10px; align-items: center; }
@media (max-width: 900px) { .nav { display: none; } }

/* ===== Scroll reveal — enhanced ===== */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .8s cubic-bezier(0.16,1,0.3,1), transform .8s cubic-bezier(0.16,1,0.3,1); }
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal-d1 { transition-delay: 0.1s; }
.reveal-d2 { transition-delay: 0.2s; }
.reveal-d3 { transition-delay: 0.3s; }
.reveal-d4 { transition-delay: 0.4s; }

/* Slide from left */
.reveal-left { opacity: 0; transform: translateX(-30px); transition: opacity .8s cubic-bezier(0.16,1,0.3,1), transform .8s cubic-bezier(0.16,1,0.3,1); }
.reveal-left.in { opacity: 1; transform: translateX(0); }

/* Scale up */
.reveal-scale { opacity: 0; transform: scale(0.92); transition: opacity .7s cubic-bezier(0.16,1,0.3,1), transform .7s cubic-bezier(0.16,1,0.3,1); }
.reveal-scale.in { opacity: 1; transform: scale(1); }

@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal-left, .reveal-scale { animation: none !important; opacity: 1 !important; transform: none !important; transition: none !important; }
}

/* ===== Hero entry — cinematic stagger ===== */
.hero-eyebrow, .hero h1, .hero-sub, .hero-actions, .hero-trust {
  animation: heroRise .9s cubic-bezier(0.16,1,0.3,1) backwards;
}
.hero-eyebrow { animation-delay: 0s; }
.hero h1 { animation-delay: .1s; }
.hero-sub { animation-delay: .22s; }
.hero-actions { animation-delay: .34s; }
.hero-trust { animation-delay: .46s; }
@keyframes heroRise {
  from { opacity: 0; transform: translateY(24px); filter: blur(4px); }
  to { opacity: 1; transform: translateY(0); filter: blur(0); }
}

/* Hero italic word shimmer */
.h-hero em {
  position: relative;
  display: inline-block;
}
.h-hero em::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -4px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transform: scaleX(0);
  transform-origin: left;
  animation: underlineGrow 1.6s cubic-bezier(0.16,1,0.3,1) 0.6s forwards;
}
@keyframes underlineGrow { to { transform: scaleX(1); } }

/* ===== Gold line draw animation ===== */
.gold-line {
  width: 48px; height: 2px; background: var(--gold); border: none; margin: 0 0 28px;
  transform-origin: left;
  transform: scaleX(0);
  transition: transform 1s cubic-bezier(0.16,1,0.3,1);
}
.gold-line.in { transform: scaleX(1); }
.sec--ivory .gold-line { background: var(--gold-deep); }

/* ===== Section number entrance ===== */
.sec-num {
  font-family: var(--font); font-weight: 700; font-style: italic;
  font-size: clamp(64px, 8vw, 96px);
  color: var(--gold); line-height: 1; letter-spacing: -0.02em;
  margin-bottom: 12px; opacity: 0;
  transform: translateX(-20px);
  transition: opacity .8s cubic-bezier(0.16,1,0.3,1), transform .8s cubic-bezier(0.16,1,0.3,1);
}
.sec-num.in { opacity: 0.85; transform: translateX(0); }
.sec--ivory .sec-num.in, .sec--light .sec-num.in, .sec--stone .sec-num.in { opacity: 0.7; }
.sec--ivory .sec-num, .sec--light .sec-num, .sec--stone .sec-num { color: var(--gold-deep); }

/* ===== Dot-grid pulse ===== */
.dot-grid span {
  width: 4px; height: 4px; border-radius: 99px;
  background: var(--gold); opacity: 0;
  animation: dotPop .4s ease forwards;
}
.dot-grid span:nth-child(1) { animation-delay: 0.3s; }
.dot-grid span:nth-child(2) { animation-delay: 0.35s; }
.dot-grid span:nth-child(3) { animation-delay: 0.4s; }
.dot-grid span:nth-child(4) { animation-delay: 0.45s; }
.dot-grid span:nth-child(5) { animation-delay: 0.5s; }
.dot-grid span:nth-child(6) { animation-delay: 0.55s; }
.dot-grid span:nth-child(7) { animation-delay: 0.6s; }
.dot-grid span:nth-child(8) { animation-delay: 0.65s; }
.dot-grid span:nth-child(9) { animation-delay: 0.7s; }
.dot-grid span:nth-child(10) { animation-delay: 0.75s; }
.dot-grid span:nth-child(11) { animation-delay: 0.8s; }
.dot-grid span:nth-child(12) { animation-delay: 0.85s; }
.dot-grid span:nth-child(13) { animation-delay: 0.9s; }
.dot-grid span:nth-child(14) { animation-delay: 0.95s; }
.dot-grid span:nth-child(15) { animation-delay: 1.0s; }
.dot-grid span:nth-child(16) { animation-delay: 1.05s; }
.dot-grid span:nth-child(17) { animation-delay: 1.1s; }
.dot-grid span:nth-child(18) { animation-delay: 1.15s; }
.dot-grid span:nth-child(19) { animation-delay: 1.2s; }
.dot-grid span:nth-child(20) { animation-delay: 1.25s; }
.dot-grid span:nth-child(21) { animation-delay: 1.3s; }
.dot-grid span:nth-child(22) { animation-delay: 1.35s; }
.dot-grid span:nth-child(23) { animation-delay: 1.4s; }
.dot-grid span:nth-child(24) { animation-delay: 1.45s; }
.dot-grid span:nth-child(25) { animation-delay: 1.5s; }
@keyframes dotPop {
  0% { opacity: 0; transform: scale(0); }
  70% { opacity: 0.5; transform: scale(1.4); }
  100% { opacity: 0.35; transform: scale(1); }
}
.sec--ivory .dot-grid span, .sec--light .dot-grid span { background: var(--gold-deep); }

/* Dot breathe after pop */
.dot-grid span {
  animation: dotPop .4s ease forwards, dotBreathe 3.5s ease-in-out 2s infinite;
}
@keyframes dotBreathe {
  0%, 100% { opacity: 0.25; }
  50% { opacity: 0.5; }
}

/* ===== Button gold shimmer ===== */
.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.45) 50%, transparent 70%);
  transition: left .65s ease;
  pointer-events: none;
}
.btn-primary:hover::after { left: 140%; }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(201,169,97,0.3); }

/* ===== Card hover micro-interactions ===== */
.pillar {
  transition: border-color .3s ease, transform .3s ease, box-shadow .3s ease;
}
.pillar:hover {
  border-color: var(--gold-border);
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.25);
}
.pillar:hover .pillar-num { transform: scale(1.08); }
.pillar-num { transition: transform .3s ease; }

.bd-panel {
  transition: transform .4s ease, box-shadow .4s ease;
}
.bd-panel:hover {
  transform: translateY(-4px) scale(1.01);
  box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}

/* Panel icon hover rotate */
.bd-panel-icon { transition: transform .4s ease; }
.bd-panel:hover .bd-panel-icon { transform: rotate(-6deg) scale(1.06); }

/* ===== Beweis-Bar — premium dark marquee ===== */
.beweis-section {
  background: var(--deep);
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding: 36px 0;
  position: relative;
  overflow: hidden;
}
.beweis-section::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(50% 100% at 50% 0%, rgba(212,182,106,0.08), transparent 70%);
  pointer-events: none;
}
.beweis-section .eyebrow {
  text-align: center; display: block; margin-bottom: 20px; position: relative;
}
.beweis-wrap {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}
.beweis-wrap:hover .beweis-bar { animation-play-state: paused; }
.beweis-bar {
  display: flex; width: max-content;
  animation: marqueeScroll 36s linear infinite;
  gap: 56px; padding-right: 56px;
}
.beweis-item {
  font-family: var(--font);
  font-weight: 600;
  font-size: 20px;
  letter-spacing: -0.01em;
  color: rgba(245,241,234,0.4);
  white-space: nowrap;
  transition: color .25s, opacity .25s;
}
.beweis-item:hover { color: var(--gold); opacity: 1; }
@keyframes marqueeScroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ===== Argument stack animation ===== */
.arg {
  opacity: 0;
  transform: translateX(-16px);
  transition: opacity .7s cubic-bezier(0.16,1,0.3,1), transform .7s cubic-bezier(0.16,1,0.3,1);
}
.arg.in { opacity: 1; transform: translateX(0); }

/* ===== Numbered stack animation ===== */
.nstep {
  opacity: 0;
  transform: translateX(-16px);
  transition: opacity .7s cubic-bezier(0.16,1,0.3,1), transform .7s cubic-bezier(0.16,1,0.3,1);
}
.nstep.in { opacity: 1; transform: translateX(0); }

/* ===== Garantie hard-quote entrance ===== */
.hard-quote {
  opacity: 0; transform: translateX(-24px);
  transition: opacity .9s cubic-bezier(0.16,1,0.3,1), transform .9s cubic-bezier(0.16,1,0.3,1);
}
.hard-quote.in { opacity: 1; transform: translateX(0); }

/* ===== Garantie badge pulse ===== */
.garantie-badge {
  animation: badgePulse 3s ease-in-out 1s infinite;
}
@keyframes badgePulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(45,95,63,0); }
  50% { box-shadow: 0 0 0 8px rgba(45,95,63,0.15); }
}

/* ===== FAQ smooth accordion ===== */
.faq-a { transition: max-height .45s cubic-bezier(0.16,1,0.3,1); }
.faq-q .plus { transition: transform .35s cubic-bezier(0.16,1,0.3,1), background .25s ease, color .25s ease; }

/* ===== CTA arrow bounce ===== */
.cta-block .sec-num {
  animation: arrowBounce 2.4s ease-in-out infinite;
  opacity: 0.85 !important;
  transform: none !important;
}
@keyframes arrowBounce {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(8px); }
}

/* ===== Smooth scroll ===== */
html { scroll-behavior: smooth; }

/* ===== Hero specifics ===== */
.hero {
  padding: 80px 0 64px;
  background:
    radial-gradient(60% 50% at 50% 0%, rgba(212,182,106,0.08), transparent 60%),
    radial-gradient(40% 40% at 80% 80%, rgba(79,131,245,0.06), transparent 60%),
    var(--midnight);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 52px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-inner { max-width: none; }
.hero-sub { margin: 20px 0 32px; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-trust {
  margin-top: 36px;
  display: flex; gap: 20px; flex-wrap: wrap;
  color: rgba(245,241,234,0.45);
  font-size: 13px; font-weight: 500;
}
.hero-trust .ht { display: flex; align-items: center; gap: 8px; }
.hero-trust .ht svg { color: var(--green); }
@media (max-width: 960px) { .hero-grid { grid-template-columns: 1fr; gap: 40px; } }

/* Lighter h-hero */
.h-hero {
  font-weight: 600;
  font-size: clamp(40px, 5.8vw, 72px);
  letter-spacing: -0.025em;
  line-height: 1.06;
}

/* ===== Hero Visual — dashboard mock ===== */
.hero-visual {
  position: relative;
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, #0C1524 0%, #070D18 100%);
  border: 1px solid var(--line-dark-s);
  padding: 18px;
  box-shadow: 0 24px 80px rgba(0,0,0,0.5);
  animation: heroRise 1s cubic-bezier(0.16,1,0.3,1) 0.2s backwards;
  overflow: hidden;
}
/* Ambient glow blobs */
.hero-visual::before {
  content: "";
  position: absolute;
  width: 340px; height: 340px;
  top: -80px; right: -60px;
  background: radial-gradient(circle, rgba(79,131,245,0.18), transparent 70%);
  pointer-events: none;
  animation: glowDrift 8s ease-in-out infinite alternate;
}
.hero-visual::after {
  content: "";
  position: absolute;
  width: 280px; height: 280px;
  bottom: -40px; left: -40px;
  background: radial-gradient(circle, rgba(201,169,97,0.14), transparent 70%);
  pointer-events: none;
  animation: glowDrift2 10s ease-in-out infinite alternate;
}
@keyframes glowDrift {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(-30px, 20px) scale(1.15); }
}
@keyframes glowDrift2 {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(20px, -25px) scale(1.1); }
}
.hv-window {
  border-radius: 18px;
  background: #0A1912;
  border: 1px solid rgba(255,255,255,0.09);
  overflow: hidden;
}
.hv-titlebar {
  height: 34px;
  display: flex; align-items: center; gap: 6px;
  padding: 0 14px;
  border-bottom: 1px solid var(--line-dark);
  background: rgba(255,255,255,0.02);
}
.hv-dot { width: 9px; height: 9px; border-radius: 99px; background: #1A2E24; }
.hv-url { margin-left: 10px; font-size: 11px; color: var(--slate); font-weight: 500; letter-spacing: 0.02em; }
.hv-body { padding: 18px; display: flex; flex-direction: column; gap: 12px; }
.hv-header-row { display: flex; align-items: center; justify-content: space-between; padding-bottom: 12px; border-bottom: 1px solid var(--line-dark); }
.hv-brand { display: flex; align-items: center; gap: 8px; font-weight: 600; font-size: 13px; color: var(--ivory); }
.hv-mono { width: 24px; height: 24px; border-radius: 5px; background: var(--mid); display: grid; place-items: center; font-weight: 700; font-style: italic; font-size: 10px; color: var(--gold); letter-spacing: -0.3px; }
.hv-live-badge { display: inline-flex; align-items: center; gap: 6px; font-size: 11px; font-weight: 500; color: var(--green); padding: 4px 10px; border-radius: 99px; background: rgba(45,95,63,0.12); border: 1px solid rgba(45,95,63,0.25); }
.hv-live-dot { width: 6px; height: 6px; border-radius: 99px; background: var(--green); animation: livePulse 2s ease-in-out infinite; }
@keyframes livePulse { 0%, 100% { opacity: 0.5; box-shadow: 0 0 0 0 rgba(45,95,63,0); } 50% { opacity: 1; box-shadow: 0 0 0 4px rgba(45,95,63,0.3); } }

.hv-row {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 16px; border-radius: 12px;
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08);
  transition: border-color .25s, transform .25s, background .25s;
  animation: rowSlide .5s ease backwards;
}
.hv-row:hover { border-color: rgba(255,255,255,0.16); transform: translateX(4px); background: rgba(255,255,255,0.06); }
@keyframes rowSlide { from { opacity: 0; transform: translateX(12px); } to { opacity: 1; transform: translateX(0); } }

.hv-row-left { display: flex; align-items: center; gap: 12px; }
.hv-row-mono { width: 32px; height: 32px; border-radius: 8px; display: grid; place-items: center; font-weight: 700; font-style: italic; font-size: 11px; letter-spacing: -0.3px; }
.hv-row-label { font-size: 13px; font-weight: 600; color: var(--ivory); }
.hv-row-sub { font-size: 11px; color: var(--slate); font-weight: 500; margin-top: 1px; }
.hv-row-right { text-align: right; }
.hv-row-count { font-weight: 700; font-size: 20px; letter-spacing: -0.02em; line-height: 1; }
.hv-row-status { display: flex; align-items: center; gap: 5px; font-size: 10px; color: var(--slate); font-weight: 500; margin-top: 3px; justify-content: flex-end; }
.hv-status-dot { width: 5px; height: 5px; border-radius: 99px; }

.hv-bottom-bar { padding: 14px 0 4px; border-top: 1px solid var(--line-dark); margin-top: 4px; }
.hv-bar-label { font-size: 11px; color: var(--slate); font-weight: 500; margin-bottom: 8px; }
.hv-bar-track { height: 6px; background: rgba(255,255,255,0.06); border-radius: 99px; overflow: hidden; }
.hv-bar-fill { height: 100%; width: 0; border-radius: 99px; background: linear-gradient(90deg, #2D9B6A, #D4B66A); animation: barGrow 2s cubic-bezier(0.16,1,0.3,1) 1.2s forwards; }
@keyframes barGrow { to { width: 78%; } }
.hv-bar-val { font-size: 12px; font-weight: 600; color: var(--ivory); margin-top: 6px; }

/* Garantie banner inside visual */
.hv-garantie {
  display: flex; align-items: center; gap: 14px;
  padding: 14px 16px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(45,95,63,0.14), rgba(45,95,63,0.06));
  border: 1px solid rgba(45,95,63,0.35);
  margin-top: 4px;
  animation: rowSlide .5s ease 1.4s backwards;
}
.hv-garantie-icon {
  flex: 0 0 56px;
  width: 56px; height: 40px;
  border-radius: 8px;
  background: rgba(45,95,63,0.12);
  display: grid; place-items: center;
  color: var(--green);
}
.hv-garantie-title { font-size: 12px; font-weight: 600; color: var(--ivory); letter-spacing: 0.02em; }
.hv-garantie-sub { font-size: 11px; color: var(--slate); font-weight: 500; margin-top: 2px; }

/* Signature draw animation */
.sig-svg .sig-path {
  stroke: var(--green);
  stroke-dasharray: 240;
  stroke-dashoffset: 240;
  animation: sigDraw 2.4s cubic-bezier(0.65, 0, 0.35, 1) 1.6s forwards;
}
.sig-svg .sig-base {
  stroke: var(--green);
  stroke-dasharray: 120;
  stroke-dashoffset: 120;
  animation: sigDraw 0.8s ease 3.8s forwards;
  opacity: 0.5;
}
@keyframes sigDraw { to { stroke-dashoffset: 0; } }
.hv-garantie:hover .sig-svg .sig-path {
  animation: sigDraw 1.6s cubic-bezier(0.65, 0, 0.35, 1) forwards;
}

/* Hero visual mobile */
@media (max-width: 640px) {
  .hero-visual { padding: 14px; }
  .hv-body { padding: 14px; gap: 10px; }
  .hv-row { padding: 12px; }
  .hv-row-count { font-size: 16px; }
  .hv-header-row { flex-direction: column; align-items: flex-start; gap: 8px; }
}

/* (Beweis-bar styles moved up — see .beweis-section) */

/* ===== Pillar cards (P-05) ===== */
.pillars { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-top: 48px; }
.pillar {
  padding: 32px 26px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.05);
  display: flex; flex-direction: column; gap: 16px;
  transition: border-color .25s, transform .25s, background .25s, box-shadow .25s;
}
.pillar:hover {
  border-color: var(--gold-border);
  transform: translateY(-5px);
  background: rgba(255,255,255,0.08);
  box-shadow: 0 16px 40px rgba(0,0,0,0.2);
}
.pillar-num { font-weight: 700; font-style: italic; font-size: 28px; color: var(--gold); line-height: 1; }
.pillar h4 { font-weight: 600; font-size: 19px; line-height: 1.2; }
.pillar p { color: rgba(245,241,234,0.65); font-size: 14.5px; margin: 0; line-height: 1.55; font-weight: 500; }
@media (max-width: 960px) { .pillars { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .pillars { grid-template-columns: 1fr; } }

/* ===== Argument stack (P-07) — for problem section on ivory ===== */
.arg-stack { display: flex; flex-direction: column; gap: 0; margin-top: 48px; }
.arg {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 24px;
  padding: 28px 0;
  border-bottom: 1px solid var(--line-light);
}
.arg:last-child { border-bottom: none; }
.arg-num { font-weight: 700; font-style: italic; font-size: 24px; color: var(--gold-deep); }
.arg h4 { font-weight: 600; font-size: 20px; color: var(--charcoal); margin-bottom: 8px; }
.arg p { color: var(--slate); font-size: 15px; margin: 0; line-height: 1.6; font-weight: 500; }

/* ===== Bereich full sections ===== */
.bd-section { padding: 88px 0; position: relative; overflow: hidden; }
.bd-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 64px; align-items: center; }
.bd-grid.bd-flip .bd-copy { order: 2; }
.bd-grid.bd-flip .bd-visual { order: 1; }
.bd-kicker { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.bd-kicker-mono {
  width: 36px; height: 36px; border-radius: 8px; display: grid; place-items: center;
  font-weight: 700; font-style: italic; font-size: 14px; letter-spacing: -0.5px;
}
.bd-kicker-text { font-weight: 600; font-size: 12px; letter-spacing: 1.5px; text-transform: uppercase; }
.bd-title { font-weight: 700; font-size: clamp(32px, 4vw, 48px); letter-spacing: -0.02em; line-height: 1.06; margin-bottom: 18px; }
.bd-title em { font-style: italic; color: var(--gold); }
.sec--ivory .bd-title em { color: var(--gold-deep); }
.bd-lead { font-size: 18px; font-weight: 500; line-height: 1.55; margin: 0 0 18px; }
.sec--navy .bd-lead, .sec--mid .bd-lead { color: rgba(245,241,234,0.8); }
.sec--ivory .bd-lead, .sec--light .bd-lead { color: var(--charcoal); }
.bd-para { font-size: 15px; font-weight: 500; line-height: 1.65; margin: 0 0 12px; max-width: 520px; }
.sec--navy .bd-para, .sec--mid .bd-para { color: rgba(245,241,234,0.68); }
.sec--ivory .bd-para, .sec--light .bd-para { color: var(--slate); }
.bd-points { list-style: none; padding: 0; margin: 24px 0 28px; display: grid; grid-template-columns: 1fr 1fr; gap: 10px 20px; }
.bd-points li { display: flex; gap: 10px; font-size: 14px; font-weight: 500; align-items: flex-start; }
.sec--navy .bd-points li, .sec--mid .bd-points li { color: rgba(245,241,234,0.7); }
.sec--ivory .bd-points li { color: var(--slate); }
.bd-points li svg { flex: 0 0 16px; margin-top: 3px; color: var(--green); }
.bd-actions { display: flex; gap: 16px; align-items: center; flex-wrap: wrap; }
.bd-domain { font-weight: 600; font-size: 13px; letter-spacing: -0.01em; }
.sec--navy .bd-domain { color: rgba(245,241,234,0.4); }
.sec--ivory .bd-domain { color: var(--slate); }
.bd-domain .de { color: var(--gold); }
.sec--ivory .bd-domain .de { color: var(--gold-deep); }

/* Visual panel */
.bd-visual { display: flex; justify-content: center; }
.bd-panel {
  width: 100%; max-width: 440px; aspect-ratio: 1/1;
  border-radius: var(--radius-xl); position: relative; overflow: hidden;
  display: flex; flex-direction: column; justify-content: space-between; padding: 32px;
}
.sec--navy .bd-panel, .sec--mid .bd-panel { background: rgba(255,255,255,0.045); border: 1px solid rgba(255,255,255,0.12); }
.sec--ivory .bd-panel { background: var(--stone); border: 1px solid var(--line-light-s); }
.bd-panel-num { position: absolute; top: 22px; right: 28px; font-weight: 700; font-style: italic; font-size: 72px; letter-spacing: -0.03em; line-height: 1; opacity: 0.18; }
.sec--navy .bd-panel-num { color: var(--gold); }
.sec--ivory .bd-panel-num { color: var(--gold-deep); }
.bd-panel-icon { width: 56px; height: 56px; border-radius: 14px; display: grid; place-items: center; }
.sec--navy .bd-panel-icon { background: var(--gold-soft); color: var(--gold); }
.sec--ivory .bd-panel-icon { background: rgba(168,133,68,0.12); color: var(--gold-deep); }
.bd-panel-icon svg { width: 28px; height: 28px; }
.bd-metrics { position: relative; display: flex; flex-direction: column; gap: 12px; }
.bd-metric { display: flex; align-items: baseline; justify-content: space-between; gap: 14px; padding-bottom: 10px; }
.sec--navy .bd-metric { border-bottom: 1px solid var(--line-dark); }
.sec--ivory .bd-metric { border-bottom: 1px solid var(--line-light); }
.bd-metric:last-child { border-bottom: none; padding-bottom: 0; }
.bd-metric-val { font-weight: 700; font-size: 22px; letter-spacing: -0.02em; white-space: nowrap; }
.sec--navy .bd-metric-val { color: var(--gold); }
.sec--ivory .bd-metric-val { color: var(--gold-deep); }
.bd-metric-label { font-size: 13px; font-weight: 500; text-align: right; }
.sec--navy .bd-metric-label { color: rgba(245,241,234,0.5); }
.sec--ivory .bd-metric-label { color: var(--slate); }

@media (max-width: 960px) {
  .bd-grid, .bd-grid.bd-flip { grid-template-columns: 1fr; gap: 40px; }
  .bd-grid.bd-flip .bd-copy { order: 1; }
  .bd-grid.bd-flip .bd-visual { order: 2; }
  .bd-panel { max-width: 360px; }
}
@media (max-width: 560px) {
  .bd-section { padding: 64px 0; }
  .bd-points { grid-template-columns: 1fr; }
  .bd-panel { aspect-ratio: auto; padding: 24px; gap: 24px; }
}

/* ===== Garantie badge (P-08) ===== */
.garantie-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 16px;
  border-radius: 6px;
  font-weight: 600; font-size: 12px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}
.sec--navy .garantie-badge, .sec--deep .garantie-badge {
  background: rgba(45,95,63,0.18);
  color: var(--green);
  border: 1px solid rgba(45,95,63,0.3);
}
.sec--ivory .garantie-badge {
  background: rgba(45,95,63,0.1);
  color: var(--green);
  border: 1px solid rgba(45,95,63,0.2);
}

/* ===== Hard quote (P-06) ===== */
.hard-quote {
  margin: 40px 0;
  padding: 28px 32px;
  border-left: 3px solid var(--gold);
  font-weight: 600;
  font-size: clamp(20px, 2vw, 26px);
  letter-spacing: -0.01em;
  line-height: 1.3;
}
.sec--ivory .hard-quote { border-left-color: var(--gold-deep); color: var(--charcoal); }
.sec--navy .hard-quote, .sec--deep .hard-quote { color: var(--ivory); }

/* ===== Process / numbered stack ===== */
.numbered-stack { display: flex; flex-direction: column; gap: 0; margin-top: 48px; }
.nstep {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 24px;
  padding: 28px 0;
}
.sec--ivory .nstep { border-bottom: 1px solid var(--line-light); }
.sec--navy .nstep { border-bottom: 1px solid var(--line-dark); }
.nstep:last-child { border-bottom: none; }
.nstep-num { font-weight: 700; font-style: italic; font-size: 28px; color: var(--gold); }
.sec--ivory .nstep-num { color: var(--gold-deep); }
.nstep h4 { font-weight: 600; font-size: 19px; margin-bottom: 6px; }
.nstep p { font-size: 15px; font-weight: 500; margin: 0; line-height: 1.6; }
.sec--ivory .nstep p { color: var(--slate); }
.sec--navy .nstep p { color: rgba(245,241,234,0.65); }

/* ===== FAQ ===== */
.faq { margin-top: 40px; }
.faq-item {}
.sec--ivory .faq-item { border-bottom: 1px solid var(--line-light); }
.sec--navy .faq-item { border-bottom: 1px solid var(--line-dark); }
.faq-q {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  background: transparent; border: none; text-align: left;
  padding: 24px 0;
  font-family: var(--font); font-weight: 600; font-size: clamp(17px, 1.4vw, 20px);
  letter-spacing: -0.01em;
}
.sec--navy .faq-q { color: var(--ivory); }
.sec--ivory .faq-q { color: var(--charcoal); }
.faq-q .plus {
  flex: 0 0 28px; height: 28px; border-radius: 6px;
  display: grid; place-items: center;
  transition: transform .2s, background .2s, color .2s;
}
.sec--navy .faq-q .plus { background: rgba(255,255,255,0.07); color: rgba(245,241,234,0.55); }
.sec--ivory .faq-q .plus { background: rgba(10,22,40,0.05); color: var(--slate); }
.faq-item.open .faq-q .plus { background: var(--gold); color: var(--midnight); transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.faq-a > div { padding: 0 56px 24px 0; font-size: 15px; font-weight: 500; line-height: 1.65; }
.sec--navy .faq-a > div { color: rgba(245,241,234,0.65); }
.sec--ivory .faq-a > div { color: var(--slate); }

/* ===== CTA block ===== */
.cta-block {
  text-align: center;
  display: flex; flex-direction: column; gap: 24px; align-items: center;
  max-width: 680px; margin: 0 auto;
}
.cta-block .lead { text-align: center; }

/* ===== Animated Bereich Visuals ===== */
.bd-anim-card {
  width: 100%; max-width: 440px;
  border-radius: var(--radius-xl);
  padding: 28px;
  display: flex; flex-direction: column; gap: 16px;
  position: relative;
  overflow: hidden;
}
.sec--navy .bd-anim-card { background: rgba(255,255,255,0.045); border: 1px solid rgba(255,255,255,0.12); }
.sec--ivory .bd-anim-card { background: var(--stone); border: 1px solid var(--line-light-s); }
.sec--mid .bd-anim-card { background: rgba(255,255,255,0.045); border: 1px solid rgba(255,255,255,0.12); }

.bd-anim-head {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
}

/* Tarif rows */
.bd-tarif-row {
  display: grid;
  grid-template-columns: 1fr 1.2fr auto;
  gap: 12px;
  align-items: center;
  padding: 14px 16px;
  border-radius: 12px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  animation: rowSlide .5s ease backwards;
  transition: border-color .25s, transform .25s;
}
.bd-tarif-row:hover { border-color: rgba(79,131,245,0.4); transform: translateX(4px); }
.sec--ivory .bd-tarif-row { background: rgba(0,0,0,0.03); border-color: rgba(0,0,0,0.06); }
.bd-tarif-name { font-weight: 600; font-size: 13px; }
.sec--navy .bd-tarif-name { color: var(--ivory); }
.sec--ivory .bd-tarif-name { color: var(--charcoal); }
.bd-tarif-preis { font-family: var(--font-mono); font-size: 13px; color: var(--gold); }
.bd-tarif-preis span { font-size: 10px; color: var(--slate); margin-left: 2px; }
.bd-tarif-bar-wrap { height: 6px; background: rgba(255,255,255,0.06); border-radius: 99px; overflow: hidden; }
.sec--ivory .bd-tarif-bar-wrap { background: rgba(0,0,0,0.06); }
.bd-tarif-bar {
  height: 100%; width: 0;
  background: linear-gradient(90deg, #2D9B6A, #4BC88A);
  border-radius: 99px;
  animation: barGrow 1.2s cubic-bezier(0.4,0,0.2,1) forwards;
}
.bd-tarif-q { font-family: var(--font-mono); font-size: 12px; color: #2D9B6A; font-weight: 600; min-width: 32px; text-align: right; }

@keyframes barGrow { to { width: var(--w); } }

/* Kapitalanlage chart */
.bd-chart {
  display: flex;
  align-items: flex-end;
  gap: 12px;
  height: 160px;
  padding: 16px 0;
}
.bd-chart-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  height: 100%;
  justify-content: flex-end;
}
.bd-chart-bar {
  width: 100%;
  height: 0;
  border-radius: 8px 8px 4px 4px;
  background: linear-gradient(180deg, var(--gold) 0%, var(--gold-deep) 100%);
  animation: chartGrow 1.4s cubic-bezier(0.4,0,0.2,1) forwards;
  position: relative;
  min-height: 4px;
  box-shadow: 0 4px 16px rgba(212,182,106,0.2);
}
.bd-chart-bar::after {
  content: "";
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: rgba(255,255,255,0.4);
  border-radius: 8px 8px 0 0;
}
@keyframes chartGrow { to { height: var(--h); } }

.bd-chart-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.06em;
}
.sec--navy .bd-chart-label, .sec--mid .bd-chart-label { color: rgba(245,241,234,0.5); }
.sec--ivory .bd-chart-label { color: var(--slate); }
.bd-chart-note {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--gold);
  letter-spacing: 0.04em;
  text-align: center;
  padding-top: 8px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.sec--ivory .bd-chart-note { border-top-color: rgba(0,0,0,0.06); }

/* Baufi kredit rows */
.bd-kredit-row {
  display: grid;
  grid-template-columns: auto 1fr 1fr 1.2fr;
  gap: 12px;
  align-items: center;
  padding: 14px 16px;
  border-radius: 12px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  animation: rowSlide .5s ease backwards;
  transition: border-color .25s, transform .25s;
}
.bd-kredit-row:hover { border-color: rgba(47,182,163,0.4); transform: translateX(4px); }
.sec--ivory .bd-kredit-row { background: rgba(0,0,0,0.03); border-color: rgba(0,0,0,0.06); }
.bd-kredit-bank { font-weight: 600; font-size: 13px; min-width: 56px; }
.sec--navy .bd-kredit-bank, .sec--mid .bd-kredit-bank { color: var(--ivory); }
.sec--ivory .bd-kredit-bank { color: var(--charcoal); }
.bd-kredit-zins { font-family: var(--font-mono); font-size: 13px; color: #2FB6A3; font-weight: 600; }
.bd-kredit-rate { font-family: var(--font-mono); font-size: 12px; }
.sec--navy .bd-kredit-rate, .sec--mid .bd-kredit-rate { color: rgba(245,241,234,0.6); }
.sec--ivory .bd-kredit-rate { color: var(--slate); }
.bd-kredit-score-wrap { height: 6px; background: rgba(255,255,255,0.06); border-radius: 99px; overflow: hidden; }
.sec--ivory .bd-kredit-score-wrap { background: rgba(0,0,0,0.06); }
.bd-kredit-score {
  height: 100%; width: 0;
  background: linear-gradient(90deg, #2FB6A3, #5ED4C4);
  border-radius: 99px;
  animation: barGrow 1.2s cubic-bezier(0.4,0,0.2,1) forwards;
}

/* Mobile for anim cards */
@media (max-width: 560px) {
  .bd-anim-card { max-width: 100%; padding: 22px; }
  .bd-chart { height: 120px; gap: 8px; }
  .bd-tarif-row { grid-template-columns: 1fr auto; gap: 8px; padding: 12px; }
  .bd-tarif-bar-wrap { display: none; }
  .bd-kredit-row { grid-template-columns: auto 1fr auto; gap: 8px; padding: 12px; }
  .bd-kredit-score-wrap { display: none; }
}

/* ===== Leistungen cards ===== */
.leistungen-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}
.leistung-card {
  background: var(--light);
  border: 1px solid var(--line-light-s);
  border-radius: var(--radius-xl);
  padding: 32px 28px;
  display: flex; flex-direction: column; gap: 16px;
  transition: border-color .25s, transform .25s, box-shadow .25s;
  position: relative;
}
.leistung-card:hover { border-color: var(--gold-border); transform: translateY(-4px); box-shadow: 0 16px 40px rgba(0,0,0,0.08); }
.leistung-card.primary { border-color: var(--gold-border); background: linear-gradient(180deg, #FAF6ED 0%, var(--light) 100%); }
.lc-head { display: flex; align-items: center; justify-content: space-between; }
.lc-mono { width: 36px; height: 36px; border-radius: 10px; display: grid; place-items: center; font-weight: 700; font-size: 13px; font-family: var(--font-mono); }
.lc-icon { opacity: 0.5; }
.leistung-card h3 { font-size: 20px; font-weight: 600; letter-spacing: -0.02em; color: var(--charcoal); margin: 0; }
.leistung-card p { font-size: 14px; color: var(--slate); margin: 0; line-height: 1.55; }
.leistung-card ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 8px; margin-top: auto; }
.leistung-card li { display: flex; gap: 8px; font-size: 13px; color: var(--charcoal); font-weight: 500; align-items: center; }
.leistung-card li svg { color: var(--accent-c, var(--gold)); flex: 0 0 15px; }
.lc-badge {
  position: absolute; top: -10px; right: 20px;
  background: var(--gold); color: var(--charcoal);
  font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.12em;
  padding: 5px 10px; border-radius: 6px; font-weight: 600;
}
@media (max-width: 960px) { .leistungen-grid { grid-template-columns: 1fr; } }

/* ===== Recruiting detail ===== */
.rec-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 64px; align-items: center; }
@media (max-width: 960px) { .rec-grid { grid-template-columns: 1fr; gap: 40px; } }

.rec-stats { display: flex; gap: 28px; margin: 32px 0; }
.rec-stat { display: flex; flex-direction: column; gap: 4px; }
.rec-stat-num { font-family: var(--font); font-size: 44px; font-weight: 700; letter-spacing: -0.03em; line-height: 1; color: var(--gold); }
.rec-stat-label { font-size: 12px; color: rgba(245,241,234,0.55); font-weight: 500; line-height: 1.35; }

.rec-guarantee {
  display: flex; gap: 14px; align-items: flex-start;
  padding: 18px 20px; border-radius: 14px;
  background: rgba(212,182,106,0.08);
  border: 1px solid var(--gold-border);
  color: rgba(245,241,234,0.8);
  font-size: 14px; line-height: 1.55;
}
.rec-guarantee svg { flex: 0 0 22px; color: var(--gold); margin-top: 2px; }

/* Timeline visual */
.rec-timeline {
  display: flex; flex-direction: column; gap: 0;
  padding: 32px;
  border-radius: var(--radius-xl);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.10);
}
.rec-tl-step {
  display: grid; grid-template-columns: 18px 3px 1fr auto;
  gap: 14px; align-items: center;
  padding: 16px 0;
  animation: rowSlide .5s ease backwards;
}
.rec-tl-step:not(:last-child) { border-bottom: 1px solid rgba(255,255,255,0.06); }
.rec-tl-dot { width: 12px; height: 12px; border-radius: 99px; background: var(--gold); box-shadow: 0 0 0 4px var(--gold-soft); }
.rec-tl-line { width: 3px; height: 100%; background: rgba(255,255,255,0.06); border-radius: 99px; min-height: 16px; }
.rec-tl-label { font-weight: 600; font-size: 14px; color: var(--ivory); }
.rec-tl-day { font-family: var(--font-mono); font-size: 12px; color: var(--gold); font-weight: 600; }

/* Über uns */
.ueber-grid { margin-top: 32px; }
.ueber-text { max-width: 680px; }
.ueber-facts { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 24px; }
.uf {
  padding: 16px 18px; border-radius: 12px;
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08);
  font-size: 14px; color: rgba(245,241,234,0.7); line-height: 1.45;
}
.uf strong { color: var(--ivory); display: block; margin-bottom: 4px; font-size: 13px; }
@media (max-width: 560px) { .ueber-facts { grid-template-columns: 1fr; } .rec-stats { flex-direction: column; gap: 18px; } }

/* ===== Wie-Summary (3 visual steps) ===== */
.wie-summary {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 16px;
  align-items: center;
  margin: 48px 0 40px;
  padding: 36px;
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, #FAF6ED 0%, var(--light) 100%);
  border: 1px solid var(--gold-border);
}
.wie-sum-step {
  display: flex; flex-direction: column; align-items: center; gap: 12px; text-align: center;
}
.wie-sum-num { font-family: var(--font-mono); font-size: 11px; font-weight: 700; color: var(--gold); letter-spacing: 0.12em; }
.wie-sum-icon { width: 72px; height: 72px; border-radius: 999px; background: var(--gold-soft); display: grid; place-items: center; transition: transform .35s ease, box-shadow .35s ease; }
.wie-sum-step:hover .wie-sum-icon { transform: scale(1.08) rotate(-3deg); box-shadow: 0 8px 28px rgba(212,182,106,0.25); }
.wie-sum-step h4 { font-size: 17px; font-weight: 600; color: var(--charcoal); margin: 0; letter-spacing: -0.01em; }
.wie-sum-step p { font-size: 13px; color: var(--slate); margin: 0; max-width: 200px; line-height: 1.45; }
.wie-sum-arrow { font-family: var(--font); font-size: 28px; font-weight: 300; color: var(--gold); opacity: 0.6; }

/* Ring draw animation */
.wie-ring {
  animation: ringDraw 1.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}
@keyframes ringDraw {
  to { stroke-dashoffset: 0; }
}

@media (max-width: 760px) {
  .wie-summary { grid-template-columns: 1fr; gap: 24px; padding: 28px 22px; }
  .wie-sum-arrow { display: none; }
}

/* ===== Wie-Details (step cards with visuals) ===== */
.wie-details { display: flex; flex-direction: column; gap: 20px; margin-top: 40px; }
.wie-detail {
  display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center;
  padding: 36px; border-radius: var(--radius-xl);
  background: var(--light); border: 1px solid var(--line-light-s);
  transition: border-color .3s, transform .3s, box-shadow .3s;
}
.wie-detail:hover { border-color: var(--gold-border); transform: translateY(-3px); box-shadow: 0 16px 40px rgba(0,0,0,0.06); }
.wie-detail.flip .wie-detail-copy { order: 2; }
.wie-detail.flip .wie-detail-visual { order: 1; }
.wie-detail.highlight { background: linear-gradient(180deg, #F0EDDF 0%, var(--light) 100%); border-color: var(--gold-border); }
.wie-detail-num { font-family: var(--font-mono); font-size: 12px; font-weight: 700; color: var(--gold); letter-spacing: 0.12em; margin-bottom: 8px; }
.wie-detail h3 { font-size: 22px; font-weight: 700; color: var(--charcoal); margin: 0 0 10px; letter-spacing: -0.02em; }
.wie-detail p { font-size: 14.5px; color: var(--slate); margin: 0; line-height: 1.6; }
.wie-detail .wie-badges { margin-top: 16px; }
.wie-detail .wie-checklist { margin-top: 16px; }

@media (max-width: 860px) {
  .wie-detail { grid-template-columns: 1fr; gap: 24px; }
  .wie-detail.flip .wie-detail-copy { order: 1; }
  .wie-detail.flip .wie-detail-visual { order: 2; }
}

/* ===== Animated visual cards ===== */
.av-card {
  border-radius: var(--radius-lg); padding: 24px;
  background: rgba(12,31,26,0.06); border: 1px solid rgba(12,31,26,0.08);
  display: flex; flex-direction: column; gap: 12px;
}
.av-head { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); margin-bottom: 4px; }

/* Anzeigen bars */
.av-row { display: grid; grid-template-columns: 80px 1fr 40px; gap: 10px; align-items: center; animation: rowSlide .5s ease backwards; }
.av-name { font-size: 12px; font-weight: 600; color: var(--charcoal); }
.av-bar-wrap { height: 8px; background: rgba(0,0,0,0.05); border-radius: 99px; overflow: hidden; }
.av-bar { height: 100%; width: 0; border-radius: 99px; background: var(--c, var(--gold)); animation: barGrow 1.2s cubic-bezier(0.4,0,0.2,1) forwards; }
@keyframes barGrow { to { width: var(--w); } }
.av-val { font-family: var(--font-mono); font-size: 12px; font-weight: 700; text-align: right; }

/* Funnel */
.funnel { display: flex; flex-direction: column; gap: 8px; align-items: center; }
.funnel-step { width: 100%; display: flex; align-items: center; gap: 16px; animation: rowSlide .5s ease backwards; }
.funnel-bar { height: 28px; border-radius: 8px; background: linear-gradient(90deg, var(--gold), var(--gold-deep)); opacity: 0.7; transition: opacity .25s; min-width: 20px; }
.funnel-step:hover .funnel-bar { opacity: 1; }
.funnel-info { display: flex; justify-content: space-between; flex: 1; }
.funnel-label { font-size: 12px; color: var(--slate); }
.funnel-val { font-family: var(--font-mono); font-size: 12px; font-weight: 700; color: var(--charcoal); }

/* Qualify checks */
.qualify-row { display: flex; align-items: center; gap: 12px; padding: 10px 14px; border-radius: 10px; background: rgba(45,155,106,0.06); border: 1px solid rgba(45,155,106,0.12); animation: rowSlide .5s ease backwards; transition: border-color .25s, transform .25s; }
.qualify-row:hover { border-color: rgba(45,155,106,0.3); transform: translateX(4px); }
.qualify-check { color: var(--green); flex: 0 0 16px; }
.qualify-label { font-size: 13px; font-weight: 600; color: var(--charcoal); flex: 1; }
.qualify-status { font-family: var(--font-mono); font-size: 11px; color: var(--green); font-weight: 600; }

/* Übergabe candidates */
.uebergabe-row { display: flex; align-items: center; gap: 14px; padding: 12px 14px; border-radius: 10px; background: rgba(0,0,0,0.03); border: 1px solid rgba(0,0,0,0.05); animation: rowSlide .5s ease backwards; transition: border-color .25s, transform .25s; }
.uebergabe-row:hover { border-color: var(--gold-border); transform: translateX(4px); }
.ub-avatar { width: 36px; height: 36px; border-radius: 99px; background: linear-gradient(135deg, var(--gold-soft), rgba(212,182,106,0.25)); display: grid; place-items: center; font-weight: 700; font-size: 13px; color: var(--gold-deep); }
.ub-name { font-size: 13px; font-weight: 600; color: var(--charcoal); }
.ub-status { font-size: 11px; color: var(--slate); }
.ub-match { margin-left: auto; font-family: var(--font-mono); font-size: 12px; color: var(--slate); }
.ub-match span { color: var(--gold); font-weight: 700; font-size: 16px; }

/* Garantie visual card */
.garantie-card { text-align: center; align-items: center; padding: 32px; background: linear-gradient(180deg, rgba(212,182,106,0.08) 0%, rgba(212,182,106,0.02) 100%); border-color: var(--gold-border); }
.garantie-shield { color: var(--gold); margin-bottom: 8px; animation: shieldPulse 2.4s ease-in-out infinite; }
@keyframes shieldPulse { 0%,100% { transform: scale(1); } 50% { transform: scale(1.06); } }
.garantie-text { font-family: var(--font); font-size: 20px; font-weight: 700; color: var(--charcoal); letter-spacing: -0.02em; }
.garantie-sub { font-size: 13px; color: var(--slate); line-height: 1.5; max-width: 280px; }
.garantie-sig { margin-top: 8px; }
.sig-path { stroke-dasharray: 240; stroke-dashoffset: 240; animation: sigDraw 2.4s cubic-bezier(0.65,0,0.35,1) 0.4s forwards; }
.sig-base { stroke-dasharray: 120; stroke-dashoffset: 120; animation: sigDraw 0.8s ease 2.6s forwards; opacity: 0.5; }
@keyframes sigDraw { to { stroke-dashoffset: 0; } }

@keyframes rowSlide { from { opacity: 0; transform: translateX(8px); } to { opacity: 1; transform: translateX(0); } }

/* ===== Wie-Grid (recruiting process deep dive) ===== */
.wie-grid {
  display: flex; flex-direction: column; gap: 18px; margin-top: 48px;
}
.wie-step {
  display: grid; grid-template-columns: 56px 1fr; gap: 22px;
  padding: 28px 30px; border-radius: var(--radius-lg);
  background: var(--light); border: 1px solid var(--line-light-s);
  transition: border-color .25s, transform .25s, box-shadow .25s;
}
.wie-step:hover { border-color: var(--gold-border); transform: translateY(-2px); box-shadow: 0 12px 32px rgba(0,0,0,0.06); }
.wie-step.highlight { background: linear-gradient(180deg, #FAF6ED 0%, var(--light) 100%); border-color: var(--gold-border); }
.wie-num { font-family: var(--font-mono); font-size: 14px; font-weight: 700; color: var(--gold); width: 42px; height: 42px; border-radius: 12px; background: var(--gold-soft); display: grid; place-items: center; }
.wie-step h4 { font-size: 18px; font-weight: 600; color: var(--charcoal); margin: 0 0 8px; letter-spacing: -0.01em; }
.wie-step p { font-size: 14.5px; color: var(--slate); margin: 0; line-height: 1.6; }
.wie-badges { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 14px; }
.wie-badges span { font-family: var(--font-mono); font-size: 11px; padding: 6px 10px; background: rgba(0,0,0,0.04); border: 1px solid rgba(0,0,0,0.06); border-radius: 8px; color: var(--slate); letter-spacing: 0.04em; }
.wie-checklist { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-top: 14px; font-size: 13px; color: var(--charcoal); font-weight: 500; }
.wie-checklist div { display: flex; gap: 8px; align-items: center; }
.wie-checklist svg { color: var(--gold); flex: 0 0 15px; }
.wie-guarantee-badge { display: inline-flex; align-items: center; gap: 8px; margin-top: 14px; padding: 10px 16px; border-radius: 99px; background: var(--gold-soft); border: 1px solid var(--gold-border); font-size: 13px; font-weight: 600; color: var(--gold-deep); }
.wie-guarantee-badge svg { width: 16px; height: 16px; }

/* Zielgruppen grid */
.zg-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-top: 48px; }
.zg-card { padding: 28px; border-radius: var(--radius-lg); background: var(--light); border: 1px solid var(--line-light-s); display: flex; flex-direction: column; gap: 12px; transition: border-color .25s, transform .25s; }
.zg-card:hover { border-color: var(--gold-border); transform: translateY(-3px); }
.zg-icon { width: 40px; height: 40px; border-radius: 12px; background: var(--gold-soft); color: var(--gold); display: grid; place-items: center; }
.zg-card h4 { font-size: 17px; font-weight: 600; color: var(--charcoal); margin: 0; }
.zg-card p { font-size: 13.5px; color: var(--slate); margin: 0; line-height: 1.55; }
@media (max-width: 960px) { .zg-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .zg-grid { grid-template-columns: 1fr; } .wie-step { grid-template-columns: 1fr; gap: 14px; } .wie-checklist { grid-template-columns: 1fr; } }

/* Zusatz (KA + BF ganz unten) */
.zusatz-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 48px; }
.zusatz-card { padding: 32px; border-radius: var(--radius-xl); background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.10); display: flex; flex-direction: column; gap: 16px; transition: border-color .25s, transform .25s; }
.zusatz-card:hover { border-color: var(--gold-border); transform: translateY(-3px); }
.zusatz-mono { width: 40px; height: 40px; border-radius: 10px; display: grid; place-items: center; font-weight: 700; font-size: 14px; font-family: var(--font-mono); }
.zusatz-card h4 { font-size: 20px; font-weight: 600; color: var(--ivory); margin: 0; letter-spacing: -0.01em; }
.zusatz-card p { font-size: 14px; color: rgba(245,241,234,0.65); margin: 0; line-height: 1.55; }
.zusatz-card ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 8px; }
.zusatz-card li { display: flex; gap: 8px; font-size: 13px; color: rgba(245,241,234,0.7); font-weight: 500; align-items: center; }
.zusatz-card li svg { flex: 0 0 15px; }
@media (max-width: 760px) { .zusatz-grid { grid-template-columns: 1fr; } }

/* ===== Footer ===== */
.footer { border-top: 1px solid rgba(255,255,255,0.08); padding: 60px 0 32px; color: rgba(245,241,234,0.45); font-size: 13px; font-weight: 500; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 40px; }
.footer h5 { color: var(--ivory); font-weight: 600; 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(--ivory); }
.footer p { max-width: 300px; line-height: 1.55; }
.footer-bottom { margin-top: 36px; padding-top: 20px; border-top: 1px solid var(--line-dark); display: flex; justify-content: space-between; align-items: center; font-size: 12px; font-weight: 500; gap: 12px; }
@media (max-width: 760px) { .footer-grid { grid-template-columns: 1fr 1fr; } .footer-bottom { flex-direction: column; align-items: flex-start; } }

/* ===== Legal pages ===== */
.legal-hero { padding: 96px 0 48px; }
.legal-meta { margin-top: 12px; color: var(--slate); font-size: 13px; font-weight: 500; }
.legal-content { max-width: 780px; }
.legal-block { padding: 24px 0; border-top: 1px solid var(--line-dark); }
.legal-block:first-child { border-top: none; padding-top: 0; }
.legal-content h2 { font-weight: 600; font-size: 20px; margin: 0 0 12px; color: var(--ivory); }
.legal-content h3 { font-weight: 600; font-size: 16px; margin: 20px 0 8px; color: var(--ivory); }
.legal-content p, .legal-content ul { color: rgba(245,241,234,0.6); font-size: 15px; line-height: 1.7; margin: 0 0 12px; font-weight: 500; }
.legal-content ul { padding-left: 20px; }
.legal-content li { margin: 4px 0; }
.legal-content a { color: var(--gold); border-bottom: 1px solid var(--gold-border); }
.legal-content a:hover { border-bottom-color: var(--gold); }

/* ===== Mobile ===== */
@media (max-width: 640px) {
  .container { padding: 0 18px; }
  .sec { padding: 72px 0; }
  .hero { padding: 56px 0 44px; }
  .header-inner { height: 60px; }
  .wordmark { font-size: 16px; }
  .header-cta .btn-outline { display: none; }
  .hero-trust { gap: 16px; }
  .beweis-bar { gap: 32px; animation-duration: 26s; }
  .beweis-item { font-size: 16px; }
  .sec-num { font-size: 56px; }
  .gold-line { margin-bottom: 20px; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
}
