/* ============================================================
   LOGIKFUSION WEBSITE — styles.css
   Tokens come from colors_and_type.css
   ============================================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  background: var(--bg-page);
  color: var(--fg-1);
  min-height: 100vh;
}

a { color: inherit; text-decoration: none; }
img { display: block; }
button { font-family: inherit; cursor: pointer; }
ul { list-style: none; }

/* ── Utility ── */
.yellow { color: var(--lf-yellow); }
.lf-container {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 32px;
}
.lf-container--narrow { max-width: var(--container-narrow); }

.section { padding: 120px 0; }

/* Section rhythm variants */
.section--light {
  background: var(--lf-gray-50);
}
.section--dark {
  background: var(--lf-dark);
}

/* Light section overrides for text colors */
.section--light .bp-title { color: var(--lf-gray-900); }
.section--light .bp-eyebrow { background: var(--lf-blue); color: #fff; }
.section--light .bp-dot { background: #fff; box-shadow: none; }
.section--light .blueprint-section-header .bp-eyebrow { color: #fff; }

/* Light cards on blueprint bg — keep dark card style for process */
.lf-blueprint .light-card {
  background: #0D0F14;
  border: 1px solid rgba(250,204,21,.12);
  border-left: 4px solid #FACC15;
  box-shadow: 0 24px 60px rgba(0,0,0,.35);
}
.lf-blueprint .light-card:hover {
  box-shadow: 0 32px 72px rgba(0,0,0,.45);
}
.lf-blueprint .light-card__step { color: var(--lf-yellow); }
.lf-blueprint .light-card__tag {
  background: rgba(250,204,21,.15);
  color: #FACC15;
}
.lf-blueprint .light-card__title { color: #fff; }
.lf-blueprint .light-card__body { color: rgba(255,255,255,.7); }

/* Dark section overrides */
.section--dark .bp-title { color: #fff; }
.section--dark .pricing-sub { color: rgba(255,255,255,.75); }


/* ══════════════════════════════════════════════════════════
   HEADER
══════════════════════════════════════════════════════════ */
.site-header {
  position: fixed;
  top: 16px;
  left: 0;
  right: 0;
  z-index: 100;
  pointer-events: none;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  pointer-events: none;
}

/* Logo capsule */
.header-logo {
  pointer-events: auto;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #0D0F14;
  padding: 12px 22px 12px 14px;
  border-radius: 999px;
  box-shadow: 0 12px 32px rgba(0,0,0,.4);
  transition: transform 150ms var(--ease-out);
}
.header-logo:hover { transform: translateY(-1px); }

.header-logo__monogram {
  width: 32px; height: 32px;
  border-radius: 999px;
  background: #FACC15;
  color: #0D0F14;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  line-height: 1;
  flex-shrink: 0;
}

.header-logo__wordmark {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 24px;
  letter-spacing: -0.02em;
  color: #fff;
}

/* Nav capsule */
.header-nav {
  pointer-events: auto;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: #0D0F14;
  padding: 6px;
  border-radius: 999px;
  box-shadow: 0 12px 32px rgba(0,0,0,.4);
}

.header-nav__link {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fff;
  padding: 10px 16px;
  border-radius: 999px;
  transition: all 150ms var(--ease-out);
}
.header-nav__link:hover {
  background: rgba(250,204,21,.12);
  color: #FACC15;
}

/* CTA capsule */
.header-cta {
  pointer-events: auto;
  background: #FACC15;
  color: #0D0F14;
  border: none;
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 14px 22px;
  border-radius: 999px;
  box-shadow: 0 12px 32px rgba(250,204,21,.45);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: transform 150ms var(--ease-out);
}
.header-cta:hover { transform: translateY(-1px); }

/* Burger — hidden on desktop */
.header-burger {
  display: none;
  pointer-events: auto;
  flex-direction: column;
  gap: 5px;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  background: #0D0F14;
  border: none;
  border-radius: 999px;
  box-shadow: 0 8px 24px rgba(0,0,0,.4);
}
.header-burger span {
  display: block;
  width: 18px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all 200ms var(--ease-out);
}

/* Mobile nav drawer */
.mobile-nav {
  display: none;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  background: #0D0F14;
  margin: 10px 16px 0;
  padding: 20px;
  border-radius: 16px;
  box-shadow: 0 24px 60px rgba(0,0,0,.5);
  border: 1px solid rgba(250,204,21,.2);
  pointer-events: auto;
}
.mobile-nav.is-open { display: flex; }
.mobile-nav__link {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fff;
  padding: 8px 0;
}
.mobile-nav__link:hover { color: #FACC15; }


/* ══════════════════════════════════════════════════════════
   HERO
══════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  overflow: hidden;
  padding-top: 160px;
  padding-bottom: 60px;
  min-height: auto;
  color: #fff;
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(60px);
}

.hero-inner { position: relative; }

/* Eyebrow pill */
.eyebrow-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #FACC15;
  background: #0D0F14;
  padding: 10px 18px;
  border-radius: 999px;
  box-shadow: 0 8px 24px rgba(0,0,0,.35);
  margin-bottom: 28px;
}
.eyebrow-pill__dot {
  width: 8px; height: 8px;
  border-radius: 999px;
  background: #FACC15;
  box-shadow: 0 0 10px #FACC15;
  flex-shrink: 0;
}

/* Headline */
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(56px, 9vw, 120px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.035em;
  text-transform: uppercase;
  color: #fff;
  max-width: 1080px;
}

/* Sub copy */
.hero-sub {
  font-size: 22px;
  line-height: 1.5;
  color: rgba(255,255,255,.95);
  margin-top: 20px;
  max-width: 620px;
  background: #000;
  border-radius: 8px;
  padding: 14px 18px;
}
.hero-sub strong { color: #fff; font-weight: 700; }

/* CTA row */
.hero-cta-row {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-top: 28px;
  flex-wrap: wrap;
}

/* Social proof */
.social-proof-stack { display: flex; align-items: center; gap: 14px; }
.avatar-stack { display: flex; }
.avatar {
  width: 38px; height: 38px;
  border-radius: 999px;
  border: 2px solid #1f6fdb;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 12px;
}
.avatar-stack .avatar + .avatar { margin-left: -10px; }
.avatar--yellow { background: #FACC15; color: #0D0F14; font-size: 11px; }
.avatar-lg { width: 44px; height: 44px; font-size: 14px; }

.stars { color: #FACC15; font-size: 14px; letter-spacing: 0.06em; }
.social-proof-label {
  font-family: var(--font-mono);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.7);
  margin-top: 2px;
}

/* Floating stat card */
.floating-stat {
  position: absolute;
  bottom: 60px;
  right: 0;
  background: #0D0F14;
  border: 1px solid rgba(250,204,21,.18);
  border-radius: 16px;
  padding: 24px 28px;
  box-shadow: 0 24px 60px rgba(0,0,0,.45);
  max-width: 280px;
}
.floating-stat__number {
  font-family: var(--font-display);
  font-size: 56px;
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1;
  color: #FACC15;
}
.floating-stat__number--icon {
  height: 56px;
  display: flex;
  align-items: center;
}
.floating-stat__label {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(250,204,21,.85);
  margin-top: 6px;
}

.floating-stat--inline {
  position: static;
  box-shadow: none;
  max-width: 200px;
  padding: 18px 22px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  text-align: center;
}

.hero-stat-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 32px;
}

/* Dashed tearoff line */
.hero-tearoff {
  position: absolute;
  left: 32px; right: 32px; bottom: 28px;
  border-top: 1px dashed rgba(255,255,255,.25);
}

/* Highlight box */
mark.highlight-box {
  display: inline-block;
  background: #FACC15;
  color: #0D0F14;
  padding: 0.06em 0.18em 0.1em;
  line-height: 1;
  transform: skewX(-2deg);
  box-shadow: 0 6px 0 0 rgba(0,0,0,.15);
  white-space: nowrap;
  border-radius: 0;
  font-style: normal;
  vertical-align: baseline;
}

/* ══════════════════════════════════════════════════════════
   LF-FLIP — Split-Flap (Solari) Word Cycler
   Same visual identity as .highlight-box (yellow card,
   dark text, skew, drop shadow), but cycles through words
   with a 3D flip animation driven by main.js initFlipWord().
══════════════════════════════════════════════════════════ */
.lf-flip {
  position: relative;
  display: inline-block;
  vertical-align: baseline;
  line-height: 1;
  white-space: nowrap;
  transform: skewX(-2deg);
}
.lf-flip__measure {
  display: inline-block;
  visibility: hidden;
  padding: 0.06em 0.18em 0.1em;
  line-height: 1;
  transition: min-width 220ms cubic-bezier(.4,0,.2,1);
}
.lf-flip__stage {
  position: absolute;
  inset: 0;
  display: block;
  perspective: 800px;
  transform-style: preserve-3d;
}
.lf-flip__card {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.06em 0.18em 0.1em;
  background: #FACC15;
  color: #0D0F14;
  line-height: 1;
  font-style: normal;
  box-shadow: 0 6px 0 0 rgba(0,0,0,.15);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  transform-origin: 50% 50%;
  will-change: transform;
}
.lf-flip__card--next {
  transform: rotateX(90deg);
}
/* Active animation state, toggled by JS */
.lf-flip.is-flipping .lf-flip__card--current {
  animation: lf-flip-out 300ms ease-in forwards;
}
.lf-flip.is-flipping .lf-flip__card--next {
  animation: lf-flip-in 300ms ease-out 300ms forwards;
}
@keyframes lf-flip-out {
  0%   { transform: rotateX(0deg); }
  100% { transform: rotateX(-90deg); }
}
@keyframes lf-flip-in {
  0%   { transform: rotateX(90deg); }
  100% { transform: rotateX(0deg); }
}

/* Reduced motion: no 3D flip, soft crossfade only */
@media (prefers-reduced-motion: reduce) {
  .lf-flip__card--next { transform: none; opacity: 0; }
  .lf-flip.is-flipping .lf-flip__card--current {
    animation: lf-fade-out 250ms ease-in forwards;
  }
  .lf-flip.is-flipping .lf-flip__card--next {
    animation: lf-fade-in 250ms ease-out forwards;
  }
  @keyframes lf-fade-out { to { opacity: 0; } }
  @keyframes lf-fade-in  { to { opacity: 1; } }
}


/* ══════════════════════════════════════════════════════════
   MARQUEE
══════════════════════════════════════════════════════════ */
.marquee-wrap {
  background: #0D0F14;
  border-top: 1px solid rgba(250,204,21,.25);
  border-bottom: 1px solid rgba(250,204,21,.25);
  padding: 22px 0;
  overflow: hidden;
  white-space: nowrap;
}

.marquee-track {
  display: inline-flex;
  animation: lf-marquee 40s linear infinite;
}

@keyframes lf-marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.marquee-items {
  display: inline-flex;
  align-items: center;
  gap: 48px;
  padding-right: 48px;
}

.marquee-item {
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 16px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #FACC15;
}

.marquee-sep { color: rgba(250,204,21,.5); font-size: 14px; }


/* ══════════════════════════════════════════════════════════
   BLUEPRINT SECTIONS (shared)
══════════════════════════════════════════════════════════ */
.blueprint-section-header {
  text-align: left;
  max-width: 900px;
  margin-bottom: 64px;
}

.bp-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #FACC15;
  background: #0D0F14;
  padding: 10px 18px;
  border-radius: 999px;
  box-shadow: 0 8px 24px rgba(0,0,0,.35);
  margin-bottom: 16px;
}
.bp-dot {
  width: 8px; height: 8px;
  border-radius: 999px;
  background: #FACC15;
  box-shadow: 0 0 10px #FACC15;
  flex-shrink: 0;
}

.bp-title {
  font-family: var(--font-display);
  font-size: clamp(40px, 6vw, 76px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.025em;
  text-transform: uppercase;
  color: #fff;
}


/* ══════════════════════════════════════════════════════════
   DARK CARDS
══════════════════════════════════════════════════════════ */
.dark-card {
  background: #0D0F14;
  color: #fff;
  border-radius: 16px;
  padding: 28px;
  border: 1px solid rgba(250,204,21,.12);
  box-shadow: 0 24px 60px rgba(0,0,0,.35);
  transition: transform 200ms var(--ease-out);
}
.dark-card:hover { transform: translateY(-4px); }

.dark-card__tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #FACC15;
  color: #0D0F14;
  padding: 6px 12px;
  border-radius: 6px;
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.tag-dot { width: 6px; height: 6px; border-radius: 999px; background: #0D0F14; }

.dark-card__title {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 0 0 10px;
  color: #fff;
}

.dark-card__body {
  font-size: 14.5px;
  line-height: 1.55;
  color: rgba(255,255,255,.7);
}

.dark-card__stat {
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px dashed rgba(255,255,255,.15);
  display: flex;
  align-items: baseline;
  gap: 10px;
}
.stat-number {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 32px;
  color: #FACC15;
  letter-spacing: -0.02em;
  line-height: 1;
}
.stat-label {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
}

/* Grid layouts */
.cards-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.cards-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.cards-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }

/* Process cards: 2-col variant for the 2-step "Ablauf" section */
.process-cards--2 { max-width: 920px; margin-left: auto; margin-right: auto; }
.process-cards--3 { max-width: 1200px; margin-left: auto; margin-right: auto; }


/* ══════════════════════════════════════════════════════════
   FEATURES (alternating 2-col)
══════════════════════════════════════════════════════════ */
.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  margin-top: 56px;
}
.feature-row--reverse { direction: rtl; }
.feature-row--reverse .feature-row__text,
.feature-row--reverse .feature-row__card { direction: ltr; }

.feature-headline {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.025em;
  text-transform: uppercase;
  color: #fff;
  margin: 0 0 20px;
}

.feature-content-box {
  background: #000;
  border-radius: 8px;
  padding: 18px;
}

.feature-body {
  font-size: 17px;
  line-height: 1.6;
  color: rgba(255,255,255,.95);
  margin: 0 0 16px;
}

.feature-bullets {
  list-style: none;
  padding: 0;
  margin: 0;
}
.feature-bullets li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 8px 0;
  font-size: 16px;
  color: #fff;
}

.bullet-check {
  width: 22px; height: 22px;
  border-radius: 999px;
  background: #FACC15;
  color: #0D0F14;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
  font-size: 13px;
  font-weight: 800;
}


/* ══════════════════════════════════════════════════════════
   SOCIAL PROOF
══════════════════════════════════════════════════════════ */
.stats-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 56px;
  margin-bottom: 56px;
}

.stat-tile {
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(250,204,21,.18);
  border-radius: 14px;
  padding: 28px;
  text-align: left;
}
.stat-tile__number {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 52px;
  letter-spacing: -0.04em;
  line-height: 1;
  color: #FACC15;
}
.stat-tile__label {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
  margin-top: 10px;
}

.testimonial-card {
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(250,204,21,.18);
  border-radius: 16px;
  padding: 40px;
  max-width: 760px;
}
.testimonial-badge {
  display: inline-flex;
  background: #FACC15;
  color: #0D0F14;
  padding: 6px 12px;
  border-radius: 6px;
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.testimonial-quote {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 600;
  line-height: 1.35;
  color: #fff;
  letter-spacing: -0.01em;
  font-style: normal;
}
.testimonial-author {
  margin-top: 24px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.testimonial-name {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
}
.testimonial-role { color: rgba(255,255,255,.6); font-weight: 400; }
.testimonial-disclaimer {
  font-family: var(--font-mono);
  font-size: 10px;
  color: rgba(255,255,255,.4);
  margin-top: 4px;
  letter-spacing: 0.1em;
}


/* ══════════════════════════════════════════════════════════
   PRICING
══════════════════════════════════════════════════════════ */
.pricing-sub {
  font-size: 18px;
  color: rgba(255,255,255,.78);
  max-width: 600px;
  margin-top: 24px;
  line-height: 1.6;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  align-items: stretch;
  margin-top: 48px;
}

.pricing-card {
  background: #0D0F14;
  color: #fff;
  border: 1px solid rgba(250,204,21,.18);
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 24px 60px rgba(0,0,0,.35);
  position: relative;
  display: flex;
  flex-direction: column;
}
.pricing-card--featured {
  border: 2px solid #FACC15;
  box-shadow: 0 24px 60px rgba(250,204,21,.18);
  transform: translateY(-8px);
}

.pricing-card__badge {
  position: absolute;
  top: -14px;
  left: 24px;
  background: #FACC15;
  color: #0D0F14;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  padding: 6px 12px;
  border-radius: 6px;
  text-transform: uppercase;
}

.pricing-card__name {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #FACC15;
  margin-bottom: 14px;
}
.pricing-card__desc {
  font-size: 14px;
  color: rgba(255,255,255,.65);
  margin-bottom: 24px;
  min-height: 40px;
  line-height: 1.5;
}

.pricing-card__price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 6px;
}
.pricing-card__amount {
  font-family: var(--font-display);
  font-size: 56px;
  font-weight: 700;
  letter-spacing: -0.04em;
  color: #FACC15;
  line-height: 1;
}
.pricing-card__period { font-size: 14px; color: rgba(255,255,255,.5); }

.pricing-card__tag {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  color: #0D0F14;
  background: #FACC15;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 4px;
  margin-bottom: 24px;
}

.pricing-card__cta {
  width: 100%;
  background: #FACC15;
  color: #0D0F14;
  border: none;
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 14px 22px;
  border-radius: 8px;
  transition: transform 150ms var(--ease-out), box-shadow 150ms var(--ease-out);
}
.pricing-card__cta:hover { transform: translateY(-1px); }
.pricing-card__cta--featured { box-shadow: 0 12px 32px rgba(250,204,21,.4); }

.pricing-card__divider {
  height: 1px;
  background: rgba(255,255,255,.08);
  margin: 24px 0;
}
.pricing-card__features { flex: 1; }
.pricing-card__features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 7px 0;
  font-size: 14px;
  color: rgba(255,255,255,.85);
}
.check-yellow { color: #FACC15; font-weight: 800; margin-top: 1px; }


/* ══════════════════════════════════════════════════════════
   PROBLEM SECTION
══════════════════════════════════════════════════════════ */
.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 8px;
}

.problem-card {
  background: #fff;
  border: 1px solid var(--lf-gray-200);
  border-top: 4px solid var(--lf-blue);
  border-radius: 14px;
  padding: 32px 28px;
  box-shadow: var(--shadow-md);
  transition: transform 200ms var(--ease-out), box-shadow 200ms var(--ease-out);
}

.problem-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.problem-icon {
  font-size: 28px;
  margin-bottom: 16px;
  display: block;
}

.problem-title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--lf-gray-900);
  margin-bottom: 12px;
  line-height: 1.3;
}

.problem-body {
  font-size: 14.5px;
  line-height: 1.65;
  color: var(--lf-gray-600);
}

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

/* ══════════════════════════════════════════════════════════
   PARTNER COMPARISON SECTION
══════════════════════════════════════════════════════════ */
.partner-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  align-items: center;
  margin-top: 8px;
}

