@font-face {
  font-family: "Manrope";
  src: url("./fonts/Manrope-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Manrope";
  src: url("./fonts/Manrope-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Manrope";
  src: url("./fonts/Manrope-SemiBold.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Manrope";
  src: url("./fonts/Manrope-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Manrope";
  src: url("./fonts/Manrope-ExtraBold.woff2") format("woff2");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

:root {
  --surface: #fffdf9;
  --surface-soft: rgba(255, 253, 249, 0.82);
  --surface-muted: #f3ede4;
  --surface-strong: #f8f2e8;
  --text: #1f252c;
  --text-soft: #55606d;
  --line: rgba(31, 37, 44, 0.08);
  --line-strong: rgba(31, 37, 44, 0.14);
  --accent: #a0723f;
  --accent-dark: #85592b;
  --accent-soft: rgba(160, 114, 63, 0.12);
  --shadow: 0 18px 40px rgba(31, 37, 44, 0.08);
  --radius: 22px;
  --container: 1120px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(160, 114, 63, 0.08), transparent 28%),
    linear-gradient(180deg, #fbf8f3 0%, #f5f1ea 100%);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

.page-shell {
  min-height: 100vh;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(14px);
  background: rgba(251, 248, 243, 0.84);
  border-bottom: 1px solid rgba(31, 37, 44, 0.06);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 92px;
}

.header-left {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  justify-content: flex-start;
  text-align: left;
}

.header-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.2;
}

.partner-label {
  margin-bottom: 4px;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.05em;
  color: rgba(31, 37, 44, 0.34);
}

.header-brand img {
  height: 44px;
  width: auto;
}

.site-nav {
  display: none;
  align-items: center;
  gap: 1rem;
}

.site-nav a {
  color: var(--text-soft);
  font-weight: 700;
  font-size: 0.95rem;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--text);
}

/* ── Hamburger-Menü ── */
.hamburger {
  display: none;
  appearance: none;
  border: 0;
  background: transparent;
  cursor: pointer;
  padding: 8px;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  z-index: 30;
}

.hamburger__bar {
  display: block;
  width: 24px;
  height: 2.5px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 220ms ease, opacity 220ms ease;
}

.hamburger[aria-expanded="true"] .hamburger__bar:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}

.hamburger[aria-expanded="true"] .hamburger__bar:nth-child(2) {
  opacity: 0;
}

.hamburger[aria-expanded="true"] .hamburger__bar:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}

.container {
  width: min(calc(100% - 2rem), var(--container));
  margin: 0 auto;
}

.section {
  padding: 4rem 0;
}

.section--intro {
  padding: 3.5rem 0 2.4rem;
}

.section--muted {
  background: rgba(255, 253, 249, 0.64);
}

.section--accent {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.56), rgba(241, 236, 228, 0.86));
}

.eyebrow {
  margin: 0 0 0.8rem;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent-dark);
}

.section-heading {
  max-width: 920px;
  margin-bottom: 1.1rem;
}

.section-heading--compact {
  margin-bottom: 1.7rem;
}

.section-heading--tight,
.section-copy {
  display: grid;
  gap: 0.9rem;
}

.section-heading--center {
  margin-inline: auto;
  text-align: center;
}

.benefits-heading {
  max-width: none;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.08;
  letter-spacing: -0.03em;
}

h1 {
  font-size: clamp(2.6rem, 7vw, 4.8rem);
  max-width: 11ch;
}

h2 {
  font-size: clamp(1.95rem, 5vw, 3rem);
}

h3 {
  font-size: 1.18rem;
}

p {
  margin: 0;
  color: var(--text-soft);
}

strong {
  color: var(--text);
}

.hero {
  padding: 3rem 0 2rem;
}

.hero__grid {
  display: grid;
  gap: 1rem;
}

