/* Webseite zum Festpreis — August 2026 experience layer.
   A restrained quote/ledger system. Lime is used only as a signal. */
body.fp26 {
  --fp-ink: #111412;
  --fp-ink-soft: #1c211e;
  --fp-paper: #fbfaf6;
  --fp-white: #fff;
  --fp-stone: #eeede7;
  --fp-line: #d8d8d0;
  --fp-muted: #626b66;
  --fp-sage: #dfe7dd;
  --fp-lime: #d8ff4f;
  --fp-lime-soft: #f4ffd1;
  --fp-max: 1180px;
  color: var(--fp-ink);
  background: var(--fp-paper);
}
.fp26 .container { max-width: var(--fp-max); }
.fp26 main { overflow: clip; }
.fp26 h2[id], .fp26 article[id] { scroll-margin-top: 150px; }
.fp26 :where(a, button, summary, input):focus-visible {
  outline: 3px solid var(--fp-lime);
  outline-offset: 3px;
}
.fp26-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  color: var(--fp-muted);
  font-size: .69rem;
  font-weight: 820;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.fp26-kicker::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--fp-lime);
  box-shadow: 0 0 0 1px var(--fp-ink);
}
.fp26-section-head { max-width: 760px; }
.fp26-section-head h2 {
  margin: 0;
  color: var(--fp-ink);
  font-size: clamp(2.35rem, 5vw, 4.6rem);
  line-height: .94;
  letter-spacing: -.065em;
  text-wrap: balance;
}
.fp26-section-head > p:not(.fp26-kicker) {
  max-width: 650px;
  margin: 22px 0 0;
  color: var(--fp-muted);
  font-size: clamp(1rem, 1.3vw, 1.12rem);
  line-height: 1.7;
}

/* Hero */
.fp26-hero {
  position: relative;
  min-height: min(850px, calc(100svh - 72px));
  display: flex;
  align-items: center;
  padding: 96px 0 74px;
  background:
    linear-gradient(90deg, rgba(17,20,18,.045) 1px, transparent 1px),
    linear-gradient(rgba(17,20,18,.045) 1px, transparent 1px),
    var(--fp-paper);
  background-size: 62px 62px;
  border-bottom: 1px solid var(--fp-line);
}
.fp26-hero::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 10px;
  background: var(--fp-ink);
}
.fp26-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(390px, .82fr);
  gap: clamp(50px, 7vw, 100px);
  align-items: center;
}
.fp26-crumbs {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 42px;
  color: var(--fp-muted);
  font-size: .72rem;
}
.fp26-crumbs a { color: inherit; }
.fp26-hero-copy h1 {
  max-width: 800px;
  margin: 0;
  color: var(--fp-ink);
  font-size: clamp(3.55rem, 5.5vw, 5.75rem);
  font-weight: 900;
  line-height: .86;
  letter-spacing: -.075em;
  text-wrap: balance;
}
.fp26-hero-copy h1 span {
  position: relative;
  display: inline-block;
  z-index: 0;
}
.fp26-hero-copy h1 span::after {
  content: "";
  position: absolute;
  z-index: -1;
  left: -.02em;
  right: -.04em;
  bottom: .02em;
  height: .18em;
  background: var(--fp-lime);
}
.fp26-hero-lead {
  max-width: 650px;
  margin: 28px 0 0;
  color: #46504a;
  font-size: clamp(1rem, 1.35vw, 1.16rem);
  line-height: 1.65;
}
.fp26-hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 13px;
  margin-top: 30px;
}
.fp26-btn {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 14px 20px;
  color: var(--fp-white);
  background: var(--fp-ink);
  border: 1px solid var(--fp-ink);
  border-radius: 8px;
  font-size: .84rem;
  font-weight: 780;
  text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.fp26-btn:hover { transform: translateY(-2px); box-shadow: 6px 6px 0 var(--fp-lime); }
.fp26-btn--quiet { color: var(--fp-ink); background: transparent; }
.fp26-btn--quiet:hover { background: var(--fp-white); box-shadow: none; }
.fp26-hero-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
  color: var(--fp-muted);
  font-size: .74rem;
}
.fp26-hero-facts li { display: flex; align-items: center; gap: 7px; }
.fp26-hero-facts li::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--fp-ink);
}

