@font-face {
  font-family: "Inter";
  src: url("/assets/fonts/inter/inter-200.ttf") format("truetype");
  font-style: normal;
  font-weight: 200 300;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("/assets/fonts/inter/inter-400.ttf") format("truetype");
  font-style: normal;
  font-weight: 400 500;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("/assets/fonts/inter/inter-600.ttf") format("truetype");
  font-style: normal;
  font-weight: 600 800;
  font-display: swap;
}

:root {
  --finance-shell: var(--gecko-large-shell, 1400px);
  --finance-gutter: var(--gecko-large-gutter, clamp(20px, 3vw, 48px));
  --finance-display: var(--gecko-type-display, clamp(3.25rem, 6vw, 6.2rem));
  --finance-section: var(--gecko-type-section, clamp(2.6rem, 4.8vw, 4.8rem));
  --finance-lead: var(--gecko-type-lead, clamp(1.08rem, 1.45vw, 1.3rem));
  --finance-body: var(--gecko-type-body, clamp(1rem, 1.05vw, 1.125rem));
  --finance-brand: #49a5a2;
  --finance-brand-dark: #2f8582;
  --finance-ink: #231f1f;
  --finance-copy: #5d5b59;
  --finance-surface: #f4f4ef;
  --finance-olive: #e7e8df;
  --finance-line: rgba(35, 31, 31, .14);
  --finance-danger: #9f3434;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 112px;
  overflow-x: hidden;
}

body.finance-check-page {
  margin: 0;
  overflow-x: hidden;
  background: #fff;
  color: var(--finance-ink);
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: var(--finance-body);
}

/* Keep the shared website header legible over the dark finance hero.
   The imported Zahnzusatz page styles otherwise inherit the page's dark text. */
.finance-check-page .site-header:not(.scrolled):not(.dropdown-open) .nav-desktop > ul > li > a,
.finance-check-page .mobile-contact-strip a {
  color: #fff;
}

.finance-check-page *,
.finance-check-page *::before,
.finance-check-page *::after {
  box-sizing: border-box;
}

.finance-check-page main {
  overflow: clip;
}

.finance-check-page h1,
.finance-check-page h2,
.finance-check-page h3,
.finance-check-page p,
.finance-check-page ul,
.finance-check-page ol,
.finance-check-page dl,
.finance-check-page dd,
.finance-check-page fieldset {
  margin: 0;
}

.finance-check-page h1,
.finance-check-page h2,
.finance-check-page h3 {
  font-family: "Kaisei Tokumin", Georgia, serif;
  font-weight: 400;
  hyphens: auto;
  overflow-wrap: break-word;
}

.finance-check-page button,
.finance-check-page input,
.finance-check-page select,
.finance-check-page textarea {
  font: inherit;
}

.finance-check-page [hidden] {
  display: none !important;
}

.finance-shell {
  width: min(var(--finance-shell), calc(100% - (2 * var(--finance-gutter))));
  margin-inline: auto;
}

.finance-eyebrow {
  margin-bottom: 20px !important;
  color: var(--finance-brand-dark);
  font-size: .85rem;
  font-weight: 400;
  letter-spacing: .14em;
  line-height: 1.2;
  text-transform: uppercase;
}

.finance-btn {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 26px;
  border: 0;
  border-radius: 999px;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
  transition: transform 170ms ease, background-color 170ms ease, border-color 170ms ease, color 170ms ease;
}

.finance-btn:hover:not(:disabled) {
  transform: translateY(-1px);
}

.finance-btn:focus-visible,
.finance-option input:focus-visible + span,
.finance-field input:focus-visible,
.finance-field select:focus-visible,
.finance-field textarea:focus-visible,
.finance-info:focus-visible,
.finance-consent input:focus-visible {
  outline: 3px solid rgba(73, 165, 162, .4);
  outline-offset: 3px;
}

.finance-btn:disabled {
  opacity: .55;
  cursor: wait;
}

.finance-btn--light {
  border-color: #fff;
  background: #fff;
  color: var(--finance-ink);
}

.finance-btn--light:hover {
  border-color: var(--finance-brand);
  background: var(--finance-brand);
  color: #fff;
}

.finance-btn--dark {
  border-color: var(--finance-ink);
  background: var(--finance-ink);
  color: #fff;
}

.finance-btn--dark:hover:not(:disabled) {
  border-color: var(--finance-brand-dark);
  background: var(--finance-brand-dark);
}

.finance-btn--back {
  border-color: var(--finance-line);
  background: transparent;
  color: var(--finance-ink);
}

/* Hero */
.finance-hero {
  position: relative;
  min-height: clamp(680px, 82vh, 880px);
  display: grid;
  align-items: end;
  overflow: hidden;
  background: #162326;
  color: #fff;
}

.finance-hero__image,
.finance-hero__overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.finance-hero__image {
  max-width: none;
  object-fit: cover;
  object-position: 62% center;
  filter: saturate(.86) contrast(1.03);
}

.finance-hero__overlay {
  background:
    linear-gradient(90deg, rgba(8, 16, 18, .92) 0%, rgba(8, 16, 18, .77) 37%, rgba(8, 16, 18, .26) 70%, rgba(8, 16, 18, .2) 100%),
    linear-gradient(0deg, rgba(8, 16, 18, .8) 0%, transparent 48%);
}

.finance-hero__content {
  position: relative;
  z-index: 1;
  padding: clamp(182px, 18vw, 240px) 0 clamp(64px, 8vw, 98px);
}

.finance-hero__eyebrow {
  margin-bottom: 20px !important;
  color: rgba(255, 255, 255, .78);
  font-size: .86rem;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.finance-hero h1 {
  max-width: 10.5ch;
  color: #fff;
  font-size: var(--finance-display);
  letter-spacing: -.035em;
  line-height: .95;
  text-wrap: balance;
}

.finance-hero__lead {
  max-width: 570px;
  margin-top: 28px !important;
  color: rgba(255, 255, 255, .85);
  font-size: clamp(1.12rem, 1.45vw, 1.32rem);
  font-weight: 300;
  line-height: 1.6;
}

.finance-hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 24px;
  margin-top: 34px;
}

.finance-hero__text-link {
  color: #fff;
  font-size: .98rem;
  font-weight: 400;
  text-decoration-color: rgba(255, 255, 255, .42);
  text-underline-offset: 5px;
}

.finance-hero__text-link span {
  margin-left: 6px;
}

.finance-hero__trust {
  max-width: 840px;
  margin-top: clamp(54px, 7vw, 84px) !important;
  padding: 22px 0 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  border-top: 1px solid rgba(255, 255, 255, .28);
  list-style: none;
}

.finance-hero__trust li {
  position: relative;
  padding-left: 21px;
  color: rgba(255, 255, 255, .82);
  font-size: .95rem;
  font-weight: 300;
}

.finance-hero__trust li::before {
  content: "";
  position: absolute;
  top: .52em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--finance-brand);
}

/* Regional strip */
.finance-regional {
  border-bottom: 1px solid var(--finance-line);
  background: #fff;
}

.finance-regional__inner {
  min-height: 112px;
  display: flex;
  align-items: center;
  gap: clamp(34px, 6vw, 88px);
}