.hero__copy,
.hero__visual,
.info-card,
.compare-card,
.benefit-card,
.step-card,
.faq-item,
.final-cta__inner,
.image-frame {
  background: var(--surface-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.hero__copy,
.hero__visual {
  padding: 2rem;
  box-shadow: var(--shadow);
}

.hero__copy {
  display: grid;
  align-content: center;
}

.hero__visual {
  padding: 0;
  overflow: hidden;
}

.hero__lead {
  max-width: 39rem;
  margin-top: 1.15rem;
  font-size: 1.05rem;
}

.hero__meta-list,
.check-list {
  margin: 1.35rem 0 0;
  padding-left: 1.2rem;
  display: grid;
  gap: 0.75rem;
}

.hero__meta-list {
  color: var(--text);
  font-weight: 600;
}

.hero__meta-list li::marker {
  color: var(--accent-dark);
}

.hero__actions {
  display: grid;
  gap: 0.7rem;
  margin-top: 1.6rem;
  max-width: 38rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0.95rem 1.35rem;
  border-radius: 999px;
  min-width: 270px;
  font-size: 0.98rem;
  font-weight: 800;
  text-align: center;
  transition:
    transform 160ms ease,
    background-color 160ms ease,
    box-shadow 160ms ease,
    border-color 160ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button--primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 12px 26px rgba(133, 89, 43, 0.22);
}

.button--primary:hover,
.button--primary:focus-visible {
  background: var(--accent-dark);
}

.button--secondary {
  background: rgba(255, 255, 255, 0.56);
  color: var(--text);
  border: 1px solid var(--line-strong);
  box-shadow: none;
}

.button--secondary:hover,
.button--secondary:focus-visible {
  background: rgba(255, 255, 255, 0.86);
}

.button:focus-visible {
  outline: 2px solid rgba(31, 37, 44, 0.3);
  outline-offset: 2px;
}

.cta-hero,
.cta-bottom {
  width: 100%;
  max-width: none;
}

.image-frame {
  margin: 0;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-frame--hero {
  min-height: 100%;
  height: 100%;
  border: 0;
  border-radius: inherit;
  box-shadow: none;
}

.image-frame--solution {
  min-height: 340px;
  padding: 0;
}

.trust-strip {
  padding: 0 0 1.4rem;
}

.trust-strip__inner {
  display: grid;
  gap: 0.9rem;
  padding: 0.7rem 0;
  background: rgba(248, 242, 232, 0.72);
  border-top: 1px solid rgba(160, 114, 63, 0.14);
  border-bottom: 1px solid rgba(160, 114, 63, 0.14);
}

.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 0;
  min-height: 100%;
  padding: 1.2rem 1.1rem;
  text-align: center;
  background: transparent;
  border: 0;
  border-radius: 18px;
  box-shadow: none;
}

.trust-item p {
  color: var(--text);
  font-size: 0.92rem;
  line-height: 1.5;
  margin: 0;
}

.trust-item strong {
  display: inline;
}

.intro-copy {
  display: grid;
  gap: 0.9rem;
  max-width: 920px;
}

.split-layout {
  display: grid;
  gap: 1rem;
}

.split-layout--solution {
  gap: 1.4rem;
}

.category-grid,
.compare-grid,
.benefit-grid,
.steps-grid {
  display: grid;
  gap: 1rem;
}

.info-card,
.compare-card,
.benefit-card,
.step-card {
  padding: 1.45rem;
}

.benefit-grid {
  gap: 12px;
}

.benefit-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-height: 100%;
  padding: 20px 22px;
  background: var(--surface);
  border: 0.5px solid var(--line-strong);
  border-radius: 12px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.benefit-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 10px;
}

.benefit-card__icon svg {
  width: 18px;
  height: 18px;
}

.benefit-card__icon--tax {
  background: rgba(70, 138, 92, 0.14);
  color: #3f7f54;
}

.benefit-card__icon--price {
  background: rgba(72, 120, 196, 0.14);
  color: #446eb5;
}

.benefit-card__icon--storage {
  background: rgba(197, 142, 45, 0.16);
  color: #b37a22;
}

.benefit-card__icon--profit {
  background: rgba(105, 152, 79, 0.14);
  color: #5a8d45;
}

.benefit-card__icon--flex {
  background: rgba(84, 136, 165, 0.14);
  color: #4f7f99;
}

.benefit-card__icon--audit {
  background: rgba(135, 102, 174, 0.14);
  color: #7a5aa7;
}

.info-card h3,
.compare-card h3,
.benefit-card h3,
.step-card h3 {
  margin-bottom: 0.7rem;
}

.benefit-card h3 {
  margin-bottom: 0;
}

.compare-card {
  position: relative;
  min-height: 100%;
}

.compare-card--highlight {
  border: 1px solid rgba(160, 114, 63, 0.36);
  background: linear-gradient(180deg, rgba(255, 253, 249, 0.96), rgba(248, 242, 232, 0.98));
  box-shadow: 0 16px 34px rgba(160, 114, 63, 0.12);
}

.compare-card--link {
  display: block;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease;
}

.compare-card--link:hover,
.compare-card--link:focus-visible {
  transform: translateY(-5px) scale(1.01);
  box-shadow: 0 28px 52px rgba(160, 114, 63, 0.22);
}

.badge {
  display: inline-flex;
  align-items: center;
  margin-bottom: 0.85rem;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.check-list {
  color: var(--text);
  font-weight: 600;
  list-style: none;
  padding-left: 0;
}

.check-list li {
  display: grid;
  grid-template-columns: 1rem 1fr;
  align-items: start;
  gap: 0.45rem;
}

.check-list__icon {
  display: inline-block;
  line-height: 1.45;
  text-align: center;
}

.check-list--mixed {
  font-weight: 500;
}

.step-card {
  text-align: left;
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.2rem;
  height: 2.2rem;
  margin-bottom: 0.9rem;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent-dark);
  font-weight: 800;
}

.section-cta {
  display: flex;
  justify-content: center;
  margin-top: 1.7rem;
}

.cta-mid {
  width: min(100%, 520px);
}

.faq-list {
  display: grid;
  gap: 0.85rem;
}

.faq-item {
  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding: 1.1rem 1.2rem;
  border: 0;
  background: transparent;
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  text-align: left;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

.faq-question span:last-child {
  color: var(--accent-dark);
  font-size: 1.3rem;
  line-height: 1;
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 180ms ease;
}

.faq-answer > div {
  overflow: hidden;
}

.faq-answer p {
  padding: 0 1.2rem 1.15rem;
}

.faq-item.is-open .faq-answer {
  grid-template-rows: 1fr;
}

.faq-item.is-open .faq-question span:last-child {
  transform: rotate(45deg);
}

.section--contact {
  padding-top: 1rem;
}

.question-module {
  display: grid;
  gap: 1.4rem;
  padding: 1.6rem;
  background: var(--surface-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.question-module__intro {
  display: grid;
  gap: 0.7rem;
}

.contact-heading {
  font-size: clamp(1.35rem, 3vw, 1.75rem);
  letter-spacing: -0.02em;
}

.question-form {
  display: grid;
  gap: 1rem;
}

.question-form__grid {
  display: grid;
  gap: 0.9rem;
}

.question-form__grid--single {
  grid-template-columns: 1fr;
}

.field {
  display: grid;
  gap: 0.45rem;
}

.field__label {
  color: var(--text);
  font-size: 0.92rem;
  font-weight: 800;
}

.field__control {
  width: 100%;
  min-height: 56px;
  padding: 0.95rem 1rem;
  border: 1px solid var(--line-strong);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--text);
  font: inherit;
  transition:
    border-color 160ms ease,
    box-shadow 160ms ease,
    background-color 160ms ease;
}

.field__control:hover {
  background: rgba(255, 255, 255, 0.84);
}

.field__control:focus {
  outline: none;
  border-color: rgba(160, 114, 63, 0.58);
  box-shadow: 0 0 0 4px rgba(160, 114, 63, 0.12);
  background: #fff;
}

.field__control--textarea {
  min-height: 132px;
  resize: vertical;
}

.field--error .field__control {
  border-color: #b8564d;
  box-shadow: 0 0 0 4px rgba(184, 86, 77, 0.12);
}

.question-form__actions {
  display: grid;
  gap: 0.85rem;
  align-items: center;
}

.question-form__button {
  width: min(100%, 280px);
}

.question-form__button[disabled] {
  opacity: 0.7;
  cursor: wait;
  transform: none;
}

.form-status {
  min-height: 1.5rem;
  font-size: 0.95rem;
  font-weight: 700;
}

.form-status.is-error {
  color: #9f473f;
}

.form-status.is-success {
  color: #2f5a35;
}

.final-cta {
  padding-top: 2.4rem;
}

.final-cta__inner {
  display: grid;
  gap: 0.95rem;
  justify-items: center;
  max-width: 900px;
  padding: 2rem;
  text-align: center;
  box-shadow: var(--shadow);
}

.final-cta__inner .cta-bottom {
  width: min(100%, 520px);
}

.partner-section-grid,
.partner-dual-grid {
  display: grid;
  gap: 1rem;
}

.partner-overview {
  display: grid;
  gap: 1rem;
}

.hero--partner .hero__copy {
  min-width: 0;
}

.hero--partner h1 {
  max-width: 13ch;
}

.partner-card {
  padding: 1.45rem;
  background: var(--surface-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.partner-card h3 {
  margin-bottom: 1rem;
}

.partner-card .check-list {
  margin-top: 0;
}

.partner-card--list {
  display: grid;
  align-content: start;
}

.partner-card--list h2 {
  margin-bottom: 1rem;
}

.partner-card--list .eyebrow {
  margin-bottom: 0.7rem;
}

.partner-card--list .check-list {
  gap: 0.95rem;
}

.partner-card--copy {
  display: grid;
  align-content: start;
  gap: 0.7rem;
}

.partner-card--center {
  text-align: center;
}

.partner-card--facts {
  padding: 1.3rem 1.35rem;
  display: flex;
  align-items: center;
}

.partner-card--facts .check-list {
  gap: 0.65rem;
  font-size: 0.96rem;
  width: 100%;
}

.partner-card h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
}

.partner-note {
  font-size: 0.9rem;
}

.partner-note--lead {
  margin-bottom: 1.25rem;
  max-width: 38rem;
}

.partner-backlink-wrap {
  margin-bottom: 1.2rem;
  grid-column: 1 / -1;
}

.hero__hint {
  margin-top: 0.1rem;
  font-size: 0.9rem;
  font-weight: 600;
  text-align: center;
}

.media-placeholder {
  display: grid;
  place-items: center;
  min-height: 320px;
  padding: 1.6rem;
  background:
    radial-gradient(circle at top right, rgba(160, 114, 63, 0.18), transparent 32%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(248, 242, 232, 0.96));
  border: 1px dashed rgba(160, 114, 63, 0.34);
  border-radius: inherit;
  color: var(--accent-dark);
  text-align: center;
}

.media-placeholder__label {
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.media-placeholder__hint {
  margin-top: 0.45rem;
  font-size: 0.95rem;
  color: var(--text-soft);
}

.media-placeholder--empty {
  border-style: solid;
  border-color: transparent;
  background: transparent;
}

.partner-steps-grid {
  display: grid;
  gap: 1rem;
}

.partner-step-index {
  margin: 0 0 0.5rem;
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1;
  opacity: 0.15;
}

#warum .image-frame--solution,
#warum .partner-card {
  min-height: 0;
}

#warum .image-frame--solution .media-placeholder--empty {
  min-height: 0;
  padding-top: 0;
  padding-bottom: 0;
}

#partner .image-frame--solution,
#partner .partner-card {
  min-height: 0;
}

#partner .partner-card--facts {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  height: 100%;
}

#partner .image-frame--solution {
  display: flex;
}