.partner-lead {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.5vw, 26px);
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.01em;
  color: #fff;
  margin-bottom: 20px;
}

.partner-body {
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255,255,255,.75);
  margin-bottom: 16px;
}

.partner-cta { margin-top: 28px; }

.partner-compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.compare-col {
  border-radius: 14px;
  padding: 24px;
  border: 1px solid rgba(255,255,255,.08);
}

.compare-col--no {
  background: rgba(239,68,68,.06);
  border-color: rgba(239,68,68,.2);
}

.compare-col--yes {
  background: rgba(250,204,21,.06);
  border-color: rgba(250,204,21,.25);
}

.compare-col__header {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: #fff;
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.compare-icon {
  width: 24px; height: 24px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 800;
  flex-shrink: 0;
}

.compare-icon--no  { background: rgba(239,68,68,.2);  color: #F87171; }
.compare-icon--yes { background: rgba(250,204,21,.2);  color: #FACC15; }

.compare-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.compare-list li {
  font-size: 13.5px;
  line-height: 1.45;
  color: rgba(255,255,255,.7);
}

.compare-col--no .compare-list li { color: rgba(248,113,113,.85); }
.compare-col--yes .compare-list li { color: rgba(255,255,255,.88); }

/* Process cards 4-col */
.process-cards {
  margin-top: 8px;
}

/* ══════════════════════════════════════════════════════════
   VORTEILE GRID
══════════════════════════════════════════════════════════ */
.vorteile-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 8px;
}

.vorteil-card {
  background: #fff;
  border: 1px solid var(--lf-gray-200);
  border-radius: 14px;
  padding: 28px;
  box-shadow: var(--shadow-md);
  transition: transform 200ms var(--ease-out), box-shadow 200ms var(--ease-out);
}

.vorteil-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.vorteil-icon {
  width: 36px; height: 36px;
  border-radius: 999px;
  background: #FACC15;
  color: #0D0F14;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 800;
  margin-bottom: 16px;
}

.vorteil-title {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--lf-gray-900);
  margin-bottom: 10px;
  line-height: 1.25;
}

.vorteil-body {
  font-size: 14px;
  line-height: 1.6;
  color: var(--lf-gray-600);
}

@media (max-width: 1024px) {
  .partner-grid { grid-template-columns: 1fr; gap: 40px; }
  .vorteile-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .partner-compare { grid-template-columns: 1fr; }
  .vorteile-grid { grid-template-columns: 1fr; }
}

/* ══════════════════════════════════════════════════════════
   FESTPREIS BOX
══════════════════════════════════════════════════════════ */
.festpreis-value-box {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(250,204,21,.25);
  border-radius: 20px;
  overflow: hidden;
  margin-top: 48px;
  box-shadow: 0 24px 60px rgba(0,0,0,.3);
}

.festpreis-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
}

