/* =========================================================
   BEYOND STEPS — Wirkfeld Detailseiten V2
   Master: Steuern
   ========================================================= */

@font-face {
  font-family: "Inter";
  src: url("../assets/fonts/inter/inter-v19-latin-regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

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

@font-face {
  font-family: "Source Sans 3";
  src: url("../assets/fonts/source-sans-3/source-sans-3-v19-latin-regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Bruno Ace SC";
  src: url("../assets/fonts/bruno-ace-sc/bruno-ace-sc-v7-latin-regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Michroma";
  src: url("../assets/fonts/michroma/michroma-v21-latin-regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  --font-brand: "Bruno Ace SC", sans-serif;
  --font-brand-sub: "Michroma", sans-serif;
  --font-body: "Source Sans 3", sans-serif;
  --font-ui: "Inter", sans-serif;

  --page-width: 1380px;
  --page-padding-x: 54px;
  --color-bg: #02060a;
  --color-text-main: #c9edf3;
  --color-text-strong: #e6f8fb;
  --color-text-soft: rgba(206, 233, 239, 0.82);
  --color-text-faint: rgba(174, 207, 214, 0.66);
  --color-cyan: rgba(94, 218, 234, 0.92);
  --color-cyan-soft: rgba(94, 218, 234, 0.18);
  --color-gold: rgba(220, 194, 136, 0.94);
  --color-gold-strong: rgba(232, 194, 116, 0.98);
  --color-gold-soft: rgba(220, 194, 136, 0.28);
  --color-icon-head: rgba(220, 194, 136, 0.58);
  --color-icon-soft: rgba(198, 223, 226, 0.54);
  --color-border: rgba(111, 206, 222, 0.18);
  --color-border-gold: rgba(220, 194, 136, 0.26);
  --panel-radius: 22px;
  --card-radius: 18px;
}

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

html {
  min-height: 100%;
  scroll-behavior: smooth;
}

body {
  min-height: 100%;
  margin: 0;
  overflow-x: hidden;
  color: var(--color-text-main);
  background: var(--color-bg);
  font-family: var(--font-body);
}

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

svg {
  overflow: visible;
}

.wirkfeld-page {
  position: relative;
  min-height: 100svh;
}

.page-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  background-image:
    linear-gradient(90deg, rgba(0, 0, 0, 0.72) 0%, rgba(0, 0, 0, 0.48) 38%, rgba(0, 0, 0, 0.30) 68%, rgba(0, 0, 0, 0.66) 100%),
    radial-gradient(circle at 24% 18%, rgba(56, 128, 143, 0.18) 0%, rgba(56, 128, 143, 0) 34%),
    radial-gradient(circle at 78% 18%, rgba(219, 180, 104, 0.09) 0%, rgba(219, 180, 104, 0) 28%),
    url("../assets/img/backgrounds/bg-general-hd.png");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  filter: brightness(0.74) saturate(0.98);
}

.page-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.16) 0%, rgba(0, 0, 0, 0.72) 78%, rgba(0, 0, 0, 0.88) 100%),
    radial-gradient(circle at 50% 48%, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.46) 76%);
}

.site-header,
main,
.site-footer {
  position: relative;
  z-index: 2;
}

.site-header {
  width: min(100%, var(--page-width));
  margin: 0 auto;
  padding: 32px var(--page-padding-x) 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.site-logo-link {
  display: inline-flex;
  text-decoration: none;
}

.site-logo {
  width: 66px;
  height: auto;
  filter: drop-shadow(0 10px 18px rgba(0, 0, 0, 0.28));
}

.site-nav,
.legal-nav {
  display: inline-flex;
  align-items: center;
  gap: 28px;
}

.site-nav a,
.legal-nav a {
  color: rgba(183, 225, 232, 0.78);
  font-family: var(--font-ui);
  font-size: 0.78rem;
  line-height: 1;
  letter-spacing: 0.03em;
  text-decoration: none;
  transition: color 180ms ease, text-shadow 180ms ease;
}

.site-nav a[aria-current="page"] {
  color: var(--color-gold);
}

.site-nav a:hover,
.site-nav a:focus-visible,
.legal-nav a:hover,
.legal-nav a:focus-visible {
  color: rgba(240, 221, 171, 0.96);
  text-shadow: 0 0 12px rgba(220, 194, 136, 0.20);
}

.site-logo-link:focus-visible,
.site-nav a:focus-visible,
.legal-nav a:focus-visible,
.detail-button:focus-visible {
  outline: 1px solid rgba(220, 194, 136, 0.72);
  outline-offset: 4px;
}

main {
  width: min(100%, var(--page-width));
  margin: 0 auto;
  padding: 54px var(--page-padding-x) 74px;
}

.detail-hero {
  min-height: 570px;
  display: grid;
  grid-template-columns: minmax(320px, 0.78fr) minmax(540px, 1.22fr);
  align-items: center;
  gap: 72px;
  padding: 8px 0 58px;
}

.detail-hero__visual {
  position: relative;
  min-height: 470px;
}

.steering-map {
  position: relative;
  width: min(100%, 495px);
  aspect-ratio: 1;
  margin: 0 auto;
  opacity: 0.96;
}

.steering-map::before {
  content: "";
  position: absolute;
  inset: 7%;
  border-radius: 50%;
  background:
    radial-gradient(circle at 48% 52%, rgba(15, 89, 108, 0.28) 0%, rgba(15, 89, 108, 0.04) 42%, rgba(0, 0, 0, 0) 70%);
  filter: blur(6px);
}

.steering-map svg {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
}

.map-ring,
.map-grid,
.map-path,
.map-compass circle,
.map-compass path {
  fill: none;
  stroke: rgba(220, 194, 136, 0.48);
  stroke-width: 1.25;
}

.map-ring--outer {
  stroke: rgba(220, 194, 136, 0.72);
}

.map-ring--dash {
  stroke-dasharray: 3 8;
  stroke: rgba(220, 194, 136, 0.32);
}

.map-grid {
  stroke: rgba(114, 211, 225, 0.15);
}

.map-path {
  stroke: rgba(220, 194, 136, 0.50);
}

.map-path--soft {
  stroke: rgba(108, 221, 236, 0.23);
}

.map-node-group circle {
  fill: rgba(232, 194, 116, 0.98);
  stroke: rgba(255, 242, 200, 0.36);
  stroke-width: 2;
}

.map-compass path {
  stroke: rgba(232, 194, 116, 0.96);
  fill: rgba(220, 194, 136, 0.10);
  stroke-width: 1.5;
}

.map-compass circle {
  stroke: rgba(232, 194, 116, 0.72);
}

.map-label {
  position: absolute;
  z-index: 2;
  color: rgba(221, 233, 235, 0.78);
  font-family: var(--font-ui);
  font-size: clamp(0.60rem, 0.62vw, 0.72rem);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-shadow: 0 0 16px rgba(0, 0, 0, 0.62);
}

.map-label--top-left { top: 11%; left: 6%; }
.map-label--top-right { top: 11%; right: 4%; }
.map-label--left { top: 50%; left: -1%; transform: translateY(-50%); }
.map-label--right { top: 50%; right: -2%; transform: translateY(-50%); }
.map-label--bottom-left { bottom: 8%; left: 16%; }
.map-label--bottom-right { bottom: 8%; right: 8%; }

.detail-hero__copy {
  max-width: 780px;
}

.detail-kicker {
  margin: 0 0 18px;
  color: rgba(220, 194, 136, 0.92);
  font-family: var(--font-brand-sub);
  font-size: clamp(0.64rem, 0.68vw, 0.78rem);
  line-height: 1.25;
  letter-spacing: 0.26em;
  text-transform: uppercase;
}

.detail-hero h1 {
  margin: 0;
  color: transparent;
  background: linear-gradient(90deg, #e6f8fb 0%, #c2edf4 32%, #87d9e5 68%, #4eb6c6 100%);
  -webkit-background-clip: text;
  background-clip: text;
  font-family: var(--font-brand);
  font-size: clamp(2.45rem, 3.85vw, 4.25rem);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: 0.035em;
}

.detail-hero h1 span {
  display: block;
}

.detail-claim {
  margin: 24px 0 0;
  color: rgba(232, 194, 116, 0.98);
  font-family: var(--font-brand-sub);
  font-size: clamp(1.18rem, 1.55vw, 1.92rem);
  line-height: 1.36;
  letter-spacing: 0.02em;
}

.detail-line {
  display: block;
  width: 52px;
  height: 2px;
  margin: 30px 0 0;
  background: linear-gradient(90deg, rgba(232, 194, 116, 0.96), rgba(232, 194, 116, 0));
}

.detail-tags {
  margin: 24px 0 0;
  color: rgba(204, 232, 237, 0.80);
  font-family: var(--font-body);
  font-size: clamp(1.05rem, 1.22vw, 1.35rem);
  line-height: 1.52;
}

.detail-section {
  margin-top: 28px;
}

.detail-section + .detail-section {
  margin-top: 26px;
}

.detail-section--open {
  position: relative;
  overflow: visible;
  margin-top: 56px;
}

.detail-section--split + .detail-section--open {
  margin-top: 72px;
}

.detail-section--open + .detail-section--open {
  margin-top: 80px;
}

.detail-section--open + .impact-section,
.impact-section + .tools-section,
.tools-section + .detail-cta {
  margin-top: 72px;
}

.detail-section--open .detail-card__head--wide {
  padding: 0;
}

.detail-section--open .build-grid,
.detail-section--open .artifact-grid {
  padding: 26px 0 0;
  gap: 16px;
}

.detail-section--open .build-tile,
.detail-section--open .artifact-tile {
  border-color: rgba(132, 221, 233, 0.17);
  background:
    linear-gradient(180deg, rgba(8, 35, 47, 0.68) 0%, rgba(5, 20, 30, 0.70) 100%);
  box-shadow:
    0 12px 28px rgba(0, 0, 0, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.026);
}

.detail-section--split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.detail-card,
.tools-strip,
.detail-cta {
  position: relative;
  overflow: hidden;
  border-radius: var(--panel-radius);
  border: 1px solid var(--color-border-gold);
  background:
    linear-gradient(180deg, rgba(6, 19, 29, 0.56) 0%, rgba(4, 14, 22, 0.68) 100%);
  box-shadow:
    0 16px 38px rgba(0, 0, 0, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.025),
    inset 0 0 0 1px rgba(87, 201, 218, 0.04);
}

.detail-card::before,
.tools-strip::before,
.detail-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 12% 12%, rgba(97, 224, 240, 0.045) 0%, rgba(97, 224, 240, 0) 24%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.012) 0%, rgba(255, 255, 255, 0) 22%);
}

.detail-cta::before {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.18) 0%, rgba(0, 0, 0, 0.06) 38%, rgba(0, 0, 0, 0) 70%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.012) 0%, rgba(255, 255, 255, 0) 36%);
}

.detail-list-card {
  padding: 36px 38px 32px;
}

.detail-card__head {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 18px;
}

.detail-card__head--wide {
  padding: 34px 38px 0;
}

.detail-card__head h2,
.tools-strip h2,
.detail-cta h2 {
  margin: 0;
  color: var(--color-gold);
  font-family: var(--font-brand-sub);
  font-size: clamp(1.05rem, 1.2vw, 1.42rem);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 0.04em;
}

.detail-icon {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  color: var(--color-icon-head);
  opacity: 0.86;
}

.detail-icon svg,
.build-tile svg,
.artifact-tile svg,
.impact-grid svg,
.tools-strip__icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.12;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.line-list {
  position: relative;
  z-index: 1;
  list-style: none;
  margin: 30px 0 0;
  padding: 0;
}

.line-list li {
  position: relative;
  min-height: 46px;
  display: flex;
  align-items: center;
  color: rgba(218, 239, 243, 0.86);
  font-size: clamp(1rem, 1.06vw, 1.16rem);
  line-height: 1.38;
  border-bottom: 1px solid rgba(166, 220, 229, 0.10);
}

.line-list li:last-child {
  border-bottom: 0;
}

.build-grid,
.artifact-grid,
.impact-grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 14px;
  padding: 28px 38px 38px;
}

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