#partner .image-frame--solution .media-placeholder {
  min-height: 100%;
  height: 100%;
  width: 100%;
  padding-top: 1.45rem;
  padding-bottom: 1.45rem;
}

.legal-page {
  padding: 5rem 0 3.5rem;
}

.legal-layout {
  display: grid;
  gap: 1rem;
}

.legal-card {
  padding: 2rem;
  background: var(--surface-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.legal-card p + p,
.legal-card p + h2,
.legal-card p + h3,
.legal-card h2 + p,
.legal-card h3 + p {
  margin-top: 0.9rem;
}

.legal-card h2,
.legal-card h3 {
  font-size: 1.2rem;
}

.legal-card h1 + h2,
.legal-card h1 + h3 {
  margin-top: 1.85rem;
}

.legal-stack {
  display: grid;
  gap: 0.2rem;
}

.legal-backlink {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-bottom: 1.2rem;
  font-weight: 700;
  color: var(--accent-dark);
}

.legal-source {
  font-size: 0.92rem;
}

.legal-section {
  display: grid;
  gap: 1.1rem;
}

.legal-section + .legal-section {
  margin-top: 1.4rem;
}

.legal-section ul {
  margin: 0;
  padding-left: 1.2rem;
  display: grid;
  gap: 0.7rem;
  color: var(--text-soft);
}

.legal-section li::marker {
  color: var(--accent-dark);
}

.legal-section strong {
  color: var(--text);
}

.footer {
  padding: 0 0 2.2rem;
}

.footer__inner {
  display: grid;
  gap: 1rem;
  padding-top: 0.75rem;
}

.footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  font-weight: 700;
}

.footer__note {
  font-size: 0.9rem;
}

@media (min-width: 680px) {
  .hamburger {
    display: none !important;
  }

  .site-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
  }

  .section {
    padding: 4.7rem 0;
  }

  .section--intro {
    padding: 4rem 0 2.8rem;
  }

  .hero {
    padding-top: 4rem;
  }

  .hero__copy,
  .final-cta__inner,
  .question-module,
  .legal-card {
    padding: 2.5rem;
  }

  .trust-strip__inner {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: center;
  }

  .category-grid,
  .compare-grid,
  .steps-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .partner-section-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .partner-dual-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .partner-overview {
    grid-template-columns: minmax(320px, 0.95fr) minmax(0, 1.05fr);
    align-items: stretch;
  }

  .partner-steps-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .benefit-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .benefits-heading {
    white-space: nowrap;
  }

  .question-form__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .question-form__actions {
    grid-template-columns: auto 1fr;
  }
}