.festpreis-left {
  padding: 48px;
  border-right: 1px solid rgba(255,255,255,.07);
}

.festpreis-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.festpreis-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 16px;
  color: rgba(255,255,255,.88);
  line-height: 1.4;
}

.festpreis-right {
  padding: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.festpreis-cta-box {
  text-align: center;
  max-width: 360px;
  width: 100%;
}

.festpreis-label {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #FACC15;
  margin-bottom: 12px;
}

.festpreis-amount {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 700;
  letter-spacing: -0.04em;
  color: #fff;
  line-height: 1;
  margin-bottom: 16px;
}

.festpreis-sub {
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255,255,255,.6);
  margin-bottom: 28px;
  max-width: 280px;
  margin-inline: auto;
}

.festpreis-btn {
  font-size: 15px;
  padding: 18px 28px;
  display: inline-flex;
  margin-bottom: 16px;
  box-shadow: 0 12px 32px rgba(250,204,21,.35);
}

.festpreis-disclaimer {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.35);
}

@media (max-width: 768px) {
  .festpreis-inner {
    grid-template-columns: 1fr;
  }
  .festpreis-left {
    padding: 32px 24px;
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,.07);
  }
  .festpreis-right {
    padding: 32px 24px;
  }
}

/* ══════════════════════════════════════════════════════════
   FAQ
══════════════════════════════════════════════════════════ */
.faq-list { display: flex; flex-direction: column; gap: 10px; margin-top: 56px; }