/* Quote document */
.fp26-quote-shell { position: relative; padding: 14px 14px 24px; }
.fp26-quote-shell::before {
  content: "";
  position: absolute;
  inset: 34px -18px 0 18px;
  background: var(--fp-sage);
  border: 1px solid #bfc9bd;
  transform: rotate(2.3deg);
}
.fp26-quote {
  position: relative;
  padding: 30px 30px 24px;
  background: var(--fp-white);
  border: 1px solid #cfcfc8;
  box-shadow: 0 22px 70px rgba(26,31,28,.13);
  transform: rotate(-1deg);
}
.fp26-quote-top,
.fp26-quote-row,
.fp26-quote-total,
.fp26-quote-note {
  display: flex;
  justify-content: space-between;
  gap: 18px;
}
.fp26-quote-top {
  padding-bottom: 22px;
  border-bottom: 2px solid var(--fp-ink);
  font: 750 .64rem/1.3 monospace;
  letter-spacing: .11em;
  text-transform: uppercase;
}
.fp26-quote-list { margin: 17px 0 0; padding: 0; list-style: none; }
.fp26-quote-row {
  padding: 12px 0;
  border-bottom: 1px solid var(--fp-line);
  color: #4e5752;
  font-size: .76rem;
}
.fp26-quote-row span:last-child { color: var(--fp-ink); font-weight: 760; }
.fp26-quote-total {
  align-items: flex-end;
  padding: 24px 0 18px;
  border-bottom: 2px solid var(--fp-ink);
}
.fp26-quote-total small {
  font: 800 .63rem/1.2 monospace;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.fp26-quote-total strong {
  font-size: clamp(3.5rem, 5vw, 5rem);
  line-height: .8;
  letter-spacing: -.075em;
}
.fp26-quote-total strong span { font-size: .38em; letter-spacing: -.03em; }
.fp26-quote-note {
  align-items: center;
  padding-top: 18px;
  color: var(--fp-muted);
  font: 700 .64rem/1.4 monospace;
  text-transform: uppercase;
}
.fp26-quote-stamp {
  display: inline-flex;
  padding: 7px 9px;
  color: var(--fp-ink);
  background: var(--fp-lime);
  border: 1px solid var(--fp-ink);
  transform: rotate(-3deg);
}

/* Trust band + chapter navigation */
.fp26-trust { background: var(--fp-ink); color: var(--fp-white); }
.fp26-trust-grid {
  min-height: 82px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: stretch;
}
.fp26-trust-item {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 18px 24px;
  border-right: 1px solid rgba(255,255,255,.15);
}
.fp26-trust-item:first-child { border-left: 1px solid rgba(255,255,255,.15); }
.fp26-trust-no { color: var(--fp-lime); font: 800 .62rem/1 monospace; letter-spacing: .08em; }
.fp26-trust-item strong { display: block; color: #fff; font-size: .78rem; }
.fp26-trust-item span:last-child { display: block; margin-top: 2px; color: rgba(255,255,255,.55); font-size: .66rem; }
.fp26-chapters {
  position: sticky;
  top: 72px;
  z-index: 120;
  background: rgba(251,250,246,.92);
  border-bottom: 1px solid var(--fp-line);
  backdrop-filter: blur(14px);
}
.fp26-chapters-inner {
  min-height: 62px;
  display: flex;
  align-items: center;
  gap: 4px;
  overflow-x: auto;
  scrollbar-width: none;
}
.fp26-chapters-inner::-webkit-scrollbar { display: none; }
.fp26-chapters-label {
  margin-right: 16px;
  color: #626863;
  font: 800 .58rem/1 monospace;
  letter-spacing: .13em;
  text-transform: uppercase;
  white-space: nowrap;
}
.fp26-chapters a {
  flex: 0 0 auto;
  padding: 9px 12px;
  color: #5c645f;
  border-radius: 6px;
  font-size: .7rem;
  font-weight: 720;
  text-decoration: none;
}
.fp26-chapters a:hover, .fp26-chapters a.is-active { color: var(--fp-ink); background: var(--fp-white); }

/* Scope ledger */
.fp26-scope { padding: clamp(82px, 10vw, 142px) 0; }
.fp26-scope-layout {
  display: grid;
  grid-template-columns: minmax(280px,.72fr) minmax(0,1.28fr);
  gap: clamp(46px, 8vw, 110px);
  align-items: start;
}
.fp26-scope-note {
  margin-top: 34px;
  padding: 20px 0 0;
  border-top: 1px solid var(--fp-line);
  color: var(--fp-muted);
  font-size: .82rem;
  line-height: 1.65;
}
.fp26-scope-note strong { color: var(--fp-ink); }
.fp26-scope-detail { min-width: 0; }
.fp26-ledger { border-top: 2px solid var(--fp-ink); }
.fp26-ledger-row {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  min-height: 78px;
  padding: 14px 0;
  border-bottom: 1px solid var(--fp-line);
}
.fp26-ledger-row:hover .fp26-ledger-no { background: var(--fp-lime); }
.fp26-ledger-no {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border: 1px solid var(--fp-line);
  border-radius: 50%;
  font: 800 .62rem/1 monospace;
  transition: background .2s ease;
}
.fp26-ledger-row strong { display: block; font-size: .9rem; }
.fp26-ledger-row p { margin: 4px 0 0; color: var(--fp-muted); font-size: .74rem; line-height: 1.48; }
.fp26-ledger-state {
  padding: 6px 9px;
  color: #415047;
  background: #edf1eb;
  border-radius: 999px;
  font: 750 .58rem/1 monospace;
  text-transform: uppercase;
  white-space: nowrap;
}
.fp26-scope-showcase {
  margin: 34px 0 0;
  overflow: hidden;
  background: #0a0b0a;
  border: 1px solid #0a0b0a;
  border-radius: 12px;
  box-shadow: 0 24px 54px rgba(13, 15, 13, .15);
}
.fp26-scope-showcase-media { position: relative; overflow: hidden; background: #050605; }
.fp26-scope-showcase img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 1;
  object-fit: cover;
}
.fp26-scope-showcase-label {
  position: absolute;
  top: 18px;
  left: 18px;
  padding: 8px 10px;
  color: #0a0b0a;
  background: var(--fp-lime);
  border-radius: 4px;
  font: 850 .54rem/1 monospace;
  letter-spacing: .11em;
  text-transform: uppercase;
}
.fp26-scope-showcase figcaption {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(220px, 1.1fr);
  gap: 28px;
  align-items: start;
  padding: 22px 24px 24px;
  color: #fff;
  border-top: 1px solid rgba(255,255,255,.12);
}
.fp26-scope-showcase figcaption strong { font-size: .86rem; line-height: 1.42; }
.fp26-scope-showcase figcaption span { color: rgba(255,255,255,.58); font-size: .7rem; line-height: 1.55; }

/* Packages */
.fp26-packages {
  padding: clamp(82px, 9vw, 130px) 0 clamp(72px, 7vw, 104px);
  background: var(--fp-stone);
  border-block: 1px solid var(--fp-line);
}
.fp26-packages-head {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  align-items: end;
  margin-bottom: 50px;
}
.fp26-packages-note {
  max-width: 300px;
  margin: 0;
  color: var(--fp-muted);
  font-size: .76rem;
  line-height: 1.6;
}
.fp26-package-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}
.fp26-package {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 555px;
  padding: 28px;
  background: var(--fp-white);
  border: 1px solid #c8cac4;
  border-radius: 12px;
  transition: transform .24s ease, box-shadow .24s ease;
}
.fp26-package:hover { transform: translateY(-5px); box-shadow: 0 18px 45px rgba(19,24,21,.1); }
.fp26-package--featured { color: #fff; background: var(--fp-ink); border-color: var(--fp-ink); }
.fp26-package-label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  font: 820 .66rem/1.2 monospace;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.fp26-package-badge { padding: 7px 9px; color: var(--fp-ink); background: var(--fp-lime); border-radius: 999px; letter-spacing: 0; }
.fp26-package-price { margin-top: 40px; font-size: clamp(4rem, 6vw, 5.8rem); font-weight: 900; line-height: .8; letter-spacing: -.08em; }
.fp26-package-price small { font-size: .3em; letter-spacing: -.02em; }
.fp26-package-once { margin-top: 12px; color: var(--fp-muted); font-size: .68rem; }
.fp26-package--featured .fp26-package-once { color: rgba(255,255,255,.55); }
.fp26-package-desc { min-height: 62px; margin: 30px 0 22px; color: var(--fp-muted); font-size: .78rem; line-height: 1.55; }
.fp26-package--featured .fp26-package-desc { color: rgba(255,255,255,.62); }
.fp26-package-list { margin: 0; padding: 0; list-style: none; border-top: 1px solid var(--fp-line); }
.fp26-package--featured .fp26-package-list { border-color: rgba(255,255,255,.18); }
.fp26-package-list li { position: relative; padding: 12px 0 12px 18px; border-bottom: 1px solid var(--fp-line); font-size: .72rem; line-height: 1.42; }
.fp26-package--featured .fp26-package-list li { border-color: rgba(255,255,255,.16); }
.fp26-package-list li::before { content: ""; position: absolute; left: 0; top: 17px; width: 6px; height: 6px; background: var(--fp-lime); border: 1px solid var(--fp-ink); border-radius: 50%; }
.fp26-package--featured .fp26-package-list li::before { border-color: var(--fp-lime); }
.fp26-package-link {
  min-height: 49px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding: 13px 15px;
  color: #fff;
  background: var(--fp-ink);
  border: 1px solid var(--fp-ink);
  border-radius: 7px;
  font-size: .74rem;
  font-weight: 780;
  text-decoration: none;
}
.fp26-package--featured .fp26-package-link { color: var(--fp-ink); background: var(--fp-lime); border-color: var(--fp-lime); }

/* Cost simulator */
.fp26-compare { padding: clamp(90px, 10vw, 145px) 0; background: var(--fp-ink); color: #fff; }
.fp26-compare .fp26-kicker { color: rgba(255,255,255,.55); }
.fp26-compare .fp26-section-head h2 { color: #fff; }
.fp26-compare .fp26-section-head > p:not(.fp26-kicker) { color: rgba(255,255,255,.58); }
.fp26-calc {
  display: grid;
  grid-template-columns: minmax(270px,.72fr) minmax(0,1.28fr);
  gap: clamp(40px, 7vw, 90px);
  align-items: end;
  margin-top: 58px;
  padding-top: 36px;
  border-top: 1px solid rgba(255,255,255,.17);
}
.fp26-calc-controls label { display: block; color: rgba(255,255,255,.56); font-size: .7rem; }
.fp26-calc-value { display: flex; align-items: baseline; gap: 8px; margin: 12px 0 24px; }
.fp26-calc-value strong { font-size: 3.7rem; line-height: .9; letter-spacing: -.07em; }
.fp26-calc-value span { color: rgba(255,255,255,.55); font-size: .72rem; }
.fp26-range { width: 100%; accent-color: var(--fp-lime); }
.fp26-range-labels { display: flex; justify-content: space-between; margin-top: 9px; color: rgba(255,255,255,.42); font: .58rem/1 monospace; }
.fp26-package-picks { display: flex; gap: 7px; margin-top: 28px; }
.fp26-package-pick {
  flex: 1;
  padding: 11px 8px;
  color: rgba(255,255,255,.65);
  background: transparent;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 6px;
  font-size: .66rem;
  font-weight: 760;
  cursor: pointer;
}
.fp26-package-pick.is-active { color: var(--fp-ink); background: var(--fp-lime); border-color: var(--fp-lime); }
.fp26-calc-chart { min-width: 0; }
.fp26-calc-bars { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; align-items: end; height: 330px; }
.fp26-calc-bar {
  position: relative;
  min-height: 116px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 22px;
  border: 1px solid rgba(255,255,255,.19);
  border-radius: 10px 10px 0 0;
  transition: height .35s ease;
}
.fp26-calc-bar--rent { height: 100%; background: #262c28; }
.fp26-calc-bar--fixed { height: 42%; color: var(--fp-ink); background: var(--fp-sage); border-color: var(--fp-sage); }
.fp26-calc-bar-label { font: 800 .64rem/1.2 monospace; letter-spacing: .08em; text-transform: uppercase; }
.fp26-calc-bar strong { font-size: clamp(2rem, 4vw, 4rem); letter-spacing: -.07em; line-height: .9; }
.fp26-calc-bar small { color: rgba(255,255,255,.5); font-size: .64rem; }
.fp26-calc-bar--fixed small { color: #5c665f; }
.fp26-calc-saving { margin: 18px 0 0; color: rgba(255,255,255,.57); font-size: .75rem; }
.fp26-calc-saving strong { color: var(--fp-lime); }

/* Delivery and scope */
.fp26-delivery { padding: clamp(86px, 10vw, 142px) 0; }
.fp26-delivery-grid {
  display: grid;
  grid-template-columns: minmax(260px,.68fr) minmax(0,1.32fr);
  gap: clamp(48px, 8vw, 112px);
  margin-top: 56px;
}
.fp26-steps { counter-reset: step; border-top: 2px solid var(--fp-ink); }
.fp26-step {
  counter-increment: step;
  display: grid;
  grid-template-columns: 44px 1fr auto;
  gap: 16px;
  padding: 25px 0;
  border-bottom: 1px solid var(--fp-line);
}
.fp26-step::before { content: "0" counter(step); color: var(--fp-muted); font: 800 .63rem/1.4 monospace; }
.fp26-step h3 { margin: 0; font-size: 1rem; }
.fp26-step p { max-width: 520px; margin: 6px 0 0; color: var(--fp-muted); font-size: .76rem; line-height: 1.55; }
.fp26-step time { color: var(--fp-muted); font: 760 .6rem/1.3 monospace; white-space: nowrap; }
.fp26-scope-card { padding: 30px; background: var(--fp-white); border: 1px solid var(--fp-line); border-radius: 10px; }
.fp26-scope-card h3 { margin: 0 0 18px; font-size: 1rem; }
.fp26-scope-card dl { margin: 0; }
.fp26-scope-card dl > div { display: grid; grid-template-columns: 1fr auto; gap: 20px; padding: 13px 0; border-top: 1px solid var(--fp-line); }
.fp26-scope-card dt { color: var(--fp-muted); font-size: .7rem; }
.fp26-scope-card dd { margin: 0; font-size: .7rem; font-weight: 780; text-align: right; }
.fp26-scope-card p { margin: 19px 0 0; color: var(--fp-muted); font-size: .68rem; line-height: 1.55; }

/* Decision cards */
.fp26-fit { padding: clamp(82px, 9vw, 126px) 0; background: var(--fp-lime-soft); }
.fp26-fit-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 10px; margin-top: 44px; }
.fp26-fit-card { min-height: 210px; display: flex; flex-direction: column; padding: 24px; background: rgba(255,255,255,.72); border: 1px solid rgba(17,20,18,.18); border-radius: 9px; }
.fp26-fit-no { color: var(--fp-muted); font: 800 .61rem/1 monospace; }
.fp26-fit-card h3 { margin: auto 0 8px; font-size: .98rem; }
.fp26-fit-card p { margin: 0; color: var(--fp-muted); font-size: .72rem; line-height: 1.5; }

/* FAQ + reading */
.fp26-faq { padding: clamp(86px, 10vw, 142px) 0; }
.fp26-faq-layout { display: grid; grid-template-columns: minmax(280px,.72fr) minmax(0,1.28fr); gap: clamp(50px,8vw,112px); }
.fp26-faq .fp26-section-head h2 { font-size: clamp(2.6rem, 4.1vw, 3.8rem); }
.fp26-faq-list { border-top: 2px solid var(--fp-ink); }
.fp26-faq-item { border-bottom: 1px solid var(--fp-line); }
.fp26-faq-item summary {
  position: relative;
  padding: 23px 48px 23px 0;
  color: var(--fp-ink);
  font-size: .9rem;
  font-weight: 780;
  cursor: pointer;
  list-style: none;
}
.fp26-faq-item summary::-webkit-details-marker { display: none; }
.fp26-faq-item summary::after { content: "+"; position: absolute; right: 2px; top: 17px; font-size: 1.7rem; font-weight: 320; }
.fp26-faq-item[open] summary::after { content: "−"; }
.fp26-faq-item p { max-width: 690px; margin: -5px 0 23px; color: var(--fp-muted); font-size: .78rem; line-height: 1.68; }
.fp26-guides {
  padding: clamp(86px, 10vw, 142px) 0;
  background:
    linear-gradient(90deg, rgba(17,20,18,.035) 1px, transparent 1px),
    linear-gradient(rgba(17,20,18,.035) 1px, transparent 1px),
    #f1f2ed;
  background-size: 56px 56px;
  border-top: 1px solid var(--fp-line);
}
.fp26-guides-head {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, .75fr) 138px;
  gap: 34px;
  align-items: end;
  margin-bottom: 40px;
}
.fp26-guides-head > div:first-child { min-width: 0; }
.fp26-guides-head .fp26-kicker {
  margin-bottom: 24px;
  padding-top: 8px;
  border-top: 4px solid var(--fp-lime);
}
.fp26-guides-head h2 {
  max-width: 760px;
  margin: 0;
  color: var(--fp-ink);
  font-size: clamp(3.15rem, 5.8vw, 5.85rem);
  font-weight: 900;
  line-height: .89;
  letter-spacing: -.068em;
  text-wrap: balance;
}
.fp26-guides-head > p {
  margin: 0 0 4px;
  color: #505a66;
  font-size: 1rem;
  line-height: 1.7;
}
.fp26-guides-count {
  display: grid;
  align-content: end;
  min-height: 138px;
  padding: 18px;
  color: var(--fp-ink);
  background: var(--fp-lime);
  border: 1px solid var(--fp-ink);
  border-radius: 12px;
  box-shadow: 7px 7px 0 var(--fp-ink);
}
.fp26-guides-count strong { font-size: 3.2rem; font-weight: 900; line-height: .85; letter-spacing: -.07em; }
.fp26-guides-count span { margin-top: 10px; font-size: .68rem; font-weight: 820; line-height: 1.35; letter-spacing: .08em; text-transform: uppercase; }
.fp26-guide-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.32fr) minmax(0, .84fr) minmax(0, .84fr);
  grid-template-rows: repeat(2, minmax(230px, 1fr));
  gap: 12px;
}
.fp26-guide-card {
  position: relative;
  min-width: 0;
  min-height: 230px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 38px;
  overflow: hidden;
  padding: 26px;
  color: var(--fp-ink);
  background: rgba(255,255,255,.91);
  border: 1px solid var(--fp-ink);
  border-radius: 14px;
  text-decoration: none;
  transition: background-color .2s ease, color .2s ease, box-shadow .2s ease;
}
.fp26-guide-card--feature {
  grid-row: 1 / span 2;
  min-height: 472px;
  padding: 34px;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(255,255,255,.055) 1px, transparent 1px),
    linear-gradient(rgba(255,255,255,.055) 1px, transparent 1px),
    var(--fp-ink);
  background-size: 44px 44px;
}
.fp26-guide-card--feature::after {
  content: "\2197";
  position: absolute;
  right: -28px;
  bottom: -32px;
  width: 154px;
  height: 154px;
  display: grid;
  place-items: center;
  padding: 0 23px 26px 0;
  color: var(--fp-ink);
  background: var(--fp-lime);
  border-radius: 50%;
  font-size: 2.3rem;
  font-weight: 900;
}
.fp26-guide-card-top {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}
.fp26-guide-tag {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 5px 9px;
  color: var(--fp-ink);
  background: #f3ffd0;
  border: 1px solid rgba(17,20,18,.2);
  border-radius: 5px;
  font-size: .62rem;
  font-weight: 850;
  letter-spacing: .11em;
  line-height: 1.2;
  text-transform: uppercase;
}
.fp26-guide-card--feature .fp26-guide-tag { background: var(--fp-lime); border-color: var(--fp-lime); }
.fp26-guide-number { color: #7a838d; font: 800 .72rem/1 monospace; letter-spacing: .08em; }
.fp26-guide-card--feature .fp26-guide-number { color: rgba(255,255,255,.5); }
.fp26-guide-card-copy { position: relative; z-index: 1; display: flex; flex-direction: column; align-items: flex-start; }
.fp26-guide-card-copy > strong {
  color: inherit;
  font-size: clamp(1.28rem, 2vw, 1.72rem);
  font-weight: 850;
  line-height: 1.08;
  letter-spacing: -.04em;
  text-wrap: balance;
}
.fp26-guide-card--feature .fp26-guide-card-copy > strong {
  max-width: 9ch;
  font-size: clamp(2.55rem, 4.1vw, 4.1rem);
  font-weight: 900;
  line-height: .92;
  letter-spacing: -.065em;
}
.fp26-guide-card-copy > span:not(.fp26-guide-action) { max-width: 34ch; margin-top: 13px; color: #59636f; font-size: .84rem; line-height: 1.58; }
.fp26-guide-card--feature .fp26-guide-card-copy > span:not(.fp26-guide-action) { max-width: 38ch; color: rgba(255,255,255,.62); font-size: .94rem; }
.fp26-guide-action { display: inline-flex; align-items: center; gap: 9px; margin-top: 24px; padding-bottom: 4px; color: inherit; border-bottom: 1px solid currentColor; font-size: .74rem; font-weight: 820; letter-spacing: .04em; }
.fp26-guide-card--feature .fp26-guide-action { margin-right: 90px; color: var(--fp-lime); }
.fp26-guide-card:not(.fp26-guide-card--feature):hover { color: #fff; background: var(--fp-ink); box-shadow: 7px 7px 0 var(--fp-lime); }
.fp26-guide-card:not(.fp26-guide-card--feature):hover .fp26-guide-card-copy > span:not(.fp26-guide-action) { color: rgba(255,255,255,.65); }
.fp26-guide-card:not(.fp26-guide-card--feature):hover .fp26-guide-number { color: rgba(255,255,255,.52); }
.fp26-guide-card--feature:hover { color: #fff; box-shadow: 10px 10px 0 var(--fp-lime); }
.fp26-guide-directory {
  display: grid;
  grid-template-columns: minmax(190px, .64fr) minmax(270px, 1fr) minmax(380px, 1.42fr);
  margin-top: 18px;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--fp-ink);
  border-radius: 14px;
}
.fp26-guide-directory-intro,
.fp26-guide-directory-panel { padding: 30px; }
.fp26-guide-directory-intro { color: #fff; background: var(--fp-ink); }
.fp26-guide-directory-intro > span,
.fp26-guide-directory-label { display: block; margin: 0 0 28px; font: 800 .64rem/1.3 monospace; letter-spacing: .13em; text-transform: uppercase; }
.fp26-guide-directory-intro > span { color: var(--fp-lime); }
.fp26-guide-directory-intro h3 { margin: 0; color: #fff; font-size: clamp(1.85rem, 3vw, 2.65rem); font-weight: 900; line-height: .97; letter-spacing: -.055em; }
.fp26-guide-directory-intro p { margin: 60px 0 0; color: rgba(255,255,255,.58); font-size: .78rem; line-height: 1.55; }
.fp26-guide-directory-panel { border-left: 1px solid var(--fp-ink); }
.fp26-guide-directory-panel--industry { background: var(--fp-lime); }
.fp26-guide-directory-panel h3 { margin: 0 0 20px; color: var(--fp-ink); font-size: 1.5rem; font-weight: 850; letter-spacing: -.035em; }
.fp26-guide-directory-label { color: #4d5660; }
.fp26-guide-link-list,
.fp26-guide-place-grid { border-top: 1px solid rgba(17,20,18,.28); }
.fp26-guide-link-list { display: grid; }
.fp26-guide-link-list a,
.fp26-guide-place-grid a { min-height: 46px; display: flex; align-items: center; justify-content: space-between; gap: 14px; color: var(--fp-ink); border-bottom: 1px solid rgba(17,20,18,.19); font-size: .84rem; font-weight: 760; text-decoration: none; }
.fp26-guide-place-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); column-gap: 22px; }
.fp26-guide-link-list a span,
.fp26-guide-place-grid a span { transition: transform .2s ease; }
.fp26-guide-link-list a:hover span,
.fp26-guide-place-grid a:hover span { transform: translate(3px, -2px); }

/* Closing conversion station mirrors the proven Mieten-vs.-Kaufen pattern. */
.fp26 .footer-cta { padding-block: clamp(86px, 10vw, 140px); background: #090a09; border-top: 0; }
.fp26 .footer-cta-content {
  max-width: 900px;
  margin: 0 auto;
  padding: clamp(38px, 5vw, 60px);
  background: #151615;
  border: 1px solid rgba(255,255,255,.04);
  border-radius: 18px;
  box-shadow: none;
}
.fp26 .footer-cta-eyebrow { color: rgba(255,255,255,.48); }
.fp26 .footer-cta-headline { color: #fff; }
.fp26 .footer-cta-sub { color: rgba(255,255,255,.62); }
.fp26 .footer-cta-trust,
.fp26 .footer-cta-trust li,
.fp26 .footer-cta-trust .check { color: rgba(255,255,255,.62); }
.fp26 .footer-cta-btn-primary { color: var(--fp-ink); background: var(--fp-lime); border-color: var(--fp-lime); }
.fp26 .footer-cta-btn-primary:hover { color: var(--fp-ink); background: #fff; border-color: #fff; }
.fp26 .footer-cta-btn-secondary { color: #fff; background: transparent; border-color: rgba(255,255,255,.3); }
.fp26 .footer-cta-btn-secondary:hover { color: var(--fp-ink); background: #fff; border-color: #fff; }
.fp26 .sticky-toc { display: none !important; }

/* Reveal, progressive and motion-safe */
.fp26 [data-fp-reveal] { opacity: 1; transform: none; }
.fp26.fp26-js [data-fp-reveal] { opacity: 0; transform: translateY(24px); transition: opacity .55s ease, transform .55s cubic-bezier(.2,.7,.2,1); }
.fp26.fp26-js [data-fp-reveal].is-visible { opacity: 1; transform: none; }

@media (max-width: 980px) {
  .fp26-hero { min-height: auto; padding-top: 82px; }
  .fp26-hero-grid, .fp26-scope-layout, .fp26-calc, .fp26-delivery-grid, .fp26-faq-layout { grid-template-columns: 1fr; }
  .fp26-quote-shell { max-width: 590px; width: 100%; margin: 0 auto; }
  .fp26-package-grid { grid-template-columns: 1fr; }
  .fp26-package { min-height: auto; }
  .fp26-package-desc { min-height: 0; }
  .fp26-fit-grid { grid-template-columns: 1fr 1fr; }
  .fp26-chapters { top: 70px; }
  .fp26-guides-head { grid-template-columns: minmax(0, 1fr) 128px; }
  .fp26-guides-head > p { grid-column: 1; }
  .fp26-guides-count { grid-column: 2; grid-row: 1 / span 2; }
  .fp26-guide-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); grid-template-rows: auto; }
  .fp26-guide-card--feature { grid-column: 1 / -1; grid-row: auto; min-height: 390px; }
  .fp26-guide-directory { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .fp26-guide-directory-intro { grid-column: 1 / -1; display: grid; grid-template-columns: 1fr 1fr; gap: 24px; align-items: end; }
  .fp26-guide-directory-intro > span { grid-column: 1 / -1; margin-bottom: 10px; }
  .fp26-guide-directory-intro p { margin: 0; max-width: 36ch; }
  .fp26-guide-directory-panel--industry { border-left: 0; }
  .fp26-guide-directory-panel { border-top: 1px solid var(--fp-ink); }
}
@media (max-width: 720px) {
  .fp26-hero { padding: 102px 0 54px; }
  .fp26-crumbs { margin-bottom: 30px; }
  .fp26-hero-copy h1 { font-size: clamp(3.05rem, 14vw, 4.4rem); }
  .fp26-hero-actions { align-items: stretch; flex-direction: column; }
  .fp26-btn { width: 100%; }
  .fp26-quote-shell { padding: 5px 8px 18px; }
  .fp26-quote-shell::before { inset: 22px -7px 0 13px; }
  .fp26-quote { padding: 22px 19px 19px; }
  .fp26-trust-grid { grid-template-columns: 1fr 1fr; }
  .fp26-trust-item:nth-child(odd) { border-left: 0; }
  .fp26-trust-item { min-height: 76px; padding: 14px 16px; border-bottom: 1px solid rgba(255,255,255,.15); }
  .fp26-chapters { top: 63px; }
  .fp26-chapters-label { display: none; }
  .fp26-scope, .fp26-packages, .fp26-compare, .fp26-delivery, .fp26-fit, .fp26-faq, .fp26-guides { padding-block: 72px; }
  .fp26-ledger-row { grid-template-columns: 35px minmax(0,1fr); gap: 12px; }
  .fp26-ledger-state { grid-column: 2; width: fit-content; margin-top: -6px; }
  .fp26-scope-showcase { margin-top: 26px; }
  .fp26-scope-showcase figcaption { grid-template-columns: 1fr; gap: 10px; padding: 20px; }
  .fp26-packages-head { display: block; }
  .fp26-packages-note { margin-top: 20px; }
  .fp26-package { padding: 23px; }
  .fp26-calc-bars { height: 270px; }
  .fp26-calc-bar { padding: 15px; }
  .fp26-step { grid-template-columns: 36px 1fr; }
  .fp26-step time { grid-column: 2; }
  .fp26-fit-grid { grid-template-columns: 1fr; }
  .fp26-fit-card { min-height: 175px; }
  .fp26-guides { background-size: 34px 34px; }
  .fp26-guides-head { grid-template-columns: 1fr; gap: 22px; }
  .fp26-guides-head h2 { font-size: clamp(3rem, 14vw, 4.6rem); }
  .fp26-guides-head > p { grid-column: 1; }
  .fp26-guides-count { grid-column: 1; grid-row: auto; grid-template-columns: auto 1fr; gap: 15px; align-items: end; min-height: 0; width: min(100%, 280px); }
  .fp26-guides-count span { margin-top: 0; }
  .fp26-guide-grid { grid-template-columns: 1fr; }
  .fp26-guide-card--feature { grid-column: 1; min-height: 370px; padding: 28px; }
  .fp26-guide-card { min-height: 210px; padding: 23px; }
  .fp26-guide-card--feature .fp26-guide-card-copy > strong { max-width: 10ch; font-size: clamp(2.7rem, 13vw, 3.8rem); }
  .fp26-guide-directory { grid-template-columns: 1fr; }
  .fp26-guide-directory-intro { grid-column: 1; grid-template-columns: 1fr; }
  .fp26-guide-directory-intro p { margin: 12px 0 0; }
  .fp26-guide-directory-panel { border-left: 0; }
  .fp26-guide-directory-intro,
  .fp26-guide-directory-panel { padding: 24px; }
  .fp26-guide-directory-intro > span,
  .fp26-guide-directory-label { margin-bottom: 20px; }
  .fp26-guide-place-grid { grid-template-columns: 1fr; }
  .fp26 .footer-cta-content { padding-inline: 22px; }
}
@media (prefers-reduced-motion: reduce) {
  .fp26.fp26-js [data-fp-reveal] { opacity: 1; transform: none; transition: none; }
  .fp26-package, .fp26-btn, .fp26-calc-bar { transition: none; }
}