@media (min-width: 960px) {
  .hero__grid {
    grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
    align-items: stretch;
  }

  .split-layout {
    grid-template-columns: minmax(320px, 0.92fr) minmax(0, 1.08fr);
    align-items: start;
  }

  .split-layout--solution {
    column-gap: 1.9rem;
  }

  .solution-visual {
    display: flex;
    height: 100%;
  }

  .solution-visual .image-frame--solution {
    width: 100%;
    min-height: 100%;
  }

  .benefit-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .legal-layout {
    grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.75fr);
    align-items: start;
  }
}

@media (max-width: 679px) {
  .site-header {
    background: #fbf8f3;
    backdrop-filter: none;
  }

  .site-header__inner {
    min-height: 82px;
  }

  .header-brand img {
    height: 34px;
  }

  .hamburger {
    display: flex;
  }

  .site-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    min-height: calc(100dvh - 82px);
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    padding: 1.5rem 1rem;
    background: rgba(251, 248, 243, 0.98);
    backdrop-filter: blur(14px);
    z-index: 25;
    overflow-y: auto;
  }

  .site-nav.is-open {
    display: flex !important;
  }

  .site-nav a {
    display: block;
    width: 100%;
    padding: 1rem 1.2rem;
    text-align: center;
    font-size: 1.1rem;
    border-bottom: 1px solid var(--line);
  }

  .site-nav a:last-child {
    border-bottom: 0;
  }

  .benefit-grid {
    grid-template-columns: 1fr;
  }

  .button {
    width: 100%;
    min-width: 0;
  }

  .split-layout--solution .solution-visual {
    order: 2;
    height: auto;
  }

  .split-layout--solution .section-copy {
    order: 1;
  }

  .image-frame--solution {
    min-height: 0;
    height: auto;
  }

  .image-frame--solution img {
    height: auto;
    object-fit: contain;
  }

  .hero__grid {
    align-items: start;
  }

  .hero:not(.hero--partner) .hero__visual {
    display: block;
    padding: 0;
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
    height: auto;
    align-self: start;
    overflow: visible;
  }

  .hero:not(.hero--partner) .image-frame--hero {
    display: block;
    height: auto;
    min-height: 0;
    aspect-ratio: auto;
    margin: 0;
    overflow: visible;
    background: transparent !important;
    border: 0 !important;
    border-radius: 0;
    box-shadow: none !important;
  }

  .hero:not(.hero--partner) .image-frame--hero img {
    display: block;
    width: 100%;
    height: auto;
    max-height: none;
    aspect-ratio: auto;
    object-fit: contain;
  }

  .hero--partner .hero__visual {
    height: auto;
    align-self: start;
  }

  .hero--partner .image-frame--hero {
    height: auto;
    min-height: 0;
    border-radius: inherit;
    overflow: hidden;
  }

  .hero--partner .image-frame--hero img {
    height: auto;
    object-fit: cover;
  }

  .footer__note {
    order: 1;
  }

  .footer__links {
    order: 2;
    align-items: flex-start;
    flex-direction: column;
    gap: 0.6rem;
  }

  .footer__links a,
  .footer__links button {
    display: block;
    width: 100%;
    text-align: left;
  }

  .footer__inner {
    gap: 1.4rem;
  }

  .legal-page {
    padding: 2rem 0 3rem;
    overflow-x: hidden;
  }

  .legal-card {
    padding: 1.5rem;
    overflow: hidden;
  }

  .legal-card h1 {
    font-size: clamp(2rem, 11vw, 2.8rem);
    max-width: none;
    overflow-wrap: anywhere;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition: none !important;
  }
}