.faq-item {
  background: #0D0F14;
  border: 1px solid rgba(250,204,21,.18);
  border-radius: 14px;
  overflow: hidden;
  transition: border-color 200ms var(--ease-out);
}
.faq-item:has(.faq-trigger[aria-expanded="true"]) {
  border-color: rgba(250,204,21,.4);
}

.faq-trigger {
  width: 100%;
  background: transparent;
  border: none;
  padding: 22px 26px;
  text-align: left;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: #fff;
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 600;
}

.faq-icon {
  width: 32px; height: 32px;
  border-radius: 999px;
  background: #FACC15;
  color: #0D0F14;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 18px;
  font-weight: 800;
  transition: transform 200ms var(--ease-out);
  line-height: 1;
}
.faq-trigger[aria-expanded="true"] .faq-icon { transform: rotate(45deg); }

.faq-answer {
  padding: 0 26px 24px;
  font-size: 15px;
  line-height: 1.65;
  color: rgba(255,255,255,.78);
  animation: lf-fade-up 200ms var(--ease-out);
}

@keyframes lf-fade-up {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}


/* ══════════════════════════════════════════════════════════
   FINAL CTA
══════════════════════════════════════════════════════════ */
.final-cta { position: relative; overflow: hidden; }

.final-headline {
  font-family: var(--font-display);
  font-size: clamp(56px, 8vw, 120px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.035em;
  text-transform: uppercase;
  color: #fff;
  margin: 0;
}

.final-sub {
  font-size: 22px;
  line-height: 1.5;
  color: rgba(255,255,255,.95);
  max-width: 620px;
  margin: 32px 0 40px;
  background: #000;
  border-radius: 8px;
  padding: 14px 18px;
}

.final-cta-row {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.final-email-link {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #FACC15;
  background: #0D0F14;
  padding: 20px 24px;
  border: 1px solid #0D0F14;
  border-radius: 999px;
  transition: background 150ms var(--ease-out), border-color 150ms var(--ease-out);
}
.final-email-link:hover { background: #1a1d24; border-color: #1a1d24; }


/* ══════════════════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════════════════ */
.site-footer {
  background: #000;
  color: rgba(255,255,255,.6);
  padding: 64px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand { display: flex; flex-direction: column; gap: 0; }
.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.footer-logo .header-logo__monogram { width: 36px; height: 36px; font-size: 20px; }

.footer-tagline {
  margin-top: 20px;
  font-size: 14px;
  line-height: 1.6;
  max-width: 280px;
}

.footer-socials { display: flex; gap: 12px; margin-top: 24px; }
.footer-social {
  width: 36px; height: 36px;
  border-radius: 8px;
  background: rgba(250,204,21,.1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 200ms var(--ease-out);
}
.footer-social:hover { background: rgba(250,204,21,.2); }
.footer-social img { filter: invert(86%) sepia(77%) saturate(400%) hue-rotate(350deg) brightness(105%); }

.footer-col__heading {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #FACC15;
  margin-bottom: 16px;
}

.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 14px; transition: color 150ms; }
.footer-links a:hover { color: #fff; }

.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
}


/* ══════════════════════════════════════════════════════════
   BUTTONS (shared)
══════════════════════════════════════════════════════════ */
.btn-yellow {
  background: #FACC15;
  color: #0D0F14;
  border: none;
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 15px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 14px 26px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: transform 150ms var(--ease-out), box-shadow 150ms var(--ease-out);
}
.btn-yellow:hover { transform: translateY(-1px); box-shadow: 0 12px 32px rgba(250,204,21,.35); }

.btn-pill { border-radius: 999px; }
.btn-lg { font-size: 16px; padding: 20px 32px; }
.btn-full { width: 100%; justify-content: center; border-radius: 8px; }

.btn-green {
  background: var(--lf-green);
  color: #fff;
  border: none;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 14px 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 8px;
  transition: background 150ms var(--ease-out);
}
.btn-green:hover { background: #0ea672; }

.btn-primary {
  background: var(--lf-blue);
  color: #fff;
  border: none;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 15px;
  padding: 14px 26px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: background 150ms var(--ease-out);
}
.btn-primary:hover { background: var(--lf-blue-light); }


/* ══════════════════════════════════════════════════════════
   MODAL
══════════════════════════════════════════════════════════ */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(13,15,20,.6);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  animation: lf-fade-up 200ms var(--ease-out);
}
.modal-backdrop[hidden] { display: none; }

.modal-box {
  background: #fff;
  border-radius: 16px;
  padding: 40px;
  max-width: 480px;
  width: calc(100% - 32px);
  box-shadow: var(--shadow-xl);
  position: relative;
}

.modal-box--cal {
  padding: 0;
  max-width: 1080px;
  width: calc(100% - 32px);
  height: min(820px, calc(100vh - 64px));
  overflow: hidden;
}
.modal-cal {
  width: 100%;
  height: 100%;
  border-radius: 16px;
  overflow: hidden;
}
.modal-cal iframe { border: 0; width: 100%; height: 100%; display: block; }

.modal-box--cal .modal-close {
  background: #fff;
  box-shadow: var(--shadow-sm);
  top: 12px;
  right: 12px;
  z-index: 2;
}

.modal-close {
  position: absolute;
  top: 16px; right: 16px;
  width: 32px; height: 32px;
  border-radius: 8px;
  background: transparent;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--fg-3);
  transition: background 150ms;
}
.modal-close:hover { background: var(--lf-gray-100); }

.modal-title {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 700;
  margin: 8px 0 6px;
  letter-spacing: -0.01em;
  color: var(--fg-1);
}
.modal-sub { font-size: 14px; color: var(--fg-2); margin-bottom: 24px; line-height: 1.5; }

.modal-form { display: flex; flex-direction: column; gap: 14px; }
.modal-disclaimer {
  font-size: 11px;
  color: var(--fg-3);
  text-align: center;
}

.lf-input {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border-2);
  border-radius: 8px;
  font: 400 15px var(--font-body);
  background: #fff;
  color: var(--fg-1);
  transition: all 200ms var(--ease-out);
}
.lf-input:focus {
  outline: none;
  border-color: var(--lf-blue);
  box-shadow: 0 0 0 3px rgba(37,99,235,.15);
}

.success-icon {
  width: 72px; height: 72px;
  border-radius: 999px;
  background: var(--lf-green-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.modal-step[hidden] { display: none; }


/* ══════════════════════════════════════════════════════════
   EYEBROWS (shared with modal)
══════════════════════════════════════════════════════════ */
.lf-eyebrow-blue {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--lf-blue);
}


/* ══════════════════════════════════════════════════════════
   HERO ENTRANCE ANIMATIONS
══════════════════════════════════════════════════════════ */
@keyframes lf-hero-in {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

.eyebrow-pill       { animation: lf-hero-in 0.6s var(--ease-out) 0ms   both; }
.hero-headline      { animation: lf-hero-in 0.7s var(--ease-out) 80ms  both; }
.hero-sub           { animation: lf-hero-in 0.7s var(--ease-out) 160ms both; }
.hero-cta-row       { animation: lf-hero-in 0.7s var(--ease-out) 240ms both; }
.hero-stat-row      { animation: lf-hero-in 0.7s var(--ease-out) 320ms both; }


/* ══════════════════════════════════════════════════════════
   SCROLL ENTRANCE ANIMATIONS
══════════════════════════════════════════════════════════ */
@keyframes lf-anim-in {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

.anim-child { animation: none; }
.anim-child.is-visible { animation: lf-anim-in 0.55s var(--ease-out) both; }

/* Stagger siblings */
.anim-child.is-visible:nth-child(2) { animation-delay: 80ms; }
.anim-child.is-visible:nth-child(3) { animation-delay: 160ms; }
.anim-child.is-visible:nth-child(4) { animation-delay: 240ms; }


/* ══════════════════════════════════════════════════════════
   LIGHT CARDS (Process section)
══════════════════════════════════════════════════════════ */
.light-card {
  background: #fff;
  border-radius: 16px;
  padding: 32px;
  border: 1px solid var(--lf-gray-200);
  border-left: 4px solid var(--lf-blue);
  box-shadow: var(--shadow-md);
  transition: transform 200ms var(--ease-out), box-shadow 200ms var(--ease-out);
  position: relative;
}
.light-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.light-card__step {
  font-family: var(--font-display);
  font-size: 64px;
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--lf-gray-100);
  position: absolute;
  top: 20px;
  right: 24px;
}

.light-card__tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--lf-blue-pale);
  color: var(--lf-blue);
  padding: 6px 12px;
  border-radius: 6px;
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.tag-dot--blue { background: var(--lf-blue); }

.light-card__title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--lf-gray-900);
  margin: 0 0 10px;
}

.light-card__body {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--lf-gray-600);
}