.build-tile,
.artifact-tile {
  min-height: 138px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 20px 16px;
  border-radius: 14px;
  border: 1px solid rgba(132, 221, 233, 0.15);
  background: linear-gradient(180deg, rgba(8, 32, 43, 0.72) 0%, rgba(5, 20, 30, 0.76) 100%);
  color: var(--color-icon-soft);
  text-align: center;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.build-tile svg {
  width: 42px;
  height: 42px;
}

.build-tile p,
.artifact-tile span,
.impact-grid span {
  margin: 0;
  color: rgba(222, 242, 245, 0.86);
  font-size: 1.02rem;
  line-height: 1.24;
}

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

.artifact-tile {
  min-height: 130px;
}

.artifact-tile svg {
  width: 44px;
  height: 44px;
  color: var(--color-icon-soft);
}

.impact-card {
  padding-bottom: 6px;
}

.impact-grid {
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 0;
  padding-top: 30px;
}

.impact-grid article {
  min-height: 120px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 16px 18px;
  text-align: center;
  border-right: 1px solid rgba(166, 220, 229, 0.12);
}

.impact-grid article:last-child {
  border-right: 0;
}

.impact-grid svg {
  width: 42px;
  height: 42px;
  color: var(--color-icon-soft);
}

.tools-strip {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 24px;
  align-items: start;
  padding: 32px 38px;
}

.tools-strip__icon {
  position: relative;
  z-index: 1;
  width: 42px;
  height: 42px;
  color: var(--color-icon-head);
  opacity: 0.86;
}

.tools-strip h2,
.tools-strip p {
  position: relative;
  z-index: 1;
}

.tools-strip p {
  margin: 14px 0 0;
  color: rgba(207, 232, 237, 0.78);
  font-size: 0.98rem;
  line-height: 1.7;
}


.detail-cta {
  min-height: 300px;
  display: block;
  background:
    linear-gradient(90deg, rgba(1, 6, 10, 0.92) 0%, rgba(1, 6, 10, 0.82) 28%, rgba(1, 6, 10, 0.46) 52%, rgba(1, 6, 10, 0.14) 76%, rgba(1, 6, 10, 0.02) 100%),
    linear-gradient(180deg, rgba(1, 6, 10, 0.10) 0%, rgba(1, 6, 10, 0.18) 100%),
    url("../assets/img/backgrounds/bg-the-way.png") center center / cover no-repeat;
}

.detail-cta__copy {
  position: relative;
  z-index: 2;
  padding: 46px 54px;
}

.detail-cta h2 {
  margin-top: 0;
  color: transparent;
  background: linear-gradient(90deg, #e6f8fb 0%, #9adfe9 54%, #4eb6c6 100%);
  -webkit-background-clip: text;
  background-clip: text;
  font-family: var(--font-brand);
  font-size: clamp(2.4rem, 3.3vw, 4rem);
  letter-spacing: 0.04em;
}

.detail-cta p:not(.detail-kicker) {
  margin: 16px 0 0;
  color: rgba(232, 194, 116, 0.96);
  font-family: var(--font-body);
  font-size: clamp(1.08rem, 1.28vw, 1.45rem);
  line-height: 1.28;
}

.detail-button {
  margin-top: 26px;
  display: inline-flex;
  align-items: center;
  gap: 18px;
  min-height: 48px;
  padding: 0 24px;
  border-radius: 999px;
  border: 1px solid rgba(220, 194, 136, 0.44);
  color: rgba(232, 246, 248, 0.92);
  background: rgba(3, 11, 15, 0.30);
  font-family: var(--font-ui);
  font-size: 0.98rem;
  text-decoration: none;
  transition: border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.detail-button:hover,
.detail-button:focus-visible {
  border-color: rgba(232, 194, 116, 0.86);
  color: rgba(255, 243, 204, 0.98);
  transform: translateY(-1px);
}

.site-footer {
  width: min(100%, var(--page-width));
  margin: 0 auto;
  padding: 0 var(--page-padding-x) 42px;
  display: flex;
  justify-content: flex-end;
}


/* Harmonized open section rhythm: headings outside content containers */
.detail-section--headed {
  margin-top: 52px;
}

.detail-section--split.detail-section--headed {
  align-items: start;
}

.detail-block {
  min-width: 0;
}

.detail-card__head--outside {
  padding: 0;
  margin-bottom: 22px;
}

.detail-list-card--body {
  padding: 26px 32px 24px;
}

.detail-list-card--body .line-list {
  margin-top: 0;
}

.impact-section .impact-card {
  padding: 0 0 6px;
}

.impact-section .impact-grid {
  padding: 30px 38px 38px;
}

.tools-section .tools-strip {
  display: block;
  padding: 26px 34px;
}

.tools-section .tools-strip p {
  margin: 0;
}

@media (max-width: 880px) {
  .detail-section--split + .detail-section--open {
    margin-top: 56px;
  }

  .detail-section--open + .detail-section--open,
  .detail-section--open + .impact-section,
  .impact-section + .tools-section,
  .tools-section + .detail-cta {
    margin-top: 56px;
  }
}

@media (max-width: 1180px) {
  :root {
    --page-padding-x: 34px;
  }

  .detail-hero {
    grid-template-columns: 1fr;
    gap: 24px;
    padding-top: 20px;
  }

  .detail-hero__visual {
    min-height: auto;
    order: 2;
  }

  .detail-hero__copy {
    order: 1;
    max-width: 820px;
  }

  .steering-map {
    width: min(100%, 480px);
  }

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

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

  .impact-grid article:nth-child(3n) {
    border-right: 0;
  }

  .impact-grid article:nth-child(n + 4) {
    border-top: 1px solid rgba(166, 220, 229, 0.12);
  }
}

@media (max-width: 880px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-nav {
    width: 100%;
    flex-wrap: wrap;
    gap: 16px 22px;
  }

  main {
    padding-top: 40px;
  }

  .detail-hero {
    min-height: auto;
    padding-bottom: 34px;
  }

  .detail-section--split,
  .detail-cta {
    grid-template-columns: 1fr;
  }

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

  .detail-cta {
    min-height: 320px;
    background-position: 58% center;
  }

  .detail-cta::before {
    background:
      linear-gradient(90deg, rgba(0, 0, 0, 0.48) 0%, rgba(0, 0, 0, 0.20) 58%, rgba(0, 0, 0, 0.02) 100%),
      linear-gradient(180deg, rgba(0, 0, 0, 0.20) 0%, rgba(0, 0, 0, 0) 54%);
  }
}

@media (max-width: 640px) {
  :root {
    --page-padding-x: 22px;
  }

  .site-logo {
    width: 56px;
  }

  .site-nav,
  .legal-nav {
    gap: 13px 18px;
  }

  .site-nav a,
  .legal-nav a {
    font-size: 0.58rem;
  }

  .detail-hero h1 {
    font-size: clamp(2.25rem, 13vw, 3.45rem);
  }

  .detail-claim {
    font-size: 1.08rem;
  }

  .map-label {
    display: none;
  }

  .detail-list-card,
  .detail-card__head--wide,
  .build-grid,
  .artifact-grid,
  .impact-grid,
  .tools-strip,
  .detail-cta__copy {
    padding-left: 22px;
    padding-right: 22px;
  }

  .build-grid,
  .artifact-grid,
  .impact-grid {
    grid-template-columns: 1fr;
  }

  .detail-section--open .detail-card__head--wide,
  .detail-section--open .build-grid,
  .detail-section--open .artifact-grid {
    padding-left: 0;
    padding-right: 0;
  }

  .impact-grid article,
  .impact-grid article:nth-child(n) {
    border-right: 0;
    border-top: 1px solid rgba(166, 220, 229, 0.12);
  }

  .impact-grid article:first-child {
    border-top: 0;
  }

  .tools-strip {
    grid-template-columns: 1fr;
  }



  .detail-card__head--outside {
    margin-bottom: 18px;
  }

  .site-footer {
    justify-content: flex-start;
  }
}

/* Einheitliche Section-Header im Landingpage-Stil – Entscheiden */
.decision-section-header {
  width: min(100%, 920px);
  margin: 0 0 24px;
  text-align: left;
}

.decision-section-header h2 {
  margin: 0;
  font-family: var(--font-brand);
  font-size: clamp(1.52rem, 1.92vw, 2.48rem);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: 0.055em;
  color: transparent;
  background: linear-gradient(
    90deg,
    #d8f4f8 0%,
    #95dce7 34%,
    #49b5c7 68%,
    #276871 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
}

.decision-section-header__line {
  display: block;
  width: min(500px, 58%);
  height: 1px;
  margin-top: 14px;
  background: linear-gradient(
    90deg,
    rgba(205, 168, 99, 0.86) 0%,
    rgba(205, 168, 99, 0.44) 40%,
    rgba(205, 168, 99, 0.16) 74%,
    rgba(205, 168, 99, 0.04) 100%
  );
  box-shadow: 0 0 18px rgba(201, 163, 95, 0.14);
}

.decision-section-header p {
  margin: 14px 0 0;
  color: rgba(201, 237, 243, 0.86);
  font-family: var(--font-brand-sub);
  font-size: clamp(0.72rem, 0.88vw, 1rem);
  font-weight: 400;
  line-height: 1.36;
  letter-spacing: 0.075em;
}

.decision-section-header--in-card {
  margin-bottom: 18px;
}

.decision-section-header--in-card h2 {
  font-size: clamp(1.34rem, 1.72vw, 2.26rem);
}

.decision-section-header--cta {
  margin-bottom: 26px;
}

.decision-section-header--cta p {
  max-width: 640px;
}

.decision-section-text,
.bi-arch-fronttext,
.tools-strip p,
.detail-cta p,
.line-list,
.artifact-tile span {
  font-family: var(--font-body);
}


.decision-context-section .decision-section-header--context {
  grid-column: 1 / -1;
  margin-bottom: 8px;
}

.decision-card-subheader {
  margin: 0 0 18px;
  font-family: var(--font-brand);
  font-size: clamp(0.84rem, 0.98vw, 1.18rem);
  font-weight: 400;
  line-height: 1.14;
  letter-spacing: 0.06em;
  color: var(--color-gold);
  text-transform: uppercase;
}

.decision-context-section .detail-card {
  margin-top: 0;
}

.decision-bridge-card {
  padding: 34px 38px 32px;
}

.decision-bridge-card .decision-section-text {
  margin: 0;
  max-width: 980px;
  color: var(--color-text-soft);
  font-size: clamp(1rem, 1.06vw, 1.16rem);
  line-height: 1.68;
}

.decision-bridge-section .decision-section-text {
  max-width: 980px;
  margin: 0;
  color: var(--color-text-soft);
  font-size: clamp(1rem, 1.06vw, 1.16rem);
  line-height: 1.68;
}

.bi-architecture-section .bi-arch-fronttext {
  margin-top: 0;
}


/* Mehr Luft vor neuen Hauptkapiteln – erster Kontext-Header bleibt nah am Hero */
.decision-bridge-section,
.bi-architecture-section,
.impact-section,
.tools-section,
.detail-cta {
  margin-top: clamp(88px, 7.2vw, 126px);
}

@media (max-width: 880px) {
  .decision-bridge-section,
  .bi-architecture-section,
  .impact-section,
  .tools-section,
  .detail-cta {
    margin-top: 68px;
  }
}

@media (max-width: 720px) {
  .decision-section-header h2 {
    font-size: clamp(1.25rem, 6vw, 1.72rem);
  }

  .decision-section-header__line {
    width: min(320px, 72%);
  }

  
.decision-context-section .decision-section-header--context {
  grid-column: 1 / -1;
  margin-bottom: 8px;
}

.decision-card-subheader {
  margin: 0 0 18px;
  font-family: var(--font-brand);
  font-size: clamp(0.84rem, 0.98vw, 1.18rem);
  font-weight: 400;
  line-height: 1.14;
  letter-spacing: 0.06em;
  color: var(--color-gold);
  text-transform: uppercase;
}

.decision-context-section .detail-card {
  margin-top: 0;
}

.decision-bridge-card {
    padding: 28px 26px 26px;
  }
}

/* Fine-Tuning v8-021: Tools-Liste fachlich getrennt */
.tools-section .tools-strip p + p {
  margin-top: 8px;
}

/* =========================================================
   V9-100 — Organisationsentwicklung Relaunch-Template
   ========================================================= */

.oe-page {
  --page-width: 1490px;
}

/* Breitenangleichung v162: Wirkfeld-SubSites wie Organisationsentwicklung */
.wirkfeld-page--steuern,
.wirkfeld-page--entscheiden,
.wirkfeld-page--stabilisieren {
  --page-width: 1490px;
}

.oe-page .site-logo-link--with-text {
  align-items: center;
  gap: 14px;
}

.oe-page .site-logo-title {
  position: relative;
  display: inline-block;
  color: transparent;
  font-family: var(--font-brand);
  font-size: clamp(0.82rem, 1.02vw, 1.08rem);
  line-height: 1;
  letter-spacing: 0.08em;
  background: linear-gradient(90deg, #d8f4f8 0%, #95dce7 46%, #49b5c7 100%);
  -webkit-background-clip: text;
  background-clip: text;
  white-space: nowrap;
}

.oe-page .site-logo-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 78%;
  height: 1px;
  background: linear-gradient(90deg, rgba(220, 194, 136, 0.72) 0%, rgba(220, 194, 136, 0) 100%);
}

.oe-main {
  padding-top: clamp(54px, 6vw, 92px);
}

.oe-hero {
  max-width: 980px;
  min-height: auto;
  padding: clamp(34px, 5vw, 78px) 0 clamp(56px, 6vw, 92px);
}

.oe-hero h1 {
  max-width: none;
  margin: 0;
  color: transparent;
  background: linear-gradient(90deg, #e8fbff 0%, #a6e5ef 52%, #59bfd0 100%);
  -webkit-background-clip: text;
  background-clip: text;
  font-family: var(--font-brand);
  font-size: clamp(1.55rem, 3vw, 3.35rem);
  font-weight: 400;
  line-height: 1.04;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
}

.oe-hero .detail-line {
  width: min(520px, 58vw);
  margin: 28px 0 0;
}

.oe-hero__lead {
  max-width: 860px;
  margin: 30px 0 0;
  color: rgba(232, 194, 116, 0.92);
  font-family: var(--font-brand-sub);
  font-size: clamp(0.92rem, 1.15vw, 1.18rem);
  line-height: 1.65;
  letter-spacing: 0.045em;
  text-transform: uppercase;
}

.oe-hero__text {
  max-width: 820px;
  margin: 24px 0 0;
  color: rgba(211, 235, 240, 0.86);
  font-size: clamp(1.05rem, 1.25vw, 1.34rem);
  line-height: 1.62;
}

.oe-section {
  margin-top: clamp(84px, 7vw, 124px);
}

.oe-section:first-of-type {
  margin-top: 0;
}

.oe-section-header {
  max-width: 980px;
}

.oe-section-header h2 {
  margin: 0;
  color: rgba(230, 248, 251, 0.96);
  font-family: var(--font-brand);
  font-size: clamp(1.62rem, 2.2vw, 2.8rem);
  font-weight: 400;
  line-height: 1.16;
  letter-spacing: 0.045em;
  text-transform: uppercase;
}

.oe-section-header .detail-line {
  width: min(430px, 48vw);
  margin: 16px 0 0;
}

.oe-section-header > p:not(.detail-kicker) {
  max-width: 800px;
  margin: 20px 0 0;
  color: rgba(195, 224, 230, 0.84);
  font-size: clamp(1rem, 1.15vw, 1.22rem);
  line-height: 1.55;
}

.oe-text-panel,
.oe-placeholder,
.oe-contribution-card {
  border: 1px solid rgba(220, 194, 136, 0.18);
  border-radius: var(--panel-radius);
  background:
    linear-gradient(180deg, rgba(8, 38, 50, 0.72), rgba(3, 12, 18, 0.74)),
    radial-gradient(circle at 12% 0%, rgba(94, 218, 234, 0.10), rgba(94, 218, 234, 0));
  box-shadow:
    0 24px 70px rgba(0, 0, 0, 0.26),
    inset 0 1px 0 rgba(255, 255, 255, 0.035);
}

.oe-text-panel {
  max-width: 1060px;
  margin-top: 34px;
  padding: clamp(30px, 3vw, 46px);
}

.oe-text-panel p {
  margin: 0;
  color: rgba(230, 246, 249, 0.90);
  font-size: clamp(1.03rem, 1.12vw, 1.24rem);
  line-height: 1.66;
}

.oe-text-panel p + p {
  margin-top: 20px;
}

.oe-placeholder {
  position: relative;
  overflow: hidden;
  min-height: clamp(360px, 38vw, 560px);
  margin-top: 40px;
  display: grid;
  place-items: center;
}

.oe-placeholder::before {
  content: "";
  position: absolute;
  inset: 22px;
  border: 1px solid rgba(220, 194, 136, 0.10);
  border-radius: calc(var(--panel-radius) - 8px);
  pointer-events: none;
}

.oe-placeholder::after {
  content: "";
  position: absolute;
  width: 440px;
  height: 440px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(94, 218, 234, 0.13), rgba(94, 218, 234, 0) 68%);
  filter: blur(2px);
  opacity: 0.62;
  pointer-events: none;
}

.oe-placeholder--wheel::after {
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.oe-placeholder--flower::after {
  right: 14%;
  top: 50%;
  transform: translateY(-50%);
}

.oe-placeholder__inner {
  position: relative;
  z-index: 2;
  text-align: center;
}

.oe-placeholder__label {
  display: block;
  color: rgba(232, 194, 116, 0.94);
  font-family: var(--font-brand);
  font-size: clamp(1.4rem, 2.6vw, 3.2rem);
  line-height: 1.1;
  letter-spacing: 0.055em;
  text-transform: uppercase;
}

.oe-placeholder__inner p {
  margin: 18px 0 0;
  color: rgba(205, 231, 236, 0.74);
  font-family: var(--font-ui);
  font-size: 0.96rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.oe-contribution-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 1.8vw, 28px);
  margin-top: 40px;
}

.oe-contribution-card {
  padding: clamp(24px, 2.6vw, 36px);
}

.oe-contribution-card h3 {
  margin: 0;
  color: rgba(232, 194, 116, 0.94);
  font-family: var(--font-brand-sub);
  font-size: clamp(0.9rem, 1vw, 1.08rem);
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.oe-contribution-card h3::after {
  content: "";
  display: block;
  width: 82px;
  height: 1px;
  margin: 16px 0 18px;
  background: linear-gradient(90deg, rgba(220, 194, 136, 0.72), rgba(220, 194, 136, 0));
}

.oe-contribution-card p {
  margin: 0;
  color: rgba(222, 242, 246, 0.86);
  font-size: clamp(0.98rem, 1.05vw, 1.16rem);
  line-height: 1.56;
}

.oe-page .landing-detail-cta {
  min-height: 0;
  margin-top: clamp(92px, 8vw, 138px);
  margin-bottom: 0;
  padding: 0;
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: none;
  box-shadow: none;
}

.oe-page .landing-detail-cta::before {
  display: none;
}

.oe-page .landing-detail-cta .landing-contact-card {
  position: relative;
  overflow: hidden;
  width: 100%;
  min-height: 170px;
  display: block;
  border-radius: var(--panel-radius);
  border: 1px solid rgba(201, 163, 95, 0.42);
  background:
    linear-gradient(90deg, rgba(1, 6, 10, 0.90) 0%, rgba(1, 6, 10, 0.76) 24%, rgba(1, 6, 10, 0.40) 46%, rgba(1, 6, 10, 0.12) 70%, rgba(1, 6, 10, 0.02) 100%),
    linear-gradient(180deg, rgba(1, 6, 10, 0.08) 0%, rgba(1, 6, 10, 0.14) 100%),
    url("../assets/img/backgrounds/bg-the-way-out.png") center center / cover no-repeat;
  box-shadow:
    0 14px 30px rgba(0, 0, 0, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.025),
    inset 0 0 0 1px rgba(87, 201, 218, 0.04);
}

.oe-page .landing-detail-cta .landing-contact-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.18) 0%, rgba(0, 0, 0, 0.06) 38%, rgba(0, 0, 0, 0) 70%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.012) 0%, rgba(255, 255, 255, 0) 36%);
}

.oe-page .landing-detail-cta .detail-cta__copy {
  position: relative;
  z-index: 2;
  padding: 24px 40px;
}

.oe-page .landing-detail-cta .decision-section-header {
  width: min(100%, 920px);
  margin: 0;
  text-align: left;
}

.oe-page .landing-detail-cta .decision-section-header h2 {
  margin: 0;
  color: transparent;
  background: linear-gradient(90deg, #e6f8fb 0%, #9adfe9 54%, #4eb6c6 100%);
  -webkit-background-clip: text;
  background-clip: text;
  font-family: var(--font-brand);
  font-size: clamp(2.05rem, 2.75vw, 3.15rem);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: 0.04em;
}

.oe-page .landing-detail-cta .decision-section-header__line {
  display: block;
  width: min(500px, 58%);
  height: 1px;
  margin-top: 10px;
  background: linear-gradient(90deg, rgba(205, 168, 99, 0.86) 0%, rgba(205, 168, 99, 0.44) 40%, rgba(205, 168, 99, 0.16) 74%, rgba(205, 168, 99, 0.04) 100%);
  box-shadow: 0 0 18px rgba(201, 163, 95, 0.14);
}

.oe-page .landing-detail-cta .decision-section-header p {
  max-width: 640px;
  margin: 12px 0 0;
  color: rgba(232, 194, 116, 0.96);
  font-family: var(--font-body);
  font-size: clamp(1rem, 1.08vw, 1.22rem);
  font-weight: 400;
  line-height: 1.28;
  letter-spacing: 0;
}

.oe-page .landing-detail-cta .detail-button {
  margin-top: 24px;
}

.oe-page .privacy-note {
  margin: 0;
  color: rgba(183, 225, 232, 0.60);
  font-family: var(--font-ui);
  font-size: 0.76rem;
  line-height: 1;
  letter-spacing: 0.035em;
}

.oe-page .site-footer {
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

@media (max-width: 1120px) {
  .oe-page .site-logo-link--with-text {
    gap: 10px;
  }

  .oe-page .site-logo-title {
    font-size: 0.76rem;
    letter-spacing: 0.065em;
  }

  .oe-page .site-logo-title::after {
    bottom: -6px;
  }

  .oe-contribution-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .oe-hero h1 {
    font-size: clamp(1.35rem, 7vw, 2.2rem);
    white-space: nowrap;
  }

  .oe-text-panel {
    padding: 24px 22px;
  }

  .oe-placeholder {
    min-height: 300px;
  }

  .oe-page .landing-detail-cta .landing-contact-card {
    width: 100%;
    min-height: 156px;
  }

  .oe-page .landing-detail-cta .detail-cta__copy {
    padding: 22px;
  }

  .oe-page .landing-detail-cta .decision-section-header h2 {
    font-size: clamp(1.68rem, 9vw, 2.45rem);
  }

  .oe-page .landing-detail-cta .decision-section-header__line {
    width: min(320px, 72%);
  }

  .oe-page .landing-detail-cta .detail-button {
    width: 100%;
    justify-content: center;
  }

  .oe-page .site-footer {
    flex-direction: column;
    align-items: flex-start;
  }
}


/* =========================
   OE Detailseite — Arbeitsweise / Beitrag
   ========================= */

.oe-working-section {
  margin-top: clamp(92px, 8vw, 136px);
}

.oe-working-flow {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: clamp(14px, 1.35vw, 22px);
  margin-top: clamp(36px, 4vw, 56px);
}

.oe-working-card {
  position: relative;
  overflow: hidden;
  min-height: 286px;
  padding: 18px 18px 22px;
  border-radius: 22px;
  border: 1px solid rgba(210, 170, 88, 0.20);
  background:
    linear-gradient(180deg, rgba(10, 36, 48, 0.82), rgba(3, 12, 18, 0.78)),
    radial-gradient(circle at 50% 0%, rgba(55, 80, 104, 0.46), rgba(55, 80, 104, 0) 58%);
  box-shadow:
    0 22px 62px rgba(0, 0, 0, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.035);
}

.oe-working-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(210, 170, 88, 0.08), rgba(210, 170, 88, 0) 38%, rgba(94, 218, 234, 0.06) 100%);
  opacity: 0.78;
}

.oe-working-card__visual {
  position: relative;
  height: 96px;
  margin-bottom: 22px;
  border-radius: 17px;
  border: 1px solid rgba(216, 229, 232, 0.08);
  background:
    radial-gradient(circle at 50% 50%, rgba(210, 170, 88, 0.18), rgba(210, 170, 88, 0) 34%),
    linear-gradient(135deg, rgba(55, 80, 104, 0.58), rgba(10, 27, 45, 0.82));
}

.oe-working-card__visual::before,
.oe-working-card__visual::after {
  content: "";
  position: absolute;
  left: 18px;
  right: 18px;
  height: 1px;
  background: linear-gradient(90deg, rgba(210, 170, 88, 0), rgba(210, 170, 88, 0.62), rgba(210, 170, 88, 0));
}

.oe-working-card__visual::before {
  top: 38px;
}

.oe-working-card__visual::after {
  bottom: 30px;
  opacity: 0.54;
}

.oe-working-card__number {
  position: absolute;
  top: 14px;
  left: 16px;
  color: rgba(210, 170, 88, 0.86);
  font-family: var(--font-brand-sub);
  font-size: 0.75rem;
  letter-spacing: 0.18em;
}

.oe-working-card__pulse {
  position: absolute;
  top: 39px;
  left: 50%;
  width: 18px;
  height: 18px;
  border-radius: 999px;
  transform: translate(-50%, -50%);
  background: rgba(216, 229, 232, 0.78);
  box-shadow:
    0 0 0 7px rgba(216, 229, 232, 0.08),
    0 0 24px rgba(210, 170, 88, 0.16);
}

.oe-working-card h3,
.oe-working-card p {
  position: relative;
  z-index: 2;
}

.oe-working-card h3 {
  margin: 0;
  color: rgba(232, 194, 116, 0.96);
  font-family: var(--font-brand-sub);
  font-size: clamp(1.05rem, 1.2vw, 1.28rem);
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.oe-working-card h3::after {
  content: "";
  display: block;
  width: 74px;
  height: 1px;
  margin: 14px 0 16px;
  background: linear-gradient(90deg, rgba(210, 170, 88, 0.72), rgba(210, 170, 88, 0));
}

.oe-working-card p {
  margin: 0;
  color: rgba(216, 229, 232, 0.84);
  font-size: clamp(0.92rem, 0.95vw, 1.02rem);
  line-height: 1.5;
}

.oe-working-contribution {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.35fr);
  gap: clamp(22px, 3vw, 54px);
  align-items: start;
  margin-top: clamp(24px, 3vw, 42px);
  padding: clamp(26px, 3vw, 42px);
  border-radius: 24px;
  border: 1px solid rgba(210, 170, 88, 0.22);
  background:
    linear-gradient(135deg, rgba(8, 31, 42, 0.88), rgba(3, 12, 18, 0.80)),
    radial-gradient(circle at 5% 0%, rgba(210, 170, 88, 0.13), rgba(210, 170, 88, 0) 38%);
  box-shadow:
    0 22px 70px rgba(0, 0, 0, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.035);
}

.oe-working-contribution__eyebrow {
  margin: 0 0 12px;
  color: rgba(210, 170, 88, 0.86);
  font-family: var(--font-ui);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.oe-working-contribution h3 {
  margin: 0;
  max-width: 560px;
  color: rgba(235, 247, 249, 0.92);
  font-family: var(--font-brand-sub);
  font-size: clamp(1.16rem, 1.65vw, 1.72rem);
  font-weight: 400;
  line-height: 1.22;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.oe-working-contribution ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 24px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.oe-working-contribution li {
  position: relative;
  padding-left: 20px;
  color: rgba(216, 229, 232, 0.84);
  font-size: clamp(0.96rem, 1vw, 1.08rem);
  line-height: 1.45;
}

.oe-working-contribution li::before {
  content: "";
  position: absolute;
  top: 0.67em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: rgba(210, 170, 88, 0.82);
  box-shadow: 0 0 16px rgba(210, 170, 88, 0.24);
}

@media (max-width: 1180px) {
  .oe-working-flow {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .oe-working-card {
    min-height: 250px;
  }
}

@media (max-width: 760px) {
  .oe-working-flow,
  .oe-working-contribution,
  .oe-working-contribution ul {
    grid-template-columns: 1fr;
  }

  .oe-working-card {
    min-height: 0;
  }
}


/* =========================
   OE Detailseite — Hybrid Banner Arbeitsweise
   ========================= */

.oe-working-section--path {
  margin-top: clamp(92px, 8vw, 136px);
}

.oe-path-stage {
  position: relative;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 8 / 3;
  min-height: 0;
  margin-top: clamp(38px, 4vw, 60px);
  border-radius: 28px;
  border: 1px solid rgba(210, 170, 88, 0.24);
  background: #02070b;
  box-shadow:
    0 28px 90px rgba(0, 0, 0, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.035);
}

.oe-path-stage__image {
  position: absolute;
  inset: 0;
  background:
    url("../assets/img/backgrounds/bg-oe-path-small.png") center center / 100% auto no-repeat;
  transform: none;
  filter: saturate(0.94) contrast(1.03) brightness(0.86);
}

.oe-path-stage__shade {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(0, 3, 6, 0.08) 0%, rgba(0, 3, 6, 0.34) 54%, rgba(0, 3, 6, 0.76) 100%),
    linear-gradient(90deg, rgba(0, 3, 6, 0.44) 0%, rgba(0, 3, 6, 0.10) 18%, rgba(0, 3, 6, 0.03) 50%, rgba(0, 3, 6, 0.20) 78%, rgba(0, 3, 6, 0.48) 100%);
}

.oe-path-stage::after {
  content: "";
  position: absolute;
  inset: 18px;
  border-radius: 20px;
  border: 1px solid rgba(216, 229, 232, 0.055);
  pointer-events: none;
}

.oe-path-line {
  position: absolute;
  left: 6.5%;
  right: 6.5%;
  bottom: 22%;
  height: 60px;
  z-index: 3;
  pointer-events: none;
}

.oe-path-line__stroke {
  position: absolute;
  left: 0;
  right: 0;
  top: 30px;
  height: 1px;
  background:
    linear-gradient(90deg,
      rgba(210, 170, 88, 0),
      rgba(210, 170, 88, 0.70) 9%,
      rgba(210, 170, 88, 0.82) 50%,
      rgba(210, 170, 88, 0.70) 91%,
      rgba(210, 170, 88, 0)
    );
  box-shadow: 0 0 18px rgba(210, 170, 88, 0.20);
}

.oe-path-node {
  position: absolute;
  top: 22px;
  width: 17px;
  height: 17px;
  border-radius: 999px;
  background: rgba(232, 194, 116, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.50);
  box-shadow:
    0 0 0 8px rgba(210, 170, 88, 0.10),
    0 0 24px rgba(210, 170, 88, 0.30);
  transform: translateX(-50%);
}

.oe-path-node--1 { left: 4%; }
.oe-path-node--2 { left: 27%; }
.oe-path-node--3 { left: 50%; }
.oe-path-node--4 { left: 73%; }
.oe-path-node--5 { left: 96%; }

.oe-path-steps {
  position: absolute;
  inset: 0;
  z-index: 4;
  margin: 0;
  padding: 0;
  list-style: none;
  pointer-events: none;
}

.oe-path-step {
  position: absolute;
  width: min(180px, 16vw);
  color: rgba(235, 247, 249, 0.92);
  text-align: center;
  text-shadow: 0 4px 18px rgba(0, 0, 0, 0.70);
}

.oe-path-step span {
  display: block;
  margin-bottom: 8px;
  color: rgba(210, 170, 88, 0.88);
  font-family: var(--font-ui);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.oe-path-step strong {
  display: block;
  font-family: var(--font-brand-sub);
  font-size: clamp(1.08rem, 1.45vw, 1.58rem);
  font-weight: 400;
  letter-spacing: 0.105em;
  text-transform: uppercase;
}

.oe-path-step strong::after {
  content: "";
  display: block;
  width: 68px;
  height: 1px;
  margin: 12px auto 0;
  background: linear-gradient(90deg, rgba(210,170,88,0), rgba(210,170,88,0.72), rgba(210,170,88,0));
}

.oe-path-step--1 { left: 4%; bottom: 10%; transform: translateX(-18%); }
.oe-path-step--2 { left: 27%; bottom: 16%; transform: translateX(-50%); }
.oe-path-step--3 { left: 50%; bottom: 11%; transform: translateX(-50%); }
.oe-path-step--4 { left: 73%; bottom: 17%; transform: translateX(-50%); }
.oe-path-step--5 { right: 4%; bottom: 10%; transform: translateX(18%); }

.oe-path-explainer {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: clamp(12px, 1.25vw, 20px);
  margin-top: clamp(18px, 2vw, 28px);
}

.oe-path-explainer article {
  position: relative;
  overflow: hidden;
  min-height: 190px;
  padding: clamp(20px, 1.8vw, 28px);
  border-radius: 20px;
  border: 1px solid rgba(210, 170, 88, 0.18);
  background:
    linear-gradient(180deg, rgba(8, 31, 42, 0.78), rgba(3, 12, 18, 0.72)),
    radial-gradient(circle at 50% 0%, rgba(55, 80, 104, 0.34), rgba(55, 80, 104, 0) 58%);
  box-shadow:
    0 20px 55px rgba(0, 0, 0, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.oe-path-explainer article::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(210, 170, 88, 0.075), rgba(210, 170, 88, 0) 48%);
  opacity: 0.9;
  pointer-events: none;
}

.oe-path-explainer span,
.oe-path-explainer h3,
.oe-path-explainer p {
  position: relative;
  z-index: 2;
}

.oe-path-explainer span {
  display: inline-block;
  margin-bottom: 14px;
  color: rgba(210, 170, 88, 0.82);
  font-family: var(--font-ui);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.oe-path-explainer h3 {
  margin: 0;
  color: rgba(232, 194, 116, 0.96);
  font-family: var(--font-brand-sub);
  font-size: clamp(1.02rem, 1.12vw, 1.22rem);
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.oe-path-explainer h3::after {
  content: "";
  display: block;
  width: 64px;
  height: 1px;
  margin: 13px 0 15px;
  background: linear-gradient(90deg, rgba(210, 170, 88, 0.72), rgba(210, 170, 88, 0));
}

.oe-path-explainer p {
  margin: 0;
  color: rgba(216, 229, 232, 0.82);
  font-size: clamp(0.9rem, 0.92vw, 1rem);
  line-height: 1.28;
}

.oe-path-contribution {
  margin-top: clamp(22px, 2.4vw, 34px);
  padding: clamp(24px, 2.6vw, 36px);
  border-radius: 24px;
  border: 1px solid rgba(210, 170, 88, 0.22);
  background:
    linear-gradient(135deg, rgba(8, 31, 42, 0.86), rgba(3, 12, 18, 0.78)),
    radial-gradient(circle at 0% 0%, rgba(210, 170, 88, 0.13), rgba(210, 170, 88, 0) 34%);
}

.oe-path-contribution__eyebrow {
  margin: 0 0 12px;
  color: rgba(210, 170, 88, 0.86);
  font-family: var(--font-ui);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.oe-path-contribution p:last-child {
  max-width: 1050px;
  margin: 0;
  color: rgba(216, 229, 232, 0.86);
  font-size: clamp(1rem, 1.12vw, 1.18rem);
  line-height: 1.58;
}

@media (max-width: 1180px) {
  .oe-path-explainer {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .oe-path-step {
    width: 170px;
  }
}

@media (max-width: 760px) {
  .oe-path-stage {
    background: #02070b;
  }

  .oe-path-stage__image {
    background-position: center center;
  }

  .oe-path-line,
  .oe-path-steps {
    display: none;
  }

  .oe-path-explainer {
    grid-template-columns: 1fr;
  }

  .oe-path-explainer article {
    min-height: 0;
  }
}


/* Feinjustierung v131: Arbeitsweise-Banner nur Bild, keine Overlays/Marker */
.oe-path-stage {
  aspect-ratio: 4 / 1;
  min-height: 0;
  line-height: 0;
  background: transparent;
}

.oe-path-stage__image {
  background-size: 100% 100%;
  background-position: center center;
  filter: saturate(0.96) contrast(1.03) brightness(0.92);
}

.oe-path-stage__shade {
  background:
    linear-gradient(90deg, rgba(0, 3, 6, 0.20) 0%, rgba(0, 3, 6, 0.02) 22%, rgba(0, 3, 6, 0.02) 76%, rgba(0, 3, 6, 0.22) 100%);
}

.oe-path-line,
.oe-path-steps {
  display: none !important;
}

.oe-path-explainer span {
  display: none !important;
}

.oe-path-explainer article {
  min-height: 172px;
}


/* Feinjustierung v132: Arbeitsweise-Banner als echtes Bild, unverzerrt */
.oe-path-stage {
  min-height: 0 !important;
  aspect-ratio: auto !important;
  line-height: 0;
  background: transparent;
}

.oe-path-stage__image {
  position: relative !important;
  inset: auto !important;
  display: block;
  width: 100%;
  height: auto;
  max-width: 100%;
  object-fit: contain;
  transform: none !important;
  filter: saturate(0.96) contrast(1.03) brightness(0.92);
}

.oe-path-stage__shade {
  background:
    linear-gradient(90deg, rgba(0, 3, 6, 0.20) 0%, rgba(0, 3, 6, 0.02) 22%, rgba(0, 3, 6, 0.02) 76%, rgba(0, 3, 6, 0.22) 100%);
}

.oe-path-contribution {
  display: none !important;
}


/* =========================
   OE Intro — Unternehmer-Brücke
   ========================= */

.oe-intro--situations .oe-section-header {
  max-width: 980px;
}

.oe-intro-panel {
  max-width: 1180px;
  margin-top: 34px;
}

.oe-intro-copy {
  max-width: 960px;
  padding: clamp(30px, 3vw, 46px);
  border: 1px solid rgba(220, 194, 136, 0.16);
  border-radius: var(--panel-radius);
  background:
    linear-gradient(180deg, rgba(8, 38, 50, 0.68), rgba(3, 12, 18, 0.72)),
    radial-gradient(circle at 12% 0%, rgba(94, 218, 234, 0.09), rgba(94, 218, 234, 0));
  box-shadow:
    0 24px 70px rgba(0, 0, 0, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.035);
}

.oe-intro-copy p {
  margin: 0;
  color: rgba(230, 246, 249, 0.90);
  font-size: clamp(1.03rem, 1.12vw, 1.23rem);
  line-height: 1.66;
}

.oe-intro-copy p + p {
  margin-top: 19px;
}

.oe-situation-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: clamp(16px, 1.7vw, 24px);
  margin-top: clamp(22px, 2.8vw, 38px);
}

.oe-situation-card {
  position: relative;
  overflow: hidden;
  min-height: 218px;
  padding: clamp(24px, 2.45vw, 36px);
  border: 1px solid rgba(220, 194, 136, 0.18);
  border-radius: 24px;
  background:
    linear-gradient(145deg, rgba(8, 38, 50, 0.78), rgba(3, 12, 18, 0.78)),
    radial-gradient(circle at 10% 0%, rgba(94, 218, 234, 0.10), rgba(94, 218, 234, 0) 46%),
    radial-gradient(circle at 100% 100%, rgba(210, 170, 88, 0.10), rgba(210, 170, 88, 0) 42%);
  box-shadow:
    0 22px 62px rgba(0, 0, 0, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.035);
}

.oe-situation-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(210, 170, 88, 0.075), rgba(210, 170, 88, 0) 52%);
  pointer-events: none;
}

.oe-situation-card--small {
  grid-column: span 5;
}

.oe-situation-card--large {
  grid-column: span 7;
}

.oe-situation-card__kicker,
.oe-situation-card h3,
.oe-situation-card__line,
.oe-situation-card > p:not(.oe-situation-card__kicker) {
  position: relative;
  z-index: 2;
}

.oe-situation-card__kicker {
  margin: 0 0 14px;
  color: rgba(210, 170, 88, 0.86);
  font-family: var(--font-ui);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.oe-situation-card h3 {
  margin: 0;
  color: rgba(232, 194, 116, 0.96);
  font-family: var(--font-brand-sub);
  font-size: clamp(1.1rem, 1.34vw, 1.56rem);
  font-weight: 400;
  letter-spacing: 0.08em;
  line-height: 1.18;
  text-transform: uppercase;
}

.oe-situation-card__line {
  display: block;
  width: min(210px, 58%);
  height: 1px;
  margin: 16px 0 18px;
  background: linear-gradient(90deg, rgba(210, 170, 88, 0.76), rgba(210, 170, 88, 0));
}

.oe-situation-card > p:not(.oe-situation-card__kicker) {
  max-width: 760px;
  margin: 0;
  color: rgba(216, 229, 232, 0.84);
  font-size: clamp(0.96rem, 1vw, 1.11rem);
  line-height: 1.58;
}

@media (max-width: 920px) {
  .oe-situation-card--small,
  .oe-situation-card--large {
    grid-column: 1 / -1;
  }

  .oe-situation-card {
    min-height: 0;
  }
}

@media (max-width: 720px) {
  .oe-intro-copy,
  .oe-situation-card {
    padding: 24px 22px;
  }
}


/* Feinjustierung v136: Intro frei, Karten ruhiger/asymmetrischer */
.oe-intro--situations .oe-section-header {
  max-width: 980px;
}

.oe-intro-panel {
  max-width: 1180px;
  margin-top: 26px;
}

.oe-intro-copy {
  max-width: 960px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.oe-intro-copy p {
  color: rgba(230, 246, 249, 0.84);
}

.oe-situation-grid {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  gap: clamp(16px, 1.7vw, 24px);
  margin-top: clamp(28px, 3.2vw, 46px);
}

.oe-situation-card {
  min-height: 198px;
  background:
    linear-gradient(145deg, rgba(8, 38, 50, 0.46), rgba(3, 12, 18, 0.46)),
    radial-gradient(circle at 10% 0%, rgba(94, 218, 234, 0.055), rgba(94, 218, 234, 0) 46%),
    radial-gradient(circle at 100% 100%, rgba(210, 170, 88, 0.055), rgba(210, 170, 88, 0) 42%);
  border-color: rgba(220, 194, 136, 0.115);
  box-shadow:
    0 18px 50px rgba(0, 0, 0, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.025);
}

.oe-situation-card::before {
  background: linear-gradient(90deg, rgba(210, 170, 88, 0.038), rgba(210, 170, 88, 0) 52%);
}

.oe-situation-card--small {
  flex: 0 0 calc((100% - clamp(16px, 1.7vw, 24px)) * 0.4167);
}

.oe-situation-card--large {
  flex: 0 0 calc((100% - clamp(16px, 1.7vw, 24px)) * 0.5833);
}

.oe-situation-card:nth-child(3),
.oe-situation-card:nth-child(4) {
  transform: translateX(6%);
}

.oe-situation-card:nth-child(3) {
  flex-basis: calc((88% - clamp(16px, 1.7vw, 24px)) * 0.5833);
}

.oe-situation-card:nth-child(4) {
  flex-basis: calc((88% - clamp(16px, 1.7vw, 24px)) * 0.4167);
}

.oe-situation-card__kicker {
  color: rgba(210, 170, 88, 0.76);
}

.oe-situation-card h3 {
  color: rgba(232, 194, 116, 0.88);
}

.oe-situation-card__line {
  background: linear-gradient(90deg, rgba(210, 170, 88, 0.58), rgba(210, 170, 88, 0));
}

.oe-situation-card > p:not(.oe-situation-card__kicker) {
  color: rgba(216, 229, 232, 0.76);
}

@media (max-width: 920px) {
  .oe-situation-grid {
    display: grid;
    grid-template-columns: 1fr;
  }

  .oe-situation-card--small,
  .oe-situation-card--large,
  .oe-situation-card:nth-child(3),
  .oe-situation-card:nth-child(4) {
    grid-column: 1 / -1;
    flex-basis: auto;
    transform: none;
  }
}


/* Feinjustierung v137: Intro-Karten volle Breite, 37/63 und 63/37 */
.oe-situation-grid {
  --oe-situation-gap: clamp(16px, 1.7vw, 24px);
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  width: 100%;
  gap: var(--oe-situation-gap);
}

.oe-situation-card:nth-child(1),
.oe-situation-card:nth-child(4) {
  flex: 0 0 calc((100% - var(--oe-situation-gap)) * 0.37);
  transform: none;
}

.oe-situation-card:nth-child(2),
.oe-situation-card:nth-child(3) {
  flex: 0 0 calc((100% - var(--oe-situation-gap)) * 0.63);
  transform: none;
}

.oe-situation-card:nth-child(3),
.oe-situation-card:nth-child(4) {
  transform: none;
}

@media (max-width: 920px) {
  .oe-situation-card:nth-child(1),
  .oe-situation-card:nth-child(2),
  .oe-situation-card:nth-child(3),
  .oe-situation-card:nth-child(4) {
    flex: 0 0 100%;
    transform: none;
  }
}


/* Feinjustierung v138: Intro-Karten bis zum rechten Inhaltsrand */
.oe-intro-panel {
  width: 100%;
  max-width: none;
}

.oe-situation-grid {
  width: 100%;
  max-width: none;
}


/* Feinjustierung v139: Intro-Karten im Look "Warum Beyond Steps" */
.oe-situation-grid {
  position: relative;
  isolation: isolate;
  --oe-situation-gap: clamp(16px, 1.7vw, 24px);
}

.oe-situation-grid::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(6, 13, 22, 0.08) 0%, rgba(6, 13, 22, 0.28) 100%),
    url("../assets/img/backgrounds/bg-klare-struktur-001.png") center center / cover no-repeat;
  opacity: 0.72;
  filter: saturate(0.9) contrast(1.04) brightness(0.86);
  -webkit-mask:
    linear-gradient(#000 0 0) 0 0 / calc((100% - var(--oe-situation-gap)) * 0.37) calc((100% - var(--oe-situation-gap)) / 2) no-repeat,
    linear-gradient(#000 0 0) 100% 0 / calc((100% - var(--oe-situation-gap)) * 0.63) calc((100% - var(--oe-situation-gap)) / 2) no-repeat,
    linear-gradient(#000 0 0) 0 100% / calc((100% - var(--oe-situation-gap)) * 0.63) calc((100% - var(--oe-situation-gap)) / 2) no-repeat,
    linear-gradient(#000 0 0) 100% 100% / calc((100% - var(--oe-situation-gap)) * 0.37) calc((100% - var(--oe-situation-gap)) / 2) no-repeat;
  mask:
    linear-gradient(#000 0 0) 0 0 / calc((100% - var(--oe-situation-gap)) * 0.37) calc((100% - var(--oe-situation-gap)) / 2) no-repeat,
    linear-gradient(#000 0 0) 100% 0 / calc((100% - var(--oe-situation-gap)) * 0.63) calc((100% - var(--oe-situation-gap)) / 2) no-repeat,
    linear-gradient(#000 0 0) 0 100% / calc((100% - var(--oe-situation-gap)) * 0.63) calc((100% - var(--oe-situation-gap)) / 2) no-repeat,
    linear-gradient(#000 0 0) 100% 100% / calc((100% - var(--oe-situation-gap)) * 0.37) calc((100% - var(--oe-situation-gap)) / 2) no-repeat;
}

.oe-situation-card {
  z-index: 1;
  border-radius: 14px;
  border: 1px solid rgba(95, 170, 188, 0.07);
  background:
    linear-gradient(180deg, rgba(12, 24, 38, 0.58) 0%, rgba(8, 18, 30, 0.54) 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.018);
}

.oe-situation-card::before {
  background:
    radial-gradient(circle at 86% 16%, rgba(83, 206, 224, 0.035) 0%, rgba(83, 206, 224, 0) 28%);
}

.oe-situation-card__kicker {
  color: rgba(211, 177, 111, 0.92);
}

.oe-situation-card h3 {
  font-family: var(--font-brand);
  font-size: clamp(1.2rem, 1.28vw, 1.72rem);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: 0.045em;
  color: rgba(232, 248, 251, 0.96);
}

.oe-situation-card__line {
  width: min(230px, 88%);
  height: 1px;
  margin: 13px 0 30px;
  background: linear-gradient(
    90deg,
    rgba(205, 168, 99, 0.66) 0%,
    rgba(205, 168, 99, 0.24) 58%,
    rgba(205, 168, 99, 0) 100%
  );
  box-shadow: none;
}

.oe-situation-card > p:not(.oe-situation-card__kicker) {
  color: rgba(209, 233, 239, 0.80);
  font-size: clamp(1rem, 1vw, 1.15rem);
  line-height: 1.5;
  letter-spacing: 0.004em;
}

@media (max-width: 920px) {
  .oe-situation-grid::before {
    display: none;
  }

  .oe-situation-card {
    background:
      linear-gradient(180deg, rgba(12, 24, 38, 0.58) 0%, rgba(8, 18, 30, 0.54) 100%),
      url("../assets/img/backgrounds/bg-klare-struktur-001.png") center center / cover no-repeat;
  }
}


/* Feinjustierung v141: OE-Hero im LandingPage-Hero-Stil */
.oe-main {
  padding-top: 0;
}

.oe-hero--landing {
  position: relative;
  max-width: none;
  min-height: calc(100svh - 80px);
  padding: 0;
}

.oe-hero-copy {
  position: absolute;
  top: clamp(96px, 11vh, 132px);
  left: 0;
  width: min(62vw, 980px);
}

.oe-hero-title {
  margin: 0;
  line-height: 0.84;
  text-transform: uppercase;
  background: none;
  color: inherit;
}

.oe-hero-title-main,
.oe-hero-title-sub {
  display: block;
}

.oe-hero-title-main {
  font-family: var(--font-brand);
  font-size: clamp(1.61rem, 2.60vw, 2.97rem);
  font-weight: 400;
  letter-spacing: 0.045em;
  line-height: 0.9;
  background: linear-gradient(
    90deg,
    #B3DFE5 0%,
    #4AB2C1 32%,
    #276871 78%
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 0 10px rgba(49, 177, 197, 0.04);
  white-space: nowrap;
}

.oe-hero-title-sub {
  display: inline-block;
  width: max-content;
  margin-top: 2px;
  font-family: var(--font-brand-sub);
  font-size: clamp(0.74rem, 1.09vw, 1.24rem);
  font-weight: 400;
  letter-spacing: 0.055em;
  line-height: 0.9;
  background: linear-gradient(
    90deg,
    #276871 0%,
    #B3DFE5 46%,
    #276871 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 0 8px rgba(49, 177, 197, 0.04);
  white-space: nowrap;
}

.oe-hero-divider {
  display: block;
  height: 1px;
  background: linear-gradient(
    90deg,
    rgba(205, 168, 99, 0.86) 0%,
    rgba(205, 168, 99, 0.44) 38%,
    rgba(205, 168, 99, 0.16) 72%,
    rgba(205, 168, 99, 0.04) 100%
  );
  box-shadow: 0 0 8px rgba(199, 157, 82, 0.08);
}

.oe-hero-divider-top {
  width: min(45vw, 760px);
  margin-top: 16px;
}

.oe-hero-subline {
  max-width: 820px;
  margin: 16px 0 0;
  background: linear-gradient(
    90deg,
    #cfeff4 0%,
    #82d3df 34%,
    #43aebe 66%,
    #276871 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-family: var(--font-brand-sub);
  font-size: clamp(0.72rem, 0.86vw, 1.12rem);
  font-weight: 400;
  line-height: 1.34;
  letter-spacing: 0.012em;
  text-shadow: 0 0 6px rgba(73, 181, 199, 0.03);
}

.oe-hero + .oe-section {
  margin-top: clamp(48px, 5vw, 82px);
}

@media (max-width: 1120px) {
  .oe-hero-copy {
    width: min(82vw, 860px);
  }

  .oe-hero-title-main {
    white-space: normal;
  }
}

@media (max-width: 720px) {
  .oe-hero--landing {
    min-height: calc(100svh - 72px);
  }

  .oe-hero-copy {
    top: clamp(72px, 12vh, 104px);
    width: 100%;
  }

  .oe-hero-title-main {
    font-size: clamp(1.44rem, 8.2vw, 2.55rem);
    white-space: normal;
  }

  .oe-hero-title-sub {
    width: auto;
    font-size: clamp(0.68rem, 4vw, 1rem);
    white-space: normal;
  }

  .oe-hero-divider-top {
    width: min(78vw, 520px);
  }

  .oe-hero-subline {
    max-width: 92vw;
  }
}





/* Steuern Header — exakt wie OE Logo-Schriftzug */
.wirkfeld-page--steuern .site-logo-link--with-text {
  align-items: center;
  gap: 14px;
}

.wirkfeld-page--steuern .site-logo-title {
  position: relative;
  display: inline-block;
  color: transparent;
  font-family: var(--font-brand);
  font-size: clamp(0.82rem, 1.02vw, 1.08rem);
  line-height: 1;
  letter-spacing: 0.08em;
  background: linear-gradient(90deg, #d8f4f8 0%, #95dce7 46%, #49b5c7 100%);
  -webkit-background-clip: text;
  background-clip: text;
  white-space: nowrap;
}

.wirkfeld-page--steuern .site-logo-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 78%;
  height: 1px;
  background: linear-gradient(90deg, rgba(220, 194, 136, 0.72) 0%, rgba(220, 194, 136, 0) 100%);
}

@media (max-width: 1120px) {
  .wirkfeld-page--steuern .site-logo-link--with-text {
    gap: 10px;
  }

  .wirkfeld-page--steuern .site-logo-title {
    font-size: 0.76rem;
    letter-spacing: 0.065em;
  }

  .wirkfeld-page--steuern .site-logo-title::after {
    bottom: -6px;
  }
}

/* Steuern SubPage Hero — nutzt OE Hero-Layout mit eigenem Bild */
.steuern-hero .oe-hero-image {
  background-image: url("../assets/img/backgrounds/bg-steuern-001.png");
  background-position: center center;
}


/* Entscheiden Header — exakt wie OE Logo-Schriftzug */
.wirkfeld-page--entscheiden .site-logo-link--with-text {
  align-items: center;
  gap: 14px;
}

.wirkfeld-page--entscheiden .site-logo-title {
  position: relative;
  display: inline-block;
  color: transparent;
  font-family: var(--font-brand);
  font-size: clamp(0.82rem, 1.02vw, 1.08rem);
  line-height: 1;
  letter-spacing: 0.08em;
  background: linear-gradient(90deg, #d8f4f8 0%, #95dce7 46%, #49b5c7 100%);
  -webkit-background-clip: text;
  background-clip: text;
  white-space: nowrap;
}

.wirkfeld-page--entscheiden .site-logo-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 78%;
  height: 1px;
  background: linear-gradient(90deg, rgba(220, 194, 136, 0.72) 0%, rgba(220, 194, 136, 0) 100%);
}

@media (max-width: 1120px) {
  .wirkfeld-page--entscheiden .site-logo-link--with-text {
    gap: 10px;
  }

  .wirkfeld-page--entscheiden .site-logo-title {
    font-size: 0.76rem;
    letter-spacing: 0.065em;
  }

  .wirkfeld-page--entscheiden .site-logo-title::after {
    bottom: -6px;
  }
}

/* Entscheiden SubPage Hero — nutzt OE Hero-Layout mit eigenem Bild */
.entscheiden-hero .oe-hero-image {
  background-image: url("../assets/img/backgrounds/bg-entscheiden-001.png");
  background-position: center top;
}
/* =========================================================
   OE SubPage Hero v148 — Full-Width Bild + auslaufende Box
   ========================================================= */

.oe-page .oe-main {
  padding-top: 0;
}

.oe-hero--image-box {
  position: relative;
  width: 100vw;
  max-width: none;
  min-height: clamp(640px, 76svh, 820px);
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  margin-bottom: clamp(180px, 14vw, 230px);
  padding: 0;
  overflow: visible;
  isolation: isolate;
}

.oe-hero-image {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: url("../assets/img/backgrounds/bg-transformation-002.png");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  filter: none;
}

.oe-hero-image::after {
  content: none;
}

.oe-hero-panel {
  position: absolute;
  z-index: 2;
  --oe-hero-panel-left: max(var(--page-padding-x), calc((100vw - var(--page-width)) / 2 + var(--page-padding-x)));
  left: var(--oe-hero-panel-left);
  bottom: clamp(-78px, -5.8vw, -46px);
  width: min(calc(100vw - var(--oe-hero-panel-left) - var(--page-padding-x)), calc(62.5vw - var(--oe-hero-panel-left)));
  padding: clamp(28px, 3vw, 42px) clamp(28px, 3.6vw, 50px);
  border: none;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

.oe-hero-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg,
      rgba(7, 19, 28, 0.34) 0%,
      rgba(7, 22, 31, 0.30) 55%,
      rgba(7, 22, 31, 0.20) 75%,
      rgba(7, 22, 31, 0.00) 100%);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.14);
  backdrop-filter: blur(8px);
  -webkit-mask-image: linear-gradient(90deg, #000 0%, #000 75%, transparent 100%);
  mask-image: linear-gradient(90deg, #000 0%, #000 75%, transparent 100%);
}

.oe-hero-eyebrow,
.oe-hero-panel-title,
.oe-hero-panel-line,
.oe-hero-core,
.oe-hero-text {
  position: relative;
  z-index: 1;
}

.oe-hero-eyebrow {
  margin: 0 0 8px;
  color: rgba(220, 194, 136, 0.84);
  font-family: var(--font-ui);
  font-size: clamp(0.58rem, 0.61vw, 0.69rem);
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.oe-hero--image-box .oe-hero-panel-title {
  width: 100%;
  max-width: none;
  margin: 0;
  color: transparent;
  background: linear-gradient(90deg, #e8fbff 0%, #b3dfe5 42%, #5ec9d9 100%);
  -webkit-background-clip: text;
  background-clip: text;
  font-family: var(--font-brand);
  font-size: clamp(0.99rem, 1.91vw, 2.13rem);
  font-weight: 400;
  line-height: 1.04;
  letter-spacing: 0.045em;
  text-transform: uppercase;
}

.oe-hero-panel-line {
  display: block;
  width: min(760px, 82%);
  height: 1px;
  margin: clamp(8px, 0.85vw, 12px) 0 clamp(7px, 0.8vw, 11px);
  background: linear-gradient(90deg, rgba(220, 194, 136, 0.88) 0%, rgba(220, 194, 136, 0.44) 42%, rgba(220, 194, 136, 0.00) 100%);
  box-shadow: 0 0 16px rgba(220, 194, 136, 0.10);
}

.oe-hero-core {
  max-width: min(760px, 82%);
  margin: 0;
  color: rgba(240, 220, 166, 0.92);
  font-family: var(--font-brand-sub);
  font-size: clamp(0.58rem, 0.62vw, 0.69rem);
  line-height: 1.28;
  letter-spacing: 0.045em;
  text-transform: uppercase;
}

.oe-hero-text {
  max-width: min(860px, 86%);
  margin: clamp(11px, 1vw, 15px) 0 0;
  color: rgba(215, 235, 240, 0.84);
  font-family: var(--font-body);
  font-size: clamp(0.8rem, 0.86vw, 0.94rem);
  line-height: 1.56;
}

.oe-hero--image-box + .oe-section {
  margin-top: 0;
}

@media (max-width: 920px) {
  .oe-hero--image-box {
    min-height: clamp(600px, 78svh, 760px);
    margin-bottom: clamp(72px, 10vw, 104px);
  }

  .oe-hero-panel {
    left: var(--page-padding-x);
    right: var(--page-padding-x);
    width: auto;
    bottom: -58px;
  }

  .oe-hero-panel::before {
    background: rgba(7, 22, 31, 0.30);
    -webkit-mask-image: none;
    mask-image: none;
  }
}

@media (max-width: 720px) {
  .oe-hero--image-box {
    min-height: auto;
    padding-top: 350px;
    margin-bottom: 70px;
  }

  .oe-hero-image {
    height: 390px;
    bottom: auto;
    background-position: center top;
  }

  .oe-hero-panel {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    width: auto;
    margin: -46px var(--page-padding-x) 0;
    padding: 26px 24px 28px;
    border-radius: 0;
  }

  .oe-hero--image-box .oe-hero-panel-title {
    font-size: clamp(0.86rem, 4.2vw, 1.1rem);
  }

  .oe-hero-core {
    font-size: 0.58rem;
    letter-spacing: 0.035em;
  }
}

@media (max-width: 520px) {
  .oe-hero--image-box {
    padding-top: 320px;
  }

  .oe-hero-image {
    height: 360px;
  }

  .oe-hero-panel {
    margin-inline: 22px;
  }
}


/* Stabilisieren Header — exakt wie OE Logo-Schriftzug */
.wirkfeld-page--stabilisieren .site-logo-link--with-text {
  align-items: center;
  gap: 14px;
}

.wirkfeld-page--stabilisieren .site-logo-title {
  position: relative;
  display: inline-block;
  color: transparent;
  font-family: var(--font-brand);
  font-size: clamp(0.82rem, 1.02vw, 1.08rem);
  line-height: 1;
  letter-spacing: 0.08em;
  background: linear-gradient(90deg, #d8f4f8 0%, #95dce7 46%, #49b5c7 100%);
  -webkit-background-clip: text;
  background-clip: text;
  white-space: nowrap;
}

.wirkfeld-page--stabilisieren .site-logo-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 78%;
  height: 1px;
  background: linear-gradient(90deg, rgba(220, 194, 136, 0.72) 0%, rgba(220, 194, 136, 0) 100%);
}

@media (max-width: 1120px) {
  .wirkfeld-page--stabilisieren .site-logo-link--with-text {
    gap: 10px;
  }

  .wirkfeld-page--stabilisieren .site-logo-title {
    font-size: 0.76rem;
    letter-spacing: 0.065em;
  }

  .wirkfeld-page--stabilisieren .site-logo-title::after {
    bottom: -6px;
  }
}

.stabilisieren-hero .oe-hero-image {
  background-image: url("../assets/img/backgrounds/bg-stabilisieren-001.png");
  background-position: center center;
}


/* Neuer Kontaktblock im Erfahrung-Stil für Wirkfeld-SubSites */
.tools-section + .erfahrung-cta,
.detail-section + .erfahrung-cta {
  margin-top: 72px;
}

.erfahrung-cta {
  padding-bottom: 96px;
}

.erfahrung-contact-card {
  position: relative;
  overflow: hidden;
  width: 100%;
  min-height: 170px;
  display: block;
  border-radius: 18px;
  border: 1px solid rgba(201, 163, 95, 0.42);
  background:
    linear-gradient(90deg, rgba(1, 6, 10, 0.90) 0%, rgba(1, 6, 10, 0.76) 24%, rgba(1, 6, 10, 0.40) 46%, rgba(1, 6, 10, 0.12) 70%, rgba(1, 6, 10, 0.02) 100%),
    linear-gradient(180deg, rgba(1, 6, 10, 0.08) 0%, rgba(1, 6, 10, 0.14) 100%),
    url("../assets/img/backgrounds/bg-the-way-out.png") center center / cover no-repeat;
  box-shadow:
    0 14px 30px rgba(0, 0, 0, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.025),
    inset 0 0 0 1px rgba(87, 201, 218, 0.04);
}

.erfahrung-contact-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.18) 0%, rgba(0, 0, 0, 0.06) 38%, rgba(0, 0, 0, 0) 70%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.012) 0%, rgba(255, 255, 255, 0) 36%);
}

.erfahrung-contact-card__copy {
  position: relative;
  z-index: 2;
  padding: 24px 40px;
}

.erfahrung-contact-header {
  width: min(100%, 920px);
  margin: 0;
  text-align: left;
}

.erfahrung-contact-header h2 {
  margin: 0;
  color: transparent;
  background: linear-gradient(90deg, #e6f8fb 0%, #9adfe9 54%, #4eb6c6 100%);
  -webkit-background-clip: text;
  background-clip: text;
  font-family: var(--font-brand);
  font-size: clamp(2.05rem, 2.75vw, 3.15rem);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.erfahrung-contact-line {
  display: block;
  width: min(500px, 58%);
  height: 1px;
  margin-top: 10px;
  background: linear-gradient(
    90deg,
    rgba(205, 168, 99, 0.86) 0%,
    rgba(205, 168, 99, 0.44) 40%,
    rgba(205, 168, 99, 0.16) 74%,
    rgba(205, 168, 99, 0.04) 100%
  );
  box-shadow: 0 0 8px rgba(199, 157, 82, 0.08);
}

.erfahrung-contact-header p {
  max-width: 680px;
  margin: 12px 0 0;
  color: rgba(232, 194, 116, 0.96);
  font-family: var(--font-body);
  font-size: clamp(1rem, 1.08vw, 1.22rem);
  font-weight: 400;
  line-height: 1.28;
  letter-spacing: 0;
}

.erfahrung-cta__button {
  margin-top: 24px;
  display: inline-flex;
  align-items: center;
  gap: 18px;
  min-height: 44px;
  padding: 0 24px;
  border-radius: 999px;
  border: 1px solid rgba(220, 194, 136, 0.44);
  color: rgba(232, 246, 248, 0.92);
  background: rgba(3, 11, 15, 0.30);
  font-family: var(--font-ui);
  font-size: 0.98rem;
  line-height: 1;
  letter-spacing: 0;
  text-decoration: none;
  transition: border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.erfahrung-cta__button:hover,
.erfahrung-cta__button:focus-visible {
  border-color: rgba(232, 194, 116, 0.86);
  color: rgba(255, 243, 204, 0.98);
  transform: translateY(-1px);
}

@media (max-width: 640px) {
  .erfahrung-cta {
    padding-bottom: 68px;
  }

  .erfahrung-contact-card {
    width: 100%;
    min-height: 156px;
    border-radius: 14px;
  }

  .erfahrung-contact-card__copy {
    padding: 22px 22px;
  }

  .erfahrung-contact-header h2 {
    font-size: clamp(1.68rem, 9vw, 2.45rem);
    letter-spacing: 0.04em;
  }

  .erfahrung-contact-line {
    width: min(320px, 72%);
  }

  .erfahrung-contact-header p {
    font-size: 1.02rem;
    line-height: 1.42;
  }

  .erfahrung-cta__button {
    width: 100%;
    justify-content: center;
    padding: 0 20px;
  }
}

/* Footer alignment synced with LandingPage */
.site-footer {
  position: relative;
  z-index: 2;
  width: min(100%, 1490px);
  margin: 0 auto;
  padding: 0 var(--page-padding-x) 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
}

.privacy-note {
  margin: 0;
  color: var(--color-text-faint);
  font-family: var(--font-ui);
  font-size: 0.72rem;
  line-height: 1;
  letter-spacing: 0.025em;
  white-space: nowrap;
}

.legal-nav {
  display: inline-flex;
  align-items: center;
  gap: 28px;
  margin-left: auto;
}

.legal-nav a {
  font-family: var(--font-ui);
  font-size: 0.72rem;
  line-height: 1;
  letter-spacing: 0.02em;
}

@media (max-width: 720px) {
  .site-footer {
    width: min(100%, 760px);
    padding: 0 16px 18px;
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .privacy-note,
  .legal-nav a {
    font-size: 0.67rem;
  }

  .legal-nav {
    gap: 18px;
    flex-wrap: wrap;
    margin-left: 0;
  }
}

/* =========================================================
   V9-166 — Steuern Editorial Relaunch
   Mittelteil neu gedacht: weniger Kacheln, mehr Erzählfluss
   ========================================================= */

.wirkfeld-page--steuern .steuer-story {
  position: relative;
  width: 100%;
  margin-top: clamp(74px, 7vw, 118px);
  color: var(--color-text-main);
}

.wirkfeld-page--steuern .steuer-story:first-of-type {
  margin-top: clamp(72px, 6vw, 104px);
}

.wirkfeld-page--steuern .steuer-story__number {
  position: absolute;
  top: 2px;
  left: 0;
  color: rgba(232, 194, 116, 0.92);
  font-family: var(--font-ui);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
}

.wirkfeld-page--steuern .steuer-story__headline {
  max-width: 420px;
  padding-left: 54px;
}

.wirkfeld-page--steuern .steuer-story__headline--wide {
  max-width: 980px;
}

.wirkfeld-page--steuern .steuer-story__headline p,
.wirkfeld-page--steuern .steuer-definition-quote > p,
.wirkfeld-page--steuern .steuer-outcome-copy > p,
.wirkfeld-page--steuern .steuer-tools-layout > div > p:first-child {
  margin: 0 0 14px;
  color: rgba(232, 194, 116, 0.92);
  font-family: var(--font-ui);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.wirkfeld-page--steuern .steuer-story h2 {
  margin: 0;
  color: rgba(230, 248, 251, 0.96);
  font-family: var(--font-body);
  font-size: clamp(2.08rem, 3.1vw, 4.25rem);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: -0.045em;
}

.wirkfeld-page--steuern .steuer-story h3 {
  margin: 0;
  color: rgba(232, 246, 248, 0.94);
  font-family: var(--font-body);
  font-size: clamp(1.12rem, 1.25vw, 1.42rem);
  font-weight: 600;
  line-height: 1.14;
  letter-spacing: -0.015em;
}

.wirkfeld-page--steuern .steuer-story p,
.wirkfeld-page--steuern .steuer-story li {
  color: rgba(204, 225, 229, 0.82);
  font-family: var(--font-body);
  font-size: clamp(1.02rem, 1.04vw, 1.22rem);
  line-height: 1.52;
}

/* 01 — Problemwahrnehmung */
.wirkfeld-page--steuern .steuer-story--problem {
  overflow: hidden;
  padding: clamp(48px, 5.8vw, 86px) clamp(44px, 5.4vw, 82px);
  border: 1px solid rgba(132, 221, 233, 0.13);
  border-radius: 22px;
  background:
    radial-gradient(circle at 13% 20%, rgba(84, 197, 214, 0.12) 0%, rgba(84, 197, 214, 0) 36%),
    radial-gradient(circle at 92% 28%, rgba(232, 194, 116, 0.11) 0%, rgba(232, 194, 116, 0) 35%),
    linear-gradient(135deg, rgba(8, 31, 43, 0.76) 0%, rgba(4, 15, 24, 0.90) 48%, rgba(1, 6, 10, 0.94) 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.035), 0 24px 62px rgba(0, 0, 0, 0.22);
}

.wirkfeld-page--steuern .steuer-story--problem::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 1px;
  background: linear-gradient(180deg, rgba(232, 194, 116, 0) 0%, rgba(232, 194, 116, 0.72) 22%, rgba(232, 194, 116, 0.16) 78%, rgba(232, 194, 116, 0) 100%);
}

.wirkfeld-page--steuern .steuer-story--problem::after {
  content: "";
  position: absolute;
  right: -12%;
  top: -22%;
  width: 42vw;
  height: 42vw;
  min-width: 420px;
  min-height: 420px;
  border: 1px solid rgba(232, 194, 116, 0.10);
  border-radius: 50%;
  transform: rotate(-16deg);
  pointer-events: none;
  opacity: 0.62;
}

.wirkfeld-page--steuern .steuer-problem-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(300px, 0.72fr) minmax(0, 1.58fr);
  gap: clamp(44px, 5.6vw, 96px);
  align-items: stretch;
}

.wirkfeld-page--steuern .steuer-story--problem .steuer-story__headline {
  max-width: 500px;
  padding-left: 0;
  align-self: center;
}

.wirkfeld-page--steuern .steuer-story--problem .steuer-story__headline h2 {
  max-width: 470px;
  font-size: clamp(2.6rem, 4.15vw, 5.2rem);
  letter-spacing: -0.052em;
}

.wirkfeld-page--steuern .steuer-problem-intro {
  max-width: 455px;
  margin: clamp(22px, 2.1vw, 32px) 0 0;
  color: rgba(204, 225, 229, 0.76);
  font-size: clamp(1.02rem, 1.02vw, 1.18rem);
  line-height: 1.58;
}

.wirkfeld-page--steuern .steuer-problem-clusters {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(14px, 1.25vw, 22px);
  min-height: 0;
  border: 0;
  background: transparent;
}

.wirkfeld-page--steuern .steuer-problem-cluster {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: clamp(320px, 28vw, 420px);
  padding: clamp(28px, 2.3vw, 40px);
  border: 1px solid rgba(132, 221, 233, 0.12);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(7, 26, 38, 0.76) 0%, rgba(3, 13, 21, 0.72) 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.035), 0 18px 38px rgba(0, 0, 0, 0.18);
}

.wirkfeld-page--steuern .steuer-problem-cluster::before {
  content: "";
  position: absolute;
  inset: auto 24px 96px 24px;
  height: 110px;
  opacity: 0.34;
  pointer-events: none;
  background:
    radial-gradient(circle at 50% 50%, rgba(232, 194, 116, 0.18) 0%, rgba(232, 194, 116, 0) 45%),
    linear-gradient(130deg, rgba(88, 203, 219, 0.08), rgba(255, 255, 255, 0));
  filter: blur(0.2px);
}

.wirkfeld-page--steuern .steuer-problem-cluster::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 1px;
  background: linear-gradient(90deg, rgba(232, 194, 116, 0.42), rgba(132, 221, 233, 0.16), rgba(232, 194, 116, 0));
  opacity: 0.72;
}

.wirkfeld-page--steuern .steuer-problem-cluster:nth-child(1)::before {
  background:
    radial-gradient(circle at 38% 48%, rgba(232, 194, 116, 0.16) 0%, rgba(232, 194, 116, 0) 42%),
    repeating-radial-gradient(circle at 50% 50%, rgba(176, 218, 224, 0.10) 0 1px, transparent 1px 12px);
}

.wirkfeld-page--steuern .steuer-problem-cluster:nth-child(2)::before {
  background:
    radial-gradient(circle at 44% 45%, rgba(232, 194, 116, 0.14) 0%, rgba(232, 194, 116, 0) 44%),
    conic-gradient(from 210deg at 50% 50%, transparent 0deg, rgba(176, 218, 224, 0.10) 45deg, transparent 105deg);
}

.wirkfeld-page--steuern .steuer-problem-cluster:nth-child(3)::before {
  background:
    linear-gradient(120deg, rgba(232, 194, 116, 0.11) 0%, rgba(176, 218, 224, 0.04) 36%, transparent 72%),
    linear-gradient(0deg, rgba(176, 218, 224, 0.08), transparent 58%);
}

.wirkfeld-page--steuern .steuer-cluster-index {
  display: inline-block;
  margin-bottom: 18px;
  color: rgba(232, 194, 116, 0.86);
  font-family: var(--font-ui);
  font-size: 0.75rem;
  letter-spacing: 0.14em;
}

.wirkfeld-page--steuern .steuer-problem-cluster h3 {
  max-width: 230px;
}

.wirkfeld-page--steuern .steuer-problem-cluster p {
  max-width: 330px;
  margin: 18px 0 0;
  color: rgba(204, 225, 229, 0.74);
}

.wirkfeld-page--steuern .steuer-problem-cluster ul {
  position: relative;
  z-index: 1;
  margin: auto 0 0;
  padding: 0 0 0 18px;
}

.wirkfeld-page--steuern .steuer-problem-cluster li {
  font-size: clamp(0.96rem, 0.95vw, 1.08rem);
  color: rgba(204, 225, 229, 0.80);
}

.wirkfeld-page--steuern .steuer-problem-cluster li + li {
  margin-top: 10px;
}

/* 02 — Definition */
.wirkfeld-page--steuern .steuer-story--definition {
  padding: clamp(52px, 5vw, 76px) 0;
  border-top: 1px solid rgba(220, 194, 136, 0.12);
  border-bottom: 1px solid rgba(132, 221, 233, 0.11);
  background:
    radial-gradient(circle at 16% 12%, rgba(84, 197, 214, 0.10) 0%, rgba(84, 197, 214, 0) 30%),
    linear-gradient(90deg, rgba(8, 31, 43, 0.42) 0%, rgba(5, 18, 27, 0.16) 58%, rgba(2, 8, 12, 0) 100%);
}

.wirkfeld-page--steuern .steuer-definition-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(46px, 6vw, 110px);
  align-items: start;
  padding-left: 54px;
}

.wirkfeld-page--steuern .steuer-definition-quote h2 {
  max-width: 600px;
}

.wirkfeld-page--steuern .steuer-definition-quote blockquote {
  position: relative;
  max-width: 720px;
  margin: 34px 0 0;
  padding: 0 0 0 38px;
  color: rgba(232, 194, 116, 0.96);
  font-family: var(--font-body);
  font-size: clamp(1.28rem, 1.55vw, 1.78rem);
  line-height: 1.34;
}

.wirkfeld-page--steuern .steuer-definition-quote blockquote::before {
  content: "“";
  position: absolute;
  left: 0;
  top: -8px;
  color: rgba(232, 194, 116, 0.78);
  font-size: 3rem;
  line-height: 1;
}

.wirkfeld-page--steuern .steuer-definition-copy {
  max-width: 660px;
  padding-top: 34px;
}

.wirkfeld-page--steuern .steuer-definition-copy p {
  margin: 0;
}

.wirkfeld-page--steuern .steuer-definition-copy p + p {
  margin-top: 18px;
}

.wirkfeld-page--steuern .steuer-proof-list {
  margin: 32px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 18px;
}

.wirkfeld-page--steuern .steuer-proof-list li {
  position: relative;
  padding-left: 34px;
}

.wirkfeld-page--steuern .steuer-proof-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.58em;
  width: 14px;
  height: 14px;
  border: 1px solid rgba(232, 194, 116, 0.72);
  border-radius: 999px;
  box-shadow: 0 0 16px rgba(232, 194, 116, 0.16);
}

/* 03 — Fragenfluss */
.wirkfeld-page--steuern .steuer-question-flow {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: clamp(22px, 2.4vw, 42px);
  min-height: 310px;
  margin-top: clamp(46px, 5vw, 76px);
  padding: 44px 0 20px;
}

.wirkfeld-page--steuern .steuer-question-flow::before {
  content: "";
  position: absolute;
  left: -4vw;
  right: -4vw;
  top: 84px;
  height: 2px;
  background: linear-gradient(90deg, rgba(232, 194, 116, 0) 0%, rgba(232, 194, 116, 0.86) 12%, rgba(232, 194, 116, 0.46) 50%, rgba(232, 194, 116, 0.88) 88%, rgba(232, 194, 116, 0) 100%);
  box-shadow: 0 0 20px rgba(232, 194, 116, 0.12);
  transform: rotate(-1deg);
}

.wirkfeld-page--steuern .steuer-question-flow::after {
  content: "";
  position: absolute;
  right: -3.4vw;
  top: 79px;
  width: 12px;
  height: 12px;
  border-top: 2px solid rgba(232, 194, 116, 0.76);
  border-right: 2px solid rgba(232, 194, 116, 0.76);
  transform: rotate(45deg);
}

.wirkfeld-page--steuern .steuer-question {
  position: relative;
  z-index: 1;
  min-width: 0;
}

.wirkfeld-page--steuern .steuer-question--two,
.wirkfeld-page--steuern .steuer-question--four {
  padding-top: 34px;
}

.wirkfeld-page--steuern .steuer-question--three {
  padding-top: 78px;
}

.wirkfeld-page--steuern .steuer-question span {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin-bottom: 20px;
  border-radius: 999px;
  border: 1px solid rgba(232, 194, 116, 0.72);
  color: rgba(255, 236, 183, 0.96);
  background: rgba(4, 13, 20, 0.78);
  box-shadow: 0 0 22px rgba(232, 194, 116, 0.16), inset 0 0 0 1px rgba(255, 255, 255, 0.035);
  font-family: var(--font-ui);
  font-size: 1.08rem;
  font-weight: 600;
}

.wirkfeld-page--steuern .steuer-question p {
  margin: 12px 0 0;
  max-width: 250px;
  color: rgba(204, 225, 229, 0.75);
  font-size: clamp(0.96rem, 0.95vw, 1.08rem);
}

/* 04 — Arbeitsweise */
.wirkfeld-page--steuern .steuer-story--work {
  padding: clamp(46px, 5vw, 70px) 0;
  background:
    linear-gradient(90deg, rgba(4, 15, 24, 0.54) 0%, rgba(8, 28, 40, 0.24) 52%, rgba(4, 15, 24, 0.46) 100%);
}

.wirkfeld-page--steuern .steuer-workflow {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: clamp(18px, 2vw, 34px);
  margin-top: 44px;
  padding: 14px 0 0;
}

.wirkfeld-page--steuern .steuer-workflow::before {
  content: "";
  position: absolute;
  left: 2%;
  right: 2%;
  top: 35px;
  height: 1px;
  background: linear-gradient(90deg, rgba(232, 194, 116, 0) 0%, rgba(232, 194, 116, 0.55) 20%, rgba(232, 194, 116, 0.22) 50%, rgba(232, 194, 116, 0.58) 82%, rgba(232, 194, 116, 0) 100%);
}

.wirkfeld-page--steuern .steuer-workflow article {
  position: relative;
  z-index: 1;
  text-align: left;
}

.wirkfeld-page--steuern .steuer-workflow article > span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin: 0 0 18px;
  border-radius: 999px;
  border: 1px solid rgba(232, 194, 116, 0.66);
  color: rgba(232, 194, 116, 0.94);
  background: rgba(3, 10, 16, 0.92);
  box-shadow: 0 0 20px rgba(232, 194, 116, 0.10);
  font-size: 1.18rem;
}

.wirkfeld-page--steuern .steuer-workflow p {
  margin: 10px 0 0;
  color: rgba(204, 225, 229, 0.74);
  font-size: clamp(0.94rem, 0.92vw, 1.06rem);
  line-height: 1.42;
}

/* 05 — Ergebnis */
.wirkfeld-page--steuern .steuer-outcome-layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1fr);
  gap: clamp(46px, 5vw, 82px);
  align-items: center;
}

.wirkfeld-page--steuern .steuer-outcome-visual {
  position: relative;
  overflow: hidden;
  min-height: 280px;
  border-radius: 18px;
  border: 1px solid rgba(220, 194, 136, 0.16);
  background:
    radial-gradient(circle at 64% 42%, rgba(232, 194, 116, 0.22) 0%, rgba(232, 194, 116, 0.04) 22%, rgba(232, 194, 116, 0) 44%),
    linear-gradient(130deg, rgba(8, 30, 42, 0.82) 0%, rgba(5, 17, 26, 0.96) 64%, rgba(2, 7, 12, 0.98) 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.035), 0 18px 48px rgba(0, 0, 0, 0.22);
}

.wirkfeld-page--steuern .steuer-outcome-visual::before {
  content: "";
  position: absolute;
  width: 520px;
  height: 260px;
  left: 12%;
  top: 18%;
  border: 1px solid rgba(232, 194, 116, 0.38);
  border-radius: 50%;
  transform: rotate(-18deg);
  box-shadow: 0 0 30px rgba(232, 194, 116, 0.08), inset 0 0 40px rgba(84, 197, 214, 0.04);
}

.wirkfeld-page--steuern .steuer-outcome-visual::after {
  content: "";
  position: absolute;
  left: 18%;
  right: 12%;
  bottom: 26%;
  height: 1px;
  background: linear-gradient(90deg, rgba(232, 194, 116, 0), rgba(232, 194, 116, 0.72), rgba(132, 221, 233, 0.20), rgba(232, 194, 116, 0));
  transform: rotate(-6deg);
}

.wirkfeld-page--steuern .steuer-orbit {
  position: absolute;
  border: 1px solid rgba(132, 221, 233, 0.09);
  border-radius: 50%;
}

.wirkfeld-page--steuern .steuer-orbit--one {
  inset: 36px 52px 78px 88px;
}

.wirkfeld-page--steuern .steuer-orbit--two {
  inset: 76px 104px 96px 38px;
  transform: rotate(14deg);
}

.wirkfeld-page--steuern .steuer-orbit--three {
  width: 12px;
  height: 12px;
  right: 25%;
  top: 46%;
  border-color: rgba(232, 194, 116, 0.80);
  background: rgba(232, 194, 116, 0.38);
  box-shadow: 0 0 26px rgba(232, 194, 116, 0.42);
}

.wirkfeld-page--steuern .steuer-outcome-copy h2 {
  max-width: 760px;
}

.wirkfeld-page--steuern .steuer-outcome-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px 38px;
  margin-top: 34px;
}

.wirkfeld-page--steuern .steuer-outcome-list span {
  position: relative;
  display: block;
  padding-left: 30px;
  color: rgba(226, 244, 247, 0.88);
  font-family: var(--font-body);
  font-size: clamp(1.02rem, 1.02vw, 1.16rem);
  line-height: 1.35;
}

.wirkfeld-page--steuern .steuer-outcome-list span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.52em;
  width: 12px;
  height: 12px;
  border-radius: 999px;
  border: 1px solid rgba(232, 194, 116, 0.68);
  background: rgba(232, 194, 116, 0.12);
}

/* 06 — Methoden / Tools */
.wirkfeld-page--steuern .steuer-story--tools {
  margin-top: clamp(60px, 6vw, 88px);
  padding-top: 32px;
  border-top: 1px solid rgba(220, 194, 136, 0.14);
}

.wirkfeld-page--steuern .steuer-tools-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.42fr) minmax(0, 1fr);
  gap: clamp(28px, 4vw, 72px);
  align-items: start;
}

.wirkfeld-page--steuern .steuer-tools-layout h2 {
  font-size: clamp(1.9rem, 2.5vw, 3.35rem);
}

.wirkfeld-page--steuern .steuer-tools-copy {
  max-width: 760px;
  margin: 0 0 24px;
  color: rgba(204, 225, 229, 0.76);
}

.wirkfeld-page--steuern .steuer-tool-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.wirkfeld-page--steuern .steuer-tool-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 15px;
  border: 1px solid rgba(220, 194, 136, 0.34);
  border-radius: 999px;
  color: rgba(231, 241, 242, 0.86);
  background: rgba(3, 12, 18, 0.38);
  font-family: var(--font-ui);
  font-size: 0.84rem;
  white-space: nowrap;
}

.wirkfeld-page--steuern .steuer-story--tools + .erfahrung-cta {
  margin-top: clamp(70px, 6vw, 98px);
}

@media (max-width: 1180px) {
  .wirkfeld-page--steuern .steuer-problem-layout,
  .wirkfeld-page--steuern .steuer-definition-layout,
  .wirkfeld-page--steuern .steuer-outcome-layout,
  .wirkfeld-page--steuern .steuer-tools-layout {
    grid-template-columns: 1fr;
  }

  .wirkfeld-page--steuern .steuer-problem-clusters {
    grid-template-columns: 1fr;
  }

  .wirkfeld-page--steuern .steuer-problem-cluster {
    min-height: auto;
    border-left: 0;
    border-top: 1px solid rgba(132, 221, 233, 0.10);
  }

  .wirkfeld-page--steuern .steuer-problem-cluster:first-child {
    border-top: 0;
  }

  .wirkfeld-page--steuern .steuer-problem-cluster ul {
    margin-top: 34px;
  }

  .wirkfeld-page--steuern .steuer-question-flow,
  .wirkfeld-page--steuern .steuer-workflow {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 34px 44px;
  }

  .wirkfeld-page--steuern .steuer-question-flow::before,
  .wirkfeld-page--steuern .steuer-question-flow::after,
  .wirkfeld-page--steuern .steuer-workflow::before {
    display: none;
  }

  .wirkfeld-page--steuern .steuer-question--two,
  .wirkfeld-page--steuern .steuer-question--three,
  .wirkfeld-page--steuern .steuer-question--four {
    padding-top: 0;
  }
}

@media (max-width: 760px) {
  .wirkfeld-page--steuern .steuer-story {
    margin-top: 62px;
  }

  .wirkfeld-page--steuern .steuer-story__number {
    position: relative;
    display: block;
    margin-bottom: 12px;
  }

  .wirkfeld-page--steuern .steuer-story__headline,
  .wirkfeld-page--steuern .steuer-definition-layout {
    padding-left: 0;
  }

  .wirkfeld-page--steuern .steuer-definition-quote blockquote {
    padding-left: 28px;
  }

  .wirkfeld-page--steuern .steuer-question-flow,
  .wirkfeld-page--steuern .steuer-workflow,
  .wirkfeld-page--steuern .steuer-outcome-list {
    grid-template-columns: 1fr;
  }

  .wirkfeld-page--steuern .steuer-outcome-visual {
    min-height: 210px;
  }

  .wirkfeld-page--steuern .steuer-problem-cluster {
    padding-left: 24px;
    padding-right: 24px;
  }
}

/* =========================================================
   V9-169 — Steuern: Herausforderungen im LandingPage-Stil
   ========================================================= */

.wirkfeld-page--steuern .steuer-challenges-section {
  position: relative;
  z-index: 1;
  width: 100%;
  margin-top: clamp(78px, 6.4vw, 112px);
  color: var(--color-text-main);
}

.wirkfeld-page--steuern .steuer-section-header {
  width: min(100%, 920px);
}

.wirkfeld-page--steuern .steuer-section-header__title {
  margin: 0;
  font-family: var(--font-brand);
  font-size: clamp(1.8rem, 2.15vw, 2.9rem);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: 0.06em;
  color: transparent;
  background: linear-gradient(
    90deg,
    #d8f4f8 0%,
    #95dce7 34%,
    #49b5c7 68%,
    #276871 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
}

.wirkfeld-page--steuern .steuer-section-header__line {
  display: block;
  width: min(500px, 58%);
  height: 1px;
  margin-top: 10px;
  background: linear-gradient(
    90deg,
    rgba(205, 168, 99, 0.86) 0%,
    rgba(205, 168, 99, 0.44) 40%,
    rgba(205, 168, 99, 0.16) 74%,
    rgba(205, 168, 99, 0.04) 100%
  );
  box-shadow: 0 0 12px rgba(205, 168, 99, 0.12);
}

.wirkfeld-page--steuern .steuer-section-header__sub {
  margin: 14px 0 0;
  font-family: var(--font-brand-sub);
  font-size: clamp(0.72rem, 0.88vw, 1rem);
  font-weight: 400;
  line-height: 1.32;
  letter-spacing: 0.08em;
  color: rgba(201, 237, 243, 0.86);
}

.wirkfeld-page--steuern .steuer-challenges-stage {
  position: relative;
  display: grid;
  grid-template-columns: minmax(250px, 0.78fr) minmax(0, 1.72fr);
  gap: 34px;
  margin-top: 54px;
  align-items: stretch;
}

.wirkfeld-page--steuern .steuer-challenges-lead {
  position: relative;
  min-height: 100%;
  padding: 28px 26px 30px;
  background: transparent;
}

.wirkfeld-page--steuern .steuer-challenges-lead::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 1px;
  height: 100%;
  background: linear-gradient(180deg, rgba(244, 219, 157, 0.95) 0%, rgba(215, 176, 99, 0.54) 18%, rgba(215, 176, 99, 0.22) 48%, rgba(215, 176, 99, 0.06) 78%, rgba(215, 176, 99, 0) 100%);
  box-shadow: 0 0 10px rgba(215, 176, 99, 0.12);
}

.wirkfeld-page--steuern .steuer-challenges-lead__eyebrow {
  margin: 0 0 18px;
  font-family: var(--font-ui);
  font-size: 0.72rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(215, 176, 99, 0.84);
}

.wirkfeld-page--steuern .steuer-challenges-lead__text {
  margin: 0;
  max-width: none;
  font-family: var(--font-body);
  font-size: clamp(0.98rem, 0.95vw, 1.07rem);
  line-height: 1.54;
  color: rgba(224, 236, 239, 0.9);
  text-wrap: pretty;
}

.wirkfeld-page--steuern .steuer-challenges-lead__text p {
  margin: 0 0 17px;
}

.wirkfeld-page--steuern .steuer-challenges-lead__text p:last-child {
  margin-bottom: 0;
}

.wirkfeld-page--steuern .steuer-challenges-grid {
  --steuer-challenge-gap: 1px;
  --steuer-challenge-double-gap: 2px;
  --steuer-challenge-card-w: calc((100% - var(--steuer-challenge-gap)) / 2);
  --steuer-challenge-card-h: calc((100% - var(--steuer-challenge-double-gap)) / 3);
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--steuer-challenge-gap);
}

.wirkfeld-page--steuern .steuer-challenges-grid::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: url("../assets/img/backgrounds/bg-steuern-herausforderungen.png") center center / cover no-repeat;
  opacity: 1;
  filter: none;
  -webkit-mask:
    linear-gradient(#000 0 0) 0 0 / var(--steuer-challenge-card-w) var(--steuer-challenge-card-h) no-repeat,
    linear-gradient(#000 0 0) 100% 0 / var(--steuer-challenge-card-w) var(--steuer-challenge-card-h) no-repeat,
    linear-gradient(#000 0 0) 0 50% / var(--steuer-challenge-card-w) var(--steuer-challenge-card-h) no-repeat,
    linear-gradient(#000 0 0) 100% 50% / var(--steuer-challenge-card-w) var(--steuer-challenge-card-h) no-repeat,
    linear-gradient(#000 0 0) 0 100% / var(--steuer-challenge-card-w) var(--steuer-challenge-card-h) no-repeat,
    linear-gradient(#000 0 0) 100% 100% / var(--steuer-challenge-card-w) var(--steuer-challenge-card-h) no-repeat;
  mask:
    linear-gradient(#000 0 0) 0 0 / var(--steuer-challenge-card-w) var(--steuer-challenge-card-h) no-repeat,
    linear-gradient(#000 0 0) 100% 0 / var(--steuer-challenge-card-w) var(--steuer-challenge-card-h) no-repeat,
    linear-gradient(#000 0 0) 0 50% / var(--steuer-challenge-card-w) var(--steuer-challenge-card-h) no-repeat,
    linear-gradient(#000 0 0) 100% 50% / var(--steuer-challenge-card-w) var(--steuer-challenge-card-h) no-repeat,
    linear-gradient(#000 0 0) 0 100% / var(--steuer-challenge-card-w) var(--steuer-challenge-card-h) no-repeat,
    linear-gradient(#000 0 0) 100% 100% / var(--steuer-challenge-card-w) var(--steuer-challenge-card-h) no-repeat;
}

.wirkfeld-page--steuern .steuer-challenges-grid::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: transparent;
  opacity: 0;
  -webkit-mask:
    linear-gradient(#000 0 0) 0 0 / var(--steuer-challenge-card-w) var(--steuer-challenge-card-h) no-repeat,
    linear-gradient(#000 0 0) 100% 0 / var(--steuer-challenge-card-w) var(--steuer-challenge-card-h) no-repeat,
    linear-gradient(#000 0 0) 0 50% / var(--steuer-challenge-card-w) var(--steuer-challenge-card-h) no-repeat,
    linear-gradient(#000 0 0) 100% 50% / var(--steuer-challenge-card-w) var(--steuer-challenge-card-h) no-repeat,
    linear-gradient(#000 0 0) 0 100% / var(--steuer-challenge-card-w) var(--steuer-challenge-card-h) no-repeat,
    linear-gradient(#000 0 0) 100% 100% / var(--steuer-challenge-card-w) var(--steuer-challenge-card-h) no-repeat;
  mask:
    linear-gradient(#000 0 0) 0 0 / var(--steuer-challenge-card-w) var(--steuer-challenge-card-h) no-repeat,
    linear-gradient(#000 0 0) 100% 0 / var(--steuer-challenge-card-w) var(--steuer-challenge-card-h) no-repeat,
    linear-gradient(#000 0 0) 0 50% / var(--steuer-challenge-card-w) var(--steuer-challenge-card-h) no-repeat,
    linear-gradient(#000 0 0) 100% 50% / var(--steuer-challenge-card-w) var(--steuer-challenge-card-h) no-repeat,
    linear-gradient(#000 0 0) 0 100% / var(--steuer-challenge-card-w) var(--steuer-challenge-card-h) no-repeat,
    linear-gradient(#000 0 0) 100% 100% / var(--steuer-challenge-card-w) var(--steuer-challenge-card-h) no-repeat;
}

.wirkfeld-page--steuern .steuer-challenge-item {
  position: relative;
  min-height: 148px;
  padding: 23px 24px 24px;
  overflow: hidden;
  border-radius: 0;
  z-index: 1;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.wirkfeld-page--steuern .steuer-challenge-item::after {
  content: none;
}

.wirkfeld-page--steuern .steuer-challenge-item h3,
.wirkfeld-page--steuern .steuer-challenge-item p {
  position: relative;
  z-index: 1;
}

.wirkfeld-page--steuern .steuer-challenge-item h3 {
  margin: 0;
  max-width: none;
  font-family: var(--font-ui);
  font-size: clamp(0.98rem, 0.92vw, 1.1rem);
  font-weight: 700;
  line-height: 1.18;
  letter-spacing: -0.012em;
  color: rgba(245, 249, 250, 0.98);
}

.wirkfeld-page--steuern .steuer-challenge-item h3::after {
  content: "";
  display: block;
  width: min(260px, 92%);
  height: 1px;
  margin-top: 8px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(215, 176, 99, 0.82) 0%, rgba(215, 176, 99, 0.42) 44%, rgba(7, 18, 29, 0.16) 76%, rgba(7, 18, 29, 0) 100%);
  box-shadow: 0 0 6px rgba(215, 176, 99, 0.07);
}

.wirkfeld-page--steuern .steuer-challenge-item p {
  margin: 13px 0 0;
  max-width: 48ch;
  font-family: var(--font-body);
  font-size: clamp(0.9rem, 0.84vw, 0.98rem);
  line-height: 1.36;
  color: rgba(202, 218, 223, 0.86);
  text-wrap: pretty;
}

@media (max-width: 1180px) {
  .wirkfeld-page--steuern .steuer-challenges-stage {
    grid-template-columns: 1fr;
  }

  .wirkfeld-page--steuern .steuer-challenges-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .wirkfeld-page--steuern .steuer-challenges-section {
    margin-top: 62px;
  }

  .wirkfeld-page--steuern .steuer-section-header__title {
    font-size: clamp(1.55rem, 8.2vw, 2.15rem);
  }

  .wirkfeld-page--steuern .steuer-challenges-stage {
    margin-top: 34px;
    gap: 28px;
  }

  .wirkfeld-page--steuern .steuer-challenges-lead {
    padding: 22px 0 22px 22px;
  }

  .wirkfeld-page--steuern .steuer-challenges-grid {
    grid-template-columns: 1fr;
  }
}


/* =========================================================
   V9-174 — Steuern: Kapitel 2 Lagebild im Beyond-Steps-Stil
   ========================================================= */

.wirkfeld-page--steuern .steuer-lagebild-section {
  position: relative;
  z-index: 1;
  width: 100%;
  margin-top: clamp(78px, 6.4vw, 112px);
  color: var(--color-text-main);
}

.wirkfeld-page--steuern .steuer-section-header--lagebild {
  width: min(100%, 1080px);
}

.wirkfeld-page--steuern .steuer-lagebild-stage {
  position: relative;
  display: grid;
  grid-template-columns: minmax(250px, 0.78fr) minmax(0, 1.72fr);
  gap: 34px;
  margin-top: 54px;
  align-items: stretch;
}

.wirkfeld-page--steuern .steuer-lagebild-lead {
  position: relative;
  min-height: 100%;
  padding: 28px 26px 30px;
  background: transparent;
}

.wirkfeld-page--steuern .steuer-lagebild-lead::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 1px;
  height: 100%;
  background: linear-gradient(180deg, rgba(244, 219, 157, 0.95) 0%, rgba(215, 176, 99, 0.54) 18%, rgba(215, 176, 99, 0.22) 48%, rgba(215, 176, 99, 0.06) 78%, rgba(215, 176, 99, 0) 100%);
  box-shadow: 0 0 10px rgba(215, 176, 99, 0.12);
}

.wirkfeld-page--steuern .steuer-lagebild-lead__eyebrow {
  margin: 0 0 18px;
  font-family: var(--font-ui);
  font-size: 0.72rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(215, 176, 99, 0.84);
}

.wirkfeld-page--steuern .steuer-lagebild-lead__text {
  margin: 0;
  max-width: none;
  font-family: var(--font-body);
  font-size: clamp(0.98rem, 0.95vw, 1.07rem);
  line-height: 1.56;
  color: rgba(224, 236, 239, 0.9);
  text-wrap: pretty;
}

.wirkfeld-page--steuern .steuer-lagebild-lead__text p {
  margin: 0 0 17px;
}

.wirkfeld-page--steuern .steuer-lagebild-lead__text p:last-child {
  margin-bottom: 0;
}

.wirkfeld-page--steuern .steuer-lagebild-signals {
  --steuer-lagebild-gap: 1px;
  --steuer-lagebild-double-gap: 2px;
  --steuer-lagebild-card-h: calc((100% - var(--steuer-lagebild-double-gap)) / 3);
  position: relative;
  isolation: isolate;
  display: grid;
  gap: var(--steuer-lagebild-gap);
  align-self: center;
  background: transparent;
}

.wirkfeld-page--steuern .steuer-lagebild-signals::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: url("../assets/img/backgrounds/bg-steuern-antwort.png") center center / cover no-repeat;
  -webkit-mask:
    linear-gradient(#000 0 0) 0 0 / 100% var(--steuer-lagebild-card-h) no-repeat,
    linear-gradient(#000 0 0) 0 50% / 100% var(--steuer-lagebild-card-h) no-repeat,
    linear-gradient(#000 0 0) 0 100% / 100% var(--steuer-lagebild-card-h) no-repeat;
  mask:
    linear-gradient(#000 0 0) 0 0 / 100% var(--steuer-lagebild-card-h) no-repeat,
    linear-gradient(#000 0 0) 0 50% / 100% var(--steuer-lagebild-card-h) no-repeat,
    linear-gradient(#000 0 0) 0 100% / 100% var(--steuer-lagebild-card-h) no-repeat;
}

.wirkfeld-page--steuern .steuer-lagebild-signals::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: transparent;
  opacity: 0;
  -webkit-mask:
    linear-gradient(#000 0 0) 0 0 / 100% var(--steuer-lagebild-card-h) no-repeat,
    linear-gradient(#000 0 0) 0 50% / 100% var(--steuer-lagebild-card-h) no-repeat,
    linear-gradient(#000 0 0) 0 100% / 100% var(--steuer-lagebild-card-h) no-repeat;
  mask:
    linear-gradient(#000 0 0) 0 0 / 100% var(--steuer-lagebild-card-h) no-repeat,
    linear-gradient(#000 0 0) 0 50% / 100% var(--steuer-lagebild-card-h) no-repeat,
    linear-gradient(#000 0 0) 0 100% / 100% var(--steuer-lagebild-card-h) no-repeat;
}

.wirkfeld-page--steuern .steuer-lagebild-signal {
  position: relative;
  display: grid;
  grid-template-columns: minmax(220px, 0.62fr) minmax(0, 1fr);
  gap: clamp(26px, 3vw, 58px);
  padding: clamp(24px, 2.3vw, 36px) clamp(26px, 3vw, 44px);
  z-index: 1;
}

.wirkfeld-page--steuern .steuer-lagebild-signal:last-child {
  border-bottom: 0;
}

.wirkfeld-page--steuern .steuer-lagebild-signal h3 {
  position: relative;
  margin: 0;
  padding-top: 2px;
  font-family: var(--font-brand-sub);
  font-size: clamp(1.05rem, 1.15vw, 1.32rem);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: 0.055em;
  text-transform: uppercase;
  color: rgba(232, 246, 248, 0.94);
}

.wirkfeld-page--steuern .steuer-lagebild-signal h3::after {
  content: "";
  display: block;
  width: min(145px, 72%);
  height: 1px;
  margin-top: 12px;
  background: linear-gradient(90deg, rgba(215, 176, 99, 0.88), rgba(215, 176, 99, 0.18), rgba(215, 176, 99, 0));
}

.wirkfeld-page--steuern .steuer-lagebild-signal p {
  position: relative;
  margin: 0;
  font-family: var(--font-body);
  font-size: clamp(0.96rem, 0.96vw, 1.1rem);
  line-height: 1.52;
  color: rgba(204, 225, 229, 0.82);
}

@media (max-width: 1180px) {
  .wirkfeld-page--steuern .steuer-lagebild-stage,
  .wirkfeld-page--steuern .steuer-lagebild-signal {
    grid-template-columns: 1fr;
  }

  .wirkfeld-page--steuern .steuer-lagebild-signals {
    align-self: stretch;
  }
}

@media (max-width: 760px) {
  .wirkfeld-page--steuern .steuer-lagebild-section {
    margin-top: 62px;
  }

  .wirkfeld-page--steuern .steuer-lagebild-lead {
    padding-left: 24px;
    padding-right: 24px;
  }

  .wirkfeld-page--steuern .steuer-lagebild-signal {
    padding-left: 22px;
    padding-right: 22px;
  }
}