.finance-regional__inner > p {
  flex: 0 0 auto;
  color: var(--finance-copy);
  font-size: .82rem;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.finance-regional__inner > div {
  min-width: 0;
  display: flex;
  flex: 1;
  justify-content: space-between;
  gap: 28px;
  color: var(--finance-ink);
  font-size: 1.05rem;
  font-weight: 300;
}

/* Tool intro and shell */
.finance-tool-section {
  padding: clamp(82px, 9vw, 132px) 0 clamp(94px, 10vw, 150px);
  background: #fff;
  scroll-margin-top: 102px;
}

.finance-tool-section__intro {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(300px, .7fr);
  align-items: end;
  gap: clamp(54px, 9vw, 140px);
}

.finance-tool-section h2,
.finance-value h2,
.finance-process h2,
.finance-faq h2,
.finance-closing h2 {
  font-size: var(--finance-section);
  letter-spacing: -.026em;
  line-height: 1.01;
  text-wrap: balance;
}

.finance-tool-section__intro h2 {
  max-width: 12ch;
}

.finance-tool-section__intro > p {
  max-width: 48ch;
  color: var(--finance-copy);
  font-size: var(--finance-lead);
  font-weight: 300;
  line-height: 1.68;
}

.finance-wizard {
  min-height: 820px;
  margin-top: clamp(50px, 7vw, 86px);
  display: grid;
  grid-template-columns: minmax(250px, 330px) minmax(0, 1fr);
  overflow: hidden;
  border-radius: 32px;
  background: var(--finance-surface);
}

.finance-wizard__aside {
  padding: clamp(32px, 4vw, 48px);
  display: flex;
  flex-direction: column;
  background: var(--finance-ink);
  color: #fff;
}

.finance-wizard__aside-label {
  padding-bottom: 25px;
  border-bottom: 1px solid rgba(255, 255, 255, .18);
  color: rgba(255, 255, 255, .58);
  font-size: .78rem;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.finance-progress {
  margin-top: 34px !important;
  padding: 0;
  display: grid;
  gap: 8px;
  list-style: none;
}

.finance-progress li {
  min-height: 58px;
  display: grid;
  grid-template-columns: 35px minmax(0, 1fr);
  align-items: start;
  gap: 13px;
  color: rgba(255, 255, 255, .38);
  transition: color 180ms ease;
}

.finance-progress li > span {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 50%;
  font-size: .7rem;
  font-weight: 400;
  transition: background-color 180ms ease, border-color 180ms ease;
}

.finance-progress li strong,
.finance-progress li small {
  display: block;
}

.finance-progress li strong {
  font-size: .98rem;
  font-weight: 500;
  line-height: 1.25;
}

.finance-progress li small {
  margin-top: 3px;
  font-size: .8rem;
  font-weight: 300;
  line-height: 1.25;
}

.finance-progress li.is-current,
.finance-progress li.is-complete {
  color: #fff;
}

.finance-progress li.is-current > span,
.finance-progress li.is-complete > span {
  border-color: var(--finance-brand);
  background: var(--finance-brand);
}

.finance-wizard__aside-note {
  margin-top: auto;
  padding-top: 25px;
  border-top: 1px solid rgba(255, 255, 255, .18);
}

.finance-wizard__aside-note strong {
  font-size: .92rem;
  font-weight: 500;
}

.finance-wizard__aside-note p {
  margin-top: 7px !important;
  color: rgba(255, 255, 255, .58);
  font-size: .85rem;
  font-weight: 300;
  line-height: 1.5;
}

.finance-form {
  min-width: 0;
  padding: clamp(32px, 5vw, 70px);
  display: flex;
  flex-direction: column;
}

.finance-form__topbar {
  display: none;
}

.finance-form__status {
  margin-bottom: 18px;
  padding: 13px 16px;
  border: 1px solid rgba(159, 52, 52, .24);
  border-radius: 14px;
  background: rgba(159, 52, 52, .07);
  color: var(--finance-danger);
  font-size: .94rem;
}

.finance-step {
  animation: finance-step-in 170ms ease-out both;
}

.finance-step.is-leaving {
  animation: finance-step-out 90ms ease-in both;
}

.finance-step__head {
  max-width: 690px;
}

.finance-step__number {
  margin-bottom: 13px !important;
  color: var(--finance-brand-dark);
  font-size: .8rem;
  font-weight: 500;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.finance-step h3,
.finance-success h3 {
  color: var(--finance-ink);
  font-size: clamp(2.25rem, 4vw, 3.8rem);
  letter-spacing: -.025em;
  line-height: 1.03;
  text-wrap: balance;
}

.finance-step__head > p:last-child {
  max-width: 55ch;
  margin-top: 17px !important;
  color: var(--finance-copy);
  font-size: 1.03rem;
  font-weight: 300;
  line-height: 1.55;
}

.finance-options,
.finance-fields,
.finance-fieldset,
.finance-summary {
  margin-top: clamp(34px, 5vw, 54px) !important;
}

.finance-options {
  display: grid;
  gap: 14px;
}

.finance-options--two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.finance-option {
  position: relative;
  display: block;
  cursor: pointer;
}

.finance-option--wide {
  grid-column: 1 / -1;
}

.finance-option input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.finance-option > span {
  min-height: 116px;
  height: 100%;
  padding: 20px;
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  align-content: center;
  column-gap: 15px;
  border: 1px solid var(--finance-line);
  border-radius: 19px;
  background: #fff;
  transition: border-color 160ms ease, background-color 160ms ease, transform 160ms ease;
}

.finance-option:hover > span {
  transform: translateY(-1px);
  border-color: rgba(35, 31, 31, .28);
}

.finance-option input:checked + span {
  border-color: var(--finance-brand-dark);
  background: rgba(73, 165, 162, .08);
  box-shadow: inset 0 0 0 1px var(--finance-brand-dark);
}

.finance-option i {
  grid-row: 1 / span 2;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 13px;
  background: var(--finance-olive);
  color: var(--finance-ink);
  font-family: "Noto Sans Extra Condensed", system-ui, sans-serif;
  font-size: 1.35rem;
  font-style: normal;
}

.finance-option strong,
.finance-option small {
  display: block;
}

.finance-option strong {
  align-self: end;
  color: var(--finance-ink);
  font-size: 1.03rem;
  font-weight: 500;
  line-height: 1.3;
}

.finance-option small {
  align-self: start;
  margin-top: 5px;
  color: var(--finance-copy);
  font-size: .9rem;
  font-weight: 300;
  line-height: 1.35;
}

.finance-options--compact .finance-option > span {
  min-height: 98px;
  grid-template-columns: 1fr;
}

.finance-fieldset {
  padding: 0;
  border: 0;
}

.finance-fieldset legend,
.finance-field > span:first-child {
  display: block;
  margin-bottom: 9px;
  color: var(--finance-ink);
  font-size: .94rem;
  font-weight: 500;
  line-height: 1.35;
}

.finance-fieldset + .finance-field {
  margin-top: 24px;
}

.finance-fields {
  display: grid;
  gap: 20px;
}

.finance-fields--two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.finance-field--wide {
  grid-column: 1 / -1;
}

.finance-field input,
.finance-field select,
.finance-field textarea,
.finance-input-money {
  width: 100%;
  min-height: 54px;
  border: 1px solid var(--finance-line);
  border-radius: 14px;
  background: #fff;
  color: var(--finance-ink);
}

.finance-field > input,
.finance-field select,
.finance-field textarea {
  padding: 12px 15px;
}

.finance-field textarea {
  min-height: 94px;
  resize: vertical;
}

.finance-field select {
  appearance: auto;
}

.finance-field input::placeholder,
.finance-field textarea::placeholder {
  color: rgba(35, 31, 31, .38);
}

.finance-field > small {
  display: block;
  margin-top: 7px;
  color: var(--finance-copy);
  font-size: .83rem;
  font-weight: 300;
  line-height: 1.4;
}

.finance-input-money {
  display: flex;
  align-items: center;
}

.finance-input-money input {
  min-width: 0;
  min-height: 52px;
  padding: 12px 8px 12px 15px;
  border: 0;
  background: transparent;
  outline: 0;
}

.finance-input-money b {
  padding: 0 15px 0 8px;
  color: var(--finance-copy);
  font-weight: 400;
}

.finance-field.is-invalid input,
.finance-field.is-invalid select,
.finance-field.is-invalid textarea,
.finance-field.is-invalid .finance-input-money,
.finance-consent.is-invalid {
  border-color: var(--finance-danger);
}

.finance-option.is-invalid > span {
  border-color: var(--finance-danger);
}

.finance-calculation {
  margin-top: 26px;
  padding: 22px 24px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 5px 24px;
  border-radius: 18px;
  background: var(--finance-ink);
  color: #fff;
}

.finance-calculation p {
  color: rgba(255, 255, 255, .62);
  font-size: .84rem;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.finance-calculation strong {
  grid-row: 1 / span 2;
  grid-column: 2;
  font-family: "Kaisei Tokumin", Georgia, serif;
  font-size: clamp(1.6rem, 2.8vw, 2.35rem);
  font-weight: 400;
}

.finance-calculation small {
  max-width: 52ch;
  color: rgba(255, 255, 255, .62);
  font-size: .82rem;
  font-weight: 300;
  line-height: 1.4;
}

.finance-summary {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--finance-line);
  border-radius: 18px;
  background: var(--finance-line);
}

.finance-summary > div {
  min-width: 0;
  padding: 17px 19px;
  background: #fff;
}

.finance-summary dt {
  color: var(--finance-copy);
  font-size: .78rem;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.finance-summary dd {
  margin-top: 5px;
  color: var(--finance-ink);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.35;
  overflow-wrap: anywhere;
}

.finance-summary__hint {
  margin-top: 20px;
  padding: 17px 19px;
  border-left: 3px solid var(--finance-brand);
  background: rgba(73, 165, 162, .07);
}

.finance-summary__hint p {
  margin: 0 !important;
  color: var(--finance-copy);
  font-size: .8rem;
  font-weight: 300;
  line-height: 1.5;
  opacity: .7;
}

.finance-summary__hint p + p {
  margin-top: 5px !important;
}

.finance-summary__hint a {
  color: inherit;
  text-underline-offset: 3px;
}

.finance-consent {
  margin-top: 25px;
  padding: 16px;
  display: grid;
  grid-template-columns: 20px minmax(0, 1fr);
  gap: 11px;
  border: 1px solid transparent;
  border-radius: 14px;
  color: var(--finance-copy);
  font-size: .88rem;
  font-weight: 300;
  line-height: 1.48;
}

.finance-consent input {
  width: 18px;
  height: 18px;
  margin: 2px 0 0;
  accent-color: var(--finance-brand-dark);
}

.finance-consent a {
  color: var(--finance-ink);
}

.finance-submit-note {
  margin: 8px 16px 0 !important;
  color: var(--finance-copy);
  font-size: .82rem;
  font-weight: 300;
  line-height: 1.4;
}

.finance-honeypot {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
}

.finance-form__nav {
  margin-top: auto;
  padding-top: 40px;
  display: flex;
  justify-content: flex-end;
  gap: 12px;
}

.finance-form__nav .finance-btn--back {
  margin-right: auto;
}

.finance-success {
  max-width: 680px;
  margin: auto 0;
  padding-block: 40px;
  animation: finance-step-in 260ms ease both;
}

.finance-success__mark {
  width: 58px;
  height: 58px;
  margin-bottom: 28px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--finance-brand);
  color: #fff;
  font-size: 1.6rem;
}

.finance-success > p:not(.finance-eyebrow) {
  max-width: 55ch;
  margin: 23px 0 30px !important;
  color: var(--finance-copy);
  font-size: 1.05rem;
  line-height: 1.6;
}

/* Supporting sections */
.finance-value,
.finance-process,
.finance-faq {
  padding: clamp(86px, 10vw, 150px) 0;
}

.finance-value {
  background: var(--finance-olive);
}

.finance-value__layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, .78fr);
  gap: clamp(60px, 10vw, 150px);
}

.finance-value h2 {
  max-width: 12ch;
}

.finance-value__copy > p {
  color: var(--finance-copy);
  font-size: var(--finance-lead);
  font-weight: 300;
  line-height: 1.68;
}

.finance-value__copy ul {
  margin-top: 44px !important;
  padding: 0;
  border-top: 1px solid var(--finance-line);
  list-style: none;
}

.finance-value__copy li {
  min-height: 72px;
  padding: 17px 0;
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr);
  align-items: center;
  gap: 13px;
  border-bottom: 1px solid var(--finance-line);
  color: var(--finance-ink);
  font-size: 1rem;
}