/* ══════════════════════════════════════════════════════════
   UI WIDGETS (Feature rows)
══════════════════════════════════════════════════════════ */
.ui-widget {
  background: #0D0F14;
  border: 1px solid rgba(250,204,21,.15);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0,0,0,.45), 0 0 0 1px rgba(255,255,255,.04);
}

.ui-widget__header {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 12px 16px;
  background: rgba(255,255,255,.04);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.ui-widget__dot {
  width: 10px; height: 10px;
  border-radius: 999px;
}
.ui-widget__dot--green  { background: #10B981; }
.ui-widget__dot--yellow { background: #FACC15; }
.ui-widget__dot--red    { background: #EF4444; }
.ui-widget__title {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
  margin-left: 6px;
}

.ui-widget__body { padding: 20px; display: flex; flex-direction: column; gap: 16px; }

/* Lead routing widget */
.ui-lead-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  background: rgba(255,255,255,.04);
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,.06);
}
.ui-lead-row--new { border-color: rgba(250,204,21,.3); }

.ui-lead-avatar {
  width: 36px; height: 36px;
  border-radius: 999px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  flex-shrink: 0;
}
.ui-lead-info { flex: 1; min-width: 0; }
.ui-lead-name {
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 8px;
}
.ui-lead-detail {
  font-size: 11px;
  color: rgba(255,255,255,.45);
  margin-top: 2px;
}
.ui-lead-badge {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 2px 7px;
  border-radius: 4px;
}
.ui-lead-badge--hot { background: rgba(239,68,68,.2); color: #F87171; }
.ui-lead-time {
  font-family: var(--font-mono);
  font-size: 12px;
  color: #FACC15;
  font-weight: 700;
  flex-shrink: 0;
}

.ui-pipeline {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 12px;
  background: rgba(255,255,255,.03);
  border-radius: 8px;
}
.ui-pipeline__step {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.3);
  padding: 4px 8px;
  border-radius: 4px;
}
.ui-pipeline__step--done  { color: #10B981; background: rgba(16,185,129,.12); }
.ui-pipeline__step--active { color: #FACC15; background: rgba(250,204,21,.15);
  animation: lf-pulse-bg 1.5s ease-in-out infinite; }
@keyframes lf-pulse-bg {
  0%, 100% { background: rgba(250,204,21,.15); }
  50%       { background: rgba(250,204,21,.28); }
}
.ui-pipeline__arrow { color: rgba(255,255,255,.2); font-size: 12px; }

/* Document widget */
.ui-doc-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  background: rgba(255,255,255,.04);
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,.06);
}
.ui-doc-icon {
  width: 36px; height: 44px;
  background: rgba(37,99,235,.25);
  border: 1px solid rgba(37,99,235,.4);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 700;
  color: #60A5FA;
  letter-spacing: 0.05em;
  flex-shrink: 0;
}
.ui-doc-info { flex: 1; min-width: 0; }
.ui-doc-name {
  font-size: 12px;
  font-weight: 600;
  color: #fff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.ui-doc-scan {
  height: 3px;
  background: rgba(255,255,255,.08);
  border-radius: 2px;
  margin-top: 6px;
  overflow: hidden;
}
.ui-scan-bar {
  display: block;
  height: 100%;
  width: 70%;
  background: linear-gradient(90deg, var(--lf-blue), #60A5FA);
  border-radius: 2px;
  animation: lf-scan 2s var(--ease-in-out) infinite;
}
@keyframes lf-scan {
  0%   { width: 0%; }
  60%  { width: 100%; }
  100% { width: 100%; }
}
.ui-doc-status {
  width: 24px; height: 24px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  flex-shrink: 0;
}
.ui-doc-status--done { background: rgba(16,185,129,.2); color: #10B981; }

.ui-doc-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.ui-field {
  background: rgba(255,255,255,.04);
  border-radius: 8px;
  padding: 8px 10px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.ui-field__key {
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.35);
}
.ui-field__val {
  font-size: 13px;
  font-weight: 700;
  color: #fff;
}
.ui-field__val--green { color: #10B981; }

/* Shared widget stat badge */
.ui-stat-badge {
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
  background: rgba(250,204,21,.12);
  border: 1px solid rgba(250,204,21,.25);
  border-radius: 8px;
  padding: 8px 14px;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: #FACC15;
  letter-spacing: -0.02em;
  align-self: flex-start;
}
.ui-stat-badge span {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(250,204,21,.65);
}


/* ══════════════════════════════════════════════════════════
   TESTIMONIAL UPGRADE
══════════════════════════════════════════════════════════ */
.testimonial-quotemark {
  font-family: var(--font-display);
  font-size: 96px;
  font-weight: 700;
  line-height: 0.7;
  color: #FACC15;
  margin-bottom: 12px;
  display: block;
  opacity: 0.9;
}
.testimonial-stars {
  color: #FACC15;
  font-size: 13px;
  letter-spacing: 0.06em;
  margin-top: 4px;
}
.testimonial-avatar {
  width: 48px; height: 48px;
  border-radius: 999px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  flex-shrink: 0;
  box-shadow: 0 8px 20px rgba(0,0,0,.35);
}


/* ══════════════════════════════════════════════════════════
   PRICING ON DARK — card adjustments
══════════════════════════════════════════════════════════ */
.section--dark .pricing-card {
  background: rgba(255,255,255,.04);
  border-color: rgba(255,255,255,.1);
}
.section--dark .pricing-card--featured {
  background: rgba(37,99,235,.15);
  border-color: #FACC15;
}
.section--dark .pricing-card:hover {
  background: rgba(255,255,255,.07);
  transform: translateY(-2px);
}
.section--dark .pricing-card--featured:hover {
  background: rgba(37,99,235,.2);
}


/* ══════════════════════════════════════════════════════════
   HERO GUIDE LINE (under CTA: credibility microcopy)
══════════════════════════════════════════════════════════ */
.hero-guide-line {
  position: relative;
  margin: 0;
  padding: 14px 20px 14px 30px;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.5;
  color: rgba(255,255,255,.95);
  background: rgba(13,15,20,.72);
  border: 1px solid rgba(250,204,21,.28);
  border-radius: 10px;
  max-width: 480px;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.hero-guide-line strong {
  color: var(--lf-yellow);
  font-weight: 600;
}
.hero-guide-line::before {
  content: "";
  position: absolute;
  left: 14px;
  top: 23px;
  width: 7px;
  height: 7px;
  background: var(--lf-yellow);
  border-radius: 50%;
  box-shadow: 0 0 12px rgba(250,204,21,.7);
}

/* ══════════════════════════════════════════════════════════
   COMPARE COLUMN SUBTITLE (under the column header)
══════════════════════════════════════════════════════════ */
.compare-col__sub {
  margin: 0 0 14px;
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.55;
  color: rgba(255,255,255,.6);
}
.compare-col--no .compare-col__sub { color: rgba(248,113,113,.7); }
.compare-col--yes .compare-col__sub { color: rgba(255,255,255,.7); }

/* ══════════════════════════════════════════════════════════
   COMPARE CTA ROW (in-section mini CTA after the columns)
══════════════════════════════════════════════════════════ */
.compare-cta-row {
  display: flex;
  justify-content: center;
  margin-top: 44px;
}
.compare-cta-link {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 20px 32px;
  background: var(--lf-yellow);
  border: 0;
  border-radius: 999px;
  color: #0D0F14;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 18px;
  line-height: 1;
  letter-spacing: -.005em;
  cursor: pointer;
  box-shadow: 0 12px 32px -8px rgba(250,204,21,.45);
  transition: background-color .18s ease, transform .18s ease, box-shadow .18s ease;
}
.compare-cta-link:hover {
  background: #FDE047;
  transform: translateY(-2px);
  box-shadow: 0 18px 38px -6px rgba(250,204,21,.6);
}
.compare-cta-link:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 3px;
}
.compare-cta-link__arrow {
  color: #0D0F14;
  font-weight: 700;
}
.compare-cta-link__strong {
  color: #0D0F14;
  font-weight: 700;
  letter-spacing: .005em;
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-thickness: 2px;
}

/* ══════════════════════════════════════════════════════════
   ABLAUF (How-it-works) SUBHEADING
══════════════════════════════════════════════════════════ */
.ablauf-sub {
  display: block;
  margin: 0 auto 40px;
  padding: 14px 24px;
  max-width: max-content;
  text-align: center;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.5;
  color: #fff;
  background: rgba(13,15,20,.78);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 12px;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

/* ══════════════════════════════════════════════════════════
   FAQ CTA BLOCK (closing CTA after FAQ list)
══════════════════════════════════════════════════════════ */
.faq-cta-block {
  position: relative;
  margin-top: 56px;
  padding: 48px 36px;
  text-align: center;
  background: linear-gradient(180deg, #0D0F14 0%, #11151E 100%);
  border: 1px solid rgba(250,204,21,.35);
  border-radius: 20px;
  box-shadow: 0 30px 60px -20px rgba(13,15,20,.6),
              0 0 0 1px rgba(255,255,255,.04) inset;
  overflow: hidden;
}
.faq-cta-block::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% -10%, rgba(250,204,21,.18) 0%, transparent 55%);
  pointer-events: none;
}
.faq-cta-block > * { position: relative; }
.faq-cta-block__title {
  margin: 0 0 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(24px, 3.2vw, 32px);
  line-height: 1.2;
  color: #fff;
  letter-spacing: -.012em;
}
.faq-cta-block__text {
  margin: 0 auto 26px;
  max-width: 560px;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.5;
  color: rgba(255,255,255,.82);
}


/* ══════════════════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .cards-4 { grid-template-columns: repeat(2, 1fr); }
  .stats-4 { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: 1fr; max-width: 440px; }
  .pricing-card--featured { transform: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .section { padding: 64px 0; }
  .lf-container { padding-inline: 20px; }

  /* Header */
  .header-nav { display: none; }
  .header-cta { display: none; }
  .header-burger { display: inline-flex; }

  /* Hero */
  .hero { padding-top: 100px; min-height: auto; }
  .hero-headline { font-size: clamp(36px, 10vw, 64px); }
  .floating-stat { display: none; }
  .hero-stat-row { display: flex; }
  .hero-stat-row .floating-stat { display: block; }
  .hero-tearoff { display: none; }
  .hero-sub {
    font-size: 18px;
    max-width: 100%;
    padding: 12px 14px;
  }

  /* Feature sections */
  .feature-row { grid-template-columns: 1fr; gap: 24px; direction: ltr !important; }
  .feature-headline { font-size: clamp(26px, 7vw, 40px); }
  .feature-body { font-size: 16px; }
  .feature-content-box { padding: 14px; }
  .feature-bullets li { font-size: 15px; gap: 10px; }

  /* Sections */
  .cards-2 { grid-template-columns: 1fr; }
  .cards-3 { grid-template-columns: 1fr; }
  .cards-4 { grid-template-columns: 1fr; }

  /* Ablauf sub-pill: allow wrapping on small screens */
  .ablauf-sub { max-width: 100%; font-size: 15px; padding: 12px 18px; }

  /* Compare CTA: smaller on mobile but still prominent */
  .compare-cta-link { font-size: 16px; padding: 16px 22px; gap: 10px; }
  .compare-cta-link__strong { display: block; }

  /* Hero guide-line full-width on mobile */
  .hero-guide-line { max-width: 100%; }
  .stats-4 { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { max-width: 100%; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }

  .final-headline { font-size: clamp(36px, 10vw, 64px); }
}

@media (max-width: 480px) {
  .section { padding: 48px 0; }
  .lf-container { padding-inline: 16px; }

  .hero { padding-top: 88px; }
  .hero-headline { font-size: clamp(30px, 9vw, 48px); }
  .hero-sub { font-size: 16px; padding: 10px 12px; }
  .hero-cta-row { flex-direction: column; align-items: stretch; gap: 12px; }

  .feature-body { font-size: 15px; }
  .feature-content-box { padding: 12px; }
  .feature-bullets li { font-size: 14px; }

  .stats-4 { grid-template-columns: 1fr 1fr; }
  .final-cta-row { flex-direction: column; align-items: stretch; }

  .dark-card { padding: 20px; }
  .bp-title { font-size: clamp(28px, 8vw, 44px); }
}

/* ══════════════════════════════════════════════════════════
   HOMEPAGE EXTENSIONS (Partner, Leistungen, Vorteile, Outro)
══════════════════════════════════════════════════════════ */

/* ── Partner section intro paragraph (light bg) ── */
.partner-intro {
  font-size: 17px;
  line-height: 1.7;
  color: var(--lf-gray-700);
  margin: 16px 0 28px;
  max-width: 520px;
}

/* ── Feature-bullets light variant (for sections on light bg) ── */
.section--light .feature-bullets li,
.feature-bullets--light li { color: var(--lf-gray-900); }

/* ── Leistungen sub-heading (centered, on dark blueprint) ── */
.leistungen-sub {
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255,255,255,.7);
  max-width: 640px;
  margin: 16px auto 0;
  text-align: center;
}

/* ── Service card (extends .light-card on .lf-blueprint dark sections) ── */
.service-card { padding-top: 28px; }
.service-card__icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(250, 204, 21, 0.12);
  border: 1px solid rgba(250, 204, 21, 0.25);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.service-card__icon img {
  filter: brightness(0) saturate(100%) invert(82%) sepia(72%) saturate(2000%) hue-rotate(0deg) brightness(105%);
}

/* ── Vorteile list spacing ── */
.vorteile-list { margin-top: 32px; }
.vorteile-list li { padding: 12px 0; font-size: 17px; }

@media (max-width: 768px) {
  .vorteile-list li { font-size: 15px; padding: 10px 0; }
  .service-card__icon { width: 42px; height: 42px; }
  .partner-intro { font-size: 15px; }
  .leistungen-sub { font-size: 14px; }
}