.cookie-banner {
  position: fixed;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 9999;
  max-width: 920px;
  margin: 0 auto;
  padding: 22px 22px 18px;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(17, 24, 39, 0.08);
  border-radius: 18px;
  box-shadow: 0 18px 50px rgba(17, 24, 39, 0.16);
  backdrop-filter: blur(10px);
}

.cookie-banner[hidden] {
  display: none !important;
}

.cookie-banner__title {
  margin: 0 0 8px;
  font-size: 1.05rem;
  line-height: 1.3;
  font-weight: 700;
  color: #111827;
}

.cookie-banner__text {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.6;
  color: #374151;
  max-width: none;
}

.cookie-banner__text a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.cookie-banner__panel[hidden] {
  display: none !important;
}

.cookie-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.cookie-banner__btn {
  appearance: none;
  border: 0;
  border-radius: 999px;
  padding: 12px 18px;
  font: inherit;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.15s ease, opacity 0.15s ease, background-color 0.15s ease;
}

.cookie-banner__btn:hover {
  transform: translateY(-1px);
}

.cookie-banner__btn--primary {
  background: #111827;
  color: #ffffff;
}

.cookie-banner__btn--secondary {
  background: #eef2f7;
  color: #111827;
}

.cookie-banner__btn--link {
  background: transparent;
  color: #4b5563;
  padding-left: 4px;
  padding-right: 4px;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.cookie-banner__btn--ghost {
  background: #f8fafc;
  color: #111827;
  border: 1px solid rgba(17, 24, 39, 0.08);
}

.cookie-banner__detail {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(17, 24, 39, 0.08);
}

.cookie-banner__detail-title {
  margin: 0 0 6px;
  font-size: 0.98rem;
  font-weight: 700;
  color: #111827;
}

/* ── Checkbox für Datenschutz-Einwilligung ── */
.field--checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0;
}