.finance-value__copy li span {
  color: var(--finance-ink);
  font-size: .78rem;
  letter-spacing: .07em;
}

.finance-process {
  background: #fff;
}

.finance-process h2 {
  max-width: 12ch;
}

.finance-process__steps {
  margin-top: clamp(48px, 7vw, 82px) !important;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--finance-line);
  list-style: none;
}

.finance-process__steps li {
  min-height: 300px;
  padding: clamp(28px, 4vw, 46px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: var(--finance-surface);
}

.finance-process__steps > li > span {
  color: var(--finance-ink);
  font-size: .78rem;
  letter-spacing: .09em;
}

.finance-process__steps h3 {
  font-size: clamp(1.55rem, 2.2vw, 2rem);
  line-height: 1.1;
}

.finance-process__steps p {
  margin-top: 13px !important;
  color: var(--finance-copy);
  font-size: .98rem;
  font-weight: 300;
  line-height: 1.55;
}

.finance-faq {
  background: var(--finance-surface);
}

.finance-faq__layout {
  display: grid;
  grid-template-columns: minmax(0, .78fr) minmax(0, 1fr);
  gap: clamp(60px, 10vw, 150px);
}

.finance-faq h2 {
  max-width: 10ch;
}

.finance-faq__list {
  border-top: 1px solid var(--finance-line);
}

.finance-faq details {
  border-bottom: 1px solid var(--finance-line);
}

.finance-faq summary {
  min-height: 84px;
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: var(--finance-ink);
  font-size: 1.08rem;
  font-weight: 500;
  cursor: pointer;
  list-style: none;
}

.finance-faq summary::-webkit-details-marker {
  display: none;
}

.finance-faq summary span {
  position: relative;
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
}

.finance-faq summary span::before,
.finance-faq summary span::after {
  content: "";
  position: absolute;
  top: 9px;
  left: 3px;
  width: 14px;
  height: 1px;
  background: var(--finance-ink);
  transition: transform 180ms ease;
}

.finance-faq summary span::after {
  transform: rotate(90deg);
}

.finance-faq details[open] summary span::after {
  transform: rotate(0deg);
}

.finance-faq details p {
  max-width: 58ch;
  padding: 0 46px 24px 0;
  color: var(--finance-copy);
  font-size: .98rem;
  font-weight: 300;
  line-height: 1.58;
}

.finance-closing {
  padding: clamp(92px, 11vw, 164px) 0;
  background: var(--finance-ink);
  color: #fff;
  text-align: center;
}

.finance-closing__inner > p {
  margin-bottom: 15px !important;
  color: rgba(255, 255, 255, .58);
  font-size: .86rem;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.finance-closing h2 {
  color: #fff;
}

.finance-closing .finance-btn {
  margin-top: 34px;
}

@keyframes finance-step-in {
  from { opacity: 0; transform: translateY(4px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes finance-step-out {
  from { opacity: 1; transform: translateY(0); }
  to { opacity: 0; transform: translateY(-3px); }
}

@media (max-width: 1050px) {
  .finance-wizard {
    grid-template-columns: 245px minmax(0, 1fr);
  }

  .finance-wizard__aside,
  .finance-form {
    padding: 34px;
  }

  .finance-progress li small {
    display: none;
  }

  .finance-hero__overlay {
    background:
      linear-gradient(90deg, rgba(8, 16, 18, .92) 0%, rgba(8, 16, 18, .72) 55%, rgba(8, 16, 18, .28) 100%),
      linear-gradient(0deg, rgba(8, 16, 18, .78) 0%, transparent 50%);
  }
}

@media (max-width: 840px) {
  .finance-hero {
    min-height: 760px;
  }

  .finance-hero__image {
    object-position: 67% center;
  }

  .finance-hero__overlay {
    background: linear-gradient(90deg, rgba(8, 16, 18, .9), rgba(8, 16, 18, .54)), linear-gradient(0deg, rgba(8, 16, 18, .83), transparent 62%);
  }

  .finance-tool-section__intro,
  .finance-value__layout,
  .finance-faq__layout {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .finance-tool-section__intro > p,
  .finance-value__copy > p {
    max-width: 58ch;
  }

  .finance-wizard {
    min-height: 0;
    grid-template-columns: 1fr;
  }

  .finance-wizard__aside {
    display: none;
  }

  .finance-form {
    min-height: 760px;
  }

  .finance-form__topbar {
    margin-bottom: 38px;
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    gap: 16px;
    color: var(--finance-copy);
    font-size: .82rem;
  }

  .finance-form__bar {
    height: 3px;
    overflow: hidden;
    border-radius: 999px;
    background: rgba(35, 31, 31, .12);
  }

  .finance-form__bar span {
    width: 14.285%;
    height: 100%;
    display: block;
    border-radius: inherit;
    background: var(--finance-brand);
    transition: width 220ms ease;
  }

  .finance-process__steps {
    grid-template-columns: 1fr;
  }

  .finance-process__steps li {
    min-height: 230px;
  }

  .finance-regional__inner {
    align-items: flex-start;
    padding-block: 28px;
  }

  .finance-regional__inner > div {
    flex-wrap: wrap;
    justify-content: flex-start;
  }
}

@media (max-width: 620px) {
  :root {
    --finance-gutter: 20px;
    --finance-display: clamp(3rem, 14vw, 4.5rem);
    --finance-section: clamp(2.45rem, 11vw, 3.65rem);
  }

  .finance-hero {
    min-height: 760px;
  }

  .finance-hero__image {
    object-position: 72% center;
  }

  .finance-hero__overlay {
    background: linear-gradient(90deg, rgba(8, 16, 18, .88), rgba(8, 16, 18, .5)), linear-gradient(0deg, rgba(8, 16, 18, .92) 0%, rgba(8, 16, 18, .32) 68%);
  }

  .finance-hero__content {
    padding-top: 165px;
    padding-bottom: 42px;
  }

  .finance-hero h1 {
    max-width: 9ch;
  }

  .finance-hero__lead {
    max-width: 31ch;
  }

  .finance-hero__actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
  }

  .finance-hero__trust {
    margin-top: 45px !important;
    grid-template-columns: 1fr;
    gap: 11px;
  }

  .finance-regional__inner {
    display: block;
  }

  .finance-regional__inner > div {
    margin-top: 16px;
    gap: 12px 22px;
    font-size: .96rem;
  }

  .finance-tool-section {
    padding-top: 72px;
  }

  .finance-wizard {
    width: calc(100% + 16px);
    margin-left: -8px;
    border-radius: 24px;
  }

  .finance-form {
    min-height: 720px;
    padding: 25px 20px;
  }

  .finance-step h3,
  .finance-success h3 {
    font-size: clamp(2.05rem, 10vw, 3rem);
  }

  .finance-options--two,
  .finance-fields--two,
  .finance-summary {
    grid-template-columns: 1fr;
  }

  .finance-option--wide,
  .finance-field--wide {
    grid-column: auto;
  }

  .finance-option > span {
    min-height: 100px;
  }

  .finance-calculation {
    grid-template-columns: 1fr;
  }

  .finance-calculation strong {
    grid-row: auto;
    grid-column: auto;
    margin: 5px 0;
  }

  .finance-form__nav {
    position: sticky;
    bottom: 0;
    z-index: 4;
    margin: auto -20px -25px;
    padding: 16px 20px max(18px, env(safe-area-inset-bottom));
    border-top: 1px solid var(--finance-line);
    background: rgba(244, 244, 239, .96);
    backdrop-filter: blur(12px);
  }

  .finance-form__nav .finance-btn {
    min-width: 0;
    padding-inline: 20px;
  }

  .finance-form__nav .finance-btn--dark {
    flex: 1;
  }

  .finance-process__steps li {
    min-height: 210px;
  }
}

/* Full-screen financing flow */
body.is-finance-tool-open {
  overflow: hidden;
}

.finance-tool-section__cta {
  max-width: 48ch;
}

.finance-tool-section__cta p {
  color: var(--finance-copy);
  font-size: var(--finance-lead);
  font-weight: 300;
  line-height: 1.68;
}

.finance-tool-section__cta .finance-btn {
  margin-top: 28px;
}

.finance-wizard {
  position: fixed;
  inset: 0;
  z-index: 10000;
  width: 100%;
  min-height: 100vh;
  min-height: 100dvh;
  margin: 0;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
  overflow-y: auto;
  border-radius: 0;
  background: #fff;
  overscroll-behavior: contain;
}

.finance-wizard__chrome {
  position: sticky;
  top: 0;
  z-index: 8;
  min-height: 88px;
  padding: 18px clamp(22px, 4vw, 58px) 20px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  border-bottom: 1px solid rgba(35, 31, 31, .11);
  background: rgba(255, 255, 255, .97);
  backdrop-filter: blur(14px);
}

.finance-tool-back {
  min-height: 44px;
  padding: 0;
  display: inline-flex;
  justify-self: start;
  align-items: center;
  gap: 11px;
  border: 0;
  background: transparent;
  color: var(--finance-ink);
  font-size: .96rem;
  cursor: pointer;
}

.finance-tool-back > span:first-child {
  font-size: 1.35rem;
  line-height: 1;
  transition: transform 160ms ease;
}

.finance-tool-back:hover > span:first-child {
  transform: translateX(-3px);
}

.finance-tool-back:focus-visible {
  outline: 3px solid rgba(73, 165, 162, .4);
  outline-offset: 5px;
  border-radius: 4px;
}

.finance-wizard__title {
  color: var(--finance-ink);
  font-size: .82rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.finance-wizard__step {
  justify-self: end;
  color: var(--finance-copy);
  font-size: .82rem;
  font-variant-numeric: tabular-nums;
}

.finance-wizard__chrome .finance-form__bar {
  position: absolute;
  bottom: -2px;
  left: 50%;
  width: min(224px, 30vw);
  height: 4px;
  display: block;
  overflow: hidden;
  transform: translateX(-50%);
  border-radius: 999px;
  background: #ececea;
}

.finance-wizard__chrome .finance-form__bar span {
  width: 11.111%;
  height: 100%;
  display: block;
  border-radius: inherit;
  background: var(--finance-brand);
  transition: width 220ms ease;
}

.finance-wizard .finance-form {
  width: min(920px, calc(100% - 40px));
  min-height: calc(100vh - 88px);
  min-height: calc(100dvh - 88px);
  margin: 0 auto;
  padding: clamp(46px, 5.5vh, 62px) 0 max(50px, env(safe-area-inset-bottom));
}

.finance-wizard .finance-form__status {
  width: min(620px, 100%);
  margin: 0 auto 26px;
  padding: 0 0 12px;
  border: 0;
  border-bottom: 1px solid rgba(159, 52, 52, .28);
  border-radius: 0;
  background: transparent;
  text-align: center;
}

.finance-wizard .finance-step {
  width: 100%;
  margin: 0;
}

.finance-wizard .finance-step__head {
  max-width: 680px;
  margin-inline: auto;
  text-align: center;
}

.finance-wizard .finance-step__icon {
  width: 78px;
  height: 78px;
  margin: 0 auto 26px;
  display: grid;
  place-items: center;
  color: var(--finance-ink);
}

.finance-wizard .finance-step__icon svg {
  width: 72px;
  height: 72px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.finance-wizard .finance-step h3,
.finance-wizard .finance-success h3 {
  max-width: none;
  margin-inline: auto;
  font-size: clamp(2.05rem, 3vw, 3rem);
  letter-spacing: -.032em;
  line-height: 1.05;
  hyphens: none;
  overflow-wrap: break-word;
}

@media (min-width: 621px) {
  .finance-wizard .finance-step h3,
  .finance-wizard .finance-success h3 {
    white-space: nowrap;
  }
}

.finance-wizard .finance-step h3:focus,
.finance-wizard .finance-success h3:focus {
  outline: 0;
}

.finance-wizard .finance-step__head > p:last-child {
  margin: 19px auto 0 !important;
  font-size: 1.07rem;
}

.finance-wizard .finance-options,
.finance-wizard .finance-fields,
.finance-wizard .finance-fieldset,
.finance-wizard .finance-summary {
  margin-top: clamp(36px, 5vh, 48px) !important;
}

.finance-wizard .finance-options {
  gap: 12px 10px;
}

.finance-wizard .finance-options--list {
  width: 100%;
  max-width: 760px;
  margin-inline: auto;
  padding-inline: 14px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
}

.finance-wizard .finance-options--list .finance-option {
  max-width: 100%;
  display: inline-flex;
  flex: 0 0 auto;
}

.finance-wizard .finance-choice-group {
  max-width: 760px;
  margin: clamp(36px, 5vh, 48px) auto 0;
  padding: 0;
  border: 0;
}

.finance-wizard .finance-choice-group + .finance-choice-group,
.finance-wizard .finance-fields + .finance-choice-group,
.finance-wizard .finance-choice-group + .finance-fields {
  margin-top: 32px;
}

.finance-wizard .finance-choice-group legend {
  width: 100%;
  margin: 0 0 14px;
  color: var(--finance-ink);
  font-size: calc(.88rem + 2px);
  font-weight: 400;
  line-height: 1.35;
  text-align: center;
}

.finance-wizard .finance-field > span:first-child,
.finance-wizard .finance-field__title {
  display: block;
  margin: 0 0 14px;
  color: var(--finance-ink);
  font-size: calc(.88rem + 2px);
  font-weight: 400;
  line-height: 1.35;
  text-align: center;
}

.finance-wizard .finance-field > .finance-field__label {
  position: relative;
  margin: 0 0 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  color: var(--finance-ink);
  font-size: calc(.88rem + 2px);
  font-weight: 400;
  line-height: 1.35;
}

.finance-wizard .finance-field > .finance-field__label > span:first-child {
  text-align: center;
}

.finance-info {
  width: 25px;
  height: 25px;
  padding: 0;
  display: inline-grid;
  flex: 0 0 25px;
  place-items: center;
  border: 0;
  border-radius: 999px;
  background: #e6e8e4;
  color: var(--finance-ink);
  cursor: help;
}

.finance-info svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.finance-info__popover {
  position: absolute;
  z-index: 12;
  top: calc(100% + 12px);
  left: 0;
  width: min(360px, calc(100vw - 48px));
  padding: 17px 18px;
  display: grid;
  gap: 7px;
  border-radius: 18px;
  background: var(--finance-ink);
  color: #fff;
  font-size: .83rem;
  font-weight: 300;
  line-height: 1.4;
  opacity: 0;
  pointer-events: none;
  transform: translateY(5px);
  transition: opacity 150ms ease, transform 150ms ease;
  box-shadow: 0 18px 45px rgba(35, 31, 31, .18);
}

.finance-info__popover::after {
  content: "";
  position: absolute;
  bottom: 100%;
  left: 18px;
  border: 7px solid transparent;
  border-bottom-color: var(--finance-ink);
}

.finance-info__popover strong,
.finance-info__popover span,
.finance-info__popover small {
  display: block;
}

.finance-info__popover strong {
  font-size: .87rem;
  font-weight: 500;
}

.finance-info__popover span {
  position: relative;
  padding-left: 14px;
}

.finance-info__popover span::before {
  content: "";
  position: absolute;
  top: .55em;
  left: 0;
  width: 4px;
  height: 4px;
  border-radius: 999px;
  background: var(--finance-brand);
}

.finance-info__popover small {
  margin-top: 3px;
  color: rgba(255, 255, 255, .66);
  font-size: .76rem;
  font-weight: 300;
}

.finance-info:hover + .finance-info__popover,
.finance-info:focus-visible + .finance-info__popover,
.finance-info[aria-expanded="true"] + .finance-info__popover {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.finance-wizard .finance-choice-group .finance-options {
  margin-top: 0 !important;
}

.finance-wizard .finance-fields--one {
  max-width: 620px;
  margin-inline: auto;
  grid-template-columns: 1fr;
}

.finance-wizard .finance-step--income .finance-fields--income {
  width: min(620px, 100%);
  margin-top: clamp(42px, 6vh, 58px) !important;
}

.finance-wizard .finance-step--household .finance-choice-group {
  margin-top: clamp(28px, 3.6vh, 38px);
}

.finance-wizard .finance-step--household .finance-choice-group + .finance-choice-group,
.finance-wizard .finance-step--household .finance-choice-group + .finance-fields {
  margin-top: clamp(26px, 3.2vh, 34px);
}

.finance-wizard .finance-step--household .finance-fields {
  width: min(620px, 100%);
  margin-inline: auto;
}

.finance-location-combobox {
  position: relative;
}

.finance-wizard .finance-location-combobox > input {
  padding: 15px 28px;
}

.finance-location-options {
  width: 100%;
  max-height: 250px;
  margin-top: 8px;
  padding: 8px;
  display: grid;
  gap: 4px;
  overflow-y: auto;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 18px 46px rgba(35, 31, 31, .16);
  animation: finance-location-in 130ms ease-out both;
}

.finance-location-options[hidden] {
  display: none;
}

.finance-location-option {
  width: 100%;
  min-height: 46px;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--finance-ink);
  font: inherit;
  font-size: .94rem;
  font-weight: 400;
  text-align: left;
  cursor: pointer;
}

.finance-location-option:hover,
.finance-location-option:focus-visible {
  outline: 0;
  background: #f1f2ef;
}

.finance-location-option small {
  color: var(--finance-copy);
  font-size: .78rem;
  font-weight: 300;
}

.finance-location-status {
  min-height: 1.25em;
  margin: 8px 0 0 !important;
  color: var(--finance-copy);
  font-size: .78rem;
  font-weight: 300;
  line-height: 1.25;
  text-align: center;
}

.finance-location-field.has-location .finance-location-status {
  color: var(--finance-ink);
}

@keyframes finance-location-in {
  from { opacity: 0; transform: translateY(-3px); }
  to { opacity: 1; transform: translateY(0); }
}

.finance-wizard .finance-option > span {
  min-height: 50px;
  width: auto;
  max-width: 100%;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  border: 0;
  border-radius: 999px;
  background: #f1f2ef;
  transition: background-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.finance-wizard .finance-option:hover > span {
  border: 0;
  background: #e8eae6;
}

.finance-wizard .finance-option input:checked + span {
  border: 0;
  background: #d8eceb;
  box-shadow: none;
}

.finance-wizard .finance-option.is-invalid > span,
.finance-wizard .finance-field.is-invalid input,
.finance-wizard .finance-field.is-invalid textarea,
.finance-wizard .finance-field.is-invalid .finance-input-money {
  box-shadow: inset 0 0 0 1px var(--finance-danger);
}

.finance-wizard .finance-option strong {
  align-self: center;
  color: var(--finance-ink);
  font-size: .94rem;
  font-weight: 400;
  line-height: 1.2;
}

.finance-wizard .finance-options--compact .finance-option > span {
  min-height: 50px;
}

.finance-wizard .finance-fields {
  gap: 24px 26px;
}

.finance-wizard .finance-field input,
.finance-wizard .finance-field select,
.finance-wizard .finance-input-money {
  border: 0;
  border-radius: 999px;
  background: #f1f2ef;
}

.finance-wizard .finance-field textarea {
  border: 0;
  border-radius: 28px;
  background: #f1f2ef;
}

.finance-wizard .finance-field > input,
.finance-wizard .finance-field select,
.finance-wizard .finance-field textarea {
  padding: 15px 18px;
}

.finance-wizard .finance-input-money input {
  padding-left: 18px;
}

.finance-wizard .finance-input-money input[readonly] {
  cursor: default;
}

.finance-wizard .finance-input-money b {
  padding-right: 18px;
}

.finance-wizard .finance-calculation {
  margin-top: 32px;
  padding: 22px 0;
  border-top: 1px solid var(--finance-line);
  border-bottom: 1px solid var(--finance-line);
  border-radius: 0;
  background: transparent;
  color: var(--finance-ink);
}

.finance-wizard .finance-step--calculation .finance-fields {
  margin-top: clamp(28px, 3.5vh, 36px) !important;
}

.finance-wizard .finance-step--calculation .finance-calculation {
  margin-top: clamp(24px, 3vh, 30px);
  padding-block: 18px;
}

.finance-wizard .finance-form__nav {
  margin-bottom: 50px;
}

.finance-wizard .finance-form__bottom-space {
  width: 100%;
  height: 50px;
  flex: 0 0 50px;
}

.finance-wizard .finance-calculation p,
.finance-wizard .finance-calculation small {
  color: var(--finance-copy);
}

.finance-wizard .finance-calculation__label {
  position: relative;
  display: flex;
  align-items: center;
  gap: 7px;
}

.finance-wizard .finance-calculation__label p {
  margin: 0 !important;
}

.finance-wizard .finance-calculation__label .finance-info__popover {
  left: 0;
}

.finance-wizard .finance-summary {
  gap: 0 34px;
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.finance-wizard .finance-summary > div {
  padding: 15px 0;
  border-bottom: 1px solid var(--finance-line);
  background: transparent;
}

.finance-wizard .finance-summary__hint {
  padding: 15px 0 0;
  border: 0;
  border-top: 2px solid var(--finance-brand);
  background: transparent;
}

.finance-wizard .finance-summary__hint p {
  font-size: .76rem;
  line-height: 1.45;
  opacity: .7;
}

.finance-wizard .finance-consent {
  padding: 15px 0;
  border-radius: 0;
}

.finance-wizard .finance-submit-note {
  margin-inline: 0 !important;
}

.finance-wizard .finance-form__nav {
  margin-top: 0;
  padding-top: 50px;
  justify-content: center;
}

.finance-wizard .finance-form__nav .finance-btn--dark {
  min-width: 204px;
  min-height: 58px;
  font-weight: 500;
}

.finance-wizard .finance-success {
  margin: auto;
  text-align: center;
}

.finance-wizard .finance-success__mark {
  margin-inline: auto;
}

.finance-wizard .finance-success > p:not(.finance-eyebrow) {
  margin-inline: auto !important;
}

@media (max-width: 620px) {
  .finance-tool-section__cta {
    max-width: none;
  }

  .finance-wizard__chrome {
    min-height: 72px;
    padding: 12px 20px 15px;
    grid-template-columns: 1fr auto;
  }

  .finance-wizard__title {
    display: none;
  }

  .finance-wizard__chrome .finance-form__bar {
    width: min(176px, 46vw);
  }

  .finance-wizard .finance-form {
    width: calc(100% - 40px);
    min-height: calc(100vh - 72px);
    min-height: calc(100dvh - 72px);
    padding: 38px 0 max(50px, env(safe-area-inset-bottom));
  }

  .finance-wizard .finance-step {
    margin: 0;
  }

  .finance-wizard .finance-step h3,
  .finance-wizard .finance-success h3 {
    max-width: 100%;
    font-size: clamp(1.78rem, 7.7vw, 2.18rem);
  }

  .finance-wizard .finance-step__icon {
    width: 62px;
    height: 62px;
    margin-bottom: 20px;
  }

  .finance-wizard .finance-step__icon svg {
    width: 58px;
    height: 58px;
  }

  .finance-wizard .finance-step__head > p:last-child {
    font-size: .98rem;
  }

  .finance-wizard .finance-options,
  .finance-wizard .finance-fields,
  .finance-wizard .finance-fieldset,
  .finance-wizard .finance-summary {
    margin-top: 30px !important;
  }

  .finance-wizard .finance-choice-group {
    margin-top: 30px;
  }

  .finance-wizard .finance-choice-group + .finance-choice-group,
  .finance-wizard .finance-fields + .finance-choice-group,
  .finance-wizard .finance-choice-group + .finance-fields {
    margin-top: 26px;
  }

  .finance-wizard .finance-option > span {
    min-height: 46px;
    padding: 11px 17px;
  }

  .finance-wizard .finance-options {
    gap: 10px 8px;
  }

  .finance-wizard .finance-options--list {
    padding-inline: 8px;
  }

  .finance-wizard .finance-fields {
    gap: 23px;
  }

  .finance-wizard .finance-form__nav {
    position: static;
    margin: 0 0 50px;
    padding: 50px 0 max(24px, env(safe-area-inset-bottom));
    border: 0;
    background: transparent;
    backdrop-filter: none;
  }

  .finance-wizard .finance-form__nav .finance-btn--dark {
    width: 100%;
    flex: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .finance-step,
  .finance-step,
  .finance-success,
  .finance-location-options { animation: none; }
  .finance-btn,
  .finance-option > span { transition: none; }
}

/* Landingpage-Grundaufbau nach dem Muster der Zahnzusatzseite */
.finance-front-hero .zz-hero__media img {
  object-position: 62% center;
}

.finance-front-hero h1,
.finance-front-hero h2,
.finance-tool-section--centered h2,
.zz-guide h2,
.zz-guide h3,
.finance-why h2,
.finance-personal h2,
.finance-front-faq h2 {
  hyphens: none;
  overflow-wrap: normal;
  word-break: normal;
}

.finance-why .zz-journey__card h2 {
  max-width: 16ch;
}

.finance-tool-section--centered {
  padding-block: clamp(96px, 11vw, 168px);
}

.finance-tool-section--centered .finance-tool-section__intro {
  max-width: 940px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  text-align: center;
}

.finance-tool-section--centered .finance-tool-section__intro h2 {
  max-width: 16ch;
  margin-inline: auto;
}

.finance-tool-section--centered .finance-tool-section__intro > p {
  max-width: 59ch;
  margin: 28px auto 0;
}

.finance-tool-section--centered .finance-tool-section__intro > .finance-tool-start-btn {
  margin-top: 32px;
}

.finance-why__advice img {
  object-position: center;
}

.finance-front-faq {
  background: #fff;
}

/* Einheitlicher Textrhythmus der Landingpage */
.finance-tool-section--centered .finance-tool-section__intro h2,
.zz-guide__intro h2,
.finance-why .zz-journey__card h2,
.finance-personal .zz-personal__copy h2,
.finance-front-faq h2 {
  margin: 0;
  letter-spacing: -.02em;
  line-height: 1.04;
}

.finance-tool-section--centered .finance-tool-section__intro > p,
.zz-guide__intro > p,
.finance-why .zz-journey__card > p,
.finance-personal .zz-personal__copy > p {
  font-weight: 300;
  line-height: 1.62;
}

.finance-tool-section--centered .finance-tool-start-btn {
  min-width: 190px;
}

.zz-guide__cards {
  gap: 22px;
}

.zz-guide-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
}

.zz-guide-card > span {
  margin: 0 0 clamp(14px, 1.6vw, 20px);
  line-height: 1;
}

.zz-guide-card h3 {
  max-width: 17ch;
  margin: 0;
  letter-spacing: -.02em;
  line-height: 1.06;
}

.zz-guide-card p {
  margin: clamp(14px, 1.4vw, 18px) 0 0;
  font-weight: 300;
  line-height: 1.58;
}

.finance-why .zz-journey__card,
.finance-why .zz-journey__card--decision {
  align-items: flex-start;
  justify-content: flex-start;
}

.finance-why .zz-journey__card > p {
  max-width: 58ch;
  margin: clamp(22px, 2.4vw, 30px) 0 0;
}

.finance-why .zz-journey__card > p + p {
  margin-top: clamp(14px, 1.4vw, 18px);
}

.finance-advice-link {
  margin-top: clamp(22px, 2.4vw, 30px);
}

.finance-why .zz-journey__steps {
  margin: clamp(30px, 4vw, 52px) 0 0;
}

.finance-why .zz-journey__steps li,
.finance-why .zz-journey__steps span {
  line-height: 1.35;
}

.finance-personal .zz-personal__copy > p {
  margin-top: clamp(22px, 2.4vw, 30px);
}

.finance-personal .zz-personal__copy > strong {
  margin-top: clamp(22px, 2.4vw, 30px);
  line-height: 1.4;
}

@media (max-width: 640px) {
  .finance-front-hero .zz-hero__media img {
    object-position: 68% center;
  }

  .finance-tool-section--centered {
    padding-block: 82px;
  }

  .finance-tool-section--centered .finance-tool-section__intro > p {
    margin-top: 22px;
  }

  .finance-tool-section--centered .finance-tool-section__intro > .finance-tool-start-btn {
    width: 100%;
    margin-top: 28px;
  }

  .zz-guide-card h3 {
    max-width: 100%;
  }

  .finance-why .zz-journey__card > p {
    margin-top: 20px;
  }

  .finance-why .zz-journey__card > p + p {
    margin-top: 14px;
  }
}

/* Kompaktere Typografie-Hierarchie der Finanzierungs-Landingpage */
.finance-check-page {
  --finance-front-display: clamp(3.1rem, 4.5vw, 5rem);
  --finance-front-h2: clamp(2.15rem, 3.25vw, 3.65rem);
  --finance-front-h3-large: clamp(1.55rem, 2.1vw, 2.25rem);
  --finance-front-h3: clamp(1.3rem, 1.55vw, 1.65rem);
  --finance-front-lead: clamp(1rem, 1.1vw, 1.14rem);
  --finance-front-body: clamp(.94rem, .9vw, 1.02rem);
}

.finance-front-hero h1 {
  font-size: var(--finance-front-display);
}

.finance-front-hero .zz-hero__lead,
.finance-tool-section--centered .finance-tool-section__intro > p,
.zz-guide__intro > p,
.finance-why .zz-journey__card > p,
.finance-personal .zz-personal__copy > p,
.finance-front-faq button {
  font-size: var(--finance-front-lead);
}

.finance-front-hero .zz-hero__reveal h2,
.finance-tool-section--centered .finance-tool-section__intro h2,
.zz-guide__intro h2,
.finance-why .zz-journey__card h2,
.finance-personal .zz-personal__copy h2,
.finance-front-faq h2 {
  font-size: var(--finance-front-h2);
}

.zz-guide-card h3,
.finance-why .zz-journey__cta-copy h2 {
  font-size: var(--finance-front-h3-large);
}

.finance-front-hero .zz-reveal__item h3 {
  font-size: var(--finance-front-h3);
}

.finance-front-hero .zz-reveal__item p,
.zz-guide-card p,
.finance-why .zz-journey__cta-copy p,
.finance-front-faq .zz-faq__list > li > div p {
  font-size: var(--finance-front-body);
}

.finance-front-hero .zz-reveal__item p {
  margin-top: 20px;
}

@media (max-width: 640px) {
  .finance-check-page {
    --finance-front-display: clamp(2.8rem, 12vw, 3.75rem);
    --finance-front-h2: clamp(1.65rem, 8vw, 2.8rem);
    --finance-front-h3-large: clamp(1.5rem, 7vw, 2rem);
    --finance-front-h3: clamp(1.25rem, 5.8vw, 1.55rem);
  }

  body.finance-check-page:not(.finance-location-page) {
    --finance-front-display: clamp(1.8rem, 9vw, 2.2rem);
  }

  body.finance-check-page:not(.finance-location-page) .finance-front-hero h1 {
    max-width: 100%;
  }

  .finance-front-hero .zz-reveal__item p {
    margin-top: 12px;
  }
}

/* Heller Bildhero mit ruhiger Abdunklung und freigestellten Inhalten */
.finance-front-hero {
  margin: 0;
  background: #edf2f1;
}

.finance-front-hero .zz-hero__stage {
  width: 100%;
  height: 100vh;
  height: 100svh;
  height: 100dvh;
  min-height: max(680px, 100dvh);
  margin-bottom: 0;
  border-radius: 0;
  clip-path: inset(0 var(--zz-hero-side-inset, 0%) 0 round 0 0 var(--zz-hero-radius) var(--zz-hero-radius));
  background: #edf2f1;
  contain: paint;
  transform: translateZ(0);
  backface-visibility: hidden;
  will-change: clip-path;
}

.finance-front-hero .zz-hero__media,
.finance-front-hero .zz-hero__media img {
  display: block;
}

.finance-front-hero .zz-hero__media img {
  object-position: 46% center;
  filter: saturate(.92) contrast(.98) brightness(1.01);
  backface-visibility: hidden;
}

.finance-front-hero .zz-hero__overlay {
  display: block;
  background: rgba(15, 15, 15, .3);
}

.finance-front-hero h1,
.finance-front-hero .zz-hero__lead {
  color: #fff;
  text-shadow: 0 2px 24px rgba(0, 0, 0, .38);
}

.finance-front-hero .zz-hero__lead {
  color: rgba(255, 255, 255, .92);
}

.finance-front-hero .zz-hero__copy {
  top: auto;
  bottom: clamp(34px, 5vw, 72px);
  width: min(620px, calc(100% - 52px));
}

body.finance-check-page .finance-front-hero .zz-btn--light {
  border-color: var(--finance-ink) !important;
  background: var(--finance-ink) !important;
  color: #fff !important;
}

body.finance-check-page .finance-front-hero .zz-btn--light:hover {
  border-color: #000 !important;
  background: #000 !important;
  color: #fff !important;
}

body.finance-check-page .finance-front-hero .zz-btn--ghost {
  border-color: rgba(255, 255, 255, .72) !important;
  background: rgba(255, 255, 255, .06) !important;
  color: #fff !important;
}

body.finance-check-page .finance-front-hero .zz-btn--ghost:hover {
  border-color: #fff !important;
  background: #fff !important;
  color: var(--finance-ink) !important;
}

.finance-front-hero .zz-hero__trust {
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #fff;
  backdrop-filter: none;
  filter: drop-shadow(0 2px 16px rgba(0, 0, 0, .3));
}

.finance-front-hero .zz-hero__trust > div {
  padding-top: 0;
  border-top: 0;
}

.finance-front-hero .zz-hero__trust p,
.finance-front-hero .zz-hero__trust strong {
  color: #fff;
}

.finance-front-hero .zz-hero__trust span {
  color: rgba(255, 255, 255, .78);
}

.finance-check-page .site-header:not(.scrolled):not(.dropdown-open) .logo-light {
  opacity: 1;
}

.finance-check-page .site-header:not(.scrolled):not(.dropdown-open) .logo-default {
  opacity: 0;
}

.finance-check-page .site-header:not(.scrolled):not(.dropdown-open) .nav-desktop > ul > li > a,
.finance-check-page .site-header:not(.scrolled):not(.dropdown-open) .header-contact .contact-link {
  color: #fff;
}

.finance-check-page .site-header:not(.scrolled):not(.dropdown-open) .header-divider,
.finance-check-page .site-header:not(.scrolled):not(.dropdown-open) .header-contact__divider {
  background: rgba(255, 255, 255, .7);
}

.finance-check-page .site-header:not(.scrolled):not(.dropdown-open) .nav-dropdown-toggle .chevron {
  border-color: #fff;
}

.finance-check-page .site-header:not(.scrolled):not(.dropdown-open) .header-btn-primary {
  border-color: rgba(255, 255, 255, .15) !important;
  background: rgba(255, 255, 255, .07) !important;
  color: #fff !important;
  backdrop-filter: blur(6px) !important;
}

.finance-check-page .site-header:not(.scrolled):not(.dropdown-open) .header-btn-primary:hover {
  border-color: rgba(255, 255, 255, .32) !important;
  background: rgba(255, 255, 255, .32) !important;
}

.finance-check-page .site-header:not(.scrolled):not(.dropdown-open) .burger span {
  background: #fff;
}

@media (max-width: 640px) {
  .finance-front-hero .zz-hero__stage {
    min-height: max(720px, 100dvh);
  }

  .finance-front-hero .zz-hero__media img {
    object-position: 38% center;
  }

  .finance-front-hero .zz-hero__copy {
    top: auto;
    bottom: 26px;
  }
}

/* Klarer Abstandsrhythmus für Ablauf, Folgekarte und FAQ */
.finance-check-page .zz-guide__intro > p {
  margin-top: clamp(30px, 3vw, 40px);
}

.finance-check-page .zz-guide__intro > .zz-text-link {
  margin-top: clamp(30px, 3vw, 38px);
}

.finance-check-page .zz-guide-card > span {
  margin-bottom: clamp(20px, 2vw, 26px);
}

.finance-check-page .zz-guide-card h3 {
  margin: 0;
}

.finance-check-page .zz-guide-card p {
  margin-top: clamp(20px, 2vw, 26px);
}

.finance-check-page .finance-why .zz-journey__cta-copy p {
  margin-top: clamp(18px, 1.8vw, 24px);
}

.finance-check-page .finance-personal .zz-personal__copy > p:first-of-type {
  margin-top: clamp(28px, 3vw, 38px);
}

.finance-check-page .finance-front-faq h2 {
  margin-bottom: clamp(48px, 6vw, 76px);
}

@media (max-width: 640px) {
  .finance-check-page .zz-guide__intro > p,
  .finance-check-page .finance-personal .zz-personal__copy > p:first-of-type {
    margin-top: 24px;
  }

  .finance-check-page .zz-guide__intro > .zz-text-link {
    margin-top: 28px;
  }

  .finance-check-page .zz-guide-card > span {
    margin-bottom: 18px;
  }

  .finance-check-page .zz-guide-card p {
    margin-top: 18px;
  }

  .finance-check-page .finance-front-faq h2 {
    margin-bottom: 36px;
  }
}