.checkbox-label {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.6rem;
  align-items: start;
  cursor: pointer;
  font-size: 0.92rem;
  line-height: 1.5;
  color: var(--text-soft);
}

.checkbox-control {
  width: 20px;
  height: 20px;
  margin-top: 2px;
  accent-color: var(--accent);
  cursor: pointer;
  flex-shrink: 0;
}

.checkbox-text a {
  color: var(--accent-dark);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.checkbox-text a:hover,
.checkbox-text a:focus-visible {
  color: var(--text);
}

.field--checkbox.field--error .checkbox-control {
  outline: 2px solid #b8564d;
  outline-offset: 2px;
}

/* ── Tabellen-Styling für Datenschutzseite ── */
.legal-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1rem;
  font-size: 0.92rem;
  line-height: 1.5;
}

.legal-table th,
.legal-table td {
  padding: 0.75rem 0.9rem;
  text-align: left;
  border-bottom: 1px solid var(--line);
}

.legal-table th {
  font-weight: 800;
  color: var(--text);
  background: var(--surface-muted);
  font-size: 0.85rem;
  letter-spacing: 0.03em;
  white-space: nowrap;
}

.legal-table td {
  color: var(--text-soft);
}

.legal-table tbody tr:last-child td {
  border-bottom: 0;
}

@media (max-width: 679px) {
  .legal-table {
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .legal-table th,
  .legal-table td {
    padding: 0.6rem 0.7rem;
    font-size: 0.85rem;
    min-width: 120px;
  }
}

.cookie-banner__detail-text {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.6;
  color: #4b5563;
}

.cookie-settings-trigger {
  appearance: none;
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  cursor: pointer;
  text-decoration: none;
  padding: 0;
}

@media (max-width: 640px) {
  .cookie-banner {
    left: 14px;
    right: 14px;
    bottom: 14px;
    padding: 18px 16px 16px;
    border-radius: 16px;
  }

  .cookie-banner__actions {
    flex-direction: column;
  }

  .cookie-banner__btn {
    width: 100%;
  }

  .cookie-banner__detail {
    margin-top: 16px;
    padding-top: 16px;
  }
}
